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