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

« back to all changes in this revision

Viewing changes to gtk/gtkmm/menushell.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:
106
106
  //GTK+ Virtual Functions (override these to change behaviour):
107
107
 
108
108
  //Default Signal Handlers::
 
109
  /// This is a default handler for the signal signal_deactivate().
109
110
  virtual void on_deactivate();
 
111
  /// This is a default handler for the signal signal_selection_done().
110
112
  virtual void on_selection_done();
 
113
  /// This is a default handler for the signal signal_move_selected().
111
114
  virtual gboolean on_move_selected(int distance);
112
115
 
113
116
 
185
188
 
186
189
  
187
190
  /**
188
 
   * @par Prototype:
 
191
   * @par Slot Prototype:
189
192
   * <tt>void on_my_%deactivate()</tt>
 
193
   *
 
194
   * This signal is emitted when a menu shell is deactivated.
190
195
   */
191
196
 
 
197
 
192
198
  Glib::SignalProxy0< void > signal_deactivate();
193
199
 
194
200
  
195
201
  /**
196
 
   * @par Prototype:
 
202
   * @par Slot Prototype:
197
203
   * <tt>void on_my_%selection_done()</tt>
 
204
   *
 
205
   * This signal is emitted when a selection has been
 
206
   * completed within a menu shell.
198
207
   */
199
208
 
 
209
 
200
210
  Glib::SignalProxy0< void > signal_selection_done();
201
211
 
202
212
  
203
213
  /**
204
 
   * @par Prototype:
 
214
   * @par Slot Prototype:
205
215
   * <tt>gboolean on_my_%move_selected(int distance)</tt>
 
216
   *
 
217
   * The signal_move_selected() signal is emitted to move the selection to
 
218
   * another item.
 
219
   * 
 
220
   * @newin{2,12}
 
221
   * @param distance +1 to move to the next item, -1 to move to the previous.
 
222
   * @return <tt>true</tt> to stop the signal emission, <tt>false</tt> to continue.
206
223
   */
207
224
 
 
225
 
208
226
  Glib::SignalProxy1< gboolean,int > signal_move_selected();
209
227
 
210
228
 
326
344
  const Widget* get_parent_shell() const;
327
345
  
328
346
  #ifdef GLIBMM_PROPERTIES_ENABLED
329
 
/** A boolean that determines whether the menu grabs the keyboard focus.
 
347
/** 
330
348
   *
331
349
   * You rarely need to use properties because there are get_ and set_ methods for almost all of them.
332
350
   * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when