Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/windirstat.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver <bitbucket@assarbad.net>2017-03-15 23:31:34 +0300
committerOliver <bitbucket@assarbad.net>2017-03-15 23:31:34 +0300
commit5b0c1da8e52115d9344c63374df2392bfc9340c0 (patch)
tree7f7efe52353ba562f653ddf60aaa5109d3ca4fad /windirstat/options.h
parent7ec44caad3fdc9fa92312e82b3d2a7200615a39a (diff)
parentad5274e0bf7f41753ece156ecac9fd31c6465e6f (diff)
Merged in neopi21/windirstat (pull request #5)
Partially answer to ticket #110 Approved-by: Oliver
Diffstat (limited to 'windirstat/options.h')
-rw-r--r--windirstat/options.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/windirstat/options.h b/windirstat/options.h
index fb07371..2cc1eb2 100644
--- a/windirstat/options.h
+++ b/windirstat/options.h
@@ -351,6 +351,10 @@ public:
bool IsUseWdsLocale();
void SetUseWdsLocale(bool use);
+ // Option to ignore hidden files and folders
+ bool IsSkipHidden();
+ void SetSkipHidden(bool skip);
+
void GetUserDefinedCleanups(USERDEFINEDCLEANUP udc[USERDEFINEDCLEANUPCOUNT]);
void SetUserDefinedCleanups(const USERDEFINEDCLEANUP udc[USERDEFINEDCLEANUPCOUNT]);
@@ -391,6 +395,7 @@ private:
bool m_followMountPoints;
bool m_followJunctionPoints;
bool m_useWdsLocale;
+ bool m_skipHidden;
USERDEFINEDCLEANUP m_userDefinedCleanup[USERDEFINEDCLEANUPCOUNT];