| Age | Commit message (Collapse) | Author |
|
svn path=/trunk/KDE/kdebase/apps/; revision=821923
|
|
real this time :)
KPluginFactory can take the catalog name as second argument, this is the best fix.
CCMAIL: Chusslove Illich <[email protected]>
svn path=/trunk/KDE/kdebase/apps/; revision=818989
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=818988
|
|
konqpopupmenu when doing RMB on ftp://user@host, because after the redirection, part->url() was still the old url (so it didn't look like a popup opened for the current directory, in the konqpopupemenu code)
svn path=/trunk/KDE/kdebase/apps/; revision=818721
|
|
BUG: 163358
svn path=/trunk/KDE/kdebase/apps/; revision=817974
|
|
enable a hidden action with Key_Del as shortcut, so that the user can press Del to delete the file.
BUG: 76016
svn path=/trunk/KDE/kdebase/apps/; revision=817389
|
|
to dolphinpart, so that
it doesn't appear while browsing the web [with a filemanagement profile initially]. The point is to
make the GUI sensible whatever initial profile was selected and hopefully get rid of konq-filemanagement.rc/konq-webbrowsing.rc.
svn path=/trunk/KDE/kdebase/apps/; revision=817326
|
|
/ Open Terminal" action to DolphinPart.
Thanks to Kevin for reminding me of this one.
svn path=/trunk/KDE/kdebase/apps/; revision=816632
|
|
Also, move FileItemCapabilities from dolphin to KonqFileItemCapabilities at dfaure's request (making it implicitly shared along the way).
BUGS:161594
svn path=/trunk/KDE/kdebase/apps/; revision=815584
|
|
remote files. (Makes behaviour same is in dolphin itself).
CCBUGS: 161594
svn path=/trunk/KDE/kdebase/apps/; revision=815519
|
|
are disabled when the directory containing the selected files/dirs is not writable.
CCBUGS: 161594
Issues remaining: Send to trash should be disabled on remote files (and replaced with delete) and edit menu of konqueror still has the actions like cut/delete/rename always enabled.
svn path=/trunk/KDE/kdebase/apps/; revision=815517
|
|
view -- thanks Peter for the advice on how to separate the two cleanly.
svn path=/trunk/KDE/kdebase/apps/; revision=813954
|
|
CCMAIL: [email protected]
svn path=/trunk/KDE/kdebase/apps/; revision=805184
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=804094
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=804036
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=801853
|
|
CCMAIL: [email protected]
svn path=/trunk/KDE/kdebase/apps/; revision=800298
|
|
Ported konqueror's part loading to KPluginLoader. Factorized some code into a tryLoadingService.
If you miss some khtml actions, update kdelibs/kdecore/util.
svn path=/trunk/KDE/kdebase/apps/; revision=798291
|
|
Will improve the Part API to make this easier.
svn path=/trunk/KDE/kdebase/apps/; revision=795466
|
|
used to signal to plugins kdirfilter that url changed
svn path=/trunk/KDE/kdebase/apps/; revision=795079
|
|
settings are changed
svn path=/trunk/KDE/kdebase/apps/; revision=792496
|
|
CCMAIL: [email protected]
svn path=/trunk/KDE/kdebase/apps/; revision=782768
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=782396
|
|
selected files
(See email sent to kfm-devel for details)
CCMAIL:[email protected]
svn path=/trunk/KDE/kdebase/apps/; revision=782282
|
|
topLevelWidget() => window()
svn path=/trunk/KDE/kdebase/apps/; revision=776408
|
|
the code by connecting to the actiongroup's signal.
svn path=/trunk/KDE/kdebase/apps/; revision=774699
|
|
View Modes menu.
(this is done using a Q_PROPERTY in the dolphin part and a signal; the available view modes for creating the menu in the first place are listed in dolphinpart.desktop)
Konqueror: cleaned up the old (complex) handling of view modes as N toolbar buttons from M services grouped by library (240 lines less!).
Dolphin: moved view mode handling to DolphinViewActionHandler, removes duplication between part and mainwindow.
svn path=/trunk/KDE/kdebase/apps/; revision=774646
|
|
to remove code duplication between mainwindow and part, and to remove my code-splitting with the static createFooAction methods in the view.
svn path=/branches/KDE/4.0/kdebase/apps/; revision=773570
|
|
'Show preview' 'Show hidden files' 'Categorized sorting'
Found a way of sharing the actions with even less code duplication, discussed it with Peter, but this will be for after 4.0.1
svn path=/branches/KDE/4.0/kdebase/apps/; revision=767566
|
|
svn path=/branches/KDE/4.0/kdebase/apps/; revision=764549
|
|
svn path=/branches/KDE/4.0/kdebase/apps/; revision=764444
|
|
work with splitted views.
(Each view would need its own action collection, but then DolphinView would have to become
a KXMLGUIClient, and the GUI would flicker when switching views).
Instead, use the same solution as the other shared actions: static method in DolphinView (for now),
slot in the mainwindow (and for the more complex actions than this one, shared code in DolphinView)
svn path=/branches/KDE/4.0/kdebase/apps/; revision=764429
|
|
svn path=/branches/KDE/4.0/kdebase/apps/; revision=764379
|
|
svn path=/branches/KDE/4.0/kdebase/apps/; revision=761729
|
|
svn path=/branches/KDE/4.0/kdebase/apps/; revision=757231
|
|
drive-remote -> folder-remote
Seems like all of the drive-remote occurrences in SVN
make a perfect fit for being replaced by folder-remote
(which is specified by the naming spec).
svn path=/trunk/KDE/kdebase/apps/; revision=752590
|
|
Pass parent widget to all KPropertiesDialog instances.
svn path=/trunk/KDE/kdebase/apps/; revision=752542
|
|
work there)
svn path=/trunk/KDE/kdebase/apps/; revision=752422
|
|
don't clutter the Go menu when using other parts. As posted on k-c-d.
svn path=/trunk/KDE/kdebase/apps/; revision=752408
|
|
We can tell konqueror afterwards by using the openUrlNotify() signal.
Note: this design bit is a bit strange; the controller has urlChanged() and requestUrlChange(),
but they are both channeled to DolphinView::urlChanged(), which means the recipient has
to figure out if the url change was already done or not, with "if (m_view->url() != url)".
Wouldn't it be simpler to just have both signals coming out of DolphinView?
(but some receivers like the view container don't seem to care which one was emitted... strange)
CCMAIL: [email protected], [email protected]
CCBUG: 154053
svn path=/trunk/KDE/kdebase/apps/; revision=750996
|
|
BUG: 154053
CCMAIL: [email protected]
svn path=/trunk/KDE/kdebase/apps/; revision=750749
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=748476
|
|
setUrl, before
emit started(0) making konq logo spinning indefinitely.
svn path=/trunk/KDE/kdebase/apps/; revision=742730
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=740707
|
|
Insert the dolphin catalog so the messages appear translated correctly when eg, embedded into konqueror
BUG: 152752
svn path=/trunk/KDE/kdebase/apps/; revision=740701
|
|
About all those filemanagement feature moves: I double checked and the other inode/directory parts are cervisia (need own file-related operations for VCS support), konsole (no gui), kfilereplacepart (no mkdir) and fsview (readonly). So better unbloat konq itself.
svn path=/trunk/KDE/kdebase/apps/; revision=740491
|
|
svn path=/trunk/KDE/kdebase/apps/; revision=737696
|
|
those out of konqueror.
Inside dolphin, the usual: moving code to DolphinView.
Pressing shift while clicking on "Move to Trash" in konq (dolphinpart) offers to delete, as in kde3 (this bit of logic might be good for dolphin itself too? see DolphinPart::slotTrashActivated)
CCMAIL: [email protected]
svn path=/trunk/KDE/kdebase/apps/; revision=737682
|
|
Had to move more code to DolphinView, to use it from the part.
svn path=/trunk/KDE/kdebase/apps/; revision=737203
|
|
enable undo
svn path=/trunk/KDE/kdebase/apps/; revision=737159
|