Branch: r14.0.x

0e865e2b 2010-02-02 19:37:00 tpearson
Added abandoned KDE3 version of the GTK Qt theme engine

git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1084394 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
A AUTHORS
A CMake/Modules/COPYING-CMAKE-SCRIPTS
A CMake/Modules/FindMsgfmt.cmake
A CMake/Modules/GtkQt.cmake
A CMakeLists.txt
A COPYING
A ChangeLog
A Doxyfile
A INSTALL
A NEWS
A README
A TODO
A autopackage/default.apspec
A config.guess
A config.guess.cdbs-orig
A config.sub
A config.sub.cdbs-orig
A configure
A kcm_gtk/CMakeLists.txt
A kcm_gtk/emacsdetails.ui
A kcm_gtk/kcmgtk.cpp
A kcm_gtk/kcmgtk.desktop
A kcm_gtk/kcmgtk.h
A kcm_gtk/kcmgtkwidget.ui
A kcm_gtk/mozillaprofile.ui
A kcm_gtk/searchpaths.ui
A po/CMakeLists.txt
A po/bg.po
A po/de.po
A po/es.po
A po/fr.po
A po/gtkqtengine.pot
A po/it.po
A po/nn.po
A po/ru.po
A po/sv.po
A po/tr.po
A src/CMakeLists.txt
A src/gtkrc
A src/qt_main.c
A src/qt_qt_wrapper.cpp
A src/qt_qt_wrapper.h
A src/qt_rc_style.c
A src/qt_rc_style.h
A src/qt_style.h
A src/qt_theme_draw.c
diff --git a/AUTHORS b/AUTHORS
new file mode 100644
index 0000000..4410359
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1 @@
+David Sansome <me@...>
diff --git a/CMake/Modules/COPYING-CMAKE-SCRIPTS b/CMake/Modules/COPYING-CMAKE-SCRIPTS
new file mode 100644
index 0000000..9cb049d
--- /dev/null
+++ b/CMake/Modules/COPYING-CMAKE-SCRIPTS
@@ -0,0 +1,27 @@
+This licence file applies only to FindMsgfmt.cmake and was taken from:
+http://code.google.com/p/cmake-modules/
+
+-----------------------------------------------------------------------
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+
+1. Redistributions of source code must retain the copyright
+   notice, this list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the copyright
+   notice, this list of conditions and the following disclaimer in the
+   documentation and/or other materials provided with the distribution.
+3. The name of the author may not be used to endorse or promote products 
+   derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/CMake/Modules/FindMsgfmt.cmake b/CMake/Modules/FindMsgfmt.cmake
new file mode 100644
index 0000000..60e33ee
--- /dev/null
+++ b/CMake/Modules/FindMsgfmt.cmake
@@ -0,0 +1,86 @@
+#
+# - Try to find the msgfmt executeable
+#
+# It will set the following variables:
+#
+#  MSGFMT_FOUND
+#  MSGFMT_EXECUTABLE
+#
+###################################################################
+#
+#  Copyright (c) 2006, Andreas Schneider <mail@...>
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor,
+# Boston, MA  02110-1301, USA.
+#
+###################################################################
+#
+#  Copyright (c) 2006 Andreas Schneider <mail@...>
+#  All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+#
+# * Redistributions of source code must retain the above copyright
+#   notice, this list of conditions and the following disclaimer.
+#
+# * Redistributions in binary form must reproduce the above copyright
+#   notice, this list of conditions and the following disclaimer in
+#   the documentation and/or other materials provided with the
+#   distribution.
+#
+# * Neither the name of the cmake-modules nor the names of its
+#   contributors may be used to endorse or promote products derived
+#   from this software without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+# POSSIBILITY OF SUCH DAMAGE.
+#
+
+IF (MSGFMT_EXECUTABLE)
+  # in cache alread?
+  SET(MSGFMT_FOUND TRUE)
+ELSE (MSGFMT_EXECUTABLE)
+  IF (UNIX)
+    FIND_PROGRAM(MSGFMT_EXECUTABLE
+      NAMES
+        msgfmt
+      PATHS
+        /usr/bin
+        /usr/local/bin
+    )
+
+    IF(MSGFMT_EXECUTABLE)
+      SET(MSGFMT_FOUND TRUE)
+    ELSE(MSGFMT_EXECUTABLE)
+      MESSAGE(FATAL_ERROR "msgfmt not found - po files can't be processed")
+    ENDIF(MSGFMT_EXECUTABLE)
+
+    MARK_AS_ADVANCED(MSGFMT_EXECUTABLE)
+  ENDIF(UNIX)
+ENDIF (MSGFMT_EXECUTABLE)
+
+# vim:et ts=2 sw=2 comments=\:\#
diff --git a/CMake/Modules/GtkQt.cmake b/CMake/Modules/GtkQt.cmake
new file mode 100644
index 0000000..1251d95
--- /dev/null
+++ b/CMake/Modules/GtkQt.cmake
@@ -0,0 +1,56 @@
+# Both these macros are taken from KDE3Macros.cmake
+# Apart from the names, the only modification is that they take a destination argument
+
+MACRO(GTKQT_KDE3_ADD_KPART _target_NAME _destination _with_PREFIX)
+#is the first argument is "WITH_PREFIX" then keep the standard "lib" prefix, otherwise SET the prefix empty
+   IF (${_with_PREFIX} STREQUAL "WITH_PREFIX")
+      SET(_first_SRC)
+   ELSE (${_with_PREFIX} STREQUAL "WITH_PREFIX")
+      SET(_first_SRC ${_with_PREFIX})
+   ENDIF (${_with_PREFIX} STREQUAL "WITH_PREFIX")
+
+   IF (KDE3_ENABLE_FINAL)
+      KDE3_CREATE_FINAL_FILE(${_target_NAME}_final.cpp ${_first_SRC} ${ARGN})
+      ADD_LIBRARY(${_target_NAME} MODULE  ${_target_NAME}_final.cpp)
+   ELSE (KDE3_ENABLE_FINAL)
+      ADD_LIBRARY(${_target_NAME} MODULE ${_first_SRC} ${ARGN})
+   ENDIF (KDE3_ENABLE_FINAL)
+
+   IF(_first_SRC)
+      SET_TARGET_PROPERTIES(${_target_NAME} PROPERTIES PREFIX "")
+   ENDIF(_first_SRC)
+
+   GTKQT_KDE3_INSTALL_LIBTOOL_FILE(${_target_NAME} ${_destination})
+
+ENDMACRO(GTKQT_KDE3_ADD_KPART)
+
+MACRO(GTKQT_KDE3_INSTALL_LIBTOOL_FILE _target _destination)
+   GET_TARGET_PROPERTY(_target_location ${_target} LOCATION)
+
+   GET_FILENAME_COMPONENT(_laname ${_target_location} NAME_WE)
+   GET_FILENAME_COMPONENT(_soname ${_target_location} NAME)
+   SET(_laname ${CMAKE_CURRENT_BINARY_DIR}/${_laname}.la)
+
+   FILE(WRITE ${_laname} "# ${_laname} - a libtool library file, generated by cmake \n")
+   FILE(APPEND ${_laname} "# The name that we can dlopen(3).\n")
+   FILE(APPEND ${_laname} "dlname='${_soname}'\n")
+   FILE(APPEND ${_laname} "# Names of this library\n")
+   FILE(APPEND ${_laname} "library_names='${_soname} ${_soname} ${_soname}'\n")
+   FILE(APPEND ${_laname} "# The name of the static archive\n")
+   FILE(APPEND ${_laname} "old_library=''\n")
+   FILE(APPEND ${_laname} "# Libraries that this one depends upon.\n")
+   FILE(APPEND ${_laname} "dependency_libs=''\n")
+#   FILE(APPEND ${_laname} "dependency_libs='${${_target}_LIB_DEPENDS}'\n")
+   FILE(APPEND ${_laname} "# Version information.\ncurrent=0\nage=0\nrevision=0\n")
+   FILE(APPEND ${_laname} "# Is this an already installed library?\ninstalled=yes\n")
+   FILE(APPEND ${_laname} "# Should we warn about portability when linking against -modules?\nshouldnotlink=yes\n")
+   FILE(APPEND ${_laname} "# Files to dlopen/dlpreopen\ndlopen=''\ndlpreopen=''\n")
+   FILE(APPEND ${_laname} "# Directory that this library needs to be installed in:\n")
+   FILE(APPEND ${_laname} "libdir='${CMAKE_INSTALL_PREFIX}/lib/kde3'\n")
+
+   INSTALL(
+      FILES ${_laname}
+      DESTINATION ${_destination}
+   )
+
+ENDMACRO(GTKQT_KDE3_INSTALL_LIBTOOL_FILE)
\ No newline at end of file
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..bd85e91
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,94 @@
+PROJECT (gtk-qt-engine)
+INCLUDE (UsePkgConfig)
+
+# Find KDE
+FIND_PACKAGE(KDE3 REQUIRED)
+
+# Find Qt
+FIND_PACKAGE(Qt3 REQUIRED)
+MESSAGE(STATUS "Found Qt library: ${QT_QT_LIBRARY}")
+
+# Find GTK
+PKGCONFIG(gtk+-2.0 GTK_INCLUDE_DIR GTK_LIB_DIR GTK_LINK_FLAGS GTK_CFLAGS)
+IF (NOT GTK_INCLUDE_DIR)
+	MESSAGE(FATAL_ERROR "GTK was not found.  Ensure you have the GTK development libraries installed, and GTK's pkgconfig files are in your pkgconfig search path.")
+ENDIF (NOT GTK_INCLUDE_DIR)
+MESSAGE(STATUS "Found GTK include dir: ${GTK_INCLUDE_DIR}")
+MESSAGE(STATUS "Found GTK library dir: ${GTK_LIB_DIR}")
+
+# Find Bonobo
+PKGCONFIG(libbonoboui-2.0 BONOBO_INCLUDE_DIR BONOBO_LIB_DIR BONOBO_LINK_FLAGS BONOBO_CFLAGS)
+IF (NOT BONOBO_INCLUDE_DIR)
+	MESSAGE(STATUS "bonoboui not found.  Some features of the theme engine will not work as intended.")
+ELSE (NOT BONOBO_INCLUDE_DIR)
+	MESSAGE(STATUS "Found Bonobo include dir: ${BONOBO_INCLUDE_DIR}")
+	MESSAGE(STATUS "Found Bonobo library dir: ${BONOBO_LIB_DIR}")
+	SET(BONOBO_DEFINITIONS -D HAVE_BONOBO)
+ENDIF (NOT BONOBO_INCLUDE_DIR)
+
+# Find msgfmt
+SET(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMake/Modules)
+FIND_PACKAGE(Msgfmt REQUIRED)
+
+# Find xgettext
+FIND_PROGRAM(
+	XGETTEXT_PATH
+	NAMES "xgettext"
+	PATHS "/usr/bin"
+)
+IF(${XGETTEXT_PATH} STREQUAL "XGETTEXT_PATH-NOTFOUND")
+	MESSAGE(STATUS "xgettext not found.  You will not be able to run 'make extract_messages' in the 'po' directory.")
+ELSE(${XGETTEXT_PATH} STREQUAL "XGETTEXT_PATH-NOTFOUND")
+	MESSAGE(STATUS "Found xgettext: ${XGETTEXT_PATH}")
+ENDIF(${XGETTEXT_PATH} STREQUAL "XGETTEXT_PATH-NOTFOUND")
+
+# Find extractrc
+FIND_PROGRAM(
+	EXTRACTRC_PATH
+	NAMES "extractrc"
+	PATHS "/usr/bin"
 ** Diff limit reached (max: 250 lines) **
d8ed9b81 2010-03-10 17:36:55 tpearson
Added CMake uninstall file


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1101810 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
A cmake_uninstall.cmake.in
 ** Diff limit reached (max: 250 lines) **
cf33678f 2010-09-05 23:48:13 tpearson
Fix FTBFS on Ubuntu Maverick


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1172006 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
b739bb30 2011-05-04 22:02:35 tpearson
Start fixing up CMake for gtk-qt-engine


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1230445 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M CMakeLists.txt
 ** Diff limit reached (max: 250 lines) **
5cf5e6b8 2011-05-04 22:50:29 tpearson
Migrate gtk-qt-trinity to new CMake system (mostly)


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1230450 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
A ConfigureChecks.cmake
A po/bg/bg.po
A po/de/de.po
A po/es/es.po
A po/fr/fr.po
A po/it/it.po
A po/nn/nn.po
A po/ru/ru.po
A po/sv/sv.po
A po/tr/tr.po
M CMakeLists.txt
M kcm_gtk/CMakeLists.txt
M po/CMakeLists.txt
M src/CMakeLists.txt
R po/bg.po
R po/de.po
R po/es.po
R po/fr.po
R po/it.po
R po/nn.po
R po/ru.po
R po/sv.po
R po/tr.po
 ** Diff limit reached (max: 250 lines) **
91064f3b 2011-05-05 12:16:35 tpearson
Port gtk-qt-engine to TQt4
This enables compilation under both Qt3 and Qt4


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1230499 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M kcm_gtk/emacsdetails.ui
M kcm_gtk/kcmgtk.cpp
M kcm_gtk/kcmgtk.h
M kcm_gtk/kcmgtkwidget.ui
M kcm_gtk/mozillaprofile.ui
M kcm_gtk/searchpaths.ui
M src/qt_main.c
M src/qt_qt_wrapper.cpp
M src/qt_qt_wrapper.h
M src/qt_rc_style.c
M src/qt_rc_style.h
M src/qt_style.h
M src/qt_theme_draw.c
 ** Diff limit reached (max: 250 lines) **
b3f402e9 2011-06-14 12:42:28 tpearson
Rename all instances of "tqgeometry" (including quotes) to the more-correct "geometry" string


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1236712 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M kcm_gtk/emacsdetails.ui
M kcm_gtk/kcmgtkwidget.ui
M kcm_gtk/mozillaprofile.ui
M kcm_gtk/searchpaths.ui
 ** Diff limit reached (max: 250 lines) **
0a404f40 2011-07-08 21:23:29 tpearson
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...]
tqinvalidate[...]
tqparent[...]
tqmask[...]
tqlayout[...]
tqalignment[...]


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M kcm_gtk/emacsdetails.ui
M kcm_gtk/kcmgtkwidget.ui
M kcm_gtk/mozillaprofile.ui
M kcm_gtk/searchpaths.ui
M src/qt_qt_wrapper.cpp
M src/qt_rc_style.c
M src/qt_rc_style.h
M src/qt_style.h
M src/qt_theme_draw.c
 ** Diff limit reached (max: 250 lines) **
