This file is indexed.

/usr/include/d/gtkd-3/gtk/FileChooserWidget.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
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
/*
 * 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.FileChooserWidget;

private import glib.ConstructionException;
private import glib.Str;
private import gobject.ObjectG;
private import gobject.Signals;
private import gtk.Box;
private import gtk.FileChooserIF;
private import gtk.FileChooserT;
private import gtk.Widget;
private import gtk.c.functions;
public  import gtk.c.types;
public  import gtkc.gtktypes;
private import std.algorithm;


/**
 * #GtkFileChooserWidget is a widget for choosing files.
 * It exposes the #GtkFileChooser interface, and you should
 * use the methods of this interface to interact with the
 * widget.
 * 
 * # CSS nodes
 * 
 * GtkFileChooserWidget has a single CSS node with name filechooser.
 */
public class FileChooserWidget : Box, FileChooserIF
{
	/** the main Gtk struct */
	protected GtkFileChooserWidget* gtkFileChooserWidget;

	/** Get the main Gtk struct */
	public GtkFileChooserWidget* getFileChooserWidgetStruct(bool transferOwnership = false)
	{
		if (transferOwnership)
			ownedRef = false;
		return gtkFileChooserWidget;
	}

	/** the main Gtk struct as a void* */
	protected override void* getStruct()
	{
		return cast(void*)gtkFileChooserWidget;
	}

	protected override void setStruct(GObject* obj)
	{
		gtkFileChooserWidget = cast(GtkFileChooserWidget*)obj;
		super.setStruct(obj);
	}

	/**
	 * Sets our main struct and passes it to the parent class.
	 */
	public this (GtkFileChooserWidget* gtkFileChooserWidget, bool ownedRef = false)
	{
		this.gtkFileChooserWidget = gtkFileChooserWidget;
		super(cast(GtkBox*)gtkFileChooserWidget, ownedRef);
	}

	// add the FileChooser capabilities
	mixin FileChooserT!(GtkFileChooserWidget);


	/** */
	public static GType getType()
	{
		return gtk_file_chooser_widget_get_type();
	}

	/**
	 * Creates a new #GtkFileChooserWidget. This is a file chooser widget that can
	 * be embedded in custom windows, and it is the same widget that is used by
	 * #GtkFileChooserDialog.
	 *
	 * Params:
	 *     action = Open or save mode for the widget
	 *
	 * Returns: a new #GtkFileChooserWidget
	 *
	 * Since: 2.4
	 *
	 * Throws: ConstructionException GTK+ fails to create the object.
	 */
	public this(GtkFileChooserAction action)
	{
		auto p = gtk_file_chooser_widget_new(action);

		if(p is null)
		{
			throw new ConstructionException("null returned by new");
		}

		this(cast(GtkFileChooserWidget*) p);
	}

	protected class OnDesktopFolderDelegateWrapper
	{
		void delegate(FileChooserWidget) dlg;
		gulong handlerId;

		this(void delegate(FileChooserWidget) dlg)
		{
			this.dlg = dlg;
			onDesktopFolderListeners ~= this;
		}

		void remove(OnDesktopFolderDelegateWrapper source)
		{
			foreach(index, wrapper; onDesktopFolderListeners)
			{
				if (wrapper.handlerId == source.handlerId)
				{
					onDesktopFolderListeners[index] = null;
					onDesktopFolderListeners = std.algorithm.remove(onDesktopFolderListeners, index);
					break;
				}
			}
		}
	}
	OnDesktopFolderDelegateWrapper[] onDesktopFolderListeners;

