summaryrefslogtreecommitdiff
path: root/libs/dgl/Base.hpp
diff options
context:
space:
mode:
authorfalkTX <falktx@gmail.com>2015-02-16 15:35:53 +0000
committerfalkTX <falktx@gmail.com>2015-02-16 15:35:53 +0000
commitddfcc4af8f2bbb6e2546894d3ded991122461a8c (patch)
tree9babf74313503cad5a92eca8cedaa016a091bef8 /libs/dgl/Base.hpp
parent9baf523196128b5c847a578d93b4e71cabdacaa6 (diff)
Update dgl libs
Remove NTK specific code, now a separate project Start of file-browser code Cross-platform fixes (win & osx should be working nicely now) Misc cleanup, fixes and documentation
Diffstat (limited to 'libs/dgl/Base.hpp')
-rw-r--r--libs/dgl/Base.hpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/libs/dgl/Base.hpp b/libs/dgl/Base.hpp
index 0d62d72..edefbcf 100644
--- a/libs/dgl/Base.hpp
+++ b/libs/dgl/Base.hpp
@@ -127,6 +127,16 @@ enum Char {
};
/**
+ Keyboard modifier flags.
+ */
+enum Modifier {
+ MODIFIER_SHIFT = 1 << 0, /**< Shift key */
+ MODIFIER_CTRL = 1 << 1, /**< Control key */
+ MODIFIER_ALT = 1 << 2, /**< Alt/Option key */
+ MODIFIER_SUPER = 1 << 3 /**< Mod4/Command/Windows key */
+};
+
+/**
Special (non-Unicode) keyboard keys.
*/
enum Key {
@@ -157,16 +167,6 @@ enum Key {
KEY_SUPER
};
-/**
- Keyboard modifier flags.
- */
-enum Modifier {
- MODIFIER_SHIFT = 1 << 0, /**< Shift key */
- MODIFIER_CTRL = 1 << 1, /**< Control key */
- MODIFIER_ALT = 1 << 2, /**< Alt/Option key */
- MODIFIER_SUPER = 1 << 3 /**< Mod4/Command/Windows key */
-};
-
// -----------------------------------------------------------------------
// Base DGL classes