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 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562
|
/*
* This file is part of gtkD.
*
* gtkD 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 3
* of the License, or (at your option) any later version, with
* some exceptions, please read the COPYING file.
*
* gtkD 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 gtkD; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
*/
// generated automatically - do not change
// find conversion definition on APILookup.txt
// implement new conversion functionalities on the wrap.utils pakage
module gtk.Range;
private import gobject.ObjectG;
private import gobject.Signals;
private import gtk.Adjustment;
private import gtk.OrientableIF;
private import gtk.OrientableT;
private import gtk.Widget;
private import gtk.c.functions;
public import gtk.c.types;
public import gtkc.gtktypes;
private import std.algorithm;
/**
* #GtkRange is the common base class for widgets which visualize an
* adjustment, e.g #GtkScale or #GtkScrollbar.
*
* Apart from signals for monitoring the parameters of the adjustment,
* #GtkRange provides properties and methods for influencing the sensitivity
* of the “steppers”. It also provides properties and methods for setting a
* “fill level” on range widgets. See gtk_range_set_fill_level().
*/
public class Range : Widget, OrientableIF
{
/** the main Gtk struct */
protected GtkRange* gtkRange;
/** Get the main Gtk struct */
public GtkRange* getRangeStruct(bool transferOwnership = false)
{
if (transferOwnership)
ownedRef = false;
return gtkRange;
}
/** the main Gtk struct as a void* */
protected override void* getStruct()
{
return cast(void*)gtkRange;
}
/**
* Sets our main struct and passes it to the parent class.
*/
public this (GtkRange* gtkRange, bool ownedRef = false)
{
this.gtkRange = gtkRange;
super(cast(GtkWidget*)gtkRange, ownedRef);
}
// add the Orientable capabilities
mixin OrientableT!(GtkRange);
/** */
public static GType getType()
{
return gtk_range_get_type();
}
/**
* Get the #GtkAdjustment which is the “model” object for #GtkRange.
* See gtk_range_set_adjustment() for details.
* The return value does not have a reference added, so should not
* be unreferenced.
*
* Returns: a #GtkAdjustment
*/
public Adjustment getAdjustment()
{
auto p = gtk_range_get_adjustment(gtkRange);
if(p is null)
{
return null;
}
return ObjectG.getDObject!(Adjustment)(cast(GtkAdjustment*) p);
}
/**
* Gets the current position of the fill level indicator.
*
* Returns: The current fill level
*
* Since: 2.12
*/
public double getFillLevel()
{
return gtk_range_get_fill_level(gtkRange);
}
/**
* Gets the value set by gtk_range_set_flippable().
*
* Returns: %TRUE if the range is flippable
*
* Since: 2.18
*/
public bool getFlippable()
{
return gtk_range_get_flippable(gtkRange) != 0;
}
/**
* Gets the value set by gtk_range_set_inverted().
*
* Returns: %TRUE if the range is inverted
*/
public bool getInverted()
{
return gtk_range_get_inverted(gtkRange) != 0;
}
/**
* Gets the sensitivity policy for the stepper that points to the
* 'lower' end of the GtkRange’s adjustment.
*
* Returns: The lower stepper’s sensitivity policy.
*
* Since: 2.10
*/
public GtkSensitivityType getLowerStepperSensitivity()
{
return gtk_range_get_lower_stepper_sensitivity(gtkRange);
}
/**
* This function is useful mainly for #GtkRange subclasses.
*
* See gtk_range_set_min_slider_size().
*
* Deprecated: Use the min-height/min-width CSS properties on the slider
* node.
*
* Returns: The minimum size of the range’s slider.
*
* Since: 2.20
*/
public int getMinSliderSize()
{
return gtk_range_get_min_slider_size(gtkRange);
}
/**
* This function returns the area that contains the range’s trough
* and its steppers, in widget->window coordinates.
*
* This function is useful mainly for #GtkRange subclasses.
*
* Params:
* rangeRect = return location for the range rectangle
*
* Since: 2.20
*/
public void getRangeRect(out GdkRectangle rangeRect)
{
gtk_range_get_range_rect(gtkRange, &rangeRect);
}
/**
* Gets whether the range is restricted to the fill level.
*
* Returns: %TRUE if @range is restricted to the fill level.
*
* Since: 2.12
*/
public bool getRestrictToFillLevel()
{
return gtk_range_get_restrict_to_fill_level(gtkRange) != 0;
}
/**
* Gets the number of digits to round the value to when
* it changes. See #GtkRange::change-value.
*
* Returns: the number of digits to round to
*
* Since: 2.24
*/
public int getRoundDigits()
{
return gtk_range_get_round_digits(gtkRange);
}
/**
* Gets whether the range displays the fill level graphically.
*
* Returns: %TRUE if @range shows the fill level.
*
* Since: 2.12
*/
public bool getShowFillLevel()
{
return gtk_range_get_show_fill_level(gtkRange) != 0;
}
/**
* This function returns sliders range along the long dimension,
* in widget->window coordinates.
*
* This function is useful mainly for #GtkRange subclasses.
*
* Params:
* sliderStart = return location for the slider's
* start, or %NULL
* sliderEnd = return location for the slider's
* end, or %NULL
*
* Since: 2.20
*/
public void getSliderRange(out int sliderStart, out int sliderEnd)
{
gtk_range_get_slider_range(gtkRange, &sliderStart, &sliderEnd);
}
/**
* This function is useful mainly for #GtkRange subclasses.
*
* See gtk_range_set_slider_size_fixed().
*
* Returns: whether the range’s slider has a fixed size.
*
* Since: 2.20
*/
public bool getSliderSizeFixed()
{
return gtk_range_get_slider_size_fixed(gtkRange) != 0;
}
/**
* Gets the sensitivity policy for the stepper that points to the
* 'upper' end of the GtkRange’s adjustment.
*
* Returns: The upper stepper’s sensitivity policy.
*
* Since: 2.10
*/
public GtkSensitivityType getUpperStepperSensitivity()
{
return gtk_range_get_upper_stepper_sensitivity(gtkRange);
}
/**
* Gets the current value of the range.
*
* Returns: current value of the range.
*/
public double getValue()
{
return gtk_range_get_value(gtkRange);
}
/**
* Sets the adjustment to be used as the “model” object for this range
* widget. The adjustment indicates the current range value, the
* minimum and maximum range values, the step/page increments used
* for keybindings and scrolling, and the page size. The page size
* is normally 0 for #GtkScale and nonzero for #GtkScrollbar, and
* indicates the size of the visible area of the widget being scrolled.
* The page size affects the size of the scrollbar slider.
*
* Params:
* adjustment = a #GtkAdjustment
*/
public void setAdjustment(Adjustment adjustment)
{
gtk_range_set_adjustment(gtkRange, (adjustment is null) ? null : adjustment.getAdjustmentStruct());
}
/**
* Set the new position of the fill level indicator.
*
* The “fill level” is probably best described by its most prominent
* use case, which is an indicator for the amount of pre-buffering in
* a streaming media player. In that use case, the value of the range
* would indicate the current play position, and the fill level would
* be the position up to which the file/stream has been downloaded.
*
* This amount of prebuffering can be displayed on the range’s trough
* and is themeable separately from the trough. To enable fill level
* display, use gtk_range_set_show_fill_level(). The range defaults
* to not showing the fill level.
*
* Additionally, it’s possible to restrict the range’s slider position
* to values which are smaller than the fill level. This is controller
* by gtk_range_set_restrict_to_fill_level() and is by default
* enabled.
*
* Params:
* fillLevel = the new position of the fill level indicator
*
* Since: 2.12
*/
public void setFillLevel(double fillLevel)
{
gtk_range_set_fill_level(gtkRange, fillLevel);
}
/**
* If a range is flippable, it will switch its direction if it is
* horizontal and its direction is %GTK_TEXT_DIR_RTL.
*
* See gtk_widget_get_direction().
*
* Params:
* flippable = %TRUE to make the range flippable
*
* Since: 2.18
*/
public void setFlippable(bool flippable)
{
gtk_range_set_flippable(gtkRange, flippable);
}
/**
* Sets the step and page sizes for the range.
* The step size is used when the user clicks the #GtkScrollbar
* arrows or moves #GtkScale via arrow keys. The page size
* is used for example when moving via Page Up or Page Down keys.
*
* Params:
* step = step size
* page = page size
*/
public void setIncrements(double step, double page)
{
gtk_range_set_increments(gtkRange, step, page);
}
/**
* Ranges normally move from lower to higher values as the
* slider moves from top to bottom or left to right. Inverted
* ranges have higher values at the top or on the right rather than
* on the bottom or left.
*
* Params:
* setting = %TRUE to invert the range
*/
public void setInverted(bool setting)
{
gtk_range_set_inverted(gtkRange, setting);
}
/**
* Sets the sensitivity policy for the stepper that points to the
* 'lower' end of the GtkRange’s adjustment.
*
* Params:
* sensitivity = the lower stepper’s sensitivity policy.
*
* Since: 2.10
*/
public void setLowerStepperSensitivity(GtkSensitivityType sensitivity)
{
gtk_range_set_lower_stepper_sensitivity(gtkRange, sensitivity);
}
/**
* Sets the minimum size of the range’s slider.
*
* This function is useful mainly for #GtkRange subclasses.
*
* Deprecated: Use the min-height/min-width CSS properties on the slider
* node.
*
* Params:
* minSize = The slider’s minimum size
*
* Since: 2.20
*/
public void setMinSliderSize(int minSize)
{
gtk_range_set_min_slider_size(gtkRange, minSize);
}
/**
* Sets the allowable values in the #GtkRange, and clamps the range
* value to be between @min and @max. (If the range has a non-zero
* page size, it is clamped between @min and @max - page-size.)
*
* Params:
* min = minimum range value
* max = maximum range value
*/
public void setRange(double min, double max)
{
gtk_range_set_range(gtkRange, min, max);
}
/**
* Sets whether the slider is restricted to the fill level. See
* gtk_range_set_fill_level() for a general description of the fill
* level concept.
*
* Params:
* restrictToFillLevel = Whether the fill level restricts slider movement.
*
* Since: 2.12
*/
public void setRestrictToFillLevel(bool restrictToFillLevel)
{
gtk_range_set_restrict_to_fill_level(gtkRange, restrictToFillLevel);
}
/**
* Sets the number of digits to round the value to when
* it changes. See #GtkRange::change-value.
*
* Params:
* roundDigits = the precision in digits, or -1
*
* Since: 2.24
*/
public void setRoundDigits(int roundDigits)
{
gtk_range_set_round_digits(gtkRange, roundDigits);
}
/**
* Sets whether a graphical fill level is show on the trough. See
* gtk_range_set_fill_level() for a general description of the fill
* level concept.
*
* Params:
* showFillLevel = Whether a fill level indicator graphics is shown.
*
* Since: 2.12
*/
public void setShowFillLevel(bool showFillLevel)
{
gtk_range_set_show_fill_level(gtkRange, showFillLevel);
}
/**
* Sets whether the range’s slider has a fixed size, or a size that
* depends on its adjustment’s page size.
*
* This function is useful mainly for #GtkRange subclasses.
*
* Params:
* sizeFixed = %TRUE to make the slider size constant
*
* Since: 2.20
*/
public void setSliderSizeFixed(bool sizeFixed)
{
gtk_range_set_slider_size_fixed(gtkRange, sizeFixed);
}
/**
* Sets the sensitivity policy for the stepper that points to the
* 'upper' end of the GtkRange’s adjustment.
*
* Params:
* sensitivity = the upper stepper’s sensitivity policy.
*
* Since: 2.10
*/
public void setUpperStepperSensitivity(GtkSensitivityType sensitivity)
{
gtk_range_set_upper_stepper_sensitivity(gtkRange, sensitivity);
}
/**
* Sets the current value of the range; if the value is outside the
* minimum or maximum range values, it will be clamped to fit inside
* them. The range emits the #GtkRange::value-changed signal if the
* value changes.
*
* Params:
* value = new value of the range
*/
public void setValue(double value)
{
gtk_range_set_value(gtkRange, value);
}
/**
* Emitted before clamping a value, to give the application a
* chance to adjust the bounds.
*
* Params:
* value = the value before we clamp
*/
gulong addOnAdjustBounds(void delegate(double, Range) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
{
return Signals.connect(this, "adjust-bounds", dlg, connectFlags ^ ConnectFlags.SWAPPED);
}
/**
* The #GtkRange::change-value signal is emitted when a scroll action is
* performed on a range. It allows an application to determine the
* type of scroll event that occurred and the resultant new value.
* The application can handle the event itself and return %TRUE to
* prevent further processing. Or, by returning %FALSE, it can pass
* the event to other handlers until the default GTK+ handler is
* reached.
*
* The value parameter is unrounded. An application that overrides
* the GtkRange::change-value signal is responsible for clamping the
* value to the desired number of decimal digits; the default GTK+
* handler clamps the value based on #GtkRange:round-digits.
*
* Params:
* scroll = the type of scroll action that was performed
* value = the new value resulting from the scroll action
*
* Returns: %TRUE to prevent other handlers from being invoked for
* the signal, %FALSE to propagate the signal further
*
* Since: 2.6
*/
gulong addOnChangeValue(bool delegate(GtkScrollType, double, Range) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
{
return Signals.connect(this, "change-value", dlg, connectFlags ^ ConnectFlags.SWAPPED);
}
/**
* Virtual function that moves the slider. Used for keybindings.
*
* Params:
* step = how to move the slider
*/
gulong addOnMoveSlider(void delegate(GtkScrollType, Range) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
{
return Signals.connect(this, "move-slider", dlg, connectFlags ^ ConnectFlags.SWAPPED);
}
/**
* Emitted when the range value changes.
*/
gulong addOnValueChanged(void delegate(Range) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
{
return Signals.connect(this, "value-changed", dlg, connectFlags ^ ConnectFlags.SWAPPED);
}
}
|