aaca1f57 2011-08-01 16:04:03 tpearson
Fix gtk-qt-engine loading failure


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1244319 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M ConfigureChecks.cmake
M kcm_gtk/kcmgtk.cpp
M src/qt_qt_wrapper.cpp
M src/qt_qt_wrapper.h
M src/qt_rc_style.c
M src/qt_rc_style.h
M src/qt_style.h
M src/qt_theme_draw.c
 ** Diff limit reached (max: 250 lines) **
fd3ca835 2011-08-01 16:26:04 tpearson
Fix gtk-qt-engine FTBFS caused by prior commit


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1244321 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M ConfigureChecks.cmake
 ** Diff limit reached (max: 250 lines) **
21de1dce 2011-08-01 18:28:01 tpearson
Fix gtk-qt-engine checkboxes and radiobuttons disappearing on click
This disables the (badly broken) focusrect support


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1244336 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
d64f4816 2011-08-10 01:08:18 tpearson
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M kcm_gtk/kcmgtk.cpp
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
d7fee1a2 2011-08-10 17:19:39 tpearson
rename the following methods:
tqparent parent
tqmask mask


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M kcm_gtk/kcmgtk.cpp
M kcm_gtk/kcmgtk.h
M src/qt_qt_wrapper.cpp
M src/qt_theme_draw.c
 ** Diff limit reached (max: 250 lines) **
