summaryrefslogtreecommitdiffstats
path: root/shemov.h
diff options
context:
space:
mode:
authoram <am@f440f766-f032-0410-8965-dc7d17de2ca0>2009-07-09 15:29:14 +0000
committeram <am@f440f766-f032-0410-8965-dc7d17de2ca0>2009-07-09 15:29:14 +0000
commitb6a85b8b76a4e86783c4c83048918d30bb36bdb8 (patch)
tree8e08b0c11d213ce0f41e235adc9c5cc5a13442ec /shemov.h
parenta12045635b23c80e3dd9f51212c6ea89c240b94e (diff)
downloadSheMov-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.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/shemov.h b/shemov.h
index aff8624..9daf0a0 100644
--- a/shemov.h
+++ b/shemov.h
@@ -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;