eric7/UI/UserInterface.py

branch
external_find
changeset 9037
907540e4f741
parent 9033
866633f4fbf3
child 9038
90bcfdd63d47
--- a/eric7/UI/UserInterface.py	Fri Apr 29 09:31:46 2022 +0200
+++ b/eric7/UI/UserInterface.py	Fri Apr 29 11:40:00 2022 +0200
@@ -944,6 +944,7 @@
         self.__virtualenvManagerWidget = VirtualenvManagerWidget(
             self.virtualenvManager, self)
         
+        # TODO: add separate dialog variant
         # Create the find in files widget
         from .FindFileWidget import FindFileWidget
         self.__findFileWidget = FindFileWidget(self.project, self)
@@ -956,6 +957,7 @@
         self.__findFileWidget.svgFile.connect(self.__showSvg)
         self.__findFileWidget.umlFile.connect(self.__showUml)
         
+        # TODO: add separate dialog variant
         # Create the find location (file) widget
         from .FindLocationWidget import FindLocationWidget
         self.__findLocationWidget = FindLocationWidget(self.project, self)
@@ -7161,6 +7163,7 @@
             (defaults to False)
         @type bool (optional)
         """
+        # TODO: add separate dialog variant
         self.__activateFindFileWidget()
         self.__findFileWidget.activate(
             replaceMode=False, txt=txt, searchDir=searchDir,
@@ -7178,6 +7181,7 @@
             (defaults to False)
         @type bool (optional)
         """
+        # TODO: add separate dialog variant
         self.__activateFindFileWidget()
         self.__findFileWidget.activate(
             replaceMode=True, txt=txt, searchDir=searchDir,
@@ -7202,6 +7206,7 @@
         """
         Public method to show the Find File widget.
         """
+        # TODO: add separate dialog variant
         self.__activateFindLocationWidget()
     
     def __activateFindLocationWidget(self):

eric ide

mercurial