Changeset 5463 in ntrip
- Timestamp:
- Sep 15, 2013, 10:51:01 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GnssCenter/monitor/dlgconf.cpp
r5462 r5463 30 30 _portLineEdit = new QLineEdit; 31 31 32 QVBoxLayout* mainLayout = new QVBoxLayout;33 32 34 33 QFormLayout* formLayout = new QFormLayout; 35 34 formLayout->addRow("Host:", _hostLineEdit); 36 35 formLayout->addRow("Port:", _portLineEdit); 36 37 QPushButton* cancelButton = new QPushButton("Cancel", this); 38 QPushButton* okButton = new QPushButton("OK", this); 39 QHBoxLayout* buttonLayout = new QHBoxLayout; 40 buttonLayout->addWidget(cancelButton); 41 buttonLayout->addWidget(okButton); 42 43 QVBoxLayout* mainLayout = new QVBoxLayout; 37 44 mainLayout->addLayout(formLayout); 38 39 QPushButton* okButton = new QPushButton("OK", this); 40 mainLayout->addWidget(okButton); 41 45 mainLayout->addLayout(buttonLayout); 42 46 setLayout(mainLayout); 43 47
Note:
See TracChangeset
for help on using the changeset viewer.