parent
bdf9130d36
commit
e9398903e0
@ -0,0 +1,78 @@
|
||||
############################################
|
||||
# #
|
||||
# Improvements and feedbacks are welcome #
|
||||
# #
|
||||
# This file is released under GPL >= 3 #
|
||||
# #
|
||||
############################################
|
||||
|
||||
|
||||
cmake_minimum_required( VERSION 2.8 )
|
||||
|
||||
|
||||
#### general package setup
|
||||
|
||||
project( kiosktool )
|
||||
set( VERSION R14.1.0 )
|
||||
|
||||
|
||||
#### include essential cmake modules
|
||||
|
||||
include( FindPkgConfig )
|
||||
include( CheckFunctionExists )
|
||||
include( CheckIncludeFile )
|
||||
include( CheckLibraryExists )
|
||||
include( CheckCSourceCompiles )
|
||||
include( CheckCXXSourceCompiles )
|
||||
|
||||
|
||||
#### include our cmake modules
|
||||
|
||||
set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" )
|
||||
include( TDEMacros )
|
||||
|
||||
|
||||
##### 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} )
|
||||
|
||||
|
||||
##### user requested modules
|
||||
|
||||
option( BUILD_ALL "Build all" ON )
|
||||
option( BUILD_DOC "Build documentation" ${BUILD_ALL} )
|
||||
option( BUILD_TRANSLATIONS "Build translations" ${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 "-Wl,--no-undefined" )
|
||||
set( CMAKE_MODULE_LINKER_FLAGS "-Wl,--no-undefined" )
|
||||
|
||||
|
||||
##### directories
|
||||
|
||||
add_subdirectory( ${PROJECT_NAME} )
|
||||
tde_conditional_add_subdirectory( BUILD_DOC doc )
|
||||
tde_conditional_add_subdirectory( BUILD_TRANSLATIONS po )
|
||||
|
||||
|
||||
|
||||
##### write configure files
|
||||
|
||||
configure_file( config.h.cmake config.h @ONLY )
|
@ -0,0 +1,45 @@
|
||||
###########################################
|
||||
# #
|
||||
# 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)
|
||||
|
||||
|
||||
##### check for gcc visibility support
|
||||
|
||||
if( WITH_GCC_VISIBILITY )
|
||||
if( NOT UNIX )
|
||||
tde_message_fatal( "gcc visibility support was requested, but your system is not *NIX" )
|
||||
endif( NOT UNIX )
|
||||
set( __KDE_HAVE_GCC_VISIBILITY 1 )
|
||||
set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fvisibility=hidden -fvisibility-inlines-hidden")
|
||||
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fvisibility=hidden -fvisibility-inlines-hidden")
|
||||
endif( WITH_GCC_VISIBILITY )
|
||||
|
||||
|
||||
##### gettext
|
||||
|
||||
if( BUILD_TRANSLATIONS )
|
||||
include( FindGettext )
|
||||
if( GETTEXT_FOUND )
|
||||
set( MSGFMT_EXECUTABLE ${GETTEXT_MSGFMT_EXECUTABLE}
|
||||
CACHE FILEPATH "path to msgfmt executable" )
|
||||
endif( GETTEXT_FOUND )
|
||||
|
||||
if( NOT MSGFMT_EXECUTABLE )
|
||||
tde_message_fatal( "msgfmt is required but was not found on your system." )
|
||||
endif( NOT MSGFMT_EXECUTABLE )
|
||||
endif( BUILD_TRANSLATIONS )
|
||||
|
@ -0,0 +1,8 @@
|
||||
#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@
|
@ -0,0 +1,7 @@
|
||||
add_subdirectory( ${PROJECT_NAME} )
|
||||
add_subdirectory( man )
|
||||
#add_subdirectory( da )
|
||||
#add_subdirectory( it )
|
||||
#add_subdirectory( nl )
|
||||
#add_subdirectory( pt )
|
||||
#add_subdirectory( sv )
|
@ -0,0 +1 @@
|
||||
|
@ -0,0 +1 @@
|
||||
|
@ -0,0 +1 @@
|
||||
tde_create_handbook( DESTINATION ${PROJECT_NAME} )
|
@ -0,0 +1,8 @@
|
||||
INSTALL(
|
||||
FILES
|
||||
${PROJECT_NAME}.1
|
||||
${PROJECT_NAME}-tdedirs.1
|
||||
|
||||
DESTINATION ${MAN_INSTALL_DIR}/man1
|
||||
COMPONENT doc
|
||||
)
|
@ -0,0 +1,146 @@
|
||||
.\" This file was generated by kdemangen.pl
|
||||
.TH KIOSKTOOL\-TDEDIRS 1 "Ago 2004" "Trinity Desktop Environment" "A tool to set $TDEDIRS according to the current user profile."
|
||||
.SH NAME
|
||||
kiosktool\-tdedirs
|
||||
\- A tool to set $TDEDIRS according to the current user profile.
|
||||
.SH SYNOPSIS
|
||||
kiosktool\-tdedirs [Qt\-options] [TDE\-options] [options]
|
||||
.SH DESCRIPTION
|
||||
|
||||
.SH OPTIONS
|
||||
.SS Options:
|
||||
.TP
|
||||
.B \-\-check
|
||||
Output currently active prefixes
|
||||
.SS 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
|
||||
.TP
|
||||
.B \-\-license
|
||||
Show license information
|
||||
.TP
|
||||
.B \-\-
|
||||
End of options
|
||||
.SS
|
||||
.SS TDE options:
|
||||
.TP
|
||||
.B \-\-caption <caption>
|
||||
Use 'caption' as name in the titlebar.
|
||||
.TP
|
||||
.B \-\-icon <icon>
|
||||
Use 'icon' as the application icon.
|
||||
.TP
|
||||
.B \-\-miniicon <icon>
|
||||
Use 'icon' as the icon in the titlebar.
|
||||
.TP
|
||||
.B \-\-config <filename>
|
||||
Use alternative configuration file.
|
||||
.TP
|
||||
.B \-\-dcopserver <server>
|
||||
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 <style>
|
||||
sets the application GUI style.
|
||||
.TP
|
||||
.B \-\-geometry <geometry>
|
||||
sets the client geometry of the main widget.
|
||||
.SS
|
||||
.SS Qt options:
|
||||
.TP
|
||||
.B \-\-display <displayname>
|
||||
Use the X\-server display 'displayname'.
|
||||
.TP
|
||||
.B \-\-session <sessionId>
|
||||
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 <count>
|
||||
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 <fontname>
|
||||
defines the application font.
|
||||
.TP
|
||||
.B \-\-bg, \-\-background <color>
|
||||
sets the default background color and an
|
||||
application palette (light and dark shades are
|
||||
calculated).
|
||||
.TP
|
||||
.B \-\-fg, \-\-foreground <color>
|
||||
sets the default foreground color.
|
||||
.TP
|
||||
.B \-\-btn, \-\-button <color>
|
||||
sets the default button color.
|
||||
.TP
|
||||
.B \-\-name <name>
|
||||
sets the application name.
|
||||
.TP
|
||||
.B \-\-title <title>
|
||||
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 <inputstyle>
|
||||
sets XIM (X Input Method) input style. Possible
|
||||
values are onthespot, overthespot, offthespot and
|
||||
root.
|
||||
.TP
|
||||
.B \-\-im <XIM server>
|
||||
set XIM server.
|
||||
.TP
|
||||
.B \-\-noxim
|
||||
disable XIM.
|
||||
.TP
|
||||
.B \-\-reverse
|
||||
mirrors the whole layout of widgets.
|
||||
.SS
|
||||
|
||||
.SH SEE ALSO
|
||||
Full user documentation is available through the TDE Help Center. You can also enter the URL
|
||||
.BR help:/kiosktool\-tdedirs/
|
||||
directly into konqueror or you can run
|
||||
.BR "`khelpcenter help:/kiosktool\-tdedirs/'"
|
||||
from the command\-line.
|
||||
.br
|
||||
.SH AUTHORS
|
||||
.nf
|
||||
|
@ -0,0 +1,150 @@
|
||||
.\" This file was generated by kdemangen.pl
|
||||
.TH KIOSKTOOL 1 "Ago 2004" "Trinity Desktop Environment" "KIOSK Admin Tool"
|
||||
.SH NAME
|
||||
kiosktool
|
||||
\- KIOSK Admin Tool
|
||||
.SH SYNOPSIS
|
||||
kiosktool [Qt\-options] [TDE\-options] [options]
|
||||
.SH DESCRIPTION
|
||||
With this application we can lock the access to some parts of Trinity desktop
|
||||
and its applications.
|
||||
|
||||
.SH OPTIONS
|
||||
.SS Options:
|
||||
.TP
|
||||
.B \-\-tderc <file>
|
||||
tderc file to save settings to [/etc/tderc]
|
||||
.SS 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
|
||||
.TP
|
||||
.B \-\-license
|
||||
Show license information
|
||||
.TP
|
||||
.B \-\-
|
||||
End of options
|
||||
.SS
|
||||
.SS TDE options:
|
||||
.TP
|
||||
.B \-\-caption <caption>
|
||||
Use 'caption' as name in the titlebar.
|
||||
.TP
|
||||
.B \-\-icon <icon>
|
||||
Use 'icon' as the application icon.
|
||||
.TP
|
||||
.B \-\-miniicon <icon>
|
||||
Use 'icon' as the icon in the titlebar.
|
||||
.TP
|
||||
.B \-\-config <filename>
|
||||
Use alternative configuration file.
|
||||
.TP
|
||||
.B \-\-dcopserver <server>
|
||||
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 <style>
|
||||
sets the application GUI style.
|
||||
.TP
|
||||
.B \-\-geometry <geometry>
|
||||
sets the client geometry of the main widget.
|
||||
.SS
|
||||
.SS Qt options:
|
||||
.TP
|
||||
.B \-\-display <displayname>
|
||||
Use the X\-server display 'displayname'.
|
||||
.TP
|
||||
.B \-\-session <sessionId>
|
||||
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 <count>
|
||||
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 <fontname>
|
||||
defines the application font.
|
||||
.TP
|
||||
.B \-\-bg, \-\-background <color>
|
||||
sets the default background color and an
|
||||
application palette (light and dark shades are
|
||||
calculated).
|
||||
.TP
|
||||
.B \-\-fg, \-\-foreground <color>
|
||||
sets the default foreground color.
|
||||
.TP
|
||||
.B \-\-btn, \-\-button <color>
|
||||
sets the default button color.
|
||||
.TP
|
||||
.B \-\-name <name>
|
||||
sets the application name.
|
||||
.TP
|
||||
.B \-\-title <title>
|
||||
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 <inputstyle>
|
||||
sets XIM (X Input Method) input style. Possible
|
||||
values are onthespot, overthespot, offthespot and
|
||||
root.
|
||||
.TP
|
||||
.B \-\-im <XIM server>
|
||||
set XIM server.
|
||||
.TP
|
||||
.B \-\-noxim
|
||||
disable XIM.
|
||||
.TP
|
||||
.B \-\-reverse
|
||||
mirrors the whole layout of widgets.
|
||||
.SS
|
||||
|
||||
.SH SEE ALSO
|
||||
Full user documentation is available through the TDE Help Center. You can also enter the URL
|
||||
.BR help:/kiosktool/
|
||||
directly into konqueror or you can run
|
||||
.BR "`khelpcenter help:/kiosktool/'"
|
||||
from the command\-line.
|
||||
.br
|
||||
.SH AUTHORS
|
||||
.nf
|
||||
Waldo Bastian <bastian@kde.org>
|
||||
.br
|
||||
|
@ -0,0 +1 @@
|
||||
|
@ -0,0 +1 @@
|
||||
|
@ -0,0 +1 @@
|
||||
|
@ -0,0 +1,93 @@
|
||||
add_subdirectory( kcms )
|
||||
|
||||
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}
|
||||
)
|
||||
|
||||
|
||||
##### kiosktool (executable)
|
||||
|
||||
tde_add_executable( ${PROJECT_NAME} AUTOMOC
|
||||
|
||||
SOURCES
|
||||
main.cpp
|
||||
kioskgui.cpp
|
||||
kioskdata.cpp
|
||||
kioskrun.cpp
|
||||
mainview.ui
|
||||
profileSelectionPage_ui.ui
|
||||
profilePropsPage.cpp
|
||||
profilePropsPage_ui.ui
|
||||
pageWidget.cpp
|
||||
component.cpp
|
||||
desktopComponent.cpp
|
||||
menueditComponent.cpp
|
||||
screensaverComponent.cpp
|
||||
panelComponent.cpp
|
||||
filetypeeditComponent.cpp
|
||||
componentSelectionPage.cpp
|
||||
componentSelectionPage_ui.ui
|
||||
componentPage.cpp
|
||||
componentPage_ui.ui
|
||||
userManagement.cpp
|
||||
userManagement_ui.ui
|
||||
userManagementGroup_ui.ui
|
||||
userManagementUser_ui.ui
|
||||
kioskConfigDialog.cpp
|
||||
kioskConfigDialog_ui.ui
|
||||
kiosksync.cpp
|
||||
LINK
|
||||
tdecore-shared
|
||||
tdeui-shared
|
||||
tdeio-shared
|
||||
|
||||
DESTINATION ${BIN_INSTALL_DIR}
|
||||
)
|
||||
|
||||
|
||||
##### kiosktool-tdedirs (executable)
|
||||
|
||||
tde_add_executable( kiosktool-tdedirs AUTOMOC
|
||||
SOURCES kiosktool-tdedirs.cpp
|
||||
LINK tdecore-shared
|
||||
DESTINATION ${BIN_INSTALL_DIR}
|
||||
)
|
||||
|
||||
|
||||
##### icons
|
||||
|
||||
tde_install_icons( ${PROJECT_NAME} )
|
||||
|
||||
|
||||
##### other data
|
||||
|
||||
install(
|
||||
FILES
|
||||
kiosktoolui.rc
|
||||
kiosk_data.xml
|
||||
caption.png
|
||||
background.png
|
||||
logo.png
|
||||
caption-da.png
|
||||
caption-empty.png
|
||||
caption-et.png
|
||||
caption-pt.png
|
||||
caption-pt_BR.png
|
||||
caption-sv.png
|
||||
|
||||
DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}
|
||||
)
|
||||
|
||||
install(
|
||||
FILES kiosktool.desktop
|
||||
DESTINATION ${XDG_APPS_INSTALL_DIR}
|
||||
)
|
@ -0,0 +1 @@
|
||||
add_subdirectory( autostart )
|
@ -0,0 +1,34 @@
|
||||
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}
|
||||
)
|
||||
|
||||
|
||||
##### kcm_autostart (kpart)
|
||||
|
||||
tde_add_kpart( kcm_autostart AUTOMOC
|
||||
SOURCES kcmautostart.cpp
|
||||
LINK tdeio-shared
|
||||
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||||
)
|
||||
|
||||
|
||||
##### icons
|
||||
|
||||
tde_install_icons( autostart )
|
||||
|
||||
|
||||
##### other data
|
||||
|
||||
install(
|
||||
FILES kcmautostart.desktop
|
||||
DESTINATION ${XDG_APPS_INSTALL_DIR}
|
||||
)
|
@ -0,0 +1 @@
|
||||
tde_auto_add_subdirectories( )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG bg )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG br )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG ca )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG cs )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG cy )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG da )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG de )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG en_GB )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG es )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG et )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG fr )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG ga )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG is )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG it )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG lt )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG mt )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG nl )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG pt )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG pt_BR )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG ro )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG ru )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG sr )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG sr@Latn )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG sv )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG ta )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG tr )
|
@ -0,0 +1 @@
|
||||
tde_create_translation( LANG xx )
|
Loading…
Reference in new issue