gem-graph-client/libide/gui/ide-transfer-button.c

248 lines
7.3 KiB
C

/* ide-transfer-button.c
*
* Copyright 2017-2019 Christian Hergert <chergert@redhat.com>
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
#define G_LOG_DOMAIN "ide-transfer-button"
#include "config.h"
#include <glib/gi18n.h>
#include "ide-gui-global.h"
#include "ide-transfer-button.h"
typedef struct
{
IdeTransfer *transfer;
GCancellable *cancellable;
} IdeTransferButtonPrivate;
enum {
PROP_0,
PROP_TRANSFER,
N_PROPS
};
G_DEFINE_TYPE_WITH_PRIVATE (IdeTransferButton, ide_transfer_button, DZL_TYPE_PROGRESS_BUTTON)
static GParamSpec *properties [N_PROPS];
static void
notify_progress_cb (IdeTransferButton *self,
GParamSpec *pspec,
IdeTransfer *transfer)
{
gdouble progress;
g_assert (IDE_IS_TRANSFER_BUTTON (self));
g_assert (pspec != NULL);
g_assert (IDE_IS_TRANSFER (transfer));
progress = ide_transfer_get_progress (transfer);
dzl_progress_button_set_progress (DZL_PROGRESS_BUTTON (self), progress * 100.0);
}
static void
notify_active_cb (IdeTransferButton *self,
GParamSpec *pspec,
IdeTransfer *transfer)
{
g_assert (IDE_IS_TRANSFER_BUTTON (self));
g_assert (IDE_IS_TRANSFER (transfer));
gtk_widget_set_sensitive (GTK_WIDGET (self), !ide_transfer_get_active (transfer));
}
static void
ide_transfer_button_set_transfer (IdeTransferButton *self,
IdeTransfer *transfer)
{
IdeTransferButtonPrivate *priv = ide_transfer_button_get_instance_private (self);
IDE_ENTRY;
g_assert (IDE_IS_TRANSFER_BUTTON (self));
g_assert (!transfer || IDE_IS_TRANSFER (transfer));
if (transfer != priv->transfer)
{
if (priv->transfer != NULL)
{
g_signal_handlers_disconnect_by_func (priv->transfer, notify_progress_cb, self);
g_signal_handlers_disconnect_by_func (priv->transfer, notify_active_cb, self);
g_clear_object (&priv->transfer);
gtk_widget_hide (GTK_WIDGET (self));
}
if (transfer != NULL)
{
priv->transfer = g_object_ref (transfer);
g_signal_connect_object (priv->transfer,
"notify::active",
G_CALLBACK (notify_active_cb),
self,
G_CONNECT_SWAPPED);
g_signal_connect_object (priv->transfer,
"notify::progress",
G_CALLBACK (notify_progress_cb),
self,
G_CONNECT_SWAPPED);
notify_active_cb (self, NULL, priv->transfer);
gtk_widget_show (GTK_WIDGET (self));
}
g_object_notify_by_pspec (G_OBJECT (self), properties [PROP_TRANSFER]);
}
IDE_EXIT;
}
static void
ide_transfer_button_execute_cb (GObject *object,
GAsyncResult *result,
gpointer user_data)
{
IdeTransferManager *transfer_manager = (IdeTransferManager *)object;
g_autoptr(IdeTransferButton) self = user_data;
IDE_ENTRY;
g_assert (IDE_IS_TRANSFER_BUTTON (self));
g_assert (G_IS_ASYNC_RESULT (result));
g_assert (IDE_IS_TRANSFER_MANAGER (transfer_manager));
ide_transfer_manager_execute_finish (transfer_manager, result, NULL);
gtk_widget_set_sensitive (GTK_WIDGET (self), TRUE);
dzl_progress_button_set_show_progress (DZL_PROGRESS_BUTTON (self), FALSE);
IDE_EXIT;
}
static void
ide_transfer_button_clicked (GtkButton *button)
{
IdeTransferButton *self = (IdeTransferButton *)button;
IdeTransferButtonPrivate *priv = ide_transfer_button_get_instance_private (self);
IdeTransferManager *transfer_manager;
IDE_ENTRY;
g_assert (IDE_IS_TRANSFER_BUTTON (self));
if (priv->transfer == NULL)
return;
dzl_progress_button_set_show_progress (DZL_PROGRESS_BUTTON (self), TRUE);
gtk_widget_set_sensitive (GTK_WIDGET (self), FALSE);
transfer_manager = ide_transfer_manager_get_default ();
/* TODO: Cancellable state */
g_clear_object (&priv->cancellable);
priv->cancellable = g_cancellable_new ();
ide_transfer_manager_execute_async (transfer_manager,
priv->transfer,
priv->cancellable,
ide_transfer_button_execute_cb,
g_object_ref (self));
IDE_EXIT;
}
static void
ide_transfer_button_finalize (GObject *object)
{
IdeTransferButton *self = (IdeTransferButton *)object;
IdeTransferButtonPrivate *priv = ide_transfer_button_get_instance_private (self);
g_clear_object (&priv->cancellable);
g_clear_object (&priv->transfer);
G_OBJECT_CLASS (ide_transfer_button_parent_class)->finalize (object);
}
static void
ide_transfer_button_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec)
{
IdeTransferButton *self = (IdeTransferButton *)object;
IdeTransferButtonPrivate *priv = ide_transfer_button_get_instance_private (self);
switch (prop_id)
{
case PROP_TRANSFER:
g_value_set_object (value, priv->transfer);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
}
}
static void
ide_transfer_button_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec)
{
IdeTransferButton *self = (IdeTransferButton *)object;
switch (prop_id)
{
case PROP_TRANSFER:
ide_transfer_button_set_transfer (self, g_value_get_object (value));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
}
}
static void
ide_transfer_button_class_init (IdeTransferButtonClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
GtkButtonClass *button_class = GTK_BUTTON_CLASS (klass);
object_class->finalize = ide_transfer_button_finalize;
object_class->get_property = ide_transfer_button_get_property;
object_class->set_property = ide_transfer_button_set_property;
button_class->clicked = ide_transfer_button_clicked;
properties [PROP_TRANSFER] =
g_param_spec_object ("transfer",
"Transfer",
"Transfer",
IDE_TYPE_TRANSFER,
(G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
g_object_class_install_properties (object_class, N_PROPS, properties);
}
static void
ide_transfer_button_init (IdeTransferButton *self)
{
}