diff settings.cpp @ 8:c63d67895cbe

layout designer: first draft
author Goffi <goffi@goffi.org>
date Wed, 24 Aug 2011 20:38:55 +0200
parents 220e5619bf87
children
line wrap: on
line diff
--- a/settings.cpp	Sun Aug 14 18:03:54 2011 +0200
+++ b/settings.cpp	Wed Aug 24 20:38:55 2011 +0200
@@ -18,6 +18,7 @@
 
 #include "settings.h"
 #include "bellaciao.h"
+#include "layout_designer.h"
 
 using namespace Qt;
 
@@ -48,6 +49,15 @@
 
     this->setAttribute(WA_DeleteOnClose);
 
+    //We add the settings in tabs
+
+    // Contact list Layout
+    QVBoxLayout *layout =  new QVBoxLayout;
+    LayoutDesigner* contact_list_layout = new LayoutDesigner;
+    layout->addWidget(contact_list_layout);
+    contactListLayoutTab->setLayout(layout);
+    
+
     //We fill the profiles list
     m_bridge = Bridge::getBridge();
     m_session = Session::getSession();