Commit graph

2391 commits

Author SHA1 Message Date
David Faure 66c4ba45bd * Port to KFileItemListProperties and KFileItemActions (update kdelibs, it's Monday ;)
* Relicense KonqFileItemCapabilities to (2+3+e.V. variant), agreed by Peter Penz and George Goldberg.
* Fix the statusTip of the konqpopupmenu actions not appearing in the konq statusbar: the
   _parent_ of the KActions has to be the mainwindow.

svn path=/trunk/KDE/kdebase/apps/; revision=943370
2009-03-23 18:18:26 +00:00
David Faure 45bf2039bd Remove dead kde3 code
svn path=/trunk/KDE/kdebase/apps/; revision=943270
2009-03-23 15:38:19 +00:00
Script Kiddy 4010dd2727 SVN_SILENT made messages (.desktop file)
svn path=/trunk/KDE/kdebase/apps/; revision=942759
2009-03-22 13:44:26 +00:00
Peter Penz 2b79fade1d Emit an itemCreated() signal, so that applications can react on the change (patch provided by David Faure after a discussion with Rahman Duran)
CCMAIL: faure@kde.org
CCMAIL: rahman.duran@gmail.com

svn path=/trunk/KDE/kdebase/apps/; revision=940623
2009-03-17 20:43:48 +00:00
Script Kiddy 4c340d97ce SVN_SILENT made messages (.desktop file)
svn path=/trunk/KDE/kdebase/apps/; revision=940525
2009-03-17 15:51:17 +00:00
Christian Ehrlicher b2cc6acd46 a lot of more KUrl::path() -> KUrl::toLocalFile() changes (mostly after a check for KUrl::isLocalFile())
svn path=/trunk/KDE/kdebase/apps/; revision=939835
2009-03-15 20:20:33 +00:00
Script Kiddy e2c6de96cf SVN_SILENT made messages (.desktop file)
svn path=/trunk/KDE/kdebase/apps/; revision=939654
2009-03-15 13:46:07 +00:00
David Faure 267b6f8c0a SVN_SILENT kde5 todo, can't change inheritance now
svn path=/trunk/KDE/kdebase/apps/; revision=938501
2009-03-12 00:10:12 +00:00
Frank Reininghaus 613630b8d9 Display folder names containing '&' correctly in the "Copy To"/"Move To" menus.
BUG: 186580

svn path=/trunk/KDE/kdebase/apps/; revision=937892
2009-03-10 18:26:28 +00:00
David Faure 20c99a3bd9 Refactor a bit in order to be able to provide fredrikh with KAction* preferredOpenWithAction().
svn path=/trunk/KDE/kdebase/apps/; revision=937490
2009-03-09 18:52:47 +00:00
David Faure 0544a826de Fix bug found by reading the code: OnlyShowIn/DontShowIn apps could lead to an "Open With" submenu
being created even when only action would end up being in there -> filter out those before deciding
on submenu or not.  + implement some i18n TODOs

svn path=/trunk/KDE/kdebase/apps/; revision=937486
2009-03-09 18:42:00 +00:00
Script Kiddy b68b8feae3 SVN_SILENT made messages (.desktop file)
svn path=/trunk/KDE/kdebase/apps/; revision=936838
2009-03-08 14:36:22 +00:00
Peter Penz a3821b7260 Don't show service menu items, _if_ [*] the user has disabled them.
[*] insider joke for David ;-)

CCMAIL: faure@kde.org

svn path=/trunk/KDE/kdebase/apps/; revision=934809
2009-03-03 20:24:42 +00:00
David Faure dfa76e7f03 Use new method from kio (added last week).
(if you get "undef symbol", make sure you install all of kdelibs, not just kio; libkio.so.5.3 has the symbol, libkio.so.5.2 does not, kdelibs installs a file which mentions that)

