Updated with upstream update
This commit is contained in:
@ -287,10 +287,7 @@ progress_error_dialog (PikaProgress *progress)
|
||||
}
|
||||
else
|
||||
{
|
||||
guint32 window_id = pika_progress_get_window_id (progress);
|
||||
|
||||
if (window_id)
|
||||
pika_window_set_transient_for (GTK_WINDOW (dialog), window_id);
|
||||
pika_window_set_transient_for (GTK_WINDOW (dialog), progress);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -62,6 +62,8 @@
|
||||
#include "core/pikacancelable.h"
|
||||
#include "core/pikacontainer.h"
|
||||
#include "core/pikacontext.h"
|
||||
#include "core/pikadatafactory.h"
|
||||
#include "core/pikadrawable.h"
|
||||
#include "core/pikagradient.h"
|
||||
#include "core/pikaimage.h"
|
||||
#include "core/pikaimagefile.h"
|
||||
@ -89,6 +91,7 @@
|
||||
#include "widgets/pikamenufactory.h"
|
||||
#include "widgets/pikapaletteselect.h"
|
||||
#include "widgets/pikapatternselect.h"
|
||||
#include "widgets/pikapickableselect.h"
|
||||
#include "widgets/pikaprogressdialog.h"
|
||||
#include "widgets/pikauimanager.h"
|
||||
#include "widgets/pikawidgets-utils.h"
|
||||
@ -136,7 +139,7 @@ static GFile * gui_get_theme_dir (Pika *pika);
|
||||
static GFile * gui_get_icon_theme_dir (Pika *pika);
|
||||
static PikaObject * gui_get_window_strategy (Pika *pika);
|
||||
static PikaDisplay * gui_get_empty_display (Pika *pika);
|
||||
static guint32 gui_display_get_window_id (PikaDisplay *display);
|
||||
static GBytes * gui_display_get_window_id (PikaDisplay *display);
|
||||
static PikaDisplay * gui_display_create (Pika *pika,
|
||||
PikaImage *image,
|
||||
PikaUnit unit,
|
||||
@ -156,18 +159,19 @@ static void gui_free_progress (Pika *pika,
|
||||
static gboolean gui_pdb_dialog_new (Pika *pika,
|
||||
PikaContext *context,
|
||||
PikaProgress *progress,
|
||||
PikaContainer *container,
|
||||
GType object_type,
|
||||
GBytes *parent_handle,
|
||||
const gchar *title,
|
||||
const gchar *callback_name,
|
||||
const gchar *object_name,
|
||||
PikaObject *object,
|
||||
va_list args);
|
||||
static gboolean gui_pdb_dialog_set (Pika *pika,
|
||||
PikaContainer *container,
|
||||
GType contents_type,
|
||||
const gchar *callback_name,
|
||||
const gchar *object_name,
|
||||
PikaObject *object,
|
||||
va_list args);
|
||||
static gboolean gui_pdb_dialog_close (Pika *pika,
|
||||
PikaContainer *container,
|
||||
GType contents_type,
|
||||
const gchar *callback_name);
|
||||
static gboolean gui_recent_list_add_file (Pika *pika,
|
||||
GFile *file,
|
||||
@ -378,7 +382,7 @@ gui_get_empty_display (Pika *pika)
|
||||
return display;
|
||||
}
|
||||
|
||||
static guint32
|
||||
static GBytes *
|
||||
gui_display_get_window_id (PikaDisplay *display)
|
||||
{
|
||||
PikaDisplay *disp = PIKA_DISPLAY (display);
|
||||
@ -386,13 +390,11 @@ gui_display_get_window_id (PikaDisplay *display)
|
||||
|
||||
if (shell)
|
||||
{
|
||||
GtkWidget *toplevel = gtk_widget_get_toplevel (GTK_WIDGET (shell));
|
||||
|
||||
if (GTK_IS_WINDOW (toplevel))
|
||||
return pika_window_get_native_id (GTK_WINDOW (toplevel));
|
||||
if (shell)
|
||||
return g_bytes_ref (shell->window_handle);
|
||||
}
|
||||
|
||||
return 0;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static PikaDisplay *
|
||||
@ -516,16 +518,16 @@ gui_wait (Pika *pika,
|
||||
args = pika_procedure_get_arguments (procedure);
|
||||
pika_value_array_truncate (args, 5);
|
||||
|
||||
g_value_set_enum (pika_value_array_index (args, 0),
|
||||
PIKA_RUN_INTERACTIVE);
|
||||
g_value_set_int (pika_value_array_index (args, 1),
|
||||
output_pipe[0]);
|
||||
g_value_set_int (pika_value_array_index (args, 2),
|
||||
input_pipe[1]);
|
||||
g_value_set_string (pika_value_array_index (args, 3),
|
||||
message);
|
||||
g_value_set_int (pika_value_array_index (args, 4),
|
||||
PIKA_IS_CANCELABLE (waitable));
|
||||
g_value_set_enum (pika_value_array_index (args, 0),
|
||||
PIKA_RUN_INTERACTIVE);
|
||||
g_value_set_int (pika_value_array_index (args, 1),
|
||||
output_pipe[0]);
|
||||
g_value_set_int (pika_value_array_index (args, 2),
|
||||
input_pipe[1]);
|
||||
g_value_set_string (pika_value_array_index (args, 3),
|
||||
message);
|
||||
g_value_set_boolean (pika_value_array_index (args, 4),
|
||||
PIKA_IS_CANCELABLE (waitable));
|
||||
|
||||
pika_procedure_execute_async (procedure, pika,
|
||||
pika_get_user_context (pika),
|
||||
@ -616,65 +618,74 @@ static gboolean
|
||||
gui_pdb_dialog_new (Pika *pika,
|
||||
PikaContext *context,
|
||||
PikaProgress *progress,
|
||||
PikaContainer *container,
|
||||
GType contents_type,
|
||||
GBytes *parent_handle,
|
||||
const gchar *title,
|
||||
const gchar *callback_name,
|
||||
const gchar *object_name,
|
||||
PikaObject *object,
|
||||
va_list args)
|
||||
{
|
||||
GType dialog_type = G_TYPE_NONE;
|
||||
const gchar *dialog_role = NULL;
|
||||
const gchar *help_id = NULL;
|
||||
|
||||
if (pika_container_get_children_type (container) == PIKA_TYPE_BRUSH)
|
||||
if (contents_type == PIKA_TYPE_BRUSH)
|
||||
{
|
||||
dialog_type = PIKA_TYPE_BRUSH_SELECT;
|
||||
dialog_role = "pika-brush-selection";
|
||||
help_id = PIKA_HELP_BRUSH_DIALOG;
|
||||
}
|
||||
else if (pika_container_get_children_type (container) == PIKA_TYPE_FONT)
|
||||
else if (contents_type == PIKA_TYPE_FONT)
|
||||
{
|
||||
dialog_type = PIKA_TYPE_FONT_SELECT;
|
||||
dialog_role = "pika-font-selection";
|
||||
help_id = PIKA_HELP_FONT_DIALOG;
|
||||
}
|
||||
else if (pika_container_get_children_type (container) == PIKA_TYPE_GRADIENT)
|
||||
else if (contents_type == PIKA_TYPE_GRADIENT)
|
||||
{
|
||||
dialog_type = PIKA_TYPE_GRADIENT_SELECT;
|
||||
dialog_role = "pika-gradient-selection";
|
||||
help_id = PIKA_HELP_GRADIENT_DIALOG;
|
||||
}
|
||||
else if (pika_container_get_children_type (container) == PIKA_TYPE_PALETTE)
|
||||
else if (contents_type == PIKA_TYPE_PALETTE)
|
||||
{
|
||||
dialog_type = PIKA_TYPE_PALETTE_SELECT;
|
||||
dialog_role = "pika-palette-selection";
|
||||
help_id = PIKA_HELP_PALETTE_DIALOG;
|
||||
}
|
||||
else if (pika_container_get_children_type (container) == PIKA_TYPE_PATTERN)
|
||||
else if (contents_type == PIKA_TYPE_PATTERN)
|
||||
{
|
||||
dialog_type = PIKA_TYPE_PATTERN_SELECT;
|
||||
dialog_role = "pika-pattern-selection";
|
||||
help_id = PIKA_HELP_PATTERN_DIALOG;
|
||||
}
|
||||
else if (g_type_is_a (contents_type, PIKA_TYPE_DRAWABLE))
|
||||
{
|
||||
dialog_type = PIKA_TYPE_PICKABLE_SELECT;
|
||||
dialog_role = "pika-pickable-selection";
|
||||
}
|
||||
else
|
||||
{
|
||||
g_return_val_if_reached (FALSE);
|
||||
}
|
||||
|
||||
if (dialog_type != G_TYPE_NONE)
|
||||
{
|
||||
PikaObject *object = NULL;
|
||||
if (! object && ! g_type_is_a (contents_type, PIKA_TYPE_DRAWABLE))
|
||||
object = pika_context_get_by_type (context, contents_type);
|
||||
|
||||
if (object_name && strlen (object_name))
|
||||
object = pika_container_get_child_by_name (container, object_name);
|
||||
|
||||
if (! object)
|
||||
object = pika_context_get_by_type (context,
|
||||
pika_container_get_children_type (container));
|
||||
|
||||
if (object)
|
||||
if (object || g_type_is_a (contents_type, PIKA_TYPE_DRAWABLE))
|
||||
{
|
||||
gint n_properties = 0;
|
||||
gchar **names = NULL;
|
||||
GValue *values = NULL;
|
||||
GtkWidget *dialog;
|
||||
GtkWidget *view;
|
||||
gboolean use_header_bar;
|
||||
|
||||
g_object_get (gtk_settings_get_default (),
|
||||
"gtk-dialogs-use-header", &use_header_bar,
|
||||
NULL);
|
||||
|
||||
names = pika_properties_append (dialog_type,
|
||||
&n_properties, names, &values,
|
||||
@ -684,10 +695,11 @@ gui_pdb_dialog_new (Pika *pika,
|
||||
"help-id", help_id,
|
||||
"pdb", pika->pdb,
|
||||
"context", context,
|
||||
"select-type", pika_container_get_children_type (container),
|
||||
"select-type", contents_type,
|
||||
"initial-object", object,
|
||||
"callback-name", callback_name,
|
||||
"menu-factory", menus_get_global_menu_factory (pika),
|
||||
"use-header-bar", use_header_bar,
|
||||
NULL);
|
||||
|
||||
names = pika_properties_append_valist (dialog_type,
|
||||
@ -707,27 +719,25 @@ gui_pdb_dialog_new (Pika *pika,
|
||||
pika_docked_set_show_button_bar (PIKA_DOCKED (view), FALSE);
|
||||
|
||||
if (progress)
|
||||
{
|
||||
guint32 window_id = pika_progress_get_window_id (progress);
|
||||
|
||||
if (window_id)
|
||||
pika_window_set_transient_for (GTK_WINDOW (dialog), window_id);
|
||||
}
|
||||
pika_window_set_transient_for (GTK_WINDOW (dialog), progress);
|
||||
|
||||
gtk_widget_show (dialog);
|
||||
|
||||
/* workaround for bug #360106 */
|
||||
{
|
||||
GSource *source = g_timeout_source_new (100);
|
||||
GClosure *closure;
|
||||
{
|
||||
GSource *source = g_timeout_source_new (100);
|
||||
GClosure *closure;
|
||||
|
||||
closure = g_cclosure_new_object (G_CALLBACK (gui_pdb_dialog_present),
|
||||
G_OBJECT (dialog));
|
||||
closure = g_cclosure_new_object (G_CALLBACK (gui_pdb_dialog_present),
|
||||
G_OBJECT (dialog));
|
||||
|
||||
g_source_set_closure (source, closure);
|
||||
g_source_attach (source, NULL);
|
||||
g_source_unref (source);
|
||||
}
|
||||
g_source_set_closure (source, closure);
|
||||
g_source_attach (source, NULL);
|
||||
g_source_unref (source);
|
||||
}
|
||||
|
||||
if (parent_handle != NULL)
|
||||
pika_window_set_transient_for_handle (GTK_WINDOW (dialog), parent_handle);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
@ -738,73 +748,96 @@ gui_pdb_dialog_new (Pika *pika,
|
||||
|
||||
static gboolean
|
||||
gui_pdb_dialog_set (Pika *pika,
|
||||
PikaContainer *container,
|
||||
GType contents_type,
|
||||
const gchar *callback_name,
|
||||
const gchar *object_name,
|
||||
PikaObject *object,
|
||||
va_list args)
|
||||
{
|
||||
PikaPdbDialogClass *klass = NULL;
|
||||
PikaPdbDialogClass *klass = NULL;
|
||||
PikaContainer *container = NULL;
|
||||
PikaPdbDialog *dialog;
|
||||
|
||||
if (pika_container_get_children_type (container) == PIKA_TYPE_BRUSH)
|
||||
klass = g_type_class_peek (PIKA_TYPE_BRUSH_SELECT);
|
||||
else if (pika_container_get_children_type (container) == PIKA_TYPE_FONT)
|
||||
klass = g_type_class_peek (PIKA_TYPE_FONT_SELECT);
|
||||
else if (pika_container_get_children_type (container) == PIKA_TYPE_GRADIENT)
|
||||
klass = g_type_class_peek (PIKA_TYPE_GRADIENT_SELECT);
|
||||
else if (pika_container_get_children_type (container) == PIKA_TYPE_PALETTE)
|
||||
klass = g_type_class_peek (PIKA_TYPE_PALETTE_SELECT);
|
||||
else if (pika_container_get_children_type (container) == PIKA_TYPE_PATTERN)
|
||||
klass = g_type_class_peek (PIKA_TYPE_PATTERN_SELECT);
|
||||
|
||||
if (klass)
|
||||
if (contents_type == PIKA_TYPE_BRUSH)
|
||||
{
|
||||
PikaPdbDialog *dialog;
|
||||
klass = g_type_class_peek (PIKA_TYPE_BRUSH_SELECT);
|
||||
container = pika_data_factory_get_container (pika->brush_factory);
|
||||
}
|
||||
else if (contents_type == PIKA_TYPE_FONT)
|
||||
{
|
||||
klass = g_type_class_peek (PIKA_TYPE_FONT_SELECT);
|
||||
container = pika_data_factory_get_container (pika->font_factory);
|
||||
}
|
||||
else if (contents_type == PIKA_TYPE_GRADIENT)
|
||||
{
|
||||
klass = g_type_class_peek (PIKA_TYPE_GRADIENT_SELECT);
|
||||
container = pika_data_factory_get_container (pika->gradient_factory);
|
||||
}
|
||||
else if (contents_type == PIKA_TYPE_PALETTE)
|
||||
{
|
||||
klass = g_type_class_peek (PIKA_TYPE_PALETTE_SELECT);
|
||||
container = pika_data_factory_get_container (pika->palette_factory);
|
||||
}
|
||||
else if (contents_type == PIKA_TYPE_PATTERN)
|
||||
{
|
||||
klass = g_type_class_peek (PIKA_TYPE_PATTERN_SELECT);
|
||||
container = pika_data_factory_get_container (pika->pattern_factory);
|
||||
}
|
||||
else if (contents_type == PIKA_TYPE_DRAWABLE)
|
||||
{
|
||||
klass = g_type_class_peek (PIKA_TYPE_PICKABLE_SELECT);
|
||||
}
|
||||
|
||||
dialog = pika_pdb_dialog_get_by_callback (klass, callback_name);
|
||||
g_return_val_if_fail (klass != NULL, FALSE);
|
||||
|
||||
if (dialog && dialog->select_type == pika_container_get_children_type (container))
|
||||
dialog = pika_pdb_dialog_get_by_callback (klass, callback_name);
|
||||
|
||||
if (dialog != NULL &&
|
||||
dialog->select_type == contents_type &&
|
||||
(container == NULL || pika_container_get_child_index (container, object) != -1))
|
||||
{
|
||||
const gchar *prop_name = va_arg (args, const gchar *);
|
||||
|
||||
if (g_type_is_a (contents_type, PIKA_TYPE_RESOURCE))
|
||||
{
|
||||
PikaObject *object;
|
||||
|
||||
object = pika_container_get_child_by_name (container, object_name);
|
||||
|
||||
if (object)
|
||||
{
|
||||
const gchar *prop_name = va_arg (args, const gchar *);
|
||||
|
||||
pika_context_set_by_type (dialog->context, dialog->select_type,
|
||||
object);
|
||||
|
||||
if (prop_name)
|
||||
g_object_set_valist (G_OBJECT (dialog), prop_name, args);
|
||||
|
||||
gtk_window_present (GTK_WINDOW (dialog));
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
g_return_val_if_fail (container != NULL, FALSE);
|
||||
pika_context_set_by_type (dialog->context, dialog->select_type, object);
|
||||
}
|
||||
else
|
||||
{
|
||||
g_return_val_if_fail (klass->set_object != NULL, FALSE);
|
||||
klass->set_object (dialog, object);
|
||||
}
|
||||
|
||||
if (prop_name)
|
||||
g_object_set_valist (G_OBJECT (dialog), prop_name, args);
|
||||
|
||||
gtk_window_present (GTK_WINDOW (dialog));
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
gui_pdb_dialog_close (Pika *pika,
|
||||
PikaContainer *container,
|
||||
const gchar *callback_name)
|
||||
gui_pdb_dialog_close (Pika *pika,
|
||||
GType contents_type,
|
||||
const gchar *callback_name)
|
||||
{
|
||||
PikaPdbDialogClass *klass = NULL;
|
||||
|
||||
if (pika_container_get_children_type (container) == PIKA_TYPE_BRUSH)
|
||||
if (contents_type == PIKA_TYPE_BRUSH)
|
||||
klass = g_type_class_peek (PIKA_TYPE_BRUSH_SELECT);
|
||||
else if (pika_container_get_children_type (container) == PIKA_TYPE_FONT)
|
||||
else if (contents_type == PIKA_TYPE_FONT)
|
||||
klass = g_type_class_peek (PIKA_TYPE_FONT_SELECT);
|
||||
else if (pika_container_get_children_type (container) == PIKA_TYPE_GRADIENT)
|
||||
else if (contents_type == PIKA_TYPE_GRADIENT)
|
||||
klass = g_type_class_peek (PIKA_TYPE_GRADIENT_SELECT);
|
||||
else if (pika_container_get_children_type (container) == PIKA_TYPE_PALETTE)
|
||||
else if (contents_type == PIKA_TYPE_PALETTE)
|
||||
klass = g_type_class_peek (PIKA_TYPE_PALETTE_SELECT);
|
||||
else if (pika_container_get_children_type (container) == PIKA_TYPE_PATTERN)
|
||||
else if (contents_type == PIKA_TYPE_PATTERN)
|
||||
klass = g_type_class_peek (PIKA_TYPE_PATTERN_SELECT);
|
||||
else if (contents_type == PIKA_TYPE_DRAWABLE)
|
||||
klass = g_type_class_peek (PIKA_TYPE_PICKABLE_SELECT);
|
||||
|
||||
if (klass)
|
||||
{
|
||||
@ -812,7 +845,7 @@ gui_pdb_dialog_close (Pika *pika,
|
||||
|
||||
dialog = pika_pdb_dialog_get_by_callback (klass, callback_name);
|
||||
|
||||
if (dialog && dialog->select_type == pika_container_get_children_type (container))
|
||||
if (dialog && dialog->select_type == contents_type)
|
||||
{
|
||||
gtk_widget_destroy (GTK_WIDGET (dialog));
|
||||
return TRUE;
|
||||
|
@ -90,6 +90,12 @@
|
||||
#include "splash.h"
|
||||
#include "themes.h"
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
#ifdef GDK_WINDOWING_QUARTZ
|
||||
#import <AppKit/AppKit.h>
|
||||
|
||||
@ -543,6 +549,11 @@ gui_restore_after_callback (Pika *pika,
|
||||
PikaGuiConfig *gui_config = PIKA_GUI_CONFIG (pika->config);
|
||||
PikaUIManager *image_ui_manager;
|
||||
PikaDisplay *display;
|
||||
#ifdef G_OS_WIN32
|
||||
STARTUPINFO StartupInfo;
|
||||
|
||||
GetStartupInfo (&StartupInfo);
|
||||
#endif
|
||||
|
||||
if (pika->be_verbose)
|
||||
g_print ("INIT: %s\n", G_STRFUNC);
|
||||
@ -610,11 +621,23 @@ gui_restore_after_callback (Pika *pika,
|
||||
|
||||
shell = pika_display_get_shell (display);
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
themes_set_title_bar (pika);
|
||||
#endif
|
||||
|
||||
if (gui_config->restore_session)
|
||||
session_restore (pika, initial_monitor);
|
||||
|
||||
toplevel = gtk_widget_get_toplevel (GTK_WIDGET (shell));
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
/* Prevents window from reappearing on start-up if the user
|
||||
* requested it to be minimized via window hints
|
||||
*/
|
||||
if (StartupInfo.wShowWindow != SW_SHOWMINIMIZED &&
|
||||
StartupInfo.wShowWindow != SW_SHOWMINNOACTIVE &&
|
||||
StartupInfo.wShowWindow != SW_MINIMIZE)
|
||||
#endif
|
||||
/* move keyboard focus to the display */
|
||||
gtk_window_present (GTK_WINDOW (toplevel));
|
||||
}
|
||||
@ -925,12 +948,26 @@ gui_check_unique_accelerators (Pika *pika)
|
||||
gchar **disabled_accels;
|
||||
gint len;
|
||||
gint remove;
|
||||
gboolean print_warning = TRUE;
|
||||
|
||||
action = g_action_map_lookup_action (G_ACTION_MAP (pika->app),
|
||||
actions[i]);
|
||||
/* Just keep the first one (no reason other than we have
|
||||
* to choose), unless it's a secondary shortcut, and the
|
||||
* second is a primary shortcut.
|
||||
*/
|
||||
if (l == 0 && j != 0)
|
||||
if ((l == 0 && j != 0) ||
|
||||
/* If the first action is one of "view-zoom-1-*" and
|
||||
* the shortcut default, we assume it's because of our
|
||||
* trick to transform `Shift+num` shortcuts based on
|
||||
* layout and we happen to be on a layout where it
|
||||
* clashes with other shortcuts. In this case, we
|
||||
* drop the duplicate shortcut on the zoom action. See
|
||||
* special code in
|
||||
* pika_action_group_add_action_with_accel()
|
||||
*/
|
||||
(g_str_has_prefix (actions[i], "view-zoom-1-") &&
|
||||
pika_action_is_default_accel (PIKA_ACTION (action), accels[j])))
|
||||
{
|
||||
disabled_action = actions[i];
|
||||
disabled_accels = accels;
|
||||
@ -942,6 +979,20 @@ gui_check_unique_accelerators (Pika *pika)
|
||||
disabled_accels = accels2;
|
||||
remove = l;
|
||||
}
|
||||
|
||||
action = g_action_map_lookup_action (G_ACTION_MAP (pika->app),
|
||||
disabled_action);
|
||||
|
||||
if (g_str_has_prefix (disabled_action, "view-zoom-1-") &&
|
||||
pika_action_is_default_accel (PIKA_ACTION (action), disabled_accels[remove]))
|
||||
/* We drop the shortcut **silently** because it will be
|
||||
* a case where we have 2 default accelerators clashing
|
||||
* (because of the conversion code) while not being a
|
||||
* real bug. Clashes with custom accelerators are
|
||||
* handled by shortcuts_action_deserialize().
|
||||
*/
|
||||
print_warning = FALSE;
|
||||
|
||||
/* Remove only the duplicate shortcut but keep others. */
|
||||
len = g_strv_length (disabled_accels);
|
||||
g_free (disabled_accels[remove]);
|
||||
@ -949,12 +1000,11 @@ gui_check_unique_accelerators (Pika *pika)
|
||||
&disabled_accels[remove + 1],
|
||||
sizeof (char *) * (len - remove));
|
||||
|
||||
g_printerr ("Actions \"%s\" and \"%s\" use the same accelerator.\n"
|
||||
" Disabling the accelerator on \"%s\".\n",
|
||||
actions[i], actions[k], disabled_action);
|
||||
if (print_warning)
|
||||
g_printerr ("Actions \"%s\" and \"%s\" use the same accelerator.\n"
|
||||
" Disabling the accelerator on \"%s\".\n",
|
||||
actions[i], actions[k], disabled_action);
|
||||
|
||||
action = g_action_map_lookup_action (G_ACTION_MAP (pika->app),
|
||||
disabled_action);
|
||||
pika_action_set_accels (PIKA_ACTION (action),
|
||||
(const gchar **) disabled_accels);
|
||||
}
|
||||
|
@ -29,6 +29,12 @@
|
||||
#include <gdk/gdkwayland.h>
|
||||
#endif
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
#include "libpikabase/pikabase.h"
|
||||
#include "libpikamath/pikamath.h"
|
||||
#include "libpikacolor/pikacolor.h"
|
||||
@ -125,6 +131,11 @@ splash_create (Pika *pika,
|
||||
GdkRectangle workarea;
|
||||
gint max_width;
|
||||
gint max_height;
|
||||
#ifdef G_OS_WIN32
|
||||
STARTUPINFO StartupInfo;
|
||||
|
||||
GetStartupInfo (&StartupInfo);
|
||||
#endif
|
||||
|
||||
g_return_if_fail (splash == NULL);
|
||||
g_return_if_fail (GDK_IS_MONITOR (monitor));
|
||||
@ -255,6 +266,13 @@ splash_create (Pika *pika,
|
||||
|
||||
gtk_widget_show (splash->window);
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
if (StartupInfo.wShowWindow == SW_SHOWMINIMIZED ||
|
||||
StartupInfo.wShowWindow == SW_SHOWMINNOACTIVE ||
|
||||
StartupInfo.wShowWindow == SW_MINIMIZE)
|
||||
gtk_window_iconify (GTK_WINDOW (splash->window));
|
||||
#endif
|
||||
|
||||
if (FALSE)
|
||||
splash->timer = g_timer_new ();
|
||||
}
|
||||
|
@ -35,6 +35,10 @@
|
||||
|
||||
#include "core/pika.h"
|
||||
|
||||
#include "display/pikaimagewindow.h"
|
||||
|
||||
#include "widgets/pikawidgets-utils.h"
|
||||
|
||||
#include "themes.h"
|
||||
|
||||
#include "pika-intl.h"
|
||||
@ -109,6 +113,10 @@ themes_init (Pika *pika)
|
||||
pika);
|
||||
|
||||
themes_theme_change_notify (config, NULL, pika);
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
themes_set_title_bar (pika);
|
||||
#endif
|
||||
}
|
||||
|
||||
void
|
||||
@ -473,6 +481,10 @@ themes_theme_change_notify (PikaGuiConfig *config,
|
||||
g_object_unref (theme_css);
|
||||
|
||||
gtk_style_context_reset_widgets (gdk_screen_get_default ());
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
themes_set_title_bar (pika);
|
||||
#endif
|
||||
}
|
||||
|
||||
static void
|
||||
@ -553,3 +565,22 @@ themes_theme_paths_notify (PikaExtensionManager *manager,
|
||||
g_list_free_full (path, (GDestroyNotify) g_object_unref);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
themes_set_title_bar (Pika *pika)
|
||||
{
|
||||
#ifdef G_OS_WIN32
|
||||
GList *windows = pika_get_image_windows (pika);
|
||||
GList *iter;
|
||||
|
||||
for (iter = windows; iter; iter = g_list_next (iter))
|
||||
{
|
||||
GtkWidget *window = GTK_WIDGET (windows->data);
|
||||
|
||||
pika_window_set_title_bar_theme (pika, window, TRUE);
|
||||
}
|
||||
|
||||
if (windows)
|
||||
g_list_free (windows);
|
||||
#endif
|
||||
}
|
||||
|
@ -34,5 +34,6 @@ GFile * themes_get_theme_file (Pika *pika,
|
||||
const gchar *first_component,
|
||||
...) G_GNUC_NULL_TERMINATED;
|
||||
|
||||
void themes_set_title_bar (Pika *pika);
|
||||
|
||||
#endif /* __THEMES_H__ */
|
||||
|
Reference in New Issue
Block a user