diff options
| author | Aaron J. Seigo <[email protected]> | 2007-03-03 03:07:04 +0000 |
|---|---|---|
| committer | Aaron J. Seigo <[email protected]> | 2007-03-03 03:07:04 +0000 |
| commit | 9d24c28b4ba3ac62b698a53925f9747850959d63 (patch) | |
| tree | 62ee86ecba7cc36e8c3e766f2f3c4334ae496956 /src/urlnavigator.h | |
| parent | 73f6409fe052a063d1089b76f7de5b4832c22c68 (diff) | |
respect the show hidden files settingin the url nav bar
svn path=/trunk/KDE/kdebase/apps/; revision=638732
Diffstat (limited to 'src/urlnavigator.h')
| -rw-r--r-- | src/urlnavigator.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/urlnavigator.h b/src/urlnavigator.h index 9482619d6..e3e22632c 100644 --- a/src/urlnavigator.h +++ b/src/urlnavigator.h @@ -169,6 +169,16 @@ public: bool isActive() const { return m_active; } /** + * Sets whether or not to show hidden files in lists + */ + void setShowHiddenFiles( bool show ); + + /** + * Returns true if the URL navigator is set to show hidden files + */ + bool showHiddenFiles() { return m_showHiddenFiles; } + + /** * Handles the dropping of the URLs \a urls to the given * destination \a destination and emits the signal urlsDropped. */ @@ -289,6 +299,7 @@ private: private: bool m_active; + bool m_showHiddenFiles; int m_historyIndex; QHBoxLayout* m_layout; |
