#include <q3boxlayout.h>
Inheritance diagram for Q3BoxLayout:


Definition at line 33 of file q3boxlayout.h.
Public Member Functions | |
| Q3BoxLayout (Direction dir, QWidget *parent=0) | |
| Q3BoxLayout (QWidget *parent, Direction dir, int margin=0, int spacing=-1, const char *name=0) | |
| Q3BoxLayout (QLayout *parentLayout, Direction dir, int spacing=-1, const char *name=0) | |
| Q3BoxLayout (Direction dir, int spacing, const char *name=0) | |
Definition at line 36 of file q3boxlayout.h.
00037 : QBoxLayout(dir, parent) { setMargin(0); setSpacing(0); }
| Q3BoxLayout::Q3BoxLayout | ( | QWidget * | parent, | |
| Direction | dir, | |||
| int | margin = 0, |
|||
| int | spacing = -1, |
|||
| const char * | name = 0 | |||
| ) | [inline] |
Definition at line 39 of file q3boxlayout.h.
00041 : QBoxLayout(parent, dir, margin, spacing, name) {}
| Q3BoxLayout::Q3BoxLayout | ( | QLayout * | parentLayout, | |
| Direction | dir, | |||
| int | spacing = -1, |
|||
| const char * | name = 0 | |||
| ) | [inline] |
Definition at line 43 of file q3boxlayout.h.
00045 : QBoxLayout(parentLayout, dir, spacing, name) { setMargin(0); }
| Q3BoxLayout::Q3BoxLayout | ( | Direction | dir, | |
| int | spacing, | |||
| const char * | name = 0 | |||
| ) | [inline] |
Definition at line 47 of file q3boxlayout.h.
00048 : QBoxLayout(dir, spacing, name) { setMargin(0); }
1.5.1