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.
29 lines (24 sloc)
512 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 __PRIORITYPANEL | |
#define __PRIORITYPANEL | |
#include <wx/wx.h> | |
#include <wx/listctrl.h> | |
#include <wx/slider.h> | |
// Statsgen Includes | |
#include "WindowIDs.h" | |
class PriorityPanel : public wxPanel | |
{ | |
public: | |
PriorityPanel(); | |
void CreateScreen(); | |
void OnSliderChange(wxScrollEvent &event); | |
void OnResize(wxSizeEvent &event); | |
protected: | |
wxSlider *fullRunPriority; | |
private: | |
int columnToSort; | |
wxString configKey; | |
wxString labelText; | |
wxStaticText fullLabel; | |
DECLARE_EVENT_TABLE() | |
}; | |
#endif |