/usr/include/d/gtkd-3/gtk/RecentChooserT.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 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 | /*
* 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.RecentChooserT;
public import glib.ErrorG;
public import glib.GException;
public import glib.ListG;
public import glib.ListSG;
public import glib.Str;
public import gobject.ObjectG;
public import gobject.Signals;
public import gtk.RecentFilter;
public import gtk.RecentInfo;
public import gtk.c.functions;
public import gtk.c.types;
public import gtkc.gtktypes;
public import std.algorithm;
/**
* #GtkRecentChooser is an interface that can be implemented by widgets
* displaying the list of recently used files. In GTK+, the main objects
* that implement this interface are #GtkRecentChooserWidget,
* #GtkRecentChooserDialog and #GtkRecentChooserMenu.
*
* Recently used files are supported since GTK+ 2.10.
*/
public template RecentChooserT(TStruct)
{
/** Get the main Gtk struct */
public GtkRecentChooser* getRecentChooserStruct(bool transferOwnership = false)
{
if (transferOwnership)
ownedRef = false;
return cast(GtkRecentChooser*)getStruct();
}
/**
* Adds @filter to the list of #GtkRecentFilter objects held by @chooser.
*
* If no previous filter objects were defined, this function will call
* gtk_recent_chooser_set_filter().
*
* Params:
* filter = a #GtkRecentFilter
*
* Since: 2.10
*/
public void addFilter(RecentFilter filter)
{
gtk_recent_chooser_add_filter(getRecentChooserStruct(), (filter is null) ? null : filter.getRecentFilterStruct());
}
/**
* Gets the #GtkRecentInfo currently selected by @chooser.
*
* Returns: a #GtkRecentInfo. Use gtk_recent_info_unref() when
* when you have finished using it.
*
* Since: 2.10
*/
public RecentInfo getCurrentItem()
{
auto p = gtk_recent_chooser_get_current_item(getRecentChooserStruct());
if(p is null)
{
return null;
}
return ObjectG.getDObject!(RecentInfo)(cast(GtkRecentInfo*) p, true);
}
/**
* Gets the URI currently selected by @chooser.
*
* Returns: a newly allocated string holding a URI.
*
* Since: 2.10
*/
public string getCurrentUri()
{
auto retStr = gtk_recent_chooser_get_current_uri(getRecentChooserStruct());
scope(exit) Str.freeString(retStr);
return Str.toString(retStr);
}
/**
* Gets the #GtkRecentFilter object currently used by @chooser to affect
* the display of the recently used resources.
*
* Returns: a #GtkRecentFilter object.
*
* Since: 2.10
*/
public RecentFilter getFilter()
{
auto p = gtk_recent_chooser_get_filter(getRecentChooserStruct());
if(p is null)
{
return null;
}
return ObjectG.getDObject!(RecentFilter)(cast(GtkRecentFilter*) p);
}
/**
* Gets the list of recently used resources in form of #GtkRecentInfo objects.
*
* The return value of this function is affected by the “sort-type” and
* “limit” properties of @chooser.
*
* Returns: A newly allocated
* list of #GtkRecentInfo objects. You should
* use gtk_recent_info_unref() on every item of the list, and then free
* the list itself using g_list_free().
*
* Since: 2.10
*/
public ListG getItems()
{
auto p = gtk_recent_chooser_get_items(getRecentChooserStruct());
if(p is null)
{
return null;
}
return new ListG(cast(GList*) p, true);
}
/**
* Gets the number of items returned by gtk_recent_chooser_get_items()
* and gtk_recent_chooser_get_uris().
*
* Returns: A positive integer, or -1 meaning that all items are
* returned.
*
* Since: 2.10
*/
public int getLimit()
{
return gtk_recent_chooser_get_limit(getRecentChooserStruct());
}
/**
* Gets whether only local resources should be shown in the recently used
* resources selector. See gtk_recent_chooser_set_local_only()
*
* Returns: %TRUE if only local resources should be shown.
*
* Since: 2.10
*/
public bool getLocalOnly()
{
return gtk_recent_chooser_get_local_only(getRecentChooserStruct()) != 0;
}
/**
* Gets whether @chooser can select multiple items.
*
* Returns: %TRUE if @chooser can select more than one item.
*
* Since: 2.10
*/
public bool getSelectMultiple()
{
return gtk_recent_chooser_get_select_multiple(getRecentChooserStruct()) != 0;
}
/**
* Retrieves whether @chooser should show an icon near the resource.
*
* Returns: %TRUE if the icons should be displayed, %FALSE otherwise.
*
* Since: 2.10
*/
public bool getShowIcons()
{
return gtk_recent_chooser_get_show_icons(getRecentChooserStruct()) != 0;
}
/**
* Retrieves whether @chooser should show the recently used resources that
* were not found.
*
* Returns: %TRUE if the resources not found should be displayed, and
* %FALSE otheriwse.
*
* Since: 2.10
*/
public bool getShowNotFound()
{
return gtk_recent_chooser_get_show_not_found(getRecentChooserStruct()) != 0;
}
/**
* Returns whether @chooser should display recently used resources
* registered as private.
*
* Returns: %TRUE if the recent chooser should show private items,
* %FALSE otherwise.
*
* Since: 2.10
*/
public bool getShowPrivate()
{
return gtk_recent_chooser_get_show_private(getRecentChooserStruct()) != 0;
}
/**
* Gets whether @chooser should display tooltips containing the full path
* of a recently user resource.
*
* Returns: %TRUE if the recent chooser should show tooltips,
* %FALSE otherwise.
*
* Since: 2.10
*/
public bool getShowTips()
{
return gtk_recent_chooser_get_show_tips(getRecentChooserStruct()) != 0;
}
/**
* Gets the value set by gtk_recent_chooser_set_sort_type().
*
* Returns: the sorting order of the @chooser.
*
* Since: 2.10
*/
public GtkRecentSortType getSortType()
{
return gtk_recent_chooser_get_sort_type(getRecentChooserStruct());
}
/**
* Gets the URI of the recently used resources.
*
* The return value of this function is affected by the “sort-type” and “limit”
* properties of @chooser.
*
* Since the returned array is %NULL terminated, @length may be %NULL.
*
* Returns: A newly allocated, %NULL-terminated array of strings. Use
* g_strfreev() to free it.
*
* Since: 2.10
*/
public string[] getUris()
{
size_t length;
auto retStr = gtk_recent_chooser_get_uris(getRecentChooserStruct(), &length);
scope(exit) Str.freeStringArray(retStr);
return Str.toStringArray(retStr, length);
}
/**
* Gets the #GtkRecentFilter objects held by @chooser.
*
* Returns: A singly linked list
* of #GtkRecentFilter objects. You
* should just free the returned list using g_slist_free().
*
* Since: 2.10
*/
public ListSG listFilters()
{
auto p = gtk_recent_chooser_list_filters(getRecentChooserStruct());
if(p is null)
{
return null;
}
return new ListSG(cast(GSList*) p);
}
/**
* Removes @filter from the list of #GtkRecentFilter objects held by @chooser.
*
* Params:
* filter = a #GtkRecentFilter
*
* Since: 2.10
*/
public void removeFilter(RecentFilter filter)
{
gtk_recent_chooser_remove_filter(getRecentChooserStruct(), (filter is null) ? null : filter.getRecentFilterStruct());
}
/**
* Selects all the items inside @chooser, if the @chooser supports
* multiple selection.
*
* Since: 2.10
*/
public void selectAll()
{
gtk_recent_chooser_select_all(getRecentChooserStruct());
}
/**
* Selects @uri inside @chooser.
*
* Params:
* uri = a URI
*
* Returns: %TRUE if @uri was found.
*
* Since: 2.10
*
* Throws: GException on failure.
*/
public bool selectUri(string uri)
{
GError* err = null;
auto p = gtk_recent_chooser_select_uri(getRecentChooserStruct(), Str.toStringz(uri), &err) != 0;
if (err !is null)
{
throw new GException( new ErrorG(err) );
}
return p;
}
/**
* Sets @uri as the current URI for @chooser.
*
* Params:
* uri = a URI
*
* Returns: %TRUE if the URI was found.
*
* Since: 2.10
*
* Throws: GException on failure.
*/
public bool setCurrentUri(string uri)
{
GError* err = null;
auto p = gtk_recent_chooser_set_current_uri(getRecentChooserStruct(), Str.toStringz(uri), &err) != 0;
if (err !is null)
{
throw new GException( new ErrorG(err) );
}
return p;
}
/**
* Sets @filter as the current #GtkRecentFilter object used by @chooser
* to affect the displayed recently used resources.
*
* Params:
* filter = a #GtkRecentFilter
*
* Since: 2.10
*/
public void setFilter(RecentFilter filter)
{
gtk_recent_chooser_set_filter(getRecentChooserStruct(), (filter is null) ? null : filter.getRecentFilterStruct());
}
/**
* Sets the number of items that should be returned by
* gtk_recent_chooser_get_items() and gtk_recent_chooser_get_uris().
*
* Params:
* limit = a positive integer, or -1 for all items
*
* Since: 2.10
*/
public void setLimit(int limit)
{
gtk_recent_chooser_set_limit(getRecentChooserStruct(), limit);
}
/**
* Sets whether only local resources, that is resources using the file:// URI
* scheme, should be shown in the recently used resources selector. If
* @local_only is %TRUE (the default) then the shown resources are guaranteed
* to be accessible through the operating system native file system.
*
* Params:
* localOnly = %TRUE if only local files can be shown
*
* Since: 2.10
*/
public void setLocalOnly(bool localOnly)
{
gtk_recent_chooser_set_local_only(getRecentChooserStruct(), localOnly);
}
/**
* Sets whether @chooser can select multiple items.
*
* Params:
* selectMultiple = %TRUE if @chooser can select more than one item
*
* Since: 2.10
*/
public void setSelectMultiple(bool selectMultiple)
{
gtk_recent_chooser_set_select_multiple(getRecentChooserStruct(), selectMultiple);
}
/**
* Sets whether @chooser should show an icon near the resource when
* displaying it.
*
* Params:
* showIcons = whether to show an icon near the resource
*
* Since: 2.10
*/
public void setShowIcons(bool showIcons)
{
gtk_recent_chooser_set_show_icons(getRecentChooserStruct(), showIcons);
}
/**
* Sets whether @chooser should display the recently used resources that
* it didn’t find. This only applies to local resources.
*
* Params:
* showNotFound = whether to show the local items we didn’t find
*
* Since: 2.10
*/
public void setShowNotFound(bool showNotFound)
{
gtk_recent_chooser_set_show_not_found(getRecentChooserStruct(), showNotFound);
}
/**
* Whether to show recently used resources marked registered as private.
*
* Params:
* showPrivate = %TRUE to show private items, %FALSE otherwise
*
* Since: 2.10
*/
public void setShowPrivate(bool showPrivate)
{
gtk_recent_chooser_set_show_private(getRecentChooserStruct(), showPrivate);
}
/**
* Sets whether to show a tooltips containing the full path of each
* recently used resource in a #GtkRecentChooser widget.
*
* Params:
* showTips = %TRUE if tooltips should be shown
*
* Since: 2.10
*/
public void setShowTips(bool showTips)
{
gtk_recent_chooser_set_show_tips(getRecentChooserStruct(), showTips);
}
/**
* Sets the comparison function used when sorting to be @sort_func. If
* the @chooser has the sort type set to #GTK_RECENT_SORT_CUSTOM then
* the chooser will sort using this function.
*
* To the comparison function will be passed two #GtkRecentInfo structs and
* @sort_data; @sort_func should return a positive integer if the first
* item comes before the second, zero if the two items are equal and
* a negative integer if the first item comes after the second.
*
* Params:
* sortFunc = the comparison function
* sortData = user data to pass to @sort_func, or %NULL
* dataDestroy = destroy notifier for @sort_data, or %NULL
*
* Since: 2.10
*/
public void setSortFunc(GtkRecentSortFunc sortFunc, void* sortData, GDestroyNotify dataDestroy)
{
gtk_recent_chooser_set_sort_func(getRecentChooserStruct(), sortFunc, sortData, dataDestroy);
}
/**
* Changes the sorting order of the recently used resources list displayed by
* @chooser.
*
* Params:
* sortType = sort order that the chooser should use
*
* Since: 2.10
*/
public void setSortType(GtkRecentSortType sortType)
{
gtk_recent_chooser_set_sort_type(getRecentChooserStruct(), sortType);
}
/**
* Unselects all the items inside @chooser.
*
* Since: 2.10
*/
public void unselectAll()
{
gtk_recent_chooser_unselect_all(getRecentChooserStruct());
}
/**
* Unselects @uri inside @chooser.
*
* Params:
* uri = a URI
*
* Since: 2.10
*/
public void unselectUri(string uri)
{
gtk_recent_chooser_unselect_uri(getRecentChooserStruct(), Str.toStringz(uri));
}
protected class OnItemActivatedDelegateWrapper
{
void delegate(RecentChooserIF) dlg;
gulong handlerId;
this(void delegate(RecentChooserIF) dlg)
{
this.dlg = dlg;
onItemActivatedListeners ~= this;
}
void remove(OnItemActivatedDelegateWrapper source)
{
foreach(index, wrapper; onItemActivatedListeners)
{
if (wrapper.handlerId == source.handlerId)
{
onItemActivatedListeners[index] = null;
onItemActivatedListeners = std.algorithm.remove(onItemActivatedListeners, index);
break;
}
}
}
}
OnItemActivatedDelegateWrapper[] onItemActivatedListeners;
/**
* This signal is emitted when the user "activates" a recent item
* in the recent chooser. This can happen by double-clicking on an item
* in the recently used resources list, or by pressing
* `Enter`.
*
* Since: 2.10
*/
gulong addOnItemActivated(void delegate(RecentChooserIF) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
{
auto wrapper = new OnItemActivatedDelegateWrapper(dlg);
wrapper.handlerId = Signals.connectData(
this,
"item-activated",
cast(GCallback)&callBackItemActivated,
cast(void*)wrapper,
cast(GClosureNotify)&callBackItemActivatedDestroy,
connectFlags);
return wrapper.handlerId;
}
extern(C) static void callBackItemActivated(GtkRecentChooser* recentchooserStruct, OnItemActivatedDelegateWrapper wrapper)
{
wrapper.dlg(wrapper.outer);
}
extern(C) static void callBackItemActivatedDestroy(OnItemActivatedDelegateWrapper wrapper, GClosure* closure)
{
wrapper.remove(wrapper);
}
protected class OnSelectionChangedDelegateWrapper
{
void delegate(RecentChooserIF) dlg;
gulong handlerId;
this(void delegate(RecentChooserIF) dlg)
{
this.dlg = dlg;
onSelectionChangedListeners ~= this;
}
void remove(OnSelectionChangedDelegateWrapper source)
{
foreach(index, wrapper; onSelectionChangedListeners)
{
if (wrapper.handlerId == source.handlerId)
{
onSelectionChangedListeners[index] = null;
onSelectionChangedListeners = std.algorithm.remove(onSelectionChangedListeners, index);
break;
}
}
}
}
OnSelectionChangedDelegateWrapper[] onSelectionChangedListeners;
/**
* This signal is emitted when there is a change in the set of
* selected recently used resources. This can happen when a user
* modifies the selection with the mouse or the keyboard, or when
* explicitly calling functions to change the selection.
*
* Since: 2.10
*/
gulong addOnSelectionChanged(void delegate(RecentChooserIF) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
{
auto wrapper = new OnSelectionChangedDelegateWrapper(dlg);
wrapper.handlerId = Signals.connectData(
this,
"selection-changed",
cast(GCallback)&callBackSelectionChanged,
cast(void*)wrapper,
cast(GClosureNotify)&callBackSelectionChangedDestroy,
connectFlags);
return wrapper.handlerId;
}
extern(C) static void callBackSelectionChanged(GtkRecentChooser* recentchooserStruct, OnSelectionChangedDelegateWrapper wrapper)
{
wrapper.dlg(wrapper.outer);
}
extern(C) static void callBackSelectionChangedDestroy(OnSelectionChangedDelegateWrapper wrapper, GClosure* closure)
{
wrapper.remove(wrapper);
}
}
|