1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
<!DOCTYPE kpartgui SYSTEM "kpartgui.dtd">
<kpartgui name="massif-visualizer" version="10">
<MenuBar>
<Menu name="file"><text>&File</text>
<Action name="file_open"/>
<Action name="file_open_recent"/>
<Action name="file_reload"/>
<Separator/>
<DefineGroup name="file_saveas_merge" append="file_saveas_merge"/>
<Separator/>
<Action name="file_close"/>
<Separator/>
<Action name="file_quit"/>
<DefineGroup name="close_merge" append="close_merge"/>
</Menu>
<Menu name="view">
<text>&View</text>
<Action name="selectPeak"/>
</Menu>
<Menu name="settings"><text>&Settings</text>
<Merge name="StandardToolBarMenuHandler" />
<Menu name="dockWidgets"><text>&Dock Widgets</text>
<Action name="toggleDataTree" />
<Action name="toggleAllocators" />
</Menu>
<DefineGroup name="show_toolbar_merge" />
<Action name="set_configure_toolbars" />
<Action name="settings_configure" />
</Menu>
<Menu name="help"><text>&Help</text>
<Action name="help_whats_this"/>
<Separator/>
<Action name="help_report_bug"/>
<Separator/>
<Action name="help_about_app"/>
<Action name="help_about_editor"/>
<Action name="help_about_kde"/>
</Menu>
</MenuBar>
<ToolBar name="mainToolBar"><text>Main Toolbar</text>
<Action name="file_open" />
<Action name="file_close" />
<Separator />
<Action name="shorten_templates" />
<Separator />
<Action name="selectPeak"/>
<Separator />
</ToolBar>
</kpartgui>
|