StringSearchTool
authorfm
Fri, 04 Apr 2008 18:29:04 +0200
changeset 8058 5149753435d9
parent 8057 27aff3da5774
child 8059 c7135647e846
StringSearchTool
Tools_NavigationState.st
--- a/Tools_NavigationState.st	Fri Apr 04 18:28:04 2008 +0200
+++ b/Tools_NavigationState.st	Fri Apr 04 18:29:04 2008 +0200
@@ -30,7 +30,8 @@
 		cursorLineLabelHolder cursorColLabelHolder modeLabelHolder
 		sortVariablesBy editModeHolder scrollableCodeView specialEditors
 		selectedEditorNoteBookTabIndexHolder editorNoteBookListHolder
-		editorNoteBookCanvasHolder codeView'
+		editorNoteBookCanvasHolder codeView stringSearchToolView
+		noteBookView'
 	classVariableNames:''
 	poolDictionaries:''
 	category:'Interface-Browsers-New'
@@ -189,6 +190,14 @@
     ].
 !
 
+noteBookView
+    ^ noteBookView
+!
+
+noteBookView:something
+    noteBookView := something.
+!
+
 realModifiedState
     ^ self realModifiedStateHolder value
 !
@@ -209,6 +218,15 @@
         selectedEditorNoteBookTabIndexHolder := 1 asValue.
     ].
     ^ selectedEditorNoteBookTabIndexHolder
+!
+
+stringSearchToolView
+    ^ stringSearchToolView
+!
+
+stringSearchToolView: aStringSearchTool
+
+    stringSearchToolView := aStringSearchTool
 ! !
 
 !NavigationState methodsFor:'accessing-selection'!
@@ -1274,5 +1292,5 @@
 !NavigationState class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/Tools_NavigationState.st,v 1.24 2007-03-15 15:29:50 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools_NavigationState.st,v 1.25 2008-04-04 16:29:04 fm Exp $'
 ! !