Paul Davis
449aab3c46
git-svn-id: svn://localhost/ardour2/branches/3.0@3435 d708f5d6-7413-0410-9779-e7cbd77b26cf
58 lines
1.3 KiB
C++
58 lines
1.3 KiB
C++
#include <gtkmm/box.h>
|
|
#include <gtkmm/button.h>
|
|
#include <gtkmm/label.h>
|
|
#include <gtkmm/window.h>
|
|
#include <gtkmm/main.h>
|
|
|
|
class AppWindow
|
|
: public Gtk::Window
|
|
{
|
|
public:
|
|
AppWindow ();
|
|
|
|
private:
|
|
void on_button_clicked();
|
|
|
|
Gtk::Label* m_label;
|
|
};
|
|
|
|
AppWindow::AppWindow()
|
|
: m_label (NULL)
|
|
{
|
|
Gtk::Box* vbox = manage (new Gtk::VBox (false, 5));
|
|
add(*vbox);
|
|
|
|
Gtk::Button* button = Gtk::manage (new Gtk::Button ("Delete Label"));
|
|
|
|
vbox->pack_start(*button, Gtk::PACK_SHRINK);
|
|
|
|
|
|
//m_label = manage (new Gtk::Label ("test"));
|
|
m_label = new Gtk::Label ("test");
|
|
g_warning("m_label -> ref_count: %d\n", G_OBJECT(m_label->gobj())->ref_count);
|
|
vbox->pack_start(*m_label, Gtk::PACK_SHRINK);
|
|
g_warning("m_label -> ref_count: %d\n", G_OBJECT(m_label->gobj())->ref_count);
|
|
|
|
button->signal_clicked ().connect( sigc::mem_fun(*this, &AppWindow::on_button_clicked) );
|
|
|
|
show_all_children();
|
|
}
|
|
|
|
void AppWindow::on_button_clicked()
|
|
{
|
|
if(m_label)
|
|
{
|
|
g_warning("AppWindow::on_button_clicked(): label refcount=%d", G_OBJECT(m_label->gobj())->ref_count);
|
|
delete m_label;
|
|
m_label = 0;
|
|
}
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
Gtk::Main kit(&argc, &argv);
|
|
AppWindow app;
|
|
Gtk::Main::run(app);
|
|
return(0);
|
|
}
|