/inkscape/src/libgdl/ |
H A D | libgdltypebuiltins.c | 18 static GType type = 0; local 20 if (!type) 21 type = g_flags_register_static ("GdlDockParamFlags", _gdl_dock_param_flags_values); 23 return type; 37 static GType type = 0; local 39 if (!type) 40 type = g_flags_register_static ("GdlDockObjectFlags", _gdl_dock_object_flags_values); 42 return type; 59 static GType type = 0; local 61 if (!type) 82 static GType type = 0; local 112 static GType type = 0; local 131 static GType type = 0; local 152 static GType type = 0; local [all...] |
/inkscape/src/ |
H A D | message-context.h | 49 * @param type the message type 52 void set(MessageType type, char const *message); 57 * @param type the message type 60 void setF(MessageType type, char const *format, ...) G_GNUC_PRINTF(3,4); 65 * @param type the message type 69 void setVF(MessageType type, char const *format, va_list args); 74 * @param type th [all...] |
H A D | message-context.cpp | 30 void MessageContext::set(MessageType type, gchar const *message) { argument 34 _message_id = _stack->push(type, message); 37 void MessageContext::setF(MessageType type, gchar const *format, ...) argument 41 setVF(type, format, args); 45 void MessageContext::setVF(MessageType type, gchar const *format, va_list args) argument 48 set(type, message); 52 void MessageContext::flash(MessageType type, gchar const *message) { argument 56 _flash_message_id = _stack->flash(type, message); 59 void MessageContext::flashF(MessageType type, gchar const *format, ...) { argument 62 flashVF(type, forma 66 flashVF(MessageType type, gchar const *format, va_list args) argument [all...] |
H A D | message-stack.cpp | 32 MessageId MessageStack::push(MessageType type, gchar const *message) { argument 33 return _push(type, 0, message); 36 MessageId MessageStack::pushF(MessageType type, gchar const *format, ...) argument 40 MessageId id=pushVF(type, format, args); 45 MessageId MessageStack::pushVF(MessageType type, gchar const *format, va_list args) argument 49 id = push(type, message); 65 MessageId MessageStack::flash(MessageType type, Glib::ustring const &message) argument 67 MessageId id = flash( type, message.c_str() ); 71 MessageId MessageStack::flash(MessageType type, gchar const *message) { argument 72 switch (type) { 92 flashF(MessageType type, gchar const *format, ...) argument 100 flashVF(MessageType type, gchar const *format, va_list args) argument 108 _push(MessageType type, guint lifetime, gchar const *message) argument [all...] |
H A D | message-stack.h | 58 /** @brief returns the type of message currently at the top of the stack */ 60 return _messages ? _messages->type : NORMAL_MESSAGE; 79 * @param type the message type 84 MessageId push(MessageType type, char const *message); 88 * @param type the message type 93 MessageId pushF(MessageType type, char const *format, ...) G_GNUC_PRINTF(3,4); 98 * @param type the message type 162 MessageType type; member in struct:Inkscape::MessageStack::Message [all...] |
H A D | event.h | 33 : event (_event), type (_type), description (_description) { } 38 const unsigned int type; member in struct:Inkscape::Event
|
/inkscape/share/extensions/ |
H A D | hpgl_output.py | 33 self.OptionParser.add_option('--tab', action='store', type='string', dest='tab') 34 self.OptionParser.add_option('--resolutionX', action='store', type='float', dest='resolutionX', default=1016.0, help='Resolution X (dpi)') 35 self.OptionParser.add_option('--resolutionY', action='store', type='float', dest='resolutionY', default=1016.0, help='Resolution Y (dpi)') 36 self.OptionParser.add_option('--pen', action='store', type='int', dest='pen', default=1, help='Pen number') 37 self.OptionParser.add_option('--force', action='store', type='int', dest='force', default=24, help='Pen force (g)') 38 self.OptionParser.add_option('--speed', action='store', type='int', dest='speed', default=20, help='Pen speed (cm/s)') 39 self.OptionParser.add_option('--orientation', action='store', type='string', dest='orientation', default='90', help='Rotation (Clockwise)') 40 self.OptionParser.add_option('--mirrorX', action='store', type='inkbool', dest='mirrorX', default='FALSE', help='Mirror X axis') 41 self.OptionParser.add_option('--mirrorY', action='store', type='inkbool', dest='mirrorY', default='FALSE', help='Mirror Y axis') 42 self.OptionParser.add_option('--center', action='store', type [all...] |
H A D | scour.inkscape.py | 24 self.OptionParser.add_option("--tab", type="string", action="store", dest="tab") 25 self.OptionParser.add_option("--simplify-colors", type="inkbool", action="store", dest="simple_colors") 26 self.OptionParser.add_option("--style-to-xml", type="inkbool", action="store", dest="style_to_xml") 27 self.OptionParser.add_option("--group-collapsing", type="inkbool", action="store", dest="group_collapse") 28 self.OptionParser.add_option("--create-groups", type="inkbool", action="store", dest="group_create") 29 self.OptionParser.add_option("--enable-id-stripping", type="inkbool", action="store", dest="strip_ids") 30 self.OptionParser.add_option("--shorten-ids", type="inkbool", action="store", dest="shorten_ids") 31 self.OptionParser.add_option("--shorten-ids-prefix", type="string", action="store", dest="shorten_ids_prefix", default="") 32 self.OptionParser.add_option("--embed-rasters", type="inkbool", action="store", dest="embed_rasters") 33 self.OptionParser.add_option("--keep-unreferenced-defs", type [all...] |
H A D | jessyInk_keyBindings.py | 49 self.OptionParser.add_option('--tab', action = 'store', type = 'string', dest = 'what') 50 self.OptionParser.add_option('--slide_backWithEffects', action = 'callback', type = 'string', callback = self.slideOptions, default = '') 51 self.OptionParser.add_option('--slide_nextWithEffects', action = 'callback', type = 'string', callback = self.slideOptions, default = '') 52 self.OptionParser.add_option('--slide_backWithoutEffects', action = 'callback', type = 'string', callback = self.slideOptions, default = '') 53 self.OptionParser.add_option('--slide_nextWithoutEffects', action = 'callback', type = 'string', callback = self.slideOptions, default = '') 54 self.OptionParser.add_option('--slide_firstSlide', action = 'callback', type = 'string', callback = self.slideOptions, default = '') 55 self.OptionParser.add_option('--slide_lastSlide', action = 'callback', type = 'string', callback = self.slideOptions, default = '') 56 self.OptionParser.add_option('--slide_switchToIndexMode', action = 'callback', type = 'string', callback = self.slideOptions, default = '') 57 self.OptionParser.add_option('--slide_switchToDrawingMode', action = 'callback', type = 'string', callback = self.slideOptions, default = '') 58 self.OptionParser.add_option('--slide_setDuration', action = 'callback', type [all...] |
H A D | color_HSL_adjust.py | 13 action="store", type="int", 17 action="store", type="int", 21 action="store", type="int", 25 action="store", type="inkbool", 29 action="store", type="inkbool", 33 action="store", type="inkbool", 37 action="store", type="string",
|
H A D | perfectboundcover.py | 34 action="store", type="float", 38 action="store", type="float", 42 action="store", type="int", 46 action="store", type="string", 50 action="store", type="float", 54 action="store", type="string", 58 action="store", type="float", 62 action="store", type="float", 66 action="store", type="inkbool", 70 action="store", type [all...] |
H A D | hpgl_input.py | 33 parser.add_option('--resolutionX', action='store', type='float', dest='resolutionX', default=1016.0, help='Resolution X (dpi)') 34 parser.add_option('--resolutionY', action='store', type='float', dest='resolutionY', default=1016.0, help='Resolution Y (dpi)') 35 parser.add_option('--showMovements', action='store', type='inkbool', dest='showMovements', default='FALSE', help='Show Movements between paths') 61 type, value, traceback = sys.exc_info() 62 raise ValueError, ("", type, value), traceback
|
H A D | webslicer_create_rect.py | 30 action="store", type="string", 34 action="store", type="string", 38 action="store", type="int", 42 action="store", type="string", 46 action="store", type="string", 50 action="store", type="int", 53 self.OptionParser.add_option("--gif-type", 54 action="store", type="string", 58 action="store", type="int", 62 action="store", type [all...] |
H A D | synfig_fileformat.py | 159 "type": ["integer", 3] # 1 is fast gaussian, 3 is regular 207 raise Exception, "Invalid parameter type for layer" 209 # Unknown layer, try to determine parameter type based on value 212 if type(value) == int: 214 elif type(value) == float: 216 elif type(value) == bool: 218 elif type(value) == dict: 224 raise Exception, "Could not automatically determine parameter type" 225 elif type(value) == list: 233 elif type(valu [all...] |
H A D | jessyInk_transitions.py | 36 self.OptionParser.add_option('--tab', action = 'store', type = 'string', dest = 'what') 37 self.OptionParser.add_option('--layerName', action = 'store', type = 'string', dest = 'layerName', default = '') 38 self.OptionParser.add_option('--effectIn', action = 'store', type = 'string', dest = 'effectIn', default = 'default') 39 self.OptionParser.add_option('--effectInDuration', action = 'store', type = 'float', dest = 'effectInDuration', default = 0.8) 40 self.OptionParser.add_option('--effectOut', action = 'store', type = 'string', dest = 'effectOut', default = 'default') 41 self.OptionParser.add_option('--effectOutDuration', action = 'store', type = 'float', dest = 'effectOutDuration', default = 0.8)
|
H A D | web-set-att.py | 30 action="store", type="string", 34 action="store", type="string", 38 action="store", type="string", 42 action="store", type="string", 46 action="store", type="string", 50 action="store", type="string",
|
H A D | webslicer_create_group.py | 30 action="store", type="string", 34 action="store", type="string", 38 action="store", type="string", 42 action="store", type="string", 46 action="store", type="string", 50 action="store", type="string",
|
H A D | embedimage.py | 34 action="store", type="inkbool", 92 type='image/png' 94 type='image/jpeg' 96 type='image/bmp' 98 type='image/gif' 100 type='image/tiff' 103 type='image/x-icon' #official IANA registered MIME is 'image/vnd.microsoft.icon' tho 107 node.set(inkex.addNS('href','xlink'), 'data:%s;base64,%s' % (type, base64.encodestring(file))) 111 inkex.errormsg(_("%s is not of type image/png, image/jpeg, image/bmp, image/gif, image/tiff, or image/x-icon") % path)
|
/inkscape/src/libnrtype/ |
H A D | text-boundary.h | 15 #include "libnrtype/boundary-type.h" 28 BoundaryType type; ///< Kind of boundary. member in struct:text_boundary
|
/inkscape/src/libavoid/ |
H A D | timer.cpp | 54 type = lasttype = tmNon; 62 if (type == tmNon) 64 type = t; 68 type = tmSev; 80 cStart[type] = clock(); // CPU time 92 if (cStop < cStart[type]) 97 cDiff = realStop - cStart[type]; 101 cDiff = cStop - cStart[type]; 106 if (type == tmPth) 117 cTotal[type] 126 type = tmNon; member in namespace:Avoid [all...] |
/inkscape/src/ui/widget/ |
H A D | attr-widget.h | 37 DefaultValueType type; member in class:Inkscape::UI::Widget::DefaultValueHolder 49 type = T_NONE; 53 type = T_DOUBLE; 58 type = T_VECT_DOUBLE; 63 type = T_CHARPTR; 68 type = T_BOOL; 73 type = T_UINT; 78 if (type == T_VECT_DOUBLE) 83 g_assert (type == T_UINT); 88 g_assert (type [all...] |
/inkscape/src/libcroco/ |
H A D | cr-token.c | 46 switch (a_this->type) { 125 a_this->type = NO_TK; 151 *Sets the type of curren instance of 164 a_this->type = S_TK; 170 *Sets the type of the current instance of 183 a_this->type = CDO_TK; 189 *Sets the type of the current token to 202 a_this->type = CDC_TK; 208 *Sets the type of the current instance of 221 a_this->type [all...] |
/inkscape/src/io/ |
H A D | resource.cpp | 30 Util::ptr_shared<char> get_path(Domain domain, Type type, char const *filename) argument 36 switch (type) { 55 switch (type) { 65 switch (type) { 74 default: return get_path(SYSTEM, type, filename);
|
/inkscape/src/widgets/ |
H A D | ege-paint-def.h | 58 PaintDef(ColorType type); 65 ColorType getType() const { return type; } 68 void getMIMEData(std::string const & type, char*& dest, int& len, int& format); 69 bool fromMIMEData(std::string const & type, char const * data, int len, int format); 85 ColorType type; member in class:ege::PaintDef
|
H A D | ege-paint-def.cpp | 67 type(NONE), 76 PaintDef::PaintDef( ColorType type ) : 78 type(type), 85 switch (type) { 100 type(RGB), 124 type = other.type; 152 void PaintDef::getMIMEData(std::string const & type, char*& dest, int& len, int& format) argument 154 if ( type 208 fromMIMEData(std::string const & type, char const * data, int len, int ) argument [all...] |