summaryrefslogtreecommitdiffstats
path: root/web-gui/live/source/class/live/theme
diff options
context:
space:
mode:
Diffstat (limited to 'web-gui/live/source/class/live/theme')
-rw-r--r--web-gui/live/source/class/live/theme/Appearance.js18
-rw-r--r--web-gui/live/source/class/live/theme/Color.js18
-rw-r--r--web-gui/live/source/class/live/theme/Decoration.js18
-rw-r--r--web-gui/live/source/class/live/theme/Font.js28
-rw-r--r--web-gui/live/source/class/live/theme/Theme.js21
5 files changed, 103 insertions, 0 deletions
diff --git a/web-gui/live/source/class/live/theme/Appearance.js b/web-gui/live/source/class/live/theme/Appearance.js
new file mode 100644
index 0000000..0cd7600
--- /dev/null
+++ b/web-gui/live/source/class/live/theme/Appearance.js
@@ -0,0 +1,18 @@
+/* ************************************************************************
+
+ Copyright:
+
+ License:
+
+ Authors:
+
+************************************************************************ */
+
+qx.Theme.define("live.theme.Appearance",
+{
+ extend : qx.theme.modern.Appearance,
+
+ appearances :
+ {
+ }
+}); \ No newline at end of file
diff --git a/web-gui/live/source/class/live/theme/Color.js b/web-gui/live/source/class/live/theme/Color.js
new file mode 100644
index 0000000..23114cc
--- /dev/null
+++ b/web-gui/live/source/class/live/theme/Color.js
@@ -0,0 +1,18 @@
+/* ************************************************************************
+
+ Copyright:
+
+ License:
+
+ Authors:
+
+************************************************************************ */
+
+qx.Theme.define("live.theme.Color",
+{
+ extend : qx.theme.modern.Color,
+
+ colors :
+ {
+ }
+}); \ No newline at end of file
diff --git a/web-gui/live/source/class/live/theme/Decoration.js b/web-gui/live/source/class/live/theme/Decoration.js
new file mode 100644
index 0000000..602f6c9
--- /dev/null
+++ b/web-gui/live/source/class/live/theme/Decoration.js
@@ -0,0 +1,18 @@
+/* ************************************************************************
+
+ Copyright:
+
+ License:
+
+ Authors:
+
+************************************************************************ */
+
+qx.Theme.define("live.theme.Decoration",
+{
+ extend : qx.theme.modern.Decoration,
+
+ decorations :
+ {
+ }
+}); \ No newline at end of file
diff --git a/web-gui/live/source/class/live/theme/Font.js b/web-gui/live/source/class/live/theme/Font.js
new file mode 100644
index 0000000..7abc09e
--- /dev/null
+++ b/web-gui/live/source/class/live/theme/Font.js
@@ -0,0 +1,28 @@
+/* ************************************************************************
+
+ Copyright:
+
+ License:
+
+ Authors:
+
+************************************************************************ */
+
+qx.Theme.define("live.theme.Font",
+{
+ extend : qx.theme.modern.Font,
+
+ fonts :
+ {
+ "default" :
+ {
+ size : (qx.bom.client.System.WINVISTA || qx.bom.client.System.WIN7) ? 25 : 22,
+ lineHeight : 1.4,
+ family : qx.bom.client.Platform.MAC ? [ "Lucida Grande" ] :
+ (qx.bom.client.System.WINVISTA || qx.bom.client.System.WIN7) ?
+ [ "Segoe UI", "Candara" ] :
+ [ "Tahoma", "Liberation Sans", "Arial", "sans-serif" ],
+ bold : true
+ }
+ }
+});
diff --git a/web-gui/live/source/class/live/theme/Theme.js b/web-gui/live/source/class/live/theme/Theme.js
new file mode 100644
index 0000000..438ea30
--- /dev/null
+++ b/web-gui/live/source/class/live/theme/Theme.js
@@ -0,0 +1,21 @@
+/* ************************************************************************
+
+ Copyright:
+
+ License:
+
+ Authors:
+
+************************************************************************ */
+
+qx.Theme.define("live.theme.Theme",
+{
+ meta :
+ {
+ color : live.theme.Color,
+ decoration : live.theme.Decoration,
+ font : live.theme.Font,
+ icon : qx.theme.icon.Tango,
+ appearance : live.theme.Appearance
+ }
+}); \ No newline at end of file