28#include <wx/statline.h>
29#include <wx/radiobut.h>
30#include <wx/textctrl.h>
39 wxWindow *parent,
int id,
const wxString &title,
42 const wxPoint &pos = wxDefaultPosition,
43 const wxSize &size = wxDefaultSize,
44 long style = wxDEFAULT_DIALOG_STYLE);
48 void set_properties();
51 wxChoice *m_choice = NULL;
52 wxRadioButton *m_sortTraditional;
53 wxRadioButton *m_sortFunction;
54 wxRadioButton *m_sortLambda;
56 wxTextCtrl *m_CriterionFunc;
57 wxTextCtrl *m_Criterion;
60 void OnFunctionChange(wxGridEvent &WXUNUSED(unused)){m_sortFunction->SetValue(
true);}
61 void OnLambdaChange(wxGridEvent &WXUNUSED(unused)){m_sortLambda->SetValue(
true);}
The configuration storage for the current worksheet.
Definition: Configuration.h:85
Definition: ListSortWiz.h:35