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_SHELL_H__
21#define __GTK_COLOR_PICKER_SHELL_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
30G_BEGIN_DECLS
31
32
33#define GTK_TYPE_COLOR_PICKER_SHELL gtk_color_picker_shell_get_type ()
34G_DECLARE_FINAL_TYPE (GtkColorPickerShell, gtk_color_picker_shell, GTK, COLOR_PICKER_SHELL, GObject)
35
36GDK_AVAILABLE_IN_ALL
37GtkColorPicker * gtk_color_picker_shell_new (void);
38
39G_END_DECLS
40
41#endif /* __GTK_COLOR_PICKER_SHELL_H__ */
42

source code of gtk/gtk/gtkcolorpickershellprivate.h