summaryrefslogtreecommitdiff
path: root/libcolord-gtk/cd-window-sync.c
blob: 6692172b15ed1cfa7e5fa520e35d3f0598f8dc2f (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 *
 * Copyright (C) 2012 Richard Hughes <richard@hughsie.com>
 *
 * Licensed under the GNU Lesser General Public License Version 2.1
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
 */

/**
 * SECTION:cd-window-sync
 * @short_description: Sync helpers for #CdWindow
 *
 * These helper functions provide a simple way to use the async functions
 * in command line tools.
 *
 * See also: #CdWindow
 */

#include "config.h"

#include <glib.h>
#include <gio/gio.h>

#include <colord.h>

#include "cd-window.h"
#include "cd-window-sync.h"

/* tiny helper to help us do the async operation */
typedef struct {
	GError		**error;
	GMainLoop	*loop;
	CdProfile	*profile;
	CdWindow	*window;
} CdWindowHelper;

/**********************************************************************/

static void
cd_window_get_profile_finish_sync (CdWindow *window,
				   GAsyncResult *res,
				   CdWindowHelper *helper)
{
	helper->profile = cd_window_get_profile_finish (window,
							res,
							helper->error);
	g_main_loop_quit (helper->loop);
}

/**
 * cd_window_get_profile_sync:
 * @window: a #CdWindow instance.
 * @widget: a #GtkWidget
 * @cancellable: a #GCancellable or %NULL
 * @error: a #GError, or %NULL.
 *
 * Gets the screen profile that should be used for the widget,
 * which corresponds to the screen output the widget most covers.
 *
 * WARNING: This function is synchronous, and may block.
 * Do not use it in GUI applications.
 *
 * Return value: (transfer full): a #CdProfile or %NULL
 *
 * Since: 0.1.20
 **/
CdProfile *
cd_window_get_profile_sync (CdWindow *window,
			    GtkWidget *widget,
			    GCancellable *cancellable,
			    GError **error)
{
	CdWindowHelper helper;

	/* create temp object */
	helper.loop = g_main_loop_new (NULL, FALSE);
	helper.error = error;

	/* run async method */
	cd_window_get_profile (window, widget, cancellable,
				(GAsyncReadyCallback) cd_window_get_profile_finish_sync,
				&helper);
	g_main_loop_run (helper.loop);

	/* free temp object */
	g_main_loop_unref (helper.loop);

	return helper.profile;
}