Blog Forum Wiki Links Contact Us NetbookUser
 
Translations of this page:

Alright you configured Gwenview to load the “KIPI Digital Camera interface Plugin”. You thought great now I can connect my camera and download the pictures. You hook up the camera and now what, there is suppose to be a Plugins menu selection there, but it isn't there. You think now how am I going to down load the pictures.

Well it seems that the updated version of Gwenview that Asus provided has a broken gwenviewui.rc file. It is missing the Plugins menu selection in the gwenviewui.rc file.

Let us fix this little blooper that Asus created.

1. Open your File manager and go to here (~ = /home/user) ~/.kde/share/apps/gwenview/gwenviewui.rc and see if the gwenviewui.rc file is there. If it does open it with your favorite editor and get ready to fix it. If not lets copy the one that exists here, /usr/share/apps/gwenview/gwenviewui.rc to the above file path location.

2. Here is what the file should look like.

<?xml version="1.0"?>
<!DOCTYPE gui SYSTEM "kpartgui.dtd">
<kpartgui name="Gwenview" version="27">
<MenuBar>
   <Menu name="file">
     <Action name="file_rename"/>
     <Action name="file_copy"/>
     <Action name="file_move"/>
     <Action name="file_link"/>
     <Action name="file_delete"/>
     <Separator/>
     <Action name="file_properties"/>
   </Menu>
   <Menu name="edit">
     <Action name="rotate_left"/>
     <Action name="rotate_right"/>
     <Action name="mirror"/>
     <Action name="flip"/>
   </Menu>
   <Menu name="view" noMerge="1">
     <text>&amp;View</text>
     <Action name="reload"/>
     <Separator/>
     <Action name="switch_to_view_mode" />
     <Action name="switch_to_browse_mode" />
     <Action name="fullscreen"/>
     <Action name="slideshow"/>
     <Separator/>
     <Action name="list_mode" />
     <Action name="side_thumbnail_mode" />
     <Action name="bottom_thumbnail_mode" />
     <Action name="show_dot_files"/>
     <Separator/>
    <Menu name="colors">
        <text>&amp;Colors</text>
        <Action name="increase_gamma"/>
        <Action name="decrease_gamma"/>
        <Action name="increase_brightness"/>
        <Action name="decrease_brightness"/>
        <Action name="increase_contrast"/>
        <Action name="decrease_contrast"/>
        <Action name="adjust_bcg"/>
      </Menu>
      <Action name="view_zoom_to_fit"/>
      <Action name="view_zoom_to_width"/>
      <Action name="view_zoom_to_height"/>
      <Action name="view_zoom_in"/>
      <Action name="view_zoom_out"/>
      <Action name="view_actual_size"/>
      <Action name="view_zoom_lock"/>
   </Menu>
   <Menu name="go_web" noMerge="1">
     <text>&amp;Go</text>
     <Action name="first"/>
     <Action name="previous"/>
     <Action name="next"/>
     <Action name="last"/>
   <Separator/>
     <Action name="go_back"/>
     <Action name="go_forward"/>
     <Action name="go_home"/>
   <Separator/>
     <Action name="go_up"/>
     <Action name="first_sub_folder"/>
     <Action name="previous_folder"/>
     <Action name="next_folder"/>
   </Menu>
   <Action name="bookmarks"/>
   <Menu name="settings">
     <Action name="configure_tools" append="configure_merge"/>
   </Menu>
     <Menu name="plugins">
     <text>&amp;Plugins</text>
     <Menu name="kipi_images">
       <text>Images</text>
       <ActionList name="image_actions"/>
     </Menu>
     <Menu name="kipi_effects">
       <text>Effects</text>
       <ActionList name="effect_actions"/>
     </Menu>
     <Menu name="kipi_tools">
       <text>Tools</text>
       <ActionList name="tool_actions"/>
     </Menu>
     <Menu name="kipi_batch">
       <text>Batch Processing</text>
       <ActionList name="batch_actions"/>
     </Menu>
     <Menu name="kipi_import">
       <text>Import</text>
       <ActionList name="import_actions"/>
     </Menu>
     <Menu name="kipi_export">
       <text>Export</text>
       <ActionList name="export_actions"/>
     </Menu>
     <Menu name="kipi_collections">
       <text>Collections</text>
       <ActionList name="collection_actions"/>
     </Menu>
   </Menu>
   <Menu name="window">
     <text>&amp;Window</text>
     <ActionList name="winlist"/>
    <Separator/>
     <Action name="reset_dock_widgets"/>
   </Menu>
</MenuBar>

<ToolBar name="mainToolBar" noMerge="1" iconText="icontextright">
   <text>Main Toolbar</text>
   <Action name="switch_to_browse_mode"/>
   <Action name="switch_to_view_mode"/>
   <Action name="fullscreen"/>
   <Action name="slideshow"/>
</ToolBar>

<ToolBar name="locationToolBar">
   <text>Location Toolbar</text>
   <Action name="go_back" />
   <Action name="go_forward" />
   <Action name="go_up" />
   <Action name="go_home" />
   <Action name="clear_location" />
   <Action name="location_label" />
   <Action name="location_url" />
   <Action name="location_go" />
</ToolBar>

<StatusBar/>

</kpartgui>

3. Look for the section that has this:

A little more than 1/2 way down

   <Action name="bookmarks"/>
   <Menu name="settings">
     <Action name="configure_tools" append="configure_merge"/>
   </Menu>
   <Menu name="window">
     <text>&amp;Window</text>
     <ActionList name="winlist"/>
    <Separator/>
     <Action name="reset_dock_widgets"/>
   </Menu>

4. Insert the below between </Menu> and <Menu name=“window”>

     <Menu name="plugins">
     <text>&amp;Plugins</text>
     <Menu name="kipi_images">
       <text>Images</text>
       <ActionList name="image_actions"/>
     </Menu>
     <Menu name="kipi_effects">
       <text>Effects</text>
       <ActionList name="effect_actions"/>
     </Menu>
     <Menu name="kipi_tools">
       <text>Tools</text>
       <ActionList name="tool_actions"/>
     </Menu>
     <Menu name="kipi_batch">
       <text>Batch Processing</text>
       <ActionList name="batch_actions"/>
     </Menu>
     <Menu name="kipi_import">
       <text>Import</text>
       <ActionList name="import_actions"/>
     </Menu>
     <Menu name="kipi_export">
       <text>Export</text>
       <ActionList name="export_actions"/>
     </Menu>
     <Menu name="kipi_collections">
       <text>Collections</text>
       <ActionList name="collection_actions"/>
     </Menu>
   </Menu>

5. Now save the file and start Gwenview up and the Plugins selection should be there.

Happy file transferring from your camera to your 3ePC.

Sources that helped me to do this are from here.

http://forum.eeeuser.com/viewtopic.php?id=6462 http://www.nabble.com/Gwenview-does-not-display-the-%22plugins%22-menu-td16061722.html

 
gwenviewui-rc_file_fix.txt · Last modified: 2008/05/18 11:54 by dracothered
 
Recent changes RSS feed Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki