Commit Graph

7368 Commits

Author SHA1 Message Date
Marco Martin
3e9798893c remove applet dependency 2012-02-28 18:08:17 +01:00
Marco Martin
c8a1b35f78 cleanupanddelete is qgv specific too 2012-02-28 16:52:11 +01:00
Marco Martin
abadc77276 move something more in the qgv class 2012-02-28 16:42:22 +01:00
Stephen Kelly
39afa5498b Fix Qt5 build.
The operator QString() has been removed.
2012-02-27 10:51:45 +01:00
Patrick Spendrin
9a1eda0cbf fix crash on windows 2012-02-26 00:17:19 +01:00
Script Kiddy
4d2620ca58 SVN_SILENT made messages (.desktop file) 2012-02-25 15:44:16 +01:00
Matt Williams
57bcc67921 Port from KProcess to QProcess 2012-02-21 15:32:34 +00:00
David Faure
bf9651c51a Remove last usage of kgenericfactory.h 2012-02-21 00:11:36 +01:00
David Faure
0376c52462 Merge remote-tracking branch 'origin/KDE/4.8' into frameworks 2012-02-20 23:38:51 +01:00
Marco Martin
2a909445bd completely separe appletprivate
will be easier then to split with the qgraphicsview version
2012-02-20 16:38:00 +01:00
Allen Winter
7d6c7d740b 4.7 to 4.8 missing fragments 2012-02-20 08:57:07 -05:00
Christophe Giboudeaux
3a8ffb89c0 Remove deleted include 2012-02-20 12:40:47 +01:00
Aaron Seigo
03f35f1667 use libkwindowsystem 2012-02-19 14:07:35 +01:00
Aaron Seigo
d758c96faf move all the window system classes into a kwindowsystem module with tier1 compliant deps
* classes in kdeui/windowmanagement moved to kwindowsystem
* Plasma::WindowEffects moved to kwindowsystem
* helper KSystemEventFilter and KSystemEventfilter, only used by these classes, move to kwindowsystem
* copy of helper KXerrorHandler, which is also used by KManagerSelection in kdeui

helpers are made private, KManagerSelection usage needs to be profiled and the duplication of
KXErrorHandler rectified

note: this commit breaks the build of other parts of kdelibs; cleaned up in commits to follow
2012-02-19 14:07:35 +01:00
Giorgos Tsiapaliwkas
729988ffb1 Replace KUrl with QUrl in theme.h/cpp
Reviewed by: Aaron Seigo
2012-02-18 12:13:54 +02:00
Aaron Seigo
c14e1649ee specifically check for gpgme as a soft dep, not everyone gets it caught by gpgme++ 2012-02-18 11:11:02 +01:00
David Faure
083d157684 Merge remote-tracking branch 'origin/KDE/4.8' into origin-frameworks
Conflicts:
	kdecore/network/k3datagramsocket.cpp
	kdeui/actions/kstandardaction.cpp
	kdeui/dialogs/kconfigdialogmanager.cpp
	kdeui/icons/kicondialog.cpp
	kdeui/itemviews/kviewstatesaver.h
	kfile/knewfilemenu.cpp
	kio/misc/kpac/downloader.cpp
	kio/tests/kdirlistertest.cpp
	kparts/browserextension.cpp
	nepomuk/core/nepomukmainmodel.cpp
	nepomuk/query/queryserviceclient.cpp
	nepomuk/test/ratingpaintertestwidget.cpp
	nepomuk/ui/kedittagsdialog.cpp
	nepomuk/ui/ktagcloudwidget.cpp
	nepomuk/ui/ktagdisplaywidget.cpp
	nepomuk/ui/nepomukmassupdatejob.cpp
	nepomuk/ui/tagwidget.cpp
	nepomuk/utils/daterangeselectionwidget.cpp
	nepomuk/utils/facetwidget.cpp
	nepomuk/utils/searchwidget.cpp
	plasma/containment.cpp
	plasma/datacontainer.cpp
	plasma/deprecated/animator.cpp
	plasma/extenders/extender.cpp
	plasma/plasma.h
	plasma/scripting/wallpaperscript.cpp
	tier1/solid/tests/networkingclient.cpp
(signal/slot normalization changes conflicted with KUrl->QUrl changes
and with other changes in frameworks)
2012-02-14 12:32:25 +01:00
Aaron Seigo
454cbaa7cb fix up constraintsEvent documentation 2012-02-13 22:30:29 +01:00
Dawit Alemayehu
fb0b49af8c Normalize all signal/slot connections.
REVIEW: 103728
2012-02-13 14:27:21 -05:00
Aaron Seigo
9b40224a87 apidox++ for Svg signals 2012-02-13 12:33:30 -05:00
Christophe Giboudeaux
d32d9b6bc6 Add two includes needed to build kf5 2012-02-13 14:58:27 +01:00
Stephen Kelly
3ec0266ea1 Revert "Remove the exports targets from libraries in frameworks."
This reverts commit 24d1fb1228cc534d3de2324236fcad9a637e7906.
2012-02-12 20:14:43 +01:00
David Faure
b9b1e05844 fix include paths 2012-02-11 16:47:43 +01:00
David Faure
7f31106729 Move mimeData methods from KUrl::List to a new namespace KUrlMimeData.
Deprecate mimeData methods in KUrl::List and KUrl, port all of kdelibs
to KUrlMimeData.
2012-02-11 10:43:07 +01:00
Torgny Nyblom
8f6075ac7c include kicon.h 2012-02-10 19:59:05 +01:00
Stephen Kelly
585976ebbc Port to QIcon in APIs.
KIcon is only a 'factory type'.

