ported paintings/arrowdialog to qt4

This commit is contained in:
cnovak 2013-05-30 11:41:19 +02:00
parent 322d22efd4
commit 2d0ed91ff7
2 changed files with 28 additions and 20 deletions

View File

@ -17,16 +17,15 @@
#include "arrowdialog.h"
#include <qlayout.h>
#include <qlabel.h>
#include <q3hbox.h>
#include <qvalidator.h>
#include <qcolordialog.h>
#include <qlineedit.h>
#include <qpushbutton.h>
#include <qcombobox.h>
//Added by qt3to4:
#include <Q3GridLayout>
//#include <qlayout.h>
#include <QLabel>
#include <QValidator>
#include <QColorDialog>
#include <QLineEdit>
#include <QPushButton>
#include <QComboBox>
#include <QWidget>
#include <QHBoxLayout>
ArrowDialog::ArrowDialog(QWidget *parent, const char *name)
@ -35,9 +34,11 @@ ArrowDialog::ArrowDialog(QWidget *parent, const char *name)
setCaption(tr("Edit Arrow Properties"));
val100 = new QIntValidator(0, 100, this);
all = new Q3GridLayout(this, 5,4,3,3);
all = new QGridLayout(this, 5,4,3,3);
all->setMargin(3);
all->addWidget(new QLabel(tr("Head Length: "), this), 0,0);
HeadLength = new QLineEdit(this);
HeadLength->setValidator(val100);
@ -85,13 +86,20 @@ ArrowDialog::ArrowDialog(QWidget *parent, const char *name)
all->addMultiCellWidget(ArrowStyleBox, 3,3,1,2);
Q3HBox *h1 = new Q3HBox(this);
all->addMultiCellWidget(h1, 4,4,0,3);
QPushButton *ButtOK = new QPushButton(tr("OK"), h1);
QWidget *h1 = new QWidget(this);
QHBoxLayout *h1Layout = new QHBoxLayout();
QPushButton *ButtOK = new QPushButton(tr("OK"));
h1Layout->addWidget(ButtOK);
connect(ButtOK, SIGNAL(clicked()), SLOT(accept()));
QPushButton *ButtCancel = new QPushButton(tr("Cancel"), h1);
QPushButton *ButtCancel = new QPushButton(tr("Cancel"));
h1Layout->addWidget(ButtCancel);
connect(ButtCancel, SIGNAL(clicked()), SLOT(reject()));
h1->setLayout(h1Layout);
all->addMultiCellWidget(h1, 4,4,0,3);
ButtOK->setFocus();
}

View File

@ -18,12 +18,10 @@
#ifndef ARROWDIALOG_H
#define ARROWDIALOG_H
#include <qdialog.h>
//Added by qt3to4:
#include <Q3GridLayout>
#include <QDialog>
class QLineEdit;
class Q3GridLayout;
class QGridLayout;
class QPushButton;
class QComboBox;
class QIntValidator;
@ -42,12 +40,14 @@ private slots:
void slotSetStyle(int);
public:
// TODO: I'm not sure whether declaring all this as public is really a good idea :-(
// data encapsulation => make this stuff private & provide getter & setter methods...
QLineEdit *LineWidth, *HeadWidth, *HeadLength;
QPushButton *ColorButt;
QComboBox *StyleBox, *ArrowStyleBox;
Qt::PenStyle LineStyle;
Q3GridLayout *all;
QGridLayout *all;
QIntValidator *val100;
};