Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-10-06 18:25:50 +0000
committerStijn Buys <ingar@osirion.org>2008-10-06 18:25:50 +0000
commit916c0e7e8c1293237f28a4639a8bc5e7d78858e7 (patch)
treec2fa09d0c4c96ddcb5c6588b33b6e210f31e87b1 /base
parent132748c91bb98bf71a1e5a3ee101247b37f21192 (diff)
menu .ini files
Diffstat (limited to 'base')
-rw-r--r--base/ini/menus/main.ini26
-rw-r--r--base/ini/menus/options.ini10
-rw-r--r--base/ini/ui.ini17
3 files changed, 53 insertions, 0 deletions
diff --git a/base/ini/menus/main.ini b/base/ini/menus/main.ini
new file mode 100644
index 0000000..737b223
--- /dev/null
+++ b/base/ini/menus/main.ini
@@ -0,0 +1,26 @@
+;
+; main.ini
+; main menu
+;
+
+[menu]
+background=banner
+
+[label]
+text=Main Menu
+
+[button]
+text=Start
+command=connect
+
+[button]
+text=Connect...
+command=menu connect
+
+[button]
+text=Options...
+command=menu options
+
+[button]
+text=Quit
+command=quit
diff --git a/base/ini/menus/options.ini b/base/ini/menus/options.ini
new file mode 100644
index 0000000..b731627
--- /dev/null
+++ b/base/ini/menus/options.ini
@@ -0,0 +1,10 @@
+;
+; options.ini
+; options menu
+;
+
+[menu]
+background=banner
+
+[label]
+text=Options Menu
diff --git a/base/ini/ui.ini b/base/ini/ui.ini
new file mode 100644
index 0000000..066e665
--- /dev/null
+++ b/base/ini/ui.ini
@@ -0,0 +1,17 @@
+;
+; ui.ini
+; global user interface settings
+; list of menus
+;
+
+[ui]
+menu=main
+menu=options
+
+[colors]
+; global foreground color rgb
+foreground=1 1 1
+; global background color rgba
+background=0.8 0.8 0.8 0.5
+; global border color rgb
+border=0 0.8 0 0.5