summaryrefslogtreecommitdiff
path: root/glib/glibmm/signalproxy_connectionnode.cc
blob: 07586255e3310fca1799f449ea52c5b8b630f13c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// -*- c++ -*-

/* $Id$ */

/* signalproxy_connectionnode.cc
 *
 * Copyright (C) 2002 The gtkmm Development Team
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the Free
 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include <glibmm/signalproxy_connectionnode.h>
#include <glibmm/object.h>


namespace Glib
{

SignalProxyConnectionNode::SignalProxyConnectionNode(const sigc::slot_base& slot, GObject* gobject)
:
  connection_id_ (0),
  slot_          (slot),
  object_        (gobject)
{
  slot_.set_parent(this, &SignalProxyConnectionNode::notify);
}

// notify is a message coming up from the slot to be passed back to Gtk+
// disconnect is a message coming up from the Gtk+ to be passed down to SigC++
//static
void* SignalProxyConnectionNode::notify(void* data)
{
  // notification from sigc++.
  SignalProxyConnectionNode* conn = static_cast<SignalProxyConnectionNode*>(data);

  // if there is no object, this call was triggered from destroy_notify_handler().
  if(conn && conn->object_)
  {
    GObject* o = conn->object_;
    conn->object_ = 0;

    // this triggers execution of destroy_notify_handler():
    if(g_signal_handler_is_connected(o, conn->connection_id_)) //During destruction, GTK+ sometimes seems to disconnect them for us, before we expect it to.  See bug #87912
      g_signal_handler_disconnect(o, conn->connection_id_);

    conn->connection_id_ = 0;

    delete conn; // if there are connection objects referring to slot_ they are notified during destruction of slot_
  }

  return 0; // apparently unused in libsigc++
}

//static
void SignalProxyConnectionNode::destroy_notify_handler(gpointer data, GClosure*)
{
  // notification from gtk+.
  SignalProxyConnectionNode* conn = static_cast<SignalProxyConnectionNode*>(data);

  // if there is no object, this call was triggered from notify().
  if (conn && conn->object_)
  {
    // the object has already lost track of this object.
    conn->object_ = 0;

    delete conn; // if there are connection objects referring to slot_ they are notified during destruction of slot_
  }
}

} /* namespace Glib */