UI - Refactoring progress
(see previous log message)
This commit is contained in:
parent
4774426962
commit
743af1d0d7
8 changed files with 11 additions and 8 deletions
2
Makefile
2
Makefile
|
@ -48,7 +48,7 @@ DEMO = \
|
||||||
demo.cc \
|
demo.cc \
|
||||||
main.cc \
|
main.cc \
|
||||||
opemu.cc \
|
opemu.cc \
|
||||||
syncview.cc \
|
ui-sequencer.cc \
|
||||||
# END DEMO
|
# END DEMO
|
||||||
|
|
||||||
PARSERCHECK = \
|
PARSERCHECK = \
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "mousectrl.hh"
|
#include "ui-mousectrl.hh"
|
||||||
|
|
||||||
|
|
||||||
/*= T_Camera =================================================================*/
|
/*= T_Camera =================================================================*/
|
||||||
|
|
4
main.cc
4
main.cc
|
@ -6,10 +6,10 @@
|
||||||
#include "window.hh"
|
#include "window.hh"
|
||||||
#include "shaders.hh"
|
#include "shaders.hh"
|
||||||
#include "odbg.hh"
|
#include "odbg.hh"
|
||||||
#include "ops.hh"
|
#include "opemu.hh"
|
||||||
#include "rendertarget.hh"
|
#include "rendertarget.hh"
|
||||||
#include "sync.hh"
|
#include "sync.hh"
|
||||||
#include "syncview.hh"
|
#include "ui-sequencer.hh"
|
||||||
#include "undo.hh"
|
#include "undo.hh"
|
||||||
|
|
||||||
|
|
||||||
|
|
2
sync.hh
2
sync.hh
|
@ -1,7 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "filewatcher.hh"
|
#include "filewatcher.hh"
|
||||||
#include "utilities.hh"
|
#include "utilities.hh"
|
||||||
#include "mousectrl.hh"
|
#include "ui-mousectrl.hh"
|
||||||
|
|
||||||
#include <ebcl/SRDParserConfig.hh>
|
#include <ebcl/SRDParserConfig.hh>
|
||||||
#include <ebcl/Sets.hh>
|
#include <ebcl/Sets.hh>
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#include "externals.hh"
|
#include "externals.hh"
|
||||||
#include "syncview.hh"
|
#include "ui-sequencer.hh"
|
||||||
|
#include "sync.hh"
|
||||||
#include "globals.hh"
|
#include "globals.hh"
|
||||||
#include "window.hh"
|
#include "window.hh"
|
||||||
#include "syncedit.hh"
|
#include "syncedit.hh"
|
|
@ -1,5 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "sync.hh"
|
#ifndef REAL_BUILD
|
||||||
|
# include "externals.hh"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
class T_SyncView : public ebcl::A_PrivateImplementation
|
class T_SyncView : public ebcl::A_PrivateImplementation
|
|
@ -1,6 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "ui-dialogs.hh"
|
#include "ui-dialogs.hh"
|
||||||
#include "mousectrl.hh"
|
#include "ui-mousectrl.hh"
|
||||||
#include "ui-actions.hh"
|
#include "ui-actions.hh"
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue