comparison: ui/ui/text.h
ui/ui/text.h
- changeset 75
- 73c8a3780c72
- parent 60
- ee4e4742391e
- child 76
- 641dcc79e0ef
equal
deleted
inserted
replaced
37 |
37 |
38 typedef struct UiTextAreaArgs { |
38 typedef struct UiTextAreaArgs { |
39 UiTri fill; |
39 UiTri fill; |
40 UiBool hexpand; |
40 UiBool hexpand; |
41 UiBool vexpand; |
41 UiBool vexpand; |
|
42 UiBool hfill; |
|
43 UiBool vfill; |
42 int colspan; |
44 int colspan; |
43 int rowspan; |
45 int rowspan; |
44 int width; |
46 int width; |
45 const char *name; |
47 const char *name; |
46 const char *style_class; |
48 const char *style_class; |
55 |
57 |
56 typedef struct UiTextFieldArgs { |
58 typedef struct UiTextFieldArgs { |
57 UiTri fill; |
59 UiTri fill; |
58 UiBool hexpand; |
60 UiBool hexpand; |
59 UiBool vexpand; |
61 UiBool vexpand; |
|
62 UiBool hfill; |
|
63 UiBool vfill; |
60 int colspan; |
64 int colspan; |
61 int rowspan; |
65 int rowspan; |
62 int width; |
66 int width; |
63 const char *name; |
67 const char *name; |
64 const char *style_class; |
68 const char *style_class; |
84 |
88 |
85 typedef struct UiPathTextFieldArgs { |
89 typedef struct UiPathTextFieldArgs { |
86 UiTri fill; |
90 UiTri fill; |
87 UiBool hexpand; |
91 UiBool hexpand; |
88 UiBool vexpand; |
92 UiBool vexpand; |
|
93 UiBool hfill; |
|
94 UiBool vfill; |
89 int colspan; |
95 int colspan; |
90 int rowspan; |
96 int rowspan; |
91 const char *name; |
97 const char *name; |
92 const char *style_class; |
98 const char *style_class; |
93 |
99 |