upgrading copyright year from 2015 to 2016
[hkl.git] / gui / hkl-gui.h
blobf74ea2f29a9958dc5076b5fc8947fe03aa995f33
1 /* This file is part of the hkl library.
3 * The hkl library is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 3 of the License, or
6 * (at your option) any later version.
8 * The hkl library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with the hkl library. If not, see <http://www.gnu.org/licenses/>.
16 * Copyright (C) 2003-2016 Synchrotron SOLEIL
17 * L'Orme des Merisiers Saint-Aubin
18 * BP 48 91192 GIF-sur-YVETTE CEDEX
20 * Authors: Picca Frédéric-Emmanuel <picca@synchrotron-soleil.fr>
23 #include <glib.h>
24 #include <glib-object.h>
25 #include <gtk/gtk.h>
26 #include <gdk/gdk.h>
27 #include "hkl.h"
28 #include "hkl-gui-pseudoaxes.h"
30 #define HKL_GUI_TYPE_WINDOW (hkl_gui_window_get_type ())
31 #define HKL_GUI_WINDOW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), HKL_GUI_TYPE_WINDOW, HklGuiWindow))
32 #define HKL_GUI_WINDOW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), HKL_GUI_TYPE_WINDOW, HklGuiWindowClass))
33 #define HKL_GUI_IS_WINDOW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), HKL_GUI_TYPE_WINDOW))
34 #define HKL_GUI_IS_WINDOW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), HKL_GUI_TYPE_WINDOW))
35 #define HKL_GUI_WINDOW_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), HKL_GUI_TYPE_WINDOW, HklGuiWindowClass))
37 typedef struct _HklGuiWindow HklGuiWindow;
38 typedef struct _HklGuiWindowClass HklGuiWindowClass;
39 typedef struct _HklGuiWindowPrivate HklGuiWindowPrivate;
41 struct _HklGuiWindow {
42 GObject parent_instance;
43 HklGuiWindowPrivate * priv;
46 struct _HklGuiWindowClass {
47 GObjectClass parent_class;
50 GType hkl_gui_window_get_type (void) G_GNUC_CONST;
52 HklGuiWindow* hkl_gui_window_new (void);