eedf09ff 2011-08-17 17:19:23 tpearson
Fix gtk-qt-engine FTBFS


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1247893 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
ba933811 2011-08-20 20:43:11 tpearson
Convert remaining references to kde3 (e.g. in paths) to trinity


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1248408 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M CMake/Modules/GtkQt.cmake
M autopackage/default.apspec
 ** Diff limit reached (max: 250 lines) **
84c9dfc7 2011-10-10 15:53:06 tpearson
Fix potential GTK theme engine crash
Thanks to MutantTurkey for tracing the problem!


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1258270 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M src/qt_theme_draw.c
 ** Diff limit reached (max: 250 lines) **
2ce5b382 2011-10-14 21:07:16 tpearson
Clean up gtk-qt-engine a bit


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1258949 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M src/qt_theme_draw.c
 ** Diff limit reached (max: 250 lines) **
94a5414c 2011-10-18 21:53:52 tpearson
Fix up a number of GTK/Qt theme engine problems


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1259595 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M src/CMakeLists.txt
M src/qt_qt_wrapper.cpp
M src/qt_qt_wrapper.h
M src/qt_theme_draw.c
 ** Diff limit reached (max: 250 lines) **
09b929ee 2011-10-18 22:21:21 tpearson
Fix gtk-qt-engine tab bars


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1259596 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M src/qt_qt_wrapper.cpp
M src/qt_qt_wrapper.h
M src/qt_rc_style.c
M src/qt_theme_draw.c
 ** Diff limit reached (max: 250 lines) **
