1 /* 2 * This file is part of gtkD. 3 * 4 * gtkD is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU Lesser General Public License 6 * as published by the Free Software Foundation; either version 3 7 * of the License, or (at your option) any later version, with 8 * some exceptions, please read the COPYING file. 9 * 10 * gtkD is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU Lesser General Public License for more details. 14 * 15 * You should have received a copy of the GNU Lesser General Public License 16 * along with gtkD; if not, write to the Free Software 17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA 18 */ 19 20 // generated automatically - do not change 21 // find conversion definition on APILookup.txt 22 // implement new conversion functionalities on the wrap.utils pakage 23 24 25 module gtk.ShortcutManagerIF; 26 27 private import gtk.c.functions; 28 public import gtk.c.types; 29 30 31 /** 32 * The `GtkShortcutManager` interface is used to implement 33 * shortcut scopes. 34 * 35 * This is important for [iface@Gtk.Native] widgets that have their 36 * own surface, since the event controllers that are used to implement 37 * managed and global scopes are limited to the same native. 38 * 39 * Examples for widgets implementing `GtkShortcutManager` are 40 * [class@Gtk.Window] and [class@Gtk.Popover]. 41 * 42 * Every widget that implements `GtkShortcutManager` will be used as a 43 * %GTK_SHORTCUT_SCOPE_MANAGED. 44 */ 45 public interface ShortcutManagerIF{ 46 /** Get the main Gtk struct */ 47 public GtkShortcutManager* getShortcutManagerStruct(bool transferOwnership = false); 48 49 /** the main Gtk struct as a void* */ 50 protected void* getStruct(); 51 52 53 /** */ 54 public static GType getType() 55 { 56 return gtk_shortcut_manager_get_type(); 57 } 58 }