Searched defs:mod (Results 1 - 16 of 16) sorted by relevance

/inkscape/src/extension/internal/
H A Dlatex-pstricks-out.cpp54 Inkscape::Extension::Print *mod = Inkscape::Extension::get_print(SP_MODULE_KEY_PRINT_LATEX); local
55 const gchar * oldconst = mod->get_param_string("destination");
57 mod->set_param_string("destination", filename);
60 context.module = mod;
62 mod->base = doc->getRoot();
64 mod->dkey = SPItem::display_key_new(1);
65 mod->root = (mod->base)->invoke_show(drawing, mod->dkey, SP_ITEM_SHOW_DISPLAY);
66 drawing.setRoot(mod
[all...]
H A Dsvg.cpp187 \param mod Module to use
193 Svg::open (Inkscape::Extension::Input */*mod*/, const gchar *uri)
219 \param mod Extension to use.
239 Svg::save(Inkscape::Extension::Output *mod, SPDocument *doc, gchar const *filename) argument
245 bool const exportExtensions = ( !mod->get_id()
246 || !strcmp (mod->get_id(), SP_MODULE_KEY_OUTPUT_SVG_INKSCAPE)
247 || !strcmp (mod->get_id(), SP_MODULE_KEY_OUTPUT_SVGZ_INKSCAPE));
H A Dcairo-ps-out.cpp125 \param mod unused
130 CairoPsOutput::save(Inkscape::Extension::Output *mod, SPDocument *doc, gchar const *filename) argument
141 const gchar *new_level = mod->get_param_enum("PSlevel");
149 new_textToPath = (strcmp(mod->get_param_optiongroup("textToPath"), "paths") == 0);
154 new_textToLaTeX = (strcmp(mod->get_param_optiongroup("textToPath"), "LaTeX") == 0);
162 new_blurToBitmap = mod->get_param_bool("blurToBitmap");
167 new_bitmapResolution = mod->get_param_int("resolution");
172 new_areaPage = (strcmp(mod->get_param_optiongroup("area"), "page") == 0);
179 bleedmargin_px = mod->get_param_float("bleed");
184 new_exportId = mod
219 save(Inkscape::Extension::Output *mod, SPDocument *doc, gchar const *filename) argument
[all...]
H A Dcairo-renderer-pdf-out.cpp121 \param mod unused
130 CairoRendererPdfOutput::save(Inkscape::Extension::Output *mod, SPDocument *doc, gchar const *filename) argument
141 const gchar *new_level = mod->get_param_enum("PDFversion");
152 new_textToPath = (strcmp(mod->get_param_optiongroup("textToPath"), "paths") == 0);
160 new_textToLaTeX = (strcmp(mod->get_param_optiongroup("textToPath"), "LaTeX") == 0);
168 new_blurToBitmap = mod->get_param_bool("blurToBitmap");
176 new_bitmapResolution = mod->get_param_int("resolution");
184 new_exportId = mod->get_param_string("exportId");
200 new_bleedmargin_px = Inkscape::Util::Quantity::convert(mod->get_param_float("bleed"), "mm", "px");
H A Dgdkpixbuf-input.cpp26 GdkpixbufInput::open(Inkscape::Extension::Input *mod, char const *uri) argument
40 // << " ask: " << !mod->get_param_bool("do_not_ask")
41 // << ", link: " << mod->get_param_optiongroup("link")
42 // << ", mod_dpi: " << mod->get_param_optiongroup("dpi")
43 // << ", scale: " << mod->get_param_optiongroup("scale") << std::endl;
45 Glib::ustring mod_link = mod->get_param_optiongroup("link");
46 Glib::ustring mod_dpi = mod->get_param_optiongroup("dpi");
48 Glib::ustring mod_scale = mod->get_param_optiongroup("scale");
61 prefs->setBool("/dialogs/import/ask", !mod->get_param_bool("do_not_ask") );
H A Dlatex-pstricks.cpp57 unsigned int PrintLatex::setup(Inkscape::Extension::Print * /*mod*/)
62 unsigned int PrintLatex::begin (Inkscape::Extension::Print *mod, SPDocument *doc) argument
73 fn = mod->get_param_string("destination");
80 * the callers (sp_print_document_to_file, "ret = mod->begin(doc)") wrongly ignores the
138 unsigned int PrintLatex::finish(Inkscape::Extension::Print * /*mod*/)
152 unsigned int PrintLatex::bind(Inkscape::Extension::Print * /*mod*/, Geom::Affine const &transform, float /*opacity*/)
164 unsigned int PrintLatex::release(Inkscape::Extension::Print * /*mod*/)
170 unsigned int PrintLatex::comment(Inkscape::Extension::Print * /*mod*/,
180 unsigned int PrintLatex::fill(Inkscape::Extension::Print * /*mod*/,
215 unsigned int PrintLatex::stroke(Inkscape::Extension::Print * /*mod*/,
[all...]
H A Dwmf-print.cpp120 unsigned int PrintWmf::setup(Inkscape::Extension::Print * /*mod*/)
126 unsigned int PrintWmf::begin(Inkscape::Extension::Print *mod, SPDocument *doc) argument
129 gchar const *utf8_fn = mod->get_param_string("destination");
133 FixPPTCharPos = mod->get_param_bool("FixPPTCharPos");
134 FixPPTDashLine = mod->get_param_bool("FixPPTDashLine");
135 FixPPTGrad2Polys = mod->get_param_bool("FixPPTGrad2Polys");
136 FixPPTPatternAsHatch = mod->get_param_bool("FixPPTPatternAsHatch");
166 pageBoundingBox = mod->get_param_bool("pageBoundingBox");
284 unsigned int PrintWmf::finish(Inkscape::Extension::Print * /*mod*/)
645 Inkscape::Extension::Print * /*mod*/,
[all...]
H A Dwmf-inout.cpp94 Inkscape::Extension::Print *mod; local
101 mod = Inkscape::Extension::get_print(PRINT_WMF);
102 oldconst = mod->get_param_string("destination");
104 mod->set_param_string("destination", filename);
107 context.module = mod;
110 mod->base = doc->getRoot();
112 mod->dkey = SPItem::display_key_new(1);
113 mod->root = mod->base->invoke_show(drawing, mod
136 save(Inkscape::Extension::Output *mod, SPDocument *doc, gchar const *filename) argument
[all...]
H A Demf-inout.cpp92 Inkscape::Extension::Print *mod; local
100 mod = Inkscape::Extension::get_print(PRINT_EMF);
101 oldconst = mod->get_param_string("destination");
103 mod->set_param_string("destination", filename);
106 context.module = mod;
109 mod->base = doc->getRoot();
111 mod->dkey = SPItem::display_key_new(1);
112 mod->root = mod->base->invoke_show(drawing, mod
136 save(Inkscape::Extension::Output *mod, SPDocument *doc, gchar const *filename) argument
[all...]
H A Demf-print.cpp116 unsigned int PrintEmf::setup(Inkscape::Extension::Print * /*mod*/)
122 unsigned int PrintEmf::begin(Inkscape::Extension::Print *mod, SPDocument *doc) argument
127 gchar const *utf8_fn = mod->get_param_string("destination");
131 FixPPTCharPos = mod->get_param_bool("FixPPTCharPos");
132 FixPPTDashLine = mod->get_param_bool("FixPPTDashLine");
133 FixPPTGrad2Polys = mod->get_param_bool("FixPPTGrad2Polys");
134 FixPPTLinGrad = mod->get_param_bool("FixPPTLinGrad");
135 FixPPTPatternAsHatch = mod->get_param_bool("FixPPTPatternAsHatch");
136 FixImageRot = mod->get_param_bool("FixImageRot");
169 pageBoundingBox = mod
[all...]
/inkscape/src/
H A Dprint.cpp97 Inkscape::Extension::Print *mod = Inkscape::Extension::get_print(SP_MODULE_KEY_PRINT_PS); local
99 gchar const *oldconst = mod->get_param_string("destination");
102 mod->set_param_string("destination", (gchar *)filename);
105 context.module = mod;
108 mod->base = doc->getRoot();
110 mod->dkey = SPItem::display_key_new(1);
111 mod->root = (mod->base)->invoke_show(drawing, mod->dkey, SP_ITEM_SHOW_DISPLAY);
112 drawing.setRoot(mod
[all...]
H A Dshortcuts.cpp609 gchar *mod=g_strndup(iter, length); local
610 if (!strcmp(mod, "Control") || !strcmp(mod, "Ctrl")) {
612 } else if (!strcmp(mod, "Shift")) {
614 } else if (!strcmp(mod, "Alt")) {
617 g_warning("Unknown modifier %s for %s", mod, verb_name);
619 g_free(mod);
/inkscape/share/extensions/
H A Drender_barcode_qrcode.py192 mod = (not test and ( (bits >> i) & 1) == 1)
193 self.modules[i // 3][i % 3 + self.moduleCount - 8 - 3] = mod;
196 mod = (not test and ( (bits >> i) & 1) == 1)
197 self.modules[i % 3 + self.moduleCount - 8 - 3][i // 3] = mod;
207 mod = (not test and ( (bits >> i) & 1) == 1)
210 self.modules[i][8] = mod
212 self.modules[i + 1][8] = mod
214 self.modules[self.moduleCount - 15 + i][8] = mod
219 mod = (not test and ( (bits >> i) & 1) == 1);
222 self.modules[8][self.moduleCount - i - 1] = mod
697 def mod(self, e): member in class:QRPolynomial
[all...]
/inkscape/src/livarot/
H A Dint-line.cpp179 void IntLigne::Booleen(IntLigne *a, IntLigne *b, BooleanOp mod) argument
187 if ( mod == bool_op_union || mod == bool_op_symdiff ) {
194 if ( mod == bool_op_union || mod == bool_op_diff || mod == bool_op_symdiff ) {
269 if ( mod == bool_op_union ) {
275 } else if ( mod == bool_op_inters ) {
281 } else if ( mod == bool_op_diff ) {
287 } else if ( mod
[all...]
H A DShapeSweep.cpp838 Shape::Booleen (Shape * a, Shape * b, BooleanOp mod,int cutPathID) argument
847 if ( mod == bool_op_cut ) {
848 } else if ( mod == bool_op_slice ) {
1112 CheckEdges (lastI, lastChgtPt, a, b, mod);
1438 CheckEdges (lastI, lastChgtPt, a, b, mod);
1462 if ( mod == bool_op_cut ) {
1487 } else if ( mod == bool_op_slice ) {
1498 if ( mod == bool_op_slice ) {
1500 GetWindings (a, b, mod, false);
1504 if (mod
3038 CheckEdges(int lastPointNo, int lastChgtPt, Shape * a, Shape * b, BooleanOp mod) argument
3111 Avance(int lastPointNo, int lastChgtPt, Shape * lS, int lB, Shape * , Shape * b, BooleanOp mod) argument
[all...]
/inkscape/src/ui/dialog/
H A Dfiledialogimpl-win32.cpp82 Inkscape::Extension::Extension* mod; member in struct:Inkscape::UI::Dialog::Filter
228 all_exe_files.mod = NULL;
256 _extension_map[extension_index++] = filter.mod;
312 filter.mod = imod;
366 all_bitmaps.mod = NULL;
374 all_vectors.mod = NULL;
382 all_image_files.mod = NULL;
390 all_inkscape_files.mod = NULL;
398 all_files.mod = NULL;
430 all_exe_files.mod
[all...]

Completed in 58 milliseconds