From 1a0bd4c03c4045d9cc1b3c0bcec39487fa9c5486 Mon Sep 17 00:00:00 2001 From: senator Date: Tue, 11 Sep 2007 12:29:28 +0000 Subject: added layout to window and frame windgets --- client/widgets/window.cc | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'client/widgets/window.cc') diff --git a/client/widgets/window.cc b/client/widgets/window.cc index 31f51bf..e93edca 100644 --- a/client/widgets/window.cc +++ b/client/widgets/window.cc @@ -25,6 +25,8 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #include "window.h" +#include +#include Window::Window(QDomNode node) : QWidget(NULL), Widget(node) @@ -50,6 +52,16 @@ Window::Window(QDomNode node) } else { setWindowTitle(elem.attribute("")); } + + 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 Window::getValue() -- cgit v1.2.3