mirror of
https://github.com/Rafostar/clapper.git
synced 2025-08-31 00:11:59 +02:00
bin: Rewrite Clapper player binary
A rewritten Clapper video player made using "Clapper" and "ClapperGtk" libraries. Since both libraries from this repo are in C, newly rewritten Clapper binary is also in C to avoid mixing different programming languages in a single repo, thus making maintenance easier. Not depending on GJS gives us also an additional benefit of supporting different operating systems or linux shells without pulling GJS as dependency. Licensed under GPL-3.0-or-later.
This commit is contained in:
275
src/bin/clapper-app/clapper-app-window-state-buttons.c
Normal file
275
src/bin/clapper-app/clapper-app-window-state-buttons.c
Normal file
@@ -0,0 +1,275 @@
|
||||
/* Clapper Application
|
||||
* Copyright (C) 2024 Rafał Dzięgiel <rafostar.github@gmail.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 <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <clapper/clapper.h>
|
||||
|
||||
#include "clapper-app-window-state-buttons.h"
|
||||
|
||||
#define GST_CAT_DEFAULT clapper_app_window_state_buttons_debug
|
||||
GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT);
|
||||
|
||||
struct _ClapperAppWindowStateButtons
|
||||
{
|
||||
GtkBox parent;
|
||||
|
||||
GtkWidget *menu_button;
|
||||
GtkWidget *minimize_button;
|
||||
GtkWidget *maximize_button;
|
||||
GtkWidget *close_button;
|
||||
|
||||
gboolean has_minimize;
|
||||
gboolean has_maximize;
|
||||
|
||||
gboolean is_maximized;
|
||||
gboolean is_fullscreen;
|
||||
|
||||
GtkSettings *settings;
|
||||
};
|
||||
|
||||
#define parent_class clapper_app_window_state_buttons_parent_class
|
||||
G_DEFINE_TYPE (ClapperAppWindowStateButtons, clapper_app_window_state_buttons, GTK_TYPE_BOX)
|
||||
|
||||
static void
|
||||
minimize_button_clicked_cb (GtkButton *button, ClapperAppWindowStateButtons *self)
|
||||
{
|
||||
GST_INFO_OBJECT (self, "Minimize button clicked");
|
||||
gtk_widget_activate_action (GTK_WIDGET (self), "window.minimize", NULL);
|
||||
}
|
||||
|
||||
static void
|
||||
maximize_button_clicked_cb (GtkButton *button, ClapperAppWindowStateButtons *self)
|
||||
{
|
||||
GST_INFO_OBJECT (self, "Maximize button clicked");
|
||||
gtk_widget_activate_action (GTK_WIDGET (self), "window.toggle-maximized", NULL);
|
||||
}
|
||||
|
||||
static void
|
||||
close_button_clicked_cb (GtkButton *button, ClapperAppWindowStateButtons *self)
|
||||
{
|
||||
GST_INFO_OBJECT (self, "Close button clicked");
|
||||
gtk_widget_activate_action (GTK_WIDGET (self), "window.close", NULL);
|
||||
}
|
||||
|
||||
static void
|
||||
_refresh_min_max_visibility (ClapperAppWindowStateButtons *self)
|
||||
{
|
||||
gtk_widget_set_visible (self->minimize_button,
|
||||
(self->has_minimize && !self->is_fullscreen));
|
||||
gtk_widget_set_visible (self->maximize_button,
|
||||
(self->has_maximize && !self->is_fullscreen));
|
||||
}
|
||||
|
||||
static void
|
||||
clapper_app_window_state_buttons_parse_layout (ClapperAppWindowStateButtons *self)
|
||||
{
|
||||
gchar *org_layout = NULL;
|
||||
gboolean has_minimize = FALSE;
|
||||
gboolean has_maximize = FALSE;
|
||||
gboolean has_close = FALSE;
|
||||
|
||||
GST_DEBUG_OBJECT (self, "Buttons layout update");
|
||||
|
||||
g_object_get (self->settings, "gtk-decoration-layout", &org_layout, NULL);
|
||||
|
||||
if (G_LIKELY (org_layout != NULL)) {
|
||||
GtkWidget *last_widget = self->menu_button;
|
||||
const gchar *layout = org_layout;
|
||||
guint i;
|
||||
|
||||
for (i = 0; layout[i]; ++i) {
|
||||
GtkWidget *widget = NULL;
|
||||
const gchar *next = layout + i + 1;
|
||||
|
||||
if (next[0] != '\0' && next[0] != ',' && next[0] != ':')
|
||||
continue;
|
||||
|
||||
GST_TRACE_OBJECT (self, "Remaining layout: %s", layout);
|
||||
|
||||
if (g_str_has_prefix (layout, "minimize")) {
|
||||
widget = self->minimize_button;
|
||||
has_minimize = TRUE;
|
||||
} else if (g_str_has_prefix (layout, "maximize")) {
|
||||
widget = self->maximize_button;
|
||||
has_maximize = TRUE;
|
||||
} else if (g_str_has_prefix (layout, "close")) {
|
||||
widget = self->close_button;
|
||||
has_close = TRUE;
|
||||
}
|
||||
|
||||
if (widget) {
|
||||
gtk_box_reorder_child_after (GTK_BOX (self), widget, last_widget);
|
||||
last_widget = widget;
|
||||
}
|
||||
|
||||
if (next[0] == '\0')
|
||||
break;
|
||||
|
||||
layout = next + 1;
|
||||
i = 0;
|
||||
}
|
||||
}
|
||||
|
||||
self->has_minimize = has_minimize;
|
||||
self->has_maximize = has_maximize;
|
||||
|
||||
gtk_widget_set_visible (self->close_button, has_close);
|
||||
|
||||
GST_DEBUG_OBJECT (self, "Buttons layout parsed");
|
||||
|
||||
g_free (org_layout);
|
||||
}
|
||||
|
||||
static void
|
||||
_decoration_layout_changed_cb (GtkSettings *settings,
|
||||
GParamSpec *pspec G_GNUC_UNUSED, ClapperAppWindowStateButtons *self)
|
||||
{
|
||||
clapper_app_window_state_buttons_parse_layout (self);
|
||||
_refresh_min_max_visibility (self);
|
||||
}
|
||||
|
||||
static void
|
||||
_surface_state_changed_cb (GdkSurface *surface,
|
||||
GParamSpec *pspec G_GNUC_UNUSED, ClapperAppWindowStateButtons *self)
|
||||
{
|
||||
GdkToplevelState state = gdk_toplevel_get_state (GDK_TOPLEVEL (surface));
|
||||
gboolean is_maximized, is_fullscreen;
|
||||
|
||||
GST_LOG_OBJECT (self, "Surface state changed");
|
||||
|
||||
is_maximized = (state & GDK_TOPLEVEL_STATE_MAXIMIZED);
|
||||
is_fullscreen = (state & GDK_TOPLEVEL_STATE_FULLSCREEN);
|
||||
|
||||
if (self->is_maximized != is_maximized) {
|
||||
self->is_maximized = is_maximized;
|
||||
gtk_button_set_icon_name (GTK_BUTTON (self->maximize_button),
|
||||
(self->is_maximized) ? "window-restore-symbolic" : "window-maximize-symbolic");
|
||||
}
|
||||
if (self->is_fullscreen != is_fullscreen) {
|
||||
self->is_fullscreen = is_fullscreen;
|
||||
_refresh_min_max_visibility (self);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
clapper_app_window_state_buttons_init (ClapperAppWindowStateButtons *self)
|
||||
{
|
||||
gtk_widget_init_template (GTK_WIDGET (self));
|
||||
}
|
||||
|
||||
static void
|
||||
_clear_stored_settings (ClapperAppWindowStateButtons *self)
|
||||
{
|
||||
if (self->settings) {
|
||||
g_signal_handlers_disconnect_by_func (self->settings,
|
||||
_decoration_layout_changed_cb, self);
|
||||
g_clear_object (&self->settings);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
clapper_app_window_state_buttons_realize (GtkWidget *widget)
|
||||
{
|
||||
ClapperAppWindowStateButtons *self = CLAPPER_APP_WINDOW_STATE_BUTTONS_CAST (widget);
|
||||
GtkSettings *settings;
|
||||
GtkRoot *root;
|
||||
GdkSurface *surface;
|
||||
|
||||
GST_TRACE_OBJECT (self, "Realize");
|
||||
|
||||
GTK_WIDGET_CLASS (parent_class)->realize (widget);
|
||||
|
||||
settings = gtk_settings_get_for_display (gtk_widget_get_display (widget));
|
||||
|
||||
if (self->settings != settings) {
|
||||
_clear_stored_settings (self);
|
||||
self->settings = g_object_ref (settings);
|
||||
|
||||
g_signal_connect (self->settings, "notify::gtk-decoration-layout",
|
||||
G_CALLBACK (_decoration_layout_changed_cb), self);
|
||||
_decoration_layout_changed_cb (self->settings, NULL, self);
|
||||
}
|
||||
|
||||
root = gtk_widget_get_root (widget);
|
||||
surface = gtk_native_get_surface (GTK_NATIVE (root));
|
||||
|
||||
g_signal_connect (surface, "notify::state",
|
||||
G_CALLBACK (_surface_state_changed_cb), self);
|
||||
_surface_state_changed_cb (surface, NULL, self);
|
||||
}
|
||||
|
||||
static void
|
||||
clapper_app_window_state_buttons_unrealize (GtkWidget *widget)
|
||||
{
|
||||
ClapperAppWindowStateButtons *self = CLAPPER_APP_WINDOW_STATE_BUTTONS_CAST (widget);
|
||||
GtkRoot *root;
|
||||
GdkSurface *surface;
|
||||
|
||||
GST_TRACE_OBJECT (self, "Unrealize");
|
||||
|
||||
_clear_stored_settings (self);
|
||||
|
||||
root = gtk_widget_get_root (widget);
|
||||
surface = gtk_native_get_surface (GTK_NATIVE (root));
|
||||
|
||||
g_signal_handlers_disconnect_by_func (surface,
|
||||
_surface_state_changed_cb, self);
|
||||
|
||||
GTK_WIDGET_CLASS (parent_class)->unrealize (widget);
|
||||
}
|
||||
|
||||
static void
|
||||
clapper_app_window_state_buttons_dispose (GObject *object)
|
||||
{
|
||||
ClapperAppWindowStateButtons *self = CLAPPER_APP_WINDOW_STATE_BUTTONS_CAST (object);
|
||||
|
||||
_clear_stored_settings (self);
|
||||
|
||||
gtk_widget_dispose_template (GTK_WIDGET (object), CLAPPER_APP_TYPE_WINDOW_STATE_BUTTONS);
|
||||
|
||||
G_OBJECT_CLASS (parent_class)->dispose (object);
|
||||
}
|
||||
|
||||
static void
|
||||
clapper_app_window_state_buttons_class_init (ClapperAppWindowStateButtonsClass *klass)
|
||||
{
|
||||
GObjectClass *gobject_class = (GObjectClass *) klass;
|
||||
GtkWidgetClass *widget_class = (GtkWidgetClass *) klass;
|
||||
|
||||
GST_DEBUG_CATEGORY_INIT (GST_CAT_DEFAULT, "clappergtkwindowstatebuttons", 0,
|
||||
"Clapper GTK Window State Buttons");
|
||||
|
||||
gobject_class->dispose = clapper_app_window_state_buttons_dispose;
|
||||
|
||||
widget_class->realize = clapper_app_window_state_buttons_realize;
|
||||
widget_class->unrealize = clapper_app_window_state_buttons_unrealize;
|
||||
|
||||
gtk_widget_class_set_template_from_resource (widget_class,
|
||||
CLAPPER_APP_RESOURCE_PREFIX "/ui/clapper-app-window-state-buttons.ui");
|
||||
|
||||
gtk_widget_class_bind_template_child (widget_class, ClapperAppWindowStateButtons, menu_button);
|
||||
gtk_widget_class_bind_template_child (widget_class, ClapperAppWindowStateButtons, minimize_button);
|
||||
gtk_widget_class_bind_template_child (widget_class, ClapperAppWindowStateButtons, maximize_button);
|
||||
gtk_widget_class_bind_template_child (widget_class, ClapperAppWindowStateButtons, close_button);
|
||||
|
||||
gtk_widget_class_bind_template_callback (widget_class, minimize_button_clicked_cb);
|
||||
gtk_widget_class_bind_template_callback (widget_class, maximize_button_clicked_cb);
|
||||
gtk_widget_class_bind_template_callback (widget_class, close_button_clicked_cb);
|
||||
|
||||
gtk_widget_class_set_css_name (widget_class, "clapper-app-window-state-buttons");
|
||||
}
|
Reference in New Issue
Block a user