filemanager/src/filemanager/src/fmviewmanager.h
changeset 46 d58987eac7e8
parent 37 15bc28c9dd51
--- a/filemanager/src/filemanager/src/fmviewmanager.h	Tue Aug 24 10:24:14 2010 +0800
+++ b/filemanager/src/filemanager/src/fmviewmanager.h	Wed Sep 29 10:37:03 2010 +0800
@@ -32,6 +32,7 @@
 class QFileSystemWatcher;
 class FmDriveWatcher;
 class FmDialog;
+class FmServiceUtils;
 
 /*
  * this class is used to record relationship between dialog and drive name 
@@ -65,12 +66,13 @@
     static void RemoveViewManager();
     static FmViewManager *viewManager();
     FmOperationService *operationService();
+    FmServiceUtils *serviceUtils();
     
     Qt::Orientation orientation(); 
 
     void createFileView( const QString &path,
-        bool enableBackPathCheck = true, bool disableFind = false );
-    void createFindView( const QString &keyword, const QString &path );
+    bool enableBackPathCheck = true, bool disableFind = false );
+    void createFindView( const QString &keyword, const QStringList &pathList );
     void createDriverView();
     void createSplitView();
 	void createBackupView();
@@ -146,6 +148,9 @@
 	QList<FmDlgCloseUnit*> mDlgCloseUnitList;
 	
 	QPixmap mScreenShot;
+
+    // non-static service utils
+    FmServiceUtils *mServiceUtils;
 };