mirror of https://github.com/bsnes-emu/bsnes.git
32 lines
779 B
C++
32 lines
779 B
C++
#if defined(Hiro_Object)
|
|
|
|
namespace hiro {
|
|
|
|
struct pObject {
|
|
pObject(mObject& reference) : reference(reference) {}
|
|
virtual ~pObject() = default;
|
|
virtual auto construct() -> void;
|
|
virtual auto destruct() -> void;
|
|
virtual auto reconstruct() -> void;
|
|
|
|
virtual auto focused() const -> bool;
|
|
virtual auto remove() -> void;
|
|
virtual auto reset() -> void;
|
|
virtual auto setEnabled(bool enabled) -> void;
|
|
virtual auto setFocused() -> void;
|
|
virtual auto setFont(const Font& font) -> void;
|
|
virtual auto setGroup(sGroup group) -> void;
|
|
virtual auto setVisible(bool visible) -> void;
|
|
|
|
auto locked() const -> bool { return locks != 0; }
|
|
auto lock() -> void { ++locks; }
|
|
auto unlock() -> void { --locks; }
|
|
|
|
mObject& reference;
|
|
signed locks = 0;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|