| 639 | void OnFluxFormatChanged(wxCommandEvent&) {} |
| 640 | |
| 641 | IconButton* AddIcon(int bitmapIndex, const std::string text) |
| 642 | { |
| 643 | auto* button = new IconButton(sourceIconPanel, wxID_ANY); |
| 644 | button->SetBitmapAndLabel(_imageList.GetBitmap(bitmapIndex), text); |
| 645 | sourceIconPanel->GetSizer()->Add( |
| 646 | button, 0, wxALL | wxEXPAND, 5, nullptr); |
| 647 | return button; |
| 648 | } |
| 649 | |
| 650 | void SwitchToPage(int page) |
| 651 | { |
nothing calls this directly
no test coverage detected