mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-07-09 08:25:48 -07:00
18 lines
436 B
C
18 lines
436 B
C
|
|
class QuickFileCtrl : public wxPanel
|
||
|
|
{
|
||
|
|
DECLARE_DYNAMIC_CLASS(QuickFileCtrl);
|
||
|
|
|
||
|
|
public:
|
||
|
|
QuickFileCtrl() {};
|
||
|
|
QuickFileCtrl(wxWindow* parent, wxRect& location,
|
||
|
|
const wxString& rootDir, const wxString& fileMask,
|
||
|
|
const wxValidator& validator = wxDefaultValidator);
|
||
|
|
|
||
|
|
void OnKillFocus();
|
||
|
|
|
||
|
|
//private: // (or *theoretically* private)
|
||
|
|
wxTextCtrl* m_TextCtrl;
|
||
|
|
wxButton* m_ButtonBrowse;
|
||
|
|
bool m_DisableKillFocus;
|
||
|
|
};
|