0ee1f62b 2011-10-18 23:31:26 tpearson
Fix additional GTK theme engine problems


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1259599 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M src/qt_qt_wrapper.cpp
M src/qt_qt_wrapper.h
M src/qt_theme_draw.c
 ** Diff limit reached (max: 250 lines) **
06969072 2011-10-19 00:06:16 tpearson
Add notes to gtk engine on how to fix the Tree View...when GTK fixes it first!


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1259600 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
4b23394a 2011-10-24 13:08:17 tpearson
Fix GTK Qt engine when used with a compositor supporting ARGB visuals


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1260464 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
d2d02601 2011-10-24 18:21:18 tpearson
Fix menu bar drawing failures on Firefox v4+ and Thunderbird when used with the GTK Qt Theme Engine
This partially resolves Bug 546


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1260478 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M src/qt_qt_wrapper.cpp
M src/qt_qt_wrapper.h
M src/qt_theme_draw.c
 ** Diff limit reached (max: 250 lines) **
8310ddd1 2011-10-26 01:15:09 tpearson
Fix highly visible incorrect mapping of GTK generic file icon to TDE unknown mimetype icon
This is rammed throught the hard freeze only due to its high visibility in common GTK applications such as Firefox


git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/gtk-qt-engine@1260773 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
ab23af4c 2011-11-04 16:44:46 Timothy Pearson
Added common directories
A .gitmodules
A admin
A cmake
 ** Diff limit reached (max: 250 lines) **
8e5366f4 2011-11-05 21:59:09 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
58e9aa0f 2011-11-06 02:18:14 Timothy Pearson
Additional kde to tde renaming
M kcm_gtk/CMakeLists.txt
M src/CMakeLists.txt
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
c447930d 2011-11-06 03:00:59 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
bb4640b4 2011-11-06 03:01:00 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
c70e6f8f 2011-11-06 16:07:47 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
238ba77e 2011-11-06 22:21:14 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
4aaf4e1a 2011-11-08 02:06:59 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
03cdfef6 2011-11-16 13:37:48 Timothy Pearson
Additional renaming of kde to tde
M Doxyfile
M autopackage/default.apspec
M po/de/de.po
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
05bf685b 2011-11-16 13:56:46 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
9e4e633b 2011-11-16 13:56:47 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
900050bb 2011-11-18 01:52:55 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
f69ba240 2011-11-26 14:30:40 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
1ef03bac 2011-12-03 23:06:46 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
95e7da48 2011-12-07 18:48:49 Timothy Pearson
Rename KDEHOME and KDEDIR
M autopackage/default.apspec
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
bea17e26 2011-12-07 20:34:22 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
c0999e13 2011-12-08 17:20:46 Timothy Pearson
Rename additional KDE strings
M kcm_gtk/kcmgtk.cpp
 ** Diff limit reached (max: 250 lines) **
