mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-26 23:13:13 +02:00
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:
@@ -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
|
||||
|
@@ -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 \
|
||||
|
@@ -18,7 +18,7 @@ noinst_HEADERS = git_version.h
|
||||
.PHONY: makeversion
|
||||
|
||||
|
||||
SUBDIRS = widget bedit
|
||||
SUBDIRS = bedit components widget
|
||||
|
||||
INCLUDES = \
|
||||
-I$(top_builddir) \
|
||||
|
@@ -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>
|
||||
|
@@ -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>
|
||||
|
@@ -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>
|
||||
|
@@ -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>
|
||||
|
20
src/gui/components/Makefile.am
Normal file
20
src/gui/components/Makefile.am
Normal 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
|
@@ -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
|
||||
|
@@ -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"
|
||||
|
||||
|
||||
|
@@ -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 \
|
||||
|
@@ -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>
|
||||
|
Reference in New Issue
Block a user