1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- #ifndef SEPARATOR_H
- #define SEPARATOR_H
- #include "scene/gui/control.h"
- class Separator : public Control {
- GDCLASS(Separator, Control);
- protected:
- Orientation orientation;
- void _notification(int p_what);
- public:
- virtual Size2 get_minimum_size() const;
- Separator();
- ~Separator();
- };
- class VSeparator : public Separator {
- GDCLASS(VSeparator, Separator);
- public:
- VSeparator();
- };
- class HSeparator : public Separator {
- GDCLASS(HSeparator, Separator);
- public:
- HSeparator();
- };
- #endif
|