Renaming of files in preparation for code style tools.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/25/head
Michele Calgaro 3 years ago
parent 41fa1afc2c
commit fce86b22a2
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -31,7 +31,7 @@ link_directories(
tde_add_library( arts_akode SHARED AUTOMOC tde_add_library( arts_akode SHARED AUTOMOC
SOURCES SOURCES
akodearts.cc akodePlayObject_impl.cpp akodearts.cpp akodePlayObject_impl.cpp
akodeMPCPlayObject_impl.cpp akodeMPEGPlayObject_impl.cpp akodeMPCPlayObject_impl.cpp akodeMPEGPlayObject_impl.cpp
akodeFFMPEGPlayObject_impl.cpp akodeXiphPlayObject_impl.cpp akodeFFMPEGPlayObject_impl.cpp akodeXiphPlayObject_impl.cpp
akodeVorbisStreamPlayObject_impl.cpp akodeSpeexStreamPlayObject_impl.cpp akodeVorbisStreamPlayObject_impl.cpp akodeSpeexStreamPlayObject_impl.cpp
@ -43,7 +43,7 @@ tde_add_library( arts_akode SHARED AUTOMOC
add_custom_command( add_custom_command(
OUTPUT OUTPUT
akodearts.cc akodearts.h akodearts.cpp akodearts.h
akodearts.mcoptype akodearts.mcopclass akodearts.mcoptype akodearts.mcopclass
COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t
-I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/akodearts.idl -I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/akodearts.idl

@ -4,7 +4,7 @@ noinst_HEADERS = akodePlayObject_impl.h
lib_LTLIBRARIES = libarts_akode.la lib_LTLIBRARIES = libarts_akode.la
libarts_akode_la_SOURCES = akodearts.cc akodePlayObject_impl.cpp \ libarts_akode_la_SOURCES = akodearts.cpp akodePlayObject_impl.cpp \
akodeMPCPlayObject_impl.cpp akodeMPEGPlayObject_impl.cpp \ akodeMPCPlayObject_impl.cpp akodeMPEGPlayObject_impl.cpp \
akodeFFMPEGPlayObject_impl.cpp akodeXiphPlayObject_impl.cpp \ akodeFFMPEGPlayObject_impl.cpp akodeXiphPlayObject_impl.cpp \
akodeVorbisStreamPlayObject_impl.cpp akodeSpeexStreamPlayObject_impl.cpp akodeVorbisStreamPlayObject_impl.cpp akodeSpeexStreamPlayObject_impl.cpp
@ -16,7 +16,7 @@ libarts_akode_la_COMPILE_FIRST = akodearts.h
$(srcdir)/akodePlayObject_impl.cpp: akodearts.h $(srcdir)/akodePlayObject_impl.cpp: akodearts.h
akodearts.mcopclass: akodearts.h akodearts.mcopclass: akodearts.h
akodearts.mcoptype: akodearts.h akodearts.mcoptype: akodearts.h
akodearts.cc akodearts.h: $(srcdir)/akodearts.idl akodearts.cpp akodearts.h: $(srcdir)/akodearts.idl
$(MCOPIDL) -t $(INCLUDES) $(srcdir)/akodearts.idl $(MCOPIDL) -t $(INCLUDES) $(srcdir)/akodearts.idl
mcoptypedir = $(libdir)/mcop mcoptypedir = $(libdir)/mcop
@ -42,5 +42,5 @@ mcopclassdir = $(libdir)/mcop
mcopclass_DATA = akodePlayObject.mcopclass \ mcopclass_DATA = akodePlayObject.mcopclass \
$(AKODE_MPC) $(AKODE_MPEG) $(AKODE_XIPH) $(AKODE_FFMPEG) $(AKODE_MPC) $(AKODE_MPEG) $(AKODE_XIPH) $(AKODE_FFMPEG)
CLEANFILES=akodearts.h akodearts.cc akodearts.mcopclass akodearts.mcoptype CLEANFILES=akodearts.h akodearts.cpp akodearts.mcopclass akodearts.mcoptype

@ -6,4 +6,4 @@ SUBDIRS = runtime midi gui modules examples $(ARTS_BUILD_KDE)
DIST_SUBDIRS = runtime midi gui modules examples builder tools DIST_SUBDIRS = runtime midi gui modules examples builder tools
messages: messages:
$(XGETTEXT) modules/*/*.cpp modules/*/*.cc gui/*/*.cpp gui/*/*.cc -o $(podir)/artsmodules.pot $(XGETTEXT) modules/*/*.cpp gui/*/*.cpp -o $(podir)/artsmodules.pot

@ -27,14 +27,14 @@ link_directories(
##### artsgui (library) ######################### ##### artsgui (library) #########################
tde_add_library( artsgui_idl SHARED tde_add_library( artsgui_idl SHARED
SOURCES artsgui.cc SOURCES artsgui.cpp
VERSION 0.0.0 VERSION 0.0.0
LINK mcop ${DL_LIBRARIES} ${ARTS_LIBRARIES} LINK mcop ${DL_LIBRARIES} ${ARTS_LIBRARIES}
DESTINATION ${LIB_INSTALL_DIR} DESTINATION ${LIB_INSTALL_DIR}
) )
tde_add_library( artsgui SHARED tde_add_library( artsgui SHARED
SOURCES genericguifactory_impl.cc SOURCES genericguifactory_impl.cpp
VERSION 0.0.0 VERSION 0.0.0
LINK artsgui_idl-shared LINK artsgui_idl-shared
DESTINATION ${LIB_INSTALL_DIR} DESTINATION ${LIB_INSTALL_DIR}
@ -42,7 +42,7 @@ tde_add_library( artsgui SHARED
add_custom_command( add_custom_command(
OUTPUT OUTPUT
artsgui.cc artsgui.h artsgui.cpp artsgui.h
artsgui.mcoptype artsgui.mcopclass artsgui.mcoptype artsgui.mcopclass
COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t
-I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/artsgui.idl -I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/artsgui.idl

@ -2,23 +2,23 @@ lib_LTLIBRARIES = libartsgui_idl.la libartsgui.la
INCLUDES= -I$(arts_includes) -I$(top_builddir)/arts/runtime $(all_includes) INCLUDES= -I$(arts_includes) -I$(top_builddir)/arts/runtime $(all_includes)
libartsgui_idl_la_SOURCES = artsgui.cc libartsgui_idl_la_SOURCES = artsgui.cpp
libartsgui_idl_la_LIBADD = -lmcop $(LIBDL) libartsgui_idl_la_LIBADD = -lmcop $(LIBDL)
libartsgui_idl_la_LDFLAGS = $(all_libraries) -L$(arts_libraries) \ libartsgui_idl_la_LDFLAGS = $(all_libraries) -L$(arts_libraries) \
-no-undefined -no-undefined
libartsgui_la_SOURCES = genericguifactory_impl.cc libartsgui_la_SOURCES = genericguifactory_impl.cpp
libartsgui_la_LIBADD = libartsgui_idl.la libartsgui_la_LIBADD = libartsgui_idl.la
libartsgui_la_LDFLAGS = $(all_libraries) -no-undefined libartsgui_la_LDFLAGS = $(all_libraries) -no-undefined
libartsgui_la_COMPILE_FIRST = artsgui.h libartsgui_la_COMPILE_FIRST = artsgui.h
artsgui.cc artsgui.h: $(srcdir)/artsgui.idl $(MCOPIDL) artsgui.cpp artsgui.h: $(srcdir)/artsgui.idl $(MCOPIDL)
$(MCOPIDL) -t -I$(includedir)/arts $(srcdir)/artsgui.idl $(MCOPIDL) -t -I$(includedir)/arts $(srcdir)/artsgui.idl
artsgui.mcoptype: artsgui.h artsgui.mcoptype: artsgui.h
artsgui.mcopclass: artsgui.h artsgui.mcopclass: artsgui.h
DISTCLEANFILES = artsgui.cc artsgui.h \ DISTCLEANFILES = artsgui.cpp artsgui.h \
artsgui.mcoptype artsgui.mcopclass artsgui.mcoptype artsgui.mcopclass
####### install idl files ####### install idl files

@ -23,7 +23,7 @@
*/ */
/* /*
* DISCLAIMER: The interfaces in artsgui.idl (and the derived .cc/.h files) * DISCLAIMER: The interfaces in artsgui.idl (and the derived .cpp/.h files)
* DO NOT GUARANTEE BINARY COMPATIBILITY YET. * DO NOT GUARANTEE BINARY COMPATIBILITY YET.
* *
* They are intended for developers. You shouldn't expect that applications in * They are intended for developers. You shouldn't expect that applications in

@ -29,7 +29,7 @@ link_directories(
##### artsmidi (library) ######################## ##### artsmidi (library) ########################
tde_add_library( artsmidi_idl SHARED tde_add_library( artsmidi_idl SHARED
SOURCES artsmidi.cc SOURCES artsmidi.cpp
VERSION 0.0.0 VERSION 0.0.0
LINK ${ARTS_LIBRARIES} ${GLIB2_LIBRARIES} ${GTHREAD2_LIBRARIES} mcop artsflow artsflow_idl LINK ${ARTS_LIBRARIES} ${GLIB2_LIBRARIES} ${GTHREAD2_LIBRARIES} mcop artsflow artsflow_idl
DESTINATION ${LIB_INSTALL_DIR} DESTINATION ${LIB_INSTALL_DIR}
@ -37,11 +37,11 @@ tde_add_library( artsmidi_idl SHARED
tde_add_library( artsmidi SHARED tde_add_library( artsmidi SHARED
SOURCES SOURCES
midimanager_impl.cc midiclient_impl.cc midimanager_impl.cpp midiclient_impl.cpp
miditest_impl.cc midimanagerport_impl.cc rawmidiport_impl.cc miditest_impl.cpp midimanagerport_impl.cpp rawmidiport_impl.cpp
systemmiditimer_impl.cc audiomiditimer_impl.cc miditimercommon.cc systemmiditimer_impl.cpp audiomiditimer_impl.cpp miditimercommon.cpp
audiosync_impl.cc audiotimer.cc alsamidigateway_impl.cc audiosync_impl.cpp audiotimer.cpp alsamidigateway_impl.cpp
alsamidiport_impl.cc midisyncgroup_impl.cc timestampmath.cc alsamidiport_impl.cpp midisyncgroup_impl.cpp timestampmath.cpp
VERSION 0.0.0 VERSION 0.0.0
LINK LINK
artsmidi_idl-shared artsmidi_idl-shared
@ -50,7 +50,7 @@ tde_add_library( artsmidi SHARED
add_custom_command( add_custom_command(
OUTPUT OUTPUT
artsmidi.cc artsmidi.h artsmidi.cpp artsmidi.h
artsmidi.mcopclass artsmidi.mcoptype artsmidi.mcopclass artsmidi.mcoptype
COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t
-I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/artsmidi.idl -I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/artsmidi.idl
@ -61,13 +61,13 @@ add_custom_command(
##### midisend (executable) ##################### ##### midisend (executable) #####################
tde_add_executable( midisend tde_add_executable( midisend
SOURCES midisend.cc midimsg.c SOURCES midisend.cpp midimsg.c
LINK artsmidi_idl-shared LINK artsmidi_idl-shared
DESTINATION ${BIN_INSTALL_DIR} DESTINATION ${BIN_INSTALL_DIR}
) )
tde_add_check_executable( midisynctest tde_add_check_executable( midisynctest
SOURCES midisynctest.cc SOURCES midisynctest.cpp
LINK artsmidi-shared soundserver_idl LINK artsmidi-shared soundserver_idl
) )

@ -8,26 +8,26 @@ lib_LTLIBRARIES = libartsmidi_idl.la libartsmidi.la
bin_PROGRAMS = midisend bin_PROGRAMS = midisend
noinst_PROGRAMS = midisynctest noinst_PROGRAMS = midisynctest
midisend_SOURCES = midisend.cc midimsg.c midisend_SOURCES = midisend.cpp midimsg.c
midisend_LDFLAGS = $(all_libraries) $(LIB_TQT) $(KDE_RPATH) $(LIBPTHREAD) $(LIB_TQT) -lmcop -lartsflow_idl midisend_LDFLAGS = $(all_libraries) $(LIB_TQT) $(KDE_RPATH) $(LIBPTHREAD) $(LIB_TQT) -lmcop -lartsflow_idl
midisend_LDADD = libartsmidi_idl.la -lartsflow_idl midisend_LDADD = libartsmidi_idl.la -lartsflow_idl
midisend_COMPILE_FIRST = artsmidi.h midisend_COMPILE_FIRST = artsmidi.h
midisynctest_SOURCES = midisynctest.cc midisynctest_SOURCES = midisynctest.cpp
midisynctest_LDFLAGS = $(all_libraries) $(LIB_TQT) $(KDE_RPATH) $(LIBPTHREAD) $(LIB_TQT) -lmcop -lartsflow_idl -lartsmidi_idl midisynctest_LDFLAGS = $(all_libraries) $(LIB_TQT) $(KDE_RPATH) $(LIBPTHREAD) $(LIB_TQT) -lmcop -lartsflow_idl -lartsmidi_idl
midisynctest_LDADD = libartsmidi.la -lsoundserver_idl -lartsflow_idl -lartsmidi_idl midisynctest_LDADD = libartsmidi.la -lsoundserver_idl -lartsflow_idl -lartsmidi_idl
midisynctest_COMPILE_FIRST = artsmidi.h midisynctest_COMPILE_FIRST = artsmidi.h
libartsmidi_idl_la_SOURCES = artsmidi.cc libartsmidi_idl_la_SOURCES = artsmidi.cpp
libartsmidi_idl_la_LIBADD = -lmcop -lartsflow -lartsflow_idl libartsmidi_idl_la_LIBADD = -lmcop -lartsflow -lartsflow_idl
libartsmidi_idl_la_LDFLAGS = $(all_libraries) -L$(arts_libraries) \ libartsmidi_idl_la_LDFLAGS = $(all_libraries) -L$(arts_libraries) \
-no-undefined -lartsflow_idl -no-undefined -lartsflow_idl
libartsmidi_la_SOURCES = midimanager_impl.cc midiclient_impl.cc \ libartsmidi_la_SOURCES = midimanager_impl.cpp midiclient_impl.cpp \
miditest_impl.cc midimanagerport_impl.cc rawmidiport_impl.cc \ miditest_impl.cpp midimanagerport_impl.cpp rawmidiport_impl.cpp \
systemmiditimer_impl.cc audiomiditimer_impl.cc miditimercommon.cc \ systemmiditimer_impl.cpp audiomiditimer_impl.cpp miditimercommon.cpp \
audiosync_impl.cc audiotimer.cc alsamidigateway_impl.cc \ audiosync_impl.cpp audiotimer.cpp alsamidigateway_impl.cpp \
alsamidiport_impl.cc midisyncgroup_impl.cc timestampmath.cc alsamidiport_impl.cpp midisyncgroup_impl.cpp timestampmath.cpp
libartsmidi_la_COMPILE_FIRST = artsmidi.h libartsmidi_la_COMPILE_FIRST = artsmidi.h
libartsmidi_la_LIBADD = libartsmidi_idl.la -lartsflow_idl -lartsflow $(ARTS_LIBASOUND) libartsmidi_la_LIBADD = libartsmidi_idl.la -lartsflow_idl -lartsflow $(ARTS_LIBASOUND)
@ -36,10 +36,10 @@ libartsmidi_la_LDFLAGS = $(all_libraries) -L$(arts_libraries) \
artsmidi.mcopclass: artsmidi.h artsmidi.mcopclass: artsmidi.h
artsmidi.mcoptype: artsmidi.h artsmidi.mcoptype: artsmidi.h
artsmidi.cc artsmidi.h: $(srcdir)/artsmidi.idl $(MCOPIDL) artsmidi.cpp artsmidi.h: $(srcdir)/artsmidi.idl $(MCOPIDL)
$(MCOPIDL) -t -I$(arts_includes) $(srcdir)/artsmidi.idl $(MCOPIDL) -t -I$(arts_includes) $(srcdir)/artsmidi.idl
DISTCLEANFILES = artsmidi.cc artsmidi.h \ DISTCLEANFILES = artsmidi.cpp artsmidi.h \
artsmidi.mcoptype artsmidi.mcopclass artsmidi.mcoptype artsmidi.mcopclass
####### install idl files ####### install idl files

@ -250,7 +250,7 @@ synchronized to those of the midi channels.
--------------- ---------------
An example that illustrates most things discussed in this document is An example that illustrates most things discussed in this document is
midisynctest.cc, which plays back two synchronized midi streams and samples. midisynctest.cpp, which plays back two synchronized midi streams and samples.
Note that you might want to change the source code, as it hardcodes the Note that you might want to change the source code, as it hardcodes the
location of the .wav file. location of the .wav file.

@ -21,7 +21,7 @@
*/ */
/* /*
* DISCLAIMER: The interfaces in artsmidi.idl (and the derived .cc/.h files) * DISCLAIMER: The interfaces in artsmidi.idl (and the derived .cpp/.h files)
* DO NOT GUARANTEE BINARY COMPATIBILITY YET. * DO NOT GUARANTEE BINARY COMPATIBILITY YET.
* *
* They are intended for developers. You shouldn't expect that applications in * They are intended for developers. You shouldn't expect that applications in

@ -39,7 +39,7 @@ link_directories(
tde_add_library( artsmodules SHARED tde_add_library( artsmodules SHARED
SOURCES SOURCES
artsmodules.cc artsmodules.cpp
VERSION 0.0.0 VERSION 0.0.0
LINK LINK
tdecore-shared ${DL_LIBRARIES} mcop artsflow tdecore-shared ${DL_LIBRARIES} mcop artsflow
@ -51,7 +51,7 @@ tde_add_library( artsmodules SHARED
add_custom_command( add_custom_command(
OUTPUT OUTPUT
artsmodules.cc artsmodules.h artsmodules.cpp artsmodules.h
artsmodules.mcoptype artsmodules.mcopclass artsmodules.mcoptype artsmodules.mcopclass
COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t
-I${CMAKE_SOURCE_DIR}/arts/gui/common -I${CMAKE_SOURCE_DIR}/arts/gui/common

@ -25,7 +25,7 @@ MCOPIDLINCLUDES = \
lib_LTLIBRARIES = libartsmodules.la lib_LTLIBRARIES = libartsmodules.la
libartsmodules_la_SOURCES = artsmodules.cc libartsmodules_la_SOURCES = artsmodules.cpp
libartsmodules_la_LIBADD = \ libartsmodules_la_LIBADD = \
$(top_builddir)/arts/runtime/libartsbuilder.la \ $(top_builddir)/arts/runtime/libartsbuilder.la \
@ -42,10 +42,10 @@ libartsmodules_la_LDFLAGS = $(all_libraries) -L$(arts_libraries) \
artsmodules.mcopclass: artsmodules.h artsmodules.mcopclass: artsmodules.h
artsmodules.mcoptype: artsmodules.h artsmodules.mcoptype: artsmodules.h
artsmodules.cc artsmodules.h: $(srcdir)/artsmodules.idl $(MCOPIDL) artsmodules.cpp artsmodules.h: $(srcdir)/artsmodules.idl $(MCOPIDL)
$(MCOPIDL) -t $(MCOPIDLINCLUDES) $(srcdir)/artsmodules.idl $(MCOPIDL) -t $(MCOPIDLINCLUDES) $(srcdir)/artsmodules.idl
DISTCLEANFILES = artsmodules.cc artsmodules.h \ DISTCLEANFILES = artsmodules.cpp artsmodules.h \
artsmodules.mcoptype artsmodules.mcopclass artsmodules.mcoptype artsmodules.mcopclass
####### install idl files ####### install idl files

@ -281,7 +281,7 @@ Basically, you derive an interface from Arts::Environment::Item, like this:
and your implementation from Arts::Environment::Item_impl, like this: and your implementation from Arts::Environment::Item_impl, like this:
// this code is in the .cc file: // this code is in the .cpp file:
#include "artsmodules.h" #include "artsmodules.h"
#include "env_item_impl.h" #include "env_item_impl.h"

@ -7,9 +7,9 @@ To add a new module "foo" to aRts:
1. Add a new interface to artsmodules.idl defining the 1. Add a new interface to artsmodules.idl defining the
module's input and output parameters. module's input and output parameters.
2. Implement the new module in a new source file foo_impl.cc 2. Implement the new module in a new source file foo_impl.cpp
3. Add foo_impl.cc to the list of libartsmodules_la_SOURCES in 3. Add foo_impl.cpp to the list of libartsmodules_la_SOURCES in
Makefile.am. Makefile.am.
4. Create a new file mcopclass/foo.mcopclass 4. Create a new file mcopclass/foo.mcopclass

@ -25,7 +25,7 @@
*/ */
/* /*
* DISCLAIMER: The interfaces in artsmodules.idl (and the derived .cc/.h files) * DISCLAIMER: The interfaces in artsmodules.idl (and the derived .cpp/.h files)
* DO NOT GUARANTEE BINARY COMPATIBILITY YET. * DO NOT GUARANTEE BINARY COMPATIBILITY YET.
* *
* They are intended for developers. You shouldn't expect that applications in * They are intended for developers. You shouldn't expect that applications in

@ -38,10 +38,10 @@ link_directories(
tde_add_library( artsmodulescommon SHARED tde_add_library( artsmodulescommon SHARED
SOURCES SOURCES
artsmodulescommon.cc effectrackslot_impl.cc artsmodulescommon.cpp effectrackslot_impl.cpp
env_container_impl.cc env_context_impl.cc env_container_impl.cpp env_context_impl.cpp
env_effectrackitem_impl.cc env_instrumentitem_impl.cc env_effectrackitem_impl.cpp env_instrumentitem_impl.cpp
env_item_impl.cc env_mixeritem_impl.cc env_item_impl.cpp env_mixeritem_impl.cpp
VERSION 0.0.0 VERSION 0.0.0
LINK LINK
artsgui_idl-shared artsmidi_idl-shared artsmodulessynth-shared artsgui_idl-shared artsmidi_idl-shared artsmodulessynth-shared
@ -51,7 +51,7 @@ tde_add_library( artsmodulescommon SHARED
add_custom_command( add_custom_command(
OUTPUT OUTPUT
artsmodulescommon.cc artsmodulescommon.h artsmodulescommon.cpp artsmodulescommon.h
artsmodulescommon.mcopclass artsmodulescommon.mcoptype artsmodulescommon.mcopclass artsmodulescommon.mcoptype
COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t
-I${CMAKE_SOURCE_DIR}/arts/gui/common -I${CMAKE_SOURCE_DIR}/arts/gui/common

@ -14,11 +14,11 @@ INCLUDES = \
lib_LTLIBRARIES = libartsmodulescommon.la lib_LTLIBRARIES = libartsmodulescommon.la
libartsmodulescommon_la_SOURCES = artsmodulescommon.cc \ libartsmodulescommon_la_SOURCES = artsmodulescommon.cpp \
effectrackslot_impl.cc env_container_impl.cc \ effectrackslot_impl.cpp env_container_impl.cpp \
env_context_impl.cc env_effectrackitem_impl.cc \ env_context_impl.cpp env_effectrackitem_impl.cpp \
env_instrumentitem_impl.cc env_item_impl.cc \ env_instrumentitem_impl.cpp env_item_impl.cpp \
env_mixeritem_impl.cc env_mixeritem_impl.cpp
libartsmodulescommon_la_COMPILE_FIRST = artsmodulescommon.h libartsmodulescommon_la_COMPILE_FIRST = artsmodulescommon.h
libartsmodulescommon_la_LIBADD = \ libartsmodulescommon_la_LIBADD = \
@ -29,10 +29,10 @@ libartsmodulescommon_la_LIBADD = \
libartsmodulescommon_la_LDFLAGS = $(all_libraries) -L$(arts_libraries) -no-undefined libartsmodulescommon_la_LDFLAGS = $(all_libraries) -L$(arts_libraries) -no-undefined
artsmodulescommon.cc artsmodulescommon.h artsmodulescommon.mcoptype artsmodulescommon.mcopclass: $(srcdir)/artsmodulescommon.idl $(MCOPIDL) artsmodulescommon.cpp artsmodulescommon.h artsmodulescommon.mcoptype artsmodulescommon.mcopclass: $(srcdir)/artsmodulescommon.idl $(MCOPIDL)
$(MCOPIDL) -t $(INCLUDES) $(srcdir)/artsmodulescommon.idl $(MCOPIDL) -t $(INCLUDES) $(srcdir)/artsmodulescommon.idl
DISTCLEANFILES= artsmodulescommon.cc artsmodulescommon.h artsmodulescommon.mcop* DISTCLEANFILES= artsmodulescommon.cpp artsmodulescommon.h artsmodulescommon.mcop*
artsincludedir = $(includedir)/arts artsincludedir = $(includedir)/arts
artsinclude_HEADERS = artsmodulescommon.h artsmodulescommon.idl artsinclude_HEADERS = artsmodulescommon.h artsmodulescommon.idl

@ -25,7 +25,7 @@
*/ */
/* /*
* DISCLAIMER: The interfaces in artsmodules.idl (and the derived .cc/.h files) * DISCLAIMER: The interfaces in artsmodules.idl (and the derived .cpp/.h files)
* DO NOT GUARANTEE BINARY COMPATIBILITY YET. * DO NOT GUARANTEE BINARY COMPATIBILITY YET.
* *
* They are intended for developers. You shouldn't expect that applications in * They are intended for developers. You shouldn't expect that applications in

@ -38,15 +38,15 @@ link_directories(
tde_add_library( artsmoduleseffects SHARED AUTOMOC tde_add_library( artsmoduleseffects SHARED AUTOMOC
SOURCES SOURCES
artsmoduleseffects.cc artsmoduleseffects.cpp
fivebandmonocomplexeq_impl.cc fivebandmonocomplexeq_impl.cpp
monostereoconversion_impl.cc monostereoconversion_impl.cpp
synth_stereo_pitch_shift_impl.cc synth_stereo_pitch_shift_fft_impl.cc synth_stereo_pitch_shift_impl.cpp synth_stereo_pitch_shift_fft_impl.cpp
synth_voice_removal_impl.cc voiceremovalguifactory_impl.cc synth_voice_removal_impl.cpp voiceremovalguifactory_impl.cpp
synth_stereo_compressor_impl.cc stereocompressorguifactory_impl.cc synth_stereo_compressor_impl.cpp stereocompressorguifactory_impl.cpp
synth_stereo_fir_equalizer_impl.cc synth_stereo_fir_equalizer_impl.cpp
synth_freeverb_impl.cc freeverbguifactory_impl.cc synth_freeverb_impl.cpp freeverbguifactory_impl.cpp
effect_wavecapture_impl.cc effect_wavecapture_impl.cpp
kstereovolumecontrolgui_impl.cpp stereovolumecontrolguifactory_impl.cpp kstereovolumecontrolgui_impl.cpp stereovolumecontrolguifactory_impl.cpp
VERSION 0.0.0 VERSION 0.0.0
EMBED EMBED
@ -60,7 +60,7 @@ tde_add_library( artsmoduleseffects SHARED AUTOMOC
add_custom_command( add_custom_command(
OUTPUT OUTPUT
artsmoduleseffects.cc artsmoduleseffects.h artsmoduleseffects.cpp artsmoduleseffects.h
artsmoduleseffects.mcopclass artsmoduleseffects.mcoptype artsmoduleseffects.mcopclass artsmoduleseffects.mcoptype
COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t
-I${CMAKE_SOURCE_DIR}/arts/gui/common -I${CMAKE_SOURCE_DIR}/arts/gui/common

@ -20,15 +20,15 @@ INCLUDES = \
lib_LTLIBRARIES = libartsmoduleseffects.la lib_LTLIBRARIES = libartsmoduleseffects.la
libartsmoduleseffects_la_SOURCES = artsmoduleseffects.cc \ libartsmoduleseffects_la_SOURCES = artsmoduleseffects.cpp \
fivebandmonocomplexeq_impl.cc \ fivebandmonocomplexeq_impl.cpp \
monostereoconversion_impl.cc \ monostereoconversion_impl.cpp \
synth_stereo_pitch_shift_impl.cc synth_stereo_pitch_shift_fft_impl.cc \ synth_stereo_pitch_shift_impl.cpp synth_stereo_pitch_shift_fft_impl.cpp \
synth_voice_removal_impl.cc voiceremovalguifactory_impl.cc \ synth_voice_removal_impl.cpp voiceremovalguifactory_impl.cpp \
synth_stereo_compressor_impl.cc stereocompressorguifactory_impl.cc \ synth_stereo_compressor_impl.cpp stereocompressorguifactory_impl.cpp \
synth_stereo_fir_equalizer_impl.cc \ synth_stereo_fir_equalizer_impl.cpp \
synth_freeverb_impl.cc freeverbguifactory_impl.cc \ synth_freeverb_impl.cpp freeverbguifactory_impl.cpp \
effect_wavecapture_impl.cc \ effect_wavecapture_impl.cpp \
kstereovolumecontrolgui_impl.cpp stereovolumecontrolguifactory_impl.cpp kstereovolumecontrolgui_impl.cpp stereovolumecontrolguifactory_impl.cpp
libartsmoduleseffects_la_COMPILE_FIRST = ../../gui/common/artsgui.h \ libartsmoduleseffects_la_COMPILE_FIRST = ../../gui/common/artsgui.h \
../common/artsmodulescommon.h ../../midi/artsmidi.h ../synth/artsmodulessynth.h \ ../common/artsmodulescommon.h ../../midi/artsmidi.h ../synth/artsmodulessynth.h \
@ -44,10 +44,10 @@ libartsmoduleseffects_la_LDFLAGS = $(all_libraries) -L$(arts_libraries) -no-unde
METASOURCES=AUTO METASOURCES=AUTO
artsmoduleseffects.cc artsmoduleseffects.h artsmoduleseffects.mcoptype artsmoduleseffects.mcopclass: $(srcdir)/artsmoduleseffects.idl $(MCOPIDL) artsmoduleseffects.cpp artsmoduleseffects.h artsmoduleseffects.mcoptype artsmoduleseffects.mcopclass: $(srcdir)/artsmoduleseffects.idl $(MCOPIDL)
$(MCOPIDL) -t $(INCLUDES) $(srcdir)/artsmoduleseffects.idl $(MCOPIDL) -t $(INCLUDES) $(srcdir)/artsmoduleseffects.idl
DISTCLEANFILES= artsmoduleseffects.cc artsmoduleseffects.h artsmoduleseffects.mcop* DISTCLEANFILES= artsmoduleseffects.cpp artsmoduleseffects.h artsmoduleseffects.mcop*
artsincludedir = $(includedir)/arts artsincludedir = $(includedir)/arts
artsinclude_HEADERS = artsmoduleseffects.h artsmoduleseffects.idl artsinclude_HEADERS = artsmoduleseffects.h artsmoduleseffects.idl

@ -18,7 +18,7 @@
*/ */
/* /*
* DISCLAIMER: The interfaces in envmixer.idl (and the derived .cc/.h files) * DISCLAIMER: The interfaces in envmixer.idl (and the derived .cpp/.h files)
* DO NOT GUARANTEE BINARY COMPATIBILITY YET. * DO NOT GUARANTEE BINARY COMPATIBILITY YET.
* *
* They are intended for developers. You shouldn't expect that applications in * They are intended for developers. You shouldn't expect that applications in

@ -4,7 +4,7 @@
// http://www.dreampoint.co.uk // http://www.dreampoint.co.uk
// This code is public domain // This code is public domain
#include "allpass.hpp" #include "allpass.h"
allpass::allpass() allpass::allpass()
{ {

@ -4,7 +4,7 @@
// http://www.dreampoint.co.uk // http://www.dreampoint.co.uk
// This code is public domain // This code is public domain
#include "comb.hpp" #include "comb.h"
comb::comb() comb::comb()
{ {

@ -4,7 +4,7 @@
// http://www.dreampoint.co.uk // http://www.dreampoint.co.uk
// This code is public domain // This code is public domain
#include "revmodel.hpp" #include "revmodel.h"
revmodel::revmodel() revmodel::revmodel()
{ {

@ -7,8 +7,8 @@
#ifndef _revmodel_ #ifndef _revmodel_
#define _revmodel_ #define _revmodel_
#include "comb.hpp" #include "comb.h"
#include "allpass.hpp" #include "allpass.h"
#include "tuning.h" #include "tuning.h"
class revmodel class revmodel

@ -20,7 +20,7 @@
*/ */
#include "freeverb/revmodel.hpp" #include "freeverb/revmodel.h"
#include "artsmoduleseffects.h" #include "artsmoduleseffects.h"
#include "stdsynthmodule.h" #include "stdsynthmodule.h"

@ -37,10 +37,10 @@ link_directories(
tde_add_library( artsmodulesmixers SHARED tde_add_library( artsmodulesmixers SHARED
SOURCES SOURCES
artsmodulesmixers.cc artsmodulesmixers.cpp
monosimplemixerchannel_impl.cc monosimplemixerchannelguifactory_impl.cc monosimplemixerchannel_impl.cpp monosimplemixerchannelguifactory_impl.cpp
simplemixerchannel_impl.cc simplemixerchannelguifactory_impl.cc simplemixerchannel_impl.cpp simplemixerchannelguifactory_impl.cpp
littlestereomixerchannel_impl.cc littlestereomixerchannel_impl.cpp
VERSION 0.0.0 VERSION 0.0.0
LINK LINK
artsgui_idl-shared artsmodulescommon-shared artsmoduleseffects-shared artsgui_idl-shared artsmodulescommon-shared artsmoduleseffects-shared
@ -50,7 +50,7 @@ tde_add_library( artsmodulesmixers SHARED
add_custom_command( add_custom_command(
OUTPUT OUTPUT
artsmodulesmixers.cc artsmodulesmixers.h artsmodulesmixers.cpp artsmodulesmixers.h
artsmodulesmixers.mcopclass artsmodulesmixers.mcoptype artsmodulesmixers.mcopclass artsmodulesmixers.mcoptype
COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t
-I${CMAKE_SOURCE_DIR}/arts/gui/common -I${CMAKE_SOURCE_DIR}/arts/gui/common

@ -25,10 +25,10 @@ MCOPINCLUDES = \
lib_LTLIBRARIES = libartsmodulesmixers.la lib_LTLIBRARIES = libartsmodulesmixers.la
libartsmodulesmixers_la_SOURCES = artsmodulesmixers.cc \ libartsmodulesmixers_la_SOURCES = artsmodulesmixers.cpp \
monosimplemixerchannel_impl.cc monosimplemixerchannelguifactory_impl.cc \ monosimplemixerchannel_impl.cpp monosimplemixerchannelguifactory_impl.cpp \
simplemixerchannel_impl.cc simplemixerchannelguifactory_impl.cc \ simplemixerchannel_impl.cpp simplemixerchannelguifactory_impl.cpp \
littlestereomixerchannel_impl.cc littlestereomixerchannel_impl.cpp
libartsmodulesmixers_la_COMPILE_FIRST = ../synth/artsmodulessynth.h \ libartsmodulesmixers_la_COMPILE_FIRST = ../synth/artsmodulessynth.h \
../../midi/artsmidi.h ../common/artsmodulescommon.h ../../gui/common/artsgui.h \ ../../midi/artsmidi.h ../common/artsmodulescommon.h ../../gui/common/artsgui.h \
artsmodulesmixers.h artsmodulesmixers.h
@ -40,10 +40,10 @@ libartsmodulesmixers_la_LIBADD = \
libartsmodulesmixers_la_LDFLAGS = $(all_libraries) -L$(arts_libraries) -no-undefined libartsmodulesmixers_la_LDFLAGS = $(all_libraries) -L$(arts_libraries) -no-undefined
artsmodulesmixers.cc artsmodulesmixers.h artsmodulesmixers.mcoptype artsmodulesmixers.mcopclass: $(srcdir)/artsmodulesmixers.idl $(MCOPIDL) artsmodulesmixers.cpp artsmodulesmixers.h artsmodulesmixers.mcoptype artsmodulesmixers.mcopclass: $(srcdir)/artsmodulesmixers.idl $(MCOPIDL)
$(MCOPIDL) -t $(MCOPINCLUDES) $(srcdir)/artsmodulesmixers.idl $(MCOPIDL) -t $(MCOPINCLUDES) $(srcdir)/artsmodulesmixers.idl
DISTCLEANFILES= artsmodulesmixers.cc artsmodulesmixers.h artsmodulesmixers.mcop* DISTCLEANFILES= artsmodulesmixers.cpp artsmodulesmixers.h artsmodulesmixers.mcop*
artsincludedir = $(includedir)/arts artsincludedir = $(includedir)/arts
artsinclude_HEADERS = artsmodulesmixers.h artsmodulesmixers.idl artsinclude_HEADERS = artsmodulesmixers.h artsmodulesmixers.idl

@ -25,7 +25,7 @@
*/ */
/* /*
* DISCLAIMER: The interfaces in artsmodules.idl (and the derived .cc/.h files) * DISCLAIMER: The interfaces in artsmodules.idl (and the derived .cpp/.h files)
* DO NOT GUARANTEE BINARY COMPATIBILITY YET. * DO NOT GUARANTEE BINARY COMPATIBILITY YET.
* *
* They are intended for developers. You shouldn't expect that applications in * They are intended for developers. You shouldn't expect that applications in

@ -34,20 +34,20 @@ link_directories(
tde_add_library( artsmodulessynth SHARED tde_add_library( artsmodulessynth SHARED
SOURCES SOURCES
artsmodulessynth.cc artsmodulessynth.cpp
synth_xfade_impl.cc synth_autopanner_impl.cc synth_delay_impl.cc synth_xfade_impl.cpp synth_autopanner_impl.cpp synth_delay_impl.cpp
synth_cdelay_impl.cc synth_envelope_adsr_impl.cc synth_pscale_impl.cc synth_cdelay_impl.cpp synth_envelope_adsr_impl.cpp synth_pscale_impl.cpp
synth_tremolo_impl.cc synth_fx_cflanger_impl.cc synth_compressor_impl.cc synth_tremolo_impl.cpp synth_fx_cflanger_impl.cpp synth_compressor_impl.cpp
synth_pitch_shift_impl.cc synth_pitch_shift_fft_impl.cc c_filter_stuff.c synth_pitch_shift_impl.cpp synth_pitch_shift_fft_impl.cpp c_filter_stuff.c
synth_shelve_cutoff_impl.cc synth_brickwall_limiter_impl.cc synth_shelve_cutoff_impl.cpp synth_brickwall_limiter_impl.cpp
synth_std_equalizer_impl.cc synth_rc_impl.cc synth_moog_vcf_impl.cc synth_std_equalizer_impl.cpp synth_rc_impl.cpp synth_moog_vcf_impl.cpp
synth_atan_saturate_impl.cc synth_fm_source_impl.cc synth_atan_saturate_impl.cpp synth_fm_source_impl.cpp
synth_wave_tri_impl.cc synth_noise_impl.cc synth_wave_softsaw_impl.cc synth_wave_tri_impl.cpp synth_noise_impl.cpp synth_wave_softsaw_impl.cpp
synth_wave_square_impl.cc synth_wave_pulse_impl.cc synth_osc_impl.cc synth_wave_square_impl.cpp synth_wave_pulse_impl.cpp synth_osc_impl.cpp
synth_play_pat_impl.cc synth_capture_wav_impl.cc synth_play_pat_impl.cpp synth_capture_wav_impl.cpp
synth_midi_test_impl.cc synth_sequence_impl.cc synth_sequence_freq_impl.cc synth_midi_test_impl.cpp synth_sequence_impl.cpp synth_sequence_freq_impl.cpp
synth_midi_debug_impl.cc objectcache_impl.cc synth_nil_impl.cc synth_midi_debug_impl.cpp objectcache_impl.cpp synth_nil_impl.cpp
synth_debug_impl.cc synth_data_impl.cc synth_div_impl.cc synth_debug_impl.cpp synth_data_impl.cpp synth_div_impl.cpp
VERSION 0.0.0 VERSION 0.0.0
LINK LINK
artsbuilder-shared artsmidi_idl-shared artsbuilder-shared artsmidi_idl-shared
@ -57,7 +57,7 @@ tde_add_library( artsmodulessynth SHARED
add_custom_command( add_custom_command(
OUTPUT OUTPUT
artsmodulessynth.cc artsmodulessynth.h artsmodulessynth.cpp artsmodulessynth.h
artsmodulessynth.mcopclass artsmodulessynth.mcoptype artsmodulessynth.mcopclass artsmodulessynth.mcoptype
COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t
-I${CMAKE_SOURCE_DIR}/arts/gui/common -I${CMAKE_SOURCE_DIR}/arts/gui/common

@ -15,17 +15,17 @@ MCOP_INCLUDES= \
lib_LTLIBRARIES = libartsmodulessynth.la lib_LTLIBRARIES = libartsmodulessynth.la
libartsmodulessynth_la_SOURCES = artsmodulessynth.cc \ libartsmodulessynth_la_SOURCES = artsmodulessynth.cpp \
synth_xfade_impl.cc synth_autopanner_impl.cc synth_delay_impl.cc synth_cdelay_impl.cc \ synth_xfade_impl.cpp synth_autopanner_impl.cpp synth_delay_impl.cpp synth_cdelay_impl.cpp \
synth_envelope_adsr_impl.cc synth_pscale_impl.cc \ synth_envelope_adsr_impl.cpp synth_pscale_impl.cpp \
synth_tremolo_impl.cc synth_fx_cflanger_impl.cc synth_compressor_impl.cc \ synth_tremolo_impl.cpp synth_fx_cflanger_impl.cpp synth_compressor_impl.cpp \
synth_pitch_shift_impl.cc synth_pitch_shift_fft_impl.cc c_filter_stuff.c synth_shelve_cutoff_impl.cc synth_brickwall_limiter_impl.cc synth_std_equalizer_impl.cc synth_rc_impl.cc synth_moog_vcf_impl.cc synth_atan_saturate_impl.cc \ synth_pitch_shift_impl.cpp synth_pitch_shift_fft_impl.cpp c_filter_stuff.c synth_shelve_cutoff_impl.cpp synth_brickwall_limiter_impl.cpp synth_std_equalizer_impl.cpp synth_rc_impl.cpp synth_moog_vcf_impl.cpp synth_atan_saturate_impl.cpp \
synth_fm_source_impl.cc \ synth_fm_source_impl.cpp \
synth_wave_tri_impl.cc synth_noise_impl.cc synth_wave_softsaw_impl.cc synth_wave_square_impl.cc synth_wave_pulse_impl.cc synth_osc_impl.cc synth_play_pat_impl.cc \ synth_wave_tri_impl.cpp synth_noise_impl.cpp synth_wave_softsaw_impl.cpp synth_wave_square_impl.cpp synth_wave_pulse_impl.cpp synth_osc_impl.cpp synth_play_pat_impl.cpp \
synth_capture_wav_impl.cc \ synth_capture_wav_impl.cpp \
synth_midi_test_impl.cc synth_sequence_impl.cc synth_sequence_freq_impl.cc \ synth_midi_test_impl.cpp synth_sequence_impl.cpp synth_sequence_freq_impl.cpp \
synth_midi_debug_impl.cc objectcache_impl.cc synth_nil_impl.cc synth_debug_impl.cc synth_data_impl.cc \ synth_midi_debug_impl.cpp objectcache_impl.cpp synth_nil_impl.cpp synth_debug_impl.cpp synth_data_impl.cpp \
synth_div_impl.cc synth_div_impl.cpp
libartsmodulessynth_la_COMPILE_FIRST = artsmodulessynth.h ../../midi/artsmidi.h libartsmodulessynth_la_COMPILE_FIRST = artsmodulessynth.h ../../midi/artsmidi.h
libartsmodulessynth_la_LIBADD = \ libartsmodulessynth_la_LIBADD = \
@ -36,10 +36,10 @@ libartsmodulessynth_la_LIBADD = \
#libartsmodulessynth_la_LIBADD = $(top_builddir)/arts/gui/common/libartsgui_idl.la $(top_builddir)/arts/midi/libartsmidi_idl.la -lartsflow -lartsflow_idl -lmcop $(LIBDL) $(LIB_TDEUI) $(LIB_TDECORE) #libartsmodulessynth_la_LIBADD = $(top_builddir)/arts/gui/common/libartsgui_idl.la $(top_builddir)/arts/midi/libartsmidi_idl.la -lartsflow -lartsflow_idl -lmcop $(LIBDL) $(LIB_TDEUI) $(LIB_TDECORE)
libartsmodulessynth_la_LDFLAGS = $(all_libraries) -L$(arts_libraries) -lartsflow -lartsgsl -no-undefined libartsmodulessynth_la_LDFLAGS = $(all_libraries) -L$(arts_libraries) -lartsflow -lartsgsl -no-undefined
artsmodulessynth.cc artsmodulessynth.h artsmodulessynth.mcoptype artsmodulessynth.mcopclass: $(srcdir)/artsmodulessynth.idl $(MCOPIDL) artsmodulessynth.cpp artsmodulessynth.h artsmodulessynth.mcoptype artsmodulessynth.mcopclass: $(srcdir)/artsmodulessynth.idl $(MCOPIDL)
$(MCOPIDL) -t $(MCOP_INCLUDES) $(srcdir)/artsmodulessynth.idl $(MCOPIDL) -t $(MCOP_INCLUDES) $(srcdir)/artsmodulessynth.idl
DISTCLEANFILES= artsmodulessynth.cc artsmodulessynth.h artsmodulessynth.mcop* DISTCLEANFILES= artsmodulessynth.cpp artsmodulessynth.h artsmodulessynth.mcop*
artsincludedir = $(includedir)/arts artsincludedir = $(includedir)/arts
artsinclude_HEADERS = artsmodulessynth.h artsmodulessynth.idl artsinclude_HEADERS = artsmodulessynth.h artsmodulessynth.idl

@ -25,7 +25,7 @@
*/ */
/* /*
* DISCLAIMER: The interfaces in artsmodules.idl (and the derived .cc/.h files) * DISCLAIMER: The interfaces in artsmodules.idl (and the derived .cpp/.h files)
* DO NOT GUARANTEE BINARY COMPATIBILITY YET. * DO NOT GUARANTEE BINARY COMPATIBILITY YET.
* *
* They are intended for developers. You shouldn't expect that applications in * They are intended for developers. You shouldn't expect that applications in

@ -60,7 +60,7 @@ public:
if (zero_lower < invalue[0] && invalue[0] < zero_upper) if (zero_lower < invalue[0] && invalue[0] < zero_upper)
{ {
/* for comments see equalizer.cc/Synth_STD_EQUALIZER implementation */ /* for comments see equalizer.cpp/Synth_STD_EQUALIZER implementation */
/* /*
* This implementation differs from the implementation there, * This implementation differs from the implementation there,

@ -31,9 +31,9 @@ add_definitions(
tde_add_library( artsbuilder SHARED tde_add_library( artsbuilder SHARED
SOURCES SOURCES
artsbuilder.cc sequenceutils.cc artsbuilder.cpp sequenceutils.cpp
structurebuilder_impl.cc structures_impl.cc moduleinfo.cc structurebuilder_impl.cpp structures_impl.cpp moduleinfo.cpp
compatibility.cc localfactory_impl.cc artsbuilderloader_impl.cc compatibility.cpp localfactory_impl.cpp artsbuilderloader_impl.cpp
VERSION 0.0.0 VERSION 0.0.0
LINK LINK
mcop artsflow artsflow_idl ${DL_LIBRARIES} ${ARTS_LIBRARIES} mcop artsflow artsflow_idl ${DL_LIBRARIES} ${ARTS_LIBRARIES}
@ -42,7 +42,7 @@ tde_add_library( artsbuilder SHARED
add_custom_command( add_custom_command(
OUTPUT OUTPUT
artsbuilder.cc artsbuilder.h artsbuilder.cpp artsbuilder.h
artsbuilder.mcoptype artsbuilder.mcopclass artsbuilder.mcoptype artsbuilder.mcopclass
COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t
-I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/artsbuilder.idl -I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/artsbuilder.idl

@ -7,9 +7,9 @@ INCLUDES= -I$(arts_includes) $(all_includes)
lib_LTLIBRARIES = libartsbuilder.la lib_LTLIBRARIES = libartsbuilder.la
libartsbuilder_la_SOURCES = artsbuilder.cc sequenceutils.cc \ libartsbuilder_la_SOURCES = artsbuilder.cpp sequenceutils.cpp \
structurebuilder_impl.cc structures_impl.cc moduleinfo.cc \ structurebuilder_impl.cpp structures_impl.cpp moduleinfo.cpp \
compatibility.cc localfactory_impl.cc artsbuilderloader_impl.cc compatibility.cpp localfactory_impl.cpp artsbuilderloader_impl.cpp
libartsbuilder_la_LIBADD = -lmcop -lartsflow $(LIBDL) -lartsflow_idl libartsbuilder_la_LIBADD = -lmcop -lartsflow $(LIBDL) -lartsflow_idl
libartsbuilder_la_COMPILE_FIRST = artsbuilder.h libartsbuilder_la_COMPILE_FIRST = artsbuilder.h
@ -19,10 +19,10 @@ libartsbuilder_la_LDFLAGS = $(all_libraries) -L$(arts_libraries) \
artsbuilder.lo: artsbuilder.h artsbuilder.lo: artsbuilder.h
artsbuilder.mcopclass: artsbuilder.h artsbuilder.mcopclass: artsbuilder.h
artsbuilder.mcoptype: artsbuilder.h artsbuilder.mcoptype: artsbuilder.h
artsbuilder.h artsbuilder.cc: $(srcdir)/artsbuilder.idl $(MCOPIDL) artsbuilder.h artsbuilder.cpp: $(srcdir)/artsbuilder.idl $(MCOPIDL)
$(MCOPIDL) -t -I$(arts_includes) $(srcdir)/artsbuilder.idl $(MCOPIDL) -t -I$(arts_includes) $(srcdir)/artsbuilder.idl
DISTCLEANFILES = artsbuilder.cc artsbuilder.h \ DISTCLEANFILES = artsbuilder.cpp artsbuilder.h \
artsbuilder.mcoptype artsbuilder.mcopclass artsbuilder.mcoptype artsbuilder.mcopclass
####### install idl files ####### install idl files

@ -1,5 +1,5 @@
/* /*
* DISCLAIMER: The interfaces in artsbuilder.idl (and the derived .cc/.h files) * DISCLAIMER: The interfaces in artsbuilder.idl (and the derived .cpp/.h files)
* DO NOT GUARANTEE BINARY COMPATIBILITY YET. * DO NOT GUARANTEE BINARY COMPATIBILITY YET.
* *
* They are intended for developers. You shouldn't expect that applications in * They are intended for developers. You shouldn't expect that applications in

@ -27,7 +27,7 @@ link_directories(
tde_add_library( arts_audiofile SHARED AUTOMOC tde_add_library( arts_audiofile SHARED AUTOMOC
SOURCES SOURCES
audiofilearts.cc audiofilePlayObjectI.cpp audiofilearts.cpp audiofilePlayObjectI.cpp
VERSION 0.0.0 VERSION 0.0.0
LINK LINK
mcop kmedia2_idl soundserver_idl artsflow artsflow_idl ${AUDIOFILE_LIBRARIES} mcop kmedia2_idl soundserver_idl artsflow artsflow_idl ${AUDIOFILE_LIBRARIES}
@ -36,7 +36,7 @@ tde_add_library( arts_audiofile SHARED AUTOMOC
add_custom_command( add_custom_command(
OUTPUT OUTPUT
audiofilearts.cc audiofilearts.h audiofilearts.cpp audiofilearts.h
audiofilearts.mcoptype audiofilearts.mcopclass audiofilearts.mcoptype audiofilearts.mcopclass
COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t
-I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/audiofilearts.idl -I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/audiofilearts.idl

@ -4,14 +4,14 @@ noinst_HEADERS = audiofilePlayObjectI.h
lib_LTLIBRARIES = libarts_audiofile.la lib_LTLIBRARIES = libarts_audiofile.la
libarts_audiofile_la_COMPILE_FIRST = audiofilearts.h libarts_audiofile_la_COMPILE_FIRST = audiofilearts.h
libarts_audiofile_la_SOURCES = audiofilearts.cc audiofilePlayObjectI.cpp libarts_audiofile_la_SOURCES = audiofilearts.cpp audiofilePlayObjectI.cpp
libarts_audiofile_la_LDFLAGS = $(all_libraries) -module -no-undefined libarts_audiofile_la_LDFLAGS = $(all_libraries) -module -no-undefined
libarts_audiofile_la_LIBADD = -lkmedia2_idl -lsoundserver_idl -lartsflow -laudiofile libarts_audiofile_la_LIBADD = -lkmedia2_idl -lsoundserver_idl -lartsflow -laudiofile
libarts_audiofile_la_METASOURCES = AUTO libarts_audiofile_la_METASOURCES = AUTO
audiofilearts.mcopclass: audiofilearts.h audiofilearts.mcopclass: audiofilearts.h
audiofilearts.mcoptype: audiofilearts.h audiofilearts.mcoptype: audiofilearts.h
audiofilearts.cc audiofilearts.h: $(srcdir)/audiofilearts.idl $(MCOPIDL) audiofilearts.cpp audiofilearts.h: $(srcdir)/audiofilearts.idl $(MCOPIDL)
$(MCOPIDL) -t -I$(kde_includes)/arts $(srcdir)/audiofilearts.idl $(MCOPIDL) -t -I$(kde_includes)/arts $(srcdir)/audiofilearts.idl
mcoptypedir = $(libdir)/mcop mcoptypedir = $(libdir)/mcop
@ -20,4 +20,4 @@ mcoptype_DATA = audiofilearts.mcoptype audiofilearts.mcopclass
mcopclassdir = $(libdir)/mcop/Arts mcopclassdir = $(libdir)/mcop/Arts
mcopclass_DATA = audiofilePlayObject.mcopclass mcopclass_DATA = audiofilePlayObject.mcopclass
CLEANFILES=audiofilearts.h audiofilearts.cc audiofilearts.mcopclass audiofilearts.mcoptype CLEANFILES=audiofilearts.h audiofilearts.cpp audiofilearts.mcopclass audiofilearts.mcoptype

@ -414,7 +414,7 @@ Short answer: no, &arts; will not work if you compile it with gcc-3.0.
<para> <para>
Long answer: In the official release, there are two gcc-3.0 bugs which affect Long answer: In the official release, there are two gcc-3.0 bugs which affect
&arts;. The first, gcc-3.0 bug c++/2733 is relatively harmless (and has to do &arts;. The first, gcc-3.0 bug c++/2733 is relatively harmless (and has to do
with problems with the asm statement). It breaks compilation of convert.cc. It with problems with the asm statement). It breaks compilation of convert.cpp. It
has been fixed in the gcc-3.0 CVS, and will no longer be a problem with has been fixed in the gcc-3.0 CVS, and will no longer be a problem with
gcc-3.0.1 and higher. A workaround has also been added to the CVS version gcc-3.0.1 and higher. A workaround has also been added to the CVS version
of KDE/aRts. of KDE/aRts.
@ -1018,7 +1018,7 @@ succeeds, which eventually leads to consuming all CPU power and reporting
might get supplied with wrong information how much to write. Artsd will then might get supplied with wrong information how much to write. Artsd will then
<emphasis>stop with an assertion</emphasis> like: <emphasis>stop with an assertion</emphasis> like:
<screen> <screen>
artsd: audiosubsys.cc:458: void Arts::AudioSubSystem::handleIO(int): artsd: audiosubsys.cpp:458: void Arts::AudioSubSystem::handleIO(int):
Assertion `len == can_write' failed. Assertion `len == can_write' failed.
Aborted Aborted
</screen> </screen>

@ -224,7 +224,7 @@ written.
<para> <para>
Source files should have no capitalization in the name. They should have Source files should have no capitalization in the name. They should have
the name of the class when they implement a single class. Their the name of the class when they implement a single class. Their
extension is <literal role="extension">.cc</literal> if they refer to extension is <literal role="extension">.cpp</literal> if they refer to
&Qt;/&GUI; independent code, and <literal &Qt;/&GUI; independent code, and <literal
role="extension">.cpp</literal> if they refer to &Qt;/&GUI; dependant role="extension">.cpp</literal> if they refer to &Qt;/&GUI; dependant
code. Implementation files for interfaces should be called code. Implementation files for interfaces should be called

@ -1093,7 +1093,7 @@ interface Hello {
You pass that through the &IDL; compiler by calling You pass that through the &IDL; compiler by calling
<userinput><command>mcopidl</command> <userinput><command>mcopidl</command>
<parameter>hello.idl</parameter></userinput>, which will in turn generate <parameter>hello.idl</parameter></userinput>, which will in turn generate
<filename>hello.cc</filename> and <filename>hello.h</filename>. To <filename>hello.cpp</filename> and <filename>hello.h</filename>. To
implement it, you need to define a C++-class that inherits the skeleton: implement it, you need to define a C++-class that inherits the skeleton:
</para> </para>
@ -1991,7 +1991,7 @@ objects</quote> and <quote>the <acronym>CORBA</acronym>
interface</quote> look natural, but it didn't, because interface</quote> look natural, but it didn't, because
<acronym>CORBA</acronym> knew nothing at all about streams. &MCOP; <acronym>CORBA</acronym> knew nothing at all about streams. &MCOP;
does. Look at the code (something like does. Look at the code (something like
<filename>simplesoundserver_impl.cc</filename>). Way better! Streams <filename>simplesoundserver_impl.cpp</filename>). Way better! Streams
can be declared in the interface of modules, and implemented in a can be declared in the interface of modules, and implemented in a
natural looking way. natural looking way.
</para> </para>

@ -2,7 +2,7 @@
(C) 1997 by Jung woo-jae */ (C) 1997 by Jung woo-jae */
// Huffmantable.cc // Huffmantable.cpp
// It contains initialized huffman table for MPEG layer 3 // It contains initialized huffman table for MPEG layer 3

@ -2,7 +2,7 @@
(C) 1997 by Jung woo-jae */ (C) 1997 by Jung woo-jae */
// Mpeglayer1.cc // Mpeglayer1.cpp
// It's for MPEG Layer 1 // It's for MPEG Layer 1

@ -2,7 +2,7 @@
(C) 1997 by Jung woo-jae */ (C) 1997 by Jung woo-jae */
// Mpeglayer2.cc // Mpeglayer2.cpp
// It's for MPEG Layer 2 // It's for MPEG Layer 2

@ -2,7 +2,7 @@
(C) 1997 by Jung woo-jae */ (C) 1997 by Jung woo-jae */
// Mpeglayer3.cc // Mpeglayer3.cpp
// It's for MPEG Layer 3 // It's for MPEG Layer 3
// I've made array of superior functions for speed. // I've made array of superior functions for speed.
// Extend TO_FOUR_THIRDS to negative. // Extend TO_FOUR_THIRDS to negative.

@ -2,7 +2,7 @@
(C) 1997 by Jung woo-jae */ (C) 1997 by Jung woo-jae */
// Mpegtable.cc // Mpegtable.cpp
// It has tables for MPEG layer 1, 2 and a part of layer 3 // It has tables for MPEG layer 1, 2 and a part of layer 3

@ -2,7 +2,7 @@
(C) 1997 by Jung woo-jae */ (C) 1997 by Jung woo-jae */
// Mpegtoraw.cc // Mpegtoraw.cpp
// Server which get mpeg format and put raw format. // Server which get mpeg format and put raw format.

@ -31,8 +31,8 @@ link_directories(
tde_add_library( arts_mpeglib SHARED tde_add_library( arts_mpeglib SHARED
SOURCES SOURCES
decoderBaseObject.cc decoderBaseObject.cpp
splayPlayObject.cc splayPlayObject.cpp
decoderBaseObject_impl.cpp decoderBaseObject_impl.cpp
oggPlayObject_impl.cpp oggPlayObject_impl.cpp
mpgPlayObject_impl.cpp mpgPlayObject_impl.cpp
@ -49,7 +49,7 @@ tde_add_library( arts_mpeglib SHARED
add_custom_command( add_custom_command(
OUTPUT OUTPUT
decoderBaseObject.cc decoderBaseObject.h decoderBaseObject.cpp decoderBaseObject.h
COMMAND ${ARTS_MCOPIDL_EXECUTABLE} COMMAND ${ARTS_MCOPIDL_EXECUTABLE}
-I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/decoderBaseObject.idl -I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/decoderBaseObject.idl
DEPENDS decoderBaseObject.idl DEPENDS decoderBaseObject.idl
@ -60,7 +60,7 @@ add_custom_command(
tde_add_library( arts_splay SHARED tde_add_library( arts_splay SHARED
SOURCES SOURCES
splayPlayObject.cc splayPlayObject.cpp
splayPlayObject_impl.cpp splayPlayObject_impl.cpp
VERSION 0.0.0 VERSION 0.0.0
LINK mpeg-shared ${ARTS_LIBRARIES} LINK mpeg-shared ${ARTS_LIBRARIES}
@ -69,7 +69,7 @@ tde_add_library( arts_splay SHARED
add_custom_command( add_custom_command(
OUTPUT OUTPUT
splayPlayObject.cc splayPlayObject.h splayPlayObject.cpp splayPlayObject.h
COMMAND ${ARTS_MCOPIDL_EXECUTABLE} COMMAND ${ARTS_MCOPIDL_EXECUTABLE}
-I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/splayPlayObject.idl -I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/splayPlayObject.idl
DEPENDS splayPlayObject.idl DEPENDS splayPlayObject.idl

@ -19,9 +19,9 @@ EXTRA_DIST = doemacs \
BUILT_SOURCES = decoderBaseObject.h \ BUILT_SOURCES = decoderBaseObject.h \
decoderBaseObject.cc \ decoderBaseObject.cpp \
splayPlayObject.h \ splayPlayObject.h \
splayPlayObject.cc splayPlayObject.cpp
noinst_HEADERS = mp3PlayObject_impl.h \ noinst_HEADERS = mp3PlayObject_impl.h \
@ -45,10 +45,10 @@ INCLUDES = -I../mpeglib/lib -I$(srcdir)/../mpeglib/lib $(ARTS_INCLUDES) $(all
lib_LTLIBRARIES = libarts_mpeglib.la \ lib_LTLIBRARIES = libarts_mpeglib.la \
libarts_splay.la libarts_splay.la
decoderBaseObject.cc decoderBaseObject.h : $(srcdir)/decoderBaseObject.idl decoderBaseObject.cpp decoderBaseObject.h : $(srcdir)/decoderBaseObject.idl
$(MCOPIDL) -I$(kde_includes)/arts $(srcdir)/decoderBaseObject.idl $(MCOPIDL) -I$(kde_includes)/arts $(srcdir)/decoderBaseObject.idl
splayPlayObject.cc splayPlayObject.h : $(srcdir)/splayPlayObject.idl splayPlayObject.cpp splayPlayObject.h : $(srcdir)/splayPlayObject.idl
$(MCOPIDL) -I$(kde_includes)/arts $(srcdir)/splayPlayObject.idl $(MCOPIDL) -I$(kde_includes)/arts $(srcdir)/splayPlayObject.idl
mpeglibartsplugdir = $(includedir)/mpeglib_artsplug mpeglibartsplugdir = $(includedir)/mpeglib_artsplug
@ -62,8 +62,8 @@ mpeglibartsplug_HEADERS = decoderBaseObject_impl.h \
libarts_mpeglib_la_SOURCES = decoderBaseObject.cc \ libarts_mpeglib_la_SOURCES = decoderBaseObject.cpp \
splayPlayObject.cc \ splayPlayObject.cpp \
decoderBaseObject_impl.cpp \ decoderBaseObject_impl.cpp \
oggPlayObject_impl.cpp \ oggPlayObject_impl.cpp \
mpgPlayObject_impl.cpp \ mpgPlayObject_impl.cpp \
@ -82,7 +82,7 @@ libarts_mpeglib_la_LDFLAGS = $(all_libraries) \
libarts_mpeglib_la_LIBADD = $(top_builddir)/mpeglib/lib/libmpeg.la \ libarts_mpeglib_la_LIBADD = $(top_builddir)/mpeglib/lib/libmpeg.la \
$(LIB_ARTS) $(LIB_ARTS)
libarts_splay_la_SOURCES = splayPlayObject.cc \ libarts_splay_la_SOURCES = splayPlayObject.cpp \
splayPlayObject_impl.cpp splayPlayObject_impl.cpp
libarts_splay_la_LDFLAGS = $(all_libraries) \ libarts_splay_la_LDFLAGS = $(all_libraries) \

@ -4,7 +4,7 @@ A=`find . | grep -v moc > flist.txt`
A=`grep "\.cpp$" flist.txt >cpp.txt` A=`grep "\.cpp$" flist.txt >cpp.txt`
A=`grep "\.h$" flist.txt >h.txt` A=`grep "\.h$" flist.txt >h.txt`
A=`grep "\.c$" flist.txt >c.txt` A=`grep "\.c$" flist.txt >c.txt`
A=`grep "\.cc$" flist.txt >cc.txt` A=`grep "\.cpp$" flist.txt >cc.txt`
A=`grep "\.idl$" flist.txt >idl.txt` A=`grep "\.idl$" flist.txt >idl.txt`
A=`grep "\.defs$" flist.txt >defs.txt` A=`grep "\.defs$" flist.txt >defs.txt`
C=`cat c.txt` C=`cat c.txt`

@ -6,14 +6,14 @@ noinst_HEADERS = mpg123PlayObject_impl.h
lib_LTLIBRARIES = libmpg123arts.la lib_LTLIBRARIES = libmpg123arts.la
libmpg123arts_la_COMPILE_FIRST = mpg123arts.h libmpg123arts_la_COMPILE_FIRST = mpg123arts.h
libmpg123arts_la_SOURCES = mpg123arts.cc mpg123PlayObject_impl.cpp dxhead.c libmpg123arts_la_SOURCES = mpg123arts.cpp mpg123PlayObject_impl.cpp dxhead.c
libmpg123arts_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined libmpg123arts_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined
libmpg123arts_la_LIBADD = -lkmedia2_idl -lsoundserver_idl -lartsflow mpg123/libmpg123.la libmpg123arts_la_LIBADD = -lkmedia2_idl -lsoundserver_idl -lartsflow mpg123/libmpg123.la
libmpg123arts_la_METASOURCES = AUTO libmpg123arts_la_METASOURCES = AUTO
mpg123arts.mcoptype: mpg123arts.h mpg123arts.mcoptype: mpg123arts.h
mpg123arts.mcopclass: mpg123arts.h mpg123arts.mcopclass: mpg123arts.h
mpg123arts.cc mpg123arts.h: $(srcdir)/mpg123arts.idl $(MCOPIDL) mpg123arts.cpp mpg123arts.h: $(srcdir)/mpg123arts.idl $(MCOPIDL)
$(MCOPIDL) -t -I$(kde_includes)/arts $(srcdir)/mpg123arts.idl $(MCOPIDL) -t -I$(kde_includes)/arts $(srcdir)/mpg123arts.idl
mcoptypedir = $(libdir)/mcop mcoptypedir = $(libdir)/mcop

@ -21,7 +21,7 @@ noatun20update_LDADD = $(LIB_TQT)
messages: messages:
$(EXTRACTRC) `find . -name "*.rc" -o -name "*.ui"` > rc.cpp $(EXTRACTRC) `find . -name "*.rc" -o -name "*.ui"` > rc.cpp
$(XGETTEXT) rc.cpp `find . -name "*.cc" -o -name "*.cpp" -o -name "*.h"` -o $(podir)/noatun.pot $(XGETTEXT) rc.cpp `find . -o -name "*.cpp" -o -name "*.h"` -o $(podir)/noatun.pot
api: api:
$(mkinstalldirs) $(top_builddir)/noatun/apidocs/libnoatun $(mkinstalldirs) $(top_builddir)/noatun/apidocs/libnoatun

@ -27,7 +27,7 @@ link_directories(
tde_add_library( noatunarts SHARED AUTOMOC tde_add_library( noatunarts SHARED AUTOMOC
SOURCES SOURCES
noatunarts.cc fft.c Equalizer_impl.cpp noatunarts.cpp fft.c Equalizer_impl.cpp
FFTScopes.cpp StereoEffectStack_impl.cpp FFTScopes.cpp StereoEffectStack_impl.cpp
StereoVolumeControl_impl.cpp Session_impl.cpp StereoVolumeControl_impl.cpp Session_impl.cpp
LINK LINK
@ -38,7 +38,7 @@ tde_add_library( noatunarts SHARED AUTOMOC
add_custom_command( add_custom_command(
OUTPUT OUTPUT
noatunarts.cc noatunarts.h noatunarts.cpp noatunarts.h
COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t
-I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/noatunarts.idl -I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/noatunarts.idl
DEPENDS noatunarts.idl DEPENDS noatunarts.idl

@ -184,7 +184,7 @@ public:
while (left<end) while (left<end)
{ {
// see the _long_ comment in // see the _long_ comment in
// tdemultimedia/arts/modules/synth_std_equalizer_impl.cc // tdemultimedia/arts/modules/synth_std_equalizer_impl.cpp
if (::fabs(*left) + ::fabs(*right) < 0.00000001) if (::fabs(*left) + ::fabs(*right) < 0.00000001)
goto copy; // if you apologize, it's becomes ok goto copy; // if you apologize, it's becomes ok
*oleft=*left * mPreamp; *oleft=*left * mPreamp;

@ -2,7 +2,7 @@ INCLUDES= -I$(kde_includes)/arts $(all_includes)
KDE_OPTIONS = nofinal KDE_OPTIONS = nofinal
lib_LTLIBRARIES = libnoatunarts.la lib_LTLIBRARIES = libnoatunarts.la
libnoatunarts_la_SOURCES = noatunarts.cc fft.c Equalizer_impl.cpp \ libnoatunarts_la_SOURCES = noatunarts.cpp fft.c Equalizer_impl.cpp \
FFTScopes.cpp StereoEffectStack_impl.cpp \ FFTScopes.cpp StereoEffectStack_impl.cpp \
StereoVolumeControl_impl.cpp Session_impl.cpp StereoVolumeControl_impl.cpp Session_impl.cpp
libnoatunarts_la_COMPILE_FIRST = noatunarts.h libnoatunarts_la_COMPILE_FIRST = noatunarts.h
@ -13,7 +13,7 @@ libnoatunarts_la_METASOURCES = AUTO
noatunarts.mcoptype: noatunarts.h noatunarts.mcoptype: noatunarts.h
noatunarts.mcopclass: noatunarts.h noatunarts.mcopclass: noatunarts.h
noatunarts.cc noatunarts.h: noatunarts.idl noatunarts.cpp noatunarts.h: noatunarts.idl
$(MCOPIDL) -t -I$(kde_includes)/arts $(srcdir)/noatunarts.idl $(MCOPIDL) -t -I$(kde_includes)/arts $(srcdir)/noatunarts.idl
mcoptypedir = $(libdir)/mcop mcoptypedir = $(libdir)/mcop
@ -29,5 +29,5 @@ noatuninclude_HEADERS= noatunarts.h
noatunincludedir = $(includedir)/noatun noatunincludedir = $(includedir)/noatun
DISTCLEANFILES = noatunarts.cc noatunarts.h noatunarts.mcopclass noatunarts.mcoptype DISTCLEANFILES = noatunarts.cpp noatunarts.h noatunarts.mcopclass noatunarts.mcoptype

@ -164,7 +164,7 @@ class StereoEffectStack_impl : public StereoEffectStack_skel, public StdSynthMod
return items; return items;
} }
// as stolen from stereoeffectstack_impl.cc // as stolen from stereoeffectstack_impl.cpp
StereoEffectStack_impl() : nextID(1) StereoEffectStack_impl() : nextID(1)
{ {
reconnect(); reconnect();

@ -29,7 +29,7 @@ link_directories(
tde_add_kpart( libartseffects tde_add_kpart( libartseffects
SOURCES SOURCES
artseffects.cc extrastereo_impl.cc artseffects.cpp extrastereo_impl.cpp
LINK LINK
artsgui_idl-shared ${ARTS_LIBRARIES} artsgui_idl-shared ${ARTS_LIBRARIES}
mcop kmedia2_idl artsflow artsflow_idl soundserver_idl mcop kmedia2_idl artsflow artsflow_idl soundserver_idl
@ -38,7 +38,7 @@ tde_add_kpart( libartseffects
add_custom_command( add_custom_command(
OUTPUT OUTPUT
artseffects.cc artseffects.h artseffects.cpp artseffects.h
COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t
-I${CMAKE_BINARY_DIR}/arts/gui/common -I${CMAKE_BINARY_DIR}/arts/gui/common
-I${CMAKE_SOURCE_DIR}/arts/gui/common -I${CMAKE_SOURCE_DIR}/arts/gui/common

@ -2,18 +2,18 @@ INCLUDES= -I$(top_builddir)/arts/gui/common -I$(top_srcdir)/arts/gui/common -I$(
lib_LTLIBRARIES = libartseffects.la lib_LTLIBRARIES = libartseffects.la
#libartseffectsui.la #libartseffectsui.la
libartseffects_la_SOURCES = artseffects.cc extrastereo_impl.cc libartseffects_la_SOURCES = artseffects.cpp extrastereo_impl.cpp
libartseffects_la_COMPILE_FIRST = artseffects.cc libartseffects_la_COMPILE_FIRST = artseffects.cpp
libartseffects_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined libartseffects_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined
libartseffects_la_LIBADD = $(top_builddir)/arts/gui/common/libartsgui_idl.la -lkmedia2_idl -lsoundserver_idl -lartsflow libartseffects_la_LIBADD = $(top_builddir)/arts/gui/common/libartsgui_idl.la -lkmedia2_idl -lsoundserver_idl -lartsflow
artseffects.mcopclass: artseffects.h artseffects.mcopclass: artseffects.h
artseffects.mcoptype: artseffects.h artseffects.mcoptype: artseffects.h
artseffects.cc artseffects.h: $(srcdir)/artseffects.idl $(MCOPIDL) artseffects.cpp artseffects.h: $(srcdir)/artseffects.idl $(MCOPIDL)
$(MCOPIDL) -t -I$(top_builddir)/arts/gui/common -I$(top_srcdir)/arts/gui/common -I$(kde_includes)/arts $(srcdir)/artseffects.idl $(MCOPIDL) -t -I$(top_builddir)/arts/gui/common -I$(top_srcdir)/arts/gui/common -I$(kde_includes)/arts $(srcdir)/artseffects.idl
CLEANFILES = artsmidi.cc artsmidi.h artsmidi.mcoptype artsmidi.mcopclass CLEANFILES = artsmidi.cpp artsmidi.h artsmidi.mcoptype artsmidi.mcopclass
mcoptypedir = $(libdir)/mcop mcoptypedir = $(libdir)/mcop
mcoptype_DATA = artseffects.mcoptype artseffects.mcopclass mcoptype_DATA = artseffects.mcoptype artseffects.mcopclass

@ -27,7 +27,7 @@ link_directories(
tde_add_library( winskinvis SHARED AUTOMOC tde_add_library( winskinvis SHARED AUTOMOC
SOURCES SOURCES
winskinvis.cc winskinvis.cpp
winSkinFFT_impl.cpp realFFT.cpp winSkinFFT_impl.cpp realFFT.cpp
realFFTFilter.cpp visQueue.cpp realFFTFilter.cpp visQueue.cpp
LINK LINK
@ -37,7 +37,7 @@ tde_add_library( winskinvis SHARED AUTOMOC
add_custom_command( add_custom_command(
OUTPUT OUTPUT
winskinvis.cc winskinvis.h winskinvis.cpp winskinvis.h
COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t
-I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/winskinvis.idl -I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/winskinvis.idl
DEPENDS winskinvis.idl DEPENDS winskinvis.idl

@ -1,15 +1,15 @@
INCLUDES= -I$(kde_includes)/arts $(all_includes) INCLUDES= -I$(kde_includes)/arts $(all_includes)
KDE_OPTIONS = nofinal KDE_OPTIONS = nofinal
DISTCLEANFILES = winskinvis.h winskinvis.cc DISTCLEANFILES = winskinvis.h winskinvis.cpp
winskinvis.mcopclass: winskinvis.h winskinvis.mcopclass: winskinvis.h
winskinvis.mcoptype: winskinvis.h winskinvis.mcoptype: winskinvis.h
winskinvis.cc winskinvis.h : $(srcdir)/winskinvis.idl winskinvis.cpp winskinvis.h : $(srcdir)/winskinvis.idl
$(MCOPIDL) -t -I$(kde_includes)/arts $(srcdir)/winskinvis.idl $(MCOPIDL) -t -I$(kde_includes)/arts $(srcdir)/winskinvis.idl
lib_LTLIBRARIES = libwinskinvis.la lib_LTLIBRARIES = libwinskinvis.la
libwinskinvis_la_SOURCES= winskinvis.cc \ libwinskinvis_la_SOURCES= winskinvis.cpp \
winSkinFFT_impl.cpp realFFT.cpp \ winSkinFFT_impl.cpp realFFT.cpp \
realFFTFilter.cpp visQueue.cpp realFFTFilter.cpp visQueue.cpp
@ -18,7 +18,7 @@ libwinskinvis_la_LDFLAGS= $(all_libraries) -avoid-version \
-no-undefined -no-undefined
libwinskinvis_la_LIBADD = -lkmedia2_idl -lsoundserver_idl -lartsflow -lartsflow_idl -lmcop libwinskinvis_la_LIBADD = -lkmedia2_idl -lsoundserver_idl -lartsflow -lartsflow_idl -lmcop
libwinskinvis_la_COMPILE_FIRST = winskinvis.cc libwinskinvis_la_COMPILE_FIRST = winskinvis.cpp
libwinskinvis_la_METASOURCES = AUTO libwinskinvis_la_METASOURCES = AUTO

@ -27,7 +27,7 @@ link_directories(
tde_add_kpart( liboggarts AUTOMOC tde_add_kpart( liboggarts AUTOMOC
SOURCES SOURCES
oggarts.cc oggPlayObject_impl.cpp oggarts.cpp oggPlayObject_impl.cpp
VERSION 0.0.0 VERSION 0.0.0
LINK LINK
mcop kmedia2_idl soundserver_idl artsflow artsflow_idl ${ARTS_LIBRARIES} mcop kmedia2_idl soundserver_idl artsflow artsflow_idl ${ARTS_LIBRARIES}
@ -37,7 +37,7 @@ tde_add_kpart( liboggarts AUTOMOC
add_custom_command( add_custom_command(
OUTPUT OUTPUT
oggarts.cc oggarts.h oggarts.cpp oggarts.h
oggarts.mcoptype oggarts.mcopclass oggarts.mcoptype oggarts.mcopclass
COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t COMMAND ${ARTS_MCOPIDL_EXECUTABLE} -t
-I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/oggarts.idl -I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/oggarts.idl

@ -6,14 +6,14 @@ noinst_HEADERS = oggPlayObject_impl.h
lib_LTLIBRARIES = liboggarts.la lib_LTLIBRARIES = liboggarts.la
liboggarts_la_COMPILE_FIRST = oggarts.h liboggarts_la_COMPILE_FIRST = oggarts.h
liboggarts_la_SOURCES = oggarts.cc oggPlayObject_impl.cpp liboggarts_la_SOURCES = oggarts.cpp oggPlayObject_impl.cpp
liboggarts_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined liboggarts_la_LDFLAGS = $(all_libraries) -module -avoid-version -no-undefined
liboggarts_la_LIBADD = -lkmedia2_idl -lsoundserver_idl -lartsflow -lvorbisfile -lvorbis -logg liboggarts_la_LIBADD = -lkmedia2_idl -lsoundserver_idl -lartsflow -lvorbisfile -lvorbis -logg
liboggarts_la_METASOURCES = AUTO liboggarts_la_METASOURCES = AUTO
oggarts.mcopclass: oggarts.h oggarts.mcopclass: oggarts.h
oggarts.mcoptype: oggarts.h oggarts.mcoptype: oggarts.h
oggarts.cc oggarts.h: $(srcdir)/oggarts.idl $(MCOPIDL) oggarts.cpp oggarts.h: $(srcdir)/oggarts.idl $(MCOPIDL)
$(MCOPIDL) -t -I$(kde_includes)/arts $(srcdir)/oggarts.idl $(MCOPIDL) -t -I$(kde_includes)/arts $(srcdir)/oggarts.idl
mcoptypedir = $(libdir)/mcop mcoptypedir = $(libdir)/mcop

@ -64,7 +64,7 @@ Index
and do a 'make' . Simple , isn't it ? and do a 'make' . Simple , isn't it ?
By default it will use the external midi device, if you want to use another By default it will use the external midi device, if you want to use another
one (fm, awe, or anything else), edit the file main.cc and change the value one (fm, awe, or anything else), edit the file main.cpp and change the value
of DEFAULT_DEVICE to the one you want, or specify the -d option as in : of DEFAULT_DEVICE to the one you want, or specify the -d option as in :
consoletdemid -d 1 mymidifile.mid consoletdemid -d 1 mymidifile.mid
@ -73,7 +73,7 @@ Index
----------------- -----------------
No installing of consoleKMid is actually done, just copy the consoleKMid file No installing of consoleKMid is actually done, just copy the consoleKMid file
yourself to where you want (usually /usr/local/bin ). To use the fm device, yourself to where you want (usually /usr/local/bin ). To use the fm device,
you should specify in fmout.cc the path to where the fm patches are installed you should specify in fmout.cpp the path to where the fm patches are installed
( /etc by default) ( /etc by default)
5. Running 5. Running
@ -92,7 +92,7 @@ Index
consoletdemid -M /opt/kde/share/apps/tdemid/maps/YamahaPSS790.map mymidifile consoletdemid -M /opt/kde/share/apps/tdemid/maps/YamahaPSS790.map mymidifile
You can also edit main.cc in the player directory and change the value of You can also edit main.cpp in the player directory and change the value of
DEFAULT_MAP to whatever you want, so that you don't need to specify the DEFAULT_MAP to whatever you want, so that you don't need to specify the
-M option each time you run consoletdemid. -M option each time you run consoletdemid.

@ -1,6 +1,6 @@
/************************************************************************** /**************************************************************************
slman.cc - SongList Manager, which holds a set of collections (SongLists) slman.cpp - SongList Manager, which holds a set of collections (SongLists)
Copyright (C) 1997,98 Antonio Larrosa Jimenez Copyright (C) 1997,98 Antonio Larrosa Jimenez
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify

@ -1,6 +1,6 @@
/************************************************************************** /**************************************************************************
songlist.cc - class SongList, which holds a list of songs (collection) songlist.cpp - class SongList, which holds a list of songs (collection)
Copyright (C) 1997,98 Antonio Larrosa Jimenez Copyright (C) 1997,98 Antonio Larrosa Jimenez
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify

@ -33,7 +33,7 @@ link_directories(
tde_add_library( arts_xine SHARED AUTOMOC tde_add_library( arts_xine SHARED AUTOMOC
SOURCES SOURCES
xinePlayObject.cc xinePlayObject.cpp
xinePlayObject_impl.cpp xinePlayObject_impl.cpp
audio_fifo_out.c audio_fifo_out.c
VERSION 0.0.0 VERSION 0.0.0
@ -45,7 +45,7 @@ tde_add_library( arts_xine SHARED AUTOMOC
add_custom_command( add_custom_command(
OUTPUT OUTPUT
xinePlayObject.cc xinePlayObject.h xinePlayObject.cpp xinePlayObject.h
COMMAND ${ARTS_MCOPIDL_EXECUTABLE} COMMAND ${ARTS_MCOPIDL_EXECUTABLE}
-I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/xinePlayObject.idl -I${ARTS_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/xinePlayObject.idl
DEPENDS xinePlayObject.idl DEPENDS xinePlayObject.idl

@ -4,7 +4,7 @@ AM_CFLAGS = -U__STRICT_ANSI__
lib_LTLIBRARIES = libarts_xine.la lib_LTLIBRARIES = libarts_xine.la
libarts_xine_la_SOURCES = xinePlayObject.cc \ libarts_xine_la_SOURCES = xinePlayObject.cpp \
xinePlayObject_impl.cpp \ xinePlayObject_impl.cpp \
audio_fifo_out.c audio_fifo_out.c
libarts_xine_la_LDFLAGS = $(all_libraries) -module -no-undefined -pthread libarts_xine_la_LDFLAGS = $(all_libraries) -module -no-undefined -pthread
@ -14,7 +14,7 @@ libarts_xine_la_LIBADD = $(XINE_LIBS) $(LIBPTHREAD) $(LIB_X11) $(LIB_XEXT) $(LIB
libarts_xine_la_METASOURCES = AUTO libarts_xine_la_METASOURCES = AUTO
$(srcdir)/xinePlayObject_impl.cpp: xinePlayObject.h $(srcdir)/xinePlayObject_impl.cpp: xinePlayObject.h
xinePlayObject.cc xinePlayObject.h: $(srcdir)/xinePlayObject.idl xinePlayObject.cpp xinePlayObject.h: $(srcdir)/xinePlayObject.idl
$(MCOPIDL) -I$(kde_includes)/arts $(srcdir)/xinePlayObject.idl $(MCOPIDL) -I$(kde_includes)/arts $(srcdir)/xinePlayObject.idl
noinst_HEADERS = xinePlayObject_impl.h audio_fifo_out.h noinst_HEADERS = xinePlayObject_impl.h audio_fifo_out.h

Loading…
Cancel
Save