AbstractSettingsApplication.st
changeset 10418 d2c09f0a39a2
parent 10301 1ec2ef0050ca
child 10582 83776c1cdb25
--- a/AbstractSettingsApplication.st	Thu Jul 28 16:58:51 2011 +0200
+++ b/AbstractSettingsApplication.st	Thu Jul 28 17:02:49 2011 +0200
@@ -319,7 +319,7 @@
 		showMethodTemplate useCodeView2InTools
 		showEmbeddedTestRunnerInBrowser showBookmarkBar
 		webBrowserLikeLayout sortAndIndentClassesByInheritance
-		showLocalHistory showGlobalHistory'
+		showLocalHistory showGlobalHistory useInPlaceSearchInBrowserLists'
 	classVariableNames:''
 	poolDictionaries:''
 	privateIn:AbstractSettingsApplication
@@ -14987,14 +14987,14 @@
                     extent: (Point 607 25)
                   )
                  (CheckBoxSpec
-                    label: 'Use the Embedded Test Runner (EXPERIMENTAL)'
+                    label: 'Use the Embedded Test Runner'
                     name: 'UseEmbeddedTestRunner'
                     model: showEmbeddedTestRunnerInBrowser
                     translateLabel: true
                     extent: (Point 607 25)
                   )
                  (CheckBoxSpec
-                    label: 'Show Bookmarks Bar (EXPERIMENTAL)'
+                    label: 'Show Bookmarks Bar'
                     name: 'ShowBookmarksBar'
                     model: showBookmarkBar
                     translateLabel: true
@@ -15029,6 +15029,13 @@
                     translateLabel: true
                     extent: (Point 607 25)
                   )
+                 (CheckBoxSpec
+                    label: 'Use In-place Search In Browser Lists (EXPERIMENTAL)'
+                    name: 'CheckBox4'
+                    model: useInPlaceSearchInBrowserLists
+                    translateLabel: true
+                    extent: (Point 607 22)
+                  )
                  )
                
               )
@@ -15055,11 +15062,12 @@
                 sortAndIndentClassesByInheritance
                 showGlobalHistory
                 showLocalHistory
+                useInPlaceSearchInBrowserLists
 
             )
         from:currentUserPrefs.
 
-    "Modified: / 07-07-2011 / 00:03:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 28-07-2011 / 09:36:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 basicSaveSettings
@@ -15076,10 +15084,11 @@
                 sortAndIndentClassesByInheritance
                 showGlobalHistory
                 showLocalHistory
+                useInPlaceSearchInBrowserLists
             )
         to:currentUserPrefs.
 
-    "Modified: / 07-07-2011 / 00:03:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 28-07-2011 / 09:36:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !AbstractSettingsApplication::SystemBrowserSettingsAppl methodsFor:'aspects'!
@@ -15176,6 +15185,16 @@
     "Modified: / 11-03-2010 / 10:09:04 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
+useInPlaceSearchInBrowserLists
+    useInPlaceSearchInBrowserLists isNil ifTrue:[
+        useInPlaceSearchInBrowserLists := false asValue.
+        useInPlaceSearchInBrowserLists onChangeSend:#updateModifiedChannel to:self
+    ].
+    ^ useInPlaceSearchInBrowserLists.
+
+    "Created: / 28-07-2011 / 09:36:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
 useSearchBarInBrowser
     "true, if the search-entry fields are shown in the browser itself
      (like in firefox). False if a dialog is to be opened."
@@ -15222,11 +15241,12 @@
                 sortAndIndentClassesByInheritance
                 showGlobalHistory
                 showLocalHistory
+                useInPlaceSearchInBrowserLists
             )
         asComparedTo:currentUserPrefs) ifTrue:[^ true].
     ^ false.
 
-    "Modified: / 07-07-2011 / 00:04:01 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 28-07-2011 / 09:36:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !AbstractSettingsApplication::SystemMessageSettingsAppl class methodsFor:'help specs'!
@@ -16222,9 +16242,9 @@
 !AbstractSettingsApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.399 2011-07-09 15:10:27 vrany Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.400 2011-07-28 15:02:49 vrany Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.399 2011-07-09 15:10:27 vrany Exp $'
-! !
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.400 2011-07-28 15:02:49 vrany Exp $'
+! !