39#define DEFAULTWIDTH 190
71FXIMPLEMENT(
GNETLSTable, FXHorizontalFrame, GNETLSTableMap, ARRAYNUMBER(GNETLSTableMap))
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) {
103 for (
const auto& row :
myRows) {
104 for (
const auto& cell : row->getCells()) {
109 FXHorizontalFrame::enable();
116 for (
const auto& row :
myRows) {
117 for (
const auto& cell : row->getCells()) {
122 FXHorizontalFrame::disable();
135 int minimumTableWidth = 0;
137 Column* nameColumn =
nullptr;
141 if (column->getType() ==
'm') {
148 column->setColumnWidth(minimunColWidth);
150 minimumTableWidth += minimunColWidth;
162 if ((frameAreaWidth - (minimumTableWidth + minimumColNameWidth + scrollBarWidth)) > 0) {
163 nameColumn->
setColumnWidth(frameAreaWidth - minimumTableWidth - scrollBarWidth);
164 setWidth(frameAreaWidth);
167 setWidth(minimumTableWidth + minimumColNameWidth);
169 }
else if (minimumTableWidth > 0) {
170 setWidth(minimumTableWidth);
180 for (
const auto& row :
myRows) {
198 for (
int i = 0; i < (FXint)columnsType.size(); i++) {
202 for (
int i = 0; i < numberRow; i++) {
207 myRows.front()->disableButtons();
214 if ((row >= 0) && (row < (FXint)
myRows.size()) &&
215 (column >= 0) && (column < (FXint)
myColumns.size())) {
216 myRows.at(row)->setText(column, text);
218 if (
myColumns.at(column)->getType() ==
'u') {
229 if ((row >= 0) && (row < (FXint)
myRows.size()) &&
230 (column >= 0) && (column < (FXint)
myColumns.size())) {
231 return myRows.at(row)->getText(column);
239 return (
int)
myRows.size();
251 if ((row >= 0) && (row < (FXint)
myRows.size())) {
264 if ((column >= 0) && (column < (
int)
myColumns.size())) {
265 myColumns.at(column)->setColumnLabelTop(text, tooltip);
274 if ((column >= 0) && (column < (
int)
myColumns.size())) {
275 myColumns.at(column)->setColumnLabelBot(text);
284 int selectedRow = -1;
286 for (
int rowIndex = 0; rowIndex < (int)
myRows.size(); rowIndex++) {
288 for (
const auto& cell :
myRows.at(rowIndex)->getCells()) {
289 if ((cell->getTextField() == sender) || (cell->getAddButton() == sender)) {
290 selectedRow = rowIndex;
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();
324 for (
int columnIndex = 0; columnIndex < (int)
myColumns.size(); columnIndex++) {
325 for (
int rowIndex = 0; rowIndex < (int)
myRows.size(); rowIndex++) {
327 const auto textField =
myRows.at(rowIndex)->getCells().at(columnIndex)->getTextField();
328 if (textField == sender) {
331 textField->setTextColor(FXRGB(0, 0, 0));
332 textField->killFocus();
335 textField->setTextColor(FXRGB(255, 0, 0));
349 FXEvent* eventInfo = (FXEvent*)ptr;
351 if (eventInfo->code == 65362) {
364 }
else if (eventInfo->code == 65364) {
379 return sender->handle(sender, sel, ptr);
387 for (
int indexRow = 0; indexRow < (int)
myRows.size(); indexRow++) {
389 for (
const auto& cell :
myRows.at(indexRow)->getCells()) {
390 if (cell->getAddPhaseButton() == sender) {
392 cell->hideMenuButtonPopup();
407 for (
int indexRow = 0; indexRow < (int)
myRows.size(); indexRow++) {
409 for (
const auto& cell :
myRows.at(indexRow)->getCells()) {
410 if (cell->getDuplicatePhaseButton() == sender) {
412 cell->hideMenuButtonPopup();
427 for (
int indexRow = 0; indexRow < (int)
myRows.size(); indexRow++) {
429 for (
const auto& cell :
myRows.at(indexRow)->getCells()) {
430 if (cell->getAddAllRedPhaseButton() == sender) {
432 cell->hideMenuButtonPopup();
447 for (
int indexRow = 0; indexRow < (int)
myRows.size(); indexRow++) {
449 for (
const auto& cell :
myRows.at(indexRow)->getCells()) {
450 if (cell->getAddAllYellowPhaseButton() == sender) {
452 cell->hideMenuButtonPopup();
467 for (
int indexRow = 0; indexRow < (int)
myRows.size(); indexRow++) {
469 for (
const auto& cell :
myRows.at(indexRow)->getCells()) {
470 if (cell->getAddAllGreenPhaseButton() == sender) {
472 cell->hideMenuButtonPopup();
487 for (
int indexRow = 0; indexRow < (int)
myRows.size(); indexRow++) {
489 for (
const auto& cell :
myRows.at(indexRow)->getCells()) {
490 if (cell->getAddAllGreenPriorityPhaseButton() == sender) {
492 cell->hideMenuButtonPopup();
507 for (
int indexRow = 0; indexRow < (int)
myRows.size(); indexRow++) {
509 for (
const auto& cell :
myRows.at(indexRow)->getCells()) {
510 if (cell->getButton() == sender) {
525 for (
int indexRow = 0; indexRow < (int)
myRows.size(); indexRow++) {
527 for (
const auto& cell :
myRows.at(indexRow)->getCells()) {
528 if (cell->getButton() == sender) {
543 for (
int indexRow = 0; indexRow < (int)
myRows.size(); indexRow++) {
545 for (
const auto& cell :
myRows.at(indexRow)->getCells()) {
546 if (cell->getButton() == sender) {
561 for (
int rowIndex = 0; rowIndex < (int)
myRows.size(); rowIndex++) {
563 for (
const auto& cell :
myRows.at(rowIndex)->getCells()) {
564 if (cell->getIndexLabel()) {
566 cell->showIndexLabelBold();
568 cell->showIndexLabelNormal();
581 int durationCol = -1;
582 for (
int i = 0; i < (int)
myColumns.size(); i++) {
588 if (durationCol != -1) {
590 std::vector<double> durations;
592 for (
const auto& row :
myRows) {
593 durations.push_back(row->getCells().at(durationCol)->getDoubleValue());
596 for (
int i = 1; i < (int)durations.size(); i++) {
597 durations.at(i) += durations.at(i - 1);
600 for (
int i = 0; i < (int)
myRows.size(); i++) {
601 myRows.at(i)->getCells().at(durationCol)->setTooltip(
TL(
"Accumulated: ") +
toString(durations.at(i)));
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()) {
628 myTLSTable(TLSTable),
629 myTextField(textField),
638 myTLSTable(TLSTable),
639 myIndexLabel(indexLabel),
640 myIndexLabelBold(indexLabelBold),
644 indexLabel->create();
645 indexLabelBold->create();
647 indexLabelBold->hide();
648 indexLabelBold->setBackColor(FXRGBA(210, 233, 255, 255));
653 myTLSTable(TLSTable),
663 myTLSTable(TLSTable),
671 (std::string(
"\t") +
TL(
"Add phase") + std::string(
"\t") +
TL(
"Add new phase.")).c_str(),
676 (std::string(
"\t") +
TL(
"Default phase") + std::string(
"\t") +
TL(
"Add default phase.")).c_str(),
681 (std::string(
"\t") +
TL(
"Duplicate phase") + std::string(
"\t") +
TL(
"Duplicate this phase.")).c_str(),
686 (std::string(
"\t") +
TL(
"Red phase") + std::string(
"\t") +
TL(
"Add red phase.")).c_str(),
691 (std::string(
"\t") +
TL(
"Yellow phase") + std::string(
"\t") +
TL(
"Add yellow phase.")).c_str(),
696 (std::string(
"\t") +
TL(
"Green phase") + std::string(
"\t") +
TL(
"Add green phase.")).c_str(),
701 (std::string(
"\t") +
TL(
"Green priority phase") + std::string(
"\t") +
TL(
"Add green priority phase.")).c_str(),
729 if (myIndexLabelBold) {
730 delete myIndexLabelBold;
738 if (myAddPhaseButton) {
739 delete myAddPhaseButton;
741 if (myDuplicatePhaseButton) {
742 delete myDuplicatePhaseButton;
744 if (myAddAllRedButton) {
745 delete myAddAllRedButton;
747 if (myAddAllYellowButton) {
748 delete myAddAllYellowButton;
750 if (myAddAllGreenButton) {
751 delete myAddAllGreenButton;
753 if (myAddAllGreenPriorityButton) {
754 delete myAddAllGreenPriorityButton;
756 if (myMenuButtonPopup) {
757 delete myMenuButtonPopup;
765 myTextField->enable();
768 myIndexLabel->enable();
770 if (myIndexLabelBold) {
771 myIndexLabelBold->enable();
773 if (myButton && !myDisableButton) {
777 myAddButton->enable();
779 if (myAddPhaseButton) {
780 myAddPhaseButton->enable();
782 if (myDuplicatePhaseButton) {
783 myDuplicatePhaseButton->enable();
785 if (myAddAllRedButton) {
786 myAddAllRedButton->enable();
788 if (myAddAllYellowButton) {
789 myAddAllYellowButton->enable();
791 if (myAddAllGreenButton) {
792 myAddAllGreenButton->enable();
794 if (myAddAllGreenPriorityButton) {
795 myAddAllGreenPriorityButton->enable();
797 if (myMenuButtonPopup) {
798 myMenuButtonPopup->enable();
807 myTextField->disable();
810 myIndexLabel->disable();
812 if (myIndexLabelBold) {
813 myIndexLabelBold->disable();
815 if (myButton && !myDisableButton) {
819 myAddButton->disable();
821 if (myAddPhaseButton) {
822 myAddPhaseButton->disable();
824 if (myDuplicatePhaseButton) {
825 myDuplicatePhaseButton->disable();
827 if (myAddAllRedButton) {
828 myAddAllRedButton->disable();
830 if (myAddAllYellowButton) {
831 myAddAllYellowButton->disable();
833 if (myAddAllGreenButton) {
834 myAddAllGreenButton->disable();
836 if (myAddAllGreenPriorityButton) {
837 myAddAllGreenPriorityButton->disable();
839 if (myMenuButtonPopup) {
840 myMenuButtonPopup->disable();
848 if (myTextField && myTextField->hasFocus()) {
850 }
else if (myButton && myButton->hasFocus()) {
852 }
else if (myAddButton && myAddButton->hasFocus()) {
854 }
else if (myAddPhaseButton && myAddPhaseButton->hasFocus()) {
856 }
else if (myDuplicatePhaseButton && myDuplicatePhaseButton->hasFocus()) {
858 }
else if (myAddAllRedButton && myAddAllRedButton->hasFocus()) {
860 }
else if (myAddAllYellowButton && myAddAllYellowButton->hasFocus()) {
862 }
else if (myAddAllGreenButton && myAddAllGreenButton->hasFocus()) {
864 }
else if (myAddAllGreenPriorityButton && myAddAllGreenPriorityButton->hasFocus()) {
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();
899 if (myTextField->getText().empty()) {
901 }
else if (!GNEAttributeCarrier::canParse<double>(myTextField->getText().text())) {
904 return GNEAttributeCarrier::parse<double>(myTextField->getText().text());
912 myTextField->setToolTipText(toolTip.c_str());
945 return myAddPhaseButton;
951 return myDuplicatePhaseButton;
957 return myAddAllRedButton;
963 return myAddAllYellowButton;
969 return myAddAllGreenButton;
975 return myAddAllGreenPriorityButton;
981 myIndexLabel->show();
982 myIndexLabelBold->hide();
984 myIndexLabel->recalc();
985 myIndexLabelBold->recalc();
991 myIndexLabel->hide();
992 myIndexLabelBold->show();
994 myIndexLabel->recalc();
995 myIndexLabelBold->recalc();
1013 return myTLSTable->myColumns.at(myCol)->getType();
1019 myMenuButtonPopup->popdown();
1026 myButton->disable();
1027 myDisableButton =
true;
1094 delete myVerticalFrame;
1100 return myVerticalCellFrame;
1112 return myTopLabel->getText();
1118 myTopLabel->setText(text.c_str());
1119 myTopLabel->setTipText(tooltip.c_str());
1125 myBotLabel->setText(text.c_str());
1132 int columnWidth = 0;
1134 if (myType ==
's') {
1137 }
else if (isTextFieldColumn()) {
1139 columnWidth = myTopLabel->getFont()->getTextWidth(myTopLabel->getText().text(), myTopLabel->getText().length() +
EXTRAMARGIN);
1141 for (
const auto& row : myTable->myRows) {
1143 const auto textField = row->getCells().at(myIndex)->getTextField();
1145 const auto textFieldWidth = textField->getFont()->getTextWidth(textField->getText().text(), textField->getText().length() +
EXTRAMARGIN);
1147 if (textFieldWidth > columnWidth) {
1148 columnWidth = textFieldWidth;
1152 const auto botLabelWidth = myBotLabel->getFont()->getTextWidth(myBotLabel->getText().text(), myBotLabel->getText().length() +
EXTRAMARGIN);
1153 if (botLabelWidth > columnWidth) {
1154 columnWidth = botLabelWidth;
1167 if (isTextFieldColumn()) {
1168 for (
const auto& row : myTable->myRows) {
1169 row->getCells().at(myIndex)->getTextField()->setWidth(colWidth);
1173 myVerticalFrame->setWidth(colWidth);
1174 myTopLabel->setWidth(colWidth);
1175 myVerticalCellFrame->setWidth(colWidth);
1176 myBotLabel->setWidth(colWidth);
1182 return ((myType ==
'u') || (myType ==
'f') || (myType ==
'p') || (myType ==
'm') || (myType ==
'-'));
1197 for (
int columnIndex = 0; columnIndex < (FXint)table->
myColumns.size(); columnIndex++) {
1199 const int numCells = (int)
myCells.size();
1201 switch (table->
myColumns.at(columnIndex)->getType()) {
1204 auto indexLabel =
new FXLabel(table->
myColumns.at(columnIndex)->getVerticalCellFrame(),
1206 auto indexLabelBold =
new FXLabel(table->
myColumns.at(columnIndex)->getVerticalCellFrame(),
1211 myCells.push_back(
new Cell(table, indexLabel, indexLabelBold, columnIndex, numCells));
1222 myCells.push_back(
new Cell(table, textField, columnIndex, numCells));
1232 myCells.push_back(
new Cell(table, textField, columnIndex, numCells));
1237 myCells.push_back(
new Cell(table, columnIndex, numCells));
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));
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));
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));
1276 for (
const auto& cell : myCells) {
1284 if (myCells.at(index)->getTextField()) {
1285 return myCells.at(index)->getTextField()->getText().text();
1295 myCells.at(index)->getTextField()->setText(text.c_str());
1299const std::vector<GNETLSTable::Cell*>&
1308 for (
const auto& cell : myCells) {
1309 if ((cell->getType() ==
'd') || (cell->getType() ==
'b') || (cell->getType() ==
't')) {
1310 cell->disableButton();
FXDEFMAP(GNETLSTable) GNETLSTableMap[]
@ 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_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
#define GUIDesignButtonIcon
button only with icon
#define GUIDesignTextFieldTLSTable
text field with min width (used in TLS table)
#define GUIDesignTextFieldNCol
Num of column of text field.
#define GUIDesignAuxiliarFrameFixWidth
design for auxiliar vertical frames with fixed width (used in TLSTable and DecalsTable)
#define GUIDesignTLSTableCheckableButtonIcon
checkable button only with icon used in TLSTable
#define GUIDesignLabelThickedFixed(width)
label thicked, icon before text, text centered and custom width
@ TLSPHASEALLGREENPRIORITY
int GUIDesignHeight
the default size for GUI elements
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
int getScrollBarWidth() const
get scrollBar width (zero if is hidden)
GNEViewNet * getViewNet() const
get view net
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
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
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