xed/pluma/pluma-app.c

908 lines
19 KiB
C
Raw Normal View History

2011-11-07 13:46:58 -06:00
/*
2011-11-07 16:52:18 -06:00
* pluma-app.c
* This file is part of pluma
2011-11-07 13:46:58 -06:00
*
* Copyright (C) 2005-2006 - Paolo Maggi
*
* 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 2 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, write to the Free Software
2012-11-18 19:54:49 -06:00
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
2011-11-07 13:46:58 -06:00
*/
/*
2011-11-07 16:52:18 -06:00
* Modified by the pluma Team, 2005. See the AUTHORS file for a
* list of people on the pluma Team.
2011-11-07 13:46:58 -06:00
* See the ChangeLog files for a list of changes.
*
* $Id$
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <string.h>
#include <unistd.h>
#include <glib/gi18n.h>
2011-11-07 16:52:18 -06:00
#include "pluma-app.h"
#include "pluma-prefs-manager-app.h"
#include "pluma-commands.h"
#include "pluma-notebook.h"
#include "pluma-debug.h"
#include "pluma-utils.h"
#include "pluma-enum-types.h"
#include "pluma-dirs.h"
2011-11-07 13:46:58 -06:00
#ifdef OS_OSX
#include <ige-mac-integration.h>
#endif
2011-11-07 16:52:18 -06:00
#define PLUMA_PAGE_SETUP_FILE "pluma-page-setup"
#define PLUMA_PRINT_SETTINGS_FILE "pluma-print-settings"
2011-11-07 13:46:58 -06:00
2011-11-07 16:52:18 -06:00
#define PLUMA_APP_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE ((object), PLUMA_TYPE_APP, PlumaAppPrivate))
2011-11-07 13:46:58 -06:00
/* Properties */
enum
{
PROP_0,
PROP_LOCKDOWN
};
2011-11-07 16:52:18 -06:00
struct _PlumaAppPrivate
2011-11-07 13:46:58 -06:00
{
GList *windows;
2011-11-07 16:52:18 -06:00
PlumaWindow *active_window;
2011-11-07 13:46:58 -06:00
2011-11-07 16:52:18 -06:00
PlumaLockdownMask lockdown;
2011-11-07 13:46:58 -06:00
GtkPageSetup *page_setup;
GtkPrintSettings *print_settings;
};
2011-11-07 16:52:18 -06:00
G_DEFINE_TYPE(PlumaApp, pluma_app, G_TYPE_OBJECT)
2011-11-07 13:46:58 -06:00
static void
2011-11-07 16:52:18 -06:00
pluma_app_finalize (GObject *object)
2011-11-07 13:46:58 -06:00
{
2011-11-07 16:52:18 -06:00
PlumaApp *app = PLUMA_APP (object);
2011-11-07 13:46:58 -06:00
g_list_free (app->priv->windows);
if (app->priv->page_setup)
g_object_unref (app->priv->page_setup);
if (app->priv->print_settings)
g_object_unref (app->priv->print_settings);
2011-11-07 16:52:18 -06:00
G_OBJECT_CLASS (pluma_app_parent_class)->finalize (object);
2011-11-07 13:46:58 -06:00
}
static void
2011-11-07 16:52:18 -06:00
pluma_app_get_property (GObject *object,
2011-11-07 13:46:58 -06:00
guint prop_id,
GValue *value,
GParamSpec *pspec)
{
2011-11-07 16:52:18 -06:00
PlumaApp *app = PLUMA_APP (object);
2011-11-07 13:46:58 -06:00
switch (prop_id)
{
case PROP_LOCKDOWN:
2011-11-07 16:52:18 -06:00
g_value_set_flags (value, pluma_app_get_lockdown (app));
2011-11-07 13:46:58 -06:00
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
2011-11-07 16:52:18 -06:00
pluma_app_class_init (PlumaAppClass *klass)
2011-11-07 13:46:58 -06:00
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
2011-11-07 16:52:18 -06:00
object_class->finalize = pluma_app_finalize;
object_class->get_property = pluma_app_get_property;
2011-11-07 13:46:58 -06:00
g_object_class_install_property (object_class,
PROP_LOCKDOWN,
g_param_spec_flags ("lockdown",
"Lockdown",
"The lockdown mask",
2011-11-07 16:52:18 -06:00
PLUMA_TYPE_LOCKDOWN_MASK,
2011-11-07 13:46:58 -06:00
0,
G_PARAM_READABLE |
G_PARAM_STATIC_STRINGS));
2011-11-07 16:52:18 -06:00
g_type_class_add_private (object_class, sizeof(PlumaAppPrivate));
2011-11-07 13:46:58 -06:00
}
static gboolean
ensure_user_config_dir (void)
{
gchar *config_dir;
gboolean ret = TRUE;
gint res;
2011-11-07 16:52:18 -06:00
config_dir = pluma_dirs_get_user_config_dir ();
2011-11-07 13:46:58 -06:00
if (config_dir == NULL)
{
g_warning ("Could not get config directory\n");
return FALSE;
}
res = g_mkdir_with_parents (config_dir, 0755);
if (res < 0)
{
g_warning ("Could not create config directory\n");
ret = FALSE;
}
g_free (config_dir);
return ret;
}
static void
load_accels (void)
{
gchar *filename;
2011-11-07 16:52:18 -06:00
filename = pluma_dirs_get_user_accels_file ();
2011-11-07 13:46:58 -06:00
if (filename != NULL)
{
2011-11-07 16:52:18 -06:00
pluma_debug_message (DEBUG_APP, "Loading keybindings from %s\n", filename);
2011-11-07 13:46:58 -06:00
gtk_accel_map_load (filename);
g_free (filename);
}
}
static void
save_accels (void)
{
gchar *filename;
2011-11-07 16:52:18 -06:00
filename = pluma_dirs_get_user_accels_file ();
2011-11-07 13:46:58 -06:00
if (filename != NULL)
{
2011-11-07 16:52:18 -06:00
pluma_debug_message (DEBUG_APP, "Saving keybindings in %s\n", filename);
2011-11-07 13:46:58 -06:00
gtk_accel_map_save (filename);
g_free (filename);
}
}
static gchar *
get_page_setup_file (void)
{
gchar *config_dir;
gchar *setup = NULL;
2011-11-07 16:52:18 -06:00
config_dir = pluma_dirs_get_user_config_dir ();
2011-11-07 13:46:58 -06:00
if (config_dir != NULL)
{
setup = g_build_filename (config_dir,
2011-11-07 16:52:18 -06:00
PLUMA_PAGE_SETUP_FILE,
2011-11-07 13:46:58 -06:00
NULL);
g_free (config_dir);
}
return setup;
}
static void
2011-11-07 16:52:18 -06:00
load_page_setup (PlumaApp *app)
2011-11-07 13:46:58 -06:00
{
gchar *filename;
GError *error = NULL;
g_return_if_fail (app->priv->page_setup == NULL);
filename = get_page_setup_file ();
app->priv->page_setup = gtk_page_setup_new_from_file (filename,
&error);
if (error)
{
/* Ignore file not found error */
if (error->domain != G_FILE_ERROR ||
error->code != G_FILE_ERROR_NOENT)
{
g_warning ("%s", error->message);
}
g_error_free (error);
}
g_free (filename);
/* fall back to default settings */
if (app->priv->page_setup == NULL)
app->priv->page_setup = gtk_page_setup_new ();
}
static void
2011-11-07 16:52:18 -06:00
save_page_setup (PlumaApp *app)
2011-11-07 13:46:58 -06:00
{
gchar *filename;
GError *error = NULL;
if (app->priv->page_setup == NULL)
return;
filename = get_page_setup_file ();
gtk_page_setup_to_file (app->priv->page_setup,
filename,
&error);
if (error)
{
g_warning ("%s", error->message);
g_error_free (error);
}
g_free (filename);
}
static gchar *
get_print_settings_file (void)
{
gchar *config_dir;
gchar *settings = NULL;
2011-11-07 16:52:18 -06:00
config_dir = pluma_dirs_get_user_config_dir ();
2011-11-07 13:46:58 -06:00
if (config_dir != NULL)
{
settings = g_build_filename (config_dir,
2011-11-07 16:52:18 -06:00
PLUMA_PRINT_SETTINGS_FILE,
2011-11-07 13:46:58 -06:00
NULL);
g_free (config_dir);
}
return settings;
}
static void
2011-11-07 16:52:18 -06:00
load_print_settings (PlumaApp *app)
2011-11-07 13:46:58 -06:00
{
gchar *filename;
GError *error = NULL;
g_return_if_fail (app->priv->print_settings == NULL);
filename = get_print_settings_file ();
app->priv->print_settings = gtk_print_settings_new_from_file (filename,
&error);
if (error)
{
/* Ignore file not found error */
if (error->domain != G_FILE_ERROR ||
error->code != G_FILE_ERROR_NOENT)
{
g_warning ("%s", error->message);
}
g_error_free (error);
}
g_free (filename);
/* fall back to default settings */
if (app->priv->print_settings == NULL)
app->priv->print_settings = gtk_print_settings_new ();
}
static void
2011-11-07 16:52:18 -06:00
save_print_settings (PlumaApp *app)
2011-11-07 13:46:58 -06:00
{
gchar *filename;
GError *error = NULL;
if (app->priv->print_settings == NULL)
return;
filename = get_print_settings_file ();
gtk_print_settings_to_file (app->priv->print_settings,
filename,
&error);
if (error)
{
g_warning ("%s", error->message);
g_error_free (error);
}
g_free (filename);
}
static void
2011-11-07 16:52:18 -06:00
pluma_app_init (PlumaApp *app)
2011-11-07 13:46:58 -06:00
{
2011-11-07 16:52:18 -06:00
app->priv = PLUMA_APP_GET_PRIVATE (app);
2011-11-07 13:46:58 -06:00
load_accels ();
/* initial lockdown state */
2011-11-07 16:52:18 -06:00
app->priv->lockdown = pluma_prefs_manager_get_lockdown ();
2011-11-07 13:46:58 -06:00
}
static void
app_weak_notify (gpointer data,
GObject *where_the_app_was)
{
gtk_main_quit ();
}
/**
2011-11-07 16:52:18 -06:00
* pluma_app_get_default:
2011-11-07 13:46:58 -06:00
*
2011-11-07 16:52:18 -06:00
* Returns the #PlumaApp object. This object is a singleton and
* represents the running pluma instance.
2011-11-07 13:46:58 -06:00
*
2011-11-07 16:52:18 -06:00
* Return value: the #PlumaApp pointer
2011-11-07 13:46:58 -06:00
*/
2011-11-07 16:52:18 -06:00
PlumaApp *
pluma_app_get_default (void)
2011-11-07 13:46:58 -06:00
{
2011-11-07 16:52:18 -06:00
static PlumaApp *app = NULL;
2011-11-07 13:46:58 -06:00
if (app != NULL)
return app;
2011-11-07 16:52:18 -06:00
app = PLUMA_APP (g_object_new (PLUMA_TYPE_APP, NULL));
2011-11-07 13:46:58 -06:00
g_object_add_weak_pointer (G_OBJECT (app),
(gpointer) &app);
g_object_weak_ref (G_OBJECT (app),
app_weak_notify,
NULL);
return app;
}
static void
2011-11-07 16:52:18 -06:00
set_active_window (PlumaApp *app,
PlumaWindow *window)
2011-11-07 13:46:58 -06:00
{
app->priv->active_window = window;
}
static gboolean
2011-11-07 16:52:18 -06:00
window_focus_in_event (PlumaWindow *window,
2011-11-07 13:46:58 -06:00
GdkEventFocus *event,
2011-11-07 16:52:18 -06:00
PlumaApp *app)
2011-11-07 13:46:58 -06:00
{
/* updates active_view and active_child when a new toplevel receives focus */
2011-11-07 16:52:18 -06:00
g_return_val_if_fail (PLUMA_IS_WINDOW (window), FALSE);
2011-11-07 13:46:58 -06:00
set_active_window (app, window);
return FALSE;
}
static gboolean
2011-11-07 16:52:18 -06:00
window_delete_event (PlumaWindow *window,
2011-11-07 13:46:58 -06:00
GdkEvent *event,
2011-11-07 16:52:18 -06:00
PlumaApp *app)
2011-11-07 13:46:58 -06:00
{
2011-11-07 16:52:18 -06:00
PlumaWindowState ws;
2011-11-07 13:46:58 -06:00
2011-11-07 16:52:18 -06:00
ws = pluma_window_get_state (window);
2011-11-07 13:46:58 -06:00
if (ws &
2011-11-07 16:52:18 -06:00
(PLUMA_WINDOW_STATE_SAVING |
PLUMA_WINDOW_STATE_PRINTING |
PLUMA_WINDOW_STATE_SAVING_SESSION))
2011-11-07 13:46:58 -06:00
return TRUE;
2011-11-07 16:52:18 -06:00
_pluma_cmd_file_quit (NULL, window);
2011-11-07 13:46:58 -06:00
/* Do not destroy the window */
return TRUE;
}
static void
2011-11-07 16:52:18 -06:00
window_destroy (PlumaWindow *window,
PlumaApp *app)
2011-11-07 13:46:58 -06:00
{
app->priv->windows = g_list_remove (app->priv->windows,
window);
if (window == app->priv->active_window)
{
set_active_window (app, app->priv->windows != NULL ? app->priv->windows->data : NULL);
}
/* CHECK: I don't think we have to disconnect this function, since windows
is being destroyed */
/*
g_signal_handlers_disconnect_by_func (window,
G_CALLBACK (window_focus_in_event),
app);
g_signal_handlers_disconnect_by_func (window,
G_CALLBACK (window_destroy),
app);
*/
if (app->priv->windows == NULL)
{
#ifdef OS_OSX
2011-11-07 16:52:18 -06:00
if (!GPOINTER_TO_INT (g_object_get_data (G_OBJECT (window), "pluma-is-quitting-all")))
2011-11-07 13:46:58 -06:00
{
/* Create hidden proxy window on OS X to handle the menu */
2011-11-07 16:52:18 -06:00
pluma_app_create_window (app, NULL);
2011-11-07 13:46:58 -06:00
return;
}
#endif
/* Last window is gone... save some settings and exit */
ensure_user_config_dir ();
save_accels ();
save_page_setup (app);
save_print_settings (app);
g_object_unref (app);
}
}
/* Generates a unique string for a window role */
static gchar *
gen_role (void)
{
GTimeVal result;
static gint serial;
g_get_current_time (&result);
2011-11-07 16:52:18 -06:00
return g_strdup_printf ("pluma-window-%ld-%ld-%d-%s",
2011-11-07 13:46:58 -06:00
result.tv_sec,
result.tv_usec,
serial++,
g_get_host_name ());
}
2011-11-07 16:52:18 -06:00
static PlumaWindow *
pluma_app_create_window_real (PlumaApp *app,
2011-11-07 13:46:58 -06:00
gboolean set_geometry,
const gchar *role)
{
2011-11-07 16:52:18 -06:00
PlumaWindow *window;
2011-11-07 13:46:58 -06:00
2011-11-07 16:52:18 -06:00
pluma_debug (DEBUG_APP);
2011-11-07 13:46:58 -06:00
/*
* We need to be careful here, there is a race condition:
2011-11-07 16:52:18 -06:00
* when another pluma is launched it checks active_window,
2011-11-07 13:46:58 -06:00
* so we must do our best to ensure that active_window
* is never NULL when at least a window exists.
*/
if (app->priv->windows == NULL)
{
2011-11-07 16:52:18 -06:00
window = g_object_new (PLUMA_TYPE_WINDOW, NULL);
2011-11-07 13:46:58 -06:00
set_active_window (app, window);
}
else
{
2011-11-07 16:52:18 -06:00
window = g_object_new (PLUMA_TYPE_WINDOW, NULL);
2011-11-07 13:46:58 -06:00
}
app->priv->windows = g_list_prepend (app->priv->windows,
window);
2011-11-07 16:52:18 -06:00
pluma_debug_message (DEBUG_APP, "Window created");
2011-11-07 13:46:58 -06:00
if (role != NULL)
{
gtk_window_set_role (GTK_WINDOW (window), role);
}
else
{
gchar *newrole;
newrole = gen_role ();
gtk_window_set_role (GTK_WINDOW (window), newrole);
g_free (newrole);
}
if (set_geometry)
{
GdkWindowState state;
gint w, h;
2011-11-07 16:52:18 -06:00
state = pluma_prefs_manager_get_window_state ();
2011-11-07 13:46:58 -06:00
if ((state & GDK_WINDOW_STATE_MAXIMIZED) != 0)
{
2011-11-07 16:52:18 -06:00
pluma_prefs_manager_get_default_window_size (&w, &h);
2011-11-07 13:46:58 -06:00
gtk_window_set_default_size (GTK_WINDOW (window), w, h);
gtk_window_maximize (GTK_WINDOW (window));
}
else
{
2011-11-07 16:52:18 -06:00
pluma_prefs_manager_get_window_size (&w, &h);
2011-11-07 13:46:58 -06:00
gtk_window_set_default_size (GTK_WINDOW (window), w, h);
gtk_window_unmaximize (GTK_WINDOW (window));
}
if ((state & GDK_WINDOW_STATE_STICKY ) != 0)
gtk_window_stick (GTK_WINDOW (window));
else
gtk_window_unstick (GTK_WINDOW (window));
}
g_signal_connect (window,
"focus_in_event",
G_CALLBACK (window_focus_in_event),
app);
g_signal_connect (window,
"delete_event",
G_CALLBACK (window_delete_event),
app);
g_signal_connect (window,
"destroy",
G_CALLBACK (window_destroy),
app);
return window;
}
/**
2011-11-07 16:52:18 -06:00
* pluma_app_create_window:
* @app: the #PlumaApp
2011-11-07 13:46:58 -06:00
*
2011-11-07 16:52:18 -06:00
* Create a new #PlumaWindow part of @app.
2011-11-07 13:46:58 -06:00
*
2011-11-07 16:52:18 -06:00
* Return value: the new #PlumaWindow
2011-11-07 13:46:58 -06:00
*/
2011-11-07 16:52:18 -06:00
PlumaWindow *
pluma_app_create_window (PlumaApp *app,
2011-11-07 13:46:58 -06:00
GdkScreen *screen)
{
2011-11-07 16:52:18 -06:00
PlumaWindow *window;
2011-11-07 13:46:58 -06:00
2011-11-07 16:52:18 -06:00
window = pluma_app_create_window_real (app, TRUE, NULL);
2011-11-07 13:46:58 -06:00
if (screen != NULL)
gtk_window_set_screen (GTK_WINDOW (window), screen);
return window;
}
/*
* Same as _create_window, but doesn't set the geometry.
* The session manager takes care of it. Used in mate-session.
*/
2011-11-07 16:52:18 -06:00
PlumaWindow *
_pluma_app_restore_window (PlumaApp *app,
2011-11-07 13:46:58 -06:00
const gchar *role)
{
2011-11-07 16:52:18 -06:00
PlumaWindow *window;
2011-11-07 13:46:58 -06:00
2011-11-07 16:52:18 -06:00
window = pluma_app_create_window_real (app, FALSE, role);
2011-11-07 13:46:58 -06:00
return window;
}
/**
2011-11-07 16:52:18 -06:00
* pluma_app_get_windows:
* @app: the #PlumaApp
2011-11-07 13:46:58 -06:00
*
2011-11-07 16:52:18 -06:00
* Returns all the windows currently present in #PlumaApp.
2011-11-07 13:46:58 -06:00
*
2011-11-07 16:52:18 -06:00
* Return value: the list of #PlumaWindows objects. The list
2011-11-07 13:46:58 -06:00
* should not be freed
*/
const GList *
2011-11-07 16:52:18 -06:00
pluma_app_get_windows (PlumaApp *app)
2011-11-07 13:46:58 -06:00
{
2011-11-07 16:52:18 -06:00
g_return_val_if_fail (PLUMA_IS_APP (app), NULL);
2011-11-07 13:46:58 -06:00
return app->priv->windows;
}
/**
2011-11-07 16:52:18 -06:00
* pluma_app_get_active_window:
* @app: the #PlumaApp
2011-11-07 13:46:58 -06:00
*
2011-11-07 16:52:18 -06:00
* Retrives the #PlumaWindow currently active.
2011-11-07 13:46:58 -06:00
*
2011-11-07 16:52:18 -06:00
* Return value: the active #PlumaWindow
2011-11-07 13:46:58 -06:00
*/
2011-11-07 16:52:18 -06:00
PlumaWindow *
pluma_app_get_active_window (PlumaApp *app)
2011-11-07 13:46:58 -06:00
{
2011-11-07 16:52:18 -06:00
g_return_val_if_fail (PLUMA_IS_APP (app), NULL);
2011-11-07 13:46:58 -06:00
/* make sure our active window is always realized:
2011-11-07 16:52:18 -06:00
* this is needed on startup if we launch two pluma fast
2011-11-07 13:46:58 -06:00
* enough that the second instance comes up before the
* first one shows its window.
*/
2013-10-29 18:56:56 -05:00
if (!gtk_widget_get_realized (GTK_WIDGET (app->priv->active_window)))
2011-11-07 13:46:58 -06:00
gtk_widget_realize (GTK_WIDGET (app->priv->active_window));
return app->priv->active_window;
}
static gboolean
2011-11-07 16:52:18 -06:00
is_in_viewport (PlumaWindow *window,
2011-11-07 13:46:58 -06:00
GdkScreen *screen,
gint workspace,
gint viewport_x,
gint viewport_y)
{
GdkScreen *s;
GdkDisplay *display;
GdkWindow *gdkwindow;
const gchar *cur_name;
const gchar *name;
gint cur_n;
gint n;
gint ws;
gint sc_width, sc_height;
gint x, y, width, height;
gint vp_x, vp_y;
/* Check for screen and display match */
display = gdk_screen_get_display (screen);
cur_name = gdk_display_get_name (display);
cur_n = gdk_screen_get_number (screen);
s = gtk_window_get_screen (GTK_WINDOW (window));
display = gdk_screen_get_display (s);
name = gdk_display_get_name (display);
n = gdk_screen_get_number (s);
if (strcmp (cur_name, name) != 0 || cur_n != n)
return FALSE;
/* Check for workspace match */
2011-11-07 16:52:18 -06:00
ws = pluma_utils_get_window_workspace (GTK_WINDOW (window));
if (ws != workspace && ws != PLUMA_ALL_WORKSPACES)
2011-11-07 13:46:58 -06:00
return FALSE;
/* Check for viewport match */
gdkwindow = gtk_widget_get_window (GTK_WIDGET (window));
gdk_window_get_position (gdkwindow, &x, &y);
width = gdk_window_get_width(gdkwindow);
height = gdk_window_get_height(gdkwindow);
2011-11-07 16:52:18 -06:00
pluma_utils_get_current_viewport (screen, &vp_x, &vp_y);
2011-11-07 13:46:58 -06:00
x += vp_x;
y += vp_y;
sc_width = gdk_screen_get_width (screen);
sc_height = gdk_screen_get_height (screen);
return x + width * .25 >= viewport_x &&
x + width * .75 <= viewport_x + sc_width &&
y >= viewport_y &&
y + height <= viewport_y + sc_height;
}
/**
2011-11-07 16:52:18 -06:00
* _pluma_app_get_window_in_viewport
* @app: the #PlumaApp
2011-11-07 13:46:58 -06:00
* @screen: the #GdkScreen
* @workspace: the workspace number
* @viewport_x: the viewport horizontal origin
* @viewport_y: the viewport vertical origin
*
* Since a workspace can be larger than the screen, it is divided into several
2011-11-07 16:52:18 -06:00
* equal parts called viewports. This function retrives the #PlumaWindow in
2011-11-07 13:46:58 -06:00
* the given viewport of the given workspace.
*
2011-11-07 16:52:18 -06:00
* Return value: the #PlumaWindow in the given viewport of the given workspace.
2011-11-07 13:46:58 -06:00
*/
2011-11-07 16:52:18 -06:00
PlumaWindow *
_pluma_app_get_window_in_viewport (PlumaApp *app,
2011-11-07 13:46:58 -06:00
GdkScreen *screen,
gint workspace,
gint viewport_x,
gint viewport_y)
{
2011-11-07 16:52:18 -06:00
PlumaWindow *window;
2011-11-07 13:46:58 -06:00
GList *l;
2011-11-07 16:52:18 -06:00
g_return_val_if_fail (PLUMA_IS_APP (app), NULL);
2011-11-07 13:46:58 -06:00
/* first try if the active window */
window = app->priv->active_window;
2011-11-07 16:52:18 -06:00
g_return_val_if_fail (PLUMA_IS_WINDOW (window), NULL);
2011-11-07 13:46:58 -06:00
if (is_in_viewport (window, screen, workspace, viewport_x, viewport_y))
return window;
/* otherwise try to see if there is a window on this workspace */
for (l = app->priv->windows; l != NULL; l = l->next)
{
window = l->data;
if (is_in_viewport (window, screen, workspace, viewport_x, viewport_y))
return window;
}
/* no window on this workspace... create a new one */
2011-11-07 16:52:18 -06:00
return pluma_app_create_window (app, screen);
2011-11-07 13:46:58 -06:00
}
/**
2011-11-07 16:52:18 -06:00
* pluma_app_get_documents:
* @app: the #PlumaApp
2011-11-07 13:46:58 -06:00
*
2011-11-07 16:52:18 -06:00
* Returns all the documents currently open in #PlumaApp.
2011-11-07 13:46:58 -06:00
*
2011-11-07 16:52:18 -06:00
* Return value: a newly allocated list of #PlumaDocument objects
2011-11-07 13:46:58 -06:00
*/
GList *
2011-11-07 16:52:18 -06:00
pluma_app_get_documents (PlumaApp *app)
2011-11-07 13:46:58 -06:00
{
GList *res = NULL;
GList *windows;
2011-11-07 16:52:18 -06:00
g_return_val_if_fail (PLUMA_IS_APP (app), NULL);
2011-11-07 13:46:58 -06:00
windows = app->priv->windows;
while (windows != NULL)
{
res = g_list_concat (res,
2011-11-07 16:52:18 -06:00
pluma_window_get_documents (PLUMA_WINDOW (windows->data)));
2011-11-07 13:46:58 -06:00
windows = g_list_next (windows);
}
return res;
}
/**
2011-11-07 16:52:18 -06:00
* pluma_app_get_views:
* @app: the #PlumaApp
2011-11-07 13:46:58 -06:00
*
2011-11-07 16:52:18 -06:00
* Returns all the views currently present in #PlumaApp.
2011-11-07 13:46:58 -06:00
*
2011-11-07 16:52:18 -06:00
* Return value: a newly allocated list of #PlumaView objects
2011-11-07 13:46:58 -06:00
*/
GList *
2011-11-07 16:52:18 -06:00
pluma_app_get_views (PlumaApp *app)
2011-11-07 13:46:58 -06:00
{
GList *res = NULL;
GList *windows;
2011-11-07 16:52:18 -06:00
g_return_val_if_fail (PLUMA_IS_APP (app), NULL);
2011-11-07 13:46:58 -06:00
windows = app->priv->windows;
while (windows != NULL)
{
res = g_list_concat (res,
2011-11-07 16:52:18 -06:00
pluma_window_get_views (PLUMA_WINDOW (windows->data)));
2011-11-07 13:46:58 -06:00
windows = g_list_next (windows);
}
return res;
}
/**
2011-11-07 16:52:18 -06:00
* pluma_app_get_lockdown:
* @app: a #PlumaApp
2011-11-07 13:46:58 -06:00
*
2011-11-07 16:52:18 -06:00
* Gets the lockdown mask (see #PlumaLockdownMask) for the application.
2011-11-07 13:46:58 -06:00
* The lockdown mask determines which functions are locked down using
2013-01-24 14:03:53 -06:00
* the MATE-wise lockdown GSettings keys.
2011-11-07 13:46:58 -06:00
**/
2011-11-07 16:52:18 -06:00
PlumaLockdownMask
pluma_app_get_lockdown (PlumaApp *app)
2011-11-07 13:46:58 -06:00
{
2011-11-07 16:52:18 -06:00
g_return_val_if_fail (PLUMA_IS_APP (app), PLUMA_LOCKDOWN_ALL);
2011-11-07 13:46:58 -06:00
return app->priv->lockdown;
}
static void
2011-11-07 16:52:18 -06:00
app_lockdown_changed (PlumaApp *app)
2011-11-07 13:46:58 -06:00
{
GList *l;
for (l = app->priv->windows; l != NULL; l = l->next)
2011-11-07 16:52:18 -06:00
_pluma_window_set_lockdown (PLUMA_WINDOW (l->data),
2011-11-07 13:46:58 -06:00
app->priv->lockdown);
g_object_notify (G_OBJECT (app), "lockdown");
}
void
2011-11-07 16:52:18 -06:00
_pluma_app_set_lockdown (PlumaApp *app,
PlumaLockdownMask lockdown)
2011-11-07 13:46:58 -06:00
{
2011-11-07 16:52:18 -06:00
g_return_if_fail (PLUMA_IS_APP (app));
2011-11-07 13:46:58 -06:00
app->priv->lockdown = lockdown;
app_lockdown_changed (app);
}
void
2011-11-07 16:52:18 -06:00
_pluma_app_set_lockdown_bit (PlumaApp *app,
PlumaLockdownMask bit,
2011-11-07 13:46:58 -06:00
gboolean value)
{
2011-11-07 16:52:18 -06:00
g_return_if_fail (PLUMA_IS_APP (app));
2011-11-07 13:46:58 -06:00
if (value)
app->priv->lockdown |= bit;
else
app->priv->lockdown &= ~bit;
app_lockdown_changed (app);
}
/* Returns a copy */
GtkPageSetup *
2011-11-07 16:52:18 -06:00
_pluma_app_get_default_page_setup (PlumaApp *app)
2011-11-07 13:46:58 -06:00
{
2011-11-07 16:52:18 -06:00
g_return_val_if_fail (PLUMA_IS_APP (app), NULL);
2011-11-07 13:46:58 -06:00
if (app->priv->page_setup == NULL)
load_page_setup (app);
return gtk_page_setup_copy (app->priv->page_setup);
}
void
2011-11-07 16:52:18 -06:00
_pluma_app_set_default_page_setup (PlumaApp *app,
2011-11-07 13:46:58 -06:00
GtkPageSetup *page_setup)
{
2011-11-07 16:52:18 -06:00
g_return_if_fail (PLUMA_IS_APP (app));
2011-11-07 13:46:58 -06:00
g_return_if_fail (GTK_IS_PAGE_SETUP (page_setup));
if (app->priv->page_setup != NULL)
g_object_unref (app->priv->page_setup);
app->priv->page_setup = g_object_ref (page_setup);
}
/* Returns a copy */
GtkPrintSettings *
2011-11-07 16:52:18 -06:00
_pluma_app_get_default_print_settings (PlumaApp *app)
2011-11-07 13:46:58 -06:00
{
2011-11-07 16:52:18 -06:00
g_return_val_if_fail (PLUMA_IS_APP (app), NULL);
2011-11-07 13:46:58 -06:00
if (app->priv->print_settings == NULL)
load_print_settings (app);
return gtk_print_settings_copy (app->priv->print_settings);
}
void
2011-11-07 16:52:18 -06:00
_pluma_app_set_default_print_settings (PlumaApp *app,
2011-11-07 13:46:58 -06:00
GtkPrintSettings *settings)
{
2011-11-07 16:52:18 -06:00
g_return_if_fail (PLUMA_IS_APP (app));
2011-11-07 13:46:58 -06:00
g_return_if_fail (GTK_IS_PRINT_SETTINGS (settings));
if (app->priv->print_settings != NULL)
g_object_unref (app->priv->print_settings);
app->priv->print_settings = g_object_ref (settings);
}