diff options
author | Vincent Reher <tde@4reher.org> | 2022-05-12 10:37:55 -0700 |
---|---|---|
committer | Vincent Reher <tde@4reher.org> | 2023-10-03 09:05:14 -0700 |
commit | 0825733847b5f657f86e4caef5d9a9d44802b383 (patch) | |
tree | c5b1c04a7d2f5434e32d64053d01621ebe192846 /libkonq/konq_propsview.h | |
parent | ceb9a720bacef4d29abb04353b8b71ac710cfbc1 (diff) | |
download | tdebase-0825733847b5f657f86e4caef5d9a9d44802b383.tar.gz tdebase-0825733847b5f657f86e4caef5d9a9d44802b383.zip |
Set up konqueror interface to TDEIO:HiddenFileMatcher object:
(1) Establish "HiddenFileSpec" key to be stored in a konq*viewrc config file.
(2) Establish menu access for modifying key in listview (iconview TBD).
The "HiddenFileSpec" key (under [Settings] in config/konqlistviewrc) should contain
a string specifying what constitutes a hidden file. The string should conform to
the syntax described in latest commit message for corresponding tdelibs PR # 163.
Testing at this point will require manually editing the configuration file.
KonqListView::slotChangeHiddenFileMatcher will eventually call a dialog through
which a user can query and modify the specification for how "hidden" files are to
be identified. Currently it only demonstrates access to HiddenFileMatcher methods.
Signed-off-by: Vincent Reher <tde@4reher.org>
Diffstat (limited to 'libkonq/konq_propsview.h')
-rw-r--r-- | libkonq/konq_propsview.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libkonq/konq_propsview.h b/libkonq/konq_propsview.h index 132c53a55..ae699f09a 100644 --- a/libkonq/konq_propsview.h +++ b/libkonq/konq_propsview.h @@ -104,6 +104,9 @@ public: void setDescending (bool descending); bool isDescending() const; + void setHiddenFileSpec( const TQString &criteria ); + const TQString& hiddenFileSpec() const; + void setShowingDotFiles( bool show ); bool isShowingDotFiles() const { return m_bShowDot; } @@ -188,6 +191,13 @@ private: Private *d; + /** + * FIXME + * + * Why are some private class properties declared in the + * "Private" structure d in konq_propsview.cpp and not above? + */ + private: KonqPropsView( const KonqPropsView & ); KonqPropsView(); |