Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
41 lines (33 sloc)
804 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef __WEBSITECONFIGGUI | |
#define __WEBSITECONFIGGUI | |
#include <wx/wx.h> | |
#include <wx/dialog.h> | |
#include <wx/listctrl.h> | |
// Statsgen Includes | |
#include "WindowIDs.h" | |
#include "GroupedConfigItemsPanel.h" | |
class WebsiteConfigGUI : public wxDialog | |
{ | |
public: | |
WebsiteConfigGUI(wxWindow *parent, | |
wxWindowID id, | |
const wxString &title, | |
const wxPoint &pos, | |
const wxSize &size, | |
long style, | |
const wxString &name); | |
virtual ~WebsiteConfigGUI(); | |
void OnQuit(wxCommandEvent& event); | |
void OnSave(wxCommandEvent& event); | |
void OnResize(wxSizeEvent& event); | |
void DisplayDialog(); | |
protected: | |
void CreateDialog(); | |
private: | |
//GroupedConfigItemsPanel *configItems; | |
ArrayOfPointers configItems; | |
wxButton saveButton; | |
wxButton quitButton; | |
DECLARE_EVENT_TABLE() | |
}; | |
#endif |