Cut, copy & paste node tree editing icons.
This commit is contained in:
parent
38f7380ff1
commit
ea63230b0e
@ -21,11 +21,22 @@ Class {
|
|||||||
],
|
],
|
||||||
#classInstVars : [
|
#classInstVars : [
|
||||||
'dockingBar',
|
'dockingBar',
|
||||||
'recentNotebooks'
|
'recentNotebooks',
|
||||||
|
'cacheNode'
|
||||||
],
|
],
|
||||||
#category : #'Grafoscopio-UI'
|
#category : #'Grafoscopio-UI'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{ #category : #accessing }
|
||||||
|
GrafoscopioGUI class >> cacheNode [
|
||||||
|
^ cacheNode
|
||||||
|
]
|
||||||
|
|
||||||
|
{ #category : #accessing }
|
||||||
|
GrafoscopioGUI class >> cacheNode: anObject [
|
||||||
|
cacheNode := anObject
|
||||||
|
]
|
||||||
|
|
||||||
{ #category : #specs }
|
{ #category : #specs }
|
||||||
GrafoscopioGUI class >> defaultSpec [
|
GrafoscopioGUI class >> defaultSpec [
|
||||||
<spec: #default>
|
<spec: #default>
|
||||||
|
@ -203,14 +203,20 @@ GrafoscopioNotebook >> newWindowMainMenu [
|
|||||||
group addItem: [ :item |
|
group addItem: [ :item |
|
||||||
item
|
item
|
||||||
name: nil;
|
name: nil;
|
||||||
description: 'Undo';
|
description: 'Cut';
|
||||||
icon: Smalltalk ui icons smallUndoIcon;
|
icon: Smalltalk ui icons smallCutIcon;
|
||||||
action: [ self inform: 'To be implemented...' ] ].
|
action: [ self inform: 'To be implemented...' ] ].
|
||||||
group addItem: [ :item |
|
group addItem: [ :item |
|
||||||
item
|
item
|
||||||
name: nil;
|
name: nil;
|
||||||
description: 'Redo';
|
description: 'Copy';
|
||||||
icon: Smalltalk ui icons smallRedoIcon;
|
icon: Smalltalk ui icons smallCopyIcon;
|
||||||
|
action: [ self inform: 'To be implemented...' ] ].
|
||||||
|
group addItem: [ :item |
|
||||||
|
item
|
||||||
|
name: nil;
|
||||||
|
description: 'Paste';
|
||||||
|
icon: Smalltalk ui icons smallPasteIcon;
|
||||||
action: [ self inform: 'To be implemented...' ] ]];
|
action: [ self inform: 'To be implemented...' ] ]];
|
||||||
addGroup: [ :group |
|
addGroup: [ :group |
|
||||||
group addItem: [ :item |
|
group addItem: [ :item |
|
||||||
|
Loading…
Reference in New Issue
Block a user