summaryrefslogtreecommitdiff
path: root/src/bin/e_win.h
diff options
context:
space:
mode:
authorCarsten Haitzler <raster@rasterman.com>2006-01-06 13:56:46 +0000
committerCarsten Haitzler <raster@rasterman.com>2006-01-06 13:56:46 +0000
commiteff5eeeac7164e71f3156553fc7bec9ea4c697e0 (patch)
tree1ae6ac7a81bd7f0f2a7cd387df76838d27ba838f /src/bin/e_win.h
parent1625201009dc574c4af5d62a0a3bf4a59fe18197 (diff)
downloadenlightenment-eff5eeeac7164e71f3156553fc7bec9ea4c697e0.tar.gz
fix several bugs (cursors for example)... found some more... :)
SVN revision: 19555
Diffstat (limited to 'src/bin/e_win.h')
-rw-r--r--src/bin/e_win.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bin/e_win.h b/src/bin/e_win.h
index 4895747a6c..9702e6afe7 100644
--- a/src/bin/e_win.h
+++ b/src/bin/e_win.h
@@ -33,7 +33,8 @@ struct _E_Win
void *data;
struct {
- unsigned char centered : 1;
+ unsigned char centered : 1;
+ unsigned char dialog : 1;
} state;
};
@@ -65,6 +66,7 @@ EAPI void e_win_name_class_set (E_Win *win, char *name, char *class);
EAPI void e_win_title_set (E_Win *win, char *title);
EAPI void e_win_centered_set (E_Win *win, int centered);
+EAPI void e_win_dialog_set (E_Win *win, int dialog);
#endif
#endif