/usr/include/gtkmm-3.0/gtkmm/scale.h is in libgtkmm-3.0-dev 3.22.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 | // Generated by gmmproc 2.54.0 -- DO NOT MODIFY!
#ifndef _GTKMM_SCALE_H
#define _GTKMM_SCALE_H
#include <glibmm/ustring.h>
#include <sigc++/sigc++.h>
/*
* Copyright (C) 1998-2002 The gtkmm Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <gtkmm/range.h>
#ifndef DOXYGEN_SHOULD_SKIP_THIS
using GtkScale = struct _GtkScale;
using GtkScaleClass = struct _GtkScaleClass;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
#ifndef DOXYGEN_SHOULD_SKIP_THIS
namespace Gtk
{ class Scale_Class; } // namespace Gtk
#endif //DOXYGEN_SHOULD_SKIP_THIS
namespace Gtk
{
/** A slider widget for selecting a value from a range.
*
* A Gtk::Scale is a slider control used to select a numeric value. To use it,
* you'll probably want to investigate the methods on its base class,
* Gtk::Range, in addition to the methods for Gtk::Scale itself. To set the
* value of a scale, you would normally use set_value(). To detect
* changes to the value, you would normally use signal_value_changed().
*
* Note that using the same upper and lower bounds for the Scale (through
* the Range methods) will hide the slider itself. This is useful for
* applications that want to show an undeterminate value on the scale, without
* changing the layout of the application (such as movie or music players).
*
* @ingroup Widgets
*/
class Scale : public Range
{
public:
#ifndef DOXYGEN_SHOULD_SKIP_THIS
typedef Scale CppObjectType;
typedef Scale_Class CppClassType;
typedef GtkScale BaseObjectType;
typedef GtkScaleClass BaseClassType;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
Scale(Scale&& src) noexcept;
Scale& operator=(Scale&& src) noexcept;
// noncopyable
Scale(const Scale&) = delete;
Scale& operator=(const Scale&) = delete;
~Scale() noexcept override;
#ifndef DOXYGEN_SHOULD_SKIP_THIS
private:
friend class Scale_Class;
static CppClassType scale_class_;
protected:
explicit Scale(const Glib::ConstructParams& construct_params);
explicit Scale(GtkScale* castitem);
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
public:
/** Get the GType for this class, for use with the underlying GObject type system.
*/
static GType get_type() G_GNUC_CONST;
#ifndef DOXYGEN_SHOULD_SKIP_THIS
static GType get_base_type() G_GNUC_CONST;
#endif
///Provides access to the underlying C GtkObject.
GtkScale* gobj() { return reinterpret_cast<GtkScale*>(gobject_); }
///Provides access to the underlying C GtkObject.
const GtkScale* gobj() const { return reinterpret_cast<GtkScale*>(gobject_); }
public:
//C++ methods used to invoke GTK+ virtual functions:
protected:
//GTK+ Virtual Functions (override these to change behaviour):
//Default Signal Handlers::
/// This is a default handler for the signal signal_format_value().
virtual Glib::ustring on_format_value(double value);
private:
public:
Scale();
/**
* @newin{3,2}
*/
explicit Scale(Orientation orientation);
//Note that we try to use the same default parameter value as the default property value.
explicit Scale(const Glib::RefPtr<Adjustment>& adjustment, Orientation orientation = ORIENTATION_HORIZONTAL);
/** Set the number of decimal digits.
*
* This also causes the adjustment to be rounded off so the retrieved value
* matches the value the user sees. Setting digits to 1 gives for example
* 1.0, 2 gives 1.00, etc.
*/
void set_digits(int digits);
/** Get the number of decimal digits.
*/
int get_digits() const;
/** Set whether the current value is displayed as a string next to the slider.
*/
void set_draw_value(bool draw_value = true);
/** Get whether the current value is displayed as a string next to the slider.
*/
bool get_draw_value() const;
/** Set the position in which the value is displayed.
*/
void set_value_pos(PositionType pos);
/** Get the position in which the value is displayed.
*/
PositionType get_value_pos() const;
/** If @a has_origin is set to <tt>true</tt> (the default),
* the scale will highlight the part of the scale
* between the origin (bottom or left side) of the scale
* and the current value.
*
* @newin{3,4}
*
* @param has_origin <tt>true</tt> if the scale has an origin.
*/
void set_has_origin(bool has_origin = true);
/** Returns whether the scale has an origin.
*
* @newin{3,4}
*
* @return <tt>true</tt> if the scale has an origin.
*/
bool get_has_origin() const;
/** Gets the Pango::Layout used to display the scale. The returned
* object is owned by the scale so does not need to be freed by
* the caller.
*
* @newin{2,4}
*
* @return The Pango::Layout for this scale,
* or <tt>nullptr</tt> if the Gtk::Scale::property_draw_value() property is <tt>false</tt>.
*/
Glib::RefPtr<Pango::Layout> get_layout();
/** Gets the Pango::Layout used to display the scale. The returned
* object is owned by the scale so does not need to be freed by
* the caller.
*
* @newin{2,4}
*
* @return The Pango::Layout for this scale,
* or <tt>nullptr</tt> if the Gtk::Scale::property_draw_value() property is <tt>false</tt>.
*/
Glib::RefPtr<const Pango::Layout> get_layout() const;
/** Obtains the coordinates where the scale will draw the
* Pango::Layout representing the text in the scale. Remember
* when using the Pango::Layout function you need to convert to
* and from pixels using PANGO_PIXELS() or Pango::SCALE.
*
* If the Gtk::Scale::property_draw_value() property is <tt>false</tt>, the return
* values are undefined.
*
* @newin{2,4}
*
* @param x Location to store X offset of layout, or <tt>nullptr</tt>.
* @param y Location to store Y offset of layout, or <tt>nullptr</tt>.
*/
void get_layout_offsets(int& x, int& y) const;
/** Adds a mark at @a value.
*
* A mark is indicated visually by drawing a tick mark next to the scale,
* and GTK+ makes it easy for the user to position the scale exactly at the
* marks value.
*
* If @a markup is not <tt>nullptr</tt>, text is shown next to the tick mark.
*
* To remove marks from a scale, use clear_marks().
*
* @newin{2,16}
*
* @param value The value at which the mark is placed, must be between
* the lower and upper limits of the scales’ adjustment.
* @param position Where to draw the mark. For a horizontal scale, Gtk::POS_TOP
* and Gtk::POS_LEFT are drawn above the scale, anything else below.
* For a vertical scale, Gtk::POS_LEFT and Gtk::POS_TOP are drawn to
* the left of the scale, anything else to the right.
* @param markup Text to be shown at the mark, using [Pango markup][PangoMarkupFormat], or <tt>nullptr</tt>.
*/
void add_mark(double value, PositionType position, const Glib::ustring& markup);
/** Removes any marks that have been added with add_mark().
*
* @newin{2,16}
*/
void clear_marks();
/**
* @par Slot Prototype:
* <tt>Glib::ustring on_my_%format_value(double value)</tt>
*
* Flags: Run Last
*
* Signal which allows you to change how the scale value is displayed.
* Connect a signal handler which returns an allocated string representing
* @a value. That string will then be used to display the scale's value.
*
* Here's an example signal handler which displays a value 1.0 as
* with "-->1.0<--".
*
* [C example ellipted]
*
* @param value The value to format.
* @return Allocated string representing @a value.
*/
Glib::SignalProxy< Glib::ustring,double > signal_format_value();
/** Number of displayed decimal digits.
*/
/** The number of decimal places that are displayed in the value.
*
* @return A PropertyProxy that allows you to get or set the value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy< int > property_digits() ;
/** The number of decimal places that are displayed in the value.
*
* @return A PropertyProxy_ReadOnly that allows you to get the value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< int > property_digits() const;
/** Whether to draw the value as a string next to slider.
*/
/** Whether the current value is displayed as a string next to the slider.
*
* @return A PropertyProxy that allows you to get or set the value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy< bool > property_draw_value() ;
/** Whether the current value is displayed as a string next to the slider.
*
* @return A PropertyProxy_ReadOnly that allows you to get the value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< bool > property_draw_value() const;
/** The position in which the value is displayed.
*/
/** The position in which the current value is displayed.
*
* @return A PropertyProxy that allows you to get or set the value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy< PositionType > property_value_pos() ;
/** The position in which the current value is displayed.
*
* @return A PropertyProxy_ReadOnly that allows you to get the value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< PositionType > property_value_pos() const;
/** Whether the scale has an origin.
*
* @return A PropertyProxy that allows you to get or set the value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy< bool > property_has_origin() ;
/** Whether the scale has an origin.
*
* @return A PropertyProxy_ReadOnly that allows you to get the value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< bool > property_has_origin() const;
protected:
virtual void draw_value_vfunc();
virtual int calc_digits_(double step) const;
};
} //namespace Gtk
//Include the deprecated header,
//whose classes were previously in this header,
//to preserve the "API" of the includes.
#include <gtkmm/hvscale.h>
namespace Glib
{
/** A Glib::wrap() method for this object.
*
* @param object The C instance.
* @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref.
* @result A C++ instance that wraps this C instance.
*
* @relates Gtk::Scale
*/
Gtk::Scale* wrap(GtkScale* object, bool take_copy = false);
} //namespace Glib
#endif /* _GTKMM_SCALE_H */
|