minor refactor

This commit is contained in:
MihailRis
2024-04-21 02:37:44 +03:00
parent 599665d349
commit d213902648
15 changed files with 60 additions and 66 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
#include "UINode.h"
#include "UINode.hpp"
#include "layout/Container.hpp"
#include "../../core/Batch2D.h"
@@ -1,7 +1,7 @@
#ifndef GRAPHICS_UI_ELEMENTS_TRACKBAR_HPP_
#define GRAPHICS_UI_ELEMENTS_TRACKBAR_HPP_
#include "../UINode.h"
#include "../UINode.hpp"
namespace gui {
class TrackBar : public UINode {
+1 -1
View File
@@ -1,7 +1,7 @@
#ifndef GRAPHICS_UI_ELEMENTS_IMAGE_HPP_
#define GRAPHICS_UI_ELEMENTS_IMAGE_HPP_
#include "../UINode.h"
#include "../UINode.hpp"
namespace gui {
class Image : public UINode {
+1 -1
View File
@@ -1,7 +1,7 @@
#ifndef GRAPHICS_UI_ELEMENTS_LABEL_HPP_
#define GRAPHICS_UI_ELEMENTS_LABEL_HPP_
#include "../UINode.h"
#include "../UINode.hpp"
namespace gui {
class Label : public UINode {
+1 -1
View File
@@ -1,7 +1,7 @@
#ifndef GRAPHICS_UI_ELEMENTS_PLOTTER_HPP_
#define GRAPHICS_UI_ELEMENTS_PLOTTER_HPP_
#include "../UINode.h"
#include "../UINode.hpp"
#include "../../../../typedefs.h"
#include <memory>
@@ -1,7 +1,7 @@
#ifndef GRAPHICS_UI_ELEMENTS_CONTAINER_HPP_
#define GRAPHICS_UI_ELEMENTS_CONTAINER_HPP_
#include "../UINode.h"
#include "../UINode.hpp"
#include "../commons.hpp"
#include <vector>