Lines Matching refs:options
79 self.options.showMovements = True
80 self.options.docWidth = self.uutounit(self.unittouu(self.document.getroot().get('width')), "px")
81 self.options.docHeight = self.uutounit(self.unittouu(self.document.getroot().get('height')), "px")
82 myHpglDecoder = hpgl_decoder.hpglDecoder(self.hpgl, self.options)
89 if self.options.commandLanguage == 'HPGL':
91 if self.options.commandLanguage == 'DMPL':
93 if self.options.commandLanguage == 'KNK':
96 if self.options.debug:
104 if self.options.force > 0:
105 hpglInit += ';FS%d' % self.options.force
106 if self.options.speed > 0:
107 hpglInit += ';VS%d' % self.options.speed
128 if self.options.speed > 0:
129 dmplInit += 'V%d' % self.options.speed
136 if self.options.force > 0:
137 hpglInit += ';FS%d' % self.options.force
138 if self.options.speed > 0:
139 hpglInit += ';VS%d' % self.options.speed
155 mySerial.port = self.options.serialPort
157 mySerial.baudrate = self.options.serialBaudRate
159 if self.options.serialByteSize == 'five':
161 if self.options.serialByteSize == 'six':
163 if self.options.serialByteSize == 'seven':
165 if self.options.serialByteSize == 'eight':
168 if self.options.serialStopBits == 'one':
170 if self.options.serialStopBits == 'onePointFive':
172 if self.options.serialStopBits == 'two':
175 if self.options.serialParity == 'none':
177 if self.options.serialParity == 'even':
179 if self.options.serialParity == 'odd':
181 if self.options.serialParity == 'mark':
183 if self.options.serialParity == 'space':
188 if self.options.serialFlowControl == 'xonxoff':
190 if self.options.serialFlowControl == 'rtscts' or self.options.serialFlowControl == 'dsrdtrrtscts':
192 if self.options.serialFlowControl == 'dsrdtrrtscts':
212 inkex.errormsg(' Serial Port: ' + self.options.serialPort)
213 inkex.errormsg(' Serial baud rate: ' + self.options.serialBaudRate)
214 inkex.errormsg(' Serial byte size: ' + self.options.serialByteSize + ' Bits')
215 inkex.errormsg(' Serial stop bits: ' + self.options.serialStopBits + ' Bits')
216 inkex.errormsg(' Serial parity: ' + self.options.serialParity)
217 inkex.errormsg(' Serial Flow control: ' + self.options.serialFlowControl)
218 inkex.errormsg(' Command language: ' + self.options.commandLanguage)
219 inkex.errormsg(' Resolution X (dpi): ' + str(self.options.resolutionX))
220 inkex.errormsg(' Resolution Y (dpi): ' + str(self.options.resolutionY))
221 inkex.errormsg(' Pen number: ' + str(self.options.pen))
222 inkex.errormsg(' Pen force (g): ' + str(self.options.force))
223 inkex.errormsg(' Pen speed (cm/s): ' + str(self.options.speed))
224 inkex.errormsg(' Rotation (Clockwise): ' + self.options.orientation)
225 inkex.errormsg(' Mirror X axis: ' + str(self.options.mirrorX))
226 inkex.errormsg(' Mirror Y axis: ' + str(self.options.mirrorY))
227 inkex.errormsg(' Center zero point: ' + str(self.options.center))
228 inkex.errormsg(' Overcut (mm): ' + str(self.options.overcut))
229 inkex.errormsg(' Tool offset (mm): ' + str(self.options.toolOffset))
230 inkex.errormsg(' Use precut: ' + str(self.options.precut))
231 inkex.errormsg(' Curve flatness: ' + str(self.options.flat))
232 inkex.errormsg(' Auto align: ' + str(self.options.autoAlign))
233 inkex.errormsg(' Show debug information: ' + str(self.options.debug))
250 inkex.errormsg("\n" + self.options.commandLanguage + " properties:\n")
261 inkex.errormsg("\n" + self.options.commandLanguage + " data:\n")