summaryrefslogtreecommitdiff
path: root/src/gui/gui.h
diff options
context:
space:
mode:
authorSimon Edwardsson <simon@crossnet.se>2004-10-03 12:56:09 +0000
committerSimon Edwardsson <simon@crossnet.se>2004-10-03 12:56:09 +0000
commit0b00bf2ccff23b5f565e214b36be3ea823ab59da (patch)
tree2b43d9c1e9a72b07c26c2386633d6a80751bd25a /src/gui/gui.h
parent07af1c32d6d51a4d178ffc4dea7488a949d1e553 (diff)
downloadmana-client-0b00bf2ccff23b5f565e214b36be3ea823ab59da.tar.gz
mana-client-0b00bf2ccff23b5f565e214b36be3ea823ab59da.tar.bz2
mana-client-0b00bf2ccff23b5f565e214b36be3ea823ab59da.tar.xz
mana-client-0b00bf2ccff23b5f565e214b36be3ea823ab59da.zip
Added tmw_bar_proc, and a stat window, (I have // your stat window kth5 :) )
Diffstat (limited to 'src/gui/gui.h')
-rw-r--r--src/gui/gui.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gui/gui.h b/src/gui/gui.h
index 47362466..e14a0140 100644
--- a/src/gui/gui.h
+++ b/src/gui/gui.h
@@ -80,6 +80,11 @@ typedef struct {
} LexDialog;
typedef struct {
+ LexSkinnedRect bg;
+} LexBar;
+
+
+typedef struct {
LexButton button;
LexSlider slider;
LexCheckbox checkbox;
@@ -87,6 +92,7 @@ typedef struct {
LexTextbox textbox;
LexListbox listbox;
LexDialog dialog;
+ LexBar bar;
} LexSkin;
extern LexSkin gui_skin;
@@ -115,6 +121,7 @@ int tmw_dialog_proc(int msg, DIALOG *d, int c);
int tmw_ldialog_proc(int msg, DIALOG *d, int c);
int tmw_textbox_proc(int msg, DIALOG *d, int c);
int tmw_bitmap_proc(int msg, DIALOG *d, int c);
+int tmw_bar_proc(int msg, DIALOG *d, int c);
void ok(const char *title, const char *message);
unsigned int yes_no(const char *title, const char *message);