Skip to content

Commit

Permalink
tom hat uns geholfen
Browse files Browse the repository at this point in the history
  • Loading branch information
FePrHPI committed Jun 13, 2024
1 parent 3a4758d commit b94ef5a
Show file tree
Hide file tree
Showing 16 changed files with 130 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
toolbuilder-manage panel
buildDeleteAllLocalBoardsButtonSpecWith: aBuilder

^ aBuilder build: (aBuilder pluggableButtonSpec new
model: self;
action: #deleteAllLocal;
label: 'Delete All';
yourself).

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
toolbuilder-manage panel
buildDeleteLocalBoardButtonSpecWith: aBuilder withBoardName: aString

^ "aBuilder build:" (aBuilder pluggableButtonSpec new
model: self;
label: 'Delete';
yourself).

Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
toolbuilder-manage panel
buildLocalBoardCommonActionChildren

^ {self buildDeleteAllLocalBoardsButtonSpecWith: self usedBuilder. self buildNewLocalBoardButtonSpecWith: self usedBuilder} asOrderedCollection.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
toolbuilder-manage panel
buildLocalBoardCommonActionsSpecWith: aBuilder

^ aBuilder pluggablePanelSpec new
model: self;
children: #buildLocalBoardCommonActionChildren;
layout: #horizontal;
verticalResizing: #shrinkWrap;
yourself.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
toolbuilder-manage panel
buildLocalBoardNameSpecWith: aBuilder withBoardName: aString

^ "aBuilder build:" (aBuilder pluggableTextSpec new
model: self;
setText: aString;
yourself).

Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
toolbuilder-manage panel
buildLocalBoardPanelSpecWith: aBuilder withName: aName

^ "aBuilder build:" (aBuilder pluggablePanelSpec new
model: self;
layout: #horizontal;
minimumHeight: 50px;
children: {
self buildLocalBoardNameSpecWith: aBuilder withBoardName: aName.
self buildOpenLocalBoardButtonSpecWith: aBuilder withBoardName: aName.
self buildRenameLocalBoardButtonSpecWith: aBuilder withBoardName: aName.
self buildDeleteLocalBoardButtonSpecWith: aBuilder withBoardName: aName.
};
yourself).

Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
toolbuilder-manage panel
buildLocalBoardsListChildren

^ ( SPBBoardSaver defaultSaver boards keys collect:
[:aString | self buildLocalBoardPanelSpecWith: self usedBuilder withName: aString] ) asOrderedCollection.

Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
toolbuilder-manage panel
buildLocalBoardsListSpecWith: aBuilder

^ aBuilder pluggableScrollPaneSpec new
model: self;
vScrollBarPolicy: #always;
children: "#buildLocalBoardsListChildren;"(self buildLocalBoardsListChildren);
layout: #horizontal;
yourself.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
toolbuilder-manage panel
buildManageLocalBoardPanelSpecWith: aBuilder
"We just reuse this from the SquotBrowser, idk if this is good"

^ SquotGUIUtilities buildVerticalLayout: {
self buildLocalBoardsListSpecWith: aBuilder.
self buildLocalBoardCommonActionsSpecWith: aBuilder.
} with: aBuilder
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
toolbuilder-manage panel
buildNewLocalBoardButtonSpecWith: aBuilder

^ aBuilder build: (aBuilder pluggableButtonSpec new
model: self;
verticalResizing: #shrinkWrap;
action: #openNewLocalBoard;
label: 'New Local';
yourself).

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
toolbuilder-manage panel
buildOpenLocalBoardButtonSpecWith: aBuilder withBoardName: aString

^ "aBuilder build:" (aBuilder pluggableButtonSpec new
model: self;
label: 'Open';
yourself).

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
toolbuilder-manage panel
buildRenameLocalBoardButtonSpecWith: aBuilder withBoardName: aString

^ "aBuilder build:" (aBuilder pluggableButtonSpec new
model: self;
label: 'Rename';
yourself).

Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
actions
deleteAllLocal

Transcript showln: 'delete all'.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
content-panels
manageLocalBoardsPanel

