1 /* 2 * GTK - The GIMP Toolkit 3 * Copyright (C) 2018 Red Hat, Inc. 4 * All rights reserved. 5 * 6 * This Library is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU Library General Public License as 8 * published by the Free Software Foundation; either version 2 of the 9 * License, or (at your option) any later version. 10 * 11 * This Library is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * Library General Public License for more details. 15 * 16 * You should have received a copy of the GNU Library General Public 17 * License along with this library. If not, see <http://www.gnu.org/licenses/>. 18 */ 19 20 #ifndef __GTK_COLOR_PICKER_PORTAL_H__ 21 #define __GTK_COLOR_PICKER_PORTAL_H__ 22 23 24 #if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) 25 #error "Only <gtk/gtk.h> can be included directly." 26 #endif 27 28 #include <gtk/gtkcolorpickerprivate.h> 29 30 G_BEGIN_DECLS 31 32 33 #define GTK_TYPE_COLOR_PICKER_PORTAL gtk_color_picker_portal_get_type () 34 G_DECLARE_FINAL_TYPE (GtkColorPickerPortal, gtk_color_picker_portal, GTK, COLOR_PICKER_PORTAL, GObject) 35 36 GDK_AVAILABLE_IN_ALL 37 GtkColorPicker * gtk_color_picker_portal_new (void); 38 39 G_END_DECLS 40 41 #endif /* __GTK_COLOR_PICKER_PORTAL_H__ */ 42