diff options
author | am <am@f440f766-f032-0410-8965-dc7d17de2ca0> | 2009-07-09 15:29:14 +0000 |
---|---|---|
committer | am <am@f440f766-f032-0410-8965-dc7d17de2ca0> | 2009-07-09 15:29:14 +0000 |
commit | b6a85b8b76a4e86783c4c83048918d30bb36bdb8 (patch) | |
tree | 8e08b0c11d213ce0f41e235adc9c5cc5a13442ec /shemov.h | |
parent | a12045635b23c80e3dd9f51212c6ea89c240b94e (diff) | |
download | SheMov-b6a85b8b76a4e86783c4c83048918d30bb36bdb8.tar.gz SheMov-b6a85b8b76a4e86783c4c83048918d30bb36bdb8.tar.bz2 SheMov-b6a85b8b76a4e86783c4c83048918d30bb36bdb8.zip |
-added statusbar and no. of selected files
git-svn-id: file:///var/svn/repos2/shemov/trunk@381 f440f766-f032-0410-8965-dc7d17de2ca0
Diffstat (limited to 'shemov.h')
-rw-r--r-- | shemov.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -13,6 +13,8 @@ class QTabWidget; class FilesystemWidget; class QAction; +class QLabel; +class QItemSelection; class SheMov : public QMainWindow { Q_OBJECT @@ -20,10 +22,17 @@ class SheMov : public QMainWindow { SheMov(QWidget *parent = 0, Qt::WindowFlags flags = 0); ~SheMov() {}; + private slots: + void updateSelectionCount(const QItemSelection &sel, const QItemSelection &prev); + private: + void createStatusbar(); void createActions(); void createMenus(); + //Statusbar Items + QLabel *mSelectedItems; + //Actions QAction *mQuitA; QAction *mMarkFilesA; |