Eclipse SUMO - Simulation of Urban MObility
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
GNETLSTable.cpp
Go to the documentation of this file.
1/****************************************************************************/
2// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3// Copyright (C) 2001-2025 German Aerospace Center (DLR) and others.
4// This program and the accompanying materials are made available under the
5// terms of the Eclipse Public License 2.0 which is available at
6// https://www.eclipse.org/legal/epl-2.0/
7// This Source Code may also be made available under the following Secondary
8// Licenses when the conditions for such availability set forth in the Eclipse
9// Public License 2.0 are satisfied: GNU General Public License, version 2
10// or later which is available at
11// https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
12// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
13/****************************************************************************/
18// Table used in GNETLSFrame for editing TLS programs
19/****************************************************************************/
20
22#include <netedit/GNEViewNet.h>
31
32#include "GNETLSTable.h"
33
34// ===========================================================================
35// Defines
36// ===========================================================================
37
38#define EXTRAMARGIN 1
39#define DEFAULTWIDTH 190
40
41// ===========================================================================
42// FOX callback mapping
43// ===========================================================================
44
45FXDEFMAP(GNETLSTable) GNETLSTableMap[] = {
48 // text fields
52 // add phase buttons
59 // remove phase button
62 // move up phase button
65 // move down phase button
68};
69
70// Object implementation
71FXIMPLEMENT(GNETLSTable, FXHorizontalFrame, GNETLSTableMap, ARRAYNUMBER(GNETLSTableMap))
72
73// ===========================================================================
74// method definitions
75// ===========================================================================
76
77// ---------------------------------------------------------------------------
78// GNETLSTable - public methods
79// ---------------------------------------------------------------------------
80
81GNETLSTable::GNETLSTable(GNETLSEditorFrame::TLSPhases* TLSPhasesParent) :
82 FXHorizontalFrame(TLSPhasesParent->getCollapsableFrame(), GUIDesignAuxiliarFrameFixWidth),
83 myProgramFont(new FXFont(getApp(), "Courier New", 10)),
84 myIndexFont(new FXFont(getApp(), "Segoe UI", 9)),
85 myIndexSelectedFont(new FXFont(getApp(), "Segoe UI", 9, FXFont::Bold)),
86 myTLSPhasesParent(TLSPhasesParent) {
87 // set default width
88 recalcTableWidth();
89}
90
91
93 // delete fonts
94 delete myProgramFont;
95 delete myIndexFont;
97}
98
99
100void
102 // enable all cells
103 for (const auto& row : myRows) {
104 for (const auto& cell : row->getCells()) {
105 cell->enable();
106 }
107 }
108 // enable horizontal frame
109 FXHorizontalFrame::enable();
110}
111
112
113void
115 // disable all cells
116 for (const auto& row : myRows) {
117 for (const auto& cell : row->getCells()) {
118 cell->disable();
119 }
120 }
121 // disable horizontal frame
122 FXHorizontalFrame::disable();
123}
124
125
130
131
132void
134 // get minimum width of all elements
135 int minimumTableWidth = 0;
136 // get pointer to name column
137 Column* nameColumn = nullptr;
138 // iterate over all columns
139 for (const auto& column : myColumns) {
140 // check if this is the name column
141 if (column->getType() == 'm') {
142 // save column
143 nameColumn = column;
144 } else {
145 // get minimum column width
146 const auto minimunColWidth = column->getColumnMinimumWidth();
147 // set columnwidth
148 column->setColumnWidth(minimunColWidth);
149 // update minimum table width
150 minimumTableWidth += minimunColWidth;
151 }
152 }
153 // adjust name column
154 if (nameColumn) {
155 // get column name width
156 const int minimumColNameWidth = nameColumn->getColumnMinimumWidth();
157 // get scrollBar width
158 const int scrollBarWidth = myTLSPhasesParent->getTLSEditorParent()->getScrollBarWidth();
159 // get frame area width - padding (30, constant, 15 left, 15 right)
160 const auto frameAreaWidth = myTLSPhasesParent->getTLSEditorParent()->getViewNet()->getViewParent()->getFrameAreaWidth() - 30;
161 // continue depending of minimum table width
162 if ((frameAreaWidth - (minimumTableWidth + minimumColNameWidth + scrollBarWidth)) > 0) {
163 nameColumn->setColumnWidth(frameAreaWidth - minimumTableWidth - scrollBarWidth);
164 setWidth(frameAreaWidth);
165 } else {
166 nameColumn->setColumnWidth(minimumColNameWidth);
167 setWidth(minimumTableWidth + minimumColNameWidth);
168 }
169 } else if (minimumTableWidth > 0) {
170 setWidth(minimumTableWidth);
171 } else {
172 setWidth(DEFAULTWIDTH);
173 }
174}
175
176
177void
179 // clear rows (always before columns, because delete row delete also all cells)
180 for (const auto& row : myRows) {
181 delete row;
182 }
183 // clear columns
184 for (const auto& column : myColumns) {
185 delete column;
186 }
187 // drop rows and columns
188 myRows.clear();
189 myColumns.clear();
190}
191
192
193void
194GNETLSTable::setTableSize(const std::string& columnsType, const int numberRow) {
195 // first clear table
196 clearTable();
197 // create columns
198 for (int i = 0; i < (FXint)columnsType.size(); i++) {
199 myColumns.push_back(new Column(this, i, columnsType.at(i)));
200 }
201 // create rows
202 for (int i = 0; i < numberRow; i++) {
203 myRows.push_back(new Row(this));
204 }
205 // if we have only a row, disable remove and move buttons
206 if (myRows.size() == 1) {
207 myRows.front()->disableButtons();
208 }
209}
210
211
212void
213GNETLSTable::setItemText(FXint row, FXint column, const std::string& text) {
214 if ((row >= 0) && (row < (FXint)myRows.size()) &&
215 (column >= 0) && (column < (FXint)myColumns.size())) {
216 myRows.at(row)->setText(column, text);
217 // check if update accumulated duration
218 if (myColumns.at(column)->getType() == 'u') {
220 }
221 } else {
222 throw ProcessError(TL("Invalid row or column"));
223 }
224}
225
226
227std::string
228GNETLSTable::getItemText(const int row, const int column) const {
229 if ((row >= 0) && (row < (FXint)myRows.size()) &&
230 (column >= 0) && (column < (FXint)myColumns.size())) {
231 return myRows.at(row)->getText(column);
232 }
233 throw ProcessError(TL("Invalid row or column"));
234}
235
236
237int
239 return (int)myRows.size();
240}
241
242
243int
247
248
249void
251 if ((row >= 0) && (row < (FXint)myRows.size())) {
252 // update current selected row
254 // update index label
256 } else {
257 throw ProcessError(TL("Invalid row"));
258 }
259}
260
261
262void
263GNETLSTable::setColumnLabelTop(const int column, const std::string& text, const std::string& tooltip) {
264 if ((column >= 0) && (column < (int)myColumns.size())) {
265 myColumns.at(column)->setColumnLabelTop(text, tooltip);
266 } else {
267 throw ProcessError(TL("Invalid column"));
268 }
269}
270
271
272void
273GNETLSTable::setColumnLabelBot(const int column, const std::string& text) {
274 if ((column >= 0) && (column < (int)myColumns.size())) {
275 myColumns.at(column)->setColumnLabelBot(text);
276 } else {
277 throw ProcessError(TL("Invalid column"));
278 }
279}
280
281
282long
283GNETLSTable::onFocusRow(FXObject* sender, FXSelector, void*) {
284 int selectedRow = -1;
285 // search selected text field
286 for (int rowIndex = 0; rowIndex < (int)myRows.size(); rowIndex++) {
287 // iterate over every cell
288 for (const auto& cell : myRows.at(rowIndex)->getCells()) {
289 if ((cell->getTextField() == sender) || (cell->getAddButton() == sender)) {
290 selectedRow = rowIndex;
291 }
292 }
293 }
294 // update index label
296 // set new row
297 if (myCurrentSelectedRow != selectedRow) {
298 myCurrentSelectedRow = selectedRow;
300 }
301 return 0;
302}
303
304
305long
306GNETLSTable::onCmdAddPhasePressed(FXObject* sender, FXSelector, void*) {
307 // search selected add button
308 for (int columnIndex = 0; columnIndex < (int)myColumns.size(); columnIndex++) {
309 for (int rowIndex = 0; rowIndex < (int)myRows.size(); rowIndex++) {
310 if (myRows.at(rowIndex)->getCells().at(columnIndex)->getAddButton() == sender) {
311 myRows.at(rowIndex)->getCells().at(columnIndex)->getAddPhaseButton()->setFocus();
312 return 1;
313 }
314 }
315 }
316 // nothing to focus
317 return 0;
318}
319
320
321long
322GNETLSTable::onCmdEditRow(FXObject* sender, FXSelector, void*) {
323 // search selected text field
324 for (int columnIndex = 0; columnIndex < (int)myColumns.size(); columnIndex++) {
325 for (int rowIndex = 0; rowIndex < (int)myRows.size(); rowIndex++) {
326 // get text field
327 const auto textField = myRows.at(rowIndex)->getCells().at(columnIndex)->getTextField();
328 if (textField == sender) {
329 // edit value and change value depending of result
330 if (myTLSPhasesParent->changePhaseValue(columnIndex, rowIndex, textField->getText().text())) {
331 textField->setTextColor(FXRGB(0, 0, 0));
332 textField->killFocus();
334 } else {
335 textField->setTextColor(FXRGB(255, 0, 0));
336 }
337 return 1;
338 }
339 }
340 }
341 // nothing to edit
342 return 0;
343}
344
345
346long
347GNETLSTable::onCmdKeyPress(FXObject* sender, FXSelector sel, void* ptr) {
348 // get FXEvent
349 FXEvent* eventInfo = (FXEvent*)ptr;
350 // check code
351 if (eventInfo->code == 65362) {
352 // move up
353 if (myCurrentSelectedRow > 0) {
355 } else {
356 // we're in the first, then select last
357 myCurrentSelectedRow = ((int)myRows.size() - 1);
358 }
359 // update index label
361 // move focus
362 moveFocus();
363 return 1;
364 } else if (eventInfo->code == 65364) {
365 // move down
366 if (myCurrentSelectedRow < ((int)myRows.size() - 1)) {
368 } else {
369 // we're in the last, then select first
371 }
372 // update index label
374 // move focus
375 moveFocus();
376 return 1;
377 } else {
378 // continue handling key pres
379 return sender->handle(sender, sel, ptr);
380 }
381}
382
383
384long
385GNETLSTable::onCmdAddPhase(FXObject* sender, FXSelector, void*) {
386 // search selected text field
387 for (int indexRow = 0; indexRow < (int)myRows.size(); indexRow++) {
388 // iterate over every cell
389 for (const auto& cell : myRows.at(indexRow)->getCells()) {
390 if (cell->getAddPhaseButton() == sender) {
391 // hide popup
392 cell->hideMenuButtonPopup();
393 // add row
394 myTLSPhasesParent->addPhase(indexRow);
395 // stop
396 return 0;
397 }
398 }
399 }
400 return 0;
401}
402
403
404long
405GNETLSTable::onCmdDuplicatePhase(FXObject* sender, FXSelector, void*) {
406 // search selected text field
407 for (int indexRow = 0; indexRow < (int)myRows.size(); indexRow++) {
408 // iterate over every cell
409 for (const auto& cell : myRows.at(indexRow)->getCells()) {
410 if (cell->getDuplicatePhaseButton() == sender) {
411 // hide popup
412 cell->hideMenuButtonPopup();
413 // duplicate row
415 // stop
416 return 0;
417 }
418 }
419 }
420 return 0;
421}
422
423
424long
425GNETLSTable::onCmdAddPhaseAllRed(FXObject* sender, FXSelector, void*) {
426 // search selected text field
427 for (int indexRow = 0; indexRow < (int)myRows.size(); indexRow++) {
428 // iterate over every cell
429 for (const auto& cell : myRows.at(indexRow)->getCells()) {
430 if (cell->getAddAllRedPhaseButton() == sender) {
431 // hide popup
432 cell->hideMenuButtonPopup();
433 // add row
434 myTLSPhasesParent->addPhase(indexRow, 'r');
435 // stop
436 return 0;
437 }
438 }
439 }
440 return 0;
441}
442
443
444long
445GNETLSTable::onCmdAddPhaseAllYellow(FXObject* sender, FXSelector, void*) {
446 // search selected text field
447 for (int indexRow = 0; indexRow < (int)myRows.size(); indexRow++) {
448 // iterate over every cell
449 for (const auto& cell : myRows.at(indexRow)->getCells()) {
450 if (cell->getAddAllYellowPhaseButton() == sender) {
451 // hide popup
452 cell->hideMenuButtonPopup();
453 // add row
454 myTLSPhasesParent->addPhase(indexRow, 'y');
455 // stop
456 return 0;
457 }
458 }
459 }
460 return 0;
461}
462
463
464long
465GNETLSTable::onCmdAddPhaseAllGreen(FXObject* sender, FXSelector, void*) {
466 // search selected text field
467 for (int indexRow = 0; indexRow < (int)myRows.size(); indexRow++) {
468 // iterate over every cell
469 for (const auto& cell : myRows.at(indexRow)->getCells()) {
470 if (cell->getAddAllGreenPhaseButton() == sender) {
471 // hide popup
472 cell->hideMenuButtonPopup();
473 // add row
474 myTLSPhasesParent->addPhase(indexRow, 'g');
475 // stop
476 return 0;
477 }
478 }
479 }
480 return 0;
481}
482
483
484long
485GNETLSTable::onCmdAddPhaseAllGreenPriority(FXObject* sender, FXSelector, void*) {
486 // search selected text field
487 for (int indexRow = 0; indexRow < (int)myRows.size(); indexRow++) {
488 // iterate over every cell
489 for (const auto& cell : myRows.at(indexRow)->getCells()) {
490 if (cell->getAddAllGreenPriorityPhaseButton() == sender) {
491 // hide popup
492 cell->hideMenuButtonPopup();
493 // add row
494 myTLSPhasesParent->addPhase(indexRow, 'G');
495 // stop
496 return 0;
497 }
498 }
499 }
500 return 0;
501}
502
503
504long
505GNETLSTable::onCmdRemovePhase(FXObject* sender, FXSelector, void*) {
506 // search selected text field
507 for (int indexRow = 0; indexRow < (int)myRows.size(); indexRow++) {
508 // iterate over every cell
509 for (const auto& cell : myRows.at(indexRow)->getCells()) {
510 if (cell->getButton() == sender) {
511 // remove row
513 // stop
514 return 0;
515 }
516 }
517 }
518 return 0;
519}
520
521
522long
523GNETLSTable::onCmdMoveUpPhase(FXObject* sender, FXSelector, void*) {
524 // search selected text field
525 for (int indexRow = 0; indexRow < (int)myRows.size(); indexRow++) {
526 // iterate over every cell
527 for (const auto& cell : myRows.at(indexRow)->getCells()) {
528 if (cell->getButton() == sender) {
529 // move phase up
531 // stop
532 return 0;
533 }
534 }
535 }
536 return 0;
537}
538
539
540long
541GNETLSTable::onCmdMoveDownPhase(FXObject* sender, FXSelector, void*) {
542 // search selected text field
543 for (int indexRow = 0; indexRow < (int)myRows.size(); indexRow++) {
544 // iterate over every cell
545 for (const auto& cell : myRows.at(indexRow)->getCells()) {
546 if (cell->getButton() == sender) {
547 // move phase down
549 // stop
550 return 0;
551 }
552 }
553 }
554 return 0;
555}
556
557
558void
560 // update radio buttons checks
561 for (int rowIndex = 0; rowIndex < (int)myRows.size(); rowIndex++) {
562 // iterate over every cell
563 for (const auto& cell : myRows.at(rowIndex)->getCells()) {
564 if (cell->getIndexLabel()) {
565 if (myCurrentSelectedRow == rowIndex) {
566 cell->showIndexLabelBold();
567 } else {
568 cell->showIndexLabelNormal();
569 }
570 }
571 }
572 }
573 // update coloring
575}
576
577
578void
580 // first find the duration col
581 int durationCol = -1;
582 for (int i = 0; i < (int)myColumns.size(); i++) {
583 if (myColumns.at(i)->getType() == 'u') {
584 durationCol = i;
585 }
586 }
587 // continue depending of durationCol
588 if (durationCol != -1) {
589 // declare a int vector for saving durations
590 std::vector<double> durations;
591 // fill durations
592 for (const auto& row : myRows) {
593 durations.push_back(row->getCells().at(durationCol)->getDoubleValue());
594 }
595 // update durations
596 for (int i = 1; i < (int)durations.size(); i++) {
597 durations.at(i) += durations.at(i - 1);
598 }
599 // set tooltips in row cells
600 for (int i = 0; i < (int)myRows.size(); i++) {
601 myRows.at(i)->getCells().at(durationCol)->setTooltip(TL("Accumulated: ") + toString(durations.at(i)));
602 }
603 }
604}
605
606
607bool
609 // first find focus
610 // update radio buttons checks
611 for (int rowIndex = 0; rowIndex < (int)myRows.size(); rowIndex++) {
612 for (int cellIndex = 0; cellIndex < (int)myRows.at(rowIndex)->getCells().size(); cellIndex++) {
613 if (myRows.at(rowIndex)->getCells().at(cellIndex)->hasFocus()) {
614 // set focus in current row
615 myRows.at(myCurrentSelectedRow)->getCells().at(cellIndex)->setFocus();
616 return true;
617 }
618 }
619 }
620 return false;
621}
622
623// ---------------------------------------------------------------------------
624// GNETLSTable::Cell - methods
625// ---------------------------------------------------------------------------
626
627GNETLSTable::Cell::Cell(GNETLSTable* TLSTable, MFXTextFieldTooltip* textField, int col, int row) :
628 myTLSTable(TLSTable),
629 myTextField(textField),
630 myCol(col),
631 myRow(row) {
632 // create
633 textField->create();
634}
635
636
637GNETLSTable::Cell::Cell(GNETLSTable* TLSTable, FXLabel* indexLabel, FXLabel* indexLabelBold, int col, int row) :
638 myTLSTable(TLSTable),
639 myIndexLabel(indexLabel),
640 myIndexLabelBold(indexLabelBold),
641 myCol(col),
642 myRow(row) {
643 // create both
644 indexLabel->create();
645 indexLabelBold->create();
646 // hide bold and set background
647 indexLabelBold->hide();
648 indexLabelBold->setBackColor(FXRGBA(210, 233, 255, 255));
649}
650
651
652GNETLSTable::Cell::Cell(GNETLSTable* TLSTable, MFXButtonTooltip* button, int col, int row) :
653 myTLSTable(TLSTable),
654 myButton(button),
655 myCol(col),
656 myRow(row) {
657 // create
658 button->create();
659}
660
661
662GNETLSTable::Cell::Cell(GNETLSTable* TLSTable, int col, int row) :
663 myTLSTable(TLSTable),
664 myCol(col),
665 myRow(row) {
666 // build locator popup
667 myMenuButtonPopup = new FXPopup(TLSTable->myColumns.at(col)->getVerticalCellFrame(), POPUP_HORIZONTAL);
668 // build menu button
669 myAddButton = new MFXMenuButtonTooltip(TLSTable->myColumns.at(col)->getVerticalCellFrame(),
671 (std::string("\t") + TL("Add phase") + std::string("\t") + TL("Add new phase.")).c_str(),
673 // default phase
676 (std::string("\t") + TL("Default phase") + std::string("\t") + TL("Add default phase.")).c_str(),
678 // duplicate phase
681 (std::string("\t") + TL("Duplicate phase") + std::string("\t") + TL("Duplicate this phase.")).c_str(),
683 // red phase
686 (std::string("\t") + TL("Red phase") + std::string("\t") + TL("Add red phase.")).c_str(),
688 // yellow phase
691 (std::string("\t") + TL("Yellow phase") + std::string("\t") + TL("Add yellow phase.")).c_str(),
693 // green phase
696 (std::string("\t") + TL("Green phase") + std::string("\t") + TL("Add green phase.")).c_str(),
698 // green priority phase
701 (std::string("\t") + TL("Green priority phase") + std::string("\t") + TL("Add green priority phase.")).c_str(),
703 // create elements
704 myMenuButtonPopup->create();
705 myAddButton->create();
706 myAddPhaseButton->create();
707 myDuplicatePhaseButton->create();
708 myAddAllRedButton->create();
709 myAddAllYellowButton->create();
710 myAddAllGreenButton->create();
712 // set backgrounds
713 myAddPhaseButton->setBackColor(FXRGBA(210, 233, 255, 255));
714 myDuplicatePhaseButton->setBackColor(FXRGBA(210, 233, 255, 255));
715 myAddAllRedButton->setBackColor(FXRGBA(255, 213, 213, 255));
716 myAddAllYellowButton->setBackColor(FXRGBA(253, 255, 206, 255));
717 myAddAllGreenButton->setBackColor(FXRGBA(240, 255, 205, 255));
718 myAddAllGreenPriorityButton->setBackColor(FXRGBA(240, 255, 205, 255));
719}
720
722 // delete all elements
723 if (myTextField) {
724 delete myTextField;
725 }
726 if (myIndexLabel) {
727 delete myIndexLabel;
728 }
729 if (myIndexLabelBold) {
730 delete myIndexLabelBold;
731 }
732 if (myButton) {
733 delete myButton;
734 }
735 if (myAddButton) {
736 delete myAddButton;
737 }
738 if (myAddPhaseButton) {
739 delete myAddPhaseButton;
740 }
741 if (myDuplicatePhaseButton) {
742 delete myDuplicatePhaseButton;
743 }
744 if (myAddAllRedButton) {
745 delete myAddAllRedButton;
746 }
747 if (myAddAllYellowButton) {
748 delete myAddAllYellowButton;
749 }
750 if (myAddAllGreenButton) {
751 delete myAddAllGreenButton;
752 }
753 if (myAddAllGreenPriorityButton) {
754 delete myAddAllGreenPriorityButton;
755 }
756 if (myMenuButtonPopup) {
757 delete myMenuButtonPopup;
758 }
759}
760
761void
763 // enable all elements
764 if (myTextField) {
765 myTextField->enable();
766 }
767 if (myIndexLabel) {
768 myIndexLabel->enable();
769 }
770 if (myIndexLabelBold) {
771 myIndexLabelBold->enable();
772 }
773 if (myButton && !myDisableButton) {
774 myButton->enable();
775 }
776 if (myAddButton) {
777 myAddButton->enable();
778 }
779 if (myAddPhaseButton) {
780 myAddPhaseButton->enable();
781 }
782 if (myDuplicatePhaseButton) {
783 myDuplicatePhaseButton->enable();
784 }
785 if (myAddAllRedButton) {
786 myAddAllRedButton->enable();
787 }
788 if (myAddAllYellowButton) {
789 myAddAllYellowButton->enable();
790 }
791 if (myAddAllGreenButton) {
792 myAddAllGreenButton->enable();
793 }
794 if (myAddAllGreenPriorityButton) {
795 myAddAllGreenPriorityButton->enable();
796 }
797 if (myMenuButtonPopup) {
798 myMenuButtonPopup->enable();
799 }
800}
801
802
803void
805 // disable all elements
806 if (myTextField) {
807 myTextField->disable();
808 }
809 if (myIndexLabel) {
810 myIndexLabel->disable();
811 }
812 if (myIndexLabelBold) {
813 myIndexLabelBold->disable();
814 }
815 if (myButton && !myDisableButton) {
816 myButton->disable();
817 }
818 if (myAddButton) {
819 myAddButton->disable();
820 }
821 if (myAddPhaseButton) {
822 myAddPhaseButton->disable();
823 }
824 if (myDuplicatePhaseButton) {
825 myDuplicatePhaseButton->disable();
826 }
827 if (myAddAllRedButton) {
828 myAddAllRedButton->disable();
829 }
830 if (myAddAllYellowButton) {
831 myAddAllYellowButton->disable();
832 }
833 if (myAddAllGreenButton) {
834 myAddAllGreenButton->disable();
835 }
836 if (myAddAllGreenPriorityButton) {
837 myAddAllGreenPriorityButton->disable();
838 }
839 if (myMenuButtonPopup) {
840 myMenuButtonPopup->disable();
841 }
842}
843
844
845bool
847 // check if one of the cell elements has the focus
848 if (myTextField && myTextField->hasFocus()) {
849 return true;
850 } else if (myButton && myButton->hasFocus()) {
851 return true;
852 } else if (myAddButton && myAddButton->hasFocus()) {
853 return true;
854 } else if (myAddPhaseButton && myAddPhaseButton->hasFocus()) {
855 return true;
856 } else if (myDuplicatePhaseButton && myDuplicatePhaseButton->hasFocus()) {
857 return true;
858 } else if (myAddAllRedButton && myAddAllRedButton->hasFocus()) {
859 return true;
860 } else if (myAddAllYellowButton && myAddAllYellowButton->hasFocus()) {
861 return true;
862 } else if (myAddAllGreenButton && myAddAllGreenButton->hasFocus()) {
863 return true;
864 } else if (myAddAllGreenPriorityButton && myAddAllGreenPriorityButton->hasFocus()) {
865 return true;
866 } else {
867 return false;
868 }
869}
870
871
872void
874 // set focus
875 if (myTextField) {
876 myTextField->setFocus();
877 } else if (myButton) {
878 myButton->setFocus();
879 } else if (myAddButton) {
880 myAddButton->setFocus();
881 } else if (myAddPhaseButton) {
882 myAddPhaseButton->setFocus();
883 } else if (myDuplicatePhaseButton) {
884 myDuplicatePhaseButton->setFocus();
885 } else if (myAddAllRedButton) {
886 myAddAllRedButton->setFocus();
887 } else if (myAddAllYellowButton) {
888 myAddAllYellowButton->setFocus();
889 } else if (myAddAllGreenButton) {
890 myAddAllGreenButton->setFocus();
891 } else if (myAddAllGreenPriorityButton) {
892 myAddAllGreenPriorityButton->setFocus();
893 }
894}
895
896
897double
899 if (myTextField->getText().empty()) {
900 return 0;
901 } else if (!GNEAttributeCarrier::canParse<double>(myTextField->getText().text())) {
902 throw ProcessError(TL("Cannot be parsed to double"));
903 } else {
904 return GNEAttributeCarrier::parse<double>(myTextField->getText().text());
905 }
906}
907
908
909void
910GNETLSTable::Cell::setTooltip(const std::string& toolTip) {
911 if (myTextField) {
912 myTextField->setToolTipText(toolTip.c_str());
913 } else {
914 throw ProcessError(TL("Tooltips only for TextFields"));
915 }
916}
917
918
921 return myTextField;
922}
923
924
925FXLabel*
927 return myIndexLabel;
928}
929
930
933 return myAddButton;
934}
935
936
939 return myButton;
940}
941
942
945 return myAddPhaseButton;
946}
947
948
951 return myDuplicatePhaseButton;
952}
953
954
957 return myAddAllRedButton;
958}
959
960
963 return myAddAllYellowButton;
964}
965
966
969 return myAddAllGreenButton;
970}
971
972
975 return myAddAllGreenPriorityButton;
976}
977
978
979void
981 myIndexLabel->show();
982 myIndexLabelBold->hide();
983 // recalc both
984 myIndexLabel->recalc();
985 myIndexLabelBold->recalc();
986}
987
988
989void
991 myIndexLabel->hide();
992 myIndexLabelBold->show();
993 // recalc both
994 myIndexLabel->recalc();
995 myIndexLabelBold->recalc();
996}
997
998
999int
1001 return myCol;
1002}
1003
1004
1005int
1007 return myRow;
1008}
1009
1010
1011char
1013 return myTLSTable->myColumns.at(myCol)->getType();
1014}
1015
1016
1017void
1019 myMenuButtonPopup->popdown();
1020}
1021
1022
1023void
1025 if (myButton) {
1026 myButton->disable();
1027 myDisableButton = true;
1028 }
1029}
1030
1031
1033 myCol(-1),
1034 myRow(-1) {
1035}
1036
1037// ---------------------------------------------------------------------------
1038// GNETLSTable::Column - methods
1039// ---------------------------------------------------------------------------
1040
1041GNETLSTable::Column::Column(GNETLSTable* table, const int index, const char type) :
1042 myTable(table),
1043 myIndex(index),
1044 myType(type) {
1045 // create vertical frame
1046 myVerticalFrame = new FXVerticalFrame(table, GUIDesignAuxiliarFrameFixWidth);
1047 // create top label
1048 switch (myType) {
1049 case 's':
1050 case 'i':
1051 case 'd':
1052 case 't':
1053 case 'b':
1054 // empty label
1057 "", nullptr, GUIDesignLabelFixed(0));
1058 break;
1059 default:
1060 // ticked label
1063 "", nullptr, GUIDesignLabelThickedFixed(0));
1064 break;
1065 }
1066 // create vertical frame for cells
1068 // create bot label
1069 switch (myType) {
1070 case 's':
1071 // label with icon
1073 break;
1074 case 'u':
1075 case 'p':
1076 // ticked label
1077 myBotLabel = new FXLabel(myVerticalFrame, "", nullptr, GUIDesignLabelThickedFixed(0));
1078 break;
1079 default:
1080 // empty label
1081 myBotLabel = new FXLabel(myVerticalFrame, "", nullptr, GUIDesignLabelFixed(0));
1082 break;
1083 }
1084 // create elements
1085 myVerticalFrame->create();
1086 myTopLabel->create();
1087 myVerticalCellFrame->create();
1088 myBotLabel->create();
1089}
1090
1091
1093 // delete vertical frame (this also delete all childrens)
1094 delete myVerticalFrame;
1095}
1096
1097
1098FXVerticalFrame*
1100 return myVerticalCellFrame;
1101}
1102
1103
1104char
1106 return myType;
1107}
1108
1109
1110FXString
1112 return myTopLabel->getText();
1113}
1114
1115
1116void
1117GNETLSTable::Column::setColumnLabelTop(const std::string& text, const std::string& tooltip) {
1118 myTopLabel->setText(text.c_str());
1119 myTopLabel->setTipText(tooltip.c_str());
1120}
1121
1122
1123void
1125 myBotLabel->setText(text.c_str());
1126}
1127
1128
1129int
1131 // declare columnWidth
1132 int columnWidth = 0;
1133 // check column type
1134 if (myType == 's') {
1135 // set index column width
1136 columnWidth = 30;
1137 } else if (isTextFieldColumn()) {
1138 // calculate top label width
1139 columnWidth = myTopLabel->getFont()->getTextWidth(myTopLabel->getText().text(), myTopLabel->getText().length() + EXTRAMARGIN);
1140 // iterate over all textFields and check widths
1141 for (const auto& row : myTable->myRows) {
1142 // get text field
1143 const auto textField = row->getCells().at(myIndex)->getTextField();
1144 // get textField width
1145 const auto textFieldWidth = textField->getFont()->getTextWidth(textField->getText().text(), textField->getText().length() + EXTRAMARGIN);
1146 // compare widths
1147 if (textFieldWidth > columnWidth) {
1148 columnWidth = textFieldWidth;
1149 }
1150 }
1151 // calculate bot label width
1152 const auto botLabelWidth = myBotLabel->getFont()->getTextWidth(myBotLabel->getText().text(), myBotLabel->getText().length() + EXTRAMARGIN);
1153 if (botLabelWidth > columnWidth) {
1154 columnWidth = botLabelWidth;
1155 }
1156 } else {
1157 // is an index column, then return icon size
1158 columnWidth = GUIDesignHeight;
1159 }
1160 return columnWidth;
1161}
1162
1163
1164void
1166 // only adjust for textField columns
1167 if (isTextFieldColumn()) {
1168 for (const auto& row : myTable->myRows) {
1169 row->getCells().at(myIndex)->getTextField()->setWidth(colWidth);
1170 }
1171 }
1172 // adjust labels and vertical frames
1173 myVerticalFrame->setWidth(colWidth);
1174 myTopLabel->setWidth(colWidth);
1175 myVerticalCellFrame->setWidth(colWidth);
1176 myBotLabel->setWidth(colWidth);
1177}
1178
1179
1180bool
1182 return ((myType == 'u') || (myType == 'f') || (myType == 'p') || (myType == 'm') || (myType == '-'));
1183}
1184
1185
1187 myIndex(0),
1188 myType('-') {}
1189
1190// ---------------------------------------------------------------------------
1191// GNETLSTable::Row - methods
1192// ---------------------------------------------------------------------------
1193
1195 myTable(table) {
1196 // build textFields
1197 for (int columnIndex = 0; columnIndex < (FXint)table->myColumns.size(); columnIndex++) {
1198 // get number of cells
1199 const int numCells = (int)myCells.size();
1200 // continue depending of type
1201 switch (table->myColumns.at(columnIndex)->getType()) {
1202 case ('s'): {
1203 // create labels for index
1204 auto indexLabel = new FXLabel(table->myColumns.at(columnIndex)->getVerticalCellFrame(),
1205 toString(myTable->myRows.size()).c_str(), nullptr, GUIDesignLabelThickedFixed(30));
1206 auto indexLabelBold = new FXLabel(table->myColumns.at(columnIndex)->getVerticalCellFrame(),
1207 toString(myTable->myRows.size()).c_str(), nullptr, GUIDesignLabelThickedFixed(30));
1208 // set fonts
1209 indexLabel->setFont(myTable->myIndexFont);
1210 indexLabelBold->setFont(myTable->myIndexSelectedFont);
1211 myCells.push_back(new Cell(table, indexLabel, indexLabelBold, columnIndex, numCells));
1212 break;
1213 }
1214 case ('u'):
1215 case ('f'):
1216 case ('m'):
1217 case ('-'): {
1218 // create textField for values
1219 auto textField = new MFXTextFieldTooltip(table->myColumns.at(columnIndex)->getVerticalCellFrame(),
1222 myCells.push_back(new Cell(table, textField, columnIndex, numCells));
1223 break;
1224 }
1225 case ('p'): {
1226 // create text field for program (state)
1227 auto textField = new MFXTextFieldTooltip(table->myColumns.at(columnIndex)->getVerticalCellFrame(),
1230 // set special font
1231 textField->setFont(myTable->myProgramFont);
1232 myCells.push_back(new Cell(table, textField, columnIndex, numCells));
1233 break;
1234 }
1235 case ('i'): {
1236 // create popup for adding new phases
1237 myCells.push_back(new Cell(table, columnIndex, numCells));
1238 break;
1239 }
1240 case ('d'): {
1241 // create button for delete phase
1242 auto button = new MFXButtonTooltip(table->myColumns.at(columnIndex)->getVerticalCellFrame(),
1244 (std::string("\t") + TL("Delete phase") + std::string("\t") + TL("Delete this phase.")).c_str(),
1246 myCells.push_back(new Cell(table, button, columnIndex, numCells));
1247 break;
1248 }
1249 case ('t'): {
1250 // create button for move up phase
1251 auto button = new MFXButtonTooltip(table->myColumns.at(columnIndex)->getVerticalCellFrame(),
1253 (std::string("\t") + TL("Move phase up") + std::string("\t") + TL("Move this phase up.")).c_str(),
1255 myCells.push_back(new Cell(table, button, columnIndex, numCells));
1256 break;
1257 }
1258 case ('b'): {
1259 // create button for move down phase
1260 auto button = new MFXButtonTooltip(table->myColumns.at(columnIndex)->getVerticalCellFrame(),
1262 (std::string("\t") + TL("Move phase down") + std::string("\t") + TL("Move this phase down.")).c_str(),
1264 myCells.push_back(new Cell(table, button, columnIndex, numCells));
1265 break;
1266 }
1267 default:
1268 throw ProcessError("Invalid Cell type");
1269 }
1270 }
1271}
1272
1273
1275 // delete all cells
1276 for (const auto& cell : myCells) {
1277 delete cell;
1278 }
1279}
1280
1281
1282std::string
1284 if (myCells.at(index)->getTextField()) {
1285 return myCells.at(index)->getTextField()->getText().text();
1286 } else {
1287 throw ProcessError("Cell doesn't have a textField");
1288 }
1289}
1290
1291
1292void
1293GNETLSTable::Row::setText(int index, const std::string& text) const {
1294 // set text
1295 myCells.at(index)->getTextField()->setText(text.c_str());
1296}
1297
1298
1299const std::vector<GNETLSTable::Cell*>&
1301 return myCells;
1302}
1303
1304
1305void
1307 // search move up button and disable it
1308 for (const auto& cell : myCells) {
1309 if ((cell->getType() == 'd') || (cell->getType() == 'b') || (cell->getType() == 't')) {
1310 cell->disableButton();
1311 }
1312 }
1313}
1314
1315
1317
1318/****************************************************************************/
#define EXTRAMARGIN
FXDEFMAP(GNETLSTable) GNETLSTableMap[]
#define DEFAULTWIDTH
@ MID_GNE_TLSTABLE_ADDPHASE
TLSTable button for add phase.
@ MID_GNE_TLSTABLE_COPYPHASE
TLSTable button for copy phase.
@ MID_GNE_TLSTABLE_ADDPHASEALLGREENPRIORITY
TLSTable button for add phase green priority.
@ MID_MBTTIP_SELECTED
@ MID_GNE_TLSTABLE_ADDPHASEALLYELLOW
TLSTable button for add phase yelllow.
@ MID_GNE_TLSTABLE_TEXTFIELD
TLSTable textField.
@ MID_GNE_TLSTABLE_ADDPHASEALLRED
TLSTable button for add phase red.
@ MID_GNE_TLSTABLE_MOVEDOWNPHASE
TLSTable button for move down phase.
@ MID_MBTTIP_FOCUS
callback for MFXMenuButtonTooltip
@ MID_GNE_TLSTABLE_ADDPHASEALLGREEN
TLSTable button for add phase green.
@ MID_GNE_TLSTABLE_REMOVEPHASE
TLSTable button for remove phase.
@ MID_GNE_TLSTABLE_MOVEUPPHASE
TLSTable button for move up phase.
#define GUIDesignLabelFixed(width)
label, icon before text, text centered and custom width
Definition GUIDesigns.h:246
#define GUIDesignButtonIcon
button only with icon
Definition GUIDesigns.h:91
#define GUIDesignTextFieldTLSTable
text field with min width (used in TLS table)
Definition GUIDesigns.h:71
#define GUIDesignTextFieldNCol
Num of column of text field.
Definition GUIDesigns.h:74
#define GUIDesignAuxiliarFrameFixWidth
design for auxiliar vertical frames with fixed width (used in TLSTable and DecalsTable)
Definition GUIDesigns.h:417
#define GUIDesignTLSTableCheckableButtonIcon
checkable button only with icon used in TLSTable
Definition GUIDesigns.h:109
#define GUIDesignLabelThickedFixed(width)
label thicked, icon before text, text centered and custom width
Definition GUIDesigns.h:252
@ TLSPHASEALLGREEN
@ TLSPHASEALLGREENPRIORITY
@ TLSPHASECOPY
@ TLSPHASEDEFAULT
@ TLSPHASEALLYELLOW
@ TLSPHASEALLRED
#define TL(string)
Definition MsgHandler.h:301
int GUIDesignHeight
the default size for GUI elements
Definition StdDefs.cpp:35
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
Definition ToString.h:46
int getScrollBarWidth() const
get scrollBar width (zero if is hidden)
Definition GNEFrame.cpp:178
GNEViewNet * getViewNet() const
get view net
Definition GNEFrame.cpp:154
void movePhaseDown(const int row)
move phase down
bool changePhaseValue(const int col, const int row, const std::string &value)
change phase value (state, name, next, etc.)
void movePhaseUp(const int row)
move phase up
void updateTLSColoring()
update TLS coloring
void removePhase(const int row)
delete phase
void duplicatePhase(const int row)
duplicate phase
void addPhase(const int row, const char c=' ')
add phase
GNETLSEditorFrame * getTLSEditorParent() const
get TLSEditor Parent
FOX needs this.
void showIndexLabelNormal()
show label index normal
MFXButtonTooltip * getDuplicatePhaseButton()
get duplicate phase button
MFXButtonTooltip * myAddAllGreenPriorityButton
add all green priority phase button
MFXButtonTooltip * myAddAllRedButton
add all red phase button
void enable()
Enable cell.
void showIndexLabelBold()
show label index bold
MFXButtonTooltip * getAddPhaseButton()
get add phase button
int getCol() const
column index
void setFocus()
set focus in the current cell
void setTooltip(const std::string &toolTip)
set tooltip
bool hasFocus() const
check if current cell has focus
Cell()
default constructor
GNETLSTable * myTLSTable
pointer to TLSTable parent
FXPopup * myMenuButtonPopup
popup for buttons
MFXButtonTooltip * getAddAllGreenPriorityPhaseButton()
get add all green priority phase button
MFXButtonTooltip * getAddAllYellowPhaseButton()
get add all yellow phase button
int getRow() const
row index
void disableButton()
disable button (used for delete, move up and move down)
MFXMenuButtonTooltip * myAddButton
menu button tooltip
void hideMenuButtonPopup()
hide menuButton popup
MFXTextFieldTooltip * getTextField() const
get textField
FXLabel * getIndexLabel() const
get index label
double getDoubleValue() const
get double value (only for types 'u' and 'd')
MFXButtonTooltip * getButton()
get remove, move up or move down button
MFXMenuButtonTooltip * getAddButton() const
get add button
MFXButtonTooltip * myAddAllYellowButton
add all yellow phase button
void disable()
Disable cell.
MFXButtonTooltip * getAddAllGreenPhaseButton()
get add all green phase button
char getType() const
get column type
MFXButtonTooltip * getAddAllRedPhaseButton()
get add all red phase button
MFXButtonTooltip * myDuplicatePhaseButton
duplicate phase button
MFXButtonTooltip * myAddPhaseButton
add phase button
MFXButtonTooltip * myAddAllGreenButton
add all green phase button
int getColumnMinimumWidth()
get column minimum width
const char myType
column type
FXVerticalFrame * myVerticalFrame
vertical frame
FXLabel * myBotLabel
column bot label
Column()
default constructor
FXVerticalFrame * getVerticalCellFrame() const
get vertical cell frame
FXVerticalFrame * myVerticalCellFrame
vertical frame
void setColumnLabelTop(const std::string &text, const std::string &tooltip)
set column label top
bool isTextFieldColumn() const
check if current type correspond to a textField
char getType() const
get column type
FXString getColumnLabelTop() const
get column label top
void setColumnLabelBot(const std::string &text)
set column label boit
MFXLabelTooltip * myTopLabel
column top tooltip label
void setColumnWidth(const int colWidth)
set colum width
void setText(int index, const std::string &text) const
set text
Row()
default constructor
GNETLSTable * myTable
poiner to table parent
std::vector< Cell * > myCells
list wtih cells
void disableButtons()
disable row buttons
const std::vector< Cell * > & getCells() const
get cells
std::string getText(int index) const
get text
GNETLSEditorFrame::TLSPhases * myTLSPhasesParent
@frame pointer to TLSEditorFrame phases parent
int getNumRows() const
Get number of rows.
int myCurrentSelectedRow
current selected row
long onCmdDuplicatePhase(FXObject *, FXSelector, void *)
called when a duplicate phase button is pressed
long onCmdEditRow(FXObject *, FXSelector, void *)
called when a row is modified
FXFont * myIndexSelectedFont
font for index selected
long onCmdAddPhaseAllRed(FXObject *, FXSelector, void *)
called when an add all green red phase button is pressed
long onCmdAddPhaseAllGreenPriority(FXObject *, FXSelector, void *)
called when an add all green red phase button is pressed
long onCmdAddPhase(FXObject *, FXSelector, void *)
called when an add phase button is pressed
void updateIndexLabel()
update index labels
long onFocusRow(FXObject *, FXSelector, void *)
void setColumnLabelBot(const int column, const std::string &text)
Change column bottom text.
void clearTable()
clear table
void selectRow(const int rowIndex)
Select a row.
long onCmdMoveUpPhase(FXObject *, FXSelector, void *)
called when a move up phase button is pressed
~GNETLSTable()
destructor (Called automatically)
int getCurrentSelectedRow() const
Get current selected row.
long onCmdAddPhasePressed(FXObject *, FXSelector, void *)
called when add phase button is selected
FXFont * myIndexFont
font for index
void enable()
Enable table.
long onCmdAddPhaseAllYellow(FXObject *, FXSelector, void *)
called when an add all green red phase button is pressed
std::string getItemText(const int row, const int column) const
Return cell text.
long onCmdKeyPress(FXObject *, FXSelector, void *)
called when a key is pressed
long onCmdAddPhaseAllGreen(FXObject *, FXSelector, void *)
called when an add all green red phase button is pressed
bool moveFocus()
move focus to current row
void setColumnLabelTop(const int column, const std::string &text, const std::string &tooltip="")
Change column header text.
void setItemText(FXint row, FXint column, const std::string &text)
Modify cell text.
std::vector< Row * > myRows
rows
long onCmdRemovePhase(FXObject *, FXSelector, void *)
called when a remove phase button is pressed
void updateAccumulatedDuration()
update accumulated duration();
void setTableSize(const std::string &columnsType, const int numberRow)
Set the table size to nr rows and nc columns; all existing items will be removed. Format: s -> select...
FXFont * myProgramFont
font for the phase table
void disable()
Disable table.
long onCmdMoveDownPhase(FXObject *, FXSelector, void *)
called when a move up phase button is pressed
void recalcTableWidth()
recalc width (call when all labels and contents are fill)
GNETLSEditorFrame::TLSPhases * getTLSPhasesParent() const
@frame get pointer to TLSEditorFrame phases parent
std::vector< Column * > myColumns
columns
GNEViewParent * getViewParent() const
get the net object
GNEApplicationWindow * getGNEAppWindows() const
get GNE Application Windows
int getFrameAreaWidth() const
get frame area width
static FXIcon * getIcon(const GUIIcon which)
returns a icon previously defined in the enum GUIIcon
MFXStaticToolTip * getStaticTooltipMenu() const
get static toolTip for menus