CComponents: move class into its own source directory

The components could over time become quite large,
so it makes more sense, coming features to split into
multiple files and to do it in a separate directory.
This commit is contained in:
2013-02-19 11:27:46 +01:00
parent 59642214f7
commit 0a961a4cf6
12 changed files with 38 additions and 16 deletions

View File

@@ -176,6 +176,7 @@ src/driver/audiodec/Makefile
src/driver/Makefile
src/gui/Makefile
src/gui/bedit/Makefile
src/gui/components/Makefile
src/gui/widget/Makefile
src/system/Makefile
data/Makefile

View File

@@ -48,6 +48,7 @@ endif
neutrino_LDADD = \
daemonc/libneutrino_daemonc.a \
gui/bedit/libneutrino_gui_bedit.a \
gui/components/libneutrino_gui_components.a \
gui/libtimerlist.a \
gui/libneutrino_gui.a \
gui/widget/libneutrino_gui_widget.a \

View File

@@ -18,7 +18,7 @@ noinst_HEADERS = git_version.h
.PHONY: makeversion
SUBDIRS = widget bedit
SUBDIRS = bedit components widget
INCLUDES = \
-I$(top_builddir) \

View File

@@ -37,7 +37,7 @@
#include <driver/framebuffer.h>
#include <driver/audiofile.h>
#include <gui/filebrowser.h>
#include <gui/widget/components.h>
#include <gui/components/cc.h>
#include <gui/widget/menue.h>
#include <xmltree/xmlinterface.h>

View File

@@ -35,7 +35,7 @@
#include <driver/framebuffer.h>
#include <gui/widget/menue.h>
#include <gui/widget/components.h>
#include <gui/components/cc.h>
#include <zapit/client/zapitclient.h>
#include <string>

View File

@@ -34,7 +34,7 @@
#include <driver/framebuffer.h>
#include <gui/widget/listbox.h>
#include <gui/widget/components.h>
#include <gui/components/cc.h>
#include <zapit/client/zapitclient.h>
#include <string>

View File

@@ -55,7 +55,7 @@
#include <gui/widget/icons.h>
#include <gui/widget/messagebox.h>
#include <gui/widget/progressbar.h>
#include <gui/widget/components.h>
#include <gui/components/cc.h>
#include <system/settings.h>
#include <gui/customcolor.h>

View File

@@ -0,0 +1,20 @@
AM_CPPFLAGS = -fno-rtti -fno-exceptions
INCLUDES = \
-I$(top_builddir) \
-I$(top_srcdir) \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/zapit/include \
-I$(top_srcdir)/lib \
-I$(top_srcdir)/lib/libeventserver \
-I$(top_srcdir)/lib/libconfigfile \
-I$(top_srcdir)/lib/libcoolstream \
-I$(top_srcdir)/lib/xmltree \
@FREETYPE_CFLAGS@
noinst_LIBRARIES = libneutrino_gui_components.a
libneutrino_gui_components_a_SOURCES = \
components.cpp

View File

@@ -1,9 +1,9 @@
/*
GUI window component classes - Neutrino-GUI
Based up Neutrino-GUI - Tuxbox-Project
Copyright (C) 2001 by Steffen Hehn 'McClean'
Copyright(C) 2012, Thilo Graf (dbt)
This class contains generic components for GUI-related parts.
Classes for generic for GUI-related components.
Copyright (C) 2012, 2013, Thilo Graf 'dbt'
License: GPL

View File

@@ -1,9 +1,10 @@
/*
GUI window component classes - Neutrino-GUI
Based up Neutrino-GUI - Tuxbox-Project
Copyright (C) 2001 by Steffen Hehn 'McClean'
Copyright(C) 2012, Thilo Graf (dbt)
This class contains generic components for GUI-related parts.
Classes for generic for GUI-related components.
Copyright (C) 2012, 2013, Thilo Graf 'dbt'
Copyright (C) 2012, Michael Liebmann 'micha-bbg'
License: GPL
@@ -29,7 +30,7 @@
#include <global.h>
#include <neutrino.h>
#include <gui/widget/components.h>
#include "cc.h"

View File

@@ -22,7 +22,6 @@ noinst_LIBRARIES = libneutrino_gui_widget.a libneutrino_gui_widget2.a
libneutrino_gui_widget_a_SOURCES = \
buttons.cpp \
colorchooser.cpp \
components.cpp \
drawable.cpp \
helpbox.cpp \
hintbox.cpp \

View File

@@ -41,7 +41,7 @@
#include <system/localize.h>
#include <gui/widget/icons.h>
#include <gui/color.h>
#include <gui/widget/components.h>
#include <gui/components/cc.h>
#include <string>
#include <vector>