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

« back to all changes in this revision

Viewing changes to gtk/gtkmm/toggletoolbutton.h

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2012-09-28 09:25:06 UTC
  • mfrom: (1.1.14)
  • Revision ID: package-import@ubuntu.com-20120928092506-9h63ais5o750a8sk
Tags: 3.5.13-0ubuntu1
* New upstream release
* debian/control:
  - Bump build-depends on libglibmm-2.4-dev, libgtk-3-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
#include <glibmm/ustring.h>
8
8
#include <sigc++/sigc++.h>
9
9
 
10
 
/* $Id: toggletoolbutton.hg,v 1.5 2004/03/07 14:35:47 murrayc Exp $ */
11
 
 
12
 
/* box.h
13
 
 *
 
10
/*
14
11
 * Copyright (C) 2003 The gtkmm Development Team
15
12
 *
16
13
 * This library is free software; you can redistribute it and/or
117
114
  /** Creates a new ToggleToolButton.
118
115
   */
119
116
  ToggleToolButton();
120
 
  
 
117
 
121
118
  /** Creates a new ToggleToolButton from a StockID.
122
119
   *
123
120
   * The ToggleToolButton will be created according to the @a stock_id properties.
124
 
   * 
 
121
   *
125
122
   * @param stock_id The StockID which determines the look of the ToggleToolButton.
126
123
   */
127
124
    explicit ToggleToolButton(const Gtk::StockID& stock_id);
128
125
 
129
 
  
 
126
 
130
127
  /** Creates a new ToggleToolButton with a label.
131
128
   *
132
129
   * The ToggleToolButton will have the label @a label.
134
131
   * @param label The string used to display the label for this ToggleToolButton.
135
132
   */
136
133
  explicit ToggleToolButton(const Glib::ustring& label);
137
 
  
 
134
 
138
135
  /** Creates a new ToggleToolButton with an image.
139
136
   *
140
137
   * The ToggleToolButton will have the label @a label and an image widget @a icon_widget.
172
169
 
173
170
  Glib::SignalProxy0< void > signal_toggled();
174
171
 
175
 
  
 
172
 
176
173
  #ifdef GLIBMM_PROPERTIES_ENABLED
177
174
/** If the toggle button should be pressed in.
178
175
   *