Added several man pages taken from the Debian packaging. Cleanup headers in ui files. Add png icons for mono theme. Signed-off-by: gregory guy <gregory-tde@laposte.net> cmake: - Use tde_add_check_executable instead of a combination of separate calls to tde_add_executable and add_test. - Simplify the detection of time.h and sys/time.h headers. - Refactor phrasebook files install, kmouth. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>pull/4/head
parent
e09ebe446c
commit
6b3181cf92
@ -0,0 +1,117 @@
|
|||||||
|
############################################
|
||||||
|
# #
|
||||||
|
# Improvements and feedbacks are welcome #
|
||||||
|
# #
|
||||||
|
# This file is released under GPL >= 3 #
|
||||||
|
# #
|
||||||
|
############################################
|
||||||
|
|
||||||
|
|
||||||
|
cmake_minimum_required( VERSION 2.8.12 )
|
||||||
|
|
||||||
|
|
||||||
|
#### general package setup
|
||||||
|
|
||||||
|
project( tdeaccessibility )
|
||||||
|
set( VERSION R14.1.0 )
|
||||||
|
|
||||||
|
|
||||||
|
#### include essential cmake modules
|
||||||
|
|
||||||
|
include( FindPkgConfig )
|
||||||
|
include( CheckFunctionExists )
|
||||||
|
include( CheckSymbolExists )
|
||||||
|
include( CheckIncludeFile )
|
||||||
|
include( CheckIncludeFiles )
|
||||||
|
include( CheckLibraryExists )
|
||||||
|
include( CheckCSourceCompiles )
|
||||||
|
include( CheckCXXSourceCompiles )
|
||||||
|
|
||||||
|
|
||||||
|
#### include our cmake modules
|
||||||
|
|
||||||
|
set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" )
|
||||||
|
include( TDEMacros )
|
||||||
|
enable_testing( )
|
||||||
|
|
||||||
|
|
||||||
|
##### setup install paths
|
||||||
|
|
||||||
|
include( TDESetupPaths )
|
||||||
|
tde_setup_paths( )
|
||||||
|
|
||||||
|
|
||||||
|
##### optional stuff
|
||||||
|
|
||||||
|
option( WITH_ALL_OPTIONS "Enable all optional support" OFF )
|
||||||
|
option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" ${WITH_ALL_OPTIONS} )
|
||||||
|
option( WITH_ARTS "Enable aRts support" ON )
|
||||||
|
option( WITH_AKODE "Enable akode support" ${WITH_ALL_OPTIONS} )
|
||||||
|
option( WITH_ALSA "Enable alsa support" ${WITH_ALL_OPTIONS} )
|
||||||
|
option( WITH_GSTREAMER "Enable Gstreamer support" OFF )
|
||||||
|
|
||||||
|
########################################################################
|
||||||
|
# #
|
||||||
|
# aRts support is needed to build: #
|
||||||
|
# - kttsd artsplayer #
|
||||||
|
# - ksayit #
|
||||||
|
# - ksayit freeverb plugin #
|
||||||
|
# #
|
||||||
|
########################################################################
|
||||||
|
|
||||||
|
|
||||||
|
##### user requested modules
|
||||||
|
|
||||||
|
option( BUILD_ALL "Build all" ON )
|
||||||
|
|
||||||
|
option( BUILD_KBSTATEAPPLET "Build kbstateapplet" ${BUILD_ALL} )
|
||||||
|
option( BUILD_KMAG "Build kmag" ${BUILD_ALL} )
|
||||||
|
option( BUILD_KMOUSETOOL "Build kmousetool" ${BUILD_ALL} )
|
||||||
|
option( BUILD_KMOUTH "Build kmouth" ${BUILD_ALL} )
|
||||||
|
option( BUILD_KSAYIT "Build ksayit" ${BUILD_ALL} )
|
||||||
|
option( BUILD_KSAYIT_FREEVERB "Build ksayit freeverb plugin" ${BUILD_ALL} )
|
||||||
|
option( BUILD_KTTSD "Build kttsd" ${BUILD_ALL} )
|
||||||
|
option( BUILD_KTTSD_COMMAND "Build kttsd command plugin" ${BUILD_ALL} )
|
||||||
|
option( BUILD_KTTSD_EPOS "Build kttsd epos plugin" ${BUILD_ALL} )
|
||||||
|
option( BUILD_KTTSD_FESTIVAL "Build kttsd festival plugin" ${BUILD_ALL} )
|
||||||
|
option( BUILD_KTTSD_FLITE "Build kttsd flite plugin" ${BUILD_ALL} )
|
||||||
|
option( BUILD_KTTSD_FREETTS "Build kttsd freetts plugin" ${BUILD_ALL} )
|
||||||
|
option( BUILD_KTTSD_HADIFIX "Build kttsd hadifix plugin" ${BUILD_ALL} )
|
||||||
|
option( BUILD_KTTSD_KATE "Build kttsd kate plugin" ${BUILD_ALL} )
|
||||||
|
option( BUILD_ICONTHEMES "Build icons" ${BUILD_ALL} )
|
||||||
|
option( BUILD_DOC "Build documentation" ${BUILD_ALL} )
|
||||||
|
|
||||||
|
|
||||||
|
##### configure checks
|
||||||
|
|
||||||
|
include( ConfigureChecks.cmake )
|
||||||
|
|
||||||
|
|
||||||
|
###### global compiler settings
|
||||||
|
|
||||||
|
add_definitions( -DHAVE_CONFIG_H )
|
||||||
|
|
||||||
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TQT_CXX_FLAGS}" )
|
||||||
|
set( CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined" )
|
||||||
|
set( CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined" )
|
||||||
|
|
||||||
|
|
||||||
|
##### directories
|
||||||
|
|
||||||
|
tde_conditional_add_subdirectory( BUILD_KBSTATEAPPLET kbstateapplet )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_KMAG kmag )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_KMOUSETOOL kmousetool )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_KMOUTH kmouth )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_KSAYIT ksayit )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_KTTSD kttsd )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_ICONTHEMES IconThemes )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_DOC doc )
|
||||||
|
|
||||||
|
if( BUILD_KSAYIT OR BUILD_KTTSD )
|
||||||
|
add_subdirectory( kspeechsink )
|
||||||
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
##### write configure files
|
||||||
|
|
||||||
|
configure_file( config.h.cmake config.h @ONLY )
|
@ -0,0 +1,115 @@
|
|||||||
|
###########################################
|
||||||
|
# #
|
||||||
|
# Improvements and feedback are welcome #
|
||||||
|
# #
|
||||||
|
# This file is released under GPL >= 3 #
|
||||||
|
# #
|
||||||
|
###########################################
|
||||||
|
|
||||||
|
# required stuff
|
||||||
|
find_package( TQt )
|
||||||
|
find_package( TDE )
|
||||||
|
|
||||||
|
tde_setup_architecture_flags( )
|
||||||
|
|
||||||
|
include(TestBigEndian)
|
||||||
|
test_big_endian(WORDS_BIGENDIAN)
|
||||||
|
|
||||||
|
tde_setup_largefiles( )
|
||||||
|
|
||||||
|
|
||||||
|
##### check for gcc visibility support
|
||||||
|
|
||||||
|
if( WITH_GCC_VISIBILITY )
|
||||||
|
tde_setup_gcc_visibility( )
|
||||||
|
endif( WITH_GCC_VISIBILITY )
|
||||||
|
|
||||||
|
|
||||||
|
##### check for X11
|
||||||
|
|
||||||
|
find_package( X11 )
|
||||||
|
|
||||||
|
|
||||||
|
##### check for aRts
|
||||||
|
|
||||||
|
if( WITH_ARTS )
|
||||||
|
pkg_search_module( ARTS arts )
|
||||||
|
find_library( ARTSKDE artskde )
|
||||||
|
|
||||||
|
if( ARTS_FOUND AND ARTSKDE )
|
||||||
|
set( ARTS_LIBRARIES artskde-shared artsflow_idl soundserver_idl )
|
||||||
|
set( ARTS_PLAYER_LIBRARIES "${ARTS_LIBRARIES}" kmedia2_idl )
|
||||||
|
else()
|
||||||
|
tde_message_fatal( "aRts support has been requested but was not found on your system." )
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if( BUILD_KSAYIT )
|
||||||
|
find_path( ARTS_INCLUDE_DIRS "arts/artsflow.h" )
|
||||||
|
|
||||||
|
if( ARTS_INCLUDE_DIRS )
|
||||||
|
set( KAYSAYIT_ARTS_INCLUDE "${ARTS_INCLUDE_DIRS}" )
|
||||||
|
set( KAYSAYIT_ARTS_LIBRARIES "${ARTS_LIBRARIES}" artsflow )
|
||||||
|
else()
|
||||||
|
tde_message_fatal( "aRts headers are required for ksayit build but were not found on your system." )
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if( BUILD_KSAYIT_FREEVERB )
|
||||||
|
find_path( ARTS_MODULES_DIR "arts/artsmodules.h" )
|
||||||
|
|
||||||
|
if( ARTS_MODULES_DIR )
|
||||||
|
set( ARTS_FREEVERB_PLUGIN_LIBRARIES "${ARTS_LIBRARIES}" artsflow artsmoduleseffects artsmodules )
|
||||||
|
else()
|
||||||
|
tde_message_fatal( freeverb support has been requested, but the <arts/artsmodules.h> header from tdemultimedia was not found )
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
endif( WITH_ARTS )
|
||||||
|
|
||||||
|
|
||||||
|
##### check for akode
|
||||||
|
|
||||||
|
if( WITH_AKODE )
|
||||||
|
pkg_search_module( AKODE akode )
|
||||||
|
|
||||||
|
if( NOT AKODE_FOUND )
|
||||||
|
tde_message_fatal( "akode support has been requested but was not found on your system" )
|
||||||
|
endif()
|
||||||
|
endif( WITH_AKODE )
|
||||||
|
|
||||||
|
|
||||||
|
##### check for alsa
|
||||||
|
|
||||||
|
if( WITH_ALSA )
|
||||||
|
pkg_search_module( ALSA alsa )
|
||||||
|
|
||||||
|
if( ALSA_FOUND )
|
||||||
|
check_include_file( "sys/time.h" HAVE_SYS_TIME_H )
|
||||||
|
check_include_files( "sys/time.h;time.h" TIME_WITH_SYS_TIME )
|
||||||
|
else()
|
||||||
|
tde_message_fatal( "alsa support has been requested but was not found on your system." )
|
||||||
|
endif()
|
||||||
|
endif( WITH_ALSA )
|
||||||
|
|
||||||
|
|
||||||
|
##### check for gstreamer
|
||||||
|
|
||||||
|
if( WITH_GSTREAMER )
|
||||||
|
pkg_search_module( GSTREAMER gstreamer-1.0>=1.0.0 gstreamer-0.10>=0.10.0 )
|
||||||
|
pkg_search_module( GLIB2 glib-2.0 )
|
||||||
|
|
||||||
|
if( NOT GSTREAMER_FOUND )
|
||||||
|
tde_message_fatal( "Gstreamer support has been requested but gstreamer was not found on your system." )
|
||||||
|
endif()
|
||||||
|
|
||||||
|
message( STATUS "gstreamer version: ${GSTREAMER_VERSION}" )
|
||||||
|
endif( WITH_GSTREAMER )
|
||||||
|
|
||||||
|
|
||||||
|
##### look for <kspeech.h> header
|
||||||
|
|
||||||
|
find_path( KTTS_KSPEECH_DIR NAMES kspeech.h
|
||||||
|
HINTS
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}/tde
|
||||||
|
)
|
@ -0,0 +1,26 @@
|
|||||||
|
##### index theme
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES mono/index.theme
|
||||||
|
DESTINATION ${ICON_INSTALL_DIR}/mono
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### svgz icons
|
||||||
|
|
||||||
|
set( _icon_type actions apps categories devices mimetypes places )
|
||||||
|
|
||||||
|
foreach( icon_type ${_icon_type} )
|
||||||
|
file( GLOB _files ${CMAKE_CURRENT_SOURCE_DIR}/mono/scalable/${icon_type}/*.svgz )
|
||||||
|
install( FILES ${_files} DESTINATION ${ICON_INSTALL_DIR}/mono/scalable/${icon_type} )
|
||||||
|
endforeach( icon_type )
|
||||||
|
|
||||||
|
|
||||||
|
##### png icons
|
||||||
|
|
||||||
|
set( _icon_size 16x16 22x22 32x32 48x48 64x64 96x96 128x128 192x192 256x256 )
|
||||||
|
|
||||||
|
foreach( icon_size ${_icon_size} )
|
||||||
|
file( GLOB _files ${CMAKE_CURRENT_SOURCE_DIR}/mono/png/${icon_size}/actions/*.png )
|
||||||
|
install( FILES ${_files} DESTINATION ${ICON_INSTALL_DIR}/mono/png/${icon_size}/actions )
|
||||||
|
endforeach( icon_size )
|
@ -0,0 +1,14 @@
|
|||||||
|
#define VERSION "@VERSION@"
|
||||||
|
|
||||||
|
// Defined if you have fvisibility and fvisibility-inlines-hidden support.
|
||||||
|
#cmakedefine __KDE_HAVE_GCC_VISIBILITY 1
|
||||||
|
|
||||||
|
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||||
|
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||||
|
#cmakedefine WORDS_BIGENDIAN @WORDS_BIGENDIAN@
|
||||||
|
|
||||||
|
/* Defined if you have both <sys/time.h> and <time.h> headers */
|
||||||
|
#cmakedefine TIME_WITH_SYS_TIME 1
|
||||||
|
|
||||||
|
/* Defined if you have either <sys/time.h> or <time.h> headers */
|
||||||
|
#cmakedefine HAVE_SYS_TIME_H 1
|
@ -0,0 +1,7 @@
|
|||||||
|
add_subdirectory( man )
|
||||||
|
|
||||||
|
tde_conditional_add_subdirectory( BUILD_KMAG kmag )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_KMOUSETOOL kmousetool )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_KMOUTH kmouth )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_KSAYIT ksayit )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_KTTSD kttsd )
|
@ -0,0 +1,2 @@
|
|||||||
|
|
||||||
|
tde_create_handbook( DESTINATION kmag )
|
@ -0,0 +1,2 @@
|
|||||||
|
|
||||||
|
tde_create_handbook( DESTINATION kmousetool )
|
@ -0,0 +1,8 @@
|
|||||||
|
FILE( GLOB EPS_FILES *.eps)
|
||||||
|
|
||||||
|
INSTALL(
|
||||||
|
FILES ${EPS_FILES}
|
||||||
|
DESTINATION ${HTML_INSTALL_DIR}/en/kmouth
|
||||||
|
)
|
||||||
|
|
||||||
|
tde_create_handbook( DESTINATION kmouth )
|
@ -1,9 +1,2 @@
|
|||||||
#################################################
|
|
||||||
#
|
|
||||||
# Improvements and feedback are welcome
|
|
||||||
#
|
|
||||||
# This file is released under GPL >= 2
|
|
||||||
#
|
|
||||||
#################################################
|
|
||||||
|
|
||||||
tde_create_handbook( DESTINATION ksayit )
|
tde_create_handbook( DESTINATION ksayit )
|
||||||
|
@ -0,0 +1,2 @@
|
|||||||
|
|
||||||
|
tde_create_handbook( DESTINATION kttsd )
|
@ -0,0 +1,5 @@
|
|||||||
|
tde_conditional_add_subdirectory( BUILD_KMAG kmag )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_KMOUSETOOL kmousetool )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_KMOUTH kmouth )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_KTTSD kttsd )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_KSAYIT ksayit )
|
@ -0,0 +1,5 @@
|
|||||||
|
INSTALL(
|
||||||
|
FILES kmag.1
|
||||||
|
DESTINATION ${MAN_INSTALL_DIR}/man1
|
||||||
|
COMPONENT doc
|
||||||
|
)
|
@ -0,0 +1,141 @@
|
|||||||
|
.TH kmag 1
|
||||||
|
|
||||||
|
.SH NAME
|
||||||
|
kmag \- A screen magnifier for TDE.
|
||||||
|
|
||||||
|
.SH SYNOPSIS
|
||||||
|
.B kmag [file]
|
||||||
|
.I [ Generic Options] [Qt-options] [TDE-options]
|
||||||
|
|
||||||
|
.SH DESCRIPTION
|
||||||
|
Kmag is a TDE screen magnifier for the visually impaired.
|
||||||
|
You can use it to magnify a part of the screen just as you would use a
|
||||||
|
lens to magnify a newspaper fine-print or a photograph.
|
||||||
|
This application is useful for a variety of people: from researchers to
|
||||||
|
artists to web-designers to people with low vision.
|
||||||
|
|
||||||
|
.SH GENERIC OPTIONS
|
||||||
|
.TP
|
||||||
|
.B \-\-help
|
||||||
|
Show help about options.
|
||||||
|
.TP
|
||||||
|
.B \-\-help-qt
|
||||||
|
Show Qt specific options.
|
||||||
|
.TP
|
||||||
|
.B \-\-help-tde
|
||||||
|
Show TDE specific options.
|
||||||
|
.TP
|
||||||
|
.B \-\-help-all
|
||||||
|
Show all options.
|
||||||
|
.TP
|
||||||
|
.B \-\-author
|
||||||
|
Show author information.
|
||||||
|
.TP
|
||||||
|
.B \-v, \-\-version
|
||||||
|
Show version information.
|
||||||
|
|
||||||
|
.SH QT OPTIONS
|
||||||
|
.TP
|
||||||
|
.B \-\-display \fI<displayname>\fB
|
||||||
|
Use the X-server display `displayname'.
|
||||||
|
.TP
|
||||||
|
.B \-\-session \fI<sessionId>\fB
|
||||||
|
Restore the application for the given `sessionId'.
|
||||||
|
.TP
|
||||||
|
.B \-\-cmap
|
||||||
|
Causes the application to install a private color map on an 8\-bit
|
||||||
|
display.
|
||||||
|
.TP
|
||||||
|
.B \-\-ncols \fI<count>\fB
|
||||||
|
Limits the number of colors allocated in the color cube on an 8\-bit
|
||||||
|
display, if the application is using the QApplication::ManyColor color
|
||||||
|
specification.
|
||||||
|
.TP
|
||||||
|
.B \-\-nograb
|
||||||
|
Tells Qt to never grab the mouse or the keyboard.
|
||||||
|
.TP
|
||||||
|
.B \-\-dograb
|
||||||
|
Running under a debugger can cause an implicit \-nograb, use \-dograb
|
||||||
|
to override.
|
||||||
|
.TP
|
||||||
|
.B \-\-sync
|
||||||
|
Switches to synchronous mode for debugging.
|
||||||
|
.TP
|
||||||
|
.B \-\-fn, \-\-font \fI<fontname>\fB
|
||||||
|
Defines the application font.
|
||||||
|
.TP
|
||||||
|
.B \-\-bg, \-\-background \fI<color>\fB
|
||||||
|
Sets the default background color and an application palette (light
|
||||||
|
and dark shades are calculated).
|
||||||
|
.TP
|
||||||
|
.B \-\-fg, \-\-foreground \fI<color>\fB
|
||||||
|
Sets the default foreground color.
|
||||||
|
.TP
|
||||||
|
.B \-\-btn, \-\-button \fI<color>\fB
|
||||||
|
Sets the default button color.
|
||||||
|
.TP
|
||||||
|
.B \-\-name \fI<name>\fB
|
||||||
|
Sets the application name.
|
||||||
|
.TP
|
||||||
|
.B \-\-title \fI<title>\fB
|
||||||
|
Sets the application title (caption).
|
||||||
|
.TP
|
||||||
|
.B \-\-visual TrueColor
|
||||||
|
Forces the application to use a TrueColor visual on an 8-bit display.
|
||||||
|
.TP
|
||||||
|
.B \-\-inputstyle \fI<inputstyle>\fB
|
||||||
|
Sets XIM (X Input Method) input style. Possible values are
|
||||||
|
\fIonthespot\fP, \fIoverthespot\fP, \fIoffthespot\fP and \fIroot\fP.
|
||||||
|
.TP
|
||||||
|
.B \-\-im \fI<XIM server>\fB
|
||||||
|
Set XIM server.
|
||||||
|
.TP
|
||||||
|
.B \-\-noxim
|
||||||
|
Disable XIM.
|
||||||
|
|
||||||
|
.SH TDE OPTIONS
|
||||||
|
.TP
|
||||||
|
.B \-\-caption \fI<caption>\fB
|
||||||
|
Use `caption' as name in the titlebar.
|
||||||
|
.TP
|
||||||
|
.B \-\-icon \fI<icon>\fB
|
||||||
|
Use `icon' as the application icon.
|
||||||
|
.TP
|
||||||
|
.B \-\-miniicon \fI<icon>\fB
|
||||||
|
Use `icon' as the icon in the titlebar.
|
||||||
|
.TP
|
||||||
|
.B \-\-dcopserver \fI<server>\fB
|
||||||
|
Use the DCOP Server specified by `server'.
|
||||||
|
.TP
|
||||||
|
.B \-\-nocrashhandler
|
||||||
|
Disable crash handler, to get core dumps.
|
||||||
|
.TP
|
||||||
|
.B \-\-waitforwm
|
||||||
|
Waits for a WM_NET compatible windowmanager.
|
||||||
|
.TP
|
||||||
|
.B \-\-style \fI<style>\fB
|
||||||
|
Sets the application GUI style.
|
||||||
|
.TP
|
||||||
|
.B \-\-geometry \fI<geometry>\fB
|
||||||
|
Sets the client geometry of the main widget.
|
||||||
|
|
||||||
|
.SH SEE ALSO
|
||||||
|
More detailed user documentation is available from
|
||||||
|
.BR help:/kmag
|
||||||
|
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
|
||||||
|
help:/kmag').
|
||||||
|
|
||||||
|
.PP
|
||||||
|
There is also further information available at the
|
||||||
|
.URL https://mirror.git.trinitydesktop.org/gitea/TDE/tdeaccessibility "
|
||||||
|
tdeaccessibility project home page."
|
||||||
|
|
||||||
|
kmag(1)
|
||||||
|
|
||||||
|
.SH AUTHORS
|
||||||
|
.nf
|
||||||
|
OlafSchmidt <ojschmidt@kde.org>
|
||||||
|
.br
|
||||||
|
SarangLakare <sarang@users.sf.net>
|
||||||
|
.br
|
||||||
|
MichaelForster <forster@fmi.uni-passau.de>
|
@ -0,0 +1,5 @@
|
|||||||
|
INSTALL(
|
||||||
|
FILES kmousetool.1
|
||||||
|
DESTINATION ${MAN_INSTALL_DIR}/man1
|
||||||
|
COMPONENT doc
|
||||||
|
)
|
@ -0,0 +1,146 @@
|
|||||||
|
.TH kmousetool 1
|
||||||
|
|
||||||
|
.SH NAME
|
||||||
|
kmousetool \- A TDE tool to help click the mouse.
|
||||||
|
|
||||||
|
.SH SYNOPSIS
|
||||||
|
.B kmousetool
|
||||||
|
.I [ Generic Options] [Qt-options] [TDE-options]
|
||||||
|
|
||||||
|
.SH DESCRIPTION
|
||||||
|
KMouseTool clicks the mouse whenever the mouse cursor pauses briefly.
|
||||||
|
It was designed to help those with repetitive strain injuries, for
|
||||||
|
whom pressing buttons hurts. It includes features and options that
|
||||||
|
provide artificial intelligence on common mouse gestures to perform
|
||||||
|
actions.
|
||||||
|
|
||||||
|
.PP
|
||||||
|
KMouseTool can also be configured to wait for a specified time for a
|
||||||
|
drag to begin, before unclicking the mouse. This way, you can use it for
|
||||||
|
drag and drop operations as well.
|
||||||
|
|
||||||
|
.SH GENERIC OPTIONS
|
||||||
|
.TP
|
||||||
|
.B \-\-help
|
||||||
|
Show help about options.
|
||||||
|
.TP
|
||||||
|
.B \-\-help-qt
|
||||||
|
Show Qt specific options.
|
||||||
|
.TP
|
||||||
|
.B \-\-help-tde
|
||||||
|
Show TDE specific options.
|
||||||
|
.TP
|
||||||
|
.B \-\-help-all
|
||||||
|
Show all options.
|
||||||
|
.TP
|
||||||
|
.B \-\-author
|
||||||
|
Show author information.
|
||||||
|
.TP
|
||||||
|
.B \-v, \-\-version
|
||||||
|
Show version information.
|
||||||
|
|
||||||
|
.SH QT OPTIONS
|
||||||
|
.TP
|
||||||
|
.B \-\-display \fI<displayname>\fB
|
||||||
|
Use the X-server display `displayname'.
|
||||||
|
.TP
|
||||||
|
.B \-\-session \fI<sessionId>\fB
|
||||||
|
Restore the application for the given `sessionId'.
|
||||||
|
.TP
|
||||||
|
.B \-\-cmap
|
||||||
|
Causes the application to install a private color map on an 8\-bit
|
||||||
|
display.
|
||||||
|
.TP
|
||||||
|
.B \-\-ncols \fI<count>\fB
|
||||||
|
Limits the number of colors allocated in the color cube on an 8\-bit
|
||||||
|
display, if the application is using the QApplication::ManyColor color
|
||||||
|
specification.
|
||||||
|
.TP
|
||||||
|
.B \-\-nograb
|
||||||
|
Tells Qt to never grab the mouse or the keyboard.
|
||||||
|
.TP
|
||||||
|
.B \-\-dograb
|
||||||
|
Running under a debugger can cause an implicit \-nograb, use \-dograb
|
||||||
|
to override.
|
||||||
|
.TP
|
||||||
|
.B \-\-sync
|
||||||
|
Switches to synchronous mode for debugging.
|
||||||
|
.TP
|
||||||
|
.B \-\-fn, \-\-font \fI<fontname>\fB
|
||||||
|
Defines the application font.
|
||||||
|
.TP
|
||||||
|
.B \-\-bg, \-\-background \fI<color>\fB
|
||||||
|
Sets the default background color and an application palette (light
|
||||||
|
and dark shades are calculated).
|
||||||
|
.TP
|
||||||
|
.B \-\-fg, \-\-foreground \fI<color>\fB
|
||||||
|
Sets the default foreground color.
|
||||||
|
.TP
|
||||||
|
.B \-\-btn, \-\-button \fI<color>\fB
|
||||||
|
Sets the default button color.
|
||||||
|
.TP
|
||||||
|
.B \-\-name \fI<name>\fB
|
||||||
|
Sets the application name.
|
||||||
|
.TP
|
||||||
|
.B \-\-title \fI<title>\fB
|
||||||
|
Sets the application title (caption).
|
||||||
|
.TP
|
||||||
|
.B \-\-visual TrueColor
|
||||||
|
Forces the application to use a TrueColor visual on an 8-bit display.
|
||||||
|
.TP
|
||||||
|
.B \-\-inputstyle \fI<inputstyle>\fB
|
||||||
|
Sets XIM (X Input Method) input style. Possible values are
|
||||||
|
\fIonthespot\fP, \fIoverthespot\fP, \fIoffthespot\fP and \fIroot\fP.
|
||||||
|
.TP
|
||||||
|
.B \-\-im \fI<XIM server>\fB
|
||||||
|
Set XIM server.
|
||||||
|
.TP
|
||||||
|
.B \-\-noxim
|
||||||
|
Disable XIM.
|
||||||
|
|
||||||
|
.SH TDE OPTIONS
|
||||||
|
.TP
|
||||||
|
.B \-\-caption \fI<caption>\fB
|
||||||
|
Use `caption' as name in the titlebar.
|
||||||
|
.TP
|
||||||
|
.B \-\-icon \fI<icon>\fB
|
||||||
|
Use `icon' as the application icon.
|
||||||
|
.TP
|
||||||
|
.B \-\-miniicon \fI<icon>\fB
|
||||||
|
Use `icon' as the icon in the titlebar.
|
||||||
|
.TP
|
||||||
|
.B \-\-dcopserver \fI<server>\fB
|
||||||
|
Use the DCOP Server specified by `server'.
|
||||||
|
.TP
|
||||||
|
.B \-\-nocrashhandler
|
||||||
|
Disable crash handler, to get core dumps.
|
||||||
|
.TP
|
||||||
|
.B \-\-waitforwm
|
||||||
|
Waits for a WM_NET compatible windowmanager.
|
||||||
|
.TP
|
||||||
|
.B \-\-style \fI<style>\fB
|
||||||
|
Sets the application GUI style.
|
||||||
|
.TP
|
||||||
|
.B \-\-geometry \fI<geometry>\fB
|
||||||
|
Sets the client geometry of the main widget.
|
||||||
|
|
||||||
|
.SH SEE ALSO
|
||||||
|
More detailed user documentation is available from
|
||||||
|
.BR help:/kmousetool
|
||||||
|
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
|
||||||
|
help:/kmousetool').
|
||||||
|
|
||||||
|
.PP
|
||||||
|
There is also further information available at
|
||||||
|
.URL https://mirror.git.trinitydesktop.org/gitea/TDE/tdeaccessibility "
|
||||||
|
tdeaccessibility project home page."
|
||||||
|
|
||||||
|
kmouthtool(1)
|
||||||
|
|
||||||
|
.SH AUTHORS
|
||||||
|
.nf
|
||||||
|
GunnarSchmi <gunnar@schmi>
|
||||||
|
.br
|
||||||
|
OlafSchmidt <ojschmidt@kde.org>
|
||||||
|
.br
|
||||||
|
JeffRoush <jeff@mousetool.com>
|
@ -0,0 +1,5 @@
|
|||||||
|
INSTALL(
|
||||||
|
FILES kmouth.1
|
||||||
|
DESTINATION ${MAN_INSTALL_DIR}/man1
|
||||||
|
COMPONENT doc
|
||||||
|
)
|
@ -0,0 +1,142 @@
|
|||||||
|
.TH kmouth 1
|
||||||
|
|
||||||
|
.SH NAME
|
||||||
|
kmouth \- A type-and-say TDE front end for speech synthesizers.
|
||||||
|
|
||||||
|
.SH SYNOPSIS
|
||||||
|
.B kmouth
|
||||||
|
.I [ Generic Options] [Qt-options] [TDE-options]
|
||||||
|
|
||||||
|
.SH DESCRIPTION
|
||||||
|
Kmouth is an application that enables persons that cannot speak to
|
||||||
|
let their computers speak, e.g. mute people or people who have lost
|
||||||
|
their voice. It includes a history of spoken sentences from
|
||||||
|
which the user can select sentences to be re-spoken. It has a text input
|
||||||
|
field and speaks the sentences that you enter. It also has support for
|
||||||
|
user defined phrasebooks.
|
||||||
|
|
||||||
|
.PP
|
||||||
|
Note that does not include speech synthesizer. Instead it
|
||||||
|
requires a speech synthesizer installed in the system.
|
||||||
|
|
||||||
|
.SH GENERIC OPTIONS
|
||||||
|
.TP
|
||||||
|
.B \-\-help
|
||||||
|
Show help about options.
|
||||||
|
.TP
|
||||||
|
.B \-\-help-qt
|
||||||
|
Show Qt specific options.
|
||||||
|
.TP
|
||||||
|
.B \-\-help-tde
|
||||||
|
Show TDE specific options.
|
||||||
|
.TP
|
||||||
|
.B \-\-help-all
|
||||||
|
Show all options.
|
||||||
|
.TP
|
||||||
|
.B \-\-author
|
||||||
|
Show author information.
|
||||||
|
.TP
|
||||||
|
.B \-v, \-\-version
|
||||||
|
Show version information.
|
||||||
|
|
||||||
|
.SH QT OPTIONS
|
||||||
|
.TP
|
||||||
|
.B \-\-display \fI<displayname>\fB
|
||||||
|
Use the X-server display `displayname'.
|
||||||
|
.TP
|
||||||
|
.B \-\-session \fI<sessionId>\fB
|
||||||
|
Restore the application for the given `sessionId'.
|
||||||
|
.TP
|
||||||
|
.B \-\-cmap
|
||||||
|
Causes the application to install a private color map on an 8\-bit
|
||||||
|
display.
|
||||||
|
.TP
|
||||||
|
.B \-\-ncols \fI<count>\fB
|
||||||
|
Limits the number of colors allocated in the color cube on an 8\-bit
|
||||||
|
display, if the application is using the QApplication::ManyColor color
|
||||||
|
specification.
|
||||||
|
.TP
|
||||||
|
.B \-\-nograb
|
||||||
|
Tells Qt to never grab the mouse or the keyboard.
|
||||||
|
.TP
|
||||||
|
.B \-\-dograb
|
||||||
|
Running under a debugger can cause an implicit \-nograb, use \-dograb
|
||||||
|
to override.
|
||||||
|
.TP
|
||||||
|
.B \-\-sync
|
||||||
|
Switches to synchronous mode for debugging.
|
||||||
|
.TP
|
||||||
|
.B \-\-fn, \-\-font \fI<fontname>\fB
|
||||||
|
Defines the application font.
|
||||||
|
.TP
|
||||||
|
.B \-\-bg, \-\-background \fI<color>\fB
|
||||||
|
Sets the default background color and an application palette (light
|
||||||
|
and dark shades are calculated).
|
||||||
|
.TP
|
||||||
|
.B \-\-fg, \-\-foreground \fI<color>\fB
|
||||||
|
Sets the default foreground color.
|
||||||
|
.TP
|
||||||
|
.B \-\-btn, \-\-button \fI<color>\fB
|
||||||
|
Sets the default button color.
|
||||||
|
.TP
|
||||||
|
.B \-\-name \fI<name>\fB
|
||||||
|
Sets the application name.
|
||||||
|
.TP
|
||||||
|
.B \-\-title \fI<title>\fB
|
||||||
|
Sets the application title (caption).
|
||||||
|
.TP
|
||||||
|
.B \-\-visual TrueColor
|
||||||
|
Forces the application to use a TrueColor visual on an 8-bit display.
|
||||||
|
.TP
|
||||||
|
.B \-\-inputstyle \fI<inputstyle>\fB
|
||||||
|
Sets XIM (X Input Method) input style. Possible values are
|
||||||
|
\fIonthespot\fP, \fIoverthespot\fP, \fIoffthespot\fP and \fIroot\fP.
|
||||||
|
.TP
|
||||||
|
.B \-\-im \fI<XIM server>\fB
|
||||||
|
Set XIM server.
|
||||||
|
.TP
|
||||||
|
.B \-\-noxim
|
||||||
|
Disable XIM.
|
||||||
|
|
||||||
|
.SH TDE OPTIONS
|
||||||
|
.TP
|
||||||
|
.B \-\-caption \fI<caption>\fB
|
||||||
|
Use `caption' as name in the titlebar.
|
||||||
|
.TP
|
||||||
|
.B \-\-icon \fI<icon>\fB
|
||||||
|
Use `icon' as the application icon.
|
||||||
|
.TP
|
||||||
|
.B \-\-miniicon \fI<icon>\fB
|
||||||
|
Use `icon' as the icon in the titlebar.
|
||||||
|
.TP
|
||||||
|
.B \-\-dcopserver \fI<server>\fB
|
||||||
|
Use the DCOP Server specified by `server'.
|
||||||
|
.TP
|
||||||
|
.B \-\-nocrashhandler
|
||||||
|
Disable crash handler, to get core dumps.
|
||||||
|
.TP
|
||||||
|
.B \-\-waitforwm
|
||||||
|
Waits for a WM_NET compatible windowmanager.
|
||||||
|
.TP
|
||||||
|
.B \-\-style \fI<style>\fB
|
||||||
|
Sets the application GUI style.
|
||||||
|
.TP
|
||||||
|
.B \-\-geometry \fI<geometry>\fB
|
||||||
|
Sets the client geometry of the main widget.
|
||||||
|
|
||||||
|
.SH SEE ALSO
|
||||||
|
More detailed user documentation is available from
|
||||||
|
.BR help:/kmouth
|
||||||
|
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
|
||||||
|
help:/kmouth').
|
||||||
|
|
||||||
|
.PP
|
||||||
|
There is also further information available at the
|
||||||
|
.URL https://mirror.git.trinitydesktop.org/gitea/TDE/tdeaccessibility "
|
||||||
|
tdeaccessibility project web site".
|
||||||
|
|
||||||
|
kmouth(1)
|
||||||
|
|
||||||
|
.SH AUTHORS
|
||||||
|
.br
|
||||||
|
GunnarSchmi <kmouth@schmi.de>
|
@ -0,0 +1,5 @@
|
|||||||
|
INSTALL(
|
||||||
|
FILES ksayit.1
|
||||||
|
DESTINATION ${MAN_INSTALL_DIR}/man1
|
||||||
|
COMPONENT doc
|
||||||
|
)
|
@ -0,0 +1,145 @@
|
|||||||
|
.TH ksayit 1
|
||||||
|
|
||||||
|
.SH NAME
|
||||||
|
ksayit \- A Text-to-speech front-end to kttsd.
|
||||||
|
|
||||||
|
.SH SYNOPSIS
|
||||||
|
.B ksayit [file]
|
||||||
|
.I [ Generic Options] [Qt-options] [TDE-options]
|
||||||
|
|
||||||
|
.SH DESCRIPTION
|
||||||
|
KSayIt is a small utilitiy for TDE that simply speaks a given textfile
|
||||||
|
in a very high quality, i.e. sound and pronounciation of the spoken
|
||||||
|
text should be as natural as possible. KSayIt uses natively
|
||||||
|
Text-To-Speech systems like MBrola, any TTS system that can be
|
||||||
|
controlled via a command line or any TTS system that is supported by
|
||||||
|
the TTS system (i.e. Festival). KSayIt offers three user interfaces:
|
||||||
|
A simple text editor window in which you can enter or paste text that
|
||||||
|
should be spoken after pressing a play button, as well as an icon
|
||||||
|
in the systemtray that starts to speak by a single mouseclick the
|
||||||
|
actual content of the clipboard. As a TDE application it offers also a
|
||||||
|
DCOP interface for the say and shut-up action. Finally KSayIt provides
|
||||||
|
an effectstack to postprocess the sound of the voice (currently only a
|
||||||
|
Freeverb effect is included)
|
||||||
|
|
||||||
|
.SH GENERIC OPTIONS
|
||||||
|
.TP
|
||||||
|
.B \-\-help
|
||||||
|
Show help about options.
|
||||||
|
.TP
|
||||||
|
.B \-\-help-qt
|
||||||
|
Show Qt specific options.
|
||||||
|
.TP
|
||||||
|
.B \-\-help-tde
|
||||||
|
Show TDE specific options.
|
||||||
|
.TP
|
||||||
|
.B \-\-help-all
|
||||||
|
Show all options.
|
||||||
|
.TP
|
||||||
|
.B \-\-author
|
||||||
|
Show author information.
|
||||||
|
.TP
|
||||||
|
.B \-v, \-\-version
|
||||||
|
Show version information.
|
||||||
|
|
||||||
|
.SH QT OPTIONS
|
||||||
|
.TP
|
||||||
|
.B \-\-display \fI<displayname>\fB
|
||||||
|
Use the X-server display `displayname'.
|
||||||
|
.TP
|
||||||
|
.B \-\-session \fI<sessionId>\fB
|
||||||
|
Restore the application for the given `sessionId'.
|
||||||
|
.TP
|
||||||
|
.B \-\-cmap
|
||||||
|
Causes the application to install a private color map on an 8\-bit
|
||||||
|
display.
|
||||||
|
.TP
|
||||||
|
.B \-\-ncols \fI<count>\fB
|
||||||
|
Limits the number of colors allocated in the color cube on an 8\-bit
|
||||||
|
display, if the application is using the QApplication::ManyColor color
|
||||||
|
specification.
|
||||||
|
.TP
|
||||||
|
.B \-\-nograb
|
||||||
|
Tells Qt to never grab the mouse or the keyboard.
|
||||||
|
.TP
|
||||||
|
.B \-\-dograb
|
||||||
|
Running under a debugger can cause an implicit \-nograb, use \-dograb
|
||||||
|
to override.
|
||||||
|
.TP
|
||||||
|
.B \-\-sync
|
||||||
|
Switches to synchronous mode for debugging.
|
||||||
|
.TP
|
||||||
|
.B \-\-fn, \-\-font \fI<fontname>\fB
|
||||||
|
Defines the application font.
|
||||||
|
.TP
|
||||||
|
.B \-\-bg, \-\-background \fI<color>\fB
|
||||||
|
Sets the default background color and an application palette (light
|
||||||
|
and dark shades are calculated).
|
||||||
|
.TP
|
||||||
|
.B \-\-fg, \-\-foreground \fI<color>\fB
|
||||||
|
Sets the default foreground color.
|
||||||
|
.TP
|
||||||
|
.B \-\-btn, \-\-button \fI<color>\fB
|
||||||
|
Sets the default button color.
|
||||||
|
.TP
|
||||||
|
.B \-\-name \fI<name>\fB
|
||||||
|
Sets the application name.
|
||||||
|
.TP
|
||||||
|
.B \-\-title \fI<title>\fB
|
||||||
|
Sets the application title (caption).
|
||||||
|
.TP
|
||||||
|
.B \-\-visual TrueColor
|
||||||
|
Forces the application to use a TrueColor visual on an 8-bit display.
|
||||||
|
.TP
|
||||||
|
.B \-\-inputstyle \fI<inputstyle>\fB
|
||||||
|
Sets XIM (X Input Method) input style. Possible values are
|
||||||
|
\fIonthespot\fP, \fIoverthespot\fP, \fIoffthespot\fP and \fIroot\fP.
|
||||||
|
.TP
|
||||||
|
.B \-\-im \fI<XIM server>\fB
|
||||||
|
Set XIM server.
|
||||||
|
.TP
|
||||||
|
.B \-\-noxim
|
||||||
|
Disable XIM.
|
||||||
|
|
||||||
|
.SH TDE OPTIONS
|
||||||
|
.TP
|
||||||
|
.B \-\-caption \fI<caption>\fB
|
||||||
|
Use `caption' as name in the titlebar.
|
||||||
|
.TP
|
||||||
|
.B \-\-icon \fI<icon>\fB
|
||||||
|
Use `icon' as the application icon.
|
||||||
|
.TP
|
||||||
|
.B \-\-miniicon \fI<icon>\fB
|
||||||
|
Use `icon' as the icon in the titlebar.
|
||||||
|
.TP
|
||||||
|
.B \-\-dcopserver \fI<server>\fB
|
||||||
|
Use the DCOP Server specified by `server'.
|
||||||
|
.TP
|
||||||
|
.B \-\-nocrashhandler
|
||||||
|
Disable crash handler, to get core dumps.
|
||||||
|
.TP
|
||||||
|
.B \-\-waitforwm
|
||||||
|
Waits for a WM_NET compatible windowmanager.
|
||||||
|
.TP
|
||||||
|
.B \-\-style \fI<style>\fB
|
||||||
|
Sets the application GUI style.
|
||||||
|
.TP
|
||||||
|
.B \-\-geometry \fI<geometry>\fB
|
||||||
|
Sets the client geometry of the main widget.
|
||||||
|
|
||||||
|
.SH SEE ALSO
|
||||||
|
More detailed user documentation is available from
|
||||||
|
.BR help:/ksayit
|
||||||
|
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
|
||||||
|
help:/ksayit').
|
||||||
|
|
||||||
|
.PP
|
||||||
|
There is also further information available at the
|
||||||
|
.URL https://mirror.git.trinitydesktop.org/gitea/TDE/tdeaccessibility "
|
||||||
|
tdeaccessibility project home page."
|
||||||
|
|
||||||
|
ksayit(1)
|
||||||
|
|
||||||
|
.SH AUTHORS
|
||||||
|
.nf
|
||||||
|
Robert Vogl <voglrobe@web.de>
|
@ -0,0 +1,5 @@
|
|||||||
|
INSTALL(
|
||||||
|
FILES kttsd.1 kttsmgr.1
|
||||||
|
DESTINATION ${MAN_INSTALL_DIR}/man1
|
||||||
|
COMPONENT doc
|
||||||
|
)
|
@ -0,0 +1,138 @@
|
|||||||
|
.TH KTTSD 1
|
||||||
|
|
||||||
|
.SH NAME
|
||||||
|
kttsd \- Text-to-speech synthesis deamon
|
||||||
|
|
||||||
|
.SH SYNOPSIS
|
||||||
|
.B kttsd
|
||||||
|
.I [ Generic Options] [Qt-options] [KDE-options]
|
||||||
|
|
||||||
|
.SH DESCRIPTION
|
||||||
|
Kttsd is part of the TDE Text-to-Speech system. kttsd is the non-GUI
|
||||||
|
deamon that provides TTS services to applications via the DCOP
|
||||||
|
interface. kttsd is configured via kttsmgr.
|
||||||
|
|
||||||
|
.SH GENERIC OPTIONS
|
||||||
|
.TP
|
||||||
|
.B \-\-help
|
||||||
|
Show help about options.
|
||||||
|
.TP
|
||||||
|
.B \-\-help-qt
|
||||||
|
Show Qt specific options.
|
||||||
|
.TP
|
||||||
|
.B \-\-help-tde
|
||||||
|
Show TDE specific options.
|
||||||
|
.TP
|
||||||
|
.B \-\-help-all
|
||||||
|
Show all options.
|
||||||
|
.TP
|
||||||
|
.B \-\-author
|
||||||
|
Show author information.
|
||||||
|
.TP
|
||||||
|
.B \-v, \-\-version
|
||||||
|
Show version information.
|
||||||
|
|
||||||
|
.SH QT OPTIONS
|
||||||
|
.TP
|
||||||
|
.B \-\-display \fI<displayname>\fB
|
||||||
|
Use the X-server display `displayname'.
|
||||||
|
.TP
|
||||||
|
.B \-\-session \fI<sessionId>\fB
|
||||||
|
Restore the application for the given `sessionId'.
|
||||||
|
.TP
|
||||||
|
.B \-\-cmap
|
||||||
|
Causes the application to install a private color map on an 8\-bit
|
||||||
|
display.
|
||||||
|
.TP
|
||||||
|
.B \-\-ncols \fI<count>\fB
|
||||||
|
Limits the number of colors allocated in the color cube on an 8\-bit
|
||||||
|
display, if the application is using the QApplication::ManyColor color
|
||||||
|
specification.
|
||||||
|
.TP
|
||||||
|
.B \-\-nograb
|
||||||
|
Tells Qt to never grab the mouse or the keyboard.
|
||||||
|
.TP
|
||||||
|
.B \-\-dograb
|
||||||
|
Running under a debugger can cause an implicit \-nograb, use \-dograb
|
||||||
|
to override.
|
||||||
|
.TP
|
||||||
|
.B \-\-sync
|
||||||
|
Switches to synchronous mode for debugging.
|
||||||
|
.TP
|
||||||
|
.B \-\-fn, \-\-font \fI<fontname>\fB
|
||||||
|
Defines the application font.
|
||||||
|
.TP
|
||||||
|
.B \-\-bg, \-\-background \fI<color>\fB
|
||||||
|
Sets the default background color and an application palette (light
|
||||||
|
and dark shades are calculated).
|
||||||
|
.TP
|
||||||
|
.B \-\-fg, \-\-foreground \fI<color>\fB
|
||||||
|
Sets the default foreground color.
|
||||||
|
.TP
|
||||||
|
.B \-\-btn, \-\-button \fI<color>\fB
|
||||||
|
Sets the default button color.
|
||||||
|
.TP
|
||||||
|
.B \-\-name \fI<name>\fB
|
||||||
|
Sets the application name.
|
||||||
|
.TP
|
||||||
|
.B \-\-title \fI<title>\fB
|
||||||
|
Sets the application title (caption).
|
||||||
|
.TP
|
||||||
|
.B \-\-visual TrueColor
|
||||||
|
Forces the application to use a TrueColor visual on an 8-bit display.
|
||||||
|
.TP
|
||||||
|
.B \-\-inputstyle \fI<inputstyle>\fB
|
||||||
|
Sets XIM (X Input Method) input style. Possible values are
|
||||||
|
\fIonthespot\fP, \fIoverthespot\fP, \fIoffthespot\fP and \fIroot\fP.
|
||||||
|
.TP
|
||||||
|
.B \-\-im \fI<XIM server>\fB
|
||||||
|
Set XIM server.
|
||||||
|
.TP
|
||||||
|
.B \-\-noxim
|
||||||
|
Disable XIM.
|
||||||
|
|
||||||
|
.SH TDE OPTIONS
|
||||||
|
.TP
|
||||||
|
.B \-\-caption \fI<caption>\fB
|
||||||
|
Use `caption' as name in the titlebar.
|
||||||
|
.TP
|
||||||
|
.B \-\-icon \fI<icon>\fB
|
||||||
|
Use `icon' as the application icon.
|
||||||
|
.TP
|
||||||
|
.B \-\-miniicon \fI<icon>\fB
|
||||||
|
Use `icon' as the icon in the titlebar.
|
||||||
|
.TP
|
||||||
|
.B \-\-dcopserver \fI<server>\fB
|
||||||
|
Use the DCOP Server specified by `server'.
|
||||||
|
.TP
|
||||||
|
.B \-\-nocrashhandler
|
||||||
|
Disable crash handler, to get core dumps.
|
||||||
|
.TP
|
||||||
|
.B \-\-waitforwm
|
||||||
|
Waits for a WM_NET compatible windowmanager.
|
||||||
|
.TP
|
||||||
|
.B \-\-style \fI<style>\fB
|
||||||
|
Sets the application GUI style.
|
||||||
|
.TP
|
||||||
|
.B \-\-geometry \fI<geometry>\fB
|
||||||
|
Sets the client geometry of the main widget.
|
||||||
|
|
||||||
|
.SH SEE ALSO
|
||||||
|
More detailed user documentation is available from
|
||||||
|
.BR help:/kttsd/
|
||||||
|
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
|
||||||
|
help:/kttsd').
|
||||||
|
|
||||||
|
kttsmgr(1)
|
||||||
|
|
||||||
|
.SH AUTHORS
|
||||||
|
.nf
|
||||||
|
José Pablo Ezequiel Fernández <pupeno@pupeno.com>
|
||||||
|
.br
|
||||||
|
Gary Cramblitt <garycramblitt@comcast.net>
|
||||||
|
.br
|
||||||
|
Gunnar Schmi Dt <gunnar@schmi-dt.de>
|
||||||
|
.br
|
||||||
|
Olaf Schmidt <ojschmidt@kde.org>
|
||||||
|
.br
|
||||||
|
Paul Giannaros <ceruleanblaze@gmail.com>
|
@ -0,0 +1,132 @@
|
|||||||
|
.TH KTTSMGR 1
|
||||||
|
|
||||||
|
.SH NAME
|
||||||
|
kttsmgr
|
||||||
|
- Text-to-Speech Manager
|
||||||
|
|
||||||
|
.SH SYNOPSIS
|
||||||
|
.B kttsmgr
|
||||||
|
.I [ Generic Options] [Qt-options] [KDE-options]
|
||||||
|
|
||||||
|
.SH DESCRIPTION
|
||||||
|
Kttsmgr is an application for starting and configuring the
|
||||||
|
Text-to-Speech system.
|
||||||
|
|
||||||
|
.SH GENERIC OPTIONS
|
||||||
|
.TP
|
||||||
|
.B \-\-help
|
||||||
|
Show help about options.
|
||||||
|
.TP
|
||||||
|
.B \-\-help-qt
|
||||||
|
Show Qt specific options.
|
||||||
|
.TP
|
||||||
|
.B \-\-help-tde
|
||||||
|
Show TDE specific options.
|
||||||
|
.TP
|
||||||
|
.B \-\-help-all
|
||||||
|
Show all options.
|
||||||
|
.TP
|
||||||
|
.B \-\-author
|
||||||
|
Show author information.
|
||||||
|
.TP
|
||||||
|
.B \-v, \-\-version
|
||||||
|
Show version information.
|
||||||
|
|
||||||
|
.SH QT OPTIONS
|
||||||
|
.TP
|
||||||
|
.B \-\-display \fI<displayname>\fB
|
||||||
|
Use the X-server display `displayname'.
|
||||||
|
.TP
|
||||||
|
.B \-\-session \fI<sessionId>\fB
|
||||||
|
Restore the application for the given `sessionId'.
|
||||||
|
.TP
|
||||||
|
.B \-\-cmap
|
||||||
|
Causes the application to install a private color map on an 8\-bit
|
||||||
|
display.
|
||||||
|
.TP
|
||||||
|
.B \-\-ncols \fI<count>\fB
|
||||||
|
Limits the number of colors allocated in the color cube on an 8\-bit
|
||||||
|
display, if the application is using the QApplication::ManyColor color
|
||||||
|
specification.
|
||||||
|
.TP
|
||||||
|
.B \-\-nograb
|
||||||
|
Tells Qt to never grab the mouse or the keyboard.
|
||||||
|
.TP
|
||||||
|
.B \-\-dograb
|
||||||
|
Running under a debugger can cause an implicit \-nograb, use \-dograb
|
||||||
|
to override.
|
||||||
|
.TP
|
||||||
|
.B \-\-sync
|
||||||
|
Switches to synchronous mode for debugging.
|
||||||
|
.TP
|
||||||
|
.B \-\-fn, \-\-font \fI<fontname>\fB
|
||||||
|
Defines the application font.
|
||||||
|
.TP
|
||||||
|
.B \-\-bg, \-\-background \fI<color>\fB
|
||||||
|
Sets the default background color and an application palette (light
|
||||||
|
and dark shades are calculated).
|
||||||
|
.TP
|
||||||
|
.B \-\-fg, \-\-foreground \fI<color>\fB
|
||||||
|
Sets the default foreground color.
|
||||||
|
.TP
|
||||||
|
.B \-\-btn, \-\-button \fI<color>\fB
|
||||||
|
Sets the default button color.
|
||||||
|
.TP
|
||||||
|
.B \-\-name \fI<name>\fB
|
||||||
|
Sets the application name.
|
||||||
|
.TP
|
||||||
|
.B \-\-title \fI<title>\fB
|
||||||
|
Sets the application title (caption).
|
||||||
|
.TP
|
||||||
|
.B \-\-visual TrueColor
|
||||||
|
Forces the application to use a TrueColor visual on an 8-bit display.
|
||||||
|
.TP
|
||||||
|
.B \-\-inputstyle \fI<inputstyle>\fB
|
||||||
|
Sets XIM (X Input Method) input style. Possible values are
|
||||||
|
\fIonthespot\fP, \fIoverthespot\fP, \fIoffthespot\fP and \fIroot\fP.
|
||||||
|
.TP
|
||||||
|
.B \-\-im \fI<XIM server>\fB
|
||||||
|
Set XIM server.
|
||||||
|
.TP
|
||||||
|
.B \-\-noxim
|
||||||
|
Disable XIM.
|
||||||
|
|
||||||
|
.SH TDE OPTIONS
|
||||||
|
.TP
|
||||||
|
.B \-\-caption \fI<caption>\fB
|
||||||
|
Use `caption' as name in the titlebar.
|
||||||
|
.TP
|
||||||
|
.B \-\-icon \fI<icon>\fB
|
||||||
|
Use `icon' as the application icon.
|
||||||
|
.TP
|
||||||
|
.B \-\-miniicon \fI<icon>\fB
|
||||||
|
Use `icon' as the icon in the titlebar.
|
||||||
|
.TP
|
||||||
|
.B \-\-dcopserver \fI<server>\fB
|
||||||
|
Use the DCOP Server specified by `server'.
|
||||||
|
.TP
|
||||||
|
.B \-\-nocrashhandler
|
||||||
|
Disable crash handler, to get core dumps.
|
||||||
|
.TP
|
||||||
|
.B \-\-waitforwm
|
||||||
|
Waits for a WM_NET compatible windowmanager.
|
||||||
|
.TP
|
||||||
|
.B \-\-style \fI<style>\fB
|
||||||
|
Sets the application GUI style.
|
||||||
|
.TP
|
||||||
|
.B \-\-geometry \fI<geometry>\fB
|
||||||
|
Sets the client geometry of the main widget.
|
||||||
|
|
||||||
|
kttsd(1)
|
||||||
|
|
||||||
|
.SH AUTHORS
|
||||||
|
.nf
|
||||||
|
José Pablo Ezequiel Fernández <pupeno@pupeno.com>
|
||||||
|
.br
|
||||||
|
Gary Cramblitt <garycramblitt@comcast.net>
|
||||||
|
.br
|
||||||
|
Gunnar Schmi Dt <gunnar@schmi-dt.de>
|
||||||
|
.br
|
||||||
|
Olaf Schmidt <ojschmidt@kde.org>
|
||||||
|
.br
|
||||||
|
Paul Giannaros <ceruleanblaze@gmail.com>
|
@ -0,0 +1,38 @@
|
|||||||
|
add_subdirectory( images )
|
||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${X11_INCLUDE_DIR}
|
||||||
|
${X11_Xkb_INCLUDE_PATH}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### kbstate_panelapplet (kpart)
|
||||||
|
|
||||||
|
tde_add_kpart( kbstate_panelapplet MODULE AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
kbstate.cpp
|
||||||
|
LINK
|
||||||
|
tdeui-shared
|
||||||
|
tdecore-shared
|
||||||
|
|
||||||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE kbstateapplet.desktop
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kicker/applets
|
||||||
|
)
|
@ -0,0 +1,3 @@
|
|||||||
|
##### icons
|
||||||
|
|
||||||
|
tde_install_icons( DESTINATION ${DATA_INSTALL_DIR}/kbstateapplet/icons )
|
@ -0,0 +1,49 @@
|
|||||||
|
add_subdirectory( images )
|
||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${X11_INCLUDE_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### kmag (executable)
|
||||||
|
|
||||||
|
tde_add_executable( kmag AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
kmagzoomview.cpp
|
||||||
|
kmagselrect.cpp
|
||||||
|
kmag.cpp
|
||||||
|
main.cpp
|
||||||
|
LINK
|
||||||
|
tdecore-shared
|
||||||
|
tdeui-shared
|
||||||
|
tdeio-shared
|
||||||
|
tdeprint-shared
|
||||||
|
|
||||||
|
DESTINATION ${BIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### icons
|
||||||
|
|
||||||
|
tde_install_icons( kmag )
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES kmagui.rc
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kmag
|
||||||
|
)
|
||||||
|
|
||||||
|
tde_create_translated_desktop( kmag.desktop )
|
@ -0,0 +1,3 @@
|
|||||||
|
##### icons
|
||||||
|
|
||||||
|
tde_install_icons( DESTINATION ${DATA_INSTALL_DIR}/kmag/icons )
|
@ -0,0 +1,3 @@
|
|||||||
|
|
||||||
|
kmagiconsdir = $(kde_datadir)/kmag/icons
|
||||||
|
kmagicons_ICON = followmouse hidemouse window
|
Before Width: | Height: | Size: 575 B After Width: | Height: | Size: 575 B |
Before Width: | Height: | Size: 275 B After Width: | Height: | Size: 275 B |
Before Width: | Height: | Size: 314 B After Width: | Height: | Size: 314 B |
@ -0,0 +1,2 @@
|
|||||||
|
|
||||||
|
add_subdirectory( kmousetool )
|
@ -0,0 +1,47 @@
|
|||||||
|
add_subdirectory( pics )
|
||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${X11_INCLUDE_DIR}
|
||||||
|
${X11_XTest_INCLUDE_PATH}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### kmousetool (executable)
|
||||||
|
|
||||||
|
tde_add_executable( kmousetool AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
kmousetoolui.ui
|
||||||
|
mtstroke.cpp
|
||||||
|
kmousetool.cpp
|
||||||
|
main.cpp
|
||||||
|
LINK
|
||||||
|
tdecore-shared
|
||||||
|
tdeui-shared
|
||||||
|
tdeio-shared
|
||||||
|
${X11_LIBRARIES}
|
||||||
|
${X11_XTest_LIB}
|
||||||
|
${X11_Xext_LIB}
|
||||||
|
|
||||||
|
DESTINATION ${BIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
tde_create_translated_desktop( kmousetool.desktop )
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES mousetool_tap.wav
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kmousetool/sounds
|
||||||
|
)
|
@ -0,0 +1,7 @@
|
|||||||
|
##### icons
|
||||||
|
|
||||||
|
tde_install_icons(
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kmousetool/icons
|
||||||
|
)
|
||||||
|
|
||||||
|
tde_install_icons( kmousetool )
|
@ -0,0 +1,63 @@
|
|||||||
|
add_subdirectory( icons )
|
||||||
|
add_subdirectory( phrasebook )
|
||||||
|
add_subdirectory( wordcompletion )
|
||||||
|
add_subdirectory( books )
|
||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${CMAKE_BINARY_DIR}/kmouth/phrasebook
|
||||||
|
${CMAKE_BINARY_DIR}/kmouth/wordcompletion
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### kmouth (executable)
|
||||||
|
|
||||||
|
tde_add_executable( kmouth AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
preferencesui.ui
|
||||||
|
texttospeechconfigurationui.ui
|
||||||
|
texttospeechconfigurationwidget.cpp
|
||||||
|
optionsdialog.cpp
|
||||||
|
configwizard.cpp
|
||||||
|
phraseedit.cpp
|
||||||
|
phraselist.cpp
|
||||||
|
speech.cpp
|
||||||
|
texttospeechsystem.cpp
|
||||||
|
phraselistitem.cpp
|
||||||
|
kmouth.cpp
|
||||||
|
main.cpp
|
||||||
|
LINK
|
||||||
|
tdecore-shared
|
||||||
|
tdeui-shared
|
||||||
|
tdeio-shared
|
||||||
|
tdeprint-shared
|
||||||
|
phrasebook-static
|
||||||
|
wordcompletion-static
|
||||||
|
|
||||||
|
DESTINATION ${BIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES kmouthui.rc
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kmouth
|
||||||
|
)
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES kmouthrc
|
||||||
|
DESTINATION ${CONFIG_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
tde_create_translated_desktop( kmouth.desktop )
|
@ -0,0 +1,18 @@
|
|||||||
|
##### phrasebooks
|
||||||
|
|
||||||
|
foreach( _lang de en nl sv )
|
||||||
|
install(
|
||||||
|
FILES
|
||||||
|
${_lang}-courteousness.phrasebook
|
||||||
|
${_lang}-greetings.phrasebook
|
||||||
|
${_lang}-howareyou.phrasebook
|
||||||
|
${_lang}-personal.phrasebook
|
||||||
|
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kmouth/books/${_lang}
|
||||||
|
)
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE ${_lang}.desktop
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kmouth/books/${_lang}
|
||||||
|
)
|
||||||
|
endforeach()
|
@ -0,0 +1,9 @@
|
|||||||
|
add_subdirectory( history )
|
||||||
|
add_subdirectory( phrase )
|
||||||
|
add_subdirectory( phrasebook )
|
||||||
|
add_subdirectory( app )
|
||||||
|
|
||||||
|
|
||||||
|
tde_install_icons(
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kmouth/icons
|
||||||
|
)
|
@ -0,0 +1,3 @@
|
|||||||
|
##### icons
|
||||||
|
|
||||||
|
tde_install_icons()
|
@ -0,0 +1,3 @@
|
|||||||
|
tde_install_icons(
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kmouth/icons
|
||||||
|
)
|
@ -0,0 +1,3 @@
|
|||||||
|
tde_install_icons(
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kmouth/icons
|
||||||
|
)
|
@ -0,0 +1,3 @@
|
|||||||
|
tde_install_icons(
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kmouth/icons
|
||||||
|
)
|
@ -0,0 +1,31 @@
|
|||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### phrasebook (static)
|
||||||
|
|
||||||
|
tde_add_library( phrasebook STATIC_PIC AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
buttonboxui.ui
|
||||||
|
phrasetree.cpp
|
||||||
|
phrasebookparser.cpp
|
||||||
|
phrasebookdialog.cpp
|
||||||
|
phrasebook.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES phrasebookdialogui.rc
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kmouth
|
||||||
|
)
|
@ -0,0 +1,30 @@
|
|||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### wordcompletion (static)
|
||||||
|
|
||||||
|
tde_add_library( wordcompletion STATIC_PIC AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
wordcompletionui.ui
|
||||||
|
creationsourceui.ui
|
||||||
|
creationsourcedetailsui.ui
|
||||||
|
kdedocsourceui.ui
|
||||||
|
wordlist.cpp
|
||||||
|
wordcompletion.cpp
|
||||||
|
wordcompletionwidget.cpp
|
||||||
|
dictionarycreationwizard.cpp
|
||||||
|
klanguagebutton.cpp
|
||||||
|
klanguagebuttonhelper.cpp
|
||||||
|
)
|
@ -0,0 +1,3 @@
|
|||||||
|
tde_conditional_add_subdirectory( BUILD_KSAYIT_FREEVERB Freeverb_plugin )
|
||||||
|
add_subdirectory( KTTSD_Lib )
|
||||||
|
add_subdirectory( src )
|
@ -0,0 +1,44 @@
|
|||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${CMAKE_SOURCE_DIR}/ksayit/src
|
||||||
|
${ARTS_MODULES_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
##### libFreeverb_plugin (module)
|
||||||
|
|
||||||
|
tde_add_library( libFreeverb_plugin MODULE AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
freeverb_setup.ui
|
||||||
|
freeverbsetupimpl.cpp
|
||||||
|
ksayitfreeverblib.cpp
|
||||||
|
LINK
|
||||||
|
tdecore-shared
|
||||||
|
tdeui-shared
|
||||||
|
${ARTS_FREEVERB_PLUGIN_LIBRARIES}
|
||||||
|
|
||||||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE ksayit_libFreeverb_service.desktop
|
||||||
|
DESTINATION ${SERVICETYPES_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE ksayit_libFreeverb.desktop
|
||||||
|
DESTINATION ${SERVICES_INSTALL_DIR}
|
||||||
|
)
|
@ -0,0 +1,34 @@
|
|||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${CMAKE_BINARY_DIR}/kspeechsink
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### KTTSD_Lib (shared)
|
||||||
|
|
||||||
|
tde_add_library( KTTSD_Lib SHARED AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
KTTSDlibSetup.ui
|
||||||
|
kttsdlib.cpp
|
||||||
|
kttsdlibsetupimpl.cpp
|
||||||
|
kttsdlibtalker2.cpp
|
||||||
|
LINK
|
||||||
|
tdeui-shared
|
||||||
|
tdecore-shared
|
||||||
|
DUMMY_kspeech_lib-static
|
||||||
|
|
||||||
|
VERSION 0.0.1
|
||||||
|
|
||||||
|
DESTINATION ${LIB_INSTALL_DIR}
|
||||||
|
)
|
@ -0,0 +1,70 @@
|
|||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${CMAKE_SOURCE_DIR}/ksayit/KTTSD_Lib
|
||||||
|
${KAYSAYIT_ARTS_INCLUDE}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### ksayit (executable)
|
||||||
|
|
||||||
|
tde_add_executable( ksayit AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
DocTreeView.ui
|
||||||
|
fx_setup.ui
|
||||||
|
KSayItView.ui
|
||||||
|
doctreeviewimpl.cpp
|
||||||
|
effectstack.cpp
|
||||||
|
fxpluginhandler.cpp
|
||||||
|
fxsetupimpl.cpp
|
||||||
|
ksayit.skel
|
||||||
|
ksayitsystemtray.cpp
|
||||||
|
ksayitviewimpl.cpp
|
||||||
|
main.cpp
|
||||||
|
voicesetupdlg.cpp
|
||||||
|
ksayit.cpp
|
||||||
|
parasaxparser.cpp
|
||||||
|
saxhandler.cpp
|
||||||
|
ksayitbookmarkhandler.cpp
|
||||||
|
contextmenuhandler.cpp
|
||||||
|
docbookclasses.cpp
|
||||||
|
docbookgenerator.cpp
|
||||||
|
docbookparser.cpp
|
||||||
|
LINK
|
||||||
|
tdecore-shared
|
||||||
|
tdeui-shared
|
||||||
|
tdeio-shared
|
||||||
|
KTTSD_Lib-shared
|
||||||
|
${KAYSAYIT_ARTS_LIBRARIES}
|
||||||
|
|
||||||
|
DESTINATION ${BIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
##### icons
|
||||||
|
|
||||||
|
tde_install_icons()
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES ksayitui.rc ContextMenus.xml
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/ksayit
|
||||||
|
)
|
||||||
|
|
||||||
|
tde_create_translated_desktop( ksayit.desktop )
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES ksayit_fxplugin.h
|
||||||
|
DESTINATION ${INCLUDE_INSTALL_DIR}
|
||||||
|
)
|
@ -0,0 +1,71 @@
|
|||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
add_compile_options( -fPIC )
|
||||||
|
|
||||||
|
|
||||||
|
##### ksayit_kspeech
|
||||||
|
|
||||||
|
set( KSPEECH_KIDL kspeech.kidl )
|
||||||
|
set( KSPEECH_STUB kspeech_stub )
|
||||||
|
|
||||||
|
add_custom_command(
|
||||||
|
OUTPUT ${KSPEECH_KIDL}
|
||||||
|
COMMAND ${KDE3_DCOPIDL_EXECUTABLE} ${KTTS_KSPEECH_DIR}/kspeech.h > ${KSPEECH_KIDL}
|
||||||
|
DEPENDS ${KTTS_KSPEECH_DIR}/kspeech.h
|
||||||
|
)
|
||||||
|
add_custom_target( ksayit-kspeech-kidl DEPENDS ${KSPEECH_KIDL} )
|
||||||
|
|
||||||
|
add_custom_command(
|
||||||
|
OUTPUT ${KSPEECH_STUB}.h ${KSPEECH_STUB}.cpp
|
||||||
|
COMMAND ${KDE3_DCOPIDL2CPP_EXECUTABLE} --c++-suffix cpp --no-signals --no-skel ${KSPEECH_KIDL}
|
||||||
|
DEPENDS ${KSPEECH_KIDL}
|
||||||
|
)
|
||||||
|
add_custom_target( ksayit-kspeech-stub DEPENDS ${KSPEECH_STUB}.cpp )
|
||||||
|
|
||||||
|
|
||||||
|
###### ksayit_kspeechsink
|
||||||
|
|
||||||
|
set( KSPEECHSINK_KIDL kspeechsink.kidl )
|
||||||
|
set( KSPEECHSINK_SKEL kspeechsink_skel )
|
||||||
|
|
||||||
|
add_custom_command(
|
||||||
|
OUTPUT ${KSPEECHSINK_KIDL}
|
||||||
|
COMMAND ${KDE3_DCOPIDL_EXECUTABLE} ${KTTS_KSPEECH_DIR}/kspeechsink.h > ${KSPEECHSINK_KIDL}
|
||||||
|
DEPENDS ${KTTS_KSPEECH_DIR}/kspeechsink.h
|
||||||
|
)
|
||||||
|
add_custom_target( ksayit-kspeechsink-kidl DEPENDS ${KSPEECHSINK_KIDL} )
|
||||||
|
|
||||||
|
add_custom_command(
|
||||||
|
OUTPUT ${KSPEECHSINK_SKEL}.cpp
|
||||||
|
COMMAND ${KDE3_DCOPIDL2CPP_EXECUTABLE} --c++-suffix cpp --no-signals --no-stub ${KSPEECHSINK_KIDL}
|
||||||
|
DEPENDS ${KSPEECHSINK_KIDL}
|
||||||
|
)
|
||||||
|
add_custom_target( ksayit-kspeechsink-skel DEPENDS ${KSPEECHSINK_SKEL}.cpp )
|
||||||
|
|
||||||
|
|
||||||
|
##### DUMMY_Lib (static)
|
||||||
|
|
||||||
|
tde_add_library( DUMMY_kspeech_lib STATIC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/${KSPEECH_STUB}.cpp
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/${KSPEECHSINK_SKEL}.cpp
|
||||||
|
LINK
|
||||||
|
tdecore-shared
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
ksayit-kspeech-stub
|
||||||
|
ksayit-kspeechsink-skel
|
||||||
|
)
|
@ -0,0 +1,10 @@
|
|||||||
|
add_subdirectory( app-plugins )
|
||||||
|
add_subdirectory( libkttsd )
|
||||||
|
add_subdirectory( players )
|
||||||
|
add_subdirectory( plugins )
|
||||||
|
add_subdirectory( filters )
|
||||||
|
add_subdirectory( kttsmgr )
|
||||||
|
add_subdirectory( kttsd )
|
||||||
|
add_subdirectory( kttsjobmgr )
|
||||||
|
add_subdirectory( kcmkttsmgr )
|
||||||
|
add_subdirectory( icons )
|
@ -0,0 +1 @@
|
|||||||
|
tde_conditional_add_subdirectory( BUILD_KTTSD_KATE kate )
|
@ -0,0 +1,41 @@
|
|||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### tdetexteditor_kttsd (kpart)
|
||||||
|
|
||||||
|
tde_add_kpart( tdetexteditor_kttsd AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
katekttsd.cpp
|
||||||
|
LINK
|
||||||
|
tdecore-shared
|
||||||
|
tdeui-shared
|
||||||
|
tdetexteditor-shared
|
||||||
|
|
||||||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES tdetexteditor_kttsdui.rc
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/tdetexteditor_kttsd
|
||||||
|
)
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE tdetexteditor_kttsd.desktop
|
||||||
|
DESTINATION ${SERVICES_INSTALL_DIR}
|
||||||
|
)
|
@ -0,0 +1,41 @@
|
|||||||
|
add_subdirectory( stringreplacer )
|
||||||
|
add_subdirectory( xmltransformer )
|
||||||
|
add_subdirectory( sbd )
|
||||||
|
add_subdirectory( talkerchooser )
|
||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${CMAKE_SOURCE_DIR}/kttsd/libkttsd
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### testfilter (test)
|
||||||
|
|
||||||
|
tde_add_check_executable( testfilter AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
main.cpp
|
||||||
|
LINK
|
||||||
|
tdecore-shared
|
||||||
|
tdeui-shared
|
||||||
|
tdeio-shared
|
||||||
|
kttsd-shared
|
||||||
|
TEST
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE kttsd_filterplugin.desktop
|
||||||
|
DESTINATION ${SERVICETYPES_INSTALL_DIR}
|
||||||
|
)
|
@ -0,0 +1,43 @@
|
|||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${CMAKE_SOURCE_DIR}/kttsd/libkttsd
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### libkttsd_sbdplugin (kpart)
|
||||||
|
|
||||||
|
tde_add_kpart( libkttsd_sbdplugin AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
sbdconfwidget.ui
|
||||||
|
sbdproc.cpp
|
||||||
|
sbdconf.cpp
|
||||||
|
sbdplugin.cpp
|
||||||
|
LINK
|
||||||
|
kttsd-shared
|
||||||
|
|
||||||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE kttsd_sbdplugin.desktop
|
||||||
|
DESTINATION ${SERVICES_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES standard_sbdrc polish_festival_sbdrc
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kttsd/sbd
|
||||||
|
)
|
@ -0,0 +1,47 @@
|
|||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${CMAKE_SOURCE_DIR}/kttsd/libkttsd
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### libkttsd_stringreplacerplugin (kpart)
|
||||||
|
|
||||||
|
tde_add_kpart( libkttsd_stringreplacerplugin AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
stringreplacerconfwidget.ui
|
||||||
|
editreplacementwidget.ui
|
||||||
|
stringreplacerconf.cpp
|
||||||
|
stringreplacerproc.cpp
|
||||||
|
stringreplacerplugin.cpp
|
||||||
|
LINK
|
||||||
|
kttsd-shared
|
||||||
|
|
||||||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE kttsd_stringreplacerplugin.desktop
|
||||||
|
DESTINATION ${SERVICES_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
file( GLOB _xmls RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.xml )
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES ${_xmls}
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kttsd/stringreplacer
|
||||||
|
)
|
@ -0,0 +1,44 @@
|
|||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${CMAKE_SOURCE_DIR}/kttsd/libkttsd
|
||||||
|
${CMAKE_BINARY_DIR}/kttsd/libkttsd
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### libkttsd_talkerchooserplugin (kpart)
|
||||||
|
|
||||||
|
tde_add_kpart( libkttsd_talkerchooserplugin AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
talkerchooserconfwidget.ui
|
||||||
|
talkerchooserconf.cpp
|
||||||
|
talkerchooserproc.cpp
|
||||||
|
talkerchooserplugin.cpp
|
||||||
|
LINK
|
||||||
|
kttsd-shared
|
||||||
|
|
||||||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE kttsd_talkerchooserplugin.desktop
|
||||||
|
DESTINATION ${SERVICES_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES female_notifications_rc
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kttsd/talkerchooser
|
||||||
|
)
|
@ -0,0 +1,43 @@
|
|||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${CMAKE_SOURCE_DIR}/kttsd/libkttsd
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### libkttsd_xmltransformerplugin (kpart)
|
||||||
|
|
||||||
|
tde_add_kpart( libkttsd_xmltransformerplugin AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
xmltransformerconfwidget.ui
|
||||||
|
xmltransformerconf.cpp
|
||||||
|
xmltransformerproc.cpp
|
||||||
|
xmltransformerplugin.cpp
|
||||||
|
LINK
|
||||||
|
kttsd-shared
|
||||||
|
|
||||||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE kttsd_xmltransformerplugin.desktop
|
||||||
|
DESTINATION ${SERVICES_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES xhtml2ssml.xsl xhtml2ssml_simple.xsl
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kttsd/xmltransformer
|
||||||
|
)
|
@ -0,0 +1,3 @@
|
|||||||
|
##### icons
|
||||||
|
|
||||||
|
tde_install_icons()
|
@ -0,0 +1,46 @@
|
|||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${CMAKE_SOURCE_DIR}/kttsd/libkttsd
|
||||||
|
${CMAKE_BINARY_DIR}/kttsd/libkttsd
|
||||||
|
${CMAKE_BINARY_DIR}/kspeechsink
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### kcm_kttsd (kpart)
|
||||||
|
|
||||||
|
tde_add_kpart( kcm_kttsd MODULE AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
kcmkttsmgrwidget.ui
|
||||||
|
addtalkerwidget.ui
|
||||||
|
selecteventwidget.ui
|
||||||
|
kcmkttsmgr.cpp
|
||||||
|
addtalker.cpp
|
||||||
|
selectevent.cpp
|
||||||
|
LINK
|
||||||
|
tdeio-shared
|
||||||
|
kttsd-shared
|
||||||
|
DUMMY_kspeech_lib-static
|
||||||
|
|
||||||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE kcmkttsd_testmessage.desktop
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kttsd
|
||||||
|
)
|
||||||
|
|
||||||
|
tde_create_translated_desktop( kcmkttsd.desktop )
|
@ -0,0 +1,116 @@
|
|||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${CMAKE_SOURCE_DIR}/kttsd/libkttsd
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
##### kttsd_kspeech
|
||||||
|
|
||||||
|
set( KSPEECH_KIDL kspeech.kidl )
|
||||||
|
set( KSPEECH_SKEL kspeech_skel )
|
||||||
|
|
||||||
|
add_custom_command(
|
||||||
|
OUTPUT ${KSPEECH_KIDL}
|
||||||
|
COMMAND ${KDE3_DCOPIDL_EXECUTABLE} ${KTTS_KSPEECH_DIR}/kspeech.h > ${KSPEECH_KIDL}
|
||||||
|
DEPENDS ${KTTS_KSPEECH_DIR}/kspeech.h
|
||||||
|
)
|
||||||
|
add_custom_target( kttsd-kspeech-kidl DEPENDS ${KSPEECH_KIDL} )
|
||||||
|
|
||||||
|
add_custom_command(
|
||||||
|
OUTPUT ${KSPEECH_SKEL}.cpp
|
||||||
|
COMMAND ${KDE3_DCOPIDL2CPP_EXECUTABLE} --c++-suffix cpp --no-signals --no-stub ${KSPEECH_KIDL}
|
||||||
|
DEPENDS kttsd-kspeech-kidl
|
||||||
|
)
|
||||||
|
add_custom_target( kttsd-kspeech-skel DEPENDS ${KSPEECH_SKEL}.cpp )
|
||||||
|
|
||||||
|
|
||||||
|
###### kttsd_kspeechsink
|
||||||
|
|
||||||
|
set( KSPEECHSINK_KIDL kspeechsink.kidl )
|
||||||
|
set( KSPEECHSINK_STUB kspeechsink_stub )
|
||||||
|
|
||||||
|
add_custom_command(
|
||||||
|
OUTPUT ${KSPEECHSINK_KIDL}
|
||||||
|
COMMAND ${KDE3_DCOPIDL_EXECUTABLE} ${KTTS_KSPEECH_DIR}/kspeechsink.h > ${KSPEECHSINK_KIDL}
|
||||||
|
DEPENDS ${KTTS_KSPEECH_DIR}/kspeechsink.h
|
||||||
|
)
|
||||||
|
add_custom_target( kttsd-kspeechsink-kidl DEPENDS ${KSPEECHSINK_KIDL} )
|
||||||
|
|
||||||
|
add_custom_command(
|
||||||
|
OUTPUT ${KSPEECHSINK_STUB}.h
|
||||||
|
COMMAND ${KDE3_DCOPIDL2CPP_EXECUTABLE} --c++-suffix cpp --no-signals --no-skel ${KSPEECHSINK_KIDL}
|
||||||
|
DEPENDS kttsd-kspeechsink-kidl
|
||||||
|
)
|
||||||
|
add_custom_target( kttsd-kspeechsink-stub DEPENDS ${KSPEECHSINK_STUB}.h )
|
||||||
|
|
||||||
|
|
||||||
|
##### kttsd
|
||||||
|
|
||||||
|
set( KTTSD_KIDL kttsd.kidl )
|
||||||
|
set( KTTSD_SKEL kttsd_skel )
|
||||||
|
|
||||||
|
add_custom_command(
|
||||||
|
OUTPUT ${KTTSD_KIDL}
|
||||||
|
COMMAND ${KDE3_DCOPIDL_EXECUTABLE} ${CMAKE_SOURCE_DIR}/kttsd/kttsd/kttsd.h > ${KTTSD_KIDL}
|
||||||
|
DEPENDS ${CMAKE_SOURCE_DIR}/kttsd/kttsd/kttsd.h
|
||||||
|
)
|
||||||
|
add_custom_target( kttsd-kidl DEPENDS ${KTTSD_KIDL} )
|
||||||
|
|
||||||
|
add_custom_command(
|
||||||
|
OUTPUT ${KTTSD_SKEL}.cpp
|
||||||
|
COMMAND ${KDE3_DCOPIDL2CPP_EXECUTABLE} --c++-suffix cpp --no-signals --no-stub ${KTTSD_KIDL}
|
||||||
|
DEPENDS kttsd-kidl
|
||||||
|
)
|
||||||
|
add_custom_target( kttsd-skel DEPENDS ${KTTSD_SKEL}.cpp )
|
||||||
|
|
||||||
|
|
||||||
|
##### kttsd (executable)
|
||||||
|
|
||||||
|
tde_add_executable( kttsd AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/${KSPEECH_SKEL}.cpp
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/${KTTSD_SKEL}.cpp
|
||||||
|
main.cpp
|
||||||
|
kttsd.cpp
|
||||||
|
speaker.cpp
|
||||||
|
speechdata.cpp
|
||||||
|
threadedplugin.cpp
|
||||||
|
ssmlconvert.cpp
|
||||||
|
filtermgr.cpp
|
||||||
|
talkermgr.cpp
|
||||||
|
LINK
|
||||||
|
tdecore-shared
|
||||||
|
tdeui-shared
|
||||||
|
tdeio-shared
|
||||||
|
kttsd-shared
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
kttsd-kspeech-skel
|
||||||
|
kttsd-kspeechsink-stub
|
||||||
|
kttsd-skel
|
||||||
|
|
||||||
|
DESTINATION ${BIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES SSMLtoPlainText.xsl
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kttsd/xslt
|
||||||
|
)
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE kttsd.desktop
|
||||||
|
DESTINATION ${SERVICES_INSTALL_DIR}
|
||||||
|
)
|
@ -0,0 +1,40 @@
|
|||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${CMAKE_SOURCE_DIR}/kttsd/libkttsd
|
||||||
|
${CMAKE_BINARY_DIR}/kttsd/libkttsd
|
||||||
|
${CMAKE_BINARY_DIR}/kspeechsink
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### libkttsjobmgrpart (kpart)
|
||||||
|
|
||||||
|
tde_add_kpart( libkttsjobmgrpart MODULE AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
kttsjobmgr.cpp
|
||||||
|
LINK
|
||||||
|
tdeio-shared
|
||||||
|
tdeparts-shared
|
||||||
|
kttsd-shared
|
||||||
|
DUMMY_kspeech_lib-static
|
||||||
|
|
||||||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE kttsjobmgr.desktop
|
||||||
|
DESTINATION ${SERVICES_INSTALL_DIR}
|
||||||
|
)
|
@ -0,0 +1,36 @@
|
|||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${CMAKE_BINARY_DIR}/kspeechsink
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### kttsmgr (executable)
|
||||||
|
|
||||||
|
tde_add_executable( kttsmgr AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
kttsmgr.cpp
|
||||||
|
LINK
|
||||||
|
tdecore-shared
|
||||||
|
tdeui-shared
|
||||||
|
tdeio-shared
|
||||||
|
tdeutils-shared
|
||||||
|
DUMMY_kspeech_lib-static
|
||||||
|
|
||||||
|
DESTINATION ${BIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
tde_create_translated_desktop( kttsmgr.desktop )
|
@ -0,0 +1,47 @@
|
|||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
##### kttsd (shared)
|
||||||
|
|
||||||
|
tde_add_library( kttsd SHARED AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
selecttalkerwidget.ui
|
||||||
|
pluginproc.cpp
|
||||||
|
pluginconf.cpp
|
||||||
|
testplayer.cpp
|
||||||
|
stretcher.cpp
|
||||||
|
talkercode.cpp
|
||||||
|
filterproc.cpp
|
||||||
|
filterconf.cpp
|
||||||
|
utils.cpp
|
||||||
|
selecttalkerdlg.cpp
|
||||||
|
notify.cpp
|
||||||
|
LINK
|
||||||
|
tdecore-shared
|
||||||
|
tdeio-shared
|
||||||
|
tdeui-shared
|
||||||
|
|
||||||
|
VERSION 1.0.0
|
||||||
|
|
||||||
|
DESTINATION ${LIB_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE kttsd_synthplugin.desktop
|
||||||
|
DESTINATION ${SERVICETYPES_INSTALL_DIR}
|
||||||
|
)
|
@ -0,0 +1,12 @@
|
|||||||
|
tde_conditional_add_subdirectory( WITH_ARTS artsplayer )
|
||||||
|
tde_conditional_add_subdirectory( WITH_AKODE akodeplayer )
|
||||||
|
tde_conditional_add_subdirectory( WITH_ALSA alsaplayer )
|
||||||
|
tde_conditional_add_subdirectory( WITH_GSTREAMER gstplayer )
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE kttsd_audioplugin.desktop
|
||||||
|
DESTINATION ${SERVICETYPES_INSTALL_DIR}
|
||||||
|
)
|
@ -0,0 +1,37 @@
|
|||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${CMAKE_SOURCE_DIR}/kttsd/libkttsd
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### libkttsd_akodeplugin (kpart)
|
||||||
|
|
||||||
|
tde_add_kpart( libkttsd_akodeplugin AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
akodeplugin.cpp
|
||||||
|
akodeplayer.cpp
|
||||||
|
LINK
|
||||||
|
kttsd-shared
|
||||||
|
${AKODE_LIBRARIES}
|
||||||
|
|
||||||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE kttsd_akodeplugin.desktop
|
||||||
|
DESTINATION ${SERVICES_INSTALL_DIR}
|
||||||
|
)
|
@ -0,0 +1,38 @@
|
|||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${CMAKE_SOURCE_DIR}/kttsd/libkttsd
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${ALSA_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### libkttsd_alsaplugin (kpart)
|
||||||
|
|
||||||
|
tde_add_kpart( libkttsd_alsaplugin AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
alsaplugin.cpp
|
||||||
|
alsaplayer.cpp
|
||||||
|
LINK
|
||||||
|
kttsd-shared
|
||||||
|
${ALSA_LIBRARIES}
|
||||||
|
|
||||||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE kttsd_alsaplugin.desktop
|
||||||
|
DESTINATION ${SERVICES_INSTALL_DIR}
|
||||||
|
)
|
@ -0,0 +1,38 @@
|
|||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${CMAKE_SOURCE_DIR}/kttsd/libkttsd
|
||||||
|
${ARTS_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### libkttsd_artsplugin (kpart)
|
||||||
|
|
||||||
|
tde_add_kpart( libkttsd_artsplugin AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
artsplugin.cpp
|
||||||
|
artsplayer.cpp
|
||||||
|
LINK
|
||||||
|
kttsd-shared
|
||||||
|
${ARTS_PLAYER_LIBRARIES}
|
||||||
|
|
||||||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE kttsd_artsplugin.desktop
|
||||||
|
DESTINATION ${SERVICES_INSTALL_DIR}
|
||||||
|
)
|
@ -0,0 +1,39 @@
|
|||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${CMAKE_SOURCE_DIR}/kttsd/libkttsd
|
||||||
|
${GSTREAMER_INCLUDE_DIRS}
|
||||||
|
${GLIB2_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### libkttsd_gstplugin (kpart)
|
||||||
|
|
||||||
|
tde_add_kpart( libkttsd_gstplugin AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
gstplugin.cpp
|
||||||
|
gstreamerplayer.cpp
|
||||||
|
LINK
|
||||||
|
kttsd-shared
|
||||||
|
${GSTREAMER_LIBRARIES}
|
||||||
|
|
||||||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE kttsd_gstplugin.desktop
|
||||||
|
DESTINATION ${SERVICES_INSTALL_DIR}
|
||||||
|
)
|
@ -0,0 +1,6 @@
|
|||||||
|
tde_conditional_add_subdirectory( BUILD_KTTSD_COMMAND command )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_KTTSD_EPOS epos )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_KTTSD_FESTIVAL festivalint )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_KTTSD_FREETTS freetts )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_KTTSD_FLITE flite )
|
||||||
|
tde_conditional_add_subdirectory( BUILD_KTTSD_HADIFIX hadifix )
|
@ -0,0 +1,38 @@
|
|||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${CMAKE_SOURCE_DIR}/kttsd/libkttsd
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### libkttsd_commandplugin (kpart)
|
||||||
|
|
||||||
|
tde_add_kpart( libkttsd_commandplugin AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
commandconfwidget.ui
|
||||||
|
commandconf.cpp
|
||||||
|
commandproc.cpp
|
||||||
|
commandplugin.cpp
|
||||||
|
LINK
|
||||||
|
kttsd-shared
|
||||||
|
|
||||||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE kttsd_commandplugin.desktop
|
||||||
|
DESTINATION ${SERVICES_INSTALL_DIR}
|
||||||
|
)
|
@ -0,0 +1,38 @@
|
|||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${CMAKE_SOURCE_DIR}/kttsd/libkttsd
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### libkttsd_eposplugin (kpart)
|
||||||
|
|
||||||
|
tde_add_kpart( libkttsd_eposplugin AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
eposconfwidget.ui
|
||||||
|
eposconf.cpp
|
||||||
|
eposproc.cpp
|
||||||
|
eposplugin.cpp
|
||||||
|
LINK
|
||||||
|
kttsd-shared
|
||||||
|
|
||||||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE kttsd_eposplugin.desktop
|
||||||
|
DESTINATION ${SERVICES_INSTALL_DIR}
|
||||||
|
)
|
@ -0,0 +1,48 @@
|
|||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${CMAKE_SOURCE_DIR}/kttsd/libkttsd
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### libkttsd_festivalintplugin (kpart)
|
||||||
|
|
||||||
|
tde_add_kpart( libkttsd_festivalintplugin AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
festivalintconfwidget.ui
|
||||||
|
festivalintconf.cpp
|
||||||
|
festivalintproc.cpp
|
||||||
|
festivalintplugin.cpp
|
||||||
|
LINK
|
||||||
|
kttsd-shared
|
||||||
|
|
||||||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE kttsd_festivalintplugin.desktop
|
||||||
|
DESTINATION ${SERVICES_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES SSMLtoSable.xsl
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kttsd/festivalint/xslt
|
||||||
|
)
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES voices sabletowave.scm
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kttsd/festivalint
|
||||||
|
)
|
@ -0,0 +1,38 @@
|
|||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${CMAKE_SOURCE_DIR}/kttsd/libkttsd
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### libkttsd_fliteplugin (kpart)
|
||||||
|
|
||||||
|
tde_add_kpart( libkttsd_fliteplugin AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
fliteconfwidget.ui
|
||||||
|
fliteconf.cpp
|
||||||
|
fliteproc.cpp
|
||||||
|
fliteplugin.cpp
|
||||||
|
LINK
|
||||||
|
kttsd-shared
|
||||||
|
|
||||||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE kttsd_fliteplugin.desktop
|
||||||
|
DESTINATION ${SERVICES_INSTALL_DIR}
|
||||||
|
)
|
@ -0,0 +1,37 @@
|
|||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${CMAKE_SOURCE_DIR}/kttsd/libkttsd
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### libkttsd_freettsplugin (kpart)
|
||||||
|
|
||||||
|
tde_add_kpart( libkttsd_freettsplugin AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
freettsconfigwidget.ui
|
||||||
|
freettsconf.cpp
|
||||||
|
freettsproc.cpp
|
||||||
|
freettsplugin.cpp
|
||||||
|
LINK
|
||||||
|
kttsd-shared
|
||||||
|
|
||||||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE kttsd_freettsplugin.desktop
|
||||||
|
DESTINATION ${SERVICES_INSTALL_DIR}
|
||||||
|
)
|
@ -0,0 +1,45 @@
|
|||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${CMAKE_SOURCE_DIR}/kttsd/libkttsd
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
${TDE_LIB_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### libkttsd_hadifixplugin (kpart)
|
||||||
|
|
||||||
|
tde_add_kpart( libkttsd_hadifixplugin AUTOMOC
|
||||||
|
|
||||||
|
SOURCES
|
||||||
|
hadifixconfigui.ui
|
||||||
|
voicefileui.ui
|
||||||
|
hadifixconf.cpp
|
||||||
|
hadifixproc.cpp
|
||||||
|
hadifixplugin.cpp
|
||||||
|
LINK
|
||||||
|
tdecore-shared
|
||||||
|
kttsd-shared
|
||||||
|
|
||||||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data
|
||||||
|
|
||||||
|
tde_create_translated_desktop(
|
||||||
|
SOURCE kttsd_hadifixplugin.desktop
|
||||||
|
DESTINATION ${SERVICES_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
install(
|
||||||
|
FILES SSMLtoTxt2pho.xsl
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kttsd/hadifix/xslt
|
||||||
|
)
|
Loading…
Reference in new issue