]> www.fi.muni.cz Git - evince.git/blob - shell/ev-dualscreen.c
8fc6953a2c5a4d55b6244792fe31588fecdf42da
[evince.git] / shell / ev-dualscreen.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; c-indent-level: 8 -*- */
2 /* this file is part of evince, a gnome document viewer
3  *
4  *
5  * Evince is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * Evince is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
23
24 #include <glib/gi18n.h>
25 #include <gtk/gtk.h>
26
27 #include "ev-dualscreen.h"
28 #include "ev-window.h"
29 #include "ev-view.h"
30
31 struct _EvDSCWindowPrivate {
32         GtkWidget *main_box;
33         GtkWidget *menubar;
34         GtkWidget *overview;
35         GtkWidget *notesview;
36         EvDocumentModel *model;
37         EvDocument * notesdocument;
38
39         GtkWidget *overview_scrolled_window;
40         GtkWidget *notesview_scrolled_window;
41
42         EvWindow *presentation_window;
43         EvDocument * presentation_document;
44         gint moveback_monitor;
45 };
46
47 #define EV_DSCWINDOW_GET_PRIVATE(object) \
48         (G_TYPE_INSTANCE_GET_PRIVATE ((object), EV_TYPE_DSCWINDOW, EvDSCWindowPrivate))
49 #define PAGE_CACHE_SIZE 52428800 /* 50MB */
50
51 /*static gpointer parent_class = NULL;*/
52
53 G_DEFINE_TYPE (EvDSCWindow, ev_dscwindow, GTK_TYPE_WINDOW)
54
55 /**
56  * ev_dscwindow_switch_monitors: Bring the presentation window and the control window each on the other monitor.
57  *
58  * @widget: Callback widget
59  * @self: EvDSCWindow
60  **/
61 static gboolean
62 ev_dscwindow_switch_monitors (GtkWidget *widget, EvDSCWindow *self)
63 {
64 /*
65 +       if (!EV_IS_DSCWINDOW (self))
66 +               return FALSE;
67 +
68 +       EvDSCWindowPrivate *priv = EV_DSCWINDOW_GET_PRIVATE (self);
69 +
70 +       gint num_monitors = get_num_monitors (GTK_WINDOW (self));
71 +
72 +       if (num_monitors == 2) {
73 +               GtkWindow * presentation_window = GTK_WINDOW (priv->presentation_window);
74 +               GdkScreen * screen = gtk_window_get_screen (presentation_window);
75 +
76 +               gint monitor_1 = gdk_screen_get_monitor_at_window (screen,
77 +                       GTK_WIDGET (presentation_window)->window);
78 +
79 +               gint monitor_2 = (monitor_1 + 1) % 2;
80 +
81 +               GdkRectangle coords;
82 +               gdk_screen_get_monitor_geometry (screen, monitor_2, &coords);
83 +               ev_window_stop_presentation (priv->presentation_window);
84 +               gtk_window_move (presentation_window, coords.x, coords.y);
85 +               ev_window_run_presentation (priv->presentation_window);
86 +               priv->moveback_monitor = monitor_1;
87 +
88 +               gdk_screen_get_monitor_geometry (screen, monitor_1, &coords);
89 +               gtk_window_unmaximize (GTK_WINDOW (self));
90 +               gtk_window_move (GTK_WINDOW (self), coords.x, coords.y);
91 +               gtk_window_maximize (GTK_WINDOW (self));
92 +       }*/
93         return TRUE;
94 }
95
96 /**
97  * ev_dscwindow_notes_interaction: User wants to load a different file as notes.
98  **/
99 static gboolean
100 ev_dscwindow_notes_interaction (GtkContainer *container, EvDSCWindow *self)
101 {
102 /*
103 +       EvDSCWindowPrivate *priv = EV_DSCWINDOW_GET_PRIVATE (self);
104 +       GtkWidget *dialog;
105 +
106 +       dialog = gtk_file_chooser_dialog_new (
107 +               _("Open Document"),
108 +               GTK_WINDOW (self),
109 +               GTK_FILE_CHOOSER_ACTION_OPEN,
110 +               GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
111 +               GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
112 +               NULL);
113 +
114 +       ev_document_factory_add_filters (dialog, NULL);
115 +       gtk_file_chooser_set_select_multiple (GTK_FILE_CHOOSER (dialog), FALSE);
116 +       gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER (dialog), TRUE);
117 +
118 +       if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT)
119 +       {
120 +               char * uri = gtk_file_chooser_get_uri (GTK_FILE_CHOOSER (dialog));
121 +               GError * error = NULL;
122 +               ev_view_set_loading (EV_VIEW (priv->notesview), TRUE);
123 +
124 +               if (priv->notesdocument) {
125 +                       ev_document_load (priv->notesdocument, uri, &error);
126 +               } else {
127 +                       priv->notesdocument = ev_document_factory_get_document (uri,
128 +                               &error);
129 +               }
130 +               g_free (uri);
131 +               if (error == NULL){
132 +                       ev_view_set_document (EV_VIEW (priv->notesview),
133 +                               priv->notesdocument);
134 +                       /* TODO: go to the same page that is open at the moment, or
135 +                        * move the presentation to the beginning. *//*
136 +               }
137 +       }
138 +       gtk_widget_destroy (dialog);
139 */
140         return TRUE;
141 }
142
143 /**
144  * ev_dscwindow_get_control: Get the control instance.
145  *
146  * If there is none, create one.
147  *
148  * Returns: control instance
149  **/
150 EvDSCWindow *
151 ev_dscwindow_get_control (void)
152 {
153         static EvDSCWindow * control = NULL;
154
155         if (!control || !EV_IS_DSCWINDOW (control)) {
156                 control = EV_DSCWINDOW (g_object_new (EV_TYPE_DSCWINDOW, NULL));
157         }
158
159         return control;
160 }
161
162 /**
163  * ev_dscwindow_end: Stop presentation mode.
164  */
165 static gboolean
166 ev_dscwindow_end (GtkWidget *widget, GdkEvent *event)
167 {
168         gtk_widget_destroy (GTK_WIDGET (ev_dscwindow_get_control ()));
169         return TRUE;
170 }
171
172
173
174 /**
175 * ev_dscwindow_init: Initialize multihead presentation
176 *
177 * @self: EvDSCWindow.
178 *
179 * ev_dscwindow_set_presentation has to be called afterwards for loading in a document. TBD
180 **/
181 static void
182 ev_dscwindow_init (EvDSCWindow *ev_dscwindow)
183 {
184         ev_dscwindow->priv = EV_DSCWINDOW_GET_PRIVATE (ev_dscwindow);
185         ev_dscwindow->priv->moveback_monitor = -1;
186         ev_dscwindow->priv->notesdocument = NULL;
187
188         gtk_window_set_title (GTK_WINDOW (ev_dscwindow), _("Presentation Control"));
189
190         GtkWidget *h = gtk_hpaned_new ();
191         GtkWidget *v = gtk_vbox_new (FALSE, 0);
192
193         ev_dscwindow->priv->overview_scrolled_window = GTK_WIDGET (g_object_new (
194                         GTK_TYPE_SCROLLED_WINDOW, "shadow-type", GTK_SHADOW_IN, NULL));
195         gtk_box_pack_start_defaults (GTK_BOX (v), ev_dscwindow->priv->overview_scrolled_window);
196
197         ev_dscwindow->priv->model = ev_document_model_new ();
198         ev_dscwindow->priv->overview = ev_view_new ();
199         ev_view_set_page_cache_size (EV_VIEW (ev_dscwindow->priv->overview), PAGE_CACHE_SIZE);
200         ev_view_set_model (EV_VIEW (ev_dscwindow->priv->overview), ev_dscwindow->priv->model);
201         ev_document_model_set_continuous (ev_dscwindow->priv->model, TRUE);
202         ev_document_model_set_dual_page (ev_dscwindow->priv->model, FALSE);
203         ev_document_model_set_sizing_mode (ev_dscwindow->priv->model, EV_SIZING_BEST_FIT);
204
205
206         gtk_container_add (GTK_CONTAINER (priv->overview_scrolled_window),
207                                    priv->overview);
208
209
210         GtkWidget *e = gtk_expander_new (_("Expensive features"));
211         gtk_expander_set_expanded (GTK_EXPANDER (e), TRUE);
212
213         GtkWidget *t = gtk_toolbar_new ();
214
215         GtkToolItem* b_switch = gtk_tool_button_new (NULL, _("Switch monitors"));
216         gtk_tool_button_set_icon_name (GTK_TOOL_BUTTON (b_switch), "object-flip-horizontal");
217         gtk_toolbar_insert (GTK_TOOLBAR (t), b_switch, -1);
218         g_signal_connect (b_switch, "clicked",
219                 G_CALLBACK (ev_dscwindow_switch_monitors), self);
220
221         GtkToolItem* b_notes = gtk_tool_button_new (NULL, _("Load notes ..."));
222         gtk_tool_button_set_icon_name (GTK_TOOL_BUTTON (b_notes), "object-flip-horizontal");
223         gtk_toolbar_insert (GTK_TOOLBAR (t), b_notes, -1);
224         g_signal_connect (b_notes, "clicked",
225                 G_CALLBACK (ev_dscwindow_notes_interaction), self);
226
227         GtkToolItem* b_close = gtk_tool_button_new (NULL, _("End presentation"));
228         gtk_tool_button_set_icon_name (GTK_TOOL_BUTTON (b_close), "view-restore");
229         gtk_toolbar_insert (GTK_TOOLBAR (t), b_close, -1);
230         g_signal_connect (b_close, "clicked",
231                 G_CALLBACK (ev_dscwindow_end), NULL);
232
233         gtk_container_add (GTK_CONTAINER (e), t);
234         gtk_box_pack_end (GTK_BOX (v), e, FALSE, TRUE, 0);
235         gtk_paned_add1 (GTK_PANED (h), v);
236
237 /*
238         priv->notesview_scrolled_window = GTK_WIDGET (g_object_new (
239                 GTK_TYPE_SCROLLED_WINDOW, "shadow-type", GTK_SHADOW_IN, NULL));
240         gtk_paned_add2 (GTK_PANED (h), priv->notesview_scrolled_window);
241
242         priv->notesview = ev_view_new ();
243         g_object_ref (priv->notesview);
244         ev_view_set_screen_dpi (EV_VIEW (priv->notesview),
245                                 get_screen_dpi (GTK_WINDOW (self)));
246 +               gtk_container_add (GTK_CONTAINER (priv->notesview_scrolled_window),
247 +                                  priv->notesview);
248 +
249 +               ev_view_set_continuous (EV_VIEW (priv->notesview), FALSE);
250 +               ev_view_set_dual_page (EV_VIEW (priv->notesview), FALSE);
251 +               ev_view_set_sizing_mode (EV_VIEW (priv->notesview), EV_SIZING_BEST_FIT);
252 +       }
253 +
254 +       gtk_paned_set_position (GTK_PANED (h), 400);
255 +       gtk_widget_show_all (h);
256 +       gtk_container_add (GTK_CONTAINER (self), h);
257 +
258 +       /* fallback if we have >2 monitors (see window placement) */
259 /*+     gtk_window_set_default_size (GTK_WINDOW (self), 800, 600);
260 +
261 +       g_signal_connect (h, "notify::position",
262 +               G_CALLBACK (ev_dscwindow_handle_resized), self);
263 +
264 +       g_signal_connect (self, "size-allocate",
265 +               G_CALLBACK (ev_dscwindow_handle_resized), self);
266 +
267 +       /* This would just open new windows. */
268 /*+     gtk_drag_dest_unset (GTK_WIDGET (priv->notesview));
269 +       gtk_drag_dest_unset (GTK_WIDGET (priv->overview));
270 +
271 +       gint click = GDK_BUTTON1_MOTION_MASK | GDK_KEY_PRESS_MASK;
272 +       gtk_widget_add_events (GTK_WIDGET (priv->overview), click);
273 +       g_signal_connect (priv->notesview, "button-press-event",
274 +                         G_CALLBACK (ev_dscwindow_notes_clicked), self);
275 */
276 }
277
278
279 static void
280 ev_dscwindow_dispose (GObject *obj)
281 {
282         EvDSCWindow * ev_dscwindow = EV_DSCWINDOW (obj);
283         EvDSCWindowPrivate *priv = ev_dscwindow->priv;
284
285 /*      if (EV_IS_VIEW (priv->overview) {
286                 ev_document_model_set_document (priv->model, NULL);
287
288 +               ev_view_set_document (EV_VIEW (priv->overview),  NULL);
289 +               g_object_unref (priv->overview);
290 +       }
291 +       if (EV_IS_VIEW (priv->notesview)) {
292 +               ev_view_set_document (EV_VIEW (priv->notesview), NULL);
293 +               g_object_unref (priv->notesview);
294 +       }*/
295         ev_window_stop_presentation (priv->presentation_window);
296
297         if (priv->moveback_monitor >= 0) {
298                 GtkWindow * presentation_window = GTK_WINDOW (priv->presentation_window);
299                 GdkRectangle coords;
300
301                 gdk_screen_get_monitor_geometry (
302                         gtk_window_get_screen (presentation_window),
303                         priv->moveback_monitor, &coords);
304
305                 gtk_window_move (presentation_window, coords.x, coords.y);
306         }
307
308         G_OBJECT_CLASS (parent_class)->dispose (obj);
309 }
310
311
312 static void
313 ev_dscwindow_class_init (EvDSCWindowClass * klass)
314 {
315         GObjectClass *g_object_class = G_OBJECT_CLASS (klass);
316         parent_class = g_type_class_peek_parent (klass);
317         g_type_class_add_private (klass, sizeof (EvDSCWindowPrivate));
318         g_object_class->dispose  = ev_dscwindow_dispose;
319 }
320
321 GtkWidget *
322 ev_dscwindow_new (void)
323 {
324         EvDSCWindow *dsc_window;
325
326         dsc_window = g_object_new (EV_TYPE_DSCWINDOW, "type", GTK_WINDOW_TOPLEVEL, NULL);
327         return GTK_WIDGET (dsc_window);
328 }