2020-11-28 09:28:53 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!DOCTYPE gui SYSTEM "kpartgui.dtd">
|
2021-04-29 13:22:10 +00:00
|
|
|
<gui name="dolphin" version="34">
|
2009-01-11 16:35:07 +00:00
|
|
|
<MenuBar>
|
|
|
|
<Menu name="file">
|
2013-08-28 16:46:45 +00:00
|
|
|
<Action name="new_menu" />
|
2018-03-10 19:50:29 +00:00
|
|
|
<Action name="file_new" />
|
2009-01-11 16:35:07 +00:00
|
|
|
<Action name="new_tab" />
|
2018-03-10 19:50:29 +00:00
|
|
|
<Action name="file_close" />
|
2019-05-12 11:09:39 +00:00
|
|
|
<Action name="undo_close_tab" />
|
2009-01-11 16:35:07 +00:00
|
|
|
<Separator/>
|
2019-09-01 21:01:57 +00:00
|
|
|
<Action name="add_to_places" />
|
|
|
|
<Separator/>
|
2017-08-09 20:59:38 +00:00
|
|
|
<Action name="renamefile" />
|
Add Duplicate feature
Summary: Adds a Duplicate feature to Dolphin, showing up as a menu item in the File menu that appears when one or more items are selected and the directory is writable. Duplicated items receive the names of the original files with " copy" appended before the file extension, if any.
Test Plan:
{F5201386} {F5201393}
Test cases:
- Try to duplicate when nothing is selected: **PASS**: menu item is grayed out
- Try to duplicate anything on a read-only local volume: **PASS**: menu item is grayed out
- Try to duplicate anything on a read-only samba share: **PASS**: menu item is grayed out
- Duplicate single local file on R/W volume: **PASS**: item is duplicated and named correctly
- Duplicate multiple local files on R/W volume: **PASS**: 3 items are duplicated, named correctly, and selected
- Duplicate single local directory on R/W volume: **PASS**: item is duplicated and named correctly, but a rename operation is not initiated
- Duplicate multiple local directories on R/W volume: **PASS**: 3 items are duplicated, named correctly, and selected
- Duplicate single file on R/W samba share: **PASS**: item is duplicated and correctly
- Duplicate multiple files on R/W samba share: **PASS**: 3 items are duplicated, named correctly, and selected
- Duplicate single directory on R/W samba share: **PASS**: item is duplicated and named correctly
- Duplicate multiple directory on R/W samba share: **PASS**: 3 items are duplicated, named correctly, and selected
- Try to undo a successful duplication: **PASS**: operation is undone
This is my first attempt at a big change like this and I'm sure it's full of issues. I will accept any and all suggestions for improvement. :)
Reviewers: #dolphin, #kde_applications, elvisangelaccio, dfaure, broulik, davidedmundson
Subscribers: kfm-devel, meven, markg, fazevedo, cfeck, #dolphin
Tags: #dolphin
Differential Revision: https://phabricator.kde.org/D8208
2019-12-20 17:07:25 +00:00
|
|
|
<Action name="duplicate" />
|
2017-07-18 22:00:37 +00:00
|
|
|
<Action name="movetotrash" />
|
2017-03-29 11:37:02 +00:00
|
|
|
<Action name="deletefile" />
|
2009-01-11 16:35:07 +00:00
|
|
|
<Separator/>
|
2018-03-18 10:55:24 +00:00
|
|
|
<Action name="show_target" />
|
2018-03-03 13:36:44 +00:00
|
|
|
<Separator/>
|
2009-01-11 16:35:07 +00:00
|
|
|
<Action name="properties" />
|
|
|
|
</Menu>
|
|
|
|
<Menu name="edit">
|
2020-06-29 22:27:33 +00:00
|
|
|
<Action name="edit_undo" />
|
|
|
|
<Separator />
|
|
|
|
<Action name="edit_cut" />
|
|
|
|
<Action name="edit_copy" />
|
|
|
|
<Action name="copy_location" />
|
|
|
|
<Action name="edit_paste" />
|
|
|
|
<Separator />
|
2020-12-02 07:07:41 +00:00
|
|
|
<Action name="show_filter_bar" />
|
2020-06-29 22:27:33 +00:00
|
|
|
<Action name="edit_find" />
|
|
|
|
<Separator />
|
Allow to copy or move selection to the other split view
Summary:
FEATURE: 276167
Default keyboard shortcuts set to `SHIFT+F5` for `copy`, `SHIFT+F6` for `move`
Reviewers: #dolphin, elvisangelaccio, ngraham, meven, dfaure
Reviewed By: #dolphin, elvisangelaccio, ngraham, meven, dfaure
Subscribers: yurchor, kde-doc-english, dfaure, meven, kfm-devel
Tags: #dolphin, #documentation
Differential Revision: https://phabricator.kde.org/D29006
2020-05-14 22:17:31 +00:00
|
|
|
<Action name="copy_to_inactive_split_view" />
|
|
|
|
<Action name="move_to_inactive_split_view" />
|
2018-03-10 19:50:29 +00:00
|
|
|
<Action name="edit_select_all" />
|
2009-01-11 16:35:07 +00:00
|
|
|
<Action name="invert_selection" />
|
|
|
|
</Menu>
|
|
|
|
<Menu name="view">
|
2019-09-01 15:29:00 +00:00
|
|
|
<Action name="view_zoom_in"/>
|
|
|
|
<Action name="view_zoom_reset"/>
|
|
|
|
<Action name="view_zoom_out"/>
|
|
|
|
<Separator/>
|
2010-05-03 15:40:24 +00:00
|
|
|
<Action name="sort" />
|
Add 'Sort By' and 'View Mode' into Dolphin file context menus
Summary: This adds the 'Sort By' and 'View Mode' options into the context menu of Dolphin within the file browser. I keep looking for these option (especially sort by) in the Context Menu, and keep forgetting to go to the menu. It also makes the order of "View Mode" and "Sort By" options consistent in the control menu
Test Plan: Made sure that the options appeared when right clicking on an empty space.
Reviewers: #dolphin, ngraham, elvisangelaccio
Reviewed By: #dolphin, ngraham, elvisangelaccio
Subscribers: question, markg, elvisangelaccio, mmustac, rkflx, ngraham, kfm-devel, #dolphin
Tags: #dolphin
Differential Revision: https://phabricator.kde.org/D12911
2018-06-02 14:38:01 +00:00
|
|
|
<Action name="view_mode" />
|
2010-05-03 15:40:24 +00:00
|
|
|
<Action name="additional_info" />
|
2009-01-11 16:35:07 +00:00
|
|
|
<Action name="show_preview" />
|
|
|
|
<Action name="show_in_groups" />
|
|
|
|
<Action name="show_hidden_files" />
|
|
|
|
<Separator/>
|
|
|
|
<Action name="split_view" />
|
2016-09-26 16:55:42 +00:00
|
|
|
<Action name="split_stash" />
|
2018-03-10 19:50:29 +00:00
|
|
|
<Action name="redisplay" />
|
2009-01-11 16:35:07 +00:00
|
|
|
<Action name="stop" />
|
|
|
|
<Separator/>
|
2010-05-03 15:40:24 +00:00
|
|
|
<Action name="panels" />
|
2019-09-14 14:40:06 +00:00
|
|
|
<Menu name="location_bar" icon="edit-select-text">
|
2009-12-19 20:26:46 +00:00
|
|
|
<text context="@title:menu">Location Bar</text>
|
2009-01-11 16:35:07 +00:00
|
|
|
<Action name="editable_location" />
|
|
|
|
<Action name="replace_location" />
|
|
|
|
</Menu>
|
|
|
|
<Separator/>
|
|
|
|
<Action name="view_properties" />
|
|
|
|
</Menu>
|
2009-03-01 01:38:20 +00:00
|
|
|
<Menu name="go">
|
Add Bookmark Handling
Summary:
Add Bookmark Handling. Adds complete bookmark support as provided by
other KDE applications like Konsole and Konqueror. This allows you to
bookmark individual folders, create bookmark folders and open them.
Test Plan:
Go -> Bookmark -> Add Bookmark
Go -> Bookmark -> [Open the bookmark you selected]
FEATURE: 171366
Reviewers: #dolphin, elvisangelaccio, ngraham
Reviewed By: #dolphin, elvisangelaccio, ngraham
Subscribers: ognarb, meven, loh.tar, cfeck, hein, kfm-devel
Tags: #dolphin
Maniphest Tasks: T5408
Differential Revision: https://phabricator.kde.org/D19926
2019-03-20 19:29:20 +00:00
|
|
|
<Action name="bookmarks" />
|
2009-03-01 01:38:20 +00:00
|
|
|
<Action name="closed_tabs" />
|
|
|
|
</Menu>
|
2009-01-11 16:35:07 +00:00
|
|
|
<Menu name="tools">
|
2019-11-17 17:14:27 +00:00
|
|
|
<Action name="open_preferred_search_tool" />
|
2009-03-10 06:59:27 +00:00
|
|
|
<Action name="open_terminal" />
|
Add action for focusing Terminal Panel
Summary:
Add an action for focusing and de-focusing the Terminal Panel.
FEATURE: 185096
FIXED-IN 20.04.0
Test Plan:
- Hit {key Ctrl Shift F4} or click {nav Tools > Focus Terminal Panel} or {nav Control > Tools > Focus Terminal Panel}
- If the Terminal Panel was closed, it opens and gains focus
- If the Terminal Panel was open but unfocused, it gains focus
- If the Terminal Panel was open and focused, focus returns to the view
{F6630289, size=full}
Reviewers: #dolphin, elvisangelaccio, rominf
Reviewed By: #dolphin, elvisangelaccio, rominf
Subscribers: kfm-devel, elvisangelaccio, rkflx, ngraham, #dolphin
Tags: #dolphin
Differential Revision: https://phabricator.kde.org/D10959
2019-03-20 22:06:28 +00:00
|
|
|
<Action name="focus_terminal_panel"/>
|
2009-01-11 16:35:07 +00:00
|
|
|
<Action name="compare_files" />
|
2009-03-25 22:00:50 +00:00
|
|
|
<Action name="change_remote_encoding" />
|
2009-01-11 16:35:07 +00:00
|
|
|
</Menu>
|
|
|
|
</MenuBar>
|
|
|
|
<State name="new_file" >
|
|
|
|
<disable>
|
|
|
|
<Action name="edit_undo" />
|
|
|
|
<Action name="edit_redo" />
|
|
|
|
<Action name="edit_cut" />
|
|
|
|
<Action name="edit_copy" />
|
2017-08-09 20:59:38 +00:00
|
|
|
<Action name="renamefile" />
|
2017-07-18 22:00:37 +00:00
|
|
|
<Action name="movetotrash" />
|
2017-03-29 11:37:02 +00:00
|
|
|
<Action name="deletefile" />
|
2009-01-11 16:35:07 +00:00
|
|
|
<Action name="invert_selection" />
|
|
|
|
<Separator/>
|
|
|
|
<Action name="go_back" />
|
|
|
|
<Action name="go_forward" />
|
|
|
|
</disable>
|
|
|
|
</State>
|
|
|
|
<State name="has_selection" >
|
|
|
|
<enable>
|
|
|
|
<Action name="edit_cut" />
|
|
|
|
<Action name="edit_copy" />
|
2017-08-09 20:59:38 +00:00
|
|
|
<Action name="renamefile" />
|
Add Duplicate feature
Summary: Adds a Duplicate feature to Dolphin, showing up as a menu item in the File menu that appears when one or more items are selected and the directory is writable. Duplicated items receive the names of the original files with " copy" appended before the file extension, if any.
Test Plan:
{F5201386} {F5201393}
Test cases:
- Try to duplicate when nothing is selected: **PASS**: menu item is grayed out
- Try to duplicate anything on a read-only local volume: **PASS**: menu item is grayed out
- Try to duplicate anything on a read-only samba share: **PASS**: menu item is grayed out
- Duplicate single local file on R/W volume: **PASS**: item is duplicated and named correctly
- Duplicate multiple local files on R/W volume: **PASS**: 3 items are duplicated, named correctly, and selected
- Duplicate single local directory on R/W volume: **PASS**: item is duplicated and named correctly, but a rename operation is not initiated
- Duplicate multiple local directories on R/W volume: **PASS**: 3 items are duplicated, named correctly, and selected
- Duplicate single file on R/W samba share: **PASS**: item is duplicated and correctly
- Duplicate multiple files on R/W samba share: **PASS**: 3 items are duplicated, named correctly, and selected
- Duplicate single directory on R/W samba share: **PASS**: item is duplicated and named correctly
- Duplicate multiple directory on R/W samba share: **PASS**: 3 items are duplicated, named correctly, and selected
- Try to undo a successful duplication: **PASS**: operation is undone
This is my first attempt at a big change like this and I'm sure it's full of issues. I will accept any and all suggestions for improvement. :)
Reviewers: #dolphin, #kde_applications, elvisangelaccio, dfaure, broulik, davidedmundson
Subscribers: kfm-devel, meven, markg, fazevedo, cfeck, #dolphin
Tags: #dolphin
Differential Revision: https://phabricator.kde.org/D8208
2019-12-20 17:07:25 +00:00
|
|
|
<Action name="duplicate" />
|
2017-07-18 22:00:37 +00:00
|
|
|
<Action name="movetotrash" />
|
2017-03-29 11:37:02 +00:00
|
|
|
<Action name="deletefile" />
|
2009-01-11 16:35:07 +00:00
|
|
|
<Action name="invert_selection" />
|
|
|
|
</enable>
|
|
|
|
</State>
|
|
|
|
<State name="has_no_selection" >
|
|
|
|
<disable>
|
|
|
|
<Action name="edit_cut" />
|
|
|
|
<Action name="edit_copy" />
|
2017-08-09 20:59:38 +00:00
|
|
|
<Action name="renamefile" />
|
Add Duplicate feature
Summary: Adds a Duplicate feature to Dolphin, showing up as a menu item in the File menu that appears when one or more items are selected and the directory is writable. Duplicated items receive the names of the original files with " copy" appended before the file extension, if any.
Test Plan:
{F5201386} {F5201393}
Test cases:
- Try to duplicate when nothing is selected: **PASS**: menu item is grayed out
- Try to duplicate anything on a read-only local volume: **PASS**: menu item is grayed out
- Try to duplicate anything on a read-only samba share: **PASS**: menu item is grayed out
- Duplicate single local file on R/W volume: **PASS**: item is duplicated and named correctly
- Duplicate multiple local files on R/W volume: **PASS**: 3 items are duplicated, named correctly, and selected
- Duplicate single local directory on R/W volume: **PASS**: item is duplicated and named correctly, but a rename operation is not initiated
- Duplicate multiple local directories on R/W volume: **PASS**: 3 items are duplicated, named correctly, and selected
- Duplicate single file on R/W samba share: **PASS**: item is duplicated and correctly
- Duplicate multiple files on R/W samba share: **PASS**: 3 items are duplicated, named correctly, and selected
- Duplicate single directory on R/W samba share: **PASS**: item is duplicated and named correctly
- Duplicate multiple directory on R/W samba share: **PASS**: 3 items are duplicated, named correctly, and selected
- Try to undo a successful duplication: **PASS**: operation is undone
This is my first attempt at a big change like this and I'm sure it's full of issues. I will accept any and all suggestions for improvement. :)
Reviewers: #dolphin, #kde_applications, elvisangelaccio, dfaure, broulik, davidedmundson
Subscribers: kfm-devel, meven, markg, fazevedo, cfeck, #dolphin
Tags: #dolphin
Differential Revision: https://phabricator.kde.org/D8208
2019-12-20 17:07:25 +00:00
|
|
|
<Action name="duplicate" />
|
2017-07-18 22:00:37 +00:00
|
|
|
<Action name="movetotrash" />
|
2017-03-29 11:37:02 +00:00
|
|
|
<Action name="deletefile" />
|
2009-01-11 16:35:07 +00:00
|
|
|
<Action name="delete_shortcut" />
|
|
|
|
<Action name="invert_selection" />
|
|
|
|
</disable>
|
|
|
|
</State>
|
|
|
|
<ToolBar noMerge="1" name="mainToolBar" >
|
|
|
|
<text context="@title:menu">Main Toolbar</text>
|
|
|
|
<Action name="go_back" />
|
|
|
|
<Action name="go_forward" />
|
|
|
|
<Separator name="separator_1" />
|
|
|
|
<Action name="icons" />
|
2011-07-30 18:13:09 +00:00
|
|
|
<Action name="compact" />
|
2009-01-11 16:35:07 +00:00
|
|
|
<Action name="details" />
|
2020-09-20 16:53:59 +00:00
|
|
|
<Action name="url_navigators" />
|
2009-01-11 16:35:07 +00:00
|
|
|
<Action name="split_view" />
|
2016-09-26 16:55:42 +00:00
|
|
|
<Action name="split_stash" />
|
[dolphin] Add an action to toggle the searchbar
Summary:
Make search action toggle the searchbar instead of just launching it.
The search action in dolphin did only bring up the search bar, but to close it again you had to go to the closing button on the same searchbar.
This behavior in inconsistent with other dolphin actions which toggle panels or tools.
BEFORE:
{F7256652}
AFTER:
{F7256862}
BUG: 344617
FIXED-IN: 19.12.0
Closes T8473
Depends on D23075
Test Plan:
- Enable the search mode: the searchbar appears and the toolbar button gets checked
- Press the search button again, and it goes back to normal mode.
- The search button state is coherent with the searchbox
- Coherence is kept when changing to a split view or different tab
- Shorcut <Ctrl-F> does not close the searchbar, but moves the focus to it.
Reviewers: #dolphin, ngraham, #vdg, elvisangelaccio
Reviewed By: ngraham, #vdg
Subscribers: ndavis, felixernst, elvisangelaccio, kfm-devel
Tags: #dolphin
Maniphest Tasks: T8473
Differential Revision: https://phabricator.kde.org/D23232
2019-09-01 19:59:43 +00:00
|
|
|
<Action name="toggle_search" />
|
2020-12-02 07:07:41 +00:00
|
|
|
<Action name="toggle_filter" />
|
2021-04-29 13:22:10 +00:00
|
|
|
<Action name="hamburger_menu" />
|
2009-01-11 16:35:07 +00:00
|
|
|
</ToolBar>
|
2010-10-07 13:33:01 +00:00
|
|
|
<ActionProperties scheme="Default">
|
|
|
|
<Action priority="0" name="go_back"/>
|
|
|
|
<Action priority="0" name="go_forward"/>
|
2010-11-15 15:55:34 +00:00
|
|
|
<Action priority="0" name="go_up"/>
|
|
|
|
<Action priority="0" name="go_home"/>
|
|
|
|
<Action priority="0" name="stop"/>
|
2010-10-07 13:33:01 +00:00
|
|
|
<Action priority="0" name="icons"/>
|
2011-07-30 18:13:09 +00:00
|
|
|
<Action priority="0" name="compact"/>
|
2010-10-07 13:33:01 +00:00
|
|
|
<Action priority="0" name="details"/>
|
2010-11-15 15:55:34 +00:00
|
|
|
<Action priority="0" name="view_zoom_in"/>
|
2019-09-01 15:29:00 +00:00
|
|
|
<Action priority="0" name="view_zoom_reset"/>
|
2010-11-15 15:55:34 +00:00
|
|
|
<Action priority="0" name="view_zoom_out"/>
|
|
|
|
<Action priority="0" name="edit_cut"/>
|
|
|
|
<Action priority="0" name="edit_copy"/>
|
|
|
|
<Action priority="0" name="edit_paste"/>
|
[dolphin] Add an action to toggle the searchbar
Summary:
Make search action toggle the searchbar instead of just launching it.
The search action in dolphin did only bring up the search bar, but to close it again you had to go to the closing button on the same searchbar.
This behavior in inconsistent with other dolphin actions which toggle panels or tools.
BEFORE:
{F7256652}
AFTER:
{F7256862}
BUG: 344617
FIXED-IN: 19.12.0
Closes T8473
Depends on D23075
Test Plan:
- Enable the search mode: the searchbar appears and the toolbar button gets checked
- Press the search button again, and it goes back to normal mode.
- The search button state is coherent with the searchbox
- Coherence is kept when changing to a split view or different tab
- Shorcut <Ctrl-F> does not close the searchbar, but moves the focus to it.
Reviewers: #dolphin, ngraham, #vdg, elvisangelaccio
Reviewed By: ngraham, #vdg
Subscribers: ndavis, felixernst, elvisangelaccio, kfm-devel
Tags: #dolphin
Maniphest Tasks: T8473
Differential Revision: https://phabricator.kde.org/D23232
2019-09-01 19:59:43 +00:00
|
|
|
<Action priority="0" name="toggle_search"/>
|
2020-12-02 07:07:41 +00:00
|
|
|
<Action priority="0" name="toggle_filter"/>
|
2010-10-07 13:33:01 +00:00
|
|
|
</ActionProperties>
|
2020-11-28 09:28:53 +00:00
|
|
|
</gui>
|