summaryrefslogtreecommitdiffstats
path: root/fileview.h
diff options
context:
space:
mode:
authorArno <am@disconnect.de>2012-03-18 01:47:21 +0100
committerArno <am@disconnect.de>2012-03-18 01:47:21 +0100
commit3e784fed0148c4ec24aa8b2b8ca53f2d9d9bc543 (patch)
treeae756b5b493aacb6c486a13b3e4fd0d9a0e4d801 /fileview.h
parent1e14ae6748f271265dd719ac0766a2da3501a21f (diff)
downloadSheMov-3e784fed0148c4ec24aa8b2b8ca53f2d9d9bc543.tar.gz
SheMov-3e784fed0148c4ec24aa8b2b8ca53f2d9d9bc543.tar.bz2
SheMov-3e784fed0148c4ec24aa8b2b8ca53f2d9d9bc543.zip
Fix some severe braindamage
It started as a buxfix session, but the more I dug into some ancient code, the more I had to change. Well, first and foremost, this fixes a crash in PicturesWidget. Trying to display the mappings of the selected picture in a different color never was a good idea. Show them in the statusbar instead. While looking at the statusBar code, make PictureWidget emit signals to show the total size and number of selected items. Then I noticed some really, really braindamaged connection madness in the Shemov constructor. Instead of doing all the work in SheMov itself, have the widgets emit signals. This should have been several commits, but one lead to another...
Diffstat (limited to 'fileview.h')
-rw-r--r--fileview.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/fileview.h b/fileview.h
index 885eac0..2ad17ad 100644
--- a/fileview.h
+++ b/fileview.h
@@ -31,6 +31,8 @@ class FileView : public QTreeView {
void enterPressed(const QModelIndex &);
void statusbarMessage(const QString &);
void editorClosed(const QModelIndex &idx);
+ void numSelected(int);
+ void selectedSize(qint64);
public slots:
void markFiles();
@@ -46,7 +48,10 @@ class FileView : public QTreeView {
virtual void keyPressEvent(QKeyEvent *e);
virtual void resizeEvent(QResizeEvent *e);
virtual bool event(QEvent *event);
-
+
+ private slots:
+ void selectedFilesChanged();
+
private:
enum HoverFileType { Dir, Movie, Image, None };
bool exitHover(bool exitVal = true);