summaryrefslogtreecommitdiff
path: root/library/qt_override_p.h
authorsandman <sandman>2002-12-07 19:58:03 (UTC)
committer sandman <sandman>2002-12-07 19:58:03 (UTC)
commitd856a53635479f5ace72159aa513480ecd90bf1e (patch) (side-by-side diff)
treeaba6aaa2cc9168ebd364308f37cdc9c4286c6703 /library/qt_override_p.h
parent09aa2b9a766e02e52ad64c0294e8b72e6fda8c85 (diff)
downloadopie-d856a53635479f5ace72159aa513480ecd90bf1e.zip
opie-d856a53635479f5ace72159aa513480ecd90bf1e.tar.gz
opie-d856a53635479f5ace72159aa513480ecd90bf1e.tar.bz2
- removed the libpreload stuff from global.cpp
- added qt_override.* which provides the same functionality as libpreload (the new -override patch for Qt/E is needed for this to work/compile) - changed qpeapplication a bit to accomodate the new interface
Diffstat (limited to 'library/qt_override_p.h') (more/less context) (ignore whitespace changes)
-rw-r--r--library/qt_override_p.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/library/qt_override_p.h b/library/qt_override_p.h
new file mode 100644
index 0000000..d11917c
--- a/dev/null
+++ b/library/qt_override_p.h
@@ -0,0 +1,21 @@
+#ifndef __QT_OVERRIDE_H__
+#define __QT_OVERRIDE_H__
+
+namespace Opie {
+
+enum ForceAppearance {
+ Force_Style = 0x01,
+ Force_Font = 0x02,
+ Force_Decoration = 0x04,
+
+ Force_All = 0xff,
+ Force_None = 0x00,
+};
+
+extern const char *binaryName ( );
+
+extern int force_appearance;
+
+}
+
+#endif