On Sun, 20 Dec 2009 10:08:13 +0100, Dominik wrote:
Hi,
I have created a patch for the feature request I reported at [1], unfortunately I did not log in before submitting so I cannot add the patch to the ticket myself, therefore I am providing it here.
No problem. Though I didn't realise until now that the feature request was submitted by you, so my comment in the tracker sounds a bit weird now :). Anyway, thanks for your patch.
It adds a button "Close" to the message box that is shown when an opened file is not available on the disk any more. Currently it only allows to "Save" or "Cancel". However most of the time I would like to simply close the file in such a case as I deleted it on-purpose. This case was a bit cumbersome at the moment in Geany.
I fully agree, should be better now.
The patch is quite simple, but surely a bit "crude" at the moment, I do not know GTK/GNOME development at all, so I just duplicated the related methods to create an instance of dialogs_show_question which takes a third argument and use that to show the message box. I also had to duplicate the code that actually closes the file in order to
I did it a bit different: I modifed dialogs_show_prompt to take also response codes, not only button (stock) names. This way it was quite easy to add the additional button. I'm not sure why you duplicated the code to close a document, document_close() already exists. I changed the logic a bit and now we mark the document only as changed if it isn't closed.
Maybe someone with more rights can attach this to the feature request?
I committed the changes to SVN, I guess that's enough :).
Thanks, Enrico