rect fix and some ui new classes

This commit is contained in:
Eduardo Bart
2011-04-12 02:51:09 -03:00
parent 92ac4093a4
commit 0f7f7827f5
17 changed files with 143 additions and 7 deletions

View File

@@ -0,0 +1,7 @@
#include "uicheckbox.h"
UICheckBox::UICheckBox(UI::EElementType type): UIElement(type)
{
}

View 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

View File

@@ -0,0 +1,2 @@
#include "uicheckboxskin.h"

View File

@@ -0,0 +1,8 @@
#ifndef UICHECKBOXSKIN_H
#define UICHECKBOXSKIN_H
class UICheckBoxSkin
{
};
#endif // UICHECKBOXSKIN_H

View File

@@ -0,0 +1,2 @@
#include "uilinedecoration.h"

View File

@@ -0,0 +1,8 @@
#ifndef UILINEDECORATION_H
#define UILINEDECORATION_H
class UILineDecoration
{
};
#endif // UILINEDECORATION_H

View File

@@ -0,0 +1,2 @@
#include "uilinedecorationskin.h"

View File

@@ -0,0 +1,8 @@
#ifndef UILINEDECORATIONSKIN_H
#define UILINEDECORATIONSKIN_H
class UILineDecorationSkin
{
};
#endif // UILINEDECORATIONSKIN_H