^ {'Manage Local Boards'. {}}.
^ {'Manage Local Boards'. {#buildManageLocalBoardPanelSpecWith:}}.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
actions
openNewLocalBoard

Transcript showln: 'dbhajdk'.
20 changes: 17 additions & 3 deletions Squello-Core.package/SPBLandingPage.class/methodProperties.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,30 +11,44 @@
"open" : "Haru 6/1/2024 12:28" },
"instance" : {
"buildAuthButtonSpecWith:" : "FP 6/13/2024 11:03",
"buildContentPanelSpecWith:" : "FP 6/11/2024 11:54",
"buildMainLayoutPanelSpecWith:" : "FP 6/11/2024 11:53",
"buildContentPanelSpecWith:" : "FP 6/13/2024 13:46",
"buildDeleteAllLocalBoardsButtonSpecWith:" : "FP 6/13/2024 13:49",
"buildDeleteLocalBoardButtonSpecWith:withBoardName:" : "FP 6/13/2024 14:33",
"buildLocalBoardCommonActionChildren" : "FP 6/13/2024 11:37",
"buildLocalBoardCommonActionsSpecWith:" : "FP 6/13/2024 13:45",
"buildLocalBoardNameSpecWith:withBoardName:" : "FP 6/13/2024 14:32",
"buildLocalBoardPanelSpecWith:withName:" : "FP 6/13/2024 14:28",
"buildLocalBoardsListChildren" : "FP 6/13/2024 11:43",
"buildLocalBoardsListSpecWith:" : "FP 6/13/2024 14:41",
"buildMainLayoutPanelSpecWith:" : "FP 6/13/2024 13:43",
"buildManageLocalBoardPanelSpecWith:" : "FP 6/13/2024 14:21",
"buildNewLocalBoardButtonSpecWith:" : "FP 6/13/2024 12:12",
"buildOpenButtonSpecWith:" : "FP 6/13/2024 11:06",
"buildOpenLocalBoardButtonSpecWith:withBoardName:" : "FP 6/13/2024 14:33",
"buildRecentGitHubBoardsButtonSpecWith:withBoardInfo:" : "FP 6/10/2024 16:27",
"buildRecentGitHubBoardsChildren" : "FP 6/13/2024 10:57",
"buildRecentGitHubBoardsSpecWith:" : "FP 6/10/2024 15:55",
"buildRecentLocalBoardsButtonSpecWith:withName:" : "FP 6/13/2024 10:56",
"buildRecentLocalBoardsChildren" : "FP 6/13/2024 10:56",
"buildRecentLocalBoardsSpecWith:" : "FP 6/10/2024 14:20",
"buildRenameLocalBoardButtonSpecWith:withBoardName:" : "FP 6/13/2024 14:33",
"buildSidebarSpecWith:" : "FP 6/10/2024 14:36",
"buildWith:" : "FP 6/11/2024 13:43",
"contentPanelChildren" : "FP 6/11/2024 12:13",
"contentPanels" : "FP 6/13/2024 11:19",
"contentSpecDict" : "FP 6/11/2024 12:29",
"deleteAllLocal" : "FP 6/13/2024 11:35",
"initialize" : "Haru 6/7/2024 11:58",
"lastSidebarPart" : "Haru 6/7/2024 11:57",
"lastSidebarPart:" : "FP 6/11/2024 12:05",
"list" : "FP 6/11/2024 12:23",
"loginLogoutPanel" : "FP 6/13/2024 11:03",
"manageLocalBoardsPanel" : "FP 6/11/2024 12:25",
"manageLocalBoardsPanel" : "FP 6/13/2024 14:00",
"open" : "Haru 6/1/2024 12:22",
"openAuthPanel" : "FP 6/13/2024 11:02",
"openBoard" : "FP 6/13/2024 11:06",
"openBoardPanel" : "FP 6/13/2024 11:07",
"openNewLocalBoard" : "FP 6/13/2024 11:34",
"recentBoardsPanel" : "FP 6/11/2024 12:24",
"usedBuilder" : "Haru 6/1/2024 12:39",
"usedBuilder:" : "Haru 6/1/2024 12:40" } }

0 comments on commit b94ef5a

Please sign in to comment.