-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 @@ -157,3 +157,4 @@ class OFileSelector : public QWidget { - + bool showPopup()const { return m_showPopup; }; + void setShowPopup( bool pop ) { m_showPopup = pop; }; void setPopupMenu( QPopupMenu * ); @@ -197,3 +198,3 @@ class OFileSelector : public QWidget { private: -int m_mode, m_selector; + int m_mode, m_selector; QComboBox *m_location, *m_mimeCheck, *m_viewCheck; @@ -203,2 +204,4 @@ int m_mode, m_selector; QCheckBox *m_checkPerm; + QWidget *m_pseudo; + QVBoxLayout *m_pseudoLayout; @@ -232,2 +235,3 @@ int m_mode, m_selector; bool m_files:1; + bool m_showPopup:1; @@ -264,2 +268,3 @@ private slots: virtual void slotDelete(); + virtual void cdUP(); |