]> git.donarmstrong.com Git - xournal.git/blob - src/xournal.h
Image patch
[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 TOOL_IMAGE        8
147 #define NUM_STROKE_TOOLS  3
148 #define NUM_TOOLS         9
149 #define NUM_BUTTONS       3
150
151 #define TOOLOPT_ERASER_STANDARD     0
152 #define TOOLOPT_ERASER_WHITEOUT     1
153 #define TOOLOPT_ERASER_STROKES      2
154
155 extern double predef_thickness[NUM_STROKE_TOOLS][THICKNESS_MAX];
156
157 typedef struct BBox {
158   double left, right, top, bottom;
159 } BBox;
160
161 struct UndoErasureData;
162
163 typedef struct Item {
164   int type;
165   struct Brush brush; // the brush to use, if ITEM_STROKE
166   // 'brush' also contains color info for text items
167   GnomeCanvasPoints *path;
168   gdouble *widths;
169   GnomeCanvasItem *canvas_item; // the corresponding canvas item, or NULL
170   struct BBox bbox;
171   struct UndoErasureData *erasure; // for temporary use during erasures
172   // the following fields for ITEM_TEXT:
173   gchar *text;
174   gchar *font_name;
175   gdouble font_size;
176   GtkWidget *widget; // the widget while text is being edited (ITEM_TEMP_TEXT)
177   // the following fields for ITEM_IMAGE:
178   GdkPixbuf *image;  // the image
179   gchar *image_png;  // PNG of original image, for save and clipboard
180   gsize image_png_len;
181 } Item;
182
183 // item type values for Item.type, UndoItem.type, ui.cur_item_type ...
184 // (not all are valid in all places)
185 #define ITEM_NONE -1
186 #define ITEM_STROKE 0
187 #define ITEM_TEMP_STROKE 1
188 #define ITEM_ERASURE 2
189 #define ITEM_SELECTRECT 3
190 #define ITEM_MOVESEL 4
191 #define ITEM_PASTE 5
192 #define ITEM_NEW_LAYER 6
193 #define ITEM_DELETE_LAYER 7
194 #define ITEM_NEW_BG_ONE 8
195 #define ITEM_NEW_BG_RESIZE 9
196 #define ITEM_PAPER_RESIZE 10
197 #define ITEM_NEW_DEFAULT_BG 11
198 #define ITEM_NEW_PAGE 13
199 #define ITEM_DELETE_PAGE 14
200 #define ITEM_REPAINTSEL 15
201 #define ITEM_MOVESEL_VERT 16
202 #define ITEM_HAND 17
203 #define ITEM_TEXT 18
204 #define ITEM_TEMP_TEXT 19
205 #define ITEM_TEXT_EDIT 20
206 #define ITEM_TEXT_ATTRIB 21
207 #define ITEM_RESIZESEL 22
208 #define ITEM_RECOGNIZER 23
209 #define ITEM_IMAGE 24
210
211 typedef struct Layer {
212   GList *items; // the items on the layer, from bottom to top
213   int nitems;
214   GnomeCanvasGroup *group;
215 } Layer;
216
217 typedef struct Page {
218   GList *layers; // the layers on the page
219   int nlayers;
220   double height, width;
221   double hoffset, voffset; // offsets of canvas group rel. to canvas root
222   struct Background *bg;
223   GnomeCanvasGroup *group;
224 } Page;
225
226 typedef struct Journal {
227   GList *pages;  // the pages in the journal
228   int npages;
229   int last_attach_no; // for naming of attached backgrounds
230 } Journal;
231
232 typedef struct Selection {
233   int type;  // ITEM_SELECTRECT, ITEM_MOVESEL_VERT
234   BBox bbox; // the rectangle bbox of the selection
235   struct Layer *layer; // the layer on which the selection lives
236   double anchor_x, anchor_y, last_x, last_y; // for selection motion
237   gboolean resizing_top, resizing_bottom, resizing_left, resizing_right; // for selection resizing
238   double new_x1, new_x2, new_y1, new_y2; // for selection resizing
239   GnomeCanvasItem *canvas_item; // if the selection box is on screen 
240   GList *items; // the selected items (a list of struct Item)
241   int move_pageno, orig_pageno; // if selection moves to a different page
242   struct Layer *move_layer;
243   float move_pagedelta;
244 } Selection;
245
246 typedef struct UIData {
247   int pageno, layerno; // the current page and layer
248   struct Page *cur_page;
249   struct Layer *cur_layer;
250   gboolean saved; // is file saved ?
251   struct Brush *cur_brush;  // the brush in use (one of brushes[...])
252   int toolno[NUM_BUTTONS+1];  // the number of the currently selected tool
253   struct Brush brushes[NUM_BUTTONS+1][NUM_STROKE_TOOLS]; // the current pen, eraser, hiliter
254   struct Brush default_brushes[NUM_STROKE_TOOLS]; // the default ones
255   int linked_brush[NUM_BUTTONS+1]; // whether brushes are linked across buttons
256   int cur_mapping; // the current button number for mappings
257   gboolean button_switch_mapping; // button clicks switch button 1 mappings
258   gboolean use_erasertip;
259   int which_mouse_button; // the mouse button drawing the current path
260   int which_unswitch_button; // if button_switch_mapping, the mouse button that switched the mapping
261   struct Page default_page;  // the model for the default page
262   int layerbox_length;  // the number of entries registered in the layers combo-box
263   struct Item *cur_item; // the item being drawn, or NULL
264   int cur_item_type;
265   GnomeCanvasPoints cur_path; // the path being drawn
266   gdouble *cur_widths; // width array for the path being drawn
267   int cur_path_storage_alloc;
268   int cur_widths_storage_alloc;
269   double zoom; // zoom factor, in pixels per pt
270   gboolean use_xinput; // use input devices instead of core pointer
271   gboolean allow_xinput; // allow use of xinput ?
272   gboolean discard_corepointer; // discard core pointer events in XInput mode
273   gboolean pressure_sensitivity; // use pen pressure to control stroke width?
274   double width_minimum_multiplier, width_maximum_multiplier; // calibration for pressure sensitivity
275   gboolean is_corestroke; // this stroke is painted with core pointer
276   gboolean saved_is_corestroke;
277   GdkDevice *stroke_device; // who's painting this stroke
278   int screen_width, screen_height; // initial screen size, for XInput events
279   double hand_refpt[2];
280   int hand_scrollto_cx, hand_scrollto_cy;
281   gboolean hand_scrollto_pending;
282   char *filename;
283   gchar *default_path; // default path for new notes
284   gchar *default_image; // path for previous image
285   gboolean view_continuous, fullscreen, maximize_at_start;
286   gboolean in_update_page_stuff; // semaphore to avoid scrollbar retroaction
287   struct Selection *selection;
288   GdkCursor *cursor;
289   gboolean progressive_bg; // update PDF bg's one at a time
290   char *mrufile, *configfile; // file names for MRU & config
291   char *mru[MRU_SIZE]; // MRU data
292   GtkWidget *mrumenu[MRU_SIZE];
293   gboolean bg_apply_all_pages;
294   int window_default_width, window_default_height, scrollbar_step_increment;
295   gboolean print_ruling; // print the paper ruling ?
296   int default_unit; // the default unit for paper sizes
297   int startuptool; // the default tool at startup
298   int zoom_step_increment; // the increment in the zoom dialog box
299   double zoom_step_factor; // the multiplicative factor in zoom in/out
300   double startup_zoom;
301   gboolean autoload_pdf_xoj;
302 #if GLIB_CHECK_VERSION(2,6,0)
303   GKeyFile *config_data;
304 #endif
305   int vertical_order[2][VBOX_MAIN_NITEMS]; // the order of interface components
306   gchar *default_font_name, *font_name;
307   gdouble default_font_size, font_size;
308   gulong resize_signal_handler;
309   gdouble hiliter_opacity;
310   guint hiliter_alpha_mask;
311   gboolean left_handed; // left-handed mode?
312   gboolean auto_save_prefs; // auto-save preferences ?
313   gboolean shorten_menus; // shorten menus ?
314   gchar *shorten_menu_items; // which items to hide
315   gboolean is_sel_cursor; // displaying a selection-related cursor
316   gint pre_fullscreen_width, pre_fullscreen_height; // for win32 fullscreen
317 #if GTK_CHECK_VERSION(2,10,0)
318   GtkPrintSettings *print_settings;
319 #endif
320   gboolean poppler_force_cairo; // force poppler to use cairo
321 } UIData;
322
323 #define BRUSH_LINKED 0
324 #define BRUSH_COPIED 1
325 #define BRUSH_STATIC 2
326
327 typedef struct UndoErasureData {
328   struct Item *item; // the item that got erased
329   int npos; // its position in its layer
330   int nrepl; // the number of replacement items
331   GList *replacement_items;
332 } UndoErasureData;
333
334 typedef struct UndoItem {
335   int type;
336   struct Item *item; // for ITEM_STROKE, ITEM_TEXT, ITEM_TEXT_EDIT, ITEM_TEXT_ATTRIB, ITEM_IMAGE
337   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, ITEM_IMAGE
338   struct Layer *layer2; // for ITEM_DELETE_LAYER with val=-1, ITEM_MOVESEL
339   struct Page *page;  // for ITEM_NEW_BG_ONE/RESIZE, ITEM_NEW_PAGE, ITEM_NEW_LAYER, ITEM_DELETE_LAYER, ITEM_DELETE_PAGE
340   GList *erasurelist; // for ITEM_ERASURE, ITEM_RECOGNIZER
341   GList *itemlist;  // for ITEM_MOVESEL, ITEM_PASTE, ITEM_REPAINTSEL, ITEM_RESIZESEL
342   GList *auxlist;   // for ITEM_REPAINTSEL (brushes), ITEM_MOVESEL (depths)
343   struct Background *bg;  // for ITEM_NEW_BG_ONE/RESIZE, ITEM_NEW_DEFAULT_BG
344   int val; // for ITEM_NEW_PAGE, ITEM_NEW_LAYER, ITEM_DELETE_LAYER, ITEM_DELETE_PAGE
345   double val_x, val_y; // for ITEM_MOVESEL, ITEM_NEW_BG_RESIZE, ITEM_PAPER_RESIZE, ITEM_NEW_DEFAULT_BG, ITEM_TEXT_ATTRIB, ITEM_RESIZESEL
346   double scaling_x, scaling_y; // for ITEM_RESIZESEL
347   gchar *str; // for ITEM_TEXT_EDIT, ITEM_TEXT_ATTRIB
348   struct Brush *brush; // for ITEM_TEXT_ATTRIB
349   struct UndoItem *next;
350   int multiop;
351 } UndoItem;
352
353 #define MULTIOP_CONT_REDO 1 // not the last in a multiop, so keep redoing
354 #define MULTIOP_CONT_UNDO 2 // not the first in a multiop, so keep undoing
355
356
357 typedef struct BgPdfRequest {
358   int pageno;
359   double dpi;
360 } BgPdfRequest;
361
362 typedef struct BgPdfPage {
363   double dpi;
364   GdkPixbuf *pixbuf;
365   int pixel_height, pixel_width; // pixel size of pixbuf
366 } BgPdfPage;
367
368 typedef struct BgPdf {
369   int status; // the rest only makes sense if this is not STATUS_NOT_INIT
370   guint pid; // the identifier of the idle callback
371   Refstring *filename;
372   int file_domain;
373   gchar *file_contents; // buffer containing a copy of file data
374   gsize file_length;  // size of above buffer
375   int npages;
376   GList *pages; // a list of BgPdfPage structures
377   GList *requests; // a list of BgPdfRequest structures
378   gboolean has_failed; // has failed in the past...
379   PopplerDocument *document; // the poppler document
380 } BgPdf;
381
382 #define STATUS_NOT_INIT 0
383 #define STATUS_READY    1  // things are initialized and can work
384 // there used to be more possible values, things got streamlined...
385
386 // UTILITY MACROS
387
388 // getting a component of the interface by name
389 #define GET_COMPONENT(a)  GTK_WIDGET (g_object_get_data(G_OBJECT (winMain), a))
390
391 // the margin between consecutive pages in continuous view
392 #define VIEW_CONTINUOUS_SKIP 20.0
393
394
395 // GLOBAL VARIABLES
396
397 // the main window and the canvas
398
399 extern GtkWidget *winMain;
400 extern GnomeCanvas *canvas;
401
402 // the data
403
404 extern struct Journal journal;
405 extern struct UIData ui;
406 extern struct BgPdf bgpdf;
407 extern struct UndoItem *undo, *redo;
408
409 extern double DEFAULT_ZOOM;
410
411 #define UNIT_CM 0
412 #define UNIT_IN 1
413 #define UNIT_PX 2
414 #define UNIT_PT 3