After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 163532 - Add a 'close all' entry to the 'File' menu
Add a 'close all' entry to the 'File' menu
Status: RESOLVED FIXED
Product: GIMP
Classification: Other
Component: User Interface
2.2.x
Other All
: Normal enhancement
: 2.4
Assigned To: GIMP Bugs
GIMP Bugs
Depends on:
Blocks:
 
 
Reported: 2005-01-10 08:52 UTC by Fritz Jetzek
Modified: 2008-01-15 12:45 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Adding a close all option ... (14.85 KB, patch)
2005-09-24 15:19 UTC, Sylvain FORET
none Details | Review

Description Fritz Jetzek 2005-01-10 08:52:59 UTC
I frequently use dozens of calls to gimp-remote to display a bunch of pictures
that belong together, and I repeat this many times, each time obsoleting all
earlier views. At the moment I can only manually close each of the previous
instances (or restart the Gimp), which is tedious. It would be extremely helpful
if there were a 'close all' entry in the 'File' pulldown menu of each gimp image
window.
Comment 1 Sven Neumann 2005-01-10 10:11:54 UTC
Probably belongs into the Images dialog. We could simply add a Close entry to
the images in that dialog and allow for multiple selections.
Comment 2 Fritz Jetzek 2005-01-10 14:27:09 UTC
But then you'd have to make a selection in the image dialog each time. Still an
improvement, though.
IMO the Gimp needs both =)

BTW, I realized too late this feature request has been issued before:

 http://bugzilla.gnome.org/show_bug.cgi?id=106726

Fritz
Comment 3 Sven Neumann 2005-01-10 19:28:12 UTC
Well, that report mentioned two things at the same time which is always bad. I
am going to change the summary of bug #106726 and keep this one open for "Close
All".
Comment 4 Fritz Jetzek 2005-01-14 13:44:30 UTC
For the time being, the following Script-Fu does the job for me:

(define (script-fu-close-all)

        (while (> (car (gimp-image-list)) 0)
                (set! image (aref (car (cdr (gimp-image-list))) 0))
                (gimp-display-delete image)))

        (script-fu-register "script-fu-close-all"
                _"_Close All"
                "Close all open image views"
                "Fritz Jetzek <fritz.jetzek@evotec-technologies.com>"
                "Fritz Jetzek"
                "2005/1/14"
                "")

        (script-fu-menu-register "script-fu-close-all"
                _"<Toolbox>/File/")
Comment 5 Michael Natterer 2005-01-14 14:17:40 UTC
That script is bogus. You can't delete displays by image ID.
Comment 6 Sven Neumann 2005-01-19 00:04:20 UTC
The menu entry would be easy to implement, setting the easy-fix keyword. Adding
this functionality to the Images dockable is slightly more complex but still a
nice thing to do for someone who wants to start playing with the GIMP actions
subsystem.
Comment 7 Sven Neumann 2005-01-19 00:06:09 UTC
Needless to mention that File -> Close All would need a confirmation dialog
similar to the one in app/widgets/gimpdock.c.
Comment 8 Sylvain FORET 2005-09-24 15:19:30 UTC
Created attachment 52599 [details] [review]
Adding a close all option ...

This patch might fix it.
I kept 'close all' closely linked to 'quit' because the semantics are quite
similar so the interfaces should probably be managed by the same underlying
code.
Comment 9 Michael Natterer 2005-09-24 19:30:54 UTC
Great :) Fixed in CVS:

2005-09-24  Michael Natterer  <mitch@gimp.org>

	Applied (slightly modified) patch from Sylvain Foret which adds
	"Close All" menu entries and dialog. Fixes bug #163532.

	* app/actions/file-actions.c
	* app/actions/file-commands.[ch]: added "file-close-all" action
	and callback.

	* app/dialogs/dialogs-constructors.[ch]
	* app/dialogs/dialogs.c
	* app/dialogs/quit-dialog.[ch]: added close all dialog which is a
	modified quit dialog.

	* app/widgets/gimphelp-ids.h: added help ID.

	* menus/image-menu.xml.in
	* menus/toolbox-menu.xml.in: add close all next to quit.