	/**
	 * The ::desktop-folder signal is a [keybinding signal][GtkBindingSignal]
	 * which gets emitted when the user asks for it.
	 *
	 * This is used to make the file chooser show the user's Desktop
	 * folder in the file list.
	 *
	 * The default binding for this signal is `Alt + D`.
	 */
	gulong addOnDesktopFolder(void delegate(FileChooserWidget) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
	{
		auto wrapper = new OnDesktopFolderDelegateWrapper(dlg);
		wrapper.handlerId = Signals.connectData(
			this,
			"desktop-folder",
			cast(GCallback)&callBackDesktopFolder,
			cast(void*)wrapper,
			cast(GClosureNotify)&callBackDesktopFolderDestroy,
			connectFlags);
		return wrapper.handlerId;
	}

	extern(C) static void callBackDesktopFolder(GtkFileChooserWidget* filechooserwidgetStruct, OnDesktopFolderDelegateWrapper wrapper)
	{
		wrapper.dlg(wrapper.outer);
	}

	extern(C) static void callBackDesktopFolderDestroy(OnDesktopFolderDelegateWrapper wrapper, GClosure* closure)
	{
		wrapper.remove(wrapper);
	}

	protected class OnDownFolderDelegateWrapper
	{
		void delegate(FileChooserWidget) dlg;
		gulong handlerId;

		this(void delegate(FileChooserWidget) dlg)
		{
			this.dlg = dlg;
			onDownFolderListeners ~= this;
		}

		void remove(OnDownFolderDelegateWrapper source)
		{
			foreach(index, wrapper; onDownFolderListeners)
			{
				if (wrapper.handlerId == source.handlerId)
				{
					onDownFolderListeners[index] = null;
					onDownFolderListeners = std.algorithm.remove(onDownFolderListeners, index);
					break;
				}
			}
		}
	}
	OnDownFolderDelegateWrapper[] onDownFolderListeners;

	/**
	 * The ::down-folder signal is a [keybinding signal][GtkBindingSignal]
	 * which gets emitted when the user asks for it.
	 *
	 * This is used to make the file chooser go to a child of the current folder
	 * in the file hierarchy. The subfolder that will be used is displayed in the
	 * path bar widget of the file chooser. For example, if the path bar is showing
	 * "/foo/bar/baz", with bar currently displayed, then this will cause the file
	 * chooser to switch to the "baz" subfolder.
	 *
	 * The default binding for this signal is `Alt + Down`.
	 */
	gulong addOnDownFolder(void delegate(FileChooserWidget) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
	{
		auto wrapper = new OnDownFolderDelegateWrapper(dlg);
		wrapper.handlerId = Signals.connectData(
			this,
			"down-folder",
			cast(GCallback)&callBackDownFolder,
			cast(void*)wrapper,
			cast(GClosureNotify)&callBackDownFolderDestroy,
			connectFlags);
		return wrapper.handlerId;
	}

	extern(C) static void callBackDownFolder(GtkFileChooserWidget* filechooserwidgetStruct, OnDownFolderDelegateWrapper wrapper)
	{
		wrapper.dlg(wrapper.outer);
	}

	extern(C) static void callBackDownFolderDestroy(OnDownFolderDelegateWrapper wrapper, GClosure* closure)
	{
		wrapper.remove(wrapper);
	}

	protected class OnHomeFolderDelegateWrapper
	{
		void delegate(FileChooserWidget) dlg;
		gulong handlerId;

		this(void delegate(FileChooserWidget) dlg)
		{
			this.dlg = dlg;
			onHomeFolderListeners ~= this;
		}

		void remove(OnHomeFolderDelegateWrapper source)
		{
			foreach(index, wrapper; onHomeFolderListeners)
			{
				if (wrapper.handlerId == source.handlerId)
				{
					onHomeFolderListeners[index] = null;
					onHomeFolderListeners = std.algorithm.remove(onHomeFolderListeners, index);
					break;
				}
			}
		}
	}
	OnHomeFolderDelegateWrapper[] onHomeFolderListeners;

	/**
	 * The ::home-folder signal is a [keybinding signal][GtkBindingSignal]
	 * which gets emitted when the user asks for it.
	 *
	 * This is used to make the file chooser show the user's home
	 * folder in the file list.
	 *
	 * The default binding for this signal is `Alt + Home`.
	 */
	gulong addOnHomeFolder(void delegate(FileChooserWidget) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
	{
		auto wrapper = new OnHomeFolderDelegateWrapper(dlg);
		wrapper.handlerId = Signals.connectData(
			this,
			"home-folder",
			cast(GCallback)&callBackHomeFolder,
			cast(void*)wrapper,
			cast(GClosureNotify)&callBackHomeFolderDestroy,
			connectFlags);
		return wrapper.handlerId;
	}

	extern(C) static void callBackHomeFolder(GtkFileChooserWidget* filechooserwidgetStruct, OnHomeFolderDelegateWrapper wrapper)
	{
		wrapper.dlg(wrapper.outer);
	}

	extern(C) static void callBackHomeFolderDestroy(OnHomeFolderDelegateWrapper wrapper, GClosure* closure)
	{
		wrapper.remove(wrapper);
	}

	protected class OnLocationPopupDelegateWrapper
	{
		void delegate(string, FileChooserWidget) dlg;
		gulong handlerId;

		this(void delegate(string, FileChooserWidget) dlg)
		{
			this.dlg = dlg;
			onLocationPopupListeners ~= this;
		}

		void remove(OnLocationPopupDelegateWrapper source)
		{
			foreach(index, wrapper; onLocationPopupListeners)
			{
				if (wrapper.handlerId == source.handlerId)
				{
					onLocationPopupListeners[index] = null;
					onLocationPopupListeners = std.algorithm.remove(onLocationPopupListeners, index);
					break;
				}
			}
		}
	}
	OnLocationPopupDelegateWrapper[] onLocationPopupListeners;

	/**
	 * The ::location-popup signal is a [keybinding signal][GtkBindingSignal]
	 * which gets emitted when the user asks for it.
	 *
	 * This is used to make the file chooser show a "Location" prompt which
	 * the user can use to manually type the name of the file he wishes to select.
	 *
	 * The default bindings for this signal are `Control + L` with a @path string
	 * of "" (the empty string).  It is also bound to `/` with a @path string of
	 * "`/`" (a slash):  this lets you type `/` and immediately type a path name.
	 * On Unix systems, this is bound to `~` (tilde) with a @path string of "~"
	 * itself for access to home directories.
	 *
	 * Params:
	 *     path = a string that gets put in the text entry for the file name
	 */
	gulong addOnLocationPopup(void delegate(string, FileChooserWidget) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
	{
		auto wrapper = new OnLocationPopupDelegateWrapper(dlg);
		wrapper.handlerId = Signals.connectData(
			this,
			"location-popup",
			cast(GCallback)&callBackLocationPopup,
			cast(void*)wrapper,
			cast(GClosureNotify)&callBackLocationPopupDestroy,
			connectFlags);
		return wrapper.handlerId;
	}

	extern(C) static void callBackLocationPopup(GtkFileChooserWidget* filechooserwidgetStruct, char* path, OnLocationPopupDelegateWrapper wrapper)
	{
		wrapper.dlg(Str.toString(path), wrapper.outer);
	}

	extern(C) static void callBackLocationPopupDestroy(OnLocationPopupDelegateWrapper wrapper, GClosure* closure)
	{
		wrapper.remove(wrapper);
	}

	protected class OnLocationPopupOnPasteDelegateWrapper
	{
		void delegate(FileChooserWidget) dlg;
		gulong handlerId;

		this(void delegate(FileChooserWidget) dlg)
		{
			this.dlg = dlg;
			onLocationPopupOnPasteListeners ~= this;
		}

		void remove(OnLocationPopupOnPasteDelegateWrapper source)
		{
			foreach(index, wrapper; onLocationPopupOnPasteListeners)
			{
				if (wrapper.handlerId == source.handlerId)
				{
					onLocationPopupOnPasteListeners[index] = null;
					onLocationPopupOnPasteListeners = std.algorithm.remove(onLocationPopupOnPasteListeners, index);
					break;
				}
			}
		}
	}
	OnLocationPopupOnPasteDelegateWrapper[] onLocationPopupOnPasteListeners;

	/**
	 * The ::location-popup-on-paste signal is a [keybinding signal][GtkBindingSignal]
	 * which gets emitted when the user asks for it.
	 *
	 * This is used to make the file chooser show a "Location" prompt when the user
	 * pastes into a #GtkFileChooserWidget.
	 *
	 * The default binding for this signal is `Control + V`.
	 */
	gulong addOnLocationPopupOnPaste(void delegate(FileChooserWidget) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
	{
		auto wrapper = new OnLocationPopupOnPasteDelegateWrapper(dlg);
		wrapper.handlerId = Signals.connectData(
			this,
			"location-popup-on-paste",
			cast(GCallback)&callBackLocationPopupOnPaste,
			cast(void*)wrapper,
			cast(GClosureNotify)&callBackLocationPopupOnPasteDestroy,
			connectFlags);
		return wrapper.handlerId;
	}

	extern(C) static void callBackLocationPopupOnPaste(GtkFileChooserWidget* filechooserwidgetStruct, OnLocationPopupOnPasteDelegateWrapper wrapper)
	{
		wrapper.dlg(wrapper.outer);
	}

	extern(C) static void callBackLocationPopupOnPasteDestroy(OnLocationPopupOnPasteDelegateWrapper wrapper, GClosure* closure)
	{
		wrapper.remove(wrapper);
	}

	protected class OnLocationTogglePopupDelegateWrapper
	{
		void delegate(FileChooserWidget) dlg;
		gulong handlerId;

		this(void delegate(FileChooserWidget) dlg)
		{
			this.dlg = dlg;
			onLocationTogglePopupListeners ~= this;
		}

		void remove(OnLocationTogglePopupDelegateWrapper source)
		{
			foreach(index, wrapper; onLocationTogglePopupListeners)
			{
				if (wrapper.handlerId == source.handlerId)
				{
					onLocationTogglePopupListeners[index] = null;
					onLocationTogglePopupListeners = std.algorithm.remove(onLocationTogglePopupListeners, index);
					break;
				}
			}
		}
	}
	OnLocationTogglePopupDelegateWrapper[] onLocationTogglePopupListeners;

	/**
	 * The ::location-toggle-popup signal is a [keybinding signal][GtkBindingSignal]
	 * which gets emitted when the user asks for it.
	 *
	 * This is used to toggle the visibility of a "Location" prompt which the user
	 * can use to manually type the name of the file he wishes to select.
	 *
	 * The default binding for this signal is `Control + L`.
	 */
	gulong addOnLocationTogglePopup(void delegate(FileChooserWidget) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
	{
		auto wrapper = new OnLocationTogglePopupDelegateWrapper(dlg);
		wrapper.handlerId = Signals.connectData(
			this,
			"location-toggle-popup",
			cast(GCallback)&callBackLocationTogglePopup,
			cast(void*)wrapper,
			cast(GClosureNotify)&callBackLocationTogglePopupDestroy,
			connectFlags);
		return wrapper.handlerId;
	}

	extern(C) static void callBackLocationTogglePopup(GtkFileChooserWidget* filechooserwidgetStruct, OnLocationTogglePopupDelegateWrapper wrapper)
	{
		wrapper.dlg(wrapper.outer);
	}

	extern(C) static void callBackLocationTogglePopupDestroy(OnLocationTogglePopupDelegateWrapper wrapper, GClosure* closure)
	{
		wrapper.remove(wrapper);
	}

	protected class OnPlacesShortcutDelegateWrapper
	{
		void delegate(FileChooserWidget) dlg;
		gulong handlerId;

		this(void delegate(FileChooserWidget) dlg)
		{
			this.dlg = dlg;
			onPlacesShortcutListeners ~= this;
		}

		void remove(OnPlacesShortcutDelegateWrapper source)
		{
			foreach(index, wrapper; onPlacesShortcutListeners)
			{
				if (wrapper.handlerId == source.handlerId)
				{
					onPlacesShortcutListeners[index] = null;
					onPlacesShortcutListeners = std.algorithm.remove(onPlacesShortcutListeners, index);
					break;
				}
			}
		}
	}
	OnPlacesShortcutDelegateWrapper[] onPlacesShortcutListeners;

	/**
	 * The ::places-shortcut signal is a [keybinding signal][GtkBindingSignal]
	 * which gets emitted when the user asks for it.
	 *
	 * This is used to move the focus to the places sidebar.
	 *
	 * The default binding for this signal is `Alt + P`.
	 */
	gulong addOnPlacesShortcut(void delegate(FileChooserWidget) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
	{
		auto wrapper = new OnPlacesShortcutDelegateWrapper(dlg);
		wrapper.handlerId = Signals.connectData(
			this,
			"places-shortcut",
			cast(GCallback)&callBackPlacesShortcut,
			cast(void*)wrapper,
			cast(GClosureNotify)&callBackPlacesShortcutDestroy,
			connectFlags);
		return wrapper.handlerId;
	}

	extern(C) static void callBackPlacesShortcut(GtkFileChooserWidget* filechooserwidgetStruct, OnPlacesShortcutDelegateWrapper wrapper)
	{
		wrapper.dlg(wrapper.outer);
	}

	extern(C) static void callBackPlacesShortcutDestroy(OnPlacesShortcutDelegateWrapper wrapper, GClosure* closure)
	{
		wrapper.remove(wrapper);
	}

	protected class OnQuickBookmarkDelegateWrapper
	{
		void delegate(int, FileChooserWidget) dlg;
		gulong handlerId;

		this(void delegate(int, FileChooserWidget) dlg)
		{
			this.dlg = dlg;
			onQuickBookmarkListeners ~= this;
		}

		void remove(OnQuickBookmarkDelegateWrapper source)
		{
			foreach(index, wrapper; onQuickBookmarkListeners)
			{
				if (wrapper.handlerId == source.handlerId)
				{
					onQuickBookmarkListeners[index] = null;
					onQuickBookmarkListeners = std.algorithm.remove(onQuickBookmarkListeners, index);
					break;
				}
			}
		}
	}
	OnQuickBookmarkDelegateWrapper[] onQuickBookmarkListeners;

	/**
	 * The ::quick-bookmark signal is a [keybinding signal][GtkBindingSignal]
	 * which gets emitted when the user asks for it.
	 *
	 * This is used to make the file chooser switch to the bookmark specified
	 * in the @bookmark_index parameter. For example, if you have three bookmarks,
	 * you can pass 0, 1, 2 to this signal to switch to each of them, respectively.
	 *
	 * The default binding for this signal is `Alt + 1`, `Alt + 2`,
	 * etc. until `Alt + 0`.  Note that in the default binding, that
	 * `Alt + 1` is actually defined to switch to the bookmark at index
	 * 0, and so on successively; `Alt + 0` is defined to switch to the
	 * bookmark at index 10.
	 *
	 * Params:
	 *     bookmarkIndex = the number of the bookmark to switch to
	 */
	gulong addOnQuickBookmark(void delegate(int, FileChooserWidget) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
	{
		auto wrapper = new OnQuickBookmarkDelegateWrapper(dlg);
		wrapper.handlerId = Signals.connectData(
			this,
			"quick-bookmark",
			cast(GCallback)&callBackQuickBookmark,
			cast(void*)wrapper,
			cast(GClosureNotify)&callBackQuickBookmarkDestroy,
			connectFlags);
		return wrapper.handlerId;
	}

	extern(C) static void callBackQuickBookmark(GtkFileChooserWidget* filechooserwidgetStruct, int bookmarkIndex, OnQuickBookmarkDelegateWrapper wrapper)
	{
		wrapper.dlg(bookmarkIndex, wrapper.outer);
	}

	extern(C) static void callBackQuickBookmarkDestroy(OnQuickBookmarkDelegateWrapper wrapper, GClosure* closure)
	{
		wrapper.remove(wrapper);
	}

	protected class OnRecentShortcutDelegateWrapper
	{
		void delegate(FileChooserWidget) dlg;
		gulong handlerId;

		this(void delegate(FileChooserWidget) dlg)
		{
			this.dlg = dlg;
			onRecentShortcutListeners ~= this;
		}

		void remove(OnRecentShortcutDelegateWrapper source)
		{
			foreach(index, wrapper; onRecentShortcutListeners)
			{
				if (wrapper.handlerId == source.handlerId)
				{
					onRecentShortcutListeners[index] = null;
					onRecentShortcutListeners = std.algorithm.remove(onRecentShortcutListeners, index);
					break;
				}
			}
		}
	}
	OnRecentShortcutDelegateWrapper[] onRecentShortcutListeners;

	/**
	 * The ::recent-shortcut signal is a [keybinding signal][GtkBindingSignal]
	 * which gets emitted when the user asks for it.
	 *
	 * This is used to make the file chooser show the Recent location.
	 *
	 * The default binding for this signal is `Alt + R`.
	 */
	gulong addOnRecentShortcut(void delegate(FileChooserWidget) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
	{
		auto wrapper = new OnRecentShortcutDelegateWrapper(dlg);
		wrapper.handlerId = Signals.connectData(
			this,
			"recent-shortcut",
			cast(GCallback)&callBackRecentShortcut,
			cast(void*)wrapper,
			cast(GClosureNotify)&callBackRecentShortcutDestroy,
			connectFlags);
		return wrapper.handlerId;
	}

	extern(C) static void callBackRecentShortcut(GtkFileChooserWidget* filechooserwidgetStruct, OnRecentShortcutDelegateWrapper wrapper)
	{
		wrapper.dlg(wrapper.outer);
	}

	extern(C) static void callBackRecentShortcutDestroy(OnRecentShortcutDelegateWrapper wrapper, GClosure* closure)
	{
		wrapper.remove(wrapper);
	}

	protected class OnSearchShortcutDelegateWrapper
	{
		void delegate(FileChooserWidget) dlg;
		gulong handlerId;

		this(void delegate(FileChooserWidget) dlg)
		{
			this.dlg = dlg;
			onSearchShortcutListeners ~= this;
		}

		void remove(OnSearchShortcutDelegateWrapper source)
		{
			foreach(index, wrapper; onSearchShortcutListeners)
			{
				if (wrapper.handlerId == source.handlerId)
				{
					onSearchShortcutListeners[index] = null;
					onSearchShortcutListeners = std.algorithm.remove(onSearchShortcutListeners, index);
					break;
				}
			}
		}
	}
	OnSearchShortcutDelegateWrapper[] onSearchShortcutListeners;

	/**
	 * The ::search-shortcut signal is a [keybinding signal][GtkBindingSignal]
	 * which gets emitted when the user asks for it.
	 *
	 * This is used to make the file chooser show the search entry.
	 *
	 * The default binding for this signal is `Alt + S`.
	 */
	gulong addOnSearchShortcut(void delegate(FileChooserWidget) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
	{
		auto wrapper = new OnSearchShortcutDelegateWrapper(dlg);
		wrapper.handlerId = Signals.connectData(
			this,
			"search-shortcut",
			cast(GCallback)&callBackSearchShortcut,
			cast(void*)wrapper,
			cast(GClosureNotify)&callBackSearchShortcutDestroy,
			connectFlags);
		return wrapper.handlerId;
	}

	extern(C) static void callBackSearchShortcut(GtkFileChooserWidget* filechooserwidgetStruct, OnSearchShortcutDelegateWrapper wrapper)
	{
		wrapper.dlg(wrapper.outer);
	}

	extern(C) static void callBackSearchShortcutDestroy(OnSearchShortcutDelegateWrapper wrapper, GClosure* closure)
	{
		wrapper.remove(wrapper);
	}

	protected class OnShowHiddenDelegateWrapper
	{
		void delegate(FileChooserWidget) dlg;
		gulong handlerId;

		this(void delegate(FileChooserWidget) dlg)
		{
			this.dlg = dlg;
			onShowHiddenListeners ~= this;
		}

		void remove(OnShowHiddenDelegateWrapper source)
		{
			foreach(index, wrapper; onShowHiddenListeners)
			{
				if (wrapper.handlerId == source.handlerId)
				{
					onShowHiddenListeners[index] = null;
					onShowHiddenListeners = std.algorithm.remove(onShowHiddenListeners, index);
					break;
				}
			}
		}
	}
	OnShowHiddenDelegateWrapper[] onShowHiddenListeners;

	/**
	 * The ::show-hidden signal is a [keybinding signal][GtkBindingSignal]
	 * which gets emitted when the user asks for it.
	 *
	 * This is used to make the file chooser display hidden files.
	 *
	 * The default binding for this signal is `Control + H`.
	 */
	gulong addOnShowHidden(void delegate(FileChooserWidget) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
	{
		auto wrapper = new OnShowHiddenDelegateWrapper(dlg);
		wrapper.handlerId = Signals.connectData(
			this,
			"show-hidden",
			cast(GCallback)&callBackShowHidden,
			cast(void*)wrapper,
			cast(GClosureNotify)&callBackShowHiddenDestroy,
			connectFlags);
		return wrapper.handlerId;
	}

	extern(C) static void callBackShowHidden(GtkFileChooserWidget* filechooserwidgetStruct, OnShowHiddenDelegateWrapper wrapper)
	{
		wrapper.dlg(wrapper.outer);
	}

	extern(C) static void callBackShowHiddenDestroy(OnShowHiddenDelegateWrapper wrapper, GClosure* closure)
	{
		wrapper.remove(wrapper);
	}

	protected class OnUpFolderDelegateWrapper
	{
		void delegate(FileChooserWidget) dlg;
		gulong handlerId;

		this(void delegate(FileChooserWidget) dlg)
		{
			this.dlg = dlg;
			onUpFolderListeners ~= this;
		}

		void remove(OnUpFolderDelegateWrapper source)
		{
			foreach(index, wrapper; onUpFolderListeners)
			{
				if (wrapper.handlerId == source.handlerId)
				{
					onUpFolderListeners[index] = null;
					onUpFolderListeners = std.algorithm.remove(onUpFolderListeners, index);
					break;
				}
			}
		}
	}
	OnUpFolderDelegateWrapper[] onUpFolderListeners;

	/**
	 * The ::up-folder signal is a [keybinding signal][GtkBindingSignal]
	 * which gets emitted when the user asks for it.
	 *
	 * This is used to make the file chooser go to the parent of the current folder
	 * in the file hierarchy.
	 *
	 * The default binding for this signal is `Alt + Up`.
	 */
	gulong addOnUpFolder(void delegate(FileChooserWidget) dlg, ConnectFlags connectFlags=cast(ConnectFlags)0)
	{
		auto wrapper = new OnUpFolderDelegateWrapper(dlg);
		wrapper.handlerId = Signals.connectData(
			this,
			"up-folder",
			cast(GCallback)&callBackUpFolder,
			cast(void*)wrapper,
			cast(GClosureNotify)&callBackUpFolderDestroy,
			connectFlags);
		return wrapper.handlerId;
	}

	extern(C) static void callBackUpFolder(GtkFileChooserWidget* filechooserwidgetStruct, OnUpFolderDelegateWrapper wrapper)
	{
		wrapper.dlg(wrapper.outer);
	}

	extern(C) static void callBackUpFolderDestroy(OnUpFolderDelegateWrapper wrapper, GClosure* closure)
	{
		wrapper.remove(wrapper);
	}
}