blob: fc9139f23ab7643f983069aea7d9fa7f6b8a89c9 [file] [log] [blame]
Stepan Salenikovichd81ef292015-02-17 18:47:37 -05001/*
2 * Copyright (C) 2015 Savoir-Faire Linux Inc.
3 * Author: Stepan Salenikovich <stepan.salenikovich@savoirfairelinux.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Additional permission under GNU GPL version 3 section 7:
20 *
21 * If you modify this program, or any covered work, by linking or
22 * combining it with the OpenSSL project's OpenSSL library (or a
23 * modified version of that library), containing parts covered by the
24 * terms of the OpenSSL or SSLeay licenses, Savoir-Faire Linux Inc.
25 * grants you additional permission to convey the resulting work.
26 * Corresponding Source for a non-source form of such a combination
27 * shall include the source code for the parts of OpenSSL used as well
28 * as that of the covered work.
29 */
30
31#include "ring_client.h"
32
33#include <gtk/gtk.h>
34#include <glib/gi18n.h>
Stepan Salenikovichd2dbcee2015-02-27 16:52:28 -050035#include <QtCore/QCoreApplication>
36#include <QtCore/QString>
37#include <QtCore/QByteArray>
Stepan Salenikovichd81ef292015-02-17 18:47:37 -050038#include <callmodel.h>
Stepan Salenikovichd2dbcee2015-02-27 16:52:28 -050039#include <QtCore/QItemSelectionModel>
Stepan Salenikovichc64523b2015-02-27 16:31:00 -050040#include <useractionmodel.h>
Stepan Salenikovich36c025c2015-03-03 19:06:44 -050041#include <clutter-gtk/clutter-gtk.h>
Stepan Salenikovichdd84cf92015-03-19 21:38:19 -040042#include <categorizedhistorymodel.h>
Stepan Salenikovich6f687072015-03-26 10:43:37 -040043#include <personmodel.h>
44#include <fallbackpersoncollection.h>
45#include <QtCore/QStandardPaths>
Stepan Salenikovich1e131a42015-05-27 14:12:21 -040046#include <localhistorycollection.h>
Stepan Salenikovich67112d12015-06-16 16:57:06 -040047#include <media/text.h>
Stepan Salenikovichf2d76c52015-07-17 17:54:56 -040048#include <numbercategorymodel.h>
Stepan Salenikovichd81ef292015-02-17 18:47:37 -050049
50#include "ring_client_options.h"
Stepan Salenikovich434b88f2015-02-19 17:49:08 -050051#include "ringmainwindow.h"
Stepan Salenikovich24dcd5c2015-03-26 17:40:34 -040052#include "dialogs.h"
Stepan Salenikovich6f687072015-03-26 10:43:37 -040053#include "backends/edscontactbackend.h"
54#include "delegates/pixbufdelegate.h"
Stepan Salenikovich76c33e62015-05-22 12:24:07 -040055#include "ringnotify.h"
Stepan Salenikovich76350582015-05-25 14:56:32 -040056#include "config.h"
Stepan Salenikovichfb7f2952015-05-25 16:44:19 -040057#include "utils/files.h"
Stepan Salenikovich4f9bb982015-06-23 14:26:30 -040058#include "revision.h"
Stepan Salenikovich434b88f2015-02-19 17:49:08 -050059
60struct _RingClientClass
61{
Stepan Salenikovichfb7f2952015-05-25 16:44:19 -040062 GtkApplicationClass parent_class;
Stepan Salenikovich434b88f2015-02-19 17:49:08 -050063};
64
65struct _RingClient
66{
67 GtkApplication parent;
68};
69
70typedef struct _RingClientPrivate RingClientPrivate;
Stepan Salenikovichd81ef292015-02-17 18:47:37 -050071
72struct _RingClientPrivate {
Stepan Salenikovich0d515e52015-05-19 16:31:05 -040073 /* args */
74 int argc;
75 char **argv;
Stepan Salenikovichfb7f2952015-05-25 16:44:19 -040076
77 GSettings *settings;
78
Stepan Salenikovichd81ef292015-02-17 18:47:37 -050079 /* main window */
80 GtkWidget *win;
81 /* for libRingclient */
82 QCoreApplication *qtapp;
Stepan Salenikovich068fb692015-03-23 14:58:32 -040083 /* UAM */
84 QMetaObject::Connection uam_updated;
Stepan Salenikovich6f687072015-03-26 10:43:37 -040085
86 GCancellable *cancellable;
Stepan Salenikovichd81ef292015-02-17 18:47:37 -050087};
88
Stepan Salenikovich0d515e52015-05-19 16:31:05 -040089/* this union is used to pass ints as pointers and vice versa for GAction parameters*/
90typedef union _int_ptr_t
91{
92 int value;
93 gint64 value64;
94 gpointer ptr;
95} int_ptr_t;
96
Stepan Salenikovich434b88f2015-02-19 17:49:08 -050097G_DEFINE_TYPE_WITH_PRIVATE(RingClient, ring_client, GTK_TYPE_APPLICATION);
Stepan Salenikovichd81ef292015-02-17 18:47:37 -050098
99#define RING_CLIENT_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), RING_CLIENT_TYPE, RingClientPrivate))
100
101static void
102init_exception_dialog(const char* msg)
103{
104 g_warning("%s", msg);
105 GtkWidget *dialog = gtk_message_dialog_new(NULL,
106 (GtkDialogFlags)(GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT),
107 GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE,
108 _("Unable to initialize.\nMake sure the Ring daemon (dring) is running.\nError: %s"),
109 msg);
110
111 gtk_window_set_title(GTK_WINDOW(dialog), _("Ring Error"));
112 gtk_dialog_run(GTK_DIALOG(dialog));
113 gtk_widget_destroy(dialog);
114}
115
Stepan Salenikovich2d63d5e2015-03-22 23:23:54 -0400116static void
117ring_accelerators(RingClient *client)
118{
Stepan Salenikovich39ee49a2015-03-24 12:44:55 -0400119#if GTK_CHECK_VERSION(3,12,0)
Stepan Salenikovich2d63d5e2015-03-22 23:23:54 -0400120 const gchar *quit_accels[2] = { "<Ctrl>Q", NULL };
121 gtk_application_set_accels_for_action(GTK_APPLICATION(client), "app.quit", quit_accels);
122#else
123 gtk_application_add_accelerator(GTK_APPLICATION(client), "<Control>Q", "win.quit", NULL);
124#endif
125}
126
127static void
128action_quit(G_GNUC_UNUSED GSimpleAction *simple,
129 G_GNUC_UNUSED GVariant *parameter,
130 gpointer user_data)
131{
132 g_return_if_fail(G_IS_APPLICATION(user_data));
133
134#if GLIB_CHECK_VERSION(2,32,0)
135 g_application_quit(G_APPLICATION(user_data));
136#else
137 RingClientPrivate *priv = RING_CLIENT_GET_PRIVATE(user_data);
138 gtk_widget_destroy(priv->win);
139#endif
140}
141
Stepan Salenikovich24dcd5c2015-03-26 17:40:34 -0400142static void
143action_about(G_GNUC_UNUSED GSimpleAction *simple,
144 G_GNUC_UNUSED GVariant *parameter,
145 gpointer user_data)
146{
147 g_return_if_fail(G_IS_APPLICATION(user_data));
148 RingClientPrivate *priv = RING_CLIENT_GET_PRIVATE(user_data);
149
150 ring_about_dialog(priv->win);
151}
152
Stepan Salenikovich69771842015-02-24 18:11:45 -0500153static const GActionEntry ring_actions[] =
154{
Stepan Salenikovich24dcd5c2015-03-26 17:40:34 -0400155 { "accept", NULL, NULL, NULL, NULL, {0} },
156 { "hangup", NULL, NULL, NULL, NULL, {0} },
157 { "hold", NULL, NULL, "false", NULL, {0} },
158 { "quit", action_quit, NULL, NULL, NULL, {0} },
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400159 { "about", action_about, NULL, NULL, NULL, {0} },
Stepan Salenikovich7d75eab2015-06-12 12:11:45 -0400160 { "mute_audio", NULL, NULL, "false", NULL, {0} },
161 { "mute_video", NULL, NULL, "false", NULL, {0} },
Stepan Salenikovichc64523b2015-02-27 16:31:00 -0500162 /* TODO implement the other actions */
Stepan Salenikovichc64523b2015-02-27 16:31:00 -0500163 // { "transfer", NULL, NULL, "flase", NULL, {0} },
164 // { "record", NULL, NULL, "false", NULL, {0} }
Stepan Salenikovich69771842015-02-24 18:11:45 -0500165};
166
Stepan Salenikovichc64523b2015-02-27 16:31:00 -0500167static void
168activate_action(GSimpleAction *action, G_GNUC_UNUSED GVariant *parameter, gpointer user_data)
169{
170 g_debug("activating action: %s", g_action_get_name(G_ACTION(action)));
171
172 int_ptr_t key;
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400173
Stepan Salenikovichc64523b2015-02-27 16:31:00 -0500174 key.ptr = user_data;
175 UserActionModel::Action a = static_cast<UserActionModel::Action>(key.value);
176 UserActionModel* uam = CallModel::instance()->userActionModel();
177
178 uam << a;
179}
Stepan Salenikovichc64523b2015-02-27 16:31:00 -0500180
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400181static void
Stepan Salenikovichfb7f2952015-05-25 16:44:19 -0400182autostart_toggled(GSettings *settings, G_GNUC_UNUSED gchar *key, G_GNUC_UNUSED gpointer user_data)
183{
184 autostart_symlink(g_settings_get_boolean(settings, "start-on-login"));
185}
186
187static void
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400188ring_client_startup(GApplication *app)
Stepan Salenikovich69771842015-02-24 18:11:45 -0500189{
Stepan Salenikovich69771842015-02-24 18:11:45 -0500190 RingClient *client = RING_CLIENT(app);
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400191 RingClientPrivate *priv = RING_CLIENT_GET_PRIVATE(client);
Stepan Salenikovich69771842015-02-24 18:11:45 -0500192
Stepan Salenikovich4f9bb982015-06-23 14:26:30 -0400193 g_message("Ring GNOME client version: %d.%d.%d", VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH);
194 g_message("git ref: %s", RING_CLIENT_REVISION);
195
Stepan Salenikovichfb7f2952015-05-25 16:44:19 -0400196 /* make sure that the system corresponds to the autostart setting */
197 autostart_symlink(g_settings_get_boolean(priv->settings, "start-on-login"));
198 g_signal_connect(priv->settings, "changed::start-on-login", G_CALLBACK(autostart_toggled), NULL);
199
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400200 /* init clutter */
201 int clutter_error;
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400202 if ((clutter_error = gtk_clutter_init(&priv->argc, &priv->argv)) != CLUTTER_INIT_SUCCESS) {
203 g_error("Could not init clutter : %d\n", clutter_error);
204 exit(1); /* the g_error above should normally cause the applicaiton to exit */
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400205 }
206
207 /* init libRingClient and make sure its connected to the dbus */
208 try {
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400209 priv->qtapp = new QCoreApplication(priv->argc, priv->argv);
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400210 /* the call model will try to connect to dring via dbus */
211 CallModel::instance();
212 } catch (const char * msg) {
213 init_exception_dialog(msg);
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400214 g_error("%s", msg);
215 exit(1); /* the g_error above should normally cause the applicaiton to exit */
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400216 } catch(QString& msg) {
217 QByteArray ba = msg.toLocal8Bit();
218 const char *c_str = ba.data();
219 init_exception_dialog(c_str);
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400220 g_error("%s", c_str);
221 exit(1); /* the g_error above should normally cause the applicaiton to exit */
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400222 }
223
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400224 /* init delegates */
225 /* FIXME: put in smart pointer? */
226 new PixbufDelegate();
227
Stepan Salenikovichf2d76c52015-07-17 17:54:56 -0400228 /* make sure basic number categories exist, in case user has no contacts
229 * from which these would be automatically created
230 */
231 NumberCategoryModel::instance()->addCategory("work", QVariant());
232 NumberCategoryModel::instance()->addCategory("home", QVariant());
233
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400234 /* add backends */
Stepan Salenikovich1e131a42015-05-27 14:12:21 -0400235 CategorizedHistoryModel::instance()->addCollection<LocalHistoryCollection>(LoadOptions::FORCE_ENABLED);
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400236
Stepan Salenikovichf2d76c52015-07-17 17:54:56 -0400237 /* fallback backend for vcards */
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400238 PersonModel::instance()->addCollection<FallbackPersonCollection>(LoadOptions::FORCE_ENABLED);
239
Stepan Salenikovichf2d76c52015-07-17 17:54:56 -0400240 /* EDS backend(s) */
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400241 load_eds_sources(priv->cancellable);
242
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400243 /* Override theme since we don't have appropriate icons for a dark them (yet) */
244 GtkSettings *gtk_settings = gtk_settings_get_default();
245 g_object_set(G_OBJECT(gtk_settings), "gtk-application-prefer-dark-theme",
246 FALSE, NULL);
247 /* enable button icons */
248 g_object_set(G_OBJECT(gtk_settings), "gtk-button-images",
249 TRUE, NULL);
250
251 /* add GActions */
Stepan Salenikovich69771842015-02-24 18:11:45 -0500252 g_action_map_add_action_entries(
Stepan Salenikovich2d63d5e2015-03-22 23:23:54 -0400253 G_ACTION_MAP(app), ring_actions, G_N_ELEMENTS(ring_actions), app);
254
255 /* add accelerators */
256 ring_accelerators(RING_CLIENT(app));
Stepan Salenikovichc64523b2015-02-27 16:31:00 -0500257
Stepan Salenikovich347b73a2015-03-22 10:39:00 -0400258 /* Bind GActions to the UserActionModel */
259 UserActionModel* uam = CallModel::instance()->userActionModel();
260 QHash<int, GSimpleAction*> actionHash;
261 actionHash[ (int)UserActionModel::Action::ACCEPT ] = G_SIMPLE_ACTION(g_action_map_lookup_action(G_ACTION_MAP(app), "accept"));
262 actionHash[ (int)UserActionModel::Action::HOLD ] = G_SIMPLE_ACTION(g_action_map_lookup_action(G_ACTION_MAP(app), "hold"));
Stepan Salenikovich7d75eab2015-06-12 12:11:45 -0400263 actionHash[ (int)UserActionModel::Action::MUTE_AUDIO ] = G_SIMPLE_ACTION(g_action_map_lookup_action(G_ACTION_MAP(app), "mute_audio"));
264 actionHash[ (int)UserActionModel::Action::MUTE_VIDEO ] = G_SIMPLE_ACTION(g_action_map_lookup_action(G_ACTION_MAP(app), "mute_video"));
Stepan Salenikovich347b73a2015-03-22 10:39:00 -0400265 /* TODO: add commented actions when ready */
Stepan Salenikovich347b73a2015-03-22 10:39:00 -0400266 // actionHash[ (int)UserActionModel::Action::SERVER_TRANSFER ] = G_SIMPLE_ACTION(g_action_map_lookup_action(G_ACTION_MAP(app), "transfer"));
267 // actionHash[ (int)UserActionModel::Action::RECORD ] = G_SIMPLE_ACTION(g_action_map_lookup_action(G_ACTION_MAP(app), "record"));
268 actionHash[ (int)UserActionModel::Action::HANGUP ] = G_SIMPLE_ACTION(g_action_map_lookup_action(G_ACTION_MAP(app), "hangup"));
Stepan Salenikovichc64523b2015-02-27 16:31:00 -0500269
Stepan Salenikovich347b73a2015-03-22 10:39:00 -0400270 for (QHash<int,GSimpleAction*>::const_iterator i = actionHash.begin(); i != actionHash.end(); ++i) {
271 GSimpleAction* sa = i.value();
272 int_ptr_t user_data;
273 user_data.value = i.key();
274 g_signal_connect(G_OBJECT(sa), "activate", G_CALLBACK(activate_action), user_data.ptr);
275 }
Stepan Salenikovichc64523b2015-02-27 16:31:00 -0500276
Stepan Salenikovich347b73a2015-03-22 10:39:00 -0400277 /* change the state of the GActions based on the UserActionModel */
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400278 priv->uam_updated = QObject::connect(uam,&UserActionModel::dataChanged, [actionHash,uam](const QModelIndex& tl, const QModelIndex& br) {
Stepan Salenikovich347b73a2015-03-22 10:39:00 -0400279 const int first(tl.row()),last(br.row());
280 for(int i = first; i <= last;i++) {
281 const QModelIndex& idx = uam->index(i,0);
282 GSimpleAction* sa = actionHash[(int)qvariant_cast<UserActionModel::Action>(idx.data(UserActionModel::Role::ACTION))];
283 if (sa) {
284 /* enable/disable GAction based on UserActionModel */
285 g_simple_action_set_enabled(sa, idx.flags() & Qt::ItemIsEnabled);
286 /* set the state of the action if its stateful */
287 if (g_action_get_state_type(G_ACTION(sa)) != NULL)
288 g_simple_action_set_state(sa, g_variant_new_boolean(idx.data(Qt::CheckStateRole) == Qt::Checked));
289 }
290 }
291 });
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400292
Stepan Salenikovich76c33e62015-05-22 12:24:07 -0400293 /* send call notifications */
294 ring_notify_init();
295 QObject::connect(CallModel::instance(), &CallModel::incomingCall,
Stepan Salenikovich67112d12015-06-16 16:57:06 -0400296 [] (Call *call) { ring_notify_incoming_call(call);}
Stepan Salenikovich76c33e62015-05-22 12:24:07 -0400297 );
298
Stepan Salenikovich67112d12015-06-16 16:57:06 -0400299 /* chat notifications for incoming messages on all calls which are not the
300 * currently selected call */
301 ring_notify_monitor_chat_notifications(client);
302
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400303#if GLIB_CHECK_VERSION(2,40,0)
304 G_APPLICATION_CLASS(ring_client_parent_class)->startup(app);
305#else
306 /* don't need to chain up to the parent callback as this function will
307 * be called manually by the command_line callback in this case */
308#endif
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400309}
310
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400311#if !GLIB_CHECK_VERSION(2,40,0)
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400312static int
313ring_client_command_line(GApplication *app, GApplicationCommandLine *cmdline)
314{
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400315 gint argc;
316 gchar **argv = g_application_command_line_get_arguments(cmdline, &argc);
317 GOptionContext *context = ring_client_options_get_context();
318 GError *error = NULL;
319 if (g_option_context_parse(context, &argc, &argv, &error) == FALSE) {
320 g_print(_("%s\nRun '%s --help' to see a full list of available command line options.\n"),
321 error->message, argv[0]);
Stepan Salenikovich8a287fc2015-05-01 16:53:20 -0400322 g_clear_error(&error);
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400323 g_option_context_free(context);
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400324 g_strfreev(argv);
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400325 return 1;
326 }
327 g_option_context_free(context);
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400328 g_strfreev(argv);
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400329
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400330 if (!g_application_get_is_remote(app)) {
331 /* if this is the primary instance, we must peform the startup */
332 ring_client_startup(app);
333 }
334
335 g_application_activate(app);
336
337 return 0;
338}
339#endif
340
341static void
342ring_client_activate(GApplication *app)
343{
344 RingClient *client = RING_CLIENT(app);
345 RingClientPrivate *priv = RING_CLIENT_GET_PRIVATE(client);
346
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400347 if (priv->win == NULL) {
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400348 priv->win = ring_main_window_new(GTK_APPLICATION(app));
349 }
350
351 gtk_window_present(GTK_WINDOW(priv->win));
Stepan Salenikovich69771842015-02-24 18:11:45 -0500352}
353
354static void
Stepan Salenikovichd81ef292015-02-17 18:47:37 -0500355ring_client_shutdown(GApplication *app)
356{
357 RingClient *self = RING_CLIENT(app);
358 RingClientPrivate *priv = RING_CLIENT_GET_PRIVATE(self);
359
Stepan Salenikovich2d63d5e2015-03-22 23:23:54 -0400360 g_debug("quitting");
361
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400362 /* cancel any pending cancellable operations */
363 g_cancellable_cancel(priv->cancellable);
364 g_object_unref(priv->cancellable);
365
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400366 QObject::disconnect(priv->uam_updated);
367
Stepan Salenikovichd81ef292015-02-17 18:47:37 -0500368 /* free the QCoreApplication, which will destroy all libRingClient models
369 * and thus send the Unregister signal over dbus to dring */
370 delete priv->qtapp;
371
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400372 /* free the copied cmd line args */
373 g_strfreev(priv->argv);
374
Stepan Salenikovichfb7f2952015-05-25 16:44:19 -0400375 g_clear_object(&priv->settings);
376
Stepan Salenikovich76c33e62015-05-22 12:24:07 -0400377 ring_notify_uninit();
378
Stepan Salenikovichd81ef292015-02-17 18:47:37 -0500379 /* Chain up to the parent class */
380 G_APPLICATION_CLASS(ring_client_parent_class)->shutdown(app);
381}
382
383static void
384ring_client_init(RingClient *self)
385{
386 RingClientPrivate *priv = RING_CLIENT_GET_PRIVATE(self);
387
Stepan Salenikovichd81ef292015-02-17 18:47:37 -0500388 priv->win = NULL;
389 priv->qtapp = NULL;
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400390 priv->cancellable = g_cancellable_new();
Stepan Salenikovichfb7f2952015-05-25 16:44:19 -0400391 priv->settings = g_settings_new_full(get_ring_schema(), NULL, NULL);
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400392
393#if GLIB_CHECK_VERSION(2,40,0)
394 /* add custom cmd line options */
395 ring_client_add_options(G_APPLICATION(self));
396#endif
Stepan Salenikovichd81ef292015-02-17 18:47:37 -0500397}
398
399static void
400ring_client_class_init(RingClientClass *klass)
401{
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400402#if GLIB_CHECK_VERSION(2,40,0)
403 G_APPLICATION_CLASS(klass)->startup = ring_client_startup;
404#else
Stepan Salenikovichd81ef292015-02-17 18:47:37 -0500405 G_APPLICATION_CLASS(klass)->command_line = ring_client_command_line;
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400406#endif
407 G_APPLICATION_CLASS(klass)->activate = ring_client_activate;
Stepan Salenikovichd81ef292015-02-17 18:47:37 -0500408 G_APPLICATION_CLASS(klass)->shutdown = ring_client_shutdown;
409}
410
411RingClient *
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400412ring_client_new(int argc, char *argv[])
Stepan Salenikovichd81ef292015-02-17 18:47:37 -0500413{
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400414 /* because the g_application_add_main_option_entries was only added in
415 * glib 2.40, for lower versions we must handle the command line options
416 * ourselves
417 */
418 RingClient *client = (RingClient *)g_object_new(ring_client_get_type(),
Stepan Salenikovich76350582015-05-25 14:56:32 -0400419 "application-id", RING_CLIENT_APP_ID,
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400420#if GLIB_CHECK_VERSION(2,40,0)
421 NULL);
422#else
423 "flags", G_APPLICATION_HANDLES_COMMAND_LINE,
424 NULL);
425#endif
426
427 /* copy the cmd line args before they get processed by the GApplication*/
428 RingClientPrivate *priv = RING_CLIENT_GET_PRIVATE(client);
429 priv->argc = argc;
430 priv->argv = g_strdupv((gchar **)argv);
431
432 return client;
Stepan Salenikovichd81ef292015-02-17 18:47:37 -0500433}
Stepan Salenikovich67112d12015-06-16 16:57:06 -0400434
435GtkWindow *
436ring_client_get_main_windw(RingClient *client)
437{
438 g_return_val_if_fail(IS_RING_CLIENT(client), NULL);
439 RingClientPrivate *priv = RING_CLIENT_GET_PRIVATE(client);
440
441 return (GtkWindow *)priv->win;
442}