Skip to content

Commit 3e0dd91

Browse files
authored
Merge pull request #52 from hpi-swa-teaching/master
Version 0.2
2 parents 0eff6c8 + 0012ad1 commit 3e0dd91

File tree

115 files changed

+634
-88
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+634
-88
lines changed

packages/BaselineOfPresenter.package/BaselineOfPresenter.class/instance/baseline..st

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ baseline: spec
55
for: #'common'
66
do: [
77
spec
8-
98
package: 'Presenter-Core';
109
package: 'Presenter-Tests' with: [spec requires: #('Presenter-Core')];
1110
yourself.
@@ -14,4 +13,5 @@ baseline: spec
1413
group: 'tests' with: #('Presenter-Tests')];
1514
yourself.
1615
spec
17-
preLoadDoIt: #preLoad
16+
preLoadDoIt: #preLoad;
17+
postLoadDoIt: #postLoad.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
baseline
2+
postLoad
3+
4+
PSPresentationTool initialize.

packages/BaselineOfPresenter.package/BaselineOfPresenter.class/instance/preLoad.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
as yet unclassified
1+
baseline
22
preLoad
33

44
(TextStyle named: 'BitstreamVeraSans') fontArray do: [:font |

packages/BaselineOfPresenter.package/BaselineOfPresenter.class/methodProperties.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"class" : {
33
},
44
"instance" : {
5-
"baseline:" : "fn 4/17/2018 11:58",
5+
"baseline:" : "LM 6/13/2018 13:41",
6+
"postLoad" : "LM 6/13/2018 13:51",
67
"preLoad" : "WoC 5/28/2018 17:40" } }
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
presentation mode
22
enablePresentationMode
33

4-
self removeResizeHandles
4+
self removeResizeHandles

packages/Presenter-Core.package/PSContentContainer.class/methodProperties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"defaultContextMenuContent" : "MK 6/1/2018 18:06",
1414
"disablePresentationMode" : "MK 5/25/2018 16:12",
1515
"dragCorner:event:fromHandle:" : "MK 5/25/2018 17:10",
16-
"enablePresentationMode" : "MK 5/25/2018 15:19",
16+
"enablePresentationMode" : "LM 6/8/2018 20:10",
1717
"extent:" : "MK 5/25/2018 17:11",
1818
"extentBottomLeft:" : "MK 5/25/2018 17:12",
1919
"extentBottomRight:" : "MK 5/25/2018 17:12",
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
instance creation
2+
initialize
3+
4+
super initialize.
5+
self registerInWorldMenu
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
instance creation
2+
registerInWorldMenu
3+
4+
TheWorldMenu registerOpenCommand: {'PowerSqueak'. {self. #open}}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
presentation loading
2+
abandonMorph: aMorph
3+
4+
aMorph ifNotNil: [aMorph abandon].
5+
^ nil
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
presentation saving
2+
askForPresentationName
3+
4+
^ UIManager default request: 'Please enter a presentation name: ' initialAnswer: 'Presentation' centerAt: World center

0 commit comments

Comments
 (0)