diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-07-26 19:07:25 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-07-26 19:07:25 +0200 |
commit | 96807aee813280c195224455c85d6c3e6d180c4e (patch) | |
tree | 2b5a10a23034ced528bd5c580b8cf722cb06bf8d /src/rekonqui.rc | |
parent | SVN_SILENT made messages (.desktop file) (diff) | |
download | rekonq-96807aee813280c195224455c85d6c3e6d180c4e.tar.xz |
Back to XMLGUI.
This means configurable toolbars and the old problems
with our no menubar choice.
We'll see what will happen this time...
Yoann: can you pls check my port of the bookmarks toolbar?
Diffstat (limited to 'src/rekonqui.rc')
-rw-r--r-- | src/rekonqui.rc | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/src/rekonqui.rc b/src/rekonqui.rc new file mode 100644 index 00000000..28baff5d --- /dev/null +++ b/src/rekonqui.rc @@ -0,0 +1,100 @@ +<?xml version="1.0"?> +<!DOCTYPE gui SYSTEM "kpartgui.dtd"> +<gui name="rekonq" version="51"> + +<MenuBar> + +<!-- ============ FILE menu =========== --> +<Menu name="file" noMerge="1"><text>&File</text> + <Action name="file_open" /> + <Action name="open_location" /> + <Separator/> + <Action name="new_tab" /> + <Action name="close_tab" /> + <Separator/> + <Action name="file_save_as" /> + <Separator/> + <Action name="file_print_preview" /> + <Action name="file_print" /> + <Separator/> + <Action name="file_quit" /> +</Menu> + +<!-- ============ EDIT menu =========== --> +<Menu name="edit" noMerge="1"><text>&Edit</text> + <Action name="edit_undo" /> + <Action name="edit_redo" /> + <Separator/> + <Action name="edit_cut" /> + <Action name="edit_copy" /> + <Action name="edit_paste" /> + <Separator/> + <Action name="edit_find" /> + <Action name="edit_find_next" /> + <Action name="edit_find_prev" /> +</Menu> + +<!-- ============ VIEW menu =========== --> +<Menu name="view" noMerge="1"><text>&View</text> + <Action name="view_redisplay" /> + <Action name="go_home" /> + <Separator/> + <Action name="bigger_font" /> + <Action name="normal_font" /> + <Action name="smaller_font" /> + <Separator/> + <Action name="page_source" /> +</Menu> + +<!-- ============ GO menu =========== --> +<Menu name="go" deleted="true"> +</Menu> + +<!-- ============ HISTORY menu =========== --> +<Action name="history" ><text>Hi&story</text> +</Action> + +<!-- ============ BOOKMARKS menu =========== --> +<Action name="bookmarksActionMenu" ><text>&Bookmarks</text> +</Action> + +<!-- ============ TOOLS menu =========== --> +<Menu name="tools" noMerge="1"><text>&Tools</text> + <Action name="web_inspector" /> + <Action name="private_browsing" /> + <Action name="clear_private_data" /> +</Menu> + +<!-- ============ SETTINGS menu =========== --> +<Menu name="settings" noMerge="1"><text>&Settings</text> + <Action name="options_show_menubar" /> + <Merge name="StandardToolBarMenuHandler" /> + <Merge/> + <Separator/> + <Action name="fullscreen" /> + <Separator/> + <Action name="options_configure_keybinding" /> + <Action name="options_configure_toolbars" /> + <Action name="options_configure" /> +</Menu> + +</MenuBar> + +<!-- ============ Main ToolBar =========== --> +<ToolBar name="mainToolBar" position="top" iconText="iconOnly" newline="true" noMerge="1"> +<text>Main Toolbar</text> + <Action name="go_back" /> + <Action name="go_forward" /> + <Separator /> + <Action name="stop_reload" /> + <Action name="url_bar" /> + <Action name="rekonq_tools" /> +</ToolBar> + +<!-- ============ Bookmarks ToolBar =========== --> +<ToolBar name="bookmarksToolBar" fullWidth="true" iconText="icontextright" iconSize="16" newline="true" hidden="true" noEdit="true"> + <text>Bookmark Toolbar</text> + <Action noEdit="true" name="bookmarks_bar" /> +</ToolBar> + +</gui> |