summaryrefslogtreecommitdiff
path: root/fluid/Fluid.h
diff options
context:
space:
mode:
Diffstat (limited to 'fluid/Fluid.h')
-rw-r--r--fluid/Fluid.h22
1 files changed, 5 insertions, 17 deletions
diff --git a/fluid/Fluid.h b/fluid/Fluid.h
index d67c31cb3..1498760e3 100644
--- a/fluid/Fluid.h
+++ b/fluid/Fluid.h
@@ -29,11 +29,11 @@
#include <string>
-constexpr int BROWSERWIDTH = 300;
-constexpr int BROWSERHEIGHT = 500;
-constexpr int WINWIDTH = 300;
-constexpr int MENUHEIGHT = 25;
-constexpr int WINHEIGHT = (BROWSERHEIGHT+MENUHEIGHT);
+#define FLD_BROWSERWIDTH 300
+#define FLD_BROWSERHEIGHT 500
+#define FLD_WINWIDTH 300
+#define FLD_MENUHEIGHT 25
+#define FLD_WINHEIGHT (FLD_BROWSERHEIGHT+FLD_MENUHEIGHT)
// ---- types
@@ -54,18 +54,6 @@ namespace widget {
class App_Menu_Bar;
}
-/**
- Indicate the storage location for tools like layout suites and shell macros.
- \see class Fd_Shell_Command, class Layout_Suite
- */
-enum class Tool_Store {
- INTERNAL, ///< stored inside FLUID app
- USER, ///< suite is stored in the user wide FLUID settings
- PROJECT, ///< suite is stored within the current .fl project file
- FILE ///< store suite in external file
-};
-
-
class Project;
class Application {