764 lines
27 KiB
C
764 lines
27 KiB
C
/* 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
|
|
*
|
|
* This is a plug-in for PIKA.
|
|
*
|
|
* Copyright (C) 2000 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 <string.h>
|
|
|
|
#include <libpika/pika.h>
|
|
#include <libpika/pikaui.h>
|
|
|
|
#include "libpika/stdplugins-intl.h"
|
|
|
|
|
|
#define PLUG_IN_PROC "plug-in-unit-editor"
|
|
#define PLUG_IN_BINARY "unit-editor"
|
|
#define PLUG_IN_ROLE "pika-unit-editor"
|
|
|
|
enum
|
|
{
|
|
SAVE,
|
|
IDENTIFIER,
|
|
FACTOR,
|
|
DIGITS,
|
|
SYMBOL,
|
|
ABBREVIATION,
|
|
SINGULAR,
|
|
PLURAL,
|
|
UNIT,
|
|
USER_UNIT,
|
|
NUM_COLUMNS
|
|
};
|
|
|
|
typedef struct
|
|
{
|
|
const gchar *title;
|
|
const gchar *help;
|
|
|
|
} UnitColumn;
|
|
|
|
|
|
#define PIKA_UNIT_EDITOR_TYPE (pika_unit_editor_get_type ())
|
|
G_DECLARE_FINAL_TYPE (PikaUnitEditor, pika_unit_editor, PIKA, UNIT_EDITOR, PikaPlugIn)
|
|
|
|
struct _PikaUnitEditor
|
|
{
|
|
PikaPlugIn parent_instance;
|
|
|
|
GtkApplication *app;
|
|
|
|
GtkWindow *window;
|
|
GtkWidget *tv;
|
|
};
|
|
|
|
|
|
static GList * editor_query_procedures (PikaPlugIn *plug_in);
|
|
static PikaProcedure * editor_create_procedure (PikaPlugIn *plug_in,
|
|
const gchar *name);
|
|
|
|
static PikaValueArray * editor_run (PikaProcedure *procedure,
|
|
PikaProcedureConfig *config,
|
|
gpointer run_data);
|
|
|
|
static PikaUnit new_unit_dialog (GtkWindow *main_window,
|
|
PikaUnit template);
|
|
static void on_app_activate (GApplication *gapp,
|
|
gpointer user_data);
|
|
|
|
static gboolean unit_editor_key_press_event (GtkWidget *window,
|
|
GdkEventKey *event,
|
|
gpointer user_data);
|
|
static void unit_editor_help_clicked (GtkWidget *window);
|
|
|
|
static void new_unit_action (GSimpleAction *action,
|
|
GVariant *param,
|
|
gpointer user_data);
|
|
static void duplicate_unit_action (GSimpleAction *action,
|
|
GVariant *param,
|
|
gpointer user_data);
|
|
static void refresh_action (GSimpleAction *action,
|
|
GVariant *param,
|
|
gpointer user_data);
|
|
static void saved_toggled_callback (GtkCellRendererToggle *celltoggle,
|
|
gchar *path_string,
|
|
GtkListStore *list_store);
|
|
static void unit_list_init (GtkTreeView *tv);
|
|
|
|
|
|
G_DEFINE_TYPE (PikaUnitEditor, pika_unit_editor, PIKA_TYPE_PLUG_IN)
|
|
|
|
PIKA_MAIN (PIKA_UNIT_EDITOR_TYPE)
|
|
DEFINE_STD_SET_I18N
|
|
|
|
|
|
static const UnitColumn columns[] =
|
|
{
|
|
{ N_("Saved"), N_("A unit definition will only be saved before "
|
|
"PIKA exits if this column is checked.") },
|
|
{ N_("ID"), N_("This string will be used to identify a "
|
|
"unit in PIKA's configuration files.") },
|
|
{ N_("Factor"), N_("How many units make up an inch.") },
|
|
{ N_("Digits"), N_("This field is a hint for numerical input "
|
|
"fields. It specifies how many decimal digits "
|
|
"the input field should provide to get "
|
|
"approximately the same accuracy as an "
|
|
"\"inch\" input field with two decimal digits.") },
|
|
{ N_("Symbol"), N_("The unit's symbol if it has one (e.g. \" "
|
|
"for inches). The unit's abbreviation is used "
|
|
"if doesn't have a symbol.") },
|
|
{ N_("Abbreviation"), N_("The unit's abbreviation (e.g. \"cm\" for "
|
|
"centimeters).") },
|
|
{ N_("Singular"), N_("The unit's singular form.") },
|
|
{ N_("Plural"), N_("The unit's plural form.") }
|
|
};
|
|
|
|
static GActionEntry ACTIONS[] =
|
|
{
|
|
{ "new-unit", new_unit_action },
|
|
{ "duplicate-unit", duplicate_unit_action },
|
|
{ "refresh", refresh_action },
|
|
};
|
|
|
|
|
|
static void
|
|
pika_unit_editor_class_init (PikaUnitEditorClass *klass)
|
|
{
|
|
PikaPlugInClass *plug_in_class = PIKA_PLUG_IN_CLASS (klass);
|
|
|
|
plug_in_class->query_procedures = editor_query_procedures;
|
|
plug_in_class->create_procedure = editor_create_procedure;
|
|
plug_in_class->set_i18n = STD_SET_I18N;
|
|
}
|
|
|
|
static void
|
|
pika_unit_editor_init (PikaUnitEditor *self)
|
|
{
|
|
}
|
|
|
|
static GList *
|
|
editor_query_procedures (PikaPlugIn *plug_in)
|
|
{
|
|
return g_list_append (NULL, g_strdup (PLUG_IN_PROC));
|
|
}
|
|
|
|
static PikaProcedure *
|
|
editor_create_procedure (PikaPlugIn *plug_in,
|
|
const gchar *name)
|
|
{
|
|
PikaProcedure *procedure = NULL;
|
|
|
|
if (! strcmp (name, PLUG_IN_PROC))
|
|
{
|
|
procedure = pika_procedure_new (plug_in, name,
|
|
PIKA_PDB_PROC_TYPE_PLUGIN,
|
|
editor_run, plug_in, NULL);
|
|
|
|
pika_procedure_set_menu_label (procedure, _("U_nits"));
|
|
pika_procedure_set_icon_name (procedure, PIKA_ICON_TOOL_MEASURE);
|
|
pika_procedure_add_menu_path (procedure, "<Image>/Edit/[Preferences]");
|
|
|
|
pika_procedure_set_documentation (procedure,
|
|
_("Create or alter units used in PIKA"),
|
|
"The PIKA unit editor",
|
|
name);
|
|
pika_procedure_set_attribution (procedure,
|
|
"Michael Natterer <mitch@gimp.org>",
|
|
"Michael Natterer <mitch@gimp.org>",
|
|
"2000");
|
|
|
|
PIKA_PROC_ARG_ENUM (procedure, "run-mode",
|
|
"Run mode",
|
|
"The run mode",
|
|
PIKA_TYPE_RUN_MODE,
|
|
PIKA_RUN_INTERACTIVE,
|
|
G_PARAM_READWRITE);
|
|
}
|
|
|
|
return procedure;
|
|
}
|
|
|
|
static void
|
|
on_app_activate (GApplication *gapp, gpointer user_data)
|
|
{
|
|
PikaUnitEditor *self = PIKA_UNIT_EDITOR (user_data);
|
|
GtkWidget *headerbar;
|
|
GtkWidget *vbox;
|
|
GtkWidget *button_box;
|
|
GtkWidget *scrolled_win;
|
|
GtkListStore *list_store;
|
|
GtkTreeViewColumn *col;
|
|
GtkWidget *col_widget;
|
|
GtkWidget *button;
|
|
GtkCellRenderer *rend;
|
|
|
|
list_store = gtk_list_store_new (NUM_COLUMNS,
|
|
G_TYPE_BOOLEAN, /* SAVE */
|
|
G_TYPE_STRING, /* IDENTIFIER */
|
|
G_TYPE_DOUBLE, /* FACTOR */
|
|
G_TYPE_INT, /* DIGITS */
|
|
G_TYPE_STRING, /* SYMBOL */
|
|
G_TYPE_STRING, /* ABBREVIATION */
|
|
G_TYPE_STRING, /* SINGULAR */
|
|
G_TYPE_STRING, /* PLURAL */
|
|
PIKA_TYPE_UNIT, /* UNIT */
|
|
G_TYPE_BOOLEAN); /* USER_UNIT */
|
|
|
|
self->tv = gtk_tree_view_new_with_model (GTK_TREE_MODEL (list_store));
|
|
g_object_unref (list_store);
|
|
|
|
self->window = GTK_WINDOW (gtk_application_window_new (self->app));
|
|
gtk_window_set_title (self->window, _("Unit Editor"));
|
|
gtk_window_set_role (self->window, PLUG_IN_ROLE);
|
|
pika_help_connect (GTK_WIDGET (self->window),
|
|
pika_standard_help_func, PLUG_IN_PROC,
|
|
self->window, NULL);
|
|
|
|
/* Actions */
|
|
g_action_map_add_action_entries (G_ACTION_MAP (self->window),
|
|
ACTIONS, G_N_ELEMENTS (ACTIONS),
|
|
self);
|
|
gtk_application_set_accels_for_action (self->app, "win.new-unit",
|
|
(const char*[]) { "<Ctrl>N", NULL });
|
|
gtk_application_set_accels_for_action (self->app, "win.duplicate-unit",
|
|
(const char*[]) { "<ctrl>D", NULL });
|
|
gtk_application_set_accels_for_action (self->app, "win.refresh",
|
|
(const char*[]) { "<ctrl>R", NULL });
|
|
|
|
/* Titlebar */
|
|
headerbar = gtk_header_bar_new ();
|
|
gtk_header_bar_set_title (GTK_HEADER_BAR (headerbar), _("Unit Editor"));
|
|
gtk_header_bar_set_has_subtitle (GTK_HEADER_BAR (headerbar), FALSE);
|
|
gtk_header_bar_set_show_close_button (GTK_HEADER_BAR (headerbar), TRUE);
|
|
|
|
button = gtk_button_new_with_mnemonic (_("_Refresh"));
|
|
gtk_actionable_set_action_name (GTK_ACTIONABLE (button), "win.refresh");
|
|
gtk_widget_show (button);
|
|
gtk_header_bar_pack_start (GTK_HEADER_BAR (headerbar), button);
|
|
|
|
if (pika_show_help_button ())
|
|
{
|
|
button = gtk_button_new_with_mnemonic (_("_Help"));
|
|
g_signal_connect_swapped (button, "clicked",
|
|
G_CALLBACK (unit_editor_help_clicked),
|
|
self->window);
|
|
gtk_widget_show (button);
|
|
gtk_header_bar_pack_start (GTK_HEADER_BAR (headerbar), button);
|
|
}
|
|
|
|
button = gtk_button_new_with_mnemonic (_("_OK"));
|
|
g_signal_connect_swapped (button, "clicked",
|
|
G_CALLBACK (gtk_widget_destroy),
|
|
self->window);
|
|
gtk_widget_show (button);
|
|
gtk_header_bar_pack_end (GTK_HEADER_BAR (headerbar), button);
|
|
|
|
gtk_window_set_titlebar (self->window, headerbar);
|
|
gtk_widget_show (headerbar);
|
|
|
|
/* Content */
|
|
vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12);
|
|
gtk_container_set_border_width (GTK_CONTAINER (vbox), 12);
|
|
gtk_widget_show (vbox);
|
|
gtk_container_add (GTK_CONTAINER (self->window), vbox);
|
|
|
|
button_box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12);
|
|
gtk_widget_show (button_box);
|
|
gtk_container_add (GTK_CONTAINER (vbox), button_box);
|
|
|
|
button = gtk_button_new_from_icon_name (PIKA_ICON_DOCUMENT_NEW,
|
|
GTK_ICON_SIZE_BUTTON);
|
|
gtk_actionable_set_action_name (GTK_ACTIONABLE (button), "win.new-unit");
|
|
gtk_widget_set_tooltip_text (button, _("Create a new unit from scratch"));
|
|
gtk_widget_show (button);
|
|
gtk_container_add (GTK_CONTAINER (button_box), button);
|
|
|
|
button = gtk_button_new_from_icon_name (PIKA_ICON_OBJECT_DUPLICATE,
|
|
GTK_ICON_SIZE_BUTTON);
|
|
gtk_actionable_set_action_name (GTK_ACTIONABLE (button), "win.duplicate-unit");
|
|
gtk_widget_set_tooltip_text (button, _("Create a new unit using the currently selected unit as template"));
|
|
gtk_widget_show (button);
|
|
gtk_container_add (GTK_CONTAINER (button_box), button);
|
|
|
|
scrolled_win = gtk_scrolled_window_new (NULL, NULL);
|
|
gtk_widget_set_size_request (scrolled_win, -1, 200);
|
|
gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (scrolled_win),
|
|
GTK_SHADOW_IN);
|
|
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_win),
|
|
GTK_POLICY_NEVER,
|
|
GTK_POLICY_ALWAYS);
|
|
gtk_container_add (GTK_CONTAINER (vbox), scrolled_win);
|
|
gtk_widget_show (scrolled_win);
|
|
|
|
gtk_widget_set_size_request (self->tv, -1, 220);
|
|
gtk_container_add (GTK_CONTAINER (scrolled_win), self->tv);
|
|
gtk_widget_set_vexpand (self->tv, TRUE);
|
|
gtk_widget_show (self->tv);
|
|
|
|
rend = gtk_cell_renderer_toggle_new ();
|
|
col =
|
|
gtk_tree_view_column_new_with_attributes (gettext (columns[SAVE].title),
|
|
rend,
|
|
"active", SAVE,
|
|
"activatable", USER_UNIT,
|
|
NULL);
|
|
|
|
gtk_tree_view_append_column (GTK_TREE_VIEW (self->tv), col);
|
|
|
|
col_widget = gtk_tree_view_column_get_widget (col);
|
|
if (col_widget)
|
|
{
|
|
button = gtk_widget_get_ancestor (col_widget, GTK_TYPE_BUTTON);
|
|
|
|
if (button)
|
|
pika_help_set_help_data (button,
|
|
gettext (columns[SAVE].help), NULL);
|
|
}
|
|
|
|
g_signal_connect (rend, "toggled",
|
|
G_CALLBACK (saved_toggled_callback),
|
|
list_store);
|
|
|
|
for (int i = 0; i < G_N_ELEMENTS (columns); i++)
|
|
{
|
|
if (i == SAVE)
|
|
continue;
|
|
|
|
col =
|
|
gtk_tree_view_column_new_with_attributes (gettext (columns[i].title),
|
|
gtk_cell_renderer_text_new (),
|
|
"text", i,
|
|
NULL);
|
|
|
|
gtk_tree_view_append_column (GTK_TREE_VIEW (self->tv), col);
|
|
|
|
col_widget = gtk_tree_view_column_get_widget (col);
|
|
if (col_widget)
|
|
{
|
|
button = gtk_widget_get_ancestor (col_widget, GTK_TYPE_BUTTON);
|
|
|
|
if (button)
|
|
pika_help_set_help_data (button, gettext (columns[i].help), NULL);
|
|
}
|
|
}
|
|
|
|
unit_list_init (GTK_TREE_VIEW (self->tv));
|
|
|
|
g_signal_connect (self->window, "key-press-event",
|
|
G_CALLBACK (unit_editor_key_press_event),
|
|
NULL);
|
|
|
|
gtk_widget_show (GTK_WIDGET (self->window));
|
|
}
|
|
|
|
static gboolean
|
|
unit_editor_key_press_event (GtkWidget *window,
|
|
GdkEventKey *event,
|
|
gpointer user_data)
|
|
{
|
|
if (event->state == 0 &&
|
|
event->keyval == GDK_KEY_Escape)
|
|
gtk_widget_destroy (GTK_WIDGET (window));
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static void
|
|
unit_editor_help_clicked (GtkWidget *window)
|
|
{
|
|
pika_standard_help_func (PLUG_IN_PROC, window);
|
|
}
|
|
|
|
static PikaValueArray *
|
|
editor_run (PikaProcedure *procedure,
|
|
PikaProcedureConfig *config,
|
|
gpointer run_data)
|
|
{
|
|
PikaUnitEditor *editor = PIKA_UNIT_EDITOR (run_data);
|
|
|
|
pika_ui_init (PLUG_IN_BINARY);
|
|
|
|
#if GLIB_CHECK_VERSION(2,74,0)
|
|
editor->app = gtk_application_new (NULL, G_APPLICATION_DEFAULT_FLAGS);
|
|
#else
|
|
editor->app = gtk_application_new (NULL, G_APPLICATION_FLAGS_NONE);
|
|
#endif
|
|
g_signal_connect (editor->app, "activate", G_CALLBACK (on_app_activate), editor);
|
|
|
|
g_application_run (G_APPLICATION (editor->app), 0, NULL);
|
|
|
|
g_clear_object (&editor->app);
|
|
|
|
return pika_procedure_new_return_values (procedure, PIKA_PDB_SUCCESS, NULL);
|
|
}
|
|
|
|
static PikaUnit
|
|
new_unit_dialog (GtkWindow *main_window,
|
|
PikaUnit template)
|
|
{
|
|
GtkWidget *dialog;
|
|
GtkWidget *grid;
|
|
GtkWidget *entry;
|
|
GtkWidget *spinbutton;
|
|
|
|
GtkWidget *identifier_entry;
|
|
GtkAdjustment *factor_adj;
|
|
GtkAdjustment *digits_adj;
|
|
GtkWidget *symbol_entry;
|
|
GtkWidget *abbreviation_entry;
|
|
GtkWidget *singular_entry;
|
|
GtkWidget *plural_entry;
|
|
|
|
PikaUnit unit = PIKA_UNIT_PIXEL;
|
|
|
|
dialog = pika_dialog_new (_("Add a New Unit"), PLUG_IN_ROLE,
|
|
GTK_WIDGET (main_window), GTK_DIALOG_MODAL,
|
|
pika_standard_help_func, PLUG_IN_PROC,
|
|
|
|
_("_Cancel"), GTK_RESPONSE_CANCEL,
|
|
_("_Add"), GTK_RESPONSE_OK,
|
|
|
|
NULL);
|
|
|
|
pika_dialog_set_alternative_button_order (GTK_DIALOG (dialog),
|
|
GTK_RESPONSE_OK,
|
|
GTK_RESPONSE_CANCEL,
|
|
-1);
|
|
|
|
grid = gtk_grid_new ();
|
|
gtk_grid_set_row_spacing (GTK_GRID (grid), 6);
|
|
gtk_grid_set_column_spacing (GTK_GRID (grid), 6);
|
|
gtk_container_set_border_width (GTK_CONTAINER (grid), 12);
|
|
gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dialog))),
|
|
grid, FALSE, FALSE, 0);
|
|
gtk_widget_show (grid);
|
|
|
|
entry = identifier_entry = gtk_entry_new ();
|
|
if (template != PIKA_UNIT_PIXEL)
|
|
{
|
|
gtk_entry_set_text (GTK_ENTRY (entry),
|
|
pika_unit_get_identifier (template));
|
|
}
|
|
pika_grid_attach_aligned (GTK_GRID (grid), 0, 0,
|
|
_("_ID:"), 0.0, 0.5,
|
|
entry, 1);
|
|
|
|
pika_help_set_help_data (entry, gettext (columns[IDENTIFIER].help), NULL);
|
|
|
|
factor_adj = gtk_adjustment_new ((template != PIKA_UNIT_PIXEL) ?
|
|
pika_unit_get_factor (template) : 1.0,
|
|
PIKA_MIN_RESOLUTION, PIKA_MAX_RESOLUTION,
|
|
0.01, 0.1, 0.0);
|
|
spinbutton = pika_spin_button_new (factor_adj, 0.01, 5);
|
|
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spinbutton), TRUE);
|
|
pika_grid_attach_aligned (GTK_GRID (grid), 0, 1,
|
|
_("_Factor:"), 0.0, 0.5,
|
|
spinbutton, 1);
|
|
|
|
pika_help_set_help_data (spinbutton, gettext (columns[FACTOR].help), NULL);
|
|
|
|
digits_adj = gtk_adjustment_new ((template != PIKA_UNIT_PIXEL) ?
|
|
pika_unit_get_digits (template) : 2.0,
|
|
0, 5, 1, 1, 0);
|
|
spinbutton = pika_spin_button_new (digits_adj, 0, 0);
|
|
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spinbutton), TRUE);
|
|
pika_grid_attach_aligned (GTK_GRID (grid), 0, 2,
|
|
_("_Digits:"), 0.0, 0.5,
|
|
spinbutton, 1);
|
|
|
|
pika_help_set_help_data (spinbutton, gettext (columns[DIGITS].help), NULL);
|
|
|
|
entry = symbol_entry = gtk_entry_new ();
|
|
if (template != PIKA_UNIT_PIXEL)
|
|
{
|
|
gtk_entry_set_text (GTK_ENTRY (entry),
|
|
pika_unit_get_symbol (template));
|
|
}
|
|
pika_grid_attach_aligned (GTK_GRID (grid), 0, 3,
|
|
_("_Symbol:"), 0.0, 0.5,
|
|
entry, 1);
|
|
|
|
pika_help_set_help_data (entry, gettext (columns[SYMBOL].help), NULL);
|
|
|
|
entry = abbreviation_entry = gtk_entry_new ();
|
|
if (template != PIKA_UNIT_PIXEL)
|
|
{
|
|
gtk_entry_set_text (GTK_ENTRY (entry),
|
|
pika_unit_get_abbreviation (template));
|
|
}
|
|
pika_grid_attach_aligned (GTK_GRID (grid), 0, 4,
|
|
_("_Abbreviation:"), 0.0, 0.5,
|
|
entry, 1);
|
|
|
|
pika_help_set_help_data (entry, gettext (columns[ABBREVIATION].help), NULL);
|
|
|
|
entry = singular_entry = gtk_entry_new ();
|
|
if (template != PIKA_UNIT_PIXEL)
|
|
{
|
|
gtk_entry_set_text (GTK_ENTRY (entry),
|
|
pika_unit_get_singular (template));
|
|
}
|
|
pika_grid_attach_aligned (GTK_GRID (grid), 0, 5,
|
|
_("Si_ngular:"), 0.0, 0.5,
|
|
entry, 1);
|
|
|
|
pika_help_set_help_data (entry, gettext (columns[SINGULAR].help), NULL);
|
|
|
|
entry = plural_entry = gtk_entry_new ();
|
|
if (template != PIKA_UNIT_PIXEL)
|
|
{
|
|
gtk_entry_set_text (GTK_ENTRY (entry),
|
|
pika_unit_get_plural (template));
|
|
}
|
|
pika_grid_attach_aligned (GTK_GRID (grid), 0, 6,
|
|
_("_Plural:"), 0.0, 0.5,
|
|
entry, 1);
|
|
|
|
pika_help_set_help_data (entry, gettext (columns[PLURAL].help), NULL);
|
|
|
|
gtk_widget_show (dialog);
|
|
|
|
while (TRUE)
|
|
{
|
|
gchar *identifier;
|
|
gdouble factor;
|
|
gint digits;
|
|
gchar *symbol;
|
|
gchar *abbreviation;
|
|
gchar *singular;
|
|
gchar *plural;
|
|
|
|
if (pika_dialog_run (PIKA_DIALOG (dialog)) != GTK_RESPONSE_OK)
|
|
break;
|
|
|
|
identifier = g_strdup (gtk_entry_get_text (GTK_ENTRY (identifier_entry)));
|
|
factor = gtk_adjustment_get_value (factor_adj);
|
|
digits = gtk_adjustment_get_value (digits_adj);
|
|
symbol = g_strdup (gtk_entry_get_text (GTK_ENTRY (symbol_entry)));
|
|
abbreviation = g_strdup (gtk_entry_get_text (GTK_ENTRY (abbreviation_entry)));
|
|
singular = g_strdup (gtk_entry_get_text (GTK_ENTRY (singular_entry)));
|
|
plural = g_strdup (gtk_entry_get_text (GTK_ENTRY (plural_entry)));
|
|
|
|
identifier = g_strstrip (identifier);
|
|
symbol = g_strstrip (symbol);
|
|
abbreviation = g_strstrip (abbreviation);
|
|
singular = g_strstrip (singular);
|
|
plural = g_strstrip (plural);
|
|
|
|
if (! strlen (identifier) ||
|
|
! strlen (symbol) ||
|
|
! strlen (abbreviation) ||
|
|
! strlen (singular) ||
|
|
! strlen (plural))
|
|
{
|
|
GtkWidget *msg = gtk_message_dialog_new (GTK_WINDOW (dialog), 0,
|
|
GTK_MESSAGE_ERROR,
|
|
GTK_BUTTONS_OK,
|
|
_("Incomplete input"));
|
|
|
|
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (msg),
|
|
_("Please fill in all text fields."));
|
|
gtk_dialog_run (GTK_DIALOG (msg));
|
|
gtk_widget_destroy (msg);
|
|
|
|
continue;
|
|
}
|
|
|
|
unit = pika_unit_new (identifier,
|
|
factor, digits,
|
|
symbol, abbreviation, singular, plural);
|
|
|
|
g_free (identifier);
|
|
g_free (symbol);
|
|
g_free (abbreviation);
|
|
g_free (singular);
|
|
g_free (plural);
|
|
|
|
break;
|
|
}
|
|
|
|
gtk_widget_destroy (dialog);
|
|
|
|
return unit;
|
|
}
|
|
|
|
static void
|
|
new_unit_action (GSimpleAction *action,
|
|
GVariant *param,
|
|
gpointer user_data)
|
|
{
|
|
PikaUnitEditor *self = PIKA_UNIT_EDITOR (user_data);
|
|
PikaUnit unit;
|
|
|
|
unit = new_unit_dialog (self->window, PIKA_UNIT_PIXEL);
|
|
|
|
if (unit != PIKA_UNIT_PIXEL)
|
|
{
|
|
GtkTreeModel *model;
|
|
GtkTreeIter iter;
|
|
|
|
unit_list_init (GTK_TREE_VIEW (self->tv));
|
|
|
|
model = gtk_tree_view_get_model (GTK_TREE_VIEW (self->tv));
|
|
|
|
if (gtk_tree_model_get_iter_first (model, &iter) &&
|
|
gtk_tree_model_iter_nth_child (model, &iter,
|
|
NULL, unit - PIKA_UNIT_INCH))
|
|
{
|
|
GtkTreeSelection *selection;
|
|
GtkAdjustment *adj;
|
|
|
|
selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (self->tv));
|
|
gtk_tree_selection_select_iter (selection, &iter);
|
|
|
|
adj = gtk_scrollable_get_vadjustment (GTK_SCROLLABLE (self->tv));
|
|
gtk_adjustment_set_value (adj, gtk_adjustment_get_upper (adj));
|
|
}
|
|
}
|
|
}
|
|
|
|
static void
|
|
duplicate_unit_action (GSimpleAction *action,
|
|
GVariant *param,
|
|
gpointer user_data)
|
|
{
|
|
PikaUnitEditor *self = PIKA_UNIT_EDITOR (user_data);
|
|
GtkTreeModel *model;
|
|
GtkTreeSelection *sel;
|
|
GtkTreeIter iter;
|
|
|
|
model = gtk_tree_view_get_model (GTK_TREE_VIEW (self->tv));
|
|
sel = gtk_tree_view_get_selection (GTK_TREE_VIEW (self->tv));
|
|
|
|
if (gtk_tree_selection_get_selected (sel, NULL, &iter))
|
|
{
|
|
PikaUnit unit;
|
|
|
|
gtk_tree_model_get (model, &iter,
|
|
UNIT, &unit,
|
|
-1);
|
|
|
|
unit = new_unit_dialog (self->window, unit);
|
|
|
|
if (unit != PIKA_UNIT_PIXEL)
|
|
{
|
|
GtkTreeIter iter;
|
|
|
|
unit_list_init (GTK_TREE_VIEW (self->tv));
|
|
|
|
if (gtk_tree_model_get_iter_first (model, &iter) &&
|
|
gtk_tree_model_iter_nth_child (model, &iter,
|
|
NULL, unit - PIKA_UNIT_INCH))
|
|
{
|
|
GtkAdjustment *adj;
|
|
|
|
gtk_tree_selection_select_iter (sel, &iter);
|
|
|
|
adj = gtk_scrollable_get_vadjustment (GTK_SCROLLABLE (self->tv));
|
|
gtk_adjustment_set_value (adj, gtk_adjustment_get_upper (adj));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
static void
|
|
refresh_action (GSimpleAction *action,
|
|
GVariant *param,
|
|
gpointer user_data)
|
|
{
|
|
PikaUnitEditor *self = PIKA_UNIT_EDITOR (user_data);
|
|
|
|
unit_list_init (GTK_TREE_VIEW (self->tv));
|
|
}
|
|
|
|
static void
|
|
saved_toggled_callback (GtkCellRendererToggle *celltoggle,
|
|
gchar *path_string,
|
|
GtkListStore *list_store)
|
|
{
|
|
GtkTreePath *path;
|
|
GtkTreeIter iter;
|
|
gboolean saved;
|
|
PikaUnit unit;
|
|
|
|
path = gtk_tree_path_new_from_string (path_string);
|
|
|
|
if (! gtk_tree_model_get_iter (GTK_TREE_MODEL (list_store), &iter, path))
|
|
{
|
|
g_warning ("%s: bad tree path?", G_STRLOC);
|
|
return;
|
|
}
|
|
gtk_tree_path_free (path);
|
|
|
|
gtk_tree_model_get (GTK_TREE_MODEL (list_store), &iter,
|
|
SAVE, &saved,
|
|
UNIT, &unit,
|
|
-1);
|
|
|
|
if (unit >= pika_unit_get_number_of_built_in_units ())
|
|
{
|
|
pika_unit_set_deletion_flag (unit, saved);
|
|
gtk_list_store_set (GTK_LIST_STORE (list_store), &iter,
|
|
SAVE, ! saved,
|
|
-1);
|
|
}
|
|
}
|
|
|
|
static void
|
|
unit_list_init (GtkTreeView *tv)
|
|
{
|
|
GtkListStore *list_store;
|
|
GtkTreeIter iter;
|
|
gint num_units;
|
|
PikaUnit unit;
|
|
|
|
list_store = GTK_LIST_STORE (gtk_tree_view_get_model (tv));
|
|
|
|
gtk_list_store_clear (list_store);
|
|
|
|
num_units = pika_unit_get_number_of_units ();
|
|
|
|
for (unit = PIKA_UNIT_INCH; unit < num_units; unit++)
|
|
{
|
|
gboolean user_unit = (unit >= pika_unit_get_number_of_built_in_units ());
|
|
|
|
gtk_list_store_append (list_store, &iter);
|
|
gtk_list_store_set (list_store, &iter,
|
|
SAVE, ! pika_unit_get_deletion_flag (unit),
|
|
IDENTIFIER, pika_unit_get_identifier (unit),
|
|
FACTOR, pika_unit_get_factor (unit),
|
|
DIGITS, pika_unit_get_digits (unit),
|
|
SYMBOL, pika_unit_get_symbol (unit),
|
|
ABBREVIATION, pika_unit_get_abbreviation (unit),
|
|
SINGULAR, pika_unit_get_singular (unit),
|
|
PLURAL, pika_unit_get_plural (unit),
|
|
UNIT, unit,
|
|
USER_UNIT, user_unit,
|
|
-1);
|
|
}
|
|
|
|
if (gtk_tree_model_get_iter_first (GTK_TREE_MODEL (list_store), &iter))
|
|
gtk_tree_selection_select_iter (gtk_tree_view_get_selection (tv), &iter);
|
|
}
|