generated from hpi-swa-teaching/SWT-Demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
67 changed files
with
151 additions
and
143 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
accessing | ||
boardName | ||
|
||
boardName ifNil: [self boardName: self boardProvider queryBoardName]. | ||
boardName | ||
ifNil: [self boardName: self boardProvider queryBoardName]. | ||
^ boardName. |
2 changes: 1 addition & 1 deletion
2
Squello-Core.package/SPBBoard.class/instance/buildAddColumnButtonPanelSpecWith..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
toolbuilder | ||
toolbuilder-colum | ||
buildAddColumnButtonPanelSpecWith: aBuilder | ||
|
||
^ aBuilder pluggablePanelSpec new | ||
|
4 changes: 2 additions & 2 deletions
4
Squello-Core.package/SPBBoard.class/instance/buildAddColumnButtonSpecWith..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Squello-Core.package/SPBBoard.class/instance/buildColumnAreaChildren.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
toolbuilder | ||
toolbuilder-colum | ||
buildColumnAreaChildren | ||
|
||
| children | | ||
|
2 changes: 1 addition & 1 deletion
2
Squello-Core.package/SPBBoard.class/instance/buildColumnAreaSpecWith..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
toolbuilder | ||
toolbuilder-colum | ||
buildColumnAreaSpecWith: aBuilder | ||
|
||
^ self buildColumnAreaSpecWith: aBuilder width: 0.75. |
6 changes: 3 additions & 3 deletions
6
Squello-Core.package/SPBBoard.class/instance/buildColumnAreaSpecWith.width..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
toolbuilder | ||
toolbuilder-colum | ||
buildColumnAreaSpecWith: aBuilder width: aNumber | ||
|
||
^ aBuilder resizeScrollPaneSpec new | ||
model: self; | ||
frame: (0@0 corner: aNumber@1); | ||
name: #columnArea; | ||
model: self; | ||
scrollBarThickness: 20; | ||
vScrollBarPolicy: #never; | ||
children: #buildColumnAreaChildren; | ||
layout: #horizontal; | ||
children: #buildColumnAreaChildren; | ||
yourself. |
6 changes: 3 additions & 3 deletions
6
Squello-Core.package/SPBBoard.class/instance/buildColumnBodySpecWith.and..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
toolbuilder | ||
toolbuilder-colum | ||
buildColumnBodySpecWith: aBuilder and: anSPBColumn | ||
|
||
^ aBuilder pluggableScrollPaneSpec new | ||
model: self; | ||
frame: (0@0.15 corner: 1@1); | ||
name: #columnScrollPane; | ||
model: self; | ||
hScrollBarPolicy: #never; | ||
vScrollBarPolicy: #always; | ||
children: {self buildColumnDropAreaWith: aBuilder and: anSPBColumn}; | ||
layout: #vertical; | ||
children: {self buildColumnDropAreaWith: aBuilder and: anSPBColumn}; | ||
yourself. | ||
|
||
|
4 changes: 2 additions & 2 deletions
4
Squello-Core.package/SPBBoard.class/instance/buildColumnDropAreaWith.and..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
toolbuilder | ||
toolbuilder-colum | ||
buildColumnDropAreaWith: aBuilder and: anSPBColumn | ||
|
||
^ aBuilder pasteUpSpec new | ||
minimumExtent: self class columnMinimumExtent; | ||
model: anSPBColumn; | ||
name: anSPBColumn id; | ||
minimumExtent: self class columnMinimumExtent; | ||
dropped: [:card :event | anSPBColumn cardDropped: card Event: event]; | ||
reject: [:morph :event | morph isCard not]; | ||
yourself. |
4 changes: 2 additions & 2 deletions
4
Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderAddCardButtonSpecWith.and..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...lo-Core.package/SPBBoard.class/instance/buildColumnHeaderMoveColumnButtonSpecWith.and..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ore.package/SPBBoard.class/instance/buildColumnHeaderMoveColumnLeftButtonSpecWith.and..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...re.package/SPBBoard.class/instance/buildColumnHeaderMoveColumnRightButtonSpecWith.and..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderSpecWith.and..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
Squello-Core.package/SPBBoard.class/instance/buildColumnHeaderTitleSpecWith.and..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
toolbuilder | ||
toolbuilder-colum | ||
buildColumnHeaderTitleSpecWith: aBuilder and: anSPBColumn | ||
|
||
^ aBuilder pluggableTextSpec new | ||
frame: (0@0 corner: 1@0.6); | ||
model: anSPBColumn; | ||
frame: (0@0 corner: 1@0.6); | ||
getText: #title; | ||
setText: #updateTitle:; | ||
yourself. |
2 changes: 1 addition & 1 deletion
2
Squello-Core.package/SPBBoard.class/instance/buildColumnSpecWith..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
toolbuilder | ||
toolbuilder-colum | ||
buildColumnSpecWith: aBuilder | ||
|
||
^ self columns collect: [:column | self buildColumnSpecWith: aBuilder and: column]. |
2 changes: 1 addition & 1 deletion
2
Squello-Core.package/SPBBoard.class/instance/buildColumnSpecWith.and..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
toolbuilder | ||
toolbuilder-colum | ||
buildColumnSpecWith: aBuilder and: anSPBColumn | ||
|
||
^ aBuilder pluggablePanelSpec new | ||
|
4 changes: 2 additions & 2 deletions
4
Squello-Core.package/SPBBoard.class/instance/buildSidebarAssigneeListSpecWith..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
Squello-Core.package/SPBBoard.class/instance/buildSidebarAssigneePanelSpecWith..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
Squello-Core.package/SPBBoard.class/instance/buildSidebarCloseButtonSpecWith..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
toolbuilder | ||
toolbuilder-sidebar | ||
buildSidebarCloseButtonSpecWith: aBuilder | ||
|
||
^ aBuilder pluggableButtonSpec new | ||
model: self sidebar; | ||
name: #sidebarCloseButton; | ||
frame: (0@0.4 corner: 1@0.5); | ||
name: #sidebarCloseButton; | ||
label: #getCloseButtonLabel; | ||
action: #onCloseButton; | ||
yourself. |
6 changes: 3 additions & 3 deletions
6
Squello-Core.package/SPBBoard.class/instance/buildSidebarDescriptionSpecWith..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
toolbuilder | ||
toolbuilder-sidebar | ||
buildSidebarDescriptionSpecWith: aBuilder | ||
|
||
^ aBuilder pluggableTextSpec new | ||
model: self sidebar; | ||
frame: (0@0.5 corner: 1@1); | ||
name: #sidebarDescription; | ||
setText: #updateActiveCardDescription:; | ||
getText: #activeCardDescription; | ||
frame: (0@0.5 corner: 1@1); | ||
setText: #updateActiveCardDescription:; | ||
yourself. |
4 changes: 2 additions & 2 deletions
4
Squello-Core.package/SPBBoard.class/instance/buildSidebarLabelListSpecWith..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
Squello-Core.package/SPBBoard.class/instance/buildSidebarLabelPanelSpecWith..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
Squello-Core.package/SPBBoard.class/instance/buildSidebarPotentialAssigneeListSpecWith..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
Squello-Core.package/SPBBoard.class/instance/buildSidebarPotentialLabelListSpecWith..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Squello-Core.package/SPBBoard.class/instance/buildSidebarSpecWith..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Squello-Core.package/SPBBoard.class/instance/buildSidebarSpecWith.width..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
toolbuilder | ||
toolbuilder-sidebar | ||
buildSidebarSpecWith: aBuilder width: aNumber | ||
|
||
^ aBuilder pluggablePanelSpec new | ||
|
6 changes: 3 additions & 3 deletions
6
Squello-Core.package/SPBBoard.class/instance/buildSidebarTitleSpecWith..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
toolbuilder | ||
toolbuilder-sidebar | ||
buildSidebarTitleSpecWith: aBuilder | ||
|
||
^ aBuilder pluggableTextSpec new | ||
model: self sidebar; | ||
frame: (0@0 corner: 1@0.1); | ||
name: #sidebarTitle; | ||
setText: #updateActiveCardTitle:; | ||
getText: #activeCardTitle; | ||
frame: (0@0 corner: 1@0.1); | ||
setText: #updateActiveCardTitle:; | ||
yourself. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.