]> git.donarmstrong.com Git - xournal.git/blob - src/xournal.h
605c8232e133af4c992857e0303b7a3751faae74
[xournal.git] / src / xournal.h
1 /*
2  *  This program is free software; you can redistribute it and/or
3  *  modify it under the terms of the GNU General Public
4  *  License as published by the Free Software Foundation; either
5  *  version 2 of the License, or (at your option) any later version.
6  *
7  *  This software is distributed in the hope that it will be useful,
8  *  but WITHOUT ANY WARRANTY; without even the implied warranty of  
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10  *  General Public License for more details.
11  *
12  *  You should have received a copy of the GNU General Public License
13  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
14  */
15
16 #include <gtk/gtk.h>
17 #include <libgnomecanvas/libgnomecanvas.h>
18 #include <poppler/glib/poppler.h>
19
20 // #define INPUT_DEBUG
21 /* uncomment this line if you experience event-processing problems
22    and want to list the input events received by xournal. Caution, lots
23    of output (redirect to a file). */
24
25 // #define ENABLE_XINPUT_BUGFIX
26 /* uncomment this line if you are experiencing calibration problems with
27    XInput and want to try things differently. Especially useful on older
28    distributions (up to around 2010). */
29
30 #define FILE_DIALOG_SIZE_BUGFIX
31 /* ugly, but should help users with versions of GTK+ that suffer from the
32    "tiny file dialog" syndrome, without hurting those with well-behaved
33    versions of GTK+. Comment out if you'd prefer not to include this fix. */
34
35 // PREF FILES INFO
36
37 #define CONFIG_DIR ".xournal"
38 #define MRU_FILE "recent-files"
39 #define MRU_SIZE 8 
40 #define CONFIG_FILE "config"
41
42 // version string for about box
43
44 #ifdef WIN32
45 #define VERSION_STRING VERSION "-win32"
46 #else
47 #define VERSION_STRING VERSION
48 #endif
49
50 // DATA STRUCTURES AND CONSTANTS
51
52 #define PIXEL_MOTION_THRESHOLD 0.3
53 #define MAX_AXES 12
54 #define EPSILON 1E-7
55 #define MAX_ZOOM 20.0
56 #define DISPLAY_DPI_DEFAULT 96.0
57 #define MIN_ZOOM 0.2
58 #define RESIZE_MARGIN 6.0
59 #define MAX_SAFE_RENDER_DPI 720 // max dpi at which PDF bg's get rendered
60
61 #define VBOX_MAIN_NITEMS 5 // number of interface items in vboxMain
62
63 /* a string (+ aux data) that maintains a refcount */
64
65 typedef struct Refstring {
66   int nref;
67   char *s;
68   gpointer aux;
69 } Refstring;
70
71
72 /* The journal is mostly a list of pages. Each page is a list of layers,
73    and a background. Each layer is a list of items, from bottom to top.
74 */
75
76 typedef struct Background {
77   int type;
78   GnomeCanvasItem *canvas_item;
79   int color_no;
80   guint color_rgba;
81   int ruling;
82   GdkPixbuf *pixbuf;
83   Refstring *filename;
84   int file_domain;
85   int file_page_seq;
86   double pixbuf_scale; // for PIXMAP, this is the *current* zoom value
87                        // for PDF, this is the *requested* zoom value
88   int pixel_height, pixel_width; // PDF only: pixel size of current pixbuf
89 } Background;
90
91 #define BG_SOLID 0
92 #define BG_PIXMAP 1
93 #define BG_PDF 2      // not implemented yet
94
95 #define RULING_NONE 0
96 #define RULING_LINED 1
97 #define RULING_RULED 2
98 #define RULING_GRAPH 3
99
100 #define DOMAIN_ABSOLUTE 0
101 #define DOMAIN_ATTACH 1
102 #define DOMAIN_CLONE 2  // only while loading file
103
104 typedef struct Brush {
105   int tool_type;
106   int color_no;
107   guint color_rgba;
108   int thickness_no;
109   double thickness;
110   int tool_options;
111   gboolean ruler, recognizer, variable_width;
112 } Brush;
113
114 #define COLOR_BLACK      0
115 #define COLOR_BLUE       1
116 #define COLOR_RED        2
117 #define COLOR_GREEN      3
118 #define COLOR_GRAY       4
119 #define COLOR_LIGHTBLUE  5
120 #define COLOR_LIGHTGREEN 6
121 #define COLOR_MAGENTA    7
122 #define COLOR_ORANGE     8
123 #define COLOR_YELLOW     9
124 #define COLOR_WHITE     10
125 #define COLOR_OTHER     -1
126 #define COLOR_MAX       11
127
128 extern guint predef_colors_rgba[COLOR_MAX];
129 extern guint predef_bgcolors_rgba[COLOR_MAX];
130
131 #define THICKNESS_VERYFINE  0
132 #define THICKNESS_FINE      1
133 #define THICKNESS_MEDIUM    2
134 #define THICKNESS_THICK     3
135 #define THICKNESS_VERYTHICK 4
136 #define THICKNESS_MAX       5
137
138 #define TOOL_PEN          0
139 #define TOOL_ERASER       1
140 #define TOOL_HIGHLIGHTER  2
141 #define TOOL_TEXT         3
142 #define TOOL_SELECTREGION 4
143 #define TOOL_SELECTRECT   5
144 #define TOOL_VERTSPACE    6
145 #define TOOL_HAND         7
146 #define NUM_STROKE_TOOLS  3
147 #define NUM_TOOLS         8
148 #define NUM_BUTTONS       3
149
150 #define TOOLOPT_ERASER_STANDARD     0
151 #define TOOLOPT_ERASER_WHITEOUT     1
152 #define TOOLOPT_ERASER_STROKES      2
153
154 extern double predef_thickness[NUM_STROKE_TOOLS][THICKNESS_MAX];
155
156 typedef struct BBox {
157   double left, right, top, bottom;
158 } BBox;
159
160 struct UndoErasureData;
161
162 typedef struct Item {
163   int type;
164   struct Brush brush; // the brush to use, if ITEM_STROKE
165   // 'brush' also contains color info for text items
166   GnomeCanvasPoints *path;
167   gdouble *widths;
168   GnomeCanvasItem *canvas_item; // the corresponding canvas item, or NULL
169   struct BBox bbox;
170   struct UndoErasureData *erasure; // for temporary use during erasures
171   // the following fields for ITEM_TEXT:
172   gchar *text;
173   gchar *font_name;
174   gdouble font_size;
175   GtkWidget *widget; // the widget while text is being edited (ITEM_TEMP_TEXT)
176 } Item;
177
178 // item type values for Item.type, UndoItem.type, ui.cur_item_type ...
179 // (not all are valid in all places)
180 #define ITEM_NONE -1
181 #define ITEM_STROKE 0
182 #define ITEM_TEMP_STROKE 1
183 #define ITEM_ERASURE 2
184 #define ITEM_SELECTRECT 3
185 #define ITEM_MOVESEL 4
186 #define ITEM_PASTE 5
187 #define ITEM_NEW_LAYER 6
188 #define ITEM_DELETE_LAYER 7
189 #define ITEM_NEW_BG_ONE 8
190 #define ITEM_NEW_BG_RESIZE 9
191 #define ITEM_PAPER_RESIZE 10
192 #define ITEM_NEW_DEFAULT_BG 11
193 #define ITEM_NEW_PAGE 13
194 #define ITEM_DELETE_PAGE 14
195 #define ITEM_REPAINTSEL 15
196 #define ITEM_MOVESEL_VERT 16
197 #define ITEM_HAND 17
198 #define ITEM_TEXT 18
199 #define ITEM_TEMP_TEXT 19
200 #define ITEM_TEXT_EDIT 20
201 #define ITEM_TEXT_ATTRIB 21
202 #define ITEM_RESIZESEL 22
203 #define ITEM_RECOGNIZER 23
204
205 typedef struct Layer {
206   GList *items; // the items on the layer, from bottom to top
207   int nitems;
208   GnomeCanvasGroup *group;
209 } Layer;
210
211 typedef struct Page {
212   GList *layers; // the layers on the page
213   int nlayers;
214   double height, width;
215   double hoffset, voffset; // offsets of canvas group rel. to canvas root
216   struct Background *bg;
217   GnomeCanvasGroup *group;
218 } Page;
219
220 typedef struct Journal {
221   GList *pages;  // the pages in the journal
222   int npages;
223   int last_attach_no; // for naming of attached backgrounds
224 } Journal;
225
226 typedef struct Selection {
227   int type;  // ITEM_SELECTRECT, ITEM_MOVESEL_VERT
228   BBox bbox; // the rectangle bbox of the selection
229   struct Layer *layer; // the layer on which the selection lives
230   double anchor_x, anchor_y, last_x, last_y; // for selection motion
231   gboolean resizing_top, resizing_bottom, resizing_left, resizing_right; // for selection resizing
232   double new_x1, new_x2, new_y1, new_y2; // for selection resizing
233   GnomeCanvasItem *canvas_item; // if the selection box is on screen 
234   GList *items; // the selected items (a list of struct Item)
235   int move_pageno, orig_pageno; // if selection moves to a different page
236   struct Layer *move_layer;
237   float move_pagedelta;
238 } Selection;
239
240 typedef struct UIData {
241   int pageno, layerno; // the current page and layer
242   struct Page *cur_page;
243   struct Layer *cur_layer;
244   gboolean saved; // is file saved ?
245   struct Brush *cur_brush;  // the brush in use (one of brushes[...])
246   int toolno[NUM_BUTTONS+1];  // the number of the currently selected tool
247   struct Brush brushes[NUM_BUTTONS+1][NUM_STROKE_TOOLS]; // the current pen, eraser, hiliter
248   struct Brush default_brushes[NUM_STROKE_TOOLS]; // the default ones
249   int linked_brush[NUM_BUTTONS+1]; // whether brushes are linked across buttons
250   int cur_mapping; // the current button number for mappings
251   gboolean button_switch_mapping; // button clicks switch button 1 mappings
252   gboolean use_erasertip;
253   int which_mouse_button; // the mouse button drawing the current path
254   int which_unswitch_button; // if button_switch_mapping, the mouse button that switched the mapping
255   struct Page default_page;  // the model for the default page
256   int layerbox_length;  // the number of entries registered in the layers combo-box
257   struct Item *cur_item; // the item being drawn, or NULL
258   int cur_item_type;
259   GnomeCanvasPoints cur_path; // the path being drawn
260   gdouble *cur_widths; // width array for the path being drawn
261   int cur_path_storage_alloc;
262   int cur_widths_storage_alloc;
263   double zoom; // zoom factor, in pixels per pt
264   gboolean use_xinput; // use input devices instead of core pointer
265   gboolean allow_xinput; // allow use of xinput ?
266   gboolean discard_corepointer; // discard core pointer events in XInput mode
267   gboolean pressure_sensitivity; // use pen pressure to control stroke width?
268   double width_minimum_multiplier, width_maximum_multiplier; // calibration for pressure sensitivity
269   gboolean is_corestroke; // this stroke is painted with core pointer
270   gboolean saved_is_corestroke;
271   GdkDevice *stroke_device; // who's painting this stroke
272   int screen_width, screen_height; // initial screen size, for XInput events
273   double hand_refpt[2];
274   int hand_scrollto_cx, hand_scrollto_cy;
275   gboolean hand_scrollto_pending;
276   char *filename;
277   gchar *default_path; // default path for new notes
278   gboolean view_continuous, fullscreen, maximize_at_start;
279   gboolean in_update_page_stuff; // semaphore to avoid scrollbar retroaction
280   struct Selection *selection;
281   GdkCursor *cursor;
282   gboolean progressive_bg; // update PDF bg's one at a time
283   char *mrufile, *configfile; // file names for MRU & config
284   char *mru[MRU_SIZE]; // MRU data
285   GtkWidget *mrumenu[MRU_SIZE];
286   gboolean bg_apply_all_pages;
287   int window_default_width, window_default_height, scrollbar_step_increment;
288   gboolean print_ruling; // print the paper ruling ?
289   int default_unit; // the default unit for paper sizes
290   int startuptool; // the default tool at startup
291   int zoom_step_increment; // the increment in the zoom dialog box
292   double zoom_step_factor; // the multiplicative factor in zoom in/out
293   double startup_zoom;
294   gboolean autoload_pdf_xoj;
295 #if GLIB_CHECK_VERSION(2,6,0)
296   GKeyFile *config_data;
297 #endif
298   int vertical_order[2][VBOX_MAIN_NITEMS]; // the order of interface components
299   gchar *default_font_name, *font_name;
300   gdouble default_font_size, font_size;
301   gulong resize_signal_handler;
302   gdouble hiliter_opacity;
303   guint hiliter_alpha_mask;
304   gboolean left_handed; // left-handed mode?
305   gboolean auto_save_prefs; // auto-save preferences ?
306   gboolean shorten_menus; // shorten menus ?
307   gchar *shorten_menu_items; // which items to hide
308   gboolean is_sel_cursor; // displaying a selection-related cursor
309   gint pre_fullscreen_width, pre_fullscreen_height; // for win32 fullscreen
310 #if GTK_CHECK_VERSION(2,10,0)
311   GtkPrintSettings *print_settings;
312 #endif
313   gboolean poppler_force_cairo; // force poppler to use cairo
314 } UIData;
315
316 #define BRUSH_LINKED 0
317 #define BRUSH_COPIED 1
318 #define BRUSH_STATIC 2
319
320 typedef struct UndoErasureData {
321   struct Item *item; // the item that got erased
322   int npos; // its position in its layer
323   int nrepl; // the number of replacement items
324   GList *replacement_items;
325 } UndoErasureData;
326
327 typedef struct UndoItem {
328   int type;
329   struct Item *item; // for ITEM_STROKE, ITEM_TEXT, ITEM_TEXT_EDIT, ITEM_TEXT_ATTRIB
330   struct Layer *layer; // for ITEM_STROKE, ITEM_ERASURE, ITEM_PASTE, ITEM_NEW_LAYER, ITEM_DELETE_LAYER, ITEM_MOVESEL, ITEM_TEXT, ITEM_TEXT_EDIT, ITEM_RECOGNIZER
331   struct Layer *layer2; // for ITEM_DELETE_LAYER with val=-1, ITEM_MOVESEL
332   struct Page *page;  // for ITEM_NEW_BG_ONE/RESIZE, ITEM_NEW_PAGE, ITEM_NEW_LAYER, ITEM_DELETE_LAYER, ITEM_DELETE_PAGE
333   GList *erasurelist; // for ITEM_ERASURE, ITEM_RECOGNIZER
334   GList *itemlist;  // for ITEM_MOVESEL, ITEM_PASTE, ITEM_REPAINTSEL, ITEM_RESIZESEL
335   GList *auxlist;   // for ITEM_REPAINTSEL (brushes), ITEM_MOVESEL (depths)
336   struct Background *bg;  // for ITEM_NEW_BG_ONE/RESIZE, ITEM_NEW_DEFAULT_BG
337   int val; // for ITEM_NEW_PAGE, ITEM_NEW_LAYER, ITEM_DELETE_LAYER, ITEM_DELETE_PAGE
338   double val_x, val_y; // for ITEM_MOVESEL, ITEM_NEW_BG_RESIZE, ITEM_PAPER_RESIZE, ITEM_NEW_DEFAULT_BG, ITEM_TEXT_ATTRIB, ITEM_RESIZESEL
339   double scaling_x, scaling_y; // for ITEM_RESIZESEL
340   gchar *str; // for ITEM_TEXT_EDIT, ITEM_TEXT_ATTRIB
341   struct Brush *brush; // for ITEM_TEXT_ATTRIB
342   struct UndoItem *next;
343   int multiop;
344 } UndoItem;
345
346 #define MULTIOP_CONT_REDO 1 // not the last in a multiop, so keep redoing
347 #define MULTIOP_CONT_UNDO 2 // not the first in a multiop, so keep undoing
348
349
350 typedef struct BgPdfRequest {
351   int pageno;
352   double dpi;
353 } BgPdfRequest;
354
355 typedef struct BgPdfPage {
356   double dpi;
357   GdkPixbuf *pixbuf;
358   int pixel_height, pixel_width; // pixel size of pixbuf
359 } BgPdfPage;
360
361 typedef struct BgPdf {
362   int status; // the rest only makes sense if this is not STATUS_NOT_INIT
363   guint pid; // the identifier of the idle callback
364   Refstring *filename;
365   int file_domain;
366   gchar *file_contents; // buffer containing a copy of file data
367   gsize file_length;  // size of above buffer
368   int npages;
369   GList *pages; // a list of BgPdfPage structures
370   GList *requests; // a list of BgPdfRequest structures
371   gboolean has_failed; // has failed in the past...
372   PopplerDocument *document; // the poppler document
373 } BgPdf;
374
375 #define STATUS_NOT_INIT 0
376 #define STATUS_READY    1  // things are initialized and can work
377 // there used to be more possible values, things got streamlined...
378
379 // UTILITY MACROS
380
381 // getting a component of the interface by name
382 #define GET_COMPONENT(a)  GTK_WIDGET (g_object_get_data(G_OBJECT (winMain), a))
383
384 // the margin between consecutive pages in continuous view
385 #define VIEW_CONTINUOUS_SKIP 20.0
386
387
388 // GLOBAL VARIABLES
389
390 // the main window and the canvas
391
392 extern GtkWidget *winMain;
393 extern GnomeCanvas *canvas;
394
395 // the data
396
397 extern struct Journal journal;
398 extern struct UIData ui;
399 extern struct BgPdf bgpdf;
400 extern struct UndoItem *undo, *redo;
401
402 extern double DEFAULT_ZOOM;
403
404 #define UNIT_CM 0
405 #define UNIT_IN 1
406 #define UNIT_PX 2
407 #define UNIT_PT 3