23 March 2004 Radu Ursu

- Put splitters between the widgets of the demo so that the drawing area
  could become bigger
This commit is contained in:
Radu Ursu 2004-03-23 15:17:52 +00:00
parent 234039b23e
commit 56aedc4f53
2 changed files with 12 additions and 8 deletions

View File

@ -1,5 +1,9 @@
Nef_2 Package: Release changes
----------------------------------------------------------------------
23 March 2004 Radu Ursu
- Put splitters between the widgets of the demo so that the drawing area
could become bigger
10 February 2004 Radu Ursu
- Updated headers in examples

View File

@ -66,6 +66,7 @@ int main(int, char*)
#include <qmessagebox.h>
#include <qpopupmenu.h>
#include <qsplitter.h>
#include <qsplitter.h>
#include <qstatusbar.h>
#include <qtimer.h>
#include <qtoolbar.h>
@ -122,14 +123,13 @@ public:
Layout_widget(QWidget *parent = 0, const char *name = 0)
: QWidget(parent, name)
{
QBoxLayout *topLayout = new QVBoxLayout( this, 5 );
QBoxLayout *bottomLayout = new QHBoxLayout( topLayout );
nef_list1 = new Nef_2_list_box(this, "Nef_list_1");
nef_list2 = new Nef_2_list_box(this, "Nef_list_2");
bottomLayout->addWidget(nef_list1);
bottomLayout->addWidget(nef_list2);
widget = new CGAL::Qt_widget(this);
topLayout->addWidget(widget);
QBoxLayout *topLayout = new QVBoxLayout( this, 5 );
QSplitter *top_splitter = new QSplitter(Qt::Vertical, this);
topLayout->addWidget(top_splitter);
QSplitter *splitter1 = new QSplitter(top_splitter);
nef_list1 = new Nef_2_list_box(splitter1, "Nef_list_1");
nef_list2 = new Nef_2_list_box(splitter1, "Nef_list_2");
widget = new CGAL::Qt_widget(top_splitter);
};
CGAL::Qt_widget* get_qt_widget(){return widget;}
Nef_2_list_box* get_nef_list1(){return nef_list1;}