summaryrefslogtreecommitdiffstats
path: root/tdeio/tdeio/kdirlister_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'tdeio/tdeio/kdirlister_p.h')
-rw-r--r--tdeio/tdeio/kdirlister_p.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/tdeio/tdeio/kdirlister_p.h b/tdeio/tdeio/kdirlister_p.h
index 3092e8e2e..a04a88046 100644
--- a/tdeio/tdeio/kdirlister_p.h
+++ b/tdeio/tdeio/kdirlister_p.h
@@ -44,7 +44,7 @@ public:
complete = false;
autoUpdate = false;
- isShowingDotFiles = false;
+ isShowingHiddenFiles = false;
dirOnlyMode = false;
autoErrorHandling = false;
@@ -79,7 +79,7 @@ public:
bool complete;
bool autoUpdate;
- bool isShowingDotFiles;
+ bool isShowingHiddenFiles;
bool dirOnlyMode;
bool autoErrorHandling;
@@ -106,6 +106,16 @@ public:
TQWidget *window; // Main window ths lister is associated with
+ /**
+ * Pointer to object that encapsulates criteria for determining whether
+ * or not the filesystem objects managed by this KDirLister should be
+ * hidden based on characteristics of their names. This object is
+ * passed to KFileItem::setHiddenFileMatcher() for each associated
+ * filesystem entity so the determination of "hidden" can be made using
+ * KDirLister's own TDEHiddenFileMatcher instead of KFileItem's default.
+ */
+ TDEStringMatcher *hiddenFileMatcher;
+
TQString nameFilter;
TQPtrList<TQRegExp> lstFilters, oldFilters;
TQStringList mimeFilter, oldMimeFilter;