ui/qt/container.h

changeset 525
878df45e6441
parent 520
ea1bba55de44
equal deleted inserted replaced
524:ce7a198b54b0 525:878df45e6441
80 struct UiContainerPrivate { 80 struct UiContainerPrivate {
81 UiLayout layout; 81 UiLayout layout;
82 UIWIDGET current; 82 UIWIDGET current;
83 83
84 virtual void add(QWidget *widget, bool fill) = 0; 84 virtual void add(QWidget *widget, bool fill) = 0;
85 virtual void end() {}
85 }; 86 };
86 87
87 class UiBoxContainer : public UiContainerPrivate { 88 class UiBoxContainer : public UiContainerPrivate {
88 public: 89 public:
89 QBoxLayout *box; 90 QBoxLayout *box;
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

mercurial