| 56 | |
| 57 | |
| 58 | class RowData |
| 59 | { |
| 60 | public: |
| 61 | RowData(int index_, const wxString &title_, const SelectedRegion &selectedRegion_) |
| 62 | : index(index_), title(title_), selectedRegion(selectedRegion_) |
| 63 | {} |
| 64 | |
| 65 | int index; |
| 66 | wxString title; |
| 67 | SelectedRegion selectedRegion; |
| 68 | }; |
| 69 | |
| 70 | enum { |
| 71 | ID_INSERTA = 11000, |