diff options
Diffstat (limited to 'lumina-search/MainUI.h')
-rw-r--r-- | lumina-search/MainUI.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lumina-search/MainUI.h b/lumina-search/MainUI.h index cd4a1db7..0a9f4acb 100644 --- a/lumina-search/MainUI.h +++ b/lumina-search/MainUI.h @@ -29,8 +29,13 @@ public: MainUI(); ~MainUI(); + void disableExcludes(); + void setSearchDirectory(QString path); + void setSearchTerm(QString text); + public slots: void setupIcons(); + void startSearch(); //emit the proper signal for the worker private: Ui::MainUI *ui; @@ -39,6 +44,8 @@ private: Worker *searcher; QSettings *settings; + void updateDefaultStatusTip(); + private slots: //Button Slots void closeApplication(){ @@ -52,7 +59,7 @@ private slots: void searchChanged(); //for active searching while typing //Worker Interaction - void startSearch(); //emit the proper signal for the worker + //void startSearch(); //Moved to a public slot void foundSearchItem(QString path); //To get the worker's results void stopSearch(); void searchMessage(QString); |