mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 05:13:58 -07:00
17 lines
436 B
C++
17 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;
|
|
};
|