~ubuntu-branches/ubuntu/karmic/gtkmm2.4/karmic

« back to all changes in this revision

Viewing changes to gtk/gtkmm/optionmenu.h

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2009-09-22 10:14:59 UTC
  • mfrom: (1.2.42 upstream)
  • Revision ID: james.westby@ubuntu.com-20090922101459-pespb00fbm1mlqbd
Tags: 1:2.18.1-0ubuntu1
* New upstream release: (LP: #434355)
  - RecentManager: Undeprecate get_default().
  - Clipboard: wait_for_targets): Fix a crash.
  - Window: Added set_icon_name().
  - Require a recent pangomm.
  - Style: Fix a compiler error with the Intel C++ compiler.
  - Fix recently-introduced problems with disable-deprecated options.
* debian/control.in:
  - Bump libpangomm-1.4-dev depends and build-depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 
11
11
#include <glibmm.h>
12
12
 
13
 
/* $Id: optionmenu.hg,v 1.6 2006/04/12 11:11:25 murrayc Exp $ */
14
 
 
15
 
/* optionmenu.h
16
 
 * 
 
13
/*
17
14
 * Copyright (C) 1998-2002 The gtkmm Development Team
18
15
 *
19
16
 * This library is free software; you can redistribute it and/or
31
28
 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
32
29
 */
33
30
 
34
 
// This is for including the config header before any code (such as
 
31
 // This is for including the config header before any code (such as
35
32
// the #ifndef GTKMM_DISABLE_DEPRECATED in deprecated classes) is generated:
36
33
 
37
34
 
56
53
 * A Gtk::OptionMenu is a widget that allows the user to choose from a list
57
54
 * of valid choices. The Gtk::OptionMenu displays the selected choice. When
58
55
 * activated the GtkOptionMenu displays a popup Gtk::Menu which allows the
59
 
 * user to make a new choice. 
 
56
 * user to make a new choice.
60
57
 *
61
58
 * @deprecated Use the ComboBox widget instead.
62
59
 */
127
124
 
128
125
  OptionMenu();
129
126
  
130
 
  
 
127
 
131
128
  void set_menu(Menu& menu);
132
129
  
133
130
  Menu* get_menu();
152
149
   */
153
150
 
154
151
  Glib::SignalProxy0< void > signal_changed();
155
 
        
 
152
 
156
153
 
157
154
private:
158
155
  void init_accels_handler_();
160
157
 
161
158
};
162
159
 
163
 
} /* namespace Gtk */
 
160
} // namespace Gtk
164
161
 
165
162
 
166
163
namespace Glib