summaryrefslogtreecommitdiff
path: root/plugins/color/gsd-color-calibrate.h
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2013-07-17 10:54:16 +0100
committerRichard Hughes <richard@hughsie.com>2013-07-26 11:38:27 +0100
commit7058386273e2bc36bb617753dae5c0b380914888 (patch)
treed486af1d6ced6246098b7e787a06b59a2f3623a6 /plugins/color/gsd-color-calibrate.h
parent487a936e61766f0306772c1269e2ff437fc53a46 (diff)
downloadgnome-settings-daemon-7058386273e2bc36bb617753dae5c0b380914888.tar.gz
color: Split out the color calibration functionality into a new file
Diffstat (limited to 'plugins/color/gsd-color-calibrate.h')
-rw-r--r--plugins/color/gsd-color-calibrate.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/plugins/color/gsd-color-calibrate.h b/plugins/color/gsd-color-calibrate.h
new file mode 100644
index 00000000..fb66eef7
--- /dev/null
+++ b/plugins/color/gsd-color-calibrate.h
@@ -0,0 +1,53 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
+ *
+ * Copyright (C) 2007 William Jon McCann <mccann@jhu.edu>
+ * Copyright (C) 2011-2013 Richard Hughes <richard@hughsie.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ */
+
+#ifndef __GSD_COLOR_CALIBRATE_H
+#define __GSD_COLOR_CALIBRATE_H
+
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+#define GSD_TYPE_COLOR_CALIBRATE (gsd_color_calibrate_get_type ())
+#define GSD_COLOR_CALIBRATE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GSD_TYPE_COLOR_CALIBRATE, GsdColorCalibrate))
+#define GSD_IS_COLOR_CALIBRATE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GSD_TYPE_COLOR_CALIBRATE))
+
+typedef struct GsdColorCalibratePrivate GsdColorCalibratePrivate;
+
+typedef struct
+{
+ GObject parent;
+ GsdColorCalibratePrivate *priv;
+} GsdColorCalibrate;
+
+typedef struct
+{
+ GObjectClass parent_class;
+} GsdColorCalibrateClass;
+
+GType gsd_color_calibrate_get_type (void);
+GQuark gsd_color_calibrate_error_quark (void);
+
+GsdColorCalibrate * gsd_color_calibrate_new (void);
+
+G_END_DECLS
+
+#endif /* __GSD_COLOR_CALIBRATE_H */