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.
38 lines (30 sloc)
730 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 __SCHEDULEDIALOG | |
#define __SCHEDULEDIALOG | |
#include <wx/wx.h> | |
#include <wx/dialog.h> | |
// Statsgen Includes | |
#include "GenericOKCancelDialog.h" | |
#include "ScheduleEditorPanel.h" | |
#include "WindowIDs.h" | |
class ScheduleDialog : public GenericOKCancelDialog | |
{ | |
public: | |
ScheduleDialog(wxWindow *parent, | |
wxWindowID id, | |
const wxString &title, | |
wxString &value, | |
bool intervalWithBase, | |
wxPoint &pos, | |
wxSize &size, | |
long style, | |
const wxString &name); | |
virtual ~ScheduleDialog(); | |
virtual void OnSave(wxCommandEvent& event); | |
virtual void OnQuit(wxCommandEvent& event); | |
virtual bool DisplayDialog(); | |
virtual wxString GetValue(); | |
protected: | |
private: | |
ScheduleEditorPanel *panel; | |
}; | |
#endif |