X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fforms%2Fpolylineoptions.cpp;h=36ecd6f764b1e2712891c01ca63908ca6f63a0f8;hb=5adb444f3e523d3fd028617ced72d1ea6661db21;hp=bdc194e1e9a83f214939d4b35187ac08fb7cc875;hpb=806890f384b382a02675cadc33c15fdbcec7d432;p=architektonas diff --git a/src/forms/polylineoptions.cpp b/src/forms/polylineoptions.cpp index bdc194e..36ecd6f 100644 --- a/src/forms/polylineoptions.cpp +++ b/src/forms/polylineoptions.cpp @@ -24,20 +24,28 @@ PolylineOptions::PolylineOptions(QToolBar * parent/*= 0*/, Qt::WindowFlags flags/*= 0*/): QWidget(parent, flags), action(NULL), - bClose(new QToolButton(this)), - bUndo(new QToolButton(this)) + closeButton(new QToolButton(this)), + undoButton(new QToolButton(this)), + arcCheckBox(new QCheckBox(this)), + radiusLabel(new QLabel(this)), + radiusEdit(new QLineEdit(this)) { QHBoxLayout * layout = new QHBoxLayout(this); layout->setContentsMargins(0, 0, 0, 0); - bClose->setText(tr("Close")); - bUndo->setText(tr("Undo")); + closeButton->setText(tr("Close")); + undoButton->setText(tr("Undo")); + arcCheckBox->setText(tr("Arc")); + radiusLabel->setText(tr("Radius:")); - layout->addWidget(bClose); - layout->addWidget(bUndo); + layout->addWidget(closeButton); + layout->addWidget(undoButton); + layout->addWidget(arcCheckBox); + layout->addWidget(radiusLabel); + layout->addWidget(radiusEdit); - connect(bClose, SIGNAL(clicked()), this, SLOT(close())); - connect(bUndo, SIGNAL(clicked()), this, SLOT(undo())); + connect(closeButton, SIGNAL(clicked()), this, SLOT(close())); + connect(undoButton, SIGNAL(clicked()), this, SLOT(undo())); // We need to add the widget (this thing) to the toolbar passed in. Otherwise, // nothing will show up on the screen. :-)