163 lines
4.8 KiB
C
163 lines
4.8 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 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 <gegl.h>
|
|
#include <gtk/gtk.h>
|
|
|
|
#include "libpikawidgets/pikawidgets.h"
|
|
|
|
#include "actions-types.h"
|
|
|
|
#include "widgets/pikamessagebox.h"
|
|
#include "widgets/pikamessagedialog.h"
|
|
|
|
#include "actions.h"
|
|
#include "window-commands.h"
|
|
|
|
#include "pika-intl.h"
|
|
|
|
|
|
/* public functions */
|
|
|
|
void
|
|
window_close_cmd_callback (PikaAction *action,
|
|
GVariant *value,
|
|
gpointer data)
|
|
{
|
|
GtkWidget *widget;
|
|
return_if_no_widget (widget, data);
|
|
|
|
if (! gtk_widget_is_toplevel (widget))
|
|
widget = gtk_widget_get_toplevel (widget);
|
|
|
|
if (widget && gtk_widget_get_window (widget))
|
|
{
|
|
GdkEvent *event = gdk_event_new (GDK_DELETE);
|
|
|
|
event->any.window = g_object_ref (gtk_widget_get_window (widget));
|
|
event->any.send_event = TRUE;
|
|
|
|
gtk_main_do_event (event);
|
|
gdk_event_free (event);
|
|
}
|
|
}
|
|
|
|
void
|
|
window_open_display_cmd_callback (PikaAction *action,
|
|
GVariant *value,
|
|
gpointer data)
|
|
{
|
|
GtkWidget *widget;
|
|
GtkWidget *dialog;
|
|
GtkWidget *entry;
|
|
return_if_no_widget (widget, data);
|
|
|
|
dialog = pika_message_dialog_new ("Open Display", PIKA_ICON_MASCOT_EEK,
|
|
widget, GTK_DIALOG_MODAL,
|
|
NULL, NULL,
|
|
|
|
_("_Cancel"), GTK_RESPONSE_CANCEL,
|
|
_("_OK"), GTK_RESPONSE_OK,
|
|
|
|
NULL);
|
|
|
|
pika_dialog_set_alternative_button_order (GTK_DIALOG (dialog),
|
|
GTK_RESPONSE_OK,
|
|
GTK_RESPONSE_CANCEL,
|
|
-1);
|
|
|
|
pika_message_box_set_primary_text (PIKA_MESSAGE_DIALOG (dialog)->box,
|
|
"Experimental multi-display stuff!\n"
|
|
"Click OK and have fun crashing PIKA...");
|
|
|
|
pika_message_box_set_text (PIKA_MESSAGE_DIALOG (dialog)->box,
|
|
"Please enter the name of the new display:");
|
|
|
|
entry = gtk_entry_new ();
|
|
gtk_entry_set_activates_default (GTK_ENTRY (entry), TRUE);
|
|
gtk_box_pack_start (GTK_BOX (PIKA_MESSAGE_DIALOG (dialog)->box), entry,
|
|
TRUE, TRUE, 0);
|
|
|
|
gtk_widget_grab_focus (entry);
|
|
gtk_widget_show_all (dialog);
|
|
|
|
while (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_OK)
|
|
{
|
|
gchar *screen_name;
|
|
|
|
screen_name = gtk_editable_get_chars (GTK_EDITABLE (entry), 0, -1);
|
|
|
|
if (strcmp (screen_name, ""))
|
|
{
|
|
GdkDisplay *display;
|
|
|
|
gtk_widget_set_sensitive (dialog, FALSE);
|
|
|
|
display = gdk_display_open (screen_name);
|
|
|
|
if (! display)
|
|
pika_message_box_set_text (PIKA_MESSAGE_DIALOG (dialog)->box,
|
|
"Can't open display '%s'. "
|
|
"Please try another one:",
|
|
screen_name);
|
|
|
|
g_free (screen_name);
|
|
|
|
gtk_widget_set_sensitive (dialog, TRUE);
|
|
|
|
if (display)
|
|
break;
|
|
}
|
|
|
|
gtk_widget_grab_focus (entry);
|
|
}
|
|
|
|
gtk_widget_destroy (dialog);
|
|
}
|
|
|
|
void
|
|
window_move_to_screen_cmd_callback (PikaAction *action,
|
|
GVariant *value,
|
|
gpointer data)
|
|
{
|
|
GtkWidget *widget;
|
|
#if 0
|
|
GdkScreen *screen;
|
|
#endif
|
|
return_if_no_widget (widget, data);
|
|
|
|
#if 0
|
|
if (! gtk_widget_is_toplevel (widget))
|
|
widget = gtk_widget_get_toplevel (widget);
|
|
|
|
screen = g_object_get_data (G_OBJECT (current), "screen");
|
|
|
|
if (GDK_IS_SCREEN (screen) && screen != gtk_widget_get_screen (widget))
|
|
{
|
|
gtk_window_set_screen (GTK_WINDOW (widget), screen);
|
|
}
|
|
#endif
|
|
}
|