GIMP reconfigured to legacy style

Created by: Lester Caine, Last modification: 12 Dec 2015 (23:43 GMT)

In windows days the tool of choice for sizing and croping images was PaintShopPro, which was a chargable package until version 5 was relased as a free download on one of the magazines, but it always had a few quirks which made it less than the ideal tool. GIMP addressed such things as being able to drag the crop box to fine tune it's position and other handy short cuts, but it suffered from an iritating change to the user interface where one could no longer simply open an image and save the edited version. The save defaulted to safing all of the GIMP workspace activity relating to the image and one had to remember to 'export' rather than 'save'. An action that is out of sink with all other tools for other file formats. However since the control interface is a writen in Python one can at least reconfigure some of these elements and get back to a more familiar style of working.

shallowsky plugins in particular gimp-save restores the save and save-as functions and it is possible to hide the additional menu items by following gimp-developer-list/2015-May/msg00113

You need to edit /usr/share/gimp/2.0/menus and comment out a few lines so that it becomes:
<separator/>
  <placeholder name="Save">
    <!--<menuitem action="file-save"/>
    <menuitem action="file-save-as"/>
    <menuitem action="file-save-a-copy"/>-->
  </placeholder>
  <menuitem action="file-revert"/>
  <separator/>
 <!-- <placeholder name="Export">
    <menuitem action="file-export-to"/>
    <menuitem action="file-overwrite"/>
    <menuitem action="file-export"/>
  </placeholder>-->
  <menuitem action="file-create-template"/>

Some of the elements of the menu are added automatically when a plug-in is installed, but it was possible to edit the auto-register element of the gimp-save function to provide a more familiar set of names and order.

(Need to document just what had been done to get GIMP to the style required)