Skip to content

Commit

Permalink
Update Incubator command menu management
Browse files Browse the repository at this point in the history
  • Loading branch information
labordep committed Oct 28, 2023
1 parent 98a8577 commit edd1004
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 107 deletions.
2 changes: 1 addition & 1 deletion src/Molecule-IDE-Incubator-Tests/MolMenuSBTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Class {
{ #category : #running }
MolMenuSBTest >> setUp [
super setUp.
menu := MolContextualMenu new.
menu := MolCmdCommand new.
"Put here a common initialization logic for tests"
]

Expand Down
36 changes: 0 additions & 36 deletions src/Molecule-IDE-Incubator/CmdMoleculeMenuGroup.class.st

This file was deleted.

64 changes: 0 additions & 64 deletions src/Molecule-IDE-Incubator/MolContextualMenu.class.st

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ Menu to access on the component graphic vue
"
Class {
#name : #MolShowComponentContextualMenu,
#superclass : #MolContextualMenu,
#superclass : #MolCmdCommand,
#category : #'Molecule-IDE-Incubator-Menus'
}

{ #category : #activation }
MolShowComponentContextualMenu class >> browserMenuActivation [
<classAnnotation>
^CmdContextMenuActivation byItemOf: CmdMoleculeMenuGroup for: ClyFullBrowserClassContext.
^CmdContextMenuActivation byItemOf: MolCmdMenuGroup for: ClyFullBrowserClassContext.



Expand All @@ -23,7 +23,7 @@ MolShowComponentContextualMenu >> defaultMenuIconName [

{ #category : #accessing }
MolShowComponentContextualMenu >> defaultMenuItemName [
^ 'Show Component map'
^ '[Incubator] Show Component map'
]

{ #category : #execution }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ Class for Show Component INstances in System Browser
"
Class {
#name : #MolShowComponentInstancesContextualMenu,
#superclass : #MolContextualMenu,
#superclass : #MolCmdCommand,
#category : #'Molecule-IDE-Incubator-Menus'
}

{ #category : #activation }
MolShowComponentInstancesContextualMenu class >> browserMenuActivation [
<classAnnotation>
^CmdContextMenuActivation byItemOf: CmdMoleculeMenuGroup for: ClyFullBrowserClassContext.
^CmdContextMenuActivation byItemOf: MolCmdMenuGroup for: ClyFullBrowserClassContext.



Expand All @@ -23,7 +23,7 @@ MolShowComponentInstancesContextualMenu >> defaultMenuIconName [

{ #category : #accessing }
MolShowComponentInstancesContextualMenu >> defaultMenuItemName [
^ 'Show running instances'
^ '[Incubator] Show running instances'
]

{ #category : #execution }
Expand Down

0 comments on commit edd1004

Please sign in to comment.