aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ephy-gui.c
blob: 6072a05ae059efbc18e931c6ccecaa502353a268 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*
 *  Copyright (C) 2002 Marco Pesenti Gritti
 *
 *  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, 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
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 *
 *  $Id$
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include "ephy-gui.h"
#include "eel-gconf-extensions.h"

#include <ctype.h>
#include <string.h>
#include <glib/gi18n.h>
#include <libgnome/gnome-help.h>
#include <gtk/gtktreemodel.h>
#include <gtk/gtkmessagedialog.h>

/* Styles for tab labels */
GtkStyle *loading_text_style = NULL;
GtkStyle *new_text_style = NULL;

/**
 * gul_gui_menu_position_under_widget:
 */
void
ephy_gui_menu_position_under_widget (GtkMenu   *menu,
                     gint      *x,
                     gint      *y,
                     gboolean  *push_in,
                     gpointer   user_data)
{
    GtkWidget *w = GTK_WIDGET (user_data);
    gint screen_width, screen_height;
    GtkRequisition requisition;
    gboolean rtl;

    rtl = (gtk_widget_get_direction (w) == GTK_TEXT_DIR_RTL);

    gdk_window_get_origin (w->window, x, y);
    gtk_widget_size_request (GTK_WIDGET (menu), &requisition);

    /* FIXME multihead */
    screen_width = gdk_screen_width ();
    screen_height = gdk_screen_height ();

    if (rtl)
    {
        *x += w->allocation.x + w->allocation.width - requisition.width;
    }
    else
    {
        *x += w->allocation.x;
    }

    *y += w->allocation.y + w->allocation.height;

    *x = CLAMP (*x, 0, MAX (0, screen_width - requisition.width));
    *y = CLAMP (*y, 0, MAX (0, screen_height - requisition.height));
}

gboolean
ephy_gui_confirm_overwrite_file (GtkWidget *parent, const char *filename)
{
    char *question;
    GtkWidget *dialog;
    gboolean res;

    if (!g_file_test (filename, G_FILE_TEST_EXISTS))
    {
        return TRUE;
    }

    question = g_strdup_printf (_("File %s will be overwritten.\n"
                    "If you choose yes, the contents will be lost.\n\n"
                    "Do you want to continue?"), filename);
    dialog = gtk_message_dialog_new (parent ? GTK_WINDOW(parent) : NULL,
                             GTK_DIALOG_MODAL,
                         GTK_MESSAGE_QUESTION,
                         GTK_BUTTONS_YES_NO,
                         question);
    res = (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_YES);
    gtk_widget_destroy (dialog);
    g_free (question);

    return res;
}

void
ephy_gui_help (GtkWindow *parent,
           const char *file_name,
               const char *link_id)
{
    GError *err = NULL;

    gnome_help_display (file_name, link_id, &err);

    if (err != NULL)
    {
        GtkWidget *dialog;
        dialog = gtk_message_dialog_new (parent,
                         GTK_DIALOG_DESTROY_WITH_PARENT,
                         GTK_MESSAGE_ERROR,
                         GTK_BUTTONS_OK,
                         _("Could not display help: %s"), err->message);
        g_signal_connect (G_OBJECT (dialog), "response",
                  G_CALLBACK (gtk_widget_destroy),
                  NULL);
        gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);
        gtk_widget_show (dialog);
        g_error_free (err);
    }
}