summaryrefslogtreecommitdiffstats
path: root/web-gui/hello-world/source/class/hello_world/theme
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2010-06-02 12:43:21 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2010-06-02 18:24:53 +0200
commit52b669d1c4654a9e2f5a45f62cea5a2fe79ea83a (patch)
tree58a00ac2c837bd4cd8711290b699ff3e713c9b9e /web-gui/hello-world/source/class/hello_world/theme
parent3f065cee2177340e877331a6b08b5a1d92e0f19d (diff)
downloadjson-dbus-bridge-examples-52b669d1c4654a9e2f5a45f62cea5a2fe79ea83a.tar.gz
json-dbus-bridge-examples-52b669d1c4654a9e2f5a45f62cea5a2fe79ea83a.tar.xz
[web-gui] qooxdoo hello world demo
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
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