Changeset 1681 in ntrip
- Timestamp:
- Mar 1, 2009, 6:11:52 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncwindow.cpp
r1678 r1681 419 419 420 420 gLayout->addWidget(new QLabel("Logfile (full path)"), 0, 0); 421 gLayout->addWidget(_logFileLineEdit, 0, 1 );421 gLayout->addWidget(_logFileLineEdit, 0, 1, 1,30); // 1 422 422 gLayout->addWidget(new QLabel("Append files"), 1, 0); 423 423 gLayout->addWidget(_rnxAppendCheckBox, 1, 1); … … 426 426 gLayout->addWidget(new QLabel("Auto start"), 3, 0); 427 427 gLayout->addWidget(_autoStartCheckBox, 3, 1); 428 gLayout->addWidget(new QLabel("General settings for logfile, file handling, configuration on-the-fly, and auto-start."),4, 0, 1, 2, Qt::AlignLeft);428 gLayout->addWidget(new QLabel("General settings for logfile, file handling, configuration on-the-fly, and auto-start."),4, 0, 1, 50, Qt::AlignLeft); // 2 429 429 gLayout->addWidget(new QLabel(" "),5,0); 430 430 ggroup->setLayout(gLayout); … … 438 438 439 439 oLayout->addWidget(new QLabel("Directory"), 0, 0); 440 oLayout->addWidget(_rnxPathLineEdit, 0, 1,1, 12);440 oLayout->addWidget(_rnxPathLineEdit, 0, 1,1,24); 441 441 oLayout->addWidget(new QLabel("Interval"), 1, 0); 442 442 oLayout->addWidget(_rnxIntrComboBox, 1, 1); 443 oLayout->addWidget(new QLabel("Sampling"), 443 oLayout->addWidget(new QLabel(" Sampling"), 1, 2, Qt::AlignRight); 444 444 oLayout->addWidget(_rnxSamplSpinBox, 1, 3, Qt::AlignLeft); 445 445 oLayout->addWidget(new QLabel("Skeleton extension"), 2, 0); 446 446 oLayout->addWidget(_rnxSkelLineEdit, 2, 1,1,1, Qt::AlignLeft); 447 447 oLayout->addWidget(new QLabel("Script (full path)"), 3, 0); 448 oLayout->addWidget(_rnxScrpLineEdit, 3, 1,1, 12);448 oLayout->addWidget(_rnxScrpLineEdit, 3, 1,1,24); 449 449 oLayout->addWidget(new QLabel("Version 3"), 4, 0); 450 450 oLayout->addWidget(_rnxV3CheckBox, 4, 1); 451 oLayout->addWidget(new QLabel("Saving RINEX observation files."),5,0,1, 12, Qt::AlignLeft);451 oLayout->addWidget(new QLabel("Saving RINEX observation files."),5,0,1,50, Qt::AlignLeft); 452 452 ogroup->setLayout(oLayout); 453 453 … … 476 476 477 477 eLayout->addWidget(new QLabel("Directory"), 0, 0); 478 eLayout->addWidget(_ephPathLineEdit, 0, 1); 478 eLayout->addWidget(_ephPathLineEdit, 0, 1, 1,30); 479 479 eLayout->addWidget(new QLabel("Interval"), 1, 0); 480 480 eLayout->addWidget(_ephIntrComboBox, 1, 1); … … 483 483 eLayout->addWidget(new QLabel("Version 3"), 3, 0); 484 484 eLayout->addWidget(_ephV3CheckBox, 3, 1); 485 eLayout->addWidget(new QLabel("Saving RINEX ephemeris files and ephemeris output through IP port."),4,0,1, 2,Qt::AlignLeft);485 eLayout->addWidget(new QLabel("Saving RINEX ephemeris files and ephemeris output through IP port."),4,0,1,50,Qt::AlignLeft); 486 486 eLayout->addWidget(new QLabel(" "),5,0); 487 487 egroup->setLayout(eLayout); … … 513 513 514 514 cLayout->addWidget(new QLabel("Directory"), 0, 0); 515 cLayout->addWidget(_corrPathLineEdit, 0, 1,1, 30);515 cLayout->addWidget(_corrPathLineEdit, 0, 1,1,20); 516 516 cLayout->addWidget(new QLabel("Interval"), 1, 0); 517 517 cLayout->addWidget(_corrIntrComboBox, 1, 1); 518 518 cLayout->addWidget(new QLabel("Port"), 2, 0); 519 519 cLayout->addWidget(_corrPortLineEdit, 2, 1); 520 cLayout->addWidget(new QLabel("Wait for full epoch"), 520 cLayout->addWidget(new QLabel(" Wait for full epoch"), 2, 2, Qt::AlignRight); 521 521 cLayout->addWidget(_corrTimeSpinBox, 2, 3, Qt::AlignLeft); 522 cLayout->addWidget(new QLabel("Saving Broadcast Ephemeris correction files and correction output through IP port."),3,0,1, 30);522 cLayout->addWidget(new QLabel("Saving Broadcast Ephemeris correction files and correction output through IP port."),3,0,1,50); 523 523 cLayout->addWidget(new QLabel(" "),4,0); 524 524 cLayout->addWidget(new QLabel(" "),5,0); … … 554 554 sLayout->addWidget(_binSamplSpinBox, 1, 1, Qt::AlignLeft); 555 555 sLayout->addWidget(new QLabel("File (full path)"), 2, 0); 556 sLayout->addWidget(_outFileLineEdit, 2, 1, 1, 30);556 sLayout->addWidget(_outFileLineEdit, 2, 1, 1, 20); 557 557 sLayout->addWidget(new QLabel("Port (unsynchronized)"), 3, 0); 558 558 sLayout->addWidget(_outUPortLineEdit, 3, 1); 559 sLayout->addWidget(new QLabel("Output decoded observations in a binary format to feed a real-time GNSS engine."),4,0,1, 30);559 sLayout->addWidget(new QLabel("Output decoded observations in a binary format to feed a real-time GNSS engine."),4,0,1,50); 560 560 sLayout->addWidget(new QLabel(" "),5,0); 561 561 sgroup->setLayout(sLayout); … … 657 657 aLayout->addWidget(_adviseRecoSpinBox, 2, 1); 658 658 aLayout->addWidget(new QLabel("Script (full path)"), 3, 0); 659 aLayout->addWidget(_adviseScriptLineEdit, 3, 1,1, 10);660 aLayout->addWidget(new QLabel("Outage report, handling of corrupted streams."),5,0,1, 10,Qt::AlignLeft);659 aLayout->addWidget(_adviseScriptLineEdit, 3, 1,1,30); 660 aLayout->addWidget(new QLabel("Outage report, handling of corrupted streams."),5,0,1,50,Qt::AlignLeft); 661 661 agroup->setLayout(aLayout); 662 662
Note:
See TracChangeset
for help on using the changeset viewer.