summaryrefslogtreecommitdiffstats
path: root/tdecore/tdeglobal.h
diff options
context:
space:
mode:
Diffstat (limited to 'tdecore/tdeglobal.h')
-rw-r--r--tdecore/tdeglobal.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/tdecore/tdeglobal.h b/tdecore/tdeglobal.h
index 1269c36a9..ebb465cf0 100644
--- a/tdecore/tdeglobal.h
+++ b/tdecore/tdeglobal.h
@@ -30,6 +30,8 @@ class TDEHardwareDevices;
class TDEGlobalNetworkManager;
#endif
class TDELocale;
+class TDEStringMatcher;
+class TEquivChars;
class TDEStandardDirs;
class KStaticDeleterBase;
class KStaticDeleterList;
@@ -108,6 +110,18 @@ public:
static KCharsets *charsets();
/**
+ * The global alphanumeric character equivalence mapper.
+ * @return the global alphanumeric character equivalence mapper.
+ */
+ static TEquivChars *equivChars();
+
+ /**
+ * The global hidden file matcher.
+ * @return the global hidden file matcher
+ */
+ static TDEStringMatcher *hiddenFileMatcher();
+
+ /**
* Creates a static TQString.
*
* To be used inside functions(!) like:
@@ -174,6 +188,9 @@ public:
static TDEInstance *_instance;
static TDELocale *_locale;
static KCharsets *_charsets;
+ static TDEStringMatcher *_hiddenFileMatcher;
+ static TEquivChars *_equivChars;
+
static KStaticDeleterList *_staticDeleters;
/**