Alexey Chernov
9abdf64813
Remove waste setTextBackgroundColor() for internal KTextEdit
...
Removed setTextBackgroundColor() for internal KTextEdit as it
seems to be useless and leads to QTBUG-21522
(http://bugreports.qt.nokia.com/browse/QTBUG-21522 ).
REVIEW: 102698
2011-10-02 00:24:15 +04:00
Script Kiddy
a3ec982d01
SVN_SILENT made messages (.desktop file)
2011-10-01 15:12:18 +02:00
Marco Martin
7f0cd3ed30
be quiet
2011-09-28 16:48:24 +02:00
Valentin Rusu
112b6b9a3d
Merge remote-tracking branch 'origin/KDE/4.7' into ksecretsservice
2011-09-26 21:18:29 +02:00
Marco Martin
888a5753de
export data property to make it work in QML
2011-09-24 15:54:44 +02:00
Aaron Seigo
dc07293b90
don't show configuration on failed applets
2011-09-22 22:43:16 +02:00
Aaron Seigo
064b78d8b1
only allow valid values for the resize method, and add missing getters
2011-09-19 16:18:52 +02:00
Marco Martin
21d9d07e0b
remove the static hash of packagestructure
...
unfortunately they are stateful with a state per-package, so sharing them leads to an incorrect state
2011-09-15 23:48:52 +02:00
Valentin Rusu
41299661c2
Merge branch 'master' of ../tmp/ksecretservice into ksecretsservice
2011-09-04 13:13:37 +02:00
Valentin Rusu
ed0b414450
Merge ../ksecretservice into ksecretsservice
2011-09-04 11:08:06 +02:00
Aaron Seigo
423ce0c356
don't emit addSource for a source being added in a sourceRequest event until the event is over
2011-09-01 19:07:22 +02:00
Marco Martin
d09397673e
correctly concatenate the path.
...
package is valid again (and passes plasmoidpackagetest)
2011-08-31 12:53:09 +02:00
Marco Martin
0e13cdcdf2
use plsmoidpackage for generic packages too
2011-08-31 12:53:09 +02:00
Marco Martin
37ac5105ab
fix resolution of paths w/ only a packageRoot+name
2011-08-31 12:53:09 +02:00
Marco Martin
7e50fe0f40
a new PackageStructure type: GenericComponent
...
this component will be used for loading generic repositories of files,
usually will be repositories of QML files
2011-08-31 12:53:09 +02:00
Sebastian Kügler
98cb6e0a83
focusChanged(bool) signal for LineEdit
2011-08-29 21:09:08 +02:00
Script Kiddy
02338c2bca
SVN_SILENT made messages (.desktop file)
2011-08-27 14:44:08 +02:00
Aaron Seigo
79ad385f41
give applets with no qwidget or graphicswidget a chance to do something
2011-08-25 17:35:07 +02:00
Script Kiddy
cd912280a0
SVN_SILENT made messages (.desktop file)
2011-08-25 14:16:14 +02:00
Marco Martin
c12af537e4
support minimumSize
...
if the root object has a minimumSize set, set it as minimum size for the declarative widget, and keep it in sync
2011-08-20 17:34:36 +02:00
Aaron Seigo
db97a9b6cb
add missing smallest font support for qml and js widgets
2011-08-17 18:08:00 +02:00
Aaron Seigo
6df8dc58dc
small change that makes a huge visible difference
...
also removes the unneeded ternary op given the above if()
2011-08-16 16:22:16 +02:00
Aaron Seigo
ee57550909
really don't show when there is no content
2011-08-16 14:57:36 +02:00
Aaron Seigo
78cfff2f3c
if there are no widgets, don't create a dialog
2011-08-16 14:57:36 +02:00
Marco Martin
b4c5e52c0f
ensure the frame is resized
2011-08-12 16:06:09 +02:00
Aaron Seigo
f285745318
make extender applets freel resize
2011-08-11 00:15:05 +02:00
Aaron Seigo
858abd8243
allow popups to be freely resized when they aren't the applet
2011-08-08 14:48:57 +02:00
Aaron Seigo
f0d247f9c6
remove an unused variable
2011-08-07 01:07:15 +02:00
Aaron Seigo
575057e878
don't bother hiding if we're not visible
2011-08-07 01:02:11 +02:00
Montel Laurent
9e314fde8d
Pedantic
2011-08-07 00:50:21 +02:00
Aaron Seigo
ef6b65c2b1
simplify
2011-08-07 00:50:20 +02:00
Aaron Seigo
45e428dec5
--deprecatedUsage;
2011-08-07 00:50:20 +02:00
Aaron Seigo
0a64cca51f
mark the methods deprecated as they should be
2011-08-07 00:50:20 +02:00
Aaron Seigo
fb128ee26b
shush the compiler
2011-08-07 00:50:19 +02:00
Dawit Alemayehu
10dcf8ffc0
Fixed -Wunused-parameter compiler warning.
...
REVIEW: 101881
2011-08-07 00:50:19 +02:00
David Faure
c21fc57968
Fix @since tag to reflect backport
2011-08-07 00:46:27 +02:00
Marco Martin
15fbd34fae
bind tickInterval property
2011-08-06 19:34:12 +02:00
Marco Martin
c21910e833
check the properties are really changed
2011-08-06 19:34:12 +02:00
Nicolás Alvarez
8002f8754f
Fix typo in plasma apidox.
2011-08-06 19:20:45 +02:00
Aaron Seigo
5484609cd3
consolidate creation code; use the layout; don't hide dialog if already hidden
...
fixes a few annoyances in the system tray
2011-08-03 16:45:29 +02:00
Matthias Fuchs
a18379e5d0
Correctly display popups when using multiple screens
...
If there are multiple screens with different resolutions or which
are not alligned the same way then it could happen that popups at
the edge were drawn (partially) offscreen.
This patch fixes that issue.
REVIEW:102118
BUG:276336
FIXED-IN:4.7.1
2011-07-31 13:04:00 +02:00
Matthias Fuchs
db3b17abf2
Use a qobject_cast instead of a dynamic_cast.
2011-07-31 13:03:49 +02:00
Christoph Feck
d5d5ba688f
Fix accessing pixmapCache after it is deleted
...
BUG: 275570
FIXED-IN: 4.7.1
2011-07-30 21:18:38 +02:00
Aaron Seigo
44815f6ae0
get the corona from the item itself
...
BUG:277135
2011-07-30 20:18:27 +02:00
Till Adam
9a9d2bd419
EffectWatcher only exists on X11. (cherry-picked from 826a1eb)
2011-07-30 13:37:14 +02:00
Fredrik Höglund
d43d4315aa
plasma: Use the new KWindowSystem::compositingChanged() signal
...
(cherry picked from commit b7b4358542e205c027ccd2718f43052851ff7152)
2011-07-28 23:41:56 +02:00
Script Kiddy
dcce68643c
SVN_SILENT made messages (.desktop file)
2011-07-28 17:29:57 +02:00
Aaron Seigo
e525c88cb2
discard discoveries only when the svg elements also go away; we don't care about colors
2011-07-22 18:06:35 +02:00
Aaron Seigo
a34e41b546
put a found-paths cache in Theme
2011-07-22 18:06:23 +02:00
Aaron Seigo
9f03a10b4d
call Applet::sceneEventFilter; otherwise applet handles are broken on Applets that are also Containments
...
BUG:277467
2011-07-19 09:38:44 +02:00