Created NELGUI library, moved the GUI event descriptors there.

--HG--
branch : gui-refactoring
hg/feature/sse2
dfighter1985 13 years ago
parent d127d59807
commit aed979a7fe

@ -274,6 +274,7 @@ MACRO(NL_SETUP_NEL_DEFAULT_OPTIONS)
### ###
OPTION(WITH_NET "Build NLNET" ON ) OPTION(WITH_NET "Build NLNET" ON )
OPTION(WITH_3D "Build NL3D" ON ) OPTION(WITH_3D "Build NL3D" ON )
OPTION(WITH_GUI "Build GUI" ON )
OPTION(WITH_PACS "Build NLPACS" ON ) OPTION(WITH_PACS "Build NLPACS" ON )
OPTION(WITH_GEORGES "Build NLGEORGES" ON ) OPTION(WITH_GEORGES "Build NLGEORGES" ON )
OPTION(WITH_LIGO "Build NLLIGO" ON ) OPTION(WITH_LIGO "Build NLLIGO" ON )

@ -4,6 +4,10 @@ IF(WITH_3D)
SUBDIRS(3d) SUBDIRS(3d)
ENDIF(WITH_3D) ENDIF(WITH_3D)
IF(WITH_GUI)
ADD_SUBDIRECTORY(gui)
ENDIF(WITH_GUI)
IF(WITH_GEORGES) IF(WITH_GEORGES)
SUBDIRS(georges) SUBDIRS(georges)
ENDIF(WITH_GEORGES) ENDIF(WITH_GEORGES)

@ -0,0 +1,3 @@
FILE(GLOB HEADERS *.h)
INSTALL(FILES ${HEADERS} DESTINATION include/nel/gui COMPONENT headers)

@ -4,6 +4,10 @@ IF(WITH_3D)
ADD_SUBDIRECTORY(3d) ADD_SUBDIRECTORY(3d)
ENDIF(WITH_3D) ENDIF(WITH_3D)
IF(WITH_GUI)
ADD_SUBDIRECTORY(gui)
ENDIF(WITH_GUI)
IF(WITH_GEORGES) IF(WITH_GEORGES)
ADD_SUBDIRECTORY(georges) ADD_SUBDIRECTORY(georges)
ENDIF(WITH_GEORGES) ENDIF(WITH_GEORGES)

@ -0,0 +1,14 @@
FILE(GLOB SRC *.cpp *.h)
FILE(GLOB HEADERS ../../include/nel/gui/*.h)
NL_TARGET_LIB(nelgui ${HEADERS} ${SRC})
SET_TARGET_PROPERTIES(nelgui PROPERTIES LINK_INTERFACE_LIBRARIES "")
NL_DEFAULT_PROPS(nelgui "NeL, Library: NeL GUI")
NL_ADD_RUNTIME_FLAGS(nelgui)
NL_ADD_LIB_SUFFIX(nelgui)
IF((WITH_INSTALL_LIBRARIES AND WITH_STATIC) OR NOT WITH_STATIC)
INSTALL(TARGETS nelgui LIBRARY DESTINATION lib ARCHIVE DESTINATION lib COMPONENT libraries)
ENDIF((WITH_INSTALL_LIBRARIES AND WITH_STATIC) OR NOT WITH_STATIC)

@ -16,9 +16,8 @@
#include "stdpch.h" #include "nel/misc/events.h"
#include "nel/gui/event_descriptor.h"
#include "event_descriptor.h"
void CEventDescriptorKey::init(const NLMISC::CEventKey &ev) void CEventDescriptorKey::init(const NLMISC::CEventKey &ev)
{ {

@ -81,6 +81,7 @@ TARGET_LINK_LIBRARIES(ryzom_client
nelligo nelligo
nelgeorges nelgeorges
nel3d nel3d
nelgui
nelsound nelsound
ryzom_clientsheets ryzom_clientsheets
ryzom_gameshare ryzom_gameshare

@ -21,7 +21,7 @@
#include "nel/misc/types_nl.h" #include "nel/misc/types_nl.h"
#include "view_base.h" #include "view_base.h"
#include "event_descriptor.h" #include "nel/gui/event_descriptor.h"
class CCtrlBase : public CViewBase class CCtrlBase : public CViewBase
{ {

@ -24,7 +24,7 @@
#include <vector> #include <vector>
#include <map> #include <map>
#include <string> #include <string>
#include "event_descriptor.h" #include "nel/gui/event_descriptor.h"
/** /**

@ -54,7 +54,7 @@
#include "../entities.h" #include "../entities.h"
#include "../events_listener.h" #include "../events_listener.h"
#include "../interface_v3/group_list.h" #include "../interface_v3/group_list.h"
#include "../interface_v3/event_descriptor.h" #include "nel/gui/event_descriptor.h"
#include "../interface_v3/group_tree.h" #include "../interface_v3/group_tree.h"
#include "../client_cfg.h" #include "../client_cfg.h"
#include "../interface_v3/lua_ihm.h" #include "../interface_v3/lua_ihm.h"

@ -21,7 +21,7 @@
#include "r2_config.h" #include "r2_config.h"
// //
#include "../interface_v3/interface_manager.h" #include "../interface_v3/interface_manager.h"
#include "../interface_v3/event_descriptor.h" #include "nel/gui/event_descriptor.h"
#include "../motion/user_controls.h" #include "../motion/user_controls.h"
#include "../global.h" #include "../global.h"
#include "../entities.h" #include "../entities.h"

Loading…
Cancel
Save