- Renamed all pandora-specific folder names to the common WinUAE pattern - Updated the VS Solution to reflect these changes - Updated Makefile to reflect these changes
35 lines
624 B
C++
35 lines
624 B
C++
#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
|