blob: 5ca58e9884e5d58222129da3b38483969c099140 [file] [log] [blame]
Stepan Salenikovichd81ef292015-02-17 18:47:37 -05001/*
Stepan Salenikovichbe87d2c2016-01-25 14:14:34 -05002 * Copyright (C) 2015-2016 Savoir-faire Linux Inc.
Stepan Salenikovichd81ef292015-02-17 18:47:37 -05003 * 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.
Stepan Salenikovichd81ef292015-02-17 18:47:37 -050018 */
19
20#include "ring_client.h"
21
22#include <gtk/gtk.h>
23#include <glib/gi18n.h>
Stepan Salenikovich67c5dd32015-09-14 12:27:36 -040024#include <QtCore/QTranslator>
Stepan Salenikovichd2dbcee2015-02-27 16:52:28 -050025#include <QtCore/QCoreApplication>
26#include <QtCore/QString>
27#include <QtCore/QByteArray>
Stepan Salenikovichd81ef292015-02-17 18:47:37 -050028#include <callmodel.h>
Stepan Salenikovichd2dbcee2015-02-27 16:52:28 -050029#include <QtCore/QItemSelectionModel>
Stepan Salenikovichc64523b2015-02-27 16:31:00 -050030#include <useractionmodel.h>
Stepan Salenikovich36c025c2015-03-03 19:06:44 -050031#include <clutter-gtk/clutter-gtk.h>
Stepan Salenikovichdd84cf92015-03-19 21:38:19 -040032#include <categorizedhistorymodel.h>
Stepan Salenikovich6f687072015-03-26 10:43:37 -040033#include <personmodel.h>
34#include <fallbackpersoncollection.h>
35#include <QtCore/QStandardPaths>
Stepan Salenikovich1e131a42015-05-27 14:12:21 -040036#include <localhistorycollection.h>
Stepan Salenikovich67112d12015-06-16 16:57:06 -040037#include <media/text.h>
Stepan Salenikovichf2d76c52015-07-17 17:54:56 -040038#include <numbercategorymodel.h>
Stepan Salenikovichbbd6c132015-08-20 15:21:48 -040039#include <globalinstances.h>
40#include <memory>
Stepan Salenikovichd81ef292015-02-17 18:47:37 -050041
42#include "ring_client_options.h"
Stepan Salenikovich434b88f2015-02-19 17:49:08 -050043#include "ringmainwindow.h"
Stepan Salenikovich24dcd5c2015-03-26 17:40:34 -040044#include "dialogs.h"
Stepan Salenikovich6f687072015-03-26 10:43:37 -040045#include "backends/edscontactbackend.h"
Stepan Salenikovichbbd6c132015-08-20 15:21:48 -040046#include "native/pixbufmanipulator.h"
Stepan Salenikovichbe6550c2015-08-21 16:16:03 -040047#include "native/dbuserrorhandler.h"
Stepan Salenikovich76c33e62015-05-22 12:24:07 -040048#include "ringnotify.h"
Stepan Salenikovich76350582015-05-25 14:56:32 -040049#include "config.h"
Stepan Salenikovichfb7f2952015-05-25 16:44:19 -040050#include "utils/files.h"
Stepan Salenikovich4f9bb982015-06-23 14:26:30 -040051#include "revision.h"
Stepan Salenikovich75a39172015-07-10 13:21:08 -040052#include "utils/accounts.h"
Nicolas Jagerb413b302016-05-06 11:41:32 -040053/*lrc*/
54#include "profilemodel.h"
55#include "profile.h"
56#include "peerprofilecollection.h"
57#include "localprofilecollection.h"
Stepan Salenikovich434b88f2015-02-19 17:49:08 -050058
59struct _RingClientClass
60{
Stepan Salenikovichfb7f2952015-05-25 16:44:19 -040061 GtkApplicationClass parent_class;
Stepan Salenikovich434b88f2015-02-19 17:49:08 -050062};
63
64struct _RingClient
65{
66 GtkApplication parent;
67};
68
69typedef struct _RingClientPrivate RingClientPrivate;
Stepan Salenikovichd81ef292015-02-17 18:47:37 -050070
71struct _RingClientPrivate {
Stepan Salenikovich0d515e52015-05-19 16:31:05 -040072 /* args */
73 int argc;
74 char **argv;
Stepan Salenikovichfb7f2952015-05-25 16:44:19 -040075
76 GSettings *settings;
77
Stepan Salenikovichd81ef292015-02-17 18:47:37 -050078 /* main window */
79 GtkWidget *win;
80 /* for libRingclient */
81 QCoreApplication *qtapp;
Stepan Salenikovich068fb692015-03-23 14:58:32 -040082 /* UAM */
83 QMetaObject::Connection uam_updated;
Stepan Salenikovich6f687072015-03-26 10:43:37 -040084
Stepan Salenikovich6c39b102015-09-15 14:24:45 -040085 std::unique_ptr<QTranslator> translator;
86
Stepan Salenikovich6f687072015-03-26 10:43:37 -040087 GCancellable *cancellable;
Stepan Salenikovichbb9c24e2015-09-15 09:55:02 -040088
89 gboolean restore_window_state;
Stepan Salenikovichd81ef292015-02-17 18:47:37 -050090};
91
Stepan Salenikovich0d515e52015-05-19 16:31:05 -040092/* this union is used to pass ints as pointers and vice versa for GAction parameters*/
93typedef union _int_ptr_t
94{
95 int value;
96 gint64 value64;
97 gpointer ptr;
98} int_ptr_t;
99
Stepan Salenikovich434b88f2015-02-19 17:49:08 -0500100G_DEFINE_TYPE_WITH_PRIVATE(RingClient, ring_client, GTK_TYPE_APPLICATION);
Stepan Salenikovichd81ef292015-02-17 18:47:37 -0500101
102#define RING_CLIENT_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), RING_CLIENT_TYPE, RingClientPrivate))
103
104static void
105init_exception_dialog(const char* msg)
106{
107 g_warning("%s", msg);
108 GtkWidget *dialog = gtk_message_dialog_new(NULL,
109 (GtkDialogFlags)(GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT),
110 GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE,
111 _("Unable to initialize.\nMake sure the Ring daemon (dring) is running.\nError: %s"),
112 msg);
113
114 gtk_window_set_title(GTK_WINDOW(dialog), _("Ring Error"));
115 gtk_dialog_run(GTK_DIALOG(dialog));
116 gtk_widget_destroy(dialog);
117}
118
Stepan Salenikovich2d63d5e2015-03-22 23:23:54 -0400119static void
120ring_accelerators(RingClient *client)
121{
Stepan Salenikovich39ee49a2015-03-24 12:44:55 -0400122#if GTK_CHECK_VERSION(3,12,0)
Stepan Salenikovich2d63d5e2015-03-22 23:23:54 -0400123 const gchar *quit_accels[2] = { "<Ctrl>Q", NULL };
124 gtk_application_set_accels_for_action(GTK_APPLICATION(client), "app.quit", quit_accels);
125#else
Stepan Salenikovich870d7392015-09-08 11:18:46 -0400126 gtk_application_add_accelerator(GTK_APPLICATION(client), "<Control>Q", "app.quit", NULL);
Stepan Salenikovich2d63d5e2015-03-22 23:23:54 -0400127#endif
128}
129
130static void
131action_quit(G_GNUC_UNUSED GSimpleAction *simple,
132 G_GNUC_UNUSED GVariant *parameter,
133 gpointer user_data)
134{
135 g_return_if_fail(G_IS_APPLICATION(user_data));
136
137#if GLIB_CHECK_VERSION(2,32,0)
138 g_application_quit(G_APPLICATION(user_data));
139#else
140 RingClientPrivate *priv = RING_CLIENT_GET_PRIVATE(user_data);
141 gtk_widget_destroy(priv->win);
142#endif
143}
144
Stepan Salenikovich24dcd5c2015-03-26 17:40:34 -0400145static void
146action_about(G_GNUC_UNUSED GSimpleAction *simple,
147 G_GNUC_UNUSED GVariant *parameter,
148 gpointer user_data)
149{
150 g_return_if_fail(G_IS_APPLICATION(user_data));
151 RingClientPrivate *priv = RING_CLIENT_GET_PRIVATE(user_data);
152
153 ring_about_dialog(priv->win);
154}
155
Stepan Salenikovich69771842015-02-24 18:11:45 -0500156static const GActionEntry ring_actions[] =
157{
Stepan Salenikovich24dcd5c2015-03-26 17:40:34 -0400158 { "accept", NULL, NULL, NULL, NULL, {0} },
159 { "hangup", NULL, NULL, NULL, NULL, {0} },
160 { "hold", NULL, NULL, "false", NULL, {0} },
161 { "quit", action_quit, NULL, NULL, NULL, {0} },
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400162 { "about", action_about, NULL, NULL, NULL, {0} },
Stepan Salenikovich943bd052015-09-04 17:42:08 -0400163 { "mute_audio", NULL, NULL, "false", NULL, {0} },
164 { "mute_video", NULL, NULL, "false", NULL, {0} },
165 { "record", NULL, NULL, "false", NULL, {0} },
Stepan Salenikovichc64523b2015-02-27 16:31:00 -0500166 /* TODO implement the other actions */
Stepan Salenikovichc64523b2015-02-27 16:31:00 -0500167 // { "transfer", NULL, NULL, "flase", NULL, {0} },
Stepan Salenikovich69771842015-02-24 18:11:45 -0500168};
169
Stepan Salenikovichc64523b2015-02-27 16:31:00 -0500170static void
171activate_action(GSimpleAction *action, G_GNUC_UNUSED GVariant *parameter, gpointer user_data)
172{
173 g_debug("activating action: %s", g_action_get_name(G_ACTION(action)));
174
175 int_ptr_t key;
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400176
Stepan Salenikovichc64523b2015-02-27 16:31:00 -0500177 key.ptr = user_data;
178 UserActionModel::Action a = static_cast<UserActionModel::Action>(key.value);
Guillaume Roguez5d1514b2015-10-22 15:55:31 -0400179 UserActionModel* uam = CallModel::instance().userActionModel();
Stepan Salenikovichc64523b2015-02-27 16:31:00 -0500180
181 uam << a;
182}
Stepan Salenikovichc64523b2015-02-27 16:31:00 -0500183
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400184static void
Stepan Salenikovichfb7f2952015-05-25 16:44:19 -0400185autostart_toggled(GSettings *settings, G_GNUC_UNUSED gchar *key, G_GNUC_UNUSED gpointer user_data)
186{
187 autostart_symlink(g_settings_get_boolean(settings, "start-on-login"));
188}
189
Stepan Salenikovichbb9c24e2015-09-15 09:55:02 -0400190static void
191ring_window_show(RingClient *client)
192{
193 g_return_if_fail(IS_RING_CLIENT(client));
194 RingClientPrivate *priv = RING_CLIENT_GET_PRIVATE(client);
195
196 g_return_if_fail(priv->win);
197
198 g_debug("showing main window");
199 gtk_window_present(GTK_WINDOW(priv->win));
200 g_settings_set_boolean(priv->settings, "window-state-hidden", FALSE);
201}
202
203static void
204ring_window_hide(RingClient *client)
205{
206 g_return_if_fail(IS_RING_CLIENT(client));
207 RingClientPrivate *priv = RING_CLIENT_GET_PRIVATE(client);
208
209 g_return_if_fail(priv->win);
210
211 g_debug("hiding main window");
212 gtk_widget_hide(priv->win);
213 g_settings_set_boolean(priv->settings, "window-state-hidden", TRUE);
214}
215
Stepan Salenikovichbc6c4be2015-07-31 16:07:54 -0400216static gboolean
217on_close_window(GtkWidget *window, G_GNUC_UNUSED GdkEvent *event, RingClient *client)
218{
219 g_return_val_if_fail(GTK_IS_WINDOW(window) && IS_RING_CLIENT(client), FALSE);
Stepan Salenikovichbc6c4be2015-07-31 16:07:54 -0400220 RingClientPrivate *priv = RING_CLIENT_GET_PRIVATE(client);
221
222 if (g_settings_get_boolean(priv->settings, "hide-on-close")) {
223 /* we want to simply hide the window and keep the client running */
Stepan Salenikovichbb9c24e2015-09-15 09:55:02 -0400224 ring_window_hide(client);
Stepan Salenikovichbc6c4be2015-07-31 16:07:54 -0400225 return TRUE; /* do not propogate event */
226 } else {
227 /* we want to quit the application, so just propogate the event */
228 return FALSE;
229 }
230}
231
232static void
233ring_client_activate(GApplication *app)
234{
235 RingClient *client = RING_CLIENT(app);
236 RingClientPrivate *priv = RING_CLIENT_GET_PRIVATE(client);
237
Stepan Salenikovichbb9c24e2015-09-15 09:55:02 -0400238 gboolean show_window = TRUE;
239
Stepan Salenikovichbc6c4be2015-07-31 16:07:54 -0400240 if (priv->win == NULL) {
241 priv->win = ring_main_window_new(GTK_APPLICATION(app));
242
243 /* make sure win is set to NULL when the window is destroyed */
244 g_object_add_weak_pointer(G_OBJECT(priv->win), (gpointer *)&priv->win);
245
246 /* check if the window should be destoryed or not on close */
247 g_signal_connect(priv->win, "delete-event", G_CALLBACK(on_close_window), client);
Stepan Salenikovichbb9c24e2015-09-15 09:55:02 -0400248
249 /* the only case in which we don't want to show the main window is we're launching the
250 * primary instance of the application with the '-r' (--restore-last-window-state) option
251 * and the window was hidden when the application last quit
252 */
253 if ( priv->restore_window_state && g_settings_get_boolean(priv->settings, "window-state-hidden") )
254 show_window = FALSE;
Stepan Salenikovichbc6c4be2015-07-31 16:07:54 -0400255 }
256
Stepan Salenikovichbb9c24e2015-09-15 09:55:02 -0400257 if (show_window)
258 ring_window_show(client);
Stepan Salenikovichbc6c4be2015-07-31 16:07:54 -0400259}
260
Stepan Salenikovichfb7f2952015-05-25 16:44:19 -0400261static void
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400262ring_client_startup(GApplication *app)
Stepan Salenikovich69771842015-02-24 18:11:45 -0500263{
Stepan Salenikovich69771842015-02-24 18:11:45 -0500264 RingClient *client = RING_CLIENT(app);
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400265 RingClientPrivate *priv = RING_CLIENT_GET_PRIVATE(client);
Stepan Salenikovich69771842015-02-24 18:11:45 -0500266
Stepan Salenikovich4f9bb982015-06-23 14:26:30 -0400267 g_message("Ring GNOME client version: %d.%d.%d", VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH);
268 g_message("git ref: %s", RING_CLIENT_REVISION);
269
Stepan Salenikovichfb7f2952015-05-25 16:44:19 -0400270 /* make sure that the system corresponds to the autostart setting */
271 autostart_symlink(g_settings_get_boolean(priv->settings, "start-on-login"));
272 g_signal_connect(priv->settings, "changed::start-on-login", G_CALLBACK(autostart_toggled), NULL);
273
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400274 /* init clutter */
275 int clutter_error;
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400276 if ((clutter_error = gtk_clutter_init(&priv->argc, &priv->argv)) != CLUTTER_INIT_SUCCESS) {
277 g_error("Could not init clutter : %d\n", clutter_error);
278 exit(1); /* the g_error above should normally cause the applicaiton to exit */
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400279 }
280
281 /* init libRingClient and make sure its connected to the dbus */
282 try {
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400283 priv->qtapp = new QCoreApplication(priv->argc, priv->argv);
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400284 /* the call model will try to connect to dring via dbus */
285 CallModel::instance();
286 } catch (const char * msg) {
287 init_exception_dialog(msg);
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400288 g_error("%s", msg);
289 exit(1); /* the g_error above should normally cause the applicaiton to exit */
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400290 } catch(QString& msg) {
291 QByteArray ba = msg.toLocal8Bit();
292 const char *c_str = ba.data();
293 init_exception_dialog(c_str);
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400294 g_error("%s", c_str);
295 exit(1); /* the g_error above should normally cause the applicaiton to exit */
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400296 }
297
Stepan Salenikovich67c5dd32015-09-14 12:27:36 -0400298 /* load translations from LRC */
Stepan Salenikovich6c39b102015-09-15 14:24:45 -0400299 priv->translator.reset(new QTranslator);
300 if (priv->translator->load(QLocale::system(), "lrc", "_", RING_CLIENT_INSTALL "/share/libringclient/translations")) {
301 priv->qtapp->installTranslator(priv->translator.get());
Stepan Salenikovich67c5dd32015-09-14 12:27:36 -0400302 } else {
303 g_debug("could not load LRC translations for %s, %s",
304 QLocale::languageToString(QLocale::system().language()).toUtf8().constData(),
305 QLocale::countryToString(QLocale::system().country()).toUtf8().constData()
306 );
307 }
308
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400309 /* init delegates */
Stepan Salenikovichbbd6c132015-08-20 15:21:48 -0400310 GlobalInstances::setPixmapManipulator(std::unique_ptr<Interfaces::PixbufManipulator>(new Interfaces::PixbufManipulator()));
Stepan Salenikovichbe6550c2015-08-21 16:16:03 -0400311 GlobalInstances::setDBusErrorHandler(std::unique_ptr<Interfaces::DBusErrorHandler>(new Interfaces::DBusErrorHandler()));
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400312
Stepan Salenikovich75a39172015-07-10 13:21:08 -0400313 /* make sure all RING accounts have a display name... this basically makes sure
314 * that all accounts created before the display name patch have a display name
315 * set... a bit of a hack as this should maybe be done in LRC */
316 force_ring_display_name();
317
Stepan Salenikovichf2d76c52015-07-17 17:54:56 -0400318 /* make sure basic number categories exist, in case user has no contacts
319 * from which these would be automatically created
320 */
Guillaume Roguez5d1514b2015-10-22 15:55:31 -0400321 NumberCategoryModel::instance().addCategory("work", QVariant());
322 NumberCategoryModel::instance().addCategory("home", QVariant());
Stepan Salenikovichf2d76c52015-07-17 17:54:56 -0400323
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400324 /* add backends */
Guillaume Roguez5d1514b2015-10-22 15:55:31 -0400325 CategorizedHistoryModel::instance().addCollection<LocalHistoryCollection>(LoadOptions::FORCE_ENABLED);
Nicolas Jagerb413b302016-05-06 11:41:32 -0400326 PersonModel::instance().addCollection<PeerProfileCollection>(LoadOptions::FORCE_ENABLED);
327 ProfileModel::instance().addCollection<LocalProfileCollection>(LoadOptions::FORCE_ENABLED);
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400328
Stepan Salenikovichf2d76c52015-07-17 17:54:56 -0400329 /* fallback backend for vcards */
Guillaume Roguez5d1514b2015-10-22 15:55:31 -0400330 PersonModel::instance().addCollection<FallbackPersonCollection>(LoadOptions::FORCE_ENABLED);
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400331
Stepan Salenikovichf2d76c52015-07-17 17:54:56 -0400332 /* EDS backend(s) */
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400333 load_eds_sources(priv->cancellable);
334
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400335 /* Override theme since we don't have appropriate icons for a dark them (yet) */
336 GtkSettings *gtk_settings = gtk_settings_get_default();
337 g_object_set(G_OBJECT(gtk_settings), "gtk-application-prefer-dark-theme",
338 FALSE, NULL);
339 /* enable button icons */
340 g_object_set(G_OBJECT(gtk_settings), "gtk-button-images",
341 TRUE, NULL);
342
343 /* add GActions */
Stepan Salenikovich69771842015-02-24 18:11:45 -0500344 g_action_map_add_action_entries(
Stepan Salenikovich2d63d5e2015-03-22 23:23:54 -0400345 G_ACTION_MAP(app), ring_actions, G_N_ELEMENTS(ring_actions), app);
346
347 /* add accelerators */
348 ring_accelerators(RING_CLIENT(app));
Stepan Salenikovichc64523b2015-02-27 16:31:00 -0500349
Stepan Salenikovich347b73a2015-03-22 10:39:00 -0400350 /* Bind GActions to the UserActionModel */
Guillaume Roguez5d1514b2015-10-22 15:55:31 -0400351 UserActionModel* uam = CallModel::instance().userActionModel();
Stepan Salenikovich347b73a2015-03-22 10:39:00 -0400352 QHash<int, GSimpleAction*> actionHash;
353 actionHash[ (int)UserActionModel::Action::ACCEPT ] = G_SIMPLE_ACTION(g_action_map_lookup_action(G_ACTION_MAP(app), "accept"));
354 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 -0400355 actionHash[ (int)UserActionModel::Action::MUTE_AUDIO ] = G_SIMPLE_ACTION(g_action_map_lookup_action(G_ACTION_MAP(app), "mute_audio"));
356 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 -0400357 /* TODO: add commented actions when ready */
Stepan Salenikovich347b73a2015-03-22 10:39:00 -0400358 // actionHash[ (int)UserActionModel::Action::SERVER_TRANSFER ] = G_SIMPLE_ACTION(g_action_map_lookup_action(G_ACTION_MAP(app), "transfer"));
Stepan Salenikovich943bd052015-09-04 17:42:08 -0400359 actionHash[ (int)UserActionModel::Action::RECORD ] = G_SIMPLE_ACTION(g_action_map_lookup_action(G_ACTION_MAP(app), "record"));
Stepan Salenikovich347b73a2015-03-22 10:39:00 -0400360 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 -0500361
Stepan Salenikovich347b73a2015-03-22 10:39:00 -0400362 for (QHash<int,GSimpleAction*>::const_iterator i = actionHash.begin(); i != actionHash.end(); ++i) {
363 GSimpleAction* sa = i.value();
364 int_ptr_t user_data;
365 user_data.value = i.key();
366 g_signal_connect(G_OBJECT(sa), "activate", G_CALLBACK(activate_action), user_data.ptr);
367 }
Stepan Salenikovichc64523b2015-02-27 16:31:00 -0500368
Stepan Salenikovich347b73a2015-03-22 10:39:00 -0400369 /* change the state of the GActions based on the UserActionModel */
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400370 priv->uam_updated = QObject::connect(uam,&UserActionModel::dataChanged, [actionHash,uam](const QModelIndex& tl, const QModelIndex& br) {
Stepan Salenikovich347b73a2015-03-22 10:39:00 -0400371 const int first(tl.row()),last(br.row());
372 for(int i = first; i <= last;i++) {
373 const QModelIndex& idx = uam->index(i,0);
374 GSimpleAction* sa = actionHash[(int)qvariant_cast<UserActionModel::Action>(idx.data(UserActionModel::Role::ACTION))];
375 if (sa) {
376 /* enable/disable GAction based on UserActionModel */
377 g_simple_action_set_enabled(sa, idx.flags() & Qt::ItemIsEnabled);
378 /* set the state of the action if its stateful */
379 if (g_action_get_state_type(G_ACTION(sa)) != NULL)
380 g_simple_action_set_state(sa, g_variant_new_boolean(idx.data(Qt::CheckStateRole) == Qt::Checked));
381 }
382 }
383 });
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400384
Stepan Salenikovichbc6c4be2015-07-31 16:07:54 -0400385 /* show window on incoming calls (if the option is set)*/
Guillaume Roguez5d1514b2015-10-22 15:55:31 -0400386 QObject::connect(&CallModel::instance(), &CallModel::incomingCall,
Stepan Salenikovichbc6c4be2015-07-31 16:07:54 -0400387 [app] (G_GNUC_UNUSED Call *call) {
388 RingClient *client = RING_CLIENT(app);
389 RingClientPrivate *priv = RING_CLIENT_GET_PRIVATE(client);
390 if (g_settings_get_boolean(priv->settings, "bring-window-to-front"))
Stepan Salenikovichbb9c24e2015-09-15 09:55:02 -0400391 ring_window_show(client);
Stepan Salenikovichbc6c4be2015-07-31 16:07:54 -0400392 }
393 );
394
Stepan Salenikovich76c33e62015-05-22 12:24:07 -0400395 /* send call notifications */
396 ring_notify_init();
Guillaume Roguez5d1514b2015-10-22 15:55:31 -0400397 QObject::connect(&CallModel::instance(), &CallModel::incomingCall,
Stepan Salenikovich67112d12015-06-16 16:57:06 -0400398 [] (Call *call) { ring_notify_incoming_call(call);}
Stepan Salenikovich76c33e62015-05-22 12:24:07 -0400399 );
400
Stepan Salenikovich67112d12015-06-16 16:57:06 -0400401 /* chat notifications for incoming messages on all calls which are not the
402 * currently selected call */
403 ring_notify_monitor_chat_notifications(client);
404
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400405#if GLIB_CHECK_VERSION(2,40,0)
406 G_APPLICATION_CLASS(ring_client_parent_class)->startup(app);
407#else
408 /* don't need to chain up to the parent callback as this function will
409 * be called manually by the command_line callback in this case */
410#endif
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400411}
412
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400413#if !GLIB_CHECK_VERSION(2,40,0)
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400414static int
415ring_client_command_line(GApplication *app, GApplicationCommandLine *cmdline)
416{
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400417 gint argc;
418 gchar **argv = g_application_command_line_get_arguments(cmdline, &argc);
419 GOptionContext *context = ring_client_options_get_context();
420 GError *error = NULL;
421 if (g_option_context_parse(context, &argc, &argv, &error) == FALSE) {
422 g_print(_("%s\nRun '%s --help' to see a full list of available command line options.\n"),
423 error->message, argv[0]);
Stepan Salenikovich8a287fc2015-05-01 16:53:20 -0400424 g_clear_error(&error);
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400425 g_option_context_free(context);
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400426 g_strfreev(argv);
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400427 return 1;
428 }
429 g_option_context_free(context);
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400430 g_strfreev(argv);
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400431
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400432 if (!g_application_get_is_remote(app)) {
433 /* if this is the primary instance, we must peform the startup */
434 ring_client_startup(app);
435 }
436
437 g_application_activate(app);
438
439 return 0;
440}
441#endif
442
443static void
Stepan Salenikovichd81ef292015-02-17 18:47:37 -0500444ring_client_shutdown(GApplication *app)
445{
446 RingClient *self = RING_CLIENT(app);
447 RingClientPrivate *priv = RING_CLIENT_GET_PRIVATE(self);
448
Stepan Salenikovich2d63d5e2015-03-22 23:23:54 -0400449 g_debug("quitting");
450
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400451 /* cancel any pending cancellable operations */
452 g_cancellable_cancel(priv->cancellable);
453 g_object_unref(priv->cancellable);
454
Stepan Salenikovich068fb692015-03-23 14:58:32 -0400455 QObject::disconnect(priv->uam_updated);
456
Stepan Salenikovichd81ef292015-02-17 18:47:37 -0500457 /* free the QCoreApplication, which will destroy all libRingClient models
458 * and thus send the Unregister signal over dbus to dring */
459 delete priv->qtapp;
460
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400461 /* free the copied cmd line args */
462 g_strfreev(priv->argv);
463
Stepan Salenikovichfb7f2952015-05-25 16:44:19 -0400464 g_clear_object(&priv->settings);
465
Stepan Salenikovich76c33e62015-05-22 12:24:07 -0400466 ring_notify_uninit();
467
Stepan Salenikovichd81ef292015-02-17 18:47:37 -0500468 /* Chain up to the parent class */
469 G_APPLICATION_CLASS(ring_client_parent_class)->shutdown(app);
470}
471
472static void
473ring_client_init(RingClient *self)
474{
475 RingClientPrivate *priv = RING_CLIENT_GET_PRIVATE(self);
476
Stepan Salenikovichd81ef292015-02-17 18:47:37 -0500477 priv->win = NULL;
478 priv->qtapp = NULL;
Stepan Salenikovich6f687072015-03-26 10:43:37 -0400479 priv->cancellable = g_cancellable_new();
Stepan Salenikovichfb7f2952015-05-25 16:44:19 -0400480 priv->settings = g_settings_new_full(get_ring_schema(), NULL, NULL);
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400481
482#if GLIB_CHECK_VERSION(2,40,0)
483 /* add custom cmd line options */
484 ring_client_add_options(G_APPLICATION(self));
485#endif
Stepan Salenikovichd81ef292015-02-17 18:47:37 -0500486}
487
488static void
489ring_client_class_init(RingClientClass *klass)
490{
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400491#if GLIB_CHECK_VERSION(2,40,0)
492 G_APPLICATION_CLASS(klass)->startup = ring_client_startup;
493#else
Stepan Salenikovichd81ef292015-02-17 18:47:37 -0500494 G_APPLICATION_CLASS(klass)->command_line = ring_client_command_line;
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400495#endif
496 G_APPLICATION_CLASS(klass)->activate = ring_client_activate;
Stepan Salenikovichd81ef292015-02-17 18:47:37 -0500497 G_APPLICATION_CLASS(klass)->shutdown = ring_client_shutdown;
498}
499
500RingClient *
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400501ring_client_new(int argc, char *argv[])
Stepan Salenikovichd81ef292015-02-17 18:47:37 -0500502{
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400503 /* because the g_application_add_main_option_entries was only added in
504 * glib 2.40, for lower versions we must handle the command line options
505 * ourselves
506 */
507 RingClient *client = (RingClient *)g_object_new(ring_client_get_type(),
Stepan Salenikovich76350582015-05-25 14:56:32 -0400508 "application-id", RING_CLIENT_APP_ID,
Stepan Salenikovich0d515e52015-05-19 16:31:05 -0400509#if GLIB_CHECK_VERSION(2,40,0)
510 NULL);
511#else
512 "flags", G_APPLICATION_HANDLES_COMMAND_LINE,
513 NULL);
514#endif
515
516 /* copy the cmd line args before they get processed by the GApplication*/
517 RingClientPrivate *priv = RING_CLIENT_GET_PRIVATE(client);
518 priv->argc = argc;
519 priv->argv = g_strdupv((gchar **)argv);
520
521 return client;
Stepan Salenikovichd81ef292015-02-17 18:47:37 -0500522}
Stepan Salenikovich67112d12015-06-16 16:57:06 -0400523
524GtkWindow *
Stepan Salenikovichbe6550c2015-08-21 16:16:03 -0400525ring_client_get_main_window(RingClient *client)
Stepan Salenikovich67112d12015-06-16 16:57:06 -0400526{
527 g_return_val_if_fail(IS_RING_CLIENT(client), NULL);
528 RingClientPrivate *priv = RING_CLIENT_GET_PRIVATE(client);
529
530 return (GtkWindow *)priv->win;
531}
Stepan Salenikovichbb9c24e2015-09-15 09:55:02 -0400532
533void
534ring_client_set_restore_main_window_state(RingClient *client, gboolean restore)
535{
536 g_return_if_fail(IS_RING_CLIENT(client));
537 RingClientPrivate *priv = RING_CLIENT_GET_PRIVATE(client);
538
539 priv->restore_window_state = restore;
540}