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 564587 - gtk.Statusbar.remove overrides gtk.HBox.remove
gtk.Statusbar.remove overrides gtk.HBox.remove
Status: RESOLVED FIXED
Product: pygtk
Classification: Bindings
Component: gtk
unspecified
Other All
: Normal normal
: ---
Assigned To: Nobody's working on this now (help wanted and appreciated)
Python bindings maintainers
Depends on:
Blocks:
 
 
Reported: 2008-12-15 09:59 UTC by Karl Ostmo
Modified: 2011-10-25 07:48 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
proposed patch (7.77 KB, patch)
2009-05-02 15:44 UTC, Paul Pogonyshev
committed Details | Review
proposed patch (7.77 KB, patch)
2009-05-02 15:47 UTC, Paul Pogonyshev
none Details | Review

Description Karl Ostmo 2008-12-15 09:59:19 UTC
Please describe the problem:
Widgets can be added/packed into a gtk.Statusbar but not removed again.

This is a problem with the API.  One solution would be to rename the method of gtk.Statusbar to "remove_message" rather than "remove" (such as is done in gtkmm).

Steps to reproduce:



Actual results:


Expected results:


Does this happen every time?


Other information:
Comment 1 Paul Pogonyshev 2008-12-15 17:34:39 UTC
I'm not sure if we can really do anything about this in 2.x, because it would then break backward-compatibility in a very bad way.  One idea is to hack gtk.Statusbar.remove to invoke gtk.Container.remove if called with only one parameter.  But we should certainly add remove_message().

As a workaround you probably can gtk.Container.remove (statusbar, ...), though I didn't try.
Comment 2 Karl Ostmo 2008-12-16 04:10:39 UTC
This workaround does work.

Assuming statusbar is a gtk.Statusbar, and my_box is a gtk.Widget,
instead of calling statusbar.remove(my_box) one can call gtk.HBox.remove(statusbar, my_box).

Thanks!
Comment 3 Paul Pogonyshev 2009-05-02 15:44:09 UTC
Created attachment 133811 [details] [review]
proposed patch

Add new gtk.Statusbar.remove_message with old semantics.  gtk.Statusbar.remove can still be used to remove messages, but there will be a deprecation warning.  gtk.Statusbar.remove can now be used to remove child widgets.
Comment 4 Paul Pogonyshev 2009-05-02 15:47:22 UTC
Created attachment 133812 [details] [review]
proposed patch

Add new gtk.Statusbar.remove_message with old semantics.  gtk.Statusbar.remove can still be used to remove messages, but there will be a deprecation warning.  gtk.Statusbar.remove can now be used to remove child widgets.
Comment 5 Paul Pogonyshev 2009-05-02 15:53:55 UTC
Johan, if possible, please review this.  I'm not completely sure it is the approach to take, but, on the other hand, I seriously dislike this method hiding stuff, even if widgets are not going to be removed from status bars 99% of the time.
Comment 6 John Finlay 2009-05-02 17:18:03 UTC
You could just do as you suggested in comment #1 and just leave the API the same but disambiguate the call in gtk.Statusbar.remove() as your new code already does. No need for doc changes or deprecation warnings, etc.
Comment 7 Paul Pogonyshev 2009-06-17 22:14:51 UTC
The reason I dislike disambiguation is because the functions do so different things.  Maybe still document remove_message() as preferred function, but disambiguate silently, i.e. without deprecation warning?
Comment 8 Gian Mario Tagliaretti 2009-06-19 20:14:49 UTC
Paul,

I would certainly add a remove_message() and deprecate the old call to remove with a meaningful message as you have already done in the docs and in the defs.
Comment 9 Paul Pogonyshev 2009-06-19 20:39:47 UTC
So I applied the patch in its original form, with deprecation warning.  Sorry, John ;)
Comment 10 John Finlay 2009-06-19 20:52:05 UTC
No problem. I'm just part of the peanut gallery. :-)
Comment 11 Karl Ostmo 2011-10-25 07:42:19 UTC
This is still broken in GTK+ 3.

http://developer.gnome.org/gtk3/3.0/GtkStatusbar.html

The remove() method of StatusBar has the same name as the remove() method of Container, causing the latter to be overridden in Python.
Comment 12 John Stowers 2011-10-25 07:48:55 UTC
(In reply to comment #11)
> This is still broken in GTK+ 3.
> 
> http://developer.gnome.org/gtk3/3.0/GtkStatusbar.html
> 
> The remove() method of StatusBar has the same name as the remove() method of
> Container, causing the latter to be overridden in Python.

pygtk does not support gtk3