7225c815 2011-12-15 15:29:43 Timothy Pearson
Rename a number of old tq methods that are no longer tq specific
M kcm_gtk/emacsdetails.ui
M kcm_gtk/kcmgtk.cpp
M kcm_gtk/kcmgtkwidget.ui
M kcm_gtk/searchpaths.ui
M src/qt_qt_wrapper.cpp
M src/qt_theme_draw.c
 ** Diff limit reached (max: 250 lines) **
ca659948 2011-12-16 09:55:45 Timothy Pearson
Revert "Rename a number of old tq methods that are no longer tq specific"

This reverts commit 7225c815f485e09d2d967c4e97913cf676029103.
M kcm_gtk/emacsdetails.ui
M kcm_gtk/kcmgtk.cpp
M kcm_gtk/kcmgtkwidget.ui
M kcm_gtk/searchpaths.ui
M src/qt_qt_wrapper.cpp
M src/qt_theme_draw.c
 ** Diff limit reached (max: 250 lines) **
8b600a29 2011-12-18 18:08:38 Timothy Pearson
Rename old tq methods that no longer need a unique name
M kcm_gtk/emacsdetails.ui
M kcm_gtk/kcmgtkwidget.ui
M kcm_gtk/searchpaths.ui
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
a2f8e999 2011-12-19 11:35:35 Timothy Pearson
Remove additional unneeded tq method conversions
M kcm_gtk/kcmgtk.cpp
M kcm_gtk/kcmgtkwidget.ui
M kcm_gtk/searchpaths.ui
M src/qt_theme_draw.c
 ** Diff limit reached (max: 250 lines) **
fae91e75 2011-12-21 14:03:54 Timothy Pearson
Rename obsolete tq methods to standard names
M kcm_gtk/emacsdetails.ui
M kcm_gtk/kcmgtk.cpp
M kcm_gtk/kcmgtkwidget.ui
M kcm_gtk/searchpaths.ui
M src/qt_qt_wrapper.cpp
M src/qt_theme_draw.c
 ** Diff limit reached (max: 250 lines) **
90085d29 2011-12-24 11:33:14 Timothy Pearson
Rename a few stragglers
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
5fe88dbb 2012-01-01 00:07:13 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
ac7b9858 2012-01-02 12:02:07 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
6b43f551 2012-01-20 01:59:09 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
15640926 2012-02-01 17:01:18 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
81623ae6 2012-02-02 03:48:45 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
a451184d 2012-02-02 14:17:34 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
ea38fe7e 2012-02-07 19:36:11 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
3df9dc31 2012-02-10 13:27:49 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
0ff265ca 2012-02-11 14:21:42 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
43ab8075 2012-02-11 14:21:43 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
c7599e6e 2012-02-12 17:18:22 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
e05e63f5 2012-02-14 21:57:30 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
49bac133 2012-02-16 17:37:31 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
6043858f 2012-02-17 15:59:01 Timothy Pearson
Remove spurious TQ_OBJECT instances
M kcm_gtk/kcmgtk.h
 ** Diff limit reached (max: 250 lines) **
d7455797 2012-02-19 16:03:06 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
9b59f291 2012-02-25 17:28:19 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
02e3d4cb 2012-02-26 14:15:30 Timothy Pearson
Rename kde-config to tde-config
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
77b8d5a5 2012-02-26 15:53:38 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
251fb7bd 2012-02-26 15:53:40 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
094e695e 2012-03-05 19:21:05 Darrell Anderson
Update desktop files: OnlyShowIn=KDE; -> OnlyShowIn=TDE;
M kcm_gtk/kcmgtk.desktop
 ** Diff limit reached (max: 250 lines) **
e60accf8 2012-03-06 00:32:31 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
d41dc48c 2012-03-06 12:51:59 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
1512694e 2012-03-13 03:16:04 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
89d91eb6 2012-03-20 21:49:38 Darrell Anderson
Fix KDE->TDE branding issues in KControl dialog.
Thanks to David C. Rankin for the patch!
M kcm_gtk/kcmgtkwidget.ui
 ** Diff limit reached (max: 250 lines) **
7d6bc23e 2012-03-26 16:21:27 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
4d0fd0fd 2012-04-10 23:11:41 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
59dd69ba 2012-04-10 23:11:42 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
12ff6e75 2012-04-14 17:53:16 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
a6cb9b46 2012-05-19 02:41:49 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
2c4236cf 2012-05-26 11:46:36 Darrell Anderson
Branding cleanup: KDE -> TDE
M po/bg/bg.po
 ** Diff limit reached (max: 250 lines) **
