23#ifndef MAXSIZECHOOSER_H
24#define MAXSIZECHOOSER_H
28#include <wx/statline.h>
29#include <wx/spinctrl.h>
37 const wxPoint &pos = wxDefaultPosition,
38 const wxSize &size = wxDefaultSize,
long style = wxDEFAULT_DIALOG_STYLE);
40 double GetMaxImageWidth()
42 return m_imageWidth->GetValue();
45 double GetHeightList()
47 return m_imageHeight->GetValue();
52 wxSpinCtrl *m_imageWidth;
53 wxSpinCtrl *m_imageHeight;
Definition: MaxSizeChooser.h:32