Gtkmm-forge digest, Vol 1 #826 - 2 msgs



Send Gtkmm-forge mailing list submissions to
	gtkmm-forge lists sourceforge net

To subscribe or unsubscribe via the World Wide Web, visit
	https://lists.sourceforge.net/lists/listinfo/gtkmm-forge
or, via email, send a message with subject or body 'help' to
	gtkmm-forge-request lists sourceforge net

You can reach the person managing the list at
	gtkmm-forge-admin lists sourceforge net

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Gtkmm-forge digest..."


gtkmm-forge is the mailing list that receives gtkmm bug reports from bugzilla.  A daily digest is sent to gtkmm-main, to encourage people to help fixing the bugs. Do not try to unsubscribe gtkmm-forge from gtkmm-list.


Today's Topics:

   1. [Bug 161276] New: configure_events not beeing delivered (bugzilla-daemon bugzilla gnome org)
   2. [Bug 161276] configure_events not beeing delivered (bugzilla-daemon bugzilla gnome org)

--__--__--

Message: 1
From: bugzilla-daemon bugzilla gnome org
To: gtkmm-forge lists sourceforge net
Cc: 
Date: Tue, 14 Dec 2004 09:43:27 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 161276] New: configure_events not beeing delivered

http://bugzilla.gnome.org/show_bug.cgi?id=161276
gtkmm | general | Ver: 2.4

           Summary: configure_events not beeing delivered
           Product: gtkmm
           Version: 2.4
          Platform: Other
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: major
          Priority: Normal
         Component: general
        AssignedTo: gtkmm-forge lists sourceforge net
        ReportedBy: joerg zilium de


bool on_configure(GdkEventConfigure *arg)
{
	std::cout << "Got Configure" << std::endl;
	return false;
}

[..]
int main() {
    widget.signal_configure_event().connect(sigc::ptr_fun(&on_configure));
}

does not work. However, when I subclass a widget, override virtual bool
on_configure_event(..) { return false; }; signal delivery works fine again.

------- You are receiving this mail because: -------
You are the assignee for the bug.


--__--__--

Message: 2
From: bugzilla-daemon bugzilla gnome org
To: gtkmm-forge lists sourceforge net
Cc: 
Date: Tue, 14 Dec 2004 10:02:20 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 161276] configure_events not beeing delivered

http://bugzilla.gnome.org/show_bug.cgi?id=161276
gtkmm | general | Ver: 2.4





------- Additional Comments From joerg zilium de  2004-12-14 10:02 -------
complete testcase:
#include <iostream>
#include <gtkmm.h>


class MyWindow : public Gtk::Window
{
public:
//        virtual bool on_configure_event(GdkEventConfigure *event)
//        {
//                std::cout << "Inherited Configure" << std::endl;
//                return false;
//        }
};



bool on_configure(GdkEventConfigure *arg)
{
        std::cout << "Got Configure" << std::endl;
        return false;
}

// main
int main(int argc, char *argv[])
{
        Gtk::Main kit(argc, argv);

        MyWindow window;

        window.signal_configure_event().connect(sigc::ptr_fun(&on_configure));

        Gtk::Main::run(window);

        return 0;
}



------- You are receiving this mail because: -------
You are the assignee for the bug.



--__--__--

_______________________________________________
Gtkmm-forge mailing list
Gtkmm-forge lists sourceforge net
https://lists.sourceforge.net/lists/listinfo/gtkmm-forge


End of Gtkmm-forge Digest



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]