98 class UiGridContainer : public UiContainerPrivate { |
99 class UiGridContainer : public UiContainerPrivate { |
99 public: |
100 public: |
100 QGridLayout *grid; |
101 QGridLayout *grid; |
101 int x = 0; |
102 int x = 0; |
102 int y = 0; |
103 int y = 0; |
|
104 bool def_hexpand; |
|
105 bool def_vexpand; |
|
106 bool def_hfill; |
|
107 bool def_vfill; |
|
108 bool col_expanding = false; |
|
109 bool row_expanding = false; |
|
110 int max_x; |
|
111 int max_y; |
103 |
112 |
104 UiGridContainer(QGridLayout *grid, int margin, int columnspacing, int rowspacing); |
113 UiGridContainer( |
|
114 QGridLayout *grid, |
|
115 int margin, |
|
116 int columnspacing, |
|
117 int rowspacing, |
|
118 bool def_hexpand, |
|
119 bool def_vexpand, |
|
120 bool def_hfill, |
|
121 bool def_vfill); |
105 |
122 |
106 virtual void add(QWidget *widget, bool fill); |
123 virtual void add(QWidget *widget, bool fill); |
|
124 virtual void end(); |
107 }; |
125 }; |
108 |
126 |
109 void ui_container_add(UiObject *obj, UiContainerPrivate *ct); |
127 void ui_container_add(UiObject *obj, UiContainerPrivate *ct); |
110 |
128 |
111 |
129 |