///////////////////////////////////////////////////////////////////////////// // Name: DlgConfig.h // Author: XX // Created: XX/XX/XX // Copyright: XX ///////////////////////////////////////////////////////////////////////////// /* #ifndef __DlgConfig_H__ #define __DlgConfig_H__ #ifdef __GNUG__ #pragma interface "DlgConfig.cpp" #endif #ifndef WX_PRECOMP #include "wx/wx.h" #endif #include "ssst_wdr.h" */ // WDR: class declarations //---------------------------------------------------------------------------- // scDlgConfig //---------------------------------------------------------------------------- class scDlgConfig: public wxDialog { public: // constructors and destructors scDlgConfig( wxWindow *parent, wxWindowID id, const wxString &title, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE ); // WDR: method declarations for scDlgConfig wxCheckListBox* GetListbox() { return (wxCheckListBox*) FindWindow( ID_LISTBOX ); } wxStaticText* GetPath() { return (wxStaticText*) FindWindow( ID_PATH ); } wxString m_strPath; wxArrayString m_astrIndex; wxArrayString m_astrAktiv; private: // WDR: member variable declarations for scDlgConfig private: // WDR: handler declarations for scDlgConfig void OnOK( wxCommandEvent &event ); void OnDelete( wxCommandEvent &event ); void OnSwishE( wxCommandEvent &event ); void OnAdd( wxCommandEvent &event ); void OnInitDialog(wxInitDialogEvent& event); private: DECLARE_EVENT_TABLE() }; // #endif