svn path=/trunk/KDE/kdebase/apps/; revision=934372
2009-03-02 21:50:33 +00:00
David Faure 6baa11a53c Add "..." since it opens up a dialog asking for a filename, as suggested by Frank Reininghaus.
svn path=/trunk/KDE/kdebase/apps/; revision=932564
2009-02-26 22:02:05 +00:00
Script Kiddy 466471e0f9 SVN_SILENT made messages (.desktop file)
svn path=/trunk/KDE/kdebase/apps/; revision=931776
2009-02-25 19:33:07 +00:00
David Faure 69659d70f4 Restore support for pasting clipboard data (e.g. text) into a file, like konq-kde3 could do.
CCMAIL: peter.penz@gmx.at

svn path=/trunk/KDE/kdebase/apps/; revision=931496
2009-02-25 11:47:37 +00:00
Andrew Coles 5c983ad9a7 Replaced .replace(x,QString()) with .remove(x).
svn path=/trunk/KDE/kdebase/apps/; revision=930639
2009-02-23 22:53:19 +00:00
Michael Pyne 1e982fa743 My first commit for the .desktop file security patch series is to
make the Program.desktop template have the right header.

svn path=/trunk/KDE/kdebase/apps/; revision=930064
2009-02-22 16:31:40 +00:00
Script Kiddy f5e9992af1 SVN_SILENT made messages (.desktop file)
svn path=/trunk/KDE/kdebase/apps/; revision=929498
2009-02-21 14:07:30 +00:00
Script Kiddy d11d4a0565 SVN_SILENT made messages (.desktop file)
svn path=/trunk/KDE/kdebase/apps/; revision=927390
2009-02-17 12:09:45 +00:00
Script Kiddy 5dfbdba75a SVN_SILENT made messages (.desktop file)
svn path=/trunk/KDE/kdebase/apps/; revision=926053
2009-02-14 16:04:31 +00:00
David Faure b5eb539b11 GUI: "Show Original File" (or "Show Original Directory") in the RMB popup for a symlink that points to
an item in another directory.
FEATURE: 65151

svn path=/trunk/KDE/kdebase/apps/; revision=924484
2009-02-10 21:57:38 +00:00
Script Kiddy 990455cfcf SVN_SILENT made messages (.desktop file)
svn path=/trunk/KDE/kdebase/apps/; revision=921684
2009-02-05 14:09:41 +00:00
David Faure fd23e8c1f5 Delay the call to asyncDrop so that the DND finishes before we go into QMenu::exec.
Otherwise the nested event loop will handle mouse move/release events and re-enter Qt's DND code, leading to crashes.
Fix tested by blauzahl (I didn't have the crash myself). Bug 157630.

svn path=/trunk/KDE/kdebase/apps/; revision=918370
2009-01-29 21:51:47 +00:00
Script Kiddy af277e1ed8 SVN_SILENT made messages (.desktop file)
svn path=/trunk/KDE/kdebase/apps/; revision=917787
2009-01-28 15:01:35 +00:00
David Faure bcf111f149 Fix lack of error handling in RMB/Move To... (e.g. when src is root-owned) because the parent for KonqOperations
was the popupmenu, which gets deleted before the job finishes.

svn path=/trunk/KDE/kdebase/apps/; revision=913576
2009-01-19 14:33:10 +00:00
David Faure 84a20e906a Assign accelerators to all menu entries automatically.
BUG: 180022
Please test for possible side effects before I backport :)

svn path=/trunk/KDE/kdebase/apps/; revision=907616
2009-01-08 13:13:02 +00:00
David Faure 383700a7b4 reviewed the "delete this" statements; 3 were ok, the others were potentially bad.
svn path=/trunk/KDE/kdebase/apps/; revision=907299
2009-01-07 20:36:20 +00:00
Script Kiddy e84d902bba SVN_SILENT made messages (.desktop file)
svn path=/trunk/KDE/kdebase/apps/; revision=906580
2009-01-06 12:52:00 +00:00
Script Kiddy ab9119a64e SVN_SILENT made messages (.desktop file)
svn path=/trunk/KDE/kdebase/apps/; revision=905486
2009-01-04 13:22:16 +00:00
Script Kiddy 5114d94cd8 SVN_SILENT made messages (.desktop file)
svn path=/trunk/KDE/kdebase/apps/; revision=904551
2009-01-02 13:30:12 +00:00
Script Kiddy d99cdfcd2c SVN_SILENT made messages (.desktop file)
svn path=/trunk/KDE/kdebase/apps/; revision=902162
2008-12-27 16:16:25 +00:00
Script Kiddy 34bdb2f536 SVN_SILENT made messages (.desktop file)
svn path=/trunk/KDE/kdebase/apps/; revision=901727
2008-12-26 13:31:59 +00:00
Script Kiddy 611b7c866b SVN_SILENT made messages (.desktop file)
svn path=/trunk/KDE/kdebase/apps/; revision=899357
2008-12-20 14:39:35 +00:00
David Faure 23436ec6e7 Fix duplicated entries in the recent folder list of the Copy To / Move To submenus, was due to /tmp != //tmp.
BUG: 177858

