summaryrefslogtreecommitdiffstats
path: root/web-gui/plot/source/class/plot/theme
diff options
context:
space:
mode:
Diffstat (limited to 'web-gui/plot/source/class/plot/theme')
-rw-r--r--web-gui/plot/source/class/plot/theme/Appearance.js18
-rw-r--r--web-gui/plot/source/class/plot/theme/Color.js18
-rw-r--r--web-gui/plot/source/class/plot/theme/Decoration.js18
-rw-r--r--web-gui/plot/source/class/plot/theme/Font.js18
-rw-r--r--web-gui/plot/source/class/plot/theme/Theme.js21
5 files changed, 93 insertions, 0 deletions
diff --git a/web-gui/plot/source/class/plot/theme/Appearance.js b/web-gui/plot/source/class/plot/theme/Appearance.js
new file mode 100644
index 0000000..e64bd3b
--- /dev/null
+++ b/web-gui/plot/source/class/plot/theme/Appearance.js
@@ -0,0 +1,18 @@
+/* ************************************************************************
+
+ Copyright:
+
+ License:
+
+ Authors:
+
+************************************************************************ */
+
+qx.Theme.define("plot.theme.Appearance",
+{
+ extend : qx.theme.modern.Appearance,
+
+ appearances :
+ {
+ }
+}); \ No newline at end of file
diff --git a/web-gui/plot/source/class/plot/theme/Color.js b/web-gui/plot/source/class/plot/theme/Color.js
new file mode 100644
index 0000000..58fa266
--- /dev/null
+++ b/web-gui/plot/source/class/plot/theme/Color.js
@@ -0,0 +1,18 @@
+/* ************************************************************************
+
+ Copyright:
+
+ License:
+
+ Authors:
+
+************************************************************************ */
+
+qx.Theme.define("plot.theme.Color",
+{
+ extend : qx.theme.modern.Color,
+
+ colors :
+ {
+ }
+}); \ No newline at end of file
diff --git a/web-gui/plot/source/class/plot/theme/Decoration.js b/web-gui/plot/source/class/plot/theme/Decoration.js
new file mode 100644
index 0000000..553554a
--- /dev/null
+++ b/web-gui/plot/source/class/plot/theme/Decoration.js
@@ -0,0 +1,18 @@
+/* ************************************************************************
+
+ Copyright:
+
+ License:
+
+ Authors:
+
+************************************************************************ */
+
+qx.Theme.define("plot.theme.Decoration",
+{
+ extend : qx.theme.modern.Decoration,
+
+ decorations :
+ {
+ }
+}); \ No newline at end of file
diff --git a/web-gui/plot/source/class/plot/theme/Font.js b/web-gui/plot/source/class/plot/theme/Font.js
new file mode 100644
index 0000000..e990ed6
--- /dev/null
+++ b/web-gui/plot/source/class/plot/theme/Font.js
@@ -0,0 +1,18 @@
+/* ************************************************************************
+
+ Copyright:
+
+ License:
+
+ Authors:
+
+************************************************************************ */
+
+qx.Theme.define("plot.theme.Font",
+{
+ extend : qx.theme.modern.Font,
+
+ fonts :
+ {
+ }
+}); \ No newline at end of file
diff --git a/web-gui/plot/source/class/plot/theme/Theme.js b/web-gui/plot/source/class/plot/theme/Theme.js
new file mode 100644
index 0000000..f6d370b
--- /dev/null
+++ b/web-gui/plot/source/class/plot/theme/Theme.js
@@ -0,0 +1,21 @@
+/* ************************************************************************
+
+ Copyright:
+
+ License:
+
+ Authors:
+
+************************************************************************ */
+
+qx.Theme.define("plot.theme.Theme",
+{
+ meta :
+ {
+ color : plot.theme.Color,
+ decoration : plot.theme.Decoration,
+ font : plot.theme.Font,
+ icon : qx.theme.icon.Tango,
+ appearance : plot.theme.Appearance
+ }
+}); \ No newline at end of file