PIKApp/app/widgets/pikafontselect.c

117 lines
4.0 KiB
C
Raw Normal View History

2023-09-26 00:35:21 +02:00
/* PIKA - Photo and Image Kooker Application
* a rebranding of The GNU Image Manipulation Program (created with heckimp)
* A derived work which may be trivial. However, any changes may be (C)2023 by Aldercone Studio
*
* Original copyright, applying to most contents (license remains unchanged):
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* pikafontselect.c
* Copyright (C) 2004 Michael Natterer <mitch@gimp.org>
*
* 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 <gegl.h>
#include <gtk/gtk.h>
#include "libpikabase/pikabase.h"
#include "libpikawidgets/pikawidgets.h"
#include "widgets-types.h"
#include "core/pika.h"
#include "core/pikacontext.h"
#include "core/pikaparamspecs.h"
#include "text/pikafont.h"
#include "pdb/pikapdb.h"
#include "pikacontainerbox.h"
#include "pikafontfactoryview.h"
#include "pikafontselect.h"
static void pika_font_select_constructed (GObject *object);
static PikaValueArray * pika_font_select_run_callback (PikaPdbDialog *dialog,
PikaObject *object,
gboolean closing,
GError **error);
G_DEFINE_TYPE (PikaFontSelect, pika_font_select, PIKA_TYPE_PDB_DIALOG)
#define parent_class pika_font_select_parent_class
static void
pika_font_select_class_init (PikaFontSelectClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
PikaPdbDialogClass *pdb_class = PIKA_PDB_DIALOG_CLASS (klass);
object_class->constructed = pika_font_select_constructed;
pdb_class->run_callback = pika_font_select_run_callback;
}
static void
pika_font_select_init (PikaFontSelect *select)
{
}
static void
pika_font_select_constructed (GObject *object)
{
PikaPdbDialog *dialog = PIKA_PDB_DIALOG (object);
GtkWidget *content_area;
G_OBJECT_CLASS (parent_class)->constructed (object);
dialog->view =
pika_font_factory_view_new (PIKA_VIEW_TYPE_LIST,
dialog->context->pika->font_factory,
dialog->context,
PIKA_VIEW_SIZE_MEDIUM, 1,
dialog->menu_factory);
pika_container_box_set_size_request (PIKA_CONTAINER_BOX (PIKA_CONTAINER_EDITOR (dialog->view)->view),
6 * (PIKA_VIEW_SIZE_MEDIUM + 2),
6 * (PIKA_VIEW_SIZE_MEDIUM + 2));
gtk_container_set_border_width (GTK_CONTAINER (dialog->view), 12);
content_area = gtk_dialog_get_content_area (GTK_DIALOG (dialog));
gtk_box_pack_start (GTK_BOX (content_area), dialog->view, TRUE, TRUE, 0);
gtk_widget_show (dialog->view);
}
static PikaValueArray *
pika_font_select_run_callback (PikaPdbDialog *dialog,
PikaObject *object,
gboolean closing,
GError **error)
{
return pika_pdb_execute_procedure_by_name (dialog->pdb,
dialog->caller_context,
NULL, error,
dialog->callback_name,
2023-10-30 23:55:30 +01:00
PIKA_TYPE_RESOURCE, object,
G_TYPE_BOOLEAN, closing,
2023-09-26 00:35:21 +02:00
G_TYPE_NONE);
}