summaryrefslogtreecommitdiff
path: root/src/sensors/huey/huey-ctx.h
blob: cf32e4d1be43b37ca522e682eb6e309a4a4dc4d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 *
 * Copyright (C) 2013 Richard Hughes <richard@hughsie.com>
 *
 * Licensed under the GNU General Public License Version 2
 *
 * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#ifndef __HUEY_CTX_H
#define __HUEY_CTX_H

#include <glib-object.h>
#include <gio/gio.h>
#include <gusb.h>
#include <colord-private.h>

G_BEGIN_DECLS

#define HUEY_CTX_ERROR		(huey_ctx_error_quark ())
#define HUEY_CTX_TYPE_ERROR	(huey_ctx_error_get_type ())

#define HUEY_TYPE_CTX (huey_ctx_get_type ())
G_DECLARE_DERIVABLE_TYPE (HueyCtx, huey_ctx, HUEY, CTX, GObject)

struct _HueyCtxClass
{
	GObjectClass		 parent_class;
	/*< private >*/
	/* Padding for future expansion */
	void (*_huey_ctx_reserved1) (void);
	void (*_huey_ctx_reserved2) (void);
	void (*_huey_ctx_reserved3) (void);
	void (*_huey_ctx_reserved4) (void);
	void (*_huey_ctx_reserved5) (void);
	void (*_huey_ctx_reserved6) (void);
	void (*_huey_ctx_reserved7) (void);
	void (*_huey_ctx_reserved8) (void);
};

/**
 * HueyCtxError:
 * @HUEY_CTX_ERROR_FAILED: the request failed for an unknown reason
 *
 * Errors that can be thrown
 */
typedef enum
{
	HUEY_CTX_ERROR_FAILED,
	HUEY_CTX_ERROR_NO_SUPPORT,
	HUEY_CTX_ERROR_LAST
} HueyCtxError;

GQuark		 huey_ctx_error_quark		(void);
HueyCtx		*huey_ctx_new			(void);

CdColorXYZ	*huey_ctx_take_sample		(HueyCtx	*ctx,
						 CdSensorCap	 cap,
						 GError		**error)
						 G_GNUC_WARN_UNUSED_RESULT;
GUsbDevice	*huey_ctx_get_device		(HueyCtx	*ctx);
void		 huey_ctx_set_device		(HueyCtx	*ctx,
						 GUsbDevice	*device);
gboolean	 huey_ctx_setup			(HueyCtx	*ctx,
						 GError		**error)
						 G_GNUC_WARN_UNUSED_RESULT;
const CdMat3x3	*huey_ctx_get_calibration_lcd	(HueyCtx	*ctx);
const CdMat3x3	*huey_ctx_get_calibration_crt	(HueyCtx	*ctx);
gfloat		 huey_ctx_get_calibration_value	(HueyCtx	*ctx);
const CdVec3	*huey_ctx_get_dark_offset	(HueyCtx	*ctx);
const gchar	*huey_ctx_get_unlock_string	(HueyCtx	*ctx);

G_END_DECLS

#endif /* __HUEY_CTX_H */