From b5a5a5298cef93c40573588a25d73b21cf92233b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emmanuel=20Beno=C3=AEt?= Date: Thu, 23 Nov 2017 14:47:25 +0100 Subject: [PATCH] UI - Refactoring progress (see previous log message) --- Makefile | 12 ++++++------ main.cc | 2 +- imgui_impl_sdl.cc => ui-imgui-sdl.cc | 2 +- imgui_impl_sdl.h => ui-imgui-sdl.hh | 6 ++++-- window.cc | 3 ++- 5 files changed, 14 insertions(+), 11 deletions(-) rename imgui_impl_sdl.cc => ui-imgui-sdl.cc (99%) rename imgui_impl_sdl.h => ui-imgui-sdl.hh (94%) diff --git a/Makefile b/Makefile index 60d861f..6829ce6 100644 --- a/Makefile +++ b/Makefile @@ -15,8 +15,6 @@ FILEDUMPS = IMGUI = imgui.cpp imgui_draw.cpp COMMON = \ - imgui_impl_sdl.cc \ - \ utilities.cc \ texture.cc \ rendertarget.cc \ @@ -24,10 +22,6 @@ COMMON = \ \ filewatcher.cc \ window.cc \ - ui-actions.cc \ - ui-colorgrading.cc \ - ui-dialogs.cc \ - ui-utilities.cc \ globals.cc \ profiling.cc \ shaders.cc \ @@ -43,6 +37,12 @@ COMMON = \ opparser.cc \ opcomp.cc \ opmgr.cc \ + \ + ui-actions.cc \ + ui-colorgrading.cc \ + ui-dialogs.cc \ + ui-imgui-sdl.cc \ + ui-utilities.cc \ # END COMMON DEMO = \ diff --git a/main.cc b/main.cc index e619027..78d5ec1 100644 --- a/main.cc +++ b/main.cc @@ -1,5 +1,5 @@ #include "externals.hh" -#include "imgui_impl_sdl.h" +#include "ui-imgui-sdl.hh" #include "demo.hh" #include "globals.hh" #include "profiling.hh" diff --git a/imgui_impl_sdl.cc b/ui-imgui-sdl.cc similarity index 99% rename from imgui_impl_sdl.cc rename to ui-imgui-sdl.cc index 7484480..44bb00e 100644 --- a/imgui_impl_sdl.cc +++ b/ui-imgui-sdl.cc @@ -7,7 +7,7 @@ // https://github.com/ocornut/imgui #include "externals.hh" -#include "imgui_impl_sdl.h" +#include "ui-imgui-sdl.hh" // Data static double g_Time = 0.0f; diff --git a/imgui_impl_sdl.h b/ui-imgui-sdl.hh similarity index 94% rename from imgui_impl_sdl.h rename to ui-imgui-sdl.hh index 07fe809..952f3ce 100644 --- a/imgui_impl_sdl.h +++ b/ui-imgui-sdl.hh @@ -6,8 +6,10 @@ // If you are new to ImGui, see examples/README.txt and documentation at the top of imgui.cpp. // https://github.com/ocornut/imgui -struct SDL_Window; -typedef union SDL_Event SDL_Event; +#pragma once +#ifndef REAL_BUILD +# include "externals.hh" +#endif IMGUI_API bool ImGui_ImplSdl_Init(SDL_Window* window); IMGUI_API void ImGui_ImplSdl_Shutdown(); diff --git a/window.cc b/window.cc index 66c58c4..6822591 100644 --- a/window.cc +++ b/window.cc @@ -1,6 +1,7 @@ #include "externals.hh" #include "window.hh" -#include "imgui_impl_sdl.h" +#include "ui-imgui-sdl.hh" + #include