GrafoscopioReplace Interface updated.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2017-09-16 17:10:46 +00:00 committed by SantiagoBragagnolo
parent 92710c11c2
commit 35e670444c
1 changed files with 50 additions and 6 deletions

View File

@ -16,23 +16,67 @@ Class {
{ #category : #specs }
GrafoscopioReplace class >> defaultSpec [
<spec: #default>
SpecColumnLayout composed
add: #find; add: #replace; "add: #ok; add: #cancel;"
^ SpecLayout composed
newColumn: [ :column |
column
add: #find;
add: #replace;
newRow: [ :row | row add: #ok; add: #cancel ] height: self toolbarHeight ];
yourself
]
{ #category : #accessing }
GrafoscopioReplace >> cancel [
^ cancel
]
{ #category : #accessing }
GrafoscopioReplace >> cancel: anObject [
cancel := anObject
]
{ #category : #accessing }
GrafoscopioReplace >> find [
^ find
]
{ #category : #accessing }
GrafoscopioReplace >> find: anObject [
find := anObject
]
{ #category : #initialization }
GrafoscopioReplace >> initializeWidgets [
find := self newText.
replace := self newText.
ok := self newButton
label: 'OK'.
label: 'OK';
action: [ Transcript show: self find getText ].
cancel := self newButton
label: 'Cancel'.
self focusOrder
add: find;
add: replace";
add: replace;
add: ok;
add: cancel".
add: cancel.
]
{ #category : #accessing }
GrafoscopioReplace >> ok [
^ ok
]
{ #category : #accessing }
GrafoscopioReplace >> ok: anObject [
ok := anObject
]
{ #category : #accessing }
GrafoscopioReplace >> replace [
^ replace
]
{ #category : #accessing }
GrafoscopioReplace >> replace: anObject [
replace := anObject
]