parent
84d47eac22
commit
930640c5a4
@ -0,0 +1,84 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
cmake_minimum_required( VERSION 2.8 )
|
||||||
|
|
||||||
|
|
||||||
|
##### general package setup #####################
|
||||||
|
|
||||||
|
project( konversation )
|
||||||
|
|
||||||
|
|
||||||
|
##### include essential cmake modules ###########
|
||||||
|
|
||||||
|
include( FindPkgConfig )
|
||||||
|
include( CheckIncludeFile )
|
||||||
|
include( CheckLibraryExists )
|
||||||
|
# @Add othere required cmake modules here@
|
||||||
|
#
|
||||||
|
# EXAMPLE:
|
||||||
|
# include( CheckTypeSize )
|
||||||
|
# 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_XSCREENSAVER "Enable xscreensaver support" ${WITH_ALL_OPTIONS} )
|
||||||
|
# set WITH_XSCREENSAVER to use XScreensaver for auto-away feature
|
||||||
|
|
||||||
|
|
||||||
|
##### user requested modules ####################
|
||||||
|
|
||||||
|
option( BUILD_ALL "Build all" OFF )
|
||||||
|
option( BUILD_KONVERSATION "Build konversation" ${BUILD_ALL} )
|
||||||
|
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" )
|
||||||
|
|
||||||
|
|
||||||
|
##### konversation directories ##################
|
||||||
|
|
||||||
|
tde_conditional_add_subdirectory( BUILD_KONVERSATION konversation )
|
||||||
|
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,53 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
##### check for gcc visibility support #########
|
||||||
|
# FIXME
|
||||||
|
# This should check for [T]Qt3 visibility support
|
||||||
|
|
||||||
|
if( WITH_GCC_VISIBILITY )
|
||||||
|
if( NOT UNIX )
|
||||||
|
tde_message_fatal(FATAL_ERROR "\ngcc 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 )
|
||||||
|
|
||||||
|
|
||||||
|
tde_setup_architecture_flags( )
|
||||||
|
|
||||||
|
# XScreenSaver
|
||||||
|
if( BUILD_KONVERSATION AND WITH_XSCREENSAVER )
|
||||||
|
pkg_search_module( XSCREENSAVER xscrnsaver )
|
||||||
|
if( XSCREENSAVER_FOUND )
|
||||||
|
set( HAVE_XSCREENSAVER 1 )
|
||||||
|
else( XSCREENSAVER_FOUND )
|
||||||
|
tde_message_fatal( "xscreensaver is requested, but was not found on your system" )
|
||||||
|
endif( )
|
||||||
|
endif( BUILD_KONVERSATION AND WITH_XSCREENSAVER )
|
||||||
|
|
||||||
|
# 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 )
|
||||||
|
|
||||||
|
# required stuff
|
||||||
|
find_package( TQt )
|
||||||
|
find_package( TDE )
|
@ -0,0 +1,9 @@
|
|||||||
|
#cmakedefine VERSION "@VERSION@"
|
||||||
|
|
||||||
|
#cmakedefine HAVE_XSCREENSAVER
|
||||||
|
|
||||||
|
// FIXME: add KONVI_VERSION define
|
||||||
|
|
||||||
|
// Sane configuration options for modern KDE
|
||||||
|
#define USE_KNOTIFY
|
||||||
|
#define USE_INFOLIST
|
@ -0,0 +1,12 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_auto_add_subdirectories( )
|
@ -0,0 +1,17 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
|
||||||
|
tde_create_handbook(
|
||||||
|
DESTINATION konversation
|
||||||
|
LANG da
|
||||||
|
)
|
||||||
|
|
@ -0,0 +1,17 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# This documentation cannot be installed
|
||||||
|
# because is missing index.docbook
|
||||||
|
#
|
||||||
|
#################################################
|
@ -0,0 +1,17 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
|
||||||
|
tde_create_handbook(
|
||||||
|
DESTINATION konversation
|
||||||
|
LANG et
|
||||||
|
)
|
||||||
|
|
@ -0,0 +1,17 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
|
||||||
|
tde_create_handbook(
|
||||||
|
DESTINATION konversation
|
||||||
|
LANG it
|
||||||
|
)
|
||||||
|
|
@ -0,0 +1,14 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
|
||||||
|
tde_create_handbook( DESTINATION konversation )
|
||||||
|
|
@ -0,0 +1,17 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
|
||||||
|
tde_create_handbook(
|
||||||
|
DESTINATION konversation
|
||||||
|
LANG pt
|
||||||
|
)
|
||||||
|
|
@ -0,0 +1,17 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
|
||||||
|
tde_create_handbook(
|
||||||
|
DESTINATION konversation
|
||||||
|
LANG ru
|
||||||
|
)
|
||||||
|
|
@ -0,0 +1,17 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
|
||||||
|
tde_create_handbook(
|
||||||
|
DESTINATION konversation
|
||||||
|
LANG sv
|
||||||
|
)
|
||||||
|
|
@ -0,0 +1,14 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
add_subdirectory( src )
|
||||||
|
add_subdirectory( images )
|
||||||
|
add_subdirectory( scripts )
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
add_subdirectory( icons )
|
||||||
|
add_subdirectory( nickicons )
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_install_icons( )
|
||||||
|
|
@ -0,0 +1,18 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
add_subdirectory( alternative )
|
||||||
|
add_subdirectory( christmas )
|
||||||
|
add_subdirectory( classic )
|
||||||
|
add_subdirectory( default )
|
||||||
|
add_subdirectory( smiling )
|
||||||
|
add_subdirectory( square )
|
||||||
|
add_subdirectory( oxygen )
|
@ -0,0 +1,18 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
install( FILES irc_admin.png irc_away.png
|
||||||
|
irc_halfop.png irc_normal.png irc_op.png
|
||||||
|
irc_owner.png irc_voice.png index.desktop
|
||||||
|
DESTINATION
|
||||||
|
${DATA_INSTALL_DIR}/konversation/themes/alternative
|
||||||
|
)
|
||||||
|
|
@ -0,0 +1,18 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
install( FILES irc_admin.png irc_away.png
|
||||||
|
irc_halfop.png irc_normal.png irc_op.png
|
||||||
|
irc_owner.png irc_voice.png index.desktop
|
||||||
|
DESTINATION
|
||||||
|
${DATA_INSTALL_DIR}/konversation/themes/christmas
|
||||||
|
)
|
||||||
|
|
@ -0,0 +1,18 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
install( FILES irc_admin.png irc_away.png
|
||||||
|
irc_halfop.png irc_normal.png irc_op.png
|
||||||
|
irc_owner.png irc_voice.png index.desktop
|
||||||
|
DESTINATION
|
||||||
|
${DATA_INSTALL_DIR}/konversation/themes/classic
|
||||||
|
)
|
||||||
|
|
@ -0,0 +1,18 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
install( FILES irc_admin.png irc_away.png
|
||||||
|
irc_halfop.png irc_normal.png irc_op.png
|
||||||
|
irc_owner.png irc_voice.png index.desktop
|
||||||
|
DESTINATION
|
||||||
|
${DATA_INSTALL_DIR}/konversation/themes/default
|
||||||
|
)
|
||||||
|
|
@ -0,0 +1,18 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
install( FILES irc_admin.png irc_away.png
|
||||||
|
irc_halfop.png irc_normal.png irc_op.png
|
||||||
|
irc_owner.png irc_voice.png index.desktop
|
||||||
|
DESTINATION
|
||||||
|
${DATA_INSTALL_DIR}/konversation/themes/oxygen
|
||||||
|
)
|
||||||
|
|
@ -0,0 +1,18 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
install( FILES irc_admin.png irc_away.png
|
||||||
|
irc_halfop.png irc_normal.png irc_op.png
|
||||||
|
irc_owner.png irc_voice.png index.desktop
|
||||||
|
DESTINATION
|
||||||
|
${DATA_INSTALL_DIR}/konversation/themes/smiling
|
||||||
|
)
|
||||||
|
|
@ -0,0 +1,18 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
install( FILES irc_admin.png irc_away.png
|
||||||
|
irc_halfop.png irc_normal.png irc_op.png
|
||||||
|
irc_owner.png irc_voice.png index.desktop
|
||||||
|
DESTINATION
|
||||||
|
${DATA_INSTALL_DIR}/konversation/themes/square
|
||||||
|
)
|
||||||
|
|
@ -0,0 +1,20 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
install( FILES fortunes.dat
|
||||||
|
DESTINATION
|
||||||
|
${DATA_INSTALL_DIR}/konversation/scripts
|
||||||
|
)
|
||||||
|
|
||||||
|
install( PROGRAMS bug fortune gauge uptime tdeversion cmd sayclip weather sysinfo media mail tinyurl
|
||||||
|
DESTINATION
|
||||||
|
${DATA_INSTALL_DIR}/konversation/scripts
|
||||||
|
)
|
@ -0,0 +1,113 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
add_subdirectory( config )
|
||||||
|
add_subdirectory( linkaddressbook )
|
||||||
|
add_subdirectory( blowfish )
|
||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}/config
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}/config
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}/linkaddressbook
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}/blowfish
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### konversation (executable) #################
|
||||||
|
|
||||||
|
tde_add_executable( konversation AUTOMOC
|
||||||
|
SOURCES konviface.skel konviconfigdialog.cpp konversationstatusbar.cpp
|
||||||
|
konvisettingsdialog.cpp viewcontainer.cpp viewtree.cpp viewtreeitem.cpp
|
||||||
|
konversationmainwindow.cpp valuelistviewitem.cpp urlcatcher.cpp
|
||||||
|
scriptlauncher.cpp rawlog.cpp konvdcop.cpp channellistpanel.cpp
|
||||||
|
konsolepanel.cpp identity.cpp statuspanel.cpp dccrecipientdialog.cpp
|
||||||
|
topiccombobox.cpp nicksonline.cpp dcctransferpanel.cpp
|
||||||
|
dcctransferpanelitem.cpp highlight.cpp highlightviewitem.cpp modebutton.cpp
|
||||||
|
ignore_preferencesui.ui ignore_preferences.cpp ignore.cpp nicklistview.cpp
|
||||||
|
ircinput.cpp channeloptionsui.ui channeloptionsdialog.cpp
|
||||||
|
ignorelistviewitem.cpp images.cpp quickbutton.cpp chatwindow.cpp
|
||||||
|
outputfilter.cpp logfilereader.cpp query.cpp konversationapplication.cpp
|
||||||
|
nick.cpp inputfilter.cpp channel.cpp ircview.cpp server.cpp main.cpp
|
||||||
|
dcc_preferencesui.ui log_preferences.ui tabs_preferencesui.ui
|
||||||
|
tabs_preferences.cpp chatwindowappearance_preferences.ui
|
||||||
|
irccolorchooserui.ui colorsappearance_preferences.ui irccolorchooser.cpp
|
||||||
|
channellistviewitem.cpp osd.cpp trayicon.cpp dccchat.cpp multilineedit.cpp
|
||||||
|
nickinfo.cpp dccresumedialog.cpp konversationsound.cpp
|
||||||
|
quickconnectdialog.cpp serverlistdialog.cpp dcctransfersend.cpp
|
||||||
|
dcctransferrecv.cpp channelnick.cpp insertchardialog.cpp irccharsets.cpp
|
||||||
|
editnotifydialog.cpp common.cpp serverison.cpp sslsocket.cpp
|
||||||
|
servergroupsettings.cpp serversettings.cpp servergroupdialog.cpp
|
||||||
|
ssllabel.cpp serverdialog.cpp channeldialog.cpp identitydialog.cpp
|
||||||
|
topiclabel.cpp notificationhandler.cpp joinchannelui.ui
|
||||||
|
joinchanneldialog.cpp emoticon.cpp chatwindowbehaviour_preferences.ui
|
||||||
|
alias_preferencesui.ui osd_preferencesui.ui theme_preferencesui.ui
|
||||||
|
highlight_preferencesui.ui warnings_preferencesui.ui
|
||||||
|
warnings_preferences.cpp quickbuttons_preferencesui.ui
|
||||||
|
watchednicknames_preferencesui.ui generalbehavior_preferences.ui
|
||||||
|
connectionbehavior_preferences.ui fontappearance_preferences.ui
|
||||||
|
nicklistbehavior_preferencesui.ui konvibookmarkhandler.cpp
|
||||||
|
konvibookmarkmenu.cpp ircviewbox.cpp searchbar.cpp osd_preferences.cpp
|
||||||
|
theme_preferences.cpp dcc_preferences.cpp alias_preferences.cpp
|
||||||
|
highlight_preferences.cpp watchednicknames_preferences.cpp
|
||||||
|
quickbuttons_preferences.cpp nicklistbehavior_preferences.cpp
|
||||||
|
tabnotifications_preferences.ui multilinetextedit.cpp serverlistview.cpp
|
||||||
|
nicksonlineitem.cpp searchbarbase.ui autoreplace_preferencesui.ui
|
||||||
|
autoreplace_preferences.cpp servergroupdialogui.ui dcctransfer.cpp
|
||||||
|
dcctransfermanager.cpp dcctransferdetailedinfopanelui.ui
|
||||||
|
dcctransferdetailedinfopanel.cpp dcccommon.cpp queuetunerbase.ui
|
||||||
|
queuetuner.cpp ircqueue.cpp connectionsettings.cpp connectionmanager.cpp
|
||||||
|
awaymanager.cpp
|
||||||
|
LINK linkaddressbookui-static konversationconfig-static blowfish-static
|
||||||
|
tdeio-shared tdeabc-shared tdeimproxy-shared ${XSCREENSAVER_LIBRARIES}
|
||||||
|
DESTINATION ${BIN_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data ################################
|
||||||
|
|
||||||
|
install( FILES konversationui.rc eventsrc
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/konversation
|
||||||
|
)
|
||||||
|
|
||||||
|
install( PROGRAMS
|
||||||
|
konversation-0.19-colors.pl
|
||||||
|
konversation-0.19-sortorder.pl
|
||||||
|
konversation-0.19-appearance.pl
|
||||||
|
konversation-0.19-tabplacement.pl
|
||||||
|
konversation-0.19-custombrowser.pl
|
||||||
|
konversation-0.19-colorcodes.pl
|
||||||
|
konversation-0.19-notifylists.pl
|
||||||
|
konversation-0.20-quickbuttons.pl
|
||||||
|
konversation-0.20-customfonts.pl
|
||||||
|
DESTINATION ${KCONF_UPDATE_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
install( FILES konversation.desktop
|
||||||
|
DESTINATION ${XDG_APPS_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
install( FILES konvirc.protocol konvirc6.protocol
|
||||||
|
DESTINATION ${SERVICES_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
install( FILES konversation.upd
|
||||||
|
DESTINATION ${KCONF_UPDATE_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
@ -0,0 +1,33 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${CMAKE_SOURCE_DIR}/konversation/src
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### blowfish (static) #########################
|
||||||
|
|
||||||
|
tde_add_library( blowfish STATIC_PIC AUTOMOC
|
||||||
|
SOURCES b64stuff.cpp BlowfishCbc.cpp
|
||||||
|
blowfish.cpp mc_blowfish.cpp newblowfish.cpp
|
||||||
|
oldblowfish.cpp
|
||||||
|
)
|
||||||
|
|
@ -0,0 +1,38 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_SOURCE_DIR}/konversation/src
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### konversationconfig (static) ###############
|
||||||
|
|
||||||
|
tde_add_library( konversationconfig STATIC_PIC AUTOMOC
|
||||||
|
SOURCES preferences_base.kcfgc preferences.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### other data ################################
|
||||||
|
|
||||||
|
install( FILES konversation.kcfg
|
||||||
|
DESTINATION ${KCFG_INSTALL_DIR}
|
||||||
|
)
|
||||||
|
|
@ -0,0 +1,37 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
|
${CMAKE_SOURCE_DIR}/konversation/src
|
||||||
|
${CMAKE_SOURCE_DIR}/konversation/src/config
|
||||||
|
${CMAKE_BINARY_DIR}/konversation/src/config
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
##### linkaddressbookui (static) ################
|
||||||
|
|
||||||
|
tde_add_library( linkaddressbookui STATIC_PIC AUTOMOC
|
||||||
|
SOURCES linkaddressbookui_base.ui
|
||||||
|
linkaddressbookui.cpp addressbook_base.cpp
|
||||||
|
addressbook.cpp nicklisttooltip.cpp
|
||||||
|
nicksonlinetooltip.cpp kimiface.skel
|
||||||
|
addresseeitem.cpp
|
||||||
|
)
|
||||||
|
|
@ -0,0 +1,12 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_auto_add_subdirectories( )
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG ar )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG bg )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG ca )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG da )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG de )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG el )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG en_GB )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG es )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG et )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG fi )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG fr )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG gl )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG he )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG hu )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG it )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG ja )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG ka )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG ko )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG pa )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG pt )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG ru )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG sr )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG sr@Latn )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG sv )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG tr )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG zh_CN )
|
||||||
|
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2012 Golubev Alexander
|
||||||
|
# fatzer2 (AT) gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
tde_create_translation( LANG zh_TW )
|
||||||
|
|
Loading…
Reference in new issue