Sebastian Kügler
851825be17
Keyboard arrow navigation for Lock Screen
12 years ago
l10n daemon script
697651faa6
SVN_SILENT made messages (.desktop file)
12 years ago
Aaron Seigo
f14f961c59
Merge branch 'optional_alternatives'
...
REVIEW:119944
12 years ago
Aaron Seigo
0234bdcbb7
include 'plasmaquick' directly in the includes
...
makes it a lot easier to track where the problem spots are with a
`grep plasmaquick`
12 years ago
Aaron Seigo
6e81478574
nothing uses dialog now!
12 years ago
Aaron Seigo
a4bd55b676
rename the alternativesdialog* files to anteraltiveshelper.*
12 years ago
Aaron Seigo
2db8cd6373
make the alternatives *dialog* a helper
...
this places the responsibility on the shell package and removes
the assumption that the alternatives UI is a dialog that is placed
alongside the applet. that, my friends, is a desktop form factor
assumption.
12 years ago
David Edmundson
16ee2a9465
Restore accessible name in keyboard layout toolbutton
12 years ago
David Edmundson
2ac2dc412e
Merge branch 'Plasma/5.0'
...
Conflicts:
CMakeLists.txt
applets/digital-clock/package/contents/ui/DigitalClock.qml
dataengines/geolocation/CMakeLists.txt
ksmserver/screenlocker/greeter/CMakeLists.txt
libkworkspace/CMakeLists.txt
libtaskmanager/CMakeLists.txt
lookandfeel/contents/lockscreen/LockScreen.qml
lookandfeel/metadata.desktop
12 years ago
David Edmundson
3a4e058e95
Don't introduce new strings in frozen branch
...
Will re-add in master
12 years ago
Dan Vrátil
17f60931e2
Add button to change keyboard layout to the lockscreen
...
This adds a button that allows toggling keyboard layouts from the
lockscreen. It talks and listens to the KDED's keyboard module.
REVIEW: 119794
BUG: 338518
FIXED-IN: 5.0.2
12 years ago
Aaron Seigo
f4ab2f16bc
use the appletalternativesui package path
12 years ago
Aaron Seigo
fb0d0dec90
always set the first view to the new primary
...
even if we don't have a view on the old primary, this still needs
to be set
12 years ago
Aaron Seigo
f41da61096
count was used 10 times, size 6 times; count wins and gets all 16
12 years ago
Aaron Seigo
345b9441e1
back out this part of the clean_shellcorona merge
...
addOutput checks for being enabled and if the pointer is null.
this method is also only called due to a connection made in
addOutput
12 years ago
Martin Klapetek
fa609fd58f
Fix ksysguard kded module loading
...
KDED is unable to load the module if the .desktop file has kded_ prefix,
not sure exactly why, but also no other module has the .desktop file
with kded_ prefix.
Reviewed-by: David Edmundson
12 years ago
l10n daemon script
f49f868fd6
SVN_SILENT made messages (.desktop file)
12 years ago
l10n daemon script
e36e5aa389
SVN_SILENT made messages (.desktop file)
12 years ago
David Edmundson
3d70bcd5fa
Make SDDM backgrounds handle multiple monitor + load background from config
12 years ago
Kai Uwe Broulik
e629804402
Make "nothing interesting going on" labels in applets consistent
...
REVIEW: 119934
12 years ago
Kai Uwe Broulik
0f799a2ebb
Meaningful tooltip for Analog Clock
...
To be consistent with digital clock and fuzzy clock
12 years ago
Kai Uwe Broulik
1211a81cc2
Execute decodeURIComponent on the filename
...
This way we don't present the user with a percent encoded filename,
if there happens to be single quotes and the like in the path
12 years ago
David Edmundson
8dec59f991
Don't make the login prompt bigger
...
it's not actually needed
12 years ago
David Edmundson
3856566eb2
show caps lock warning in SDDM screen too
12 years ago
David Edmundson
3642409bc0
Add preview to SDDM theme
...
This allows it to show in the SDDM KCM
12 years ago
Dan Vrátil
d5a983b517
Show warning in lock screen when Caps Lock is enabled
...
The lock screen will now show a warning when Caps Lock is enabled, like it used to
in KDE 4 screen locker.
The patch also removes the old X-based Caps Lock detection from greeterapp.cpp and
instead uses the Keystate DataEngine.
REVIEW: 119797
12 years ago
Aaron Seigo
d68321b0b4
Merge branch 'clean_shellcorona'
...
REVIEW:119929
12 years ago
Aaron Seigo
5454806953
more style fixes
12 years ago
David Edmundson
1f7ddd06b1
Don't explicitly set a height on button in notification delegate.
...
The default height is set by the button and is correct.
REVIEW: 119721
BUG: 338062
12 years ago
Dan Vrátil
fa8252b555
Fix typo in plasma.desktop.cmake
12 years ago
Aaron Seigo
1288167d6d
the view member is not used
12 years ago
Aaron Seigo
ac6c11414f
--deadCode;
12 years ago
l10n daemon script
34f77a3021
SVN_SILENT made messages (.desktop file)
12 years ago
l10n daemon script
4a5bf84a8c
SVN_SILENT made messages (.desktop file)
12 years ago
l10n daemon script
63bb78b74b
SVN_SILENT made messages (.desktop file)
12 years ago
Martin Klapetek
55acbef1de
Handle the Return key on logout screen
...
REVIEW: 119716
12 years ago
David Edmundson
a9a5615019
Set correct cursor default name entry
...
BUG: 338498
12 years ago
Marco Martin
6c220525ee
proper name to default l&f package
12 years ago
Marco Martin
15a443d977
remove the opengles code for now
...
it gives problems on some drivers
the correct approach will probably be to change the opengl profile based on drivers
12 years ago
Marco Martin
798712cbb5
crash--
12 years ago
Marco Martin
e6c9d6b5fe
remove dead code
...
this file is from plasma1 and wasn't even built
12 years ago
Aaron Seigo
e03f076687
non-recursive version that doesn't march panels to the last screen
...
rather than implementing it as a (harder to read) recursive
function, simply start from the second-to-last item in the list and
march backwards until it hits the index being removed, moving the
panels and desktop forward as it goes.
previously it was starting from the index being removed, moving
the panels to the next screen, then processing the next screen
at which point all the panels on idx would now be on idx+1's screen
and they'd get pushed forward again. on a 4 screen system with
panels on each i bet that was fun to watch.
this should be both less buggy and easier to comprehend code.
12 years ago
Aaron Seigo
3dbe72513d
instead of tracking an index, act directly on the item
...
cleaner, easier to read code
12 years ago
Aaron Seigo
a9278ba761
only add the output if it is enabled
12 years ago
Aaron Seigo
33db4c5cb0
clean ups of dead code and code style violations
12 years ago
Aaron Seigo
437da9e337
coding style fixes
12 years ago
Aaron Seigo
2fa2a17aae
--deadcode;
12 years ago
Aaron Seigo
2a592e7969
put the invariant checks into a debug only block
...
they do nothing if not making a debug build, other than to create
compile time warnings
12 years ago
Aaron Seigo
f720c8b714
removeScreen -> remove(DesktopView*)
...
better name, simpler implementation
12 years ago
Aaron Seigo
e2161db24d
--warnings;
12 years ago