~ubuntu-branches/ubuntu/quantal/gtkmm3.0/quantal

« back to all changes in this revision

Viewing changes to gtk/src/actiongroup.hg

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2012-03-01 23:42:36 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20120301234236-12w6m0hkomhi7h53
Tags: 3.3.16-0ubuntu1
* New upstream version
* debian/control.in: updated the glib requirement

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
  //These are also just C convenience methods that are useless unless you are using the other convenience methods:
86
86
  _IGNORE(gtk_action_group_set_translate_func, gtk_action_group_set_translation_domain)
87
87
 
88
 
  /** The connect_proxy signal is emitted after connecting a proxy to 
89
 
   * an action in the group. Note that the proxy may have been connected 
90
 
   * to a different action before.
91
 
   *
92
 
   * This is intended for simple customizations for which a custom action
93
 
   * class would be too clumsy, e.g. showing tooltips for menuitems in the
94
 
   * statusbar.
95
 
   *
96
 
   * UIManager proxies the signal and provides global notification 
97
 
   * just before any action is connected to a proxy, which is probably more
98
 
   * convenient to use.
99
 
   *
100
 
   * @param action the action
101
 
   * @param proxy the proxy
102
 
   */
103
88
  _WRAP_SIGNAL(void connect_proxy(const Glib::RefPtr<Action>& action, Widget* proxy), "connect_proxy", no_default_handler)
104
 
  
105
 
  /** The disconnect_proxy signal is emitted after disconnecting a proxy 
106
 
   * from an action in the group. 
107
 
   *
108
 
   * UIManager proxies the signal and provides global notification 
109
 
   * just before any action is connected to a proxy, which is probably more
110
 
   * convenient to use.
111
 
   *
112
 
   * @param action the action
113
 
   * @param proxy the proxy
114
 
   */
115
89
  _WRAP_SIGNAL(void disconnect_proxy(const Glib::RefPtr<Action>& action, Widget* proxy), "disconnect_proxy", no_default_handler)
116
 
  
117
 
  /** The pre_activate signal is emitted just before the @action in the
118
 
   * action_group is activated
119
 
   *
120
 
   * This is intended for UIManager to proxy the signal and provide global
121
 
   * notification just before any action is activated.
122
 
   *
123
 
   * @action the action
124
 
   */          
125
90
  _WRAP_SIGNAL(void pre_activate(const Glib::RefPtr<Action>& action), "pre_activate", no_default_handler)
126
 
  
127
 
  /** The post_activate signal is emitted just after the @action in the
128
 
   * @action_group is activated
129
 
   *
130
 
   * This is intended for UIManager to proxy the signal and provide global
131
 
   * notification just after any action is activated.
132
 
   *
133
 
   * @param action the action
134
 
   */ 
135
91
  _WRAP_SIGNAL(void post_activate(const Glib::RefPtr<Action>& action), "post_activate", no_default_handler)
136
92
  
137
93
  _WRAP_PROPERTY("name", Glib::ustring)