///////////////////////////////////////////////////////////////////////////// // Name: DlgSearch.h // Author: XX // Created: XX/XX/XX // Copyright: XX ///////////////////////////////////////////////////////////////////////////// #ifndef __DlgSearch_H__ #define __DlgSearch_H__ /* #ifdef __GNUG__ #pragma interface "DlgSearch.cpp" #endif #ifndef WX_PRECOMP #include "wx/wx.h" #endif #include "ssst_wdr.h" */ // WDR: class declarations //---------------------------------------------------------------------------- // scDlgSearch //---------------------------------------------------------------------------- class scDlgSearch: public wxDialog { public: // constructors and destructors scDlgSearch( wxWindow *parent, wxWindowID id, const wxString &title, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE ); // WDR: method declarations for scDlgSearch wxTextCtrl* getMuster() { return (wxTextCtrl*) FindWindow( ID_MUSTER ); } wxListCtrl* getListe() { return (wxListCtrl*) FindWindow( ID_LISTE ); } void Open( ); private: // WDR: member variable declarations for scDlgSearch private: // WDR: handler declarations for scDlgSearch void OnActivated( wxListEvent &event ); void OnConfig( wxCommandEvent &event ); void OnClose( wxCommandEvent &event ); void OnOpen( wxCommandEvent &event ); void OnClick( wxListEvent &event ); void OnSearch( wxCommandEvent &event ); void OnCloseWindow(wxCloseEvent& event); private: wxArrayString m_File; DECLARE_EVENT_TABLE() }; #endif