X-Git-Url: https://vaikene.ee/gitweb/pswgen11.html?a=blobdiff_plain;f=src%2Fapps%2FFileFinder%2FGUI%2Fgui.h;h=4d22d0b0d7636d14722fa6d28a1094a42a6d5d80;hb=c8050984a289a6ea98812395313ef37d4c7fd059;hp=e4c0c8e885c2a7cda45c9058ce69f47ab66a7309;hpb=7eca3433b1db8f2bcc61fa8db60bc7546f5cb578;p=evaf diff --git a/src/apps/FileFinder/GUI/gui.h b/src/apps/FileFinder/GUI/gui.h index e4c0c8e..4d22d0b 100644 --- a/src/apps/FileFinder/GUI/gui.h +++ b/src/apps/FileFinder/GUI/gui.h @@ -21,6 +21,7 @@ # define __FILEFINDER_GUI_GUI_H #include +#include #include #include @@ -40,7 +41,7 @@ namespace SdiWindow { struct iSdiWindow; } // namespace eVaf::SdiWindow namespace FileFinder { - struct iFileFinder; + class iFileFinder; namespace GUI { namespace Internal { @@ -48,14 +49,14 @@ namespace Internal { /** * Main widget for the FileFinder window */ -class MainWidget : public QWidget +class MainWidget : public Gui::Panel { Q_OBJECT public: MainWidget(QWidget * parent = 0) - : QWidget(parent) + : Gui::Panel(parent) {} virtual void keyPressEvent(QKeyEvent * e); @@ -111,6 +112,10 @@ private slots: void openDirectory(); + void copyName(); + + void copyAllNames(); + private: // Members @@ -126,6 +131,8 @@ private: // Members /// Actions QAction * mOpenFileAction; QAction * mOpenDirectoryAction; + QAction * mCopyNameAction; + QAction * mCopyAllNamesAction; /// Widgets on the screen Internal::MainWidget * wMain;