You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1021 B
33 lines
1021 B
15 years ago
|
echo "Creating $LOCATION_ROOT/${APP_NAME_LC}/${APP_NAME_LC}_shell.rc...";
|
||
|
cat << EOF > $LOCATION_ROOT/${APP_NAME_LC}/${APP_NAME_LC}_shell.rc
|
||
|
<!DOCTYPE kpartgui SYSTEM "kpartgui.dtd">
|
||
|
<kpartgui name="${APP_NAME_LC}_shell" version="1">
|
||
|
<MenuBar>
|
||
|
<Menu noMerge="1" name="file"><text>&File</text>
|
||
|
<Action name="file_new"/>
|
||
|
<Action name="file_open"/>
|
||
|
<Separator/>
|
||
|
<Merge/>
|
||
|
<Separator/>
|
||
|
<Action name="file_quit"/>
|
||
|
</Menu>
|
||
|
<Menu noMerge="1" name="settings"><text>&Settings</text>
|
||
|
<Action name="options_show_toolbar"/>
|
||
|
<Action name="options_show_statusbar"/>
|
||
|
<Merge name="show_merge"/>
|
||
|
<Separator/>
|
||
|
<Action name="options_configure_keybinding"/>
|
||
|
<Action name="options_configure_toolbars"/>
|
||
|
<Action name="options_configure"/>
|
||
|
<Merge name="configure_merge"/>
|
||
|
<Separator/>
|
||
|
<Merge/>
|
||
|
</Menu>
|
||
|
</MenuBar>
|
||
|
<ToolBar noMerge="1" name="mainToolBar"><text>Main Toolbar</text>
|
||
|
<Action name="file_new"/>
|
||
|
<Merge/>
|
||
|
<Action name="help"/>
|
||
|
</ToolBar>
|
||
|
</kpartgui>
|