summaryrefslogtreecommitdiffstats
path: root/src/extension/internal/cairo-render-context.h
diff options
context:
space:
mode:
authorAdib Taraben <theadib@gmail.com>2008-01-16 23:31:51 +0000
committertheadib <theadib@users.sourceforge.net>2008-01-16 23:31:51 +0000
commit85e52afa1bb6bc1272bd50aec88fd3388ca5ea97 (patch)
tree0fd911e0fc3104ba2af6053f0306bfea5f19f1df /src/extension/internal/cairo-render-context.h
parentStopped the export bitmap dialog from being sizeable (diff)
downloadinkscape-85e52afa1bb6bc1272bd50aec88fd3388ca5ea97.tar.gz
inkscape-85e52afa1bb6bc1272bd50aec88fd3388ca5ea97.zip
now act on settings in dialogue
(bzr r4529)
Diffstat (limited to 'src/extension/internal/cairo-render-context.h')
-rw-r--r--src/extension/internal/cairo-render-context.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/extension/internal/cairo-render-context.h b/src/extension/internal/cairo-render-context.h
index 58b0a10e2..595043467 100644
--- a/src/extension/internal/cairo-render-context.h
+++ b/src/extension/internal/cairo-render-context.h
@@ -88,9 +88,14 @@ public:
bool setSurfaceTarget(cairo_surface_t *surface, bool is_vector);
void setPSLevel(unsigned int level);
+ unsigned int getPSLevel(void);
void setPDFLevel(unsigned int level);
void setTextToPath(bool texttopath);
+ bool getTextToPath(void);
void setFilterToBitmap(bool filtertobitmap);
+ bool getFilterToBitmap(void);
+ void setBitmapResolution(int resolution);
+ int getBitmapResolution(void);
/** Creates the cairo_surface_t for the context with the
given width, height and with the currently set target
@@ -150,6 +155,7 @@ protected:
unsigned int _ps_level;
bool _is_texttopath;
bool _is_filtertobitmap;
+ int _bitmapresolution;
FILE *_stream;