X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=src%2Fpane.h;h=07c03bf2a98858cc5dcd2668484d9a74d9149e40;hb=17b7f9ef9141bfb49bc224cbbc7b3eece045784d;hp=a565b8dd0082a3c945b186a4f01bb0c8ccfd8a8f;hpb=0165f80ba290e71a933f6e5c676cce60334cc825;p=case diff --git a/src/pane.h b/src/pane.h index a565b8d..07c03bf 100644 --- a/src/pane.h +++ b/src/pane.h @@ -29,7 +29,12 @@ class Pane : public QWidget { Q_OBJECT +signals: + void switchPanes(); + public: + bool active; + explicit Pane(QWidget *theCase, QWidget *parent = 0); const QString path() const; @@ -39,18 +44,16 @@ public slots: bool changePath(QString path); void toggleActive(); void toggleShowHiddenFiles(); + void fileListMouseHackaround(); protected: void paintEvent(QPaintEvent *); - void activationConnect(); - void activationDisconnect(); + bool eventFilter(QObject *object, QEvent *event); private: QWidget *theCase; - bool active; - AddressBar *location; Button *up; FileList *fileList;