svn path=/trunk/KDE/kdebase/apps/; revision=897797
2008-12-16 20:45:51 +00:00
David Faure 63f1f25cac Fix warning: suggest parentheses around && within ||
Who said this warning was useless? It made me fix a bug in my code...

svn path=/trunk/KDE/kdebase/apps/; revision=897781
2008-12-16 20:20:31 +00:00
Script Kiddy 30e9247b2c SVN_SILENT made messages (.desktop file)
svn path=/trunk/KDE/kdebase/apps/; revision=896751
2008-12-14 12:38:46 +00:00
Script Kiddy 3b4480dbb1 SVN_SILENT made messages (.desktop file)
svn path=/trunk/KDE/kdebase/apps/; revision=894838
2008-12-09 12:38:04 +00:00
Rick Xing 9354cf17a2 Just EBN fixes
svn path=/trunk/KDE/kdebase/apps/; revision=894687
2008-12-09 06:59:31 +00:00
David Faure 485d80cedc Port to KDirModel::simplifiedUrlList
svn path=/trunk/KDE/kdebase/apps/; revision=894264
2008-12-08 11:20:08 +00:00
Peter Penz ba24b60715 don't use KUrl::upUrl() - thanks to David Faure for the hint
svn path=/trunk/KDE/kdebase/apps/; revision=893549
2008-12-06 20:16:28 +00:00
Peter Penz 33871b3140 KonqOperations::doDropFileCopy(): don't add a "Move Here" action, if a directory is dragged into the same folder (e. g. if the directory /home/peter/Temp is dragged into /home/peter)
CCBUG: 164314
CCMAIL: faure@kde.org

svn path=/trunk/KDE/kdebase/apps/; revision=893490
2008-12-06 17:46:26 +00:00
Script Kiddy 886c8aa02c SVN_SILENT made messages (.desktop file)
svn path=/trunk/KDE/kdebase/apps/; revision=893407
2008-12-06 15:26:49 +00:00
Script Kiddy df4b63c21b SVN_SILENT made messages (.desktop file)
svn path=/trunk/KDE/kdebase/apps/; revision=892892
2008-12-05 12:58:59 +00:00
Script Kiddy 7bfad84c3d SVN_SILENT made messages (.desktop file)
svn path=/trunk/KDE/kdebase/apps/; revision=892099
2008-12-03 14:37:06 +00:00
David Faure 6147e0ec8c Add addIsCutSelection, and port as much code as possible to KDirModel::mimeData.
svn path=/trunk/KDE/kdebase/apps/; revision=891905
2008-12-03 09:19:16 +00:00
David Faure e4f94e4cb7 We don't want to offer "move" for temp files.
https://www.intevation.de/roundup/kolab/issue2026

svn path=/trunk/KDE/kdebase/apps/; revision=891524
2008-12-02 12:49:38 +00:00
David Faure 8c0223e640 This code was still using application/x-kde-urilist... Ported to the new KUrl::List::populateMimeData(2 args).
This fixes Paste being disabled in dolphin/konq after copying files.

svn path=/trunk/KDE/kdebase/apps/; revision=891516
2008-12-02 12:22:10 +00:00
Alexander Neundorf 9bb32c2b70 -make kdebase build with the reduced link interface using target_link_libraries(... LINK_INTERFACE_LIBRARIES ...)
Alex



svn path=/trunk/KDE/kdebase/apps/; revision=891438
2008-12-02 02:01:14 +00:00