-rw-r--r-- | libopie/ofileselector.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/libopie/ofileselector.h b/libopie/ofileselector.h index 458e552..b91c0ea 100644 --- a/libopie/ofileselector.h +++ b/libopie/ofileselector.h @@ -156,5 +156,6 @@ class OFileSelector : public QWidget { void setSelector( int ); - + bool showPopup()const { return m_showPopup; }; + void setShowPopup( bool pop ) { m_showPopup = pop; }; void setPopupMenu( QPopupMenu * ); @@ -196,5 +197,5 @@ class OFileSelector : public QWidget { private: -int m_mode, m_selector; + int m_mode, m_selector; QComboBox *m_location, *m_mimeCheck, *m_viewCheck; QPushButton *m_homeButton, *m_docButton, *m_hideButton, *m_ok, *m_cancel; @@ -202,4 +203,6 @@ int m_mode, m_selector; QListView *m_View; QCheckBox *m_checkPerm; + QWidget *m_pseudo; + QVBoxLayout *m_pseudoLayout; QString m_currentDir; @@ -231,4 +234,5 @@ int m_mode, m_selector; bool m_dir:1; bool m_files:1; + bool m_showPopup:1; // implementation todo @@ -263,4 +267,5 @@ private slots: virtual void slotRename(); virtual void slotDelete(); + virtual void cdUP(); }; |