blob: c72cbbd5dec165995c250a1bced1bc2de29e32ee [file] [log] [blame]
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -04001/*
Guillaume Roguez2a6150d2017-07-19 18:24:47 -04002 * Copyright (C) 2015-2017 Savoir-faire Linux Inc.
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -04003 * 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 Salenikovichf903d1b2015-03-25 14:51:45 -040018 */
19
Stepan Salenikovich0bd53492015-05-11 14:28:52 -040020#include "mediasettingsview.h"
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -040021
22#include <gtk/gtk.h>
23#include "models/gtkqtreemodel.h"
24#include "video/video_widget.h"
25#include <video/previewmanager.h>
26#include <video/configurationproxy.h>
27#include <QtCore/QItemSelectionModel>
Stepan Salenikovich5d3506e2015-03-30 11:01:29 -040028#include <audio/settings.h>
29#include <audio/managermodel.h>
30#include <audio/alsapluginmodel.h>
31#include <audio/outputdevicemodel.h>
32#include <audio/inputdevicemodel.h>
33#include <audio/ringtonedevicemodel.h>
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -040034
Stepan Salenikovich0bd53492015-05-11 14:28:52 -040035struct _MediaSettingsView
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -040036{
Stepan Salenikovichab0f5be2016-02-05 15:16:35 -050037 GtkScrolledWindow parent;
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -040038};
39
Stepan Salenikovich0bd53492015-05-11 14:28:52 -040040struct _MediaSettingsViewClass
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -040041{
Stepan Salenikovichab0f5be2016-02-05 15:16:35 -050042 GtkScrolledWindowClass parent_class;
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -040043};
44
Stepan Salenikovich0bd53492015-05-11 14:28:52 -040045typedef struct _MediaSettingsViewPrivate MediaSettingsViewPrivate;
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -040046
Stepan Salenikovich0bd53492015-05-11 14:28:52 -040047struct _MediaSettingsViewPrivate
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -040048{
Stepan Salenikovich1118d7a2016-02-05 15:52:55 -050049 GtkWidget *vbox_main;
50
Stepan Salenikovich5d3506e2015-03-30 11:01:29 -040051 /* audio settings */
52 GtkWidget *combobox_manager;
53 GtkWidget *combobox_ringtone;
54 GtkWidget *combobox_output;
55 GtkWidget *combobox_input;
56
57 QMetaObject::Connection manager_selection;
58 QMetaObject::Connection ringtone_selection;
59 QMetaObject::Connection output_selection;
60 QMetaObject::Connection input_selection;
61
62 /* camera settings */
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -040063 GtkWidget *combobox_device;
64 GtkWidget *combobox_channel;
65 GtkWidget *combobox_resolution;
66 GtkWidget *combobox_framerate;
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -040067 GtkWidget *video_widget;
68
Stepan Salenikovich41118912015-05-01 11:25:46 -040069 /* this is used to keep track of the state of the preview when the settings
70 * are opened; if a call is in progress, then the preview should already be
71 * started and we don't want to stop it when the settings are closed, in this
72 * case */
73 gboolean video_started_by_settings;
74
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -040075 QMetaObject::Connection local_renderer_connection;
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -040076 QMetaObject::Connection device_selection;
77 QMetaObject::Connection channel_selection;
78 QMetaObject::Connection resolution_selection;
79 QMetaObject::Connection rate_selection;
philippegorleye198ac62017-06-14 13:41:53 -040080
81 /* hardware accel settings */
82 GtkWidget *checkbutton_hardware_decoding;
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -040083};
84
Stepan Salenikovichab0f5be2016-02-05 15:16:35 -050085G_DEFINE_TYPE_WITH_PRIVATE(MediaSettingsView, media_settings_view, GTK_TYPE_SCROLLED_WINDOW);
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -040086
Stepan Salenikovich0bd53492015-05-11 14:28:52 -040087#define MEDIA_SETTINGS_VIEW_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), MEDIA_SETTINGS_VIEW_TYPE, MediaSettingsViewPrivate))
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -040088
89static void
Stepan Salenikovich0bd53492015-05-11 14:28:52 -040090media_settings_view_dispose(GObject *object)
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -040091{
Stepan Salenikovich0bd53492015-05-11 14:28:52 -040092 MediaSettingsView *view = MEDIA_SETTINGS_VIEW(object);
93 MediaSettingsViewPrivate *priv = MEDIA_SETTINGS_VIEW_GET_PRIVATE(view);
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -040094
Stepan Salenikovich5d3506e2015-03-30 11:01:29 -040095 /* make sure to stop the preview if this view is getting destroyed */
96 if (priv->video_started_by_settings) {
Guillaume Roguez5d1514b2015-10-22 15:55:31 -040097 Video::PreviewManager::instance().stopPreview();
Stepan Salenikovich5d3506e2015-03-30 11:01:29 -040098 priv->video_started_by_settings = FALSE;
99 }
100
101 QObject::disconnect(priv->manager_selection);
102 QObject::disconnect(priv->ringtone_selection);
103 QObject::disconnect(priv->output_selection);
104 QObject::disconnect(priv->input_selection);
105
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -0400106 QObject::disconnect(priv->local_renderer_connection);
107 QObject::disconnect(priv->device_selection);
108 QObject::disconnect(priv->channel_selection);
109 QObject::disconnect(priv->resolution_selection);
110 QObject::disconnect(priv->rate_selection);
111
Stepan Salenikovich0bd53492015-05-11 14:28:52 -0400112 G_OBJECT_CLASS(media_settings_view_parent_class)->dispose(object);
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -0400113}
114
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -0400115static QModelIndex
116get_index_from_combobox(GtkComboBox *box)
117{
118 GtkTreeIter iter;
119 GtkTreeModel *model = gtk_combo_box_get_model(box);
120 if (gtk_combo_box_get_active_iter(box, &iter)) {
121 return gtk_q_tree_model_get_source_idx(GTK_Q_TREE_MODEL(model), &iter);
122 } else {
123 return QModelIndex();
124 }
125}
126
127static void
128update_selection(GtkComboBox *box, QItemSelectionModel *selection_model)
129{
130 QModelIndex idx = get_index_from_combobox(box);
131 if (idx.isValid())
132 selection_model->setCurrentIndex(idx, QItemSelectionModel::ClearAndSelect);
133}
134
135static QMetaObject::Connection
136connect_combo_box_qmodel(GtkComboBox *box, QAbstractItemModel *qmodel, QItemSelectionModel *selection_model)
137{
138 QMetaObject::Connection connection;
139 GtkCellRenderer *renderer;
140 GtkQTreeModel *model = gtk_q_tree_model_new(qmodel,
141 1,
aviau9bbb19b2016-05-16 15:53:44 -0400142 0, Qt::DisplayRole, G_TYPE_STRING);
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -0400143
144 gtk_combo_box_set_model(box, GTK_TREE_MODEL(model));
145 renderer = gtk_cell_renderer_text_new();
146 gtk_cell_layout_pack_start(GTK_CELL_LAYOUT(box), renderer, FALSE);
147 gtk_cell_layout_set_attributes(GTK_CELL_LAYOUT(box), renderer,
148 "text", 0, NULL);
Stepan Salenikovichab0f5be2016-02-05 15:16:35 -0500149 g_object_set(G_OBJECT(renderer), "ellipsize", PANGO_ELLIPSIZE_END, NULL);
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -0400150
151 /* connect signals to and from the selection model */
152 connection = QObject::connect(
153 selection_model,
154 &QItemSelectionModel::currentChanged,
155 [=](const QModelIndex & current, G_GNUC_UNUSED const QModelIndex & previous) {
156 /* select the current */
157 if (current.isValid()) {
158 GtkTreeIter new_iter;
159 GtkTreeModel *model = gtk_combo_box_get_model(box);
Stepan Salenikovich5d3506e2015-03-30 11:01:29 -0400160 g_return_if_fail(model);
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -0400161 if (gtk_q_tree_model_source_index_to_iter(GTK_Q_TREE_MODEL(model), current, &new_iter)) {
162 gtk_combo_box_set_active_iter(box, &new_iter);
163 } else {
164 g_warning("SelectionModel changed to invalid QModelIndex?");
165 }
166 }
167 }
168 );
169 g_signal_connect(box,
170 "changed",
171 G_CALLBACK(update_selection),
172 selection_model);
173
174 /* sync the initial selection */
175 QModelIndex idx = selection_model->currentIndex();
176 if (idx.isValid()) {
177 GtkTreeIter iter;
178 if (gtk_q_tree_model_source_index_to_iter(model, idx, &iter))
179 gtk_combo_box_set_active_iter(box, &iter);
180 }
181
182 return connection;
183}
184
185static void
philippegorleye198ac62017-06-14 13:41:53 -0400186hardware_decoding_toggled(GtkToggleButton *toggle_button, MediaSettingsView *self)
187{
philippegorleye198ac62017-06-14 13:41:53 -0400188 gboolean hardware_decoding = gtk_toggle_button_get_active(toggle_button);
189 Video::ConfigurationProxy::setDecodingAccelerated(hardware_decoding);
190}
191
192static void
Stepan Salenikovich0bd53492015-05-11 14:28:52 -0400193media_settings_view_init(MediaSettingsView *view)
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -0400194{
195 gtk_widget_init_template(GTK_WIDGET(view));
196
Stepan Salenikovich0bd53492015-05-11 14:28:52 -0400197 MediaSettingsViewPrivate *priv = MEDIA_SETTINGS_VIEW_GET_PRIVATE(view);
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -0400198
Stepan Salenikovich13b7fa12016-03-04 14:45:17 -0500199 /* video settings */
200 /* TODO: this is a workaround for a possible LRC issue
201 * make sure all the models are instantiated before making a selection
202 */
203 Video::ConfigurationProxy::rateModel();
204 Video::ConfigurationProxy::resolutionModel();
205 Video::ConfigurationProxy::channelModel();
206 Video::ConfigurationProxy::deviceModel();
207
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -0400208 priv->device_selection = connect_combo_box_qmodel(GTK_COMBO_BOX(priv->combobox_device),
Guillaume Roguez5d1514b2015-10-22 15:55:31 -0400209 &Video::ConfigurationProxy::deviceModel(),
210 &Video::ConfigurationProxy::deviceSelectionModel());
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -0400211 priv->channel_selection = connect_combo_box_qmodel(GTK_COMBO_BOX(priv->combobox_channel),
Guillaume Roguez5d1514b2015-10-22 15:55:31 -0400212 &Video::ConfigurationProxy::channelModel(),
213 &Video::ConfigurationProxy::channelSelectionModel());
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -0400214 priv->resolution_selection = connect_combo_box_qmodel(GTK_COMBO_BOX(priv->combobox_resolution),
Guillaume Roguez5d1514b2015-10-22 15:55:31 -0400215 &Video::ConfigurationProxy::resolutionModel(),
216 &Video::ConfigurationProxy::resolutionSelectionModel());
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -0400217 priv->rate_selection = connect_combo_box_qmodel(GTK_COMBO_BOX(priv->combobox_framerate),
Guillaume Roguez5d1514b2015-10-22 15:55:31 -0400218 &Video::ConfigurationProxy::rateModel(),
219 &Video::ConfigurationProxy::rateSelectionModel());
Stepan Salenikovich5d3506e2015-03-30 11:01:29 -0400220
221 /* audio settings */
Stepan Salenikovich13b7fa12016-03-04 14:45:17 -0500222 /* TODO: this is a workaround for a possible LRC issue
223 * make sure all the models are instantiated before making a selection
224 */
Guillaume Roguez5d1514b2015-10-22 15:55:31 -0400225 Audio::Settings::instance().alsaPluginModel();
226 Audio::Settings::instance().ringtoneDeviceModel();
227 Audio::Settings::instance().inputDeviceModel();
228 Audio::Settings::instance().outputDeviceModel();
Stepan Salenikovich5d3506e2015-03-30 11:01:29 -0400229 priv->manager_selection = connect_combo_box_qmodel(GTK_COMBO_BOX(priv->combobox_manager),
Guillaume Roguez5d1514b2015-10-22 15:55:31 -0400230 Audio::Settings::instance().managerModel(),
231 Audio::Settings::instance().managerModel()->selectionModel());
Stepan Salenikovich5d3506e2015-03-30 11:01:29 -0400232 priv->ringtone_selection = connect_combo_box_qmodel(GTK_COMBO_BOX(priv->combobox_ringtone),
Guillaume Roguez5d1514b2015-10-22 15:55:31 -0400233 Audio::Settings::instance().ringtoneDeviceModel(),
234 Audio::Settings::instance().ringtoneDeviceModel()->selectionModel());
Stepan Salenikovich5d3506e2015-03-30 11:01:29 -0400235 priv->input_selection = connect_combo_box_qmodel(GTK_COMBO_BOX(priv->combobox_input),
Guillaume Roguez5d1514b2015-10-22 15:55:31 -0400236 Audio::Settings::instance().inputDeviceModel(),
237 Audio::Settings::instance().inputDeviceModel()->selectionModel());
Stepan Salenikovich5d3506e2015-03-30 11:01:29 -0400238 priv->output_selection = connect_combo_box_qmodel(GTK_COMBO_BOX(priv->combobox_output),
Guillaume Roguez5d1514b2015-10-22 15:55:31 -0400239 Audio::Settings::instance().outputDeviceModel(),
240 Audio::Settings::instance().outputDeviceModel()->selectionModel());
Stepan Salenikovich5d3506e2015-03-30 11:01:29 -0400241
philippegorleye198ac62017-06-14 13:41:53 -0400242 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(priv->checkbutton_hardware_decoding), Video::ConfigurationProxy::getDecodingAccelerated());
243 g_signal_connect(priv->checkbutton_hardware_decoding, "toggled", G_CALLBACK(hardware_decoding_toggled), view);
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -0400244}
245
246static void
Stepan Salenikovich0bd53492015-05-11 14:28:52 -0400247media_settings_view_class_init(MediaSettingsViewClass *klass)
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -0400248{
Stepan Salenikovich0bd53492015-05-11 14:28:52 -0400249 G_OBJECT_CLASS(klass)->dispose = media_settings_view_dispose;
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -0400250
251 gtk_widget_class_set_template_from_resource(GTK_WIDGET_CLASS (klass),
Stepan Salenikovich0bd53492015-05-11 14:28:52 -0400252 "/cx/ring/RingGnome/mediasettingsview.ui");
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -0400253
Stepan Salenikovich1118d7a2016-02-05 15:52:55 -0500254 gtk_widget_class_bind_template_child_private(GTK_WIDGET_CLASS (klass), MediaSettingsView, vbox_main);
Stepan Salenikovich0bd53492015-05-11 14:28:52 -0400255 gtk_widget_class_bind_template_child_private(GTK_WIDGET_CLASS (klass), MediaSettingsView, combobox_manager);
256 gtk_widget_class_bind_template_child_private(GTK_WIDGET_CLASS (klass), MediaSettingsView, combobox_ringtone);
257 gtk_widget_class_bind_template_child_private(GTK_WIDGET_CLASS (klass), MediaSettingsView, combobox_output);
258 gtk_widget_class_bind_template_child_private(GTK_WIDGET_CLASS (klass), MediaSettingsView, combobox_input);
259 gtk_widget_class_bind_template_child_private(GTK_WIDGET_CLASS (klass), MediaSettingsView, combobox_device);
260 gtk_widget_class_bind_template_child_private(GTK_WIDGET_CLASS (klass), MediaSettingsView, combobox_channel);
261 gtk_widget_class_bind_template_child_private(GTK_WIDGET_CLASS (klass), MediaSettingsView, combobox_resolution);
262 gtk_widget_class_bind_template_child_private(GTK_WIDGET_CLASS (klass), MediaSettingsView, combobox_framerate);
philippegorleye198ac62017-06-14 13:41:53 -0400263 gtk_widget_class_bind_template_child_private(GTK_WIDGET_CLASS (klass), MediaSettingsView, checkbutton_hardware_decoding);
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -0400264}
265
266GtkWidget *
Stepan Salenikovich0bd53492015-05-11 14:28:52 -0400267media_settings_view_new()
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -0400268{
Stepan Salenikovich0bd53492015-05-11 14:28:52 -0400269 gpointer view = g_object_new(MEDIA_SETTINGS_VIEW_TYPE, NULL);
Stepan Salenikovichf903d1b2015-03-25 14:51:45 -0400270
271 return (GtkWidget *)view;
272}
Stepan Salenikovich41118912015-05-01 11:25:46 -0400273
274void
Stepan Salenikovich0bd53492015-05-11 14:28:52 -0400275media_settings_view_show_preview(MediaSettingsView *self, gboolean show_preview)
Stepan Salenikovich41118912015-05-01 11:25:46 -0400276{
Stepan Salenikovich0bd53492015-05-11 14:28:52 -0400277 g_return_if_fail(IS_MEDIA_SETTINGS_VIEW(self));
278 MediaSettingsViewPrivate *priv = MEDIA_SETTINGS_VIEW_GET_PRIVATE(self);
Stepan Salenikovich41118912015-05-01 11:25:46 -0400279
280 /* if TRUE, create a VideoWidget, then check if the preview has already been
281 * started (because a call was in progress); if not, then start it.
282 * if FALSE, check if the preview was started by this function, if so
283 * then stop the preview; then destroy the VideoWidget to make sure we don't
284 * get useless frame updates */
285
286 if (show_preview) {
287 /* put video widget in */
288 priv->video_widget = video_widget_new();
289 gtk_widget_show_all(priv->video_widget);
Stepan Salenikovich1118d7a2016-02-05 15:52:55 -0500290 gtk_box_pack_start(GTK_BOX(priv->vbox_main), priv->video_widget, TRUE, TRUE, 0);
291 // set minimum size for video so it doesn't shrink too much
Adrien BĂ©raudcf3e08c2016-03-03 22:55:21 -0500292 gtk_widget_set_size_request(priv->video_widget, 400, -1);
Stepan Salenikovich41118912015-05-01 11:25:46 -0400293
Guillaume Roguez5d1514b2015-10-22 15:55:31 -0400294 if (Video::PreviewManager::instance().isPreviewing()) {
Stepan Salenikovich41118912015-05-01 11:25:46 -0400295 priv->video_started_by_settings = FALSE;
296
297 /* local renderer, but set as "remote" so that it takes up the whole screen */
298 video_widget_push_new_renderer(VIDEO_WIDGET(priv->video_widget),
Guillaume Roguez5d1514b2015-10-22 15:55:31 -0400299 Video::PreviewManager::instance().previewRenderer(),
Stepan Salenikovich41118912015-05-01 11:25:46 -0400300 VIDEO_RENDERER_REMOTE);
301 } else {
302 priv->video_started_by_settings = TRUE;
303 priv->local_renderer_connection = QObject::connect(
Guillaume Roguez5d1514b2015-10-22 15:55:31 -0400304 &Video::PreviewManager::instance(),
Stepan Salenikovich41118912015-05-01 11:25:46 -0400305 &Video::PreviewManager::previewStarted,
306 [=](Video::Renderer *renderer) {
307 video_widget_push_new_renderer(VIDEO_WIDGET(priv->video_widget),
308 renderer,
309 VIDEO_RENDERER_REMOTE);
310 }
311 );
Guillaume Roguez5d1514b2015-10-22 15:55:31 -0400312 Video::PreviewManager::instance().startPreview();
Stepan Salenikovich41118912015-05-01 11:25:46 -0400313 }
314 } else {
315 if (priv->video_started_by_settings) {
Guillaume Roguez5d1514b2015-10-22 15:55:31 -0400316 Video::PreviewManager::instance().stopPreview();
Stepan Salenikovich41118912015-05-01 11:25:46 -0400317 QObject::disconnect(priv->local_renderer_connection);
318 priv->video_started_by_settings = FALSE;
319 }
320
321 if (priv->video_widget && IS_VIDEO_WIDGET(priv->video_widget))
Stepan Salenikovich1118d7a2016-02-05 15:52:55 -0500322 gtk_container_remove(GTK_CONTAINER(priv->vbox_main), priv->video_widget);
Stepan Salenikovich41118912015-05-01 11:25:46 -0400323 priv->video_widget = NULL;
324 }
325
326}