source: mmcs/accountwidget.C @ 44d1e60

matrices
Last change on this file since 44d1e60 was 44d1e60, checked in by Jose Ruiz <joseruiz@…>, 9 years ago

commit inicial

  • Property mode set to 100644
File size: 1022 bytes
Line 
1#include "accountwidget.H"
2
3AccountWidget::AccountWidget(QWidget *parent) :
4    QWidget(parent)
5{
6
7    layoutAccountConf = new QVBoxLayout;
8
9    this->setLayout(layoutAccountConf);
10
11    labelAccountName = new QLabel(this);
12    labelAccountName->setText("Nombre");
13    layoutAccountConf->addWidget(labelAccountName);
14
15    lineEditAccountName = new QLineEdit(this);
16    lineEditAccountName->setFixedWidth(200);
17    layoutAccountConf->addWidget(lineEditAccountName);
18
19    labelAccountStart = new QLabel(this);
20    labelAccountStart->setText("Inicio");
21    layoutAccountConf->addWidget(labelAccountStart);
22
23    spinBoxAccountStart = new QSpinBox(this);
24    spinBoxAccountStart->setFixedWidth(100);
25    layoutAccountConf->addWidget(spinBoxAccountStart);
26
27    labelAccountEnd = new QLabel(this);
28    labelAccountEnd->setText("Fin");
29    layoutAccountConf->addWidget(labelAccountEnd);
30
31    spinBoxAccountEnd = new QSpinBox(this);
32    spinBoxAccountEnd->setFixedWidth(100);
33    layoutAccountConf->addWidget(spinBoxAccountEnd);
34
35}
Note: See TracBrowser for help on using the repository browser.