mirror of
https://github.com/edubart/otclient.git
synced 2025-10-19 05:53:26 +02:00
rect fix and some ui new classes
This commit is contained in:
7
src/framework/ui/uicheckbox.cpp
Normal file
7
src/framework/ui/uicheckbox.cpp
Normal file
@@ -0,0 +1,7 @@
|
||||
#include "uicheckbox.h"
|
||||
|
||||
UICheckBox::UICheckBox(UI::EElementType type): UIElement(type)
|
||||
{
|
||||
|
||||
}
|
||||
|
14
src/framework/ui/uicheckbox.h
Normal file
14
src/framework/ui/uicheckbox.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#ifndef UICHECKBOX_H
|
||||
#define UICHECKBOX_H
|
||||
|
||||
#include <ui/uielement.h>
|
||||
|
||||
|
||||
class UICheckBox : public UIElement
|
||||
{
|
||||
|
||||
public:
|
||||
UICheckBox(UI::EElementType type = UI::Element);
|
||||
};
|
||||
|
||||
#endif // UICHECKBOX_H
|
2
src/framework/ui/uicheckboxskin.cpp
Normal file
2
src/framework/ui/uicheckboxskin.cpp
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "uicheckboxskin.h"
|
||||
|
8
src/framework/ui/uicheckboxskin.h
Normal file
8
src/framework/ui/uicheckboxskin.h
Normal file
@@ -0,0 +1,8 @@
|
||||
#ifndef UICHECKBOXSKIN_H
|
||||
#define UICHECKBOXSKIN_H
|
||||
|
||||
class UICheckBoxSkin
|
||||
{
|
||||
};
|
||||
|
||||
#endif // UICHECKBOXSKIN_H
|
2
src/framework/ui/uilinedecoration.cpp
Normal file
2
src/framework/ui/uilinedecoration.cpp
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "uilinedecoration.h"
|
||||
|
8
src/framework/ui/uilinedecoration.h
Normal file
8
src/framework/ui/uilinedecoration.h
Normal file
@@ -0,0 +1,8 @@
|
||||
#ifndef UILINEDECORATION_H
|
||||
#define UILINEDECORATION_H
|
||||
|
||||
class UILineDecoration
|
||||
{
|
||||
};
|
||||
|
||||
#endif // UILINEDECORATION_H
|
2
src/framework/ui/uilinedecorationskin.cpp
Normal file
2
src/framework/ui/uilinedecorationskin.cpp
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "uilinedecorationskin.h"
|
||||
|
8
src/framework/ui/uilinedecorationskin.h
Normal file
8
src/framework/ui/uilinedecorationskin.h
Normal file
@@ -0,0 +1,8 @@
|
||||
#ifndef UILINEDECORATIONSKIN_H
|
||||
#define UILINEDECORATIONSKIN_H
|
||||
|
||||
class UILineDecorationSkin
|
||||
{
|
||||
};
|
||||
|
||||
#endif // UILINEDECORATIONSKIN_H
|
Reference in New Issue
Block a user