gnome-builder-test/src/text-viewer-application.c

124 lines
3.9 KiB
C

/* text-viewer-application.c
*
* Copyright 2024 Win
*
* 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/>.
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
#include "config.h"
#include "text-viewer-application.h"
#include "text-viewer-window.h"
struct _TextViewerApplication
{
AdwApplication parent_instance;
};
G_DEFINE_FINAL_TYPE (TextViewerApplication, text_viewer_application, ADW_TYPE_APPLICATION)
TextViewerApplication *
text_viewer_application_new (const char *application_id,
GApplicationFlags flags)
{
g_return_val_if_fail (application_id != NULL, NULL);
return g_object_new (TEXT_VIEWER_TYPE_APPLICATION,
"application-id", application_id,
"flags", flags,
NULL);
}
static void
text_viewer_application_activate (GApplication *app)
{
GtkWindow *window;
g_assert (TEXT_VIEWER_IS_APPLICATION (app));
window = gtk_application_get_active_window (GTK_APPLICATION (app));
if (window == NULL)
window = g_object_new (TEXT_VIEWER_TYPE_WINDOW,
"application", app,
NULL);
gtk_window_present (window);
}
static void
text_viewer_application_class_init (TextViewerApplicationClass *klass)
{
GApplicationClass *app_class = G_APPLICATION_CLASS (klass);
app_class->activate = text_viewer_application_activate;
}
static void
text_viewer_application_about_action (GSimpleAction *action,
GVariant *parameter,
gpointer user_data)
{
static const char *developers[] = {"Win", NULL};
TextViewerApplication *self = user_data;
GtkWindow *window = NULL;
g_assert (TEXT_VIEWER_IS_APPLICATION (self));
window = gtk_application_get_active_window (GTK_APPLICATION (self));
adw_show_about_window (window,
"application-name", "text-viewer",
"application-icon", "com.example.TextViewer",
"developer-name", "Win",
"version", "0.1.0",
"developers", developers,
"copyright", "© 2024 Win",
NULL);
}
static void
text_viewer_application_quit_action (GSimpleAction *action,
GVariant *parameter,
gpointer user_data)
{
TextViewerApplication *self = user_data;
g_assert (TEXT_VIEWER_IS_APPLICATION (self));
g_application_quit (G_APPLICATION (self));
}
static const GActionEntry app_actions[] = {
{ "quit", text_viewer_application_quit_action },
{ "about", text_viewer_application_about_action },
};
static void
text_viewer_application_init (TextViewerApplication *self)
{
g_action_map_add_action_entries (G_ACTION_MAP (self),
app_actions,
G_N_ELEMENTS (app_actions),
self);
gtk_application_set_accels_for_action (GTK_APPLICATION (self),
"app.quit",
(const char *[]) { "<primary>q", NULL });
gtk_application_set_accels_for_action (GTK_APPLICATION (self),
"win.open",
(const char *[]) { "<Ctrl>o", NULL });
}