/usr/include/d/gtkd-3/gtk/Popover.d is in libgtkd-3-dev 3.7.5-2build1.
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 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 | /*
* 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.Popover;
private import gio.MenuModel;
private import glib.ConstructionException;
private import glib.Str;
private import gobject.ObjectG;
private import gobject.Signals;
private import gtk.Bin;
private import gtk.Widget;
private import gtk.c.functions;
public import gtk.c.types;
public import gtkc.gtktypes;
private import std.algorithm;
/**
* GtkPopover is a bubble-like context window, primarily meant to
* provide context-dependent information or options. Popovers are
* attached to a widget, passed at construction time on gtk_popover_new(),
* or updated afterwards through gtk_popover_set_relative_to(), by
* default they will point to the whole widget area, although this
* behavior can be changed through gtk_popover_set_pointing_to().
*
* The position of a popover relative to the widget it is attached to
* can also be changed through gtk_popover_set_position().
*
* By default, #GtkPopover performs a GTK+ grab, in order to ensure
* input events get redirected to it while it is shown, and also so
* the popover is dismissed in the expected situations (clicks outside
* the popover, or the Esc key being pressed). If no such modal behavior
* is desired on a popover, gtk_popover_set_modal() may be called on it
* to tweak its behavior.
*
* ## GtkPopover as menu replacement
*
* GtkPopover is often used to replace menus. To facilitate this, it
* supports being populated from a #GMenuModel, using
* gtk_popover_new_from_model(). In addition to all the regular menu
* model features, this function supports rendering sections in the
* model in a more compact form, as a row of icon buttons instead of
* menu items.
*
* To use this rendering, set the ”display-hint” attribute of the
* section to ”horizontal-buttons” and set the icons of your items
* with the ”verb-icon” attribute.
*
* |[
* <section>
* <attribute name="display-hint">horizontal-buttons</attribute>
* <item>
* <attribute name="label">Cut</attribute>
* <attribute name="action">app.cut</attribute>
* <attribute name="verb-icon">edit-cut-symbolic</attribute>
* </item>
* <item>
* <attribute name="label">Copy</attribute>
* <attribute name="action">app.copy</attribute>
* <attribute name="verb-icon">edit-copy-symbolic</attribute>
* </item>
* <item>
* <attribute name="label">Paste</attribute>
* <attribute name="action">app.paste</attribute>
* <attribute name="verb-icon">edit-paste-symbolic</attribute>
* </item>
* </section>
* ]|
*
* # CSS nodes
*
* GtkPopover has a single css node called popover. It always gets the
* .background style class and it gets the .menu style class if it is
* menu-like (e.g. #GtkPopoverMenu or created using gtk_popover_new_from_model().
*
* Particular uses of GtkPopover, such as touch selection popups
* or magnifiers in #GtkEntry or #GtkTextView get style classes
* like .touch-selection or .magnifier to differentiate from
* plain popovers.
*/
public class Popover : Bin
{
/** the main Gtk struct */
protected GtkPopover* gtkPopover;
/** Get the main Gtk struct */
public GtkPopover* getPopoverStruct(bool transferOwnership = false)
{
if (transferOwnership)
ownedRef = false;
return gtkPopover;
}
/** the main Gtk struct as a void* */
protected override void* getStruct()
{
return cast(void*)gtkPopover;
}
protected override void setStruct(GObject* obj)
{
gtkPopover = cast(GtkPopover*)obj;
super.setStruct(obj);
}
/**
* Sets our main struct and passes it to the parent class.
*/
public this (GtkPopover* gtkPopover, bool ownedRef = false)
{
this.gtkPopover = gtkPopover;
super(cast(GtkBin*)gtkPopover, ownedRef);
}
/** */
public static GType getType()
{
return gtk_popover_get_type();
}
/**
* Creates a new popover to point to @relative_to
*
* Params:
* relativeTo = #GtkWidget the popover is related to
*
* Returns: a new #GtkPopover
*
* Since: 3.12
*
* Throws: ConstructionException GTK+ fails to create the object.
*/
public this(Widget relativeTo)
{
auto p = gtk_popover_new((relativeTo is null) ? null : relativeTo.getWidgetStruct());
if(p is null)
{
throw new ConstructionException("null returned by new");
}
this(cast(GtkPopover*) p);
}
/**
* Creates a #GtkPopover and populates it according to
* @model. The popover is pointed to the @relative_to widget.
*
* The created buttons are connected to actions found in the
* #GtkApplicationWindow to which the popover belongs - typically
* by means of being attached to a widget that is contained within
* the #GtkApplicationWindows widget hierarchy.
*
* Actions can also be added using gtk_widget_insert_action_group()
* on the menus attach widget or on any of its parent widgets.
*
* Params:
* relativeTo = #GtkWidget the popover is related to
* model = a #GMenuModel
*
* Returns: the new #GtkPopover
*
* Since: 3.12
*
* Throws: ConstructionException GTK+ fails to create the object.
*/
public this(Widget relativeTo, MenuModel model)
{
auto p = gtk_popover_new_from_model((relativeTo is null) ? null : relativeTo.getWidgetStruct(), (model is null) ? null : model.getMenuModelStruct());
if(p is null)
{
throw new ConstructionException("null returned by new_from_model");
}
this(cast(GtkPopover*) p);
}
/**
* Establishes a binding between a #GtkPopover and a #GMenuModel.
*
* The contents of @popover are removed and then refilled with menu items
* according to @model. When @model changes, @popover is updated.
* Calling this function twice on @popover with different @model will
* cause the first binding to be replaced with a binding to the new
* model. If @model is %NULL then any previous binding is undone and
* all children are removed.
*
* If @action_namespace is non-%NULL then the effect is as if all
* actions mentioned in the @model have their names prefixed with the
* namespace, plus a dot. For example, if the action “quit” is
* mentioned and @action_namespace is “app” then the effective action
* name is “app.quit”.
*
* This function uses #GtkActionable to define the action name and
* target values on the created menu items. If you want to use an
* action group other than “app” and “win”, or if you want to use a
* #GtkMenuShell outside of a #GtkApplicationWindow, then you will need
* to attach your own action group to the widget hierarchy using
* gtk_widget_insert_action_group(). As an example, if you created a
* group with a “quit” action and inserted it with the name “mygroup”
* then you would use the action name “mygroup.quit” in your
* #GMenuModel.
*
* Params:
* model = the #GMenuModel to bind to or %NULL to remove
* binding
* actionNamespace = the namespace for actions in @model
*
* Since: 3.12
*/
public void bindModel(MenuModel model, string actionNamespace)
{
gtk_popover_bind_model(gtkPopover, (model is null) ? null : model.getMenuModelStruct(), Str.toStringz(actionNamespace));
}
/**
* Returns the constraint for placing this popover.
* See gtk_popover_set_constrain_to().
*
* Returns: the constraint for placing this popover.
*
* Since: 3.20
*/
public GtkPopoverConstraint getConstrainTo()
{
return gtk_popover_get_constrain_to(gtkPopover);
}
/**
* Gets the widget that should be set as the default while
* the popover is shown.
*
* Returns: the default widget,
* or %NULL if there is none
*
* Since: 3.18
*/
public Widget getDefaultWidget()
{
auto p = gtk_popover_get_default_widget(gtkPopover);
if(p is null)
{
return null;
}
return ObjectG.getDObject!(Widget)(cast(GtkWidget*) p);
}
/**
* Returns whether the popover is modal, see gtk_popover_set_modal to
* see the implications of this.
*
* Returns: #TRUE if @popover is modal
*
* Since: 3.12
*/
public bool getModal()
{
return gtk_popover_get_modal(gtkPopover) != 0;
}
/**
* If a rectangle to point to has been set, this function will
* return %TRUE and fill in @rect with such rectangle, otherwise
* it will return %FALSE and fill in @rect with the attached
* widget coordinates.
*
* Params:
* rect = location to store the rectangle
*
* Returns: %TRUE if a rectangle to point to was set.
*/
public bool getPointingTo(out GdkRectangle rect)
{
return gtk_popover_get_pointing_to(gtkPopover, &rect) != 0;
}
/**
* Returns the preferred position of @popover.
*
* Returns: The preferred position.
*/
public GtkPositionType getPosition()
{
return gtk_popover_get_position(gtkPopover);
}
/**
* Returns the widget @popover is currently attached to
*
* Returns: a #GtkWidget
*
* Since: 3.12
*/
public Widget getRelativeTo()
{
auto p = gtk_popover_get_relative_to(gtkPopover);
if(p is null)
{
return null;
}
return ObjectG.getDObject!(Widget)(cast(GtkWidget*) p);
}
/**
* Returns whether show/hide transitions are enabled on this popover.
*
* Deprecated: You can show or hide the popover without transitions
* using gtk_widget_show() and gtk_widget_hide() while gtk_popover_popup()
* and gtk_popover_popdown() will use transitions.
*
* Returns: #TRUE if the show and hide transitions of the given
* popover are enabled, #FALSE otherwise.
*
* Since: 3.16
*/
public bool getTransitionsEnabled()
{
return gtk_popover_get_transitions_enabled(gtkPopover) != 0;
}
/**
* Pops @popover down.This is different than a gtk_widget_hide() call
* in that it shows the popover with a transition. If you want to hide
* the popover without a transition, use gtk_widget_hide().
*
* Since: 3.22
*/
public void popdown()
{
gtk_popover_popdown(gtkPopover);
}
/**
* Pops @popover up. This is different than a gtk_widget_show() call
* in that it shows the popover with a transition. If you want to show
* the popover without a transition, use gtk_widget_show().
*
* Since: 3.22
*/
public void popup()
{
gtk_popover_popup(gtkPopover);
}
/**
* Sets a constraint for positioning this popover.
*
* Note that not all platforms support placing popovers freely,
* and may already impose constraints.
*
* Params:
* constraint = the new constraint
*
* Since: 3.20
*/
public void setConstrainTo(GtkPopoverConstraint constraint)
{
gtk_popover_set_constrain_to(gtkPopover, constraint);
}
/**
* Sets the widget that should be set as default widget while
* the popover is shown (see gtk_window_set_default()). #GtkPopover
* remembers the previous default widget and reestablishes it
* when the popover is dismissed.
*
* Params:
* widget = the new default widget, or %NULL
*
* Since: 3.18
*/
public void setDefaultWidget(Widget widget)
{
gtk_popover_set_default_widget(gtkPopover, (widget is null) ? null : widget.getWidgetStruct());
}
/**
* Sets whether @popover is modal, a modal popover will grab all input
* within the toplevel and grab the keyboard focus on it when being
* displayed. Clicking outside the popover area or pressing Esc will
* dismiss the popover and ungrab input.
*
* Params:
* modal = #TRUE to make popover claim all input within the toplevel
*
* Since: 3.12
*/
public void setModal(bool modal)
{
gtk_popover_set_modal(gtkPopover, modal);
}
/**
* Sets the rectangle that @popover will point to, in the
* coordinate space of the widget @popover is attached to,
* see gtk_popover_set_relative_to().
*
* Params:
* rect = rectangle to point to
*
* Since: 3.12
*/
public void setPointingTo(GdkRectangle* rect)
{
gtk_popover_set_pointing_to(gtkPopover, rect);
}
/**
* Sets the preferred position for @popover to appear. If the @popover
* is currently visible, it will be immediately updated.
*
* This preference will be respected where possible, although
* on lack of space (eg. if close to the window edges), the
* #GtkPopover may choose to appear on the opposite side
*
* Params:
* position = preferred popover position
*
* Since: 3.12
*/
public void setPosition(GtkPositionType position)
{
gtk_popover_set_position(gtkPopover, position);
}
/**
* Sets a new widget to be attached to @popover. If @popover is
* visible, the position will be updated.
*
* Note: the ownership of popovers is always given to their @relative_to
* widget, so if @relative_to is set to %NULL on an attached @popover, it
* will be detached from its previous widget, and consequently destroyed
* unless extra references are kept.
*
* Params:
* relativeTo = a #GtkWidget
*
* Since: 3.12
*/
public void setRelativeTo(Widget relativeTo)
{
gtk_popover_set_relative_to(gtkPopover, (relativeTo is null) ? null : relativeTo.getWidgetStruct());
}
/**
* Sets whether show/hide transitions are enabled on this popover
*
* Deprecated: You can show or hide the popover without transitions
* using gtk_widget_show() and gtk_widget_hide() while gtk_popover_popup()
* and gtk_popover_popdown() will use transitions.
*
* Params:
* transitionsEnabled = Whether transitions are enabled
*
* Since: 3.16
*/
public void setTransitionsEnabled(bool transitionsEnabled)
{
gtk_popover_set_transitions_enabled(gtkPopover, transitionsEnabled);
}
protected class OnClosedDelegateWrapper
{
void delegate(Popover) dlg;
gulong handlerId;
this(void delegate(Popover) dlg)
{
this.dlg = dlg;
onClosedListeners ~= this;
}
void remove(OnClosedDelegateWrapper source)
{
foreach(index, wrapper; onClosedListeners)
{
if (wrapper.handlerId == source.handlerId)
{
onClosedListeners[index] = null;
onClosedListeners = std.algorithm.remove(onClosedListeners, index);
break;
}
}
}
}
OnClosedDelegateWrapper[] onClosedListeners;
/** */
gulong addOnClosed(void delegate(Popover) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
{
auto wrapper = new OnClosedDelegateWrapper(dlg);
wrapper.handlerId = Signals.connectData(
this,
"closed",
cast(GCallback)&callBackClosed,
cast(void*)wrapper,
cast(GClosureNotify)&callBackClosedDestroy,
connectFlags);
return wrapper.handlerId;
}
extern(C) static void callBackClosed(GtkPopover* popoverStruct, OnClosedDelegateWrapper wrapper)
{
wrapper.dlg(wrapper.outer);
}
extern(C) static void callBackClosedDestroy(OnClosedDelegateWrapper wrapper, GClosure* closure)
{
wrapper.remove(wrapper);
}
}
|