d4990a5b 2012-06-03 12:37:01 Darrell Anderson
Branding cleanup: KDE -> TDE
M kcm_gtk/kcmgtk.cpp
 ** Diff limit reached (max: 250 lines) **
7f489a3b 2012-06-08 16:32:49 Darrell Anderson
Update XDG information in support of bug report 892.
M kcm_gtk/kcmgtk.desktop
 ** Diff limit reached (max: 250 lines) **
fd470a97 2012-06-08 17:24:12 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
b7f8a60e 2012-06-08 17:24:14 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
a1380ee8 2012-06-11 18:17:53 Slávek Banko
Prevent from registering with DCOP
This resolves Bug 956
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
a252728d 2012-06-12 17:42:00 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
0234eab1 2012-06-14 02:17:23 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
2aa62963 2012-06-15 09:09:50 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
fb849fd6 2012-06-19 17:03:51 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
bb353fcb 2012-06-21 20:40:24 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
cb8ae314 2012-06-27 20:28:24 Darrell Anderson
Branding: KDE->TDE
M kcm_gtk/kcmgtk.desktop
 ** Diff limit reached (max: 250 lines) **
1525fb2f 2012-07-10 13:05:52 Darrell Anderson
Fix "Only <glib.h> can be included directly" build errors.
M src/qt_theme_draw.c
 ** Diff limit reached (max: 250 lines) **
29e73fb8 2012-08-04 06:05:23 Slávek Banko
Fix localization files name
Thanks to Francois Andriot for notice
A po/bg/gtkqtengine.po
A po/de/gtkqtengine.po
A po/es/gtkqtengine.po
A po/fr/gtkqtengine.po
A po/it/gtkqtengine.po
A po/nn/gtkqtengine.po
A po/ru/gtkqtengine.po
A po/sv/gtkqtengine.po
A po/tr/gtkqtengine.po
R po/bg/bg.po
R po/de/de.po
R po/es/es.po
R po/fr/fr.po
R po/it/it.po
R po/nn/nn.po
R po/ru/ru.po
R po/sv/sv.po
R po/tr/tr.po
 ** Diff limit reached (max: 250 lines) **
fc560d41 2012-08-07 02:26:17 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
9a716d72 2012-09-10 01:54:48 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
6cead3ae 2012-09-14 22:42:12 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
1ef0dc65 2012-10-22 20:09:06 Darrell Anderson
Add cmake support for WITH_GCC_VISIBILITY.
M ConfigureChecks.cmake
 ** Diff limit reached (max: 250 lines) **
a02874aa 2012-10-26 02:51:31 Timothy Pearson
Fix a couple of glitches in tabs and dropdown lists
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
a862630a 2012-10-26 02:51:52 Timothy Pearson
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/gtk-qt-engine
M ConfigureChecks.cmake
 ** Diff limit reached (max: 250 lines) **
381fd1dc 2012-11-17 14:21:59 Timothy Pearson
Add GTK3 theme configuration support
M kcm_gtk/kcmgtk.cpp
M kcm_gtk/kcmgtk.h
M kcm_gtk/kcmgtkwidget.ui
R config.guess
R config.sub
 ** Diff limit reached (max: 250 lines) **
16dfc812 2012-11-20 04:58:11 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
8667b240 2012-11-20 04:58:15 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
b2954b99 2012-11-22 15:59:30 Timothy Pearson
Add icon theme information to GTK3 config file
M kcm_gtk/kcmgtk.cpp
 ** Diff limit reached (max: 250 lines) **
1eaec837 2012-11-27 14:03:26 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
a39e4221 2012-11-27 14:03:31 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
efaa417d 2012-11-29 15:44:28 Timothy Pearson
Set GTK event passthrough on startup
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
cd0aa1fe 2013-01-19 18:46:25 Timothy Pearson
Rename KCmdLineArgs to TDECmdLineArgs to avoid conflicts with KDE4
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
009812cf 2013-01-19 23:53:39 Timothy Pearson
Rename KApplication to TDEApplication to avoid conflicts with KDE4
M kcm_gtk/kcmgtk.cpp
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
df69025b 2013-01-20 02:28:30 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
282bd68c 2013-01-22 19:51:14 Timothy Pearson
Rename KInstance and KAboutData to avoid conflicts with KDE4
M kcm_gtk/kcmgtk.h
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
a997a80f 2013-01-22 21:08:41 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
96c62f7e 2013-01-24 13:19:07 Timothy Pearson
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
M kcm_gtk/kcmgtk.cpp
 ** Diff limit reached (max: 250 lines) **
76ce0b1e 2013-01-25 00:06:07 Timothy Pearson
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
M kcm_gtk/kcmgtk.cpp
M kcm_gtk/kcmgtk.h
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
ad026471 2013-01-25 16:14:02 Timothy Pearson
Fix FTBFS resulting from KCModule rename
M kcm_gtk/kcmgtk.h
 ** Diff limit reached (max: 250 lines) **
70d7965a 2013-01-26 13:07:49 Timothy Pearson
Rename a number of libraries and executables to avoid conflicts with KDE4
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
4ba3a204 2013-01-26 15:06:41 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
aaf9c38f 2013-01-27 00:51:42 Timothy Pearson
Rename a number of libraries and executables to avoid conflicts with KDE4
M kcm_gtk/kcmgtk.cpp
M kcm_gtk/kcmgtk.desktop
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
d67edd40 2013-01-27 01:43:41 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
2ee72db4 2013-01-27 01:43:43 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
bcc6a008 2013-01-27 20:55:01 Timothy Pearson
Rename kiobuffer and KHTML
M cmake
 ** Diff limit reached (max: 250 lines) **
8f302183 2013-01-28 09:04:56 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
1af6477f 2013-01-30 00:17:00 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
8f88fbd7 2013-02-01 14:58:56 Timothy Pearson
Rename a number of classes to enhance compatibility with KDE4
M kcm_gtk/kcmgtk.cpp
M kcm_gtk/mozillaprofile.ui
 ** Diff limit reached (max: 250 lines) **
73e73cc7 2013-02-01 23:09:57 Timothy Pearson
Rename many classes and header files to avoid conflicts with KDE4
M kcm_gtk/kcmgtk.cpp
M kcm_gtk/mozillaprofile.ui
 ** Diff limit reached (max: 250 lines) **
d418a41f 2013-02-04 14:01:15 Timothy Pearson
Rename KIcon to enhance compatibility with KDE4
M kcm_gtk/kcmgtk.cpp
 ** Diff limit reached (max: 250 lines) **
f57211d3 2013-02-11 04:55:23 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
81bd3799 2013-02-14 17:03:48 Timothy Pearson
Rename common header files for consistency with class renaming
M kcm_gtk/kcmgtk.cpp
M kcm_gtk/kcmgtk.h
M src/qt_qt_wrapper.cpp
M src/qt_qt_wrapper.h
M src/qt_style.h
M src/qt_theme_draw.c
 ** Diff limit reached (max: 250 lines) **
3e2f9e36 2013-02-15 21:44:40 Timothy Pearson
Rename additional header files to avoid conflicts with KDE4
M kcm_gtk/kcmgtk.cpp
 ** Diff limit reached (max: 250 lines) **
898fdb65 2013-02-16 00:02:50 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
147b08c1 2013-02-16 00:02:52 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
1ecde928 2013-02-16 13:29:00 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
a1a09af6 2013-02-18 13:48:51 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
9d6f7c9a 2013-02-18 19:02:57 Slávek Banko
Fix unintended rename of gtk*
M src/qt_qt_wrapper.h
M src/qt_style.h
M src/qt_theme_draw.c
 ** Diff limit reached (max: 250 lines) **
afdff93f 2013-02-19 00:47:20 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
e6ac1a85 2013-02-20 18:41:39 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
420c78c7 2013-02-21 15:09:36 Timothy Pearson
Second part of prior commit
M admin
M cmake
 ** Diff limit reached (max: 250 lines) **
5b329bb4 2013-03-02 22:03:23 Darrell Anderson
Change cache file location to user's TDE cache directory rather than user's root directory.
This resolves bug report 1259.
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
f85e23a5 2013-03-03 13:35:49 Darrell Anderson
Fix FTBFS.
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
8aa68a26 2013-04-18 20:25:36 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
2c69cc0c 2013-05-23 22:00:02 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
68c9fd58 2013-08-01 19:43:00 Darrell Anderson
Update VERSION in root CMakeLists.txt.
This partially resolves bug report 1595.
M CMakeLists.txt
 ** Diff limit reached (max: 250 lines) **
1b38b86e 2013-08-27 18:19:36 Slávek Banko
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
c1760f20 2013-08-29 18:31:49 Slávek Banko
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
83741a3a 2013-09-03 12:56:31 Slávek Banko
Additional k => tde renaming and fixes
M admin
M po/de/gtkqtengine.po
 ** Diff limit reached (max: 250 lines) **
7901982f 2013-09-15 09:31:05 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
b0ae5425 2013-09-15 09:31:07 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
082a0c06 2013-09-23 19:31:43 Francois Andriot
Fix kcm_gtk crash when GTK2 / GTK3 themes is not available
This resolves Bug 1587
M kcm_gtk/kcmgtk.cpp
 ** Diff limit reached (max: 250 lines) **
b7ae7a99 2013-10-23 11:05:49 Francois Andriot
Fix kcm_gtk crash when TDE GTK engine is not installed
This resolves Bug 1672
M kcm_gtk/kcmgtk.cpp
 ** Diff limit reached (max: 250 lines) **
f181fbbb 2013-10-30 16:45:02 Timothy Pearson
Fix severe iceweasel/icedove tab bar corruption
Clean up minor build warnings
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
690b6e16 2013-10-30 16:45:33 Timothy Pearson
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/gtk-qt-engine
M kcm_gtk/kcmgtk.cpp
 ** Diff limit reached (max: 250 lines) **
6e6dbb06 2013-12-22 16:44:58 Timothy Pearson
Fix numerous drawing glitches in Firefox
M src/qt_qt_wrapper.cpp
M src/qt_theme_draw.c
 ** Diff limit reached (max: 250 lines) **
a90aa097 2013-12-22 18:14:55 Timothy Pearson
Fix Firefox scrollbars
M kcm_gtk/kcmgtk.cpp
M kcm_gtk/kcmgtk.h
M kcm_gtk/kcmgtkwidget.ui
M src/qt_qt_wrapper.cpp
M src/qt_theme_draw.c
 ** Diff limit reached (max: 250 lines) **
5b8ab511 2013-12-23 06:08:18 Slávek Banko
Rename kdewidgets => tdewidgets
M admin
M cmake
 ** Diff limit reached (max: 250 lines) **
0330b848 2013-12-25 03:58:55 Timothy Pearson
Fix Firefox text edit widget glitches
Clean up minor build warnings
M src/qt_theme_draw.c
 ** Diff limit reached (max: 250 lines) **
baa8bd9c 2014-01-27 18:12:12 Darrell Anderson
Update non-existent help handbook to new default format.
A doc/CMakeLists.txt
A doc/Makefile.am
A doc/en/CMakeLists.txt
A doc/en/Makefile.am
A doc/en/index.docbook
M CMakeLists.txt
M kcm_gtk/kcmgtk.desktop
 ** Diff limit reached (max: 250 lines) **
f2d81120 2014-02-02 11:53:54 Darrell Anderson
Cleanup TDELocale warning
M kcm_gtk/kcmgtk.cpp
 ** Diff limit reached (max: 250 lines) **
9a384c31 2014-02-06 23:17:24 Darrell Anderson
Minor tag changes in docbook files.
M doc/en/index.docbook
 ** Diff limit reached (max: 250 lines) **
99c71b19 2014-03-27 04:22:33 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
df2226c1 2014-03-27 04:22:35 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
bc83f887 2014-03-28 19:23:38 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
0de3bbdb 2014-04-17 00:40:47 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
0dc3b7ae 2014-05-06 16:51:24 Timothy Pearson
Attempt to fix crashes of type reported in
TDECRSH-462c534-5e49d10-6c0a952-ef4ca8d-e1a8a91-9c3a359-fc344d2
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
d30bca02 2014-05-10 03:00:25 Timothy Pearson
Provide a more descriptive program name to any inquiring processes
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
c85a1eae 2014-05-10 21:36:19 Timothy Pearson
Fix prior commit
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
0deab11c 2014-05-13 23:27:12 Timothy Pearson
Use standard tde_add_library CMake methods to gain SCM information in crash reporter
M src/CMakeLists.txt
 ** Diff limit reached (max: 250 lines) **
731446a5 2014-05-26 20:18:12 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
b1ed2b00 2014-07-17 09:14:53 Timothy Pearson
Fix notification-daemon-tde hang on SM Phase 1 of logout
This resolves Bug 2051
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **
94d3de42 2014-09-14 15:53:36 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
5312cb4c 2014-09-24 12:02:13 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
0d75eb69 2014-09-28 21:55:32 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
9aa4fb2c 2014-09-29 10:23:06 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
d51e2649 2014-10-11 17:19:16 Timothy Pearson
Fix ServiceTypes, ExcludeServiceTypes, and DocPath desktop file entries to match XDG specifications
M kcm_gtk/kcmgtk.desktop
 ** Diff limit reached (max: 250 lines) **
169d05e7 2014-10-12 11:29:49 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
11ccfe33 2014-10-13 17:34:05 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
4112802a 2014-10-14 11:55:53 Automated System
Reset submodule main/applications/gtk-qt-engine/cmake to latest HEAD
M cmake
 ** Diff limit reached (max: 250 lines) **
6d08b8d5 2014-10-18 18:35:00 Timothy Pearson
Fix missing semicolons at end of Keywords strings
M kcm_gtk/kcmgtk.desktop
 ** Diff limit reached (max: 250 lines) **
6446d3f4 2014-10-19 21:42:29 Automated System
Reset submodule main/applications/gtk-qt-engine/admin to latest HEAD
M admin
 ** Diff limit reached (max: 250 lines) **
82ccf292 2014-11-16 14:02:16 Timothy Pearson
Do not register DrKonqui signal handler when launching Mozilla and Chromium
This resolves Bug 1497
M src/qt_qt_wrapper.cpp
M src/qt_rc_style.c
 ** Diff limit reached (max: 250 lines) **
b8038182 2014-11-18 14:21:18 Timothy Pearson
Do not register crash handler for Firefox, Thunderbird, Chromium, etc.
M src/qt_qt_wrapper.cpp
 ** Diff limit reached (max: 250 lines) **