diff options
author | senator <senator> | 2007-09-11 12:29:28 +0000 |
---|---|---|
committer | senator <senator> | 2007-09-11 12:29:28 +0000 |
commit | 1a0bd4c03c4045d9cc1b3c0bcec39487fa9c5486 (patch) | |
tree | 2b9933c3e38032079b6b594e1ba1636eca054343 /client/widgets/frame.cc | |
parent | 07ff9de80d37dc0cd33feb027628eb95c1fccd35 (diff) |
added layout to window and frame windgets
Diffstat (limited to 'client/widgets/frame.cc')
-rw-r--r-- | client/widgets/frame.cc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/client/widgets/frame.cc b/client/widgets/frame.cc index 00f1930..508541d 100644 --- a/client/widgets/frame.cc +++ b/client/widgets/frame.cc @@ -25,6 +25,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #include "frame.h" +#include <QVBoxLayout> +#include <QHBoxLayout> Frame::Frame(QDomNode node) : QGroupBox(), Widget(node) @@ -46,6 +48,16 @@ Frame::Frame(QDomNode node) } else { setFlat(true); } + + if(elem.hasAttribute("layout")) { + if(elem.attribute("layout") == "hbox") { + QHBoxLayout *layout = new QHBoxLayout(); + setLayout(layout); + } else if (elem.attribute("layout") == "vbox") { + QVBoxLayout *layout = new QVBoxLayout(); + setLayout(layout); + } + } } QString Frame::getValue() |