aboutsummaryrefslogtreecommitdiff
path: root/src/sc_editor.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2017-11-29 09:43:01 +0100
committerThomas White <taw@physics.org>2017-11-29 09:43:01 +0100
commit8a37f2dc1a8421ba47e8f2d6332c5e5910d2249d (patch)
treeebcb51d0385010618022ca4b76456f7450c82b23 /src/sc_editor.h
parent63eae9accbb9eb02ff22b3f33cf48c352d0f8902 (diff)
Scale the slide in the slide window
Diffstat (limited to 'src/sc_editor.h')
-rw-r--r--src/sc_editor.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sc_editor.h b/src/sc_editor.h
index 3c836a6..7efc03f 100644
--- a/src/sc_editor.h
+++ b/src/sc_editor.h
@@ -110,6 +110,7 @@ struct _sceditor
int visible_height;
int visible_width;
int flow;
+ int scale;
/* Pointers to the frame currently being edited */
struct frame *selection;
@@ -176,6 +177,7 @@ extern SCEditor *sc_editor_new(SCBlock *scblocks, SCBlock **stylesheets,
extern void sc_editor_set_size(SCEditor *e, int w, int h);
extern void sc_editor_set_logical_size(SCEditor *e, double w, double h);
extern void sc_editor_set_flow(SCEditor *e, int flow);
+extern void sc_editor_set_scale(SCEditor *e, int scale);
extern void sc_editor_redraw(SCEditor *e);
extern void sc_editor_set_background(SCEditor *e, double r, double g, double b);
extern void sc_editor_set_slidenum(SCEditor *e, int slidenum);