Commit pandora source code
This commit is contained in:
parent
f10bc4f2bf
commit
e86cde6318
276 changed files with 263292 additions and 0 deletions
35
src/osdep/gui/UaeCheckBox.hpp
Normal file
35
src/osdep/gui/UaeCheckBox.hpp
Normal file
|
@ -0,0 +1,35 @@
|
|||
#ifndef GCN_UAECHECKBOX_HPP
|
||||
#define GCN_UAECHECKBOX_HPP
|
||||
|
||||
#include <map>
|
||||
#include <string>
|
||||
|
||||
#include "guichan/keylistener.hpp"
|
||||
#include "guichan/mouselistener.hpp"
|
||||
#include "guichan/platform.hpp"
|
||||
#include "guichan/widget.hpp"
|
||||
#include "guichan/widgets/checkbox.hpp"
|
||||
|
||||
|
||||
namespace gcn
|
||||
{
|
||||
class GCN_CORE_DECLSPEC UaeCheckBox : public CheckBox
|
||||
{
|
||||
public:
|
||||
UaeCheckBox();
|
||||
|
||||
UaeCheckBox(const std::string &caption,
|
||||
bool selected = false);
|
||||
|
||||
virtual ~UaeCheckBox();
|
||||
|
||||
virtual void draw(Graphics* graphics);
|
||||
|
||||
protected:
|
||||
virtual void drawBox(Graphics *graphics);
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
#endif // end GCN_UAECHECKBOX_HPP
|
Loading…
Add table
Add a link
Reference in a new issue