git grep -l "const KIcon" | xargs sed -i 's/const KIcon\b/const QIcon/g'
git grep -l "QList<KIcon>" | xargs sed -i 's/QList<KIcon>/QList<QIcon>/g'
git grep -l "class KIcon;" | xargs sed -i 's/class KIcon;//'
git grep -l "KIcon\b[^()]*;" | xargs sed -i 's/KIcon\b\([^()]*\);/QIcon\1;/'
2012-02-10 14:56:20 +01:00
Aaron Seigo
2becd8b67a apidox++ for Svg signals 2012-02-09 15:57:16 +01:00
David Faure
9057ce0c70 Fix compilation with the new cmake automoc stuff. 2012-02-08 23:34:07 +01:00
Stephen Kelly
51dafbe2e9 Use QUrl::scheme() instead of KUrl::protocol().
The former lowercases internally in Qt5, so no need
to rely on KUrl API.
2012-02-07 23:42:32 +01:00
Stephen Kelly
d660ec244e Merge remote-tracking branch 'origin/KDE/4.8' into frameworks 2012-02-07 12:38:06 +01:00
David Faure
cf83c09846 Move inqt5/src includes to toplevel cmakelists, and only in qt4 mode 2012-02-07 12:24:57 +01:00
Stephen Kelly
d87e05f86c Remove explicit linking to inqt5 2012-02-02 22:19:22 +01:00
Script Kiddy
d66cc2099b SVN_SILENT made messages (.desktop file) 2012-02-02 15:05:02 +01:00
Stephen Kelly
b1b68adb7d Don't use the QtGui module name in includes.
In Qt5, many of them are moved to QtWidgets, so this is the only
way to be source compatible with both Qt 4 and Qt 5.
2012-02-02 10:35:53 +01:00
Ignat Semenov
148002cee4 Shrink the icon correctly on mouse clicks with respect to the global single/double-click mouse settings.
REVIEW:103831
2012-02-01 17:03:30 +04:00
Stephen Kelly
a57081af2c Only plasma needs non-standard automoc handling now.
I don't have kdepimlibs in my kf5 environment. Anyone who does
feel free to port.
2012-02-01 12:41:32 +01:00
Stephen Kelly
52a8b232ec Remove the last piece of enable_final. 2012-02-01 12:36:56 +01:00
Stephen Kelly
8d37df4b8f Remove moc includes that can be omitted.
Mostly these are "<name>.moc" style includes which are incorrect
compared to qmake and cmake automoc behaviour.
2012-01-31 22:44:36 +01:00
Aaron Seigo
64f687dda0 hide tooltips on the applet when the handle is hovered 2012-01-27 15:34:01 +01:00
Aaron Seigo
2213eac61a the delay is an int not a real and is in ms 2012-01-27 15:34:01 +01:00
Aaron Seigo
6018fc0c35 ensure a minimum delay of 200ms for tooltips newly shown, respect that the default is an int not float 2012-01-27 15:34:01 +01:00
Sebastian Trueg
1de227bbba Merge branch 'nepomuk/DmsPort-resourceWatcher' into tmp
Conflicts:
	cmake/modules/FindXine.cmake
2012-01-27 14:19:44 +01:00
Script Kiddy
fa05392f1c SVN_SILENT made messages (.desktop file) 2012-01-27 14:18:07 +01:00
Script Kiddy
cf6ba1c4cf SVN_SILENT made messages (.desktop file) 2012-01-27 14:18:07 +01:00
Aleix Pol
35ce9cc094 Add some Q_PROPERTIES to Plasma::AbstractRunner.
Lets QML scripts to access some Runner description features.

REVIEW: 103718
2012-01-27 14:18:07 +01:00
Script Kiddy
84f82c1ba2 SVN_SILENT made messages (.desktop file) 2012-01-27 14:18:06 +01:00
Aaron Seigo
99c7d3f5f3 only check for remote settings if we generated the dialog ourselves 2012-01-27 14:18:06 +01:00
Script Kiddy
361b7c721f SVN_SILENT made messages (.desktop file) 2012-01-27 14:18:04 +01:00
Script Kiddy
65c4fdf297 SVN_SILENT made messages (.desktop file) 2012-01-27 14:18:03 +01:00
Script Kiddy
7ff6acfb14 SVN_SILENT made messages (.desktop file) 2012-01-27 14:18:03 +01:00