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

« back to all changes in this revision

Viewing changes to gtk/gtkmm/radiobutton.h

  • 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:
104
104
  //GTK+ Virtual Functions (override these to change behaviour):
105
105
 
106
106
  //Default Signal Handlers::
 
107
  /// This is a default handler for the signal signal_group_changed().
107
108
  virtual void on_group_changed();
108
109
 
109
110
 
159
160
   * 
160
161
   * A common way to set up a group of radio buttons is the following:
161
162
   * 
 
163
   * [C example ellipted]
162
164
   * 
163
165
   * @newin{3,0}
164
166
   * @param group_source A radio button object whos group we are 
168
170
 
169
171
  
170
172
  /**
171
 
   * @par Prototype:
 
173
   * @par Slot Prototype:
172
174
   * <tt>void on_my_%group_changed()</tt>
 
175
   *
 
176
   * Emitted when the group of radio buttons that a radio button belongs
 
177
   * to changes. This is emitted when a radio button switches from
 
178
   * being alone to being part of a group of 2 or more buttons, or
 
179
   * vice-versa, and when a button is moved from one group of 2 or
 
180
   * more buttons to a different one, but not when the composition
 
181
   * of the group that a button belongs to changes.
 
182
   * 
 
183
   * @newin{2,4}
173
184
   */
174
185
 
 
186
 
175
187
  Glib::SignalProxy0< void > signal_group_changed();
176
188
 
177
189