Rev 14485 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
12456 | jghali | 1 | <?xml version="1.0" encoding="utf-8"?> |
14397 | jghali | 2 | <!DOCTYPE TS> |
3 | <TS version="2.0" language="zh_TW"> |
||
9498 | cbradney | 4 | <context> |
12918 | cbradney | 5 | <name></name> |
9498 | cbradney | 6 | <message> |
14474 | cbradney | 7 | <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="17"/> |
12918 | cbradney | 8 | <source>getColorNames() -> list |
9 | |||
10 | Returns a list containing the names of all defined colors in the document. |
||
11 | If no document is open, returns a list of the default document colors. |
||
12 | </source> |
||
14474 | cbradney | 13 | <translation type="unfinished"> |
14 | getColorNames() -> list |
||
15 | |||
16 | 傳回檔案中所有已定義顏色名稱的列表 |
||
17 | |||
18 | </translation> |
||
12918 | cbradney | 19 | </message> |
20 | <message> |
||
14474 | cbradney | 21 | <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="27"/> |
12918 | cbradney | 22 | <source>getColor("name") -> tuple |
23 | |||
24 | Returns a tuple (C, M, Y, K) containing the four color components of the |
||
25 | color "name" from the current document. If no document is open, returns |
||
26 | the value of the named color from the default document colors. |
||
27 | |||
28 | May raise NotFoundError if the named color wasn't found. |
||
29 | May raise ValueError if an invalid color name is specified. |
||
30 | </source> |
||
31 | <translation type="unfinished">getColor("name") -> tuple |
||
32 | |||
33 | Returns a tuple (C, M, Y, K) containing the four colour components of the |
||
34 | colour "name" from the current document. If no document is open, returns |
||
35 | the value of the named colour from the default document colours. |
||
36 | |||
37 | May raise NotFoundError if the named colour wasn't found. |
||
38 | May raise ValueError if an invalid colour name is specified. |
||
39 | </translation> |
||
40 | </message> |
||
41 | <message> |
||
14474 | cbradney | 42 | <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="41"/> |
12918 | cbradney | 43 | <source>getColorAsRGB("name") -> tuple |
44 | |||
45 | Returns a tuple (R,G,B) containing the three color components of the |
||
46 | color "name" from the current document, converted to the RGB color |
||
47 | space. If no document is open, returns the value of the named color |
||
48 | from the default document colors. |
||
49 | |||
50 | May raise NotFoundError if the named color wasn't found. |
||
51 | May raise ValueError if an invalid color name is specified. |
||
52 | </source> |
||
53 | <translation type="unfinished">getColorAsRGB("name") -> tuple |
||
54 | |||
55 | Returns a tuple (R,G,B) containing the three colour components of the |
||
56 | colour "name" from the current document, converted to the RGB colour |
||
57 | space. If no document is open, returns the value of the named colour |
||
58 | from the default document colours. |
||
59 | |||
60 | May raise NotFoundError if the named colour wasn't found. |
||
61 | May raise ValueError if an invalid colour name is specified. |
||
62 | </translation> |
||
63 | </message> |
||
64 | <message> |
||
14474 | cbradney | 65 | <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="56"/> |
9498 | cbradney | 66 | <source>changeColor("name", c, m, y, k) |
67 | |||
68 | Changes the color "name" to the specified CMYK value. The color value is |
||
69 | defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black. |
||
70 | Color components should be in the range from 0 to 255. |
||
71 | |||
72 | May raise NotFoundError if the named color wasn't found. |
||
73 | May raise ValueError if an invalid color name is specified. |
||
74 | </source> |
||
12918 | cbradney | 75 | <translation type="unfinished">changeColour("name", c, m, y, k) |
9498 | cbradney | 76 | |
77 | Changes the colour "name" to the specified CMYK value. The colour value is |
||
78 | defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black. |
||
79 | Colour components should be in the range from 0 to 255. |
||
80 | |||
81 | May raise NotFoundError if the named colour wasn't found. |
||
82 | May raise ValueError if an invalid colour name is specified. |
||
83 | </translation> |
||
84 | </message> |
||
85 | <message> |
||
14474 | cbradney | 86 | <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="70"/> |
12918 | cbradney | 87 | <source>defineColor("name", c, m, y, k) |
88 | |||
89 | Defines a new color "name". The color Value is defined via four components: |
||
90 | c = Cyan, m = Magenta, y = Yellow and k = Black. Color components should be in |
||
91 | the range from 0 to 255. |
||
92 | |||
93 | May raise ValueError if an invalid color name is specified. |
||
94 | </source> |
||
95 | <translation type="unfinished"></translation> |
||
96 | </message> |
||
97 | <message> |
||
14474 | cbradney | 98 | <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="83"/> |
12918 | cbradney | 99 | <source>deleteColor("name", "replace") |
100 | |||
101 | Deletes the color "name". Every occurence of that color is replaced by the |
||
102 | color "replace". If not specified, "replace" defaults to the color |
||
103 | "None" - transparent. |
||
104 | |||
105 | deleteColor works on the default document colors if there is no document open. |
||
106 | In that case, "replace", if specified, has no effect. |
||
107 | |||
108 | May raise NotFoundError if a named color wasn't found. |
||
109 | May raise ValueError if an invalid color name is specified. |
||
110 | </source> |
||
111 | <translation type="unfinished">deleteColor("name", "replace") |
||
112 | |||
113 | Deletes the colour "name". Every occurence of that colour is replaced by the |
||
114 | colour "replace". If not specified, "replace" defaults to the colour |
||
115 | "None" - transparent. |
||
116 | |||
117 | deleteColor works on the default document colours if there is no document open. |
||
118 | In that case, "replace", if specified, has no effect. |
||
119 | |||
120 | May raise NotFoundError if a named colour wasn't found. |
||
121 | May raise ValueError if an invalid colour name is specified. |
||
122 | </translation> |
||
123 | </message> |
||
124 | <message> |
||
14474 | cbradney | 125 | <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="100"/> |
12918 | cbradney | 126 | <source>replaceColor("name", "replace") |
127 | |||
128 | Every occurence of the color "name" is replaced by the color "replace". |
||
129 | |||
130 | May raise NotFoundError if a named color wasn't found. |
||
131 | May raise ValueError if an invalid color name is specified. |
||
132 | </source> |
||
133 | <translation type="unfinished">replaceColor("name", "replace") |
||
134 | |||
135 | Every occurence of the colour "name" is replaced by the colour "replace". |
||
136 | |||
137 | May raise NotFoundError if a named colour wasn't found. |
||
138 | May raise ValueError if an invalid colour name is specified. |
||
139 | </translation> |
||
140 | </message> |
||
141 | <message> |
||
14474 | cbradney | 142 | <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="113"/> |
143 | <source>isSpotColor("name") -> bool |
||
144 | |||
145 | Returns True if the color "name" is a spot color. |
||
146 | See also setSpotColor() |
||
147 | |||
148 | May raise NotFoundError if a named color wasn't found. |
||
149 | May raise ValueError if an invalid color name is specified. |
||
150 | </source> |
||
151 | <translation type="unfinished"></translation> |
||
152 | </message> |
||
153 | <message> |
||
154 | <location filename="../../../scribus/plugins/scriptplugin/cmdcolor.h" line="128"/> |
||
155 | <source>setSpotColor("name", spot) |
||
156 | |||
157 | Set the color "name" as a spot color if spot parameter is True. |
||
158 | See also isSpotColor() |
||
159 | |||
160 | May raise NotFoundError if a named color wasn't found. |
||
161 | May raise ValueError if an invalid color name is specified. |
||
162 | </source> |
||
163 | <translation type="unfinished"></translation> |
||
164 | </message> |
||
165 | <message> |
||
166 | <location filename="../../../scribus/plugins/scriptplugin/cmddialog.h" line="17"/> |
||
12918 | cbradney | 167 | <source>newDocDialog() -> bool |
168 | |||
169 | Displays the "New Document" dialog box. Creates a new document if the user |
||
170 | accepts the settings. Does not create a document if the user presses cancel. |
||
171 | Returns true if a new document was created. |
||
172 | </source> |
||
173 | <translation type="unfinished">newDocDialog() -> bool |
||
174 | |||
175 | 顯示 "新建檔案" 對話視窗, 如果使用者接受設定值, 則開啟新的檔案. 如果使用者案取消鍵, |
||
176 | 檔案將不會新建. 如果新檔案已經新增, 傳回 "真". |
||
177 | </translation> |
||
178 | </message> |
||
179 | <message> |
||
14474 | cbradney | 180 | <location filename="../../../scribus/plugins/scriptplugin/cmddialog.h" line="28"/> |
12918 | cbradney | 181 | <source>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename |
182 | |||
183 | Shows a File Open dialog box with the caption "caption". Files are filtered |
||
184 | with the filter string "filter". A default filename or file path can also |
||
185 | supplied, leave this string empty when you don't want to use it. A value of |
||
186 | True for haspreview enables a small preview widget in the FileSelect box. When |
||
187 | the issave parameter is set to True the dialog acts like a "Save As" dialog |
||
188 | otherwise it acts like a "File Open Dialog". When the isdir parameter is True |
||
189 | the dialog shows and returns only directories. The default for all of the |
||
190 | optional parameters is False. |
||
191 | |||
192 | The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
||
193 | For example 'Images (*.png *.xpm *.jpg)'. |
||
194 | |||
195 | Refer to the Qt-Documentation for QFileDialog for details on filters. |
||
196 | |||
197 | Example: fileDialog('Open input', 'CSV files (*.csv)') |
||
198 | Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
||
199 | </source> |
||
200 | <translation type="unfinished"></translation> |
||
201 | </message> |
||
202 | <message> |
||
14474 | cbradney | 203 | <location filename="../../../scribus/plugins/scriptplugin/cmddialog.h" line="56"/> |
12918 | cbradney | 204 | <source>messageBox("caption", "message", |
205 | icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
||
206 | button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
||
207 | |||
208 | Displays a message box with the title "caption", the message "message", and |
||
209 | an icon "icon" and up to 3 buttons. By default no icon is used and a single |
||
210 | button, OK, is displayed. Only the caption and message arguments are required, |
||
211 | though setting an icon and appropriate button(s) is strongly |
||
212 | recommended. The message text may contain simple HTML-like markup. |
||
213 | |||
214 | Returns the number of the button the user pressed. Button numbers start |
||
215 | at 1. |
||
216 | |||
217 | For the icon and the button parameters there are predefined constants available |
||
218 | with the same names as in the Qt Documentation. These are the BUTTON_* and |
||
219 | ICON_* constants defined in the module. There are also two extra constants that |
||
220 | can be binary-ORed with button constants: |
||
221 | BUTTONOPT_DEFAULT Pressing enter presses this button. |
||
222 | BUTTONOPT_ESCAPE Pressing escape presses this button. |
||
223 | |||
224 | Usage examples: |
||
225 | result = messageBox('Script failed', |
||
226 | 'This script only works when you have a text frame selected.', |
||
227 | ICON_ERROR) |
||
228 | result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>', |
||
229 | ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
||
230 | BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
||
231 | |||
232 | Defined button and icon constants: |
||
233 | BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
||
234 | BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
||
235 | ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
||
236 | </source> |
||
237 | <translation type="unfinished">messageBox("caption", "message", |
||
238 | icon=ICON_NONE, button1=BUTTON_OK|BUTTONOPT_DEFAULT, |
||
239 | button2=BUTTON_NONE, button3=BUTTON_NONE) -> integer |
||
240 | |||
241 | Displays a message box with the title "caption", the message "message", and |
||
242 | an icon "icon" and up to 3 buttons. By default no icon is used and a single |
||
243 | button, OK, is displayed. Only the caption and message arguments are required, |
||
244 | though setting an icon and appropriate button(s) is strongly |
||
245 | recommended. The message text may contain simple HTML-like markup. |
||
246 | |||
247 | Returns the number of the button the user pressed. Button numbers start |
||
248 | at 1. |
||
249 | |||
250 | For the icon and the button parameters there are predefined constants available |
||
251 | with the same names as in the Qt Documentation. These are the BUTTON_* and |
||
252 | ICON_* constants defined in the module. There are also two extra constants that |
||
253 | can be binary-ORed with button constants: |
||
254 | BUTTONOPT_DEFAULT Pressing enter presses this button. |
||
255 | BUTTONOPT_ESCAPE Pressing escape presses this button. |
||
256 | |||
257 | Usage examples: |
||
258 | result = messageBox('Script failed', |
||
259 | 'This script only works when you have a text frame selected.', |
||
260 | ICON_ERROR) |
||
261 | result = messageBox('Monkeys!', 'Something went ook! <i>Was it a monkey?</i>', |
||
262 | ICON_WARNING, BUTTON_YES|BUTTONOPT_DEFAULT, |
||
263 | BUTTON_NO, BUTTON_IGNORE|BUTTONOPT_ESCAPE) |
||
264 | |||
265 | Defined button and icon constants: |
||
266 | BUTTON_NONE, BUTTON_ABORT, BUTTON_CANCEL, BUTTON_IGNORE, BUTTON_NO, |
||
267 | BUTTON_NOALL, BUTTON_OK, BUTTON_RETRY, BUTTON_YES, BUTTON_YESALL, |
||
268 | ICON_NONE, ICON_INFORMATION, ICON_WARNING, ICON_CRITICAL. |
||
269 | </translation> |
||
270 | </message> |
||
271 | <message> |
||
14474 | cbradney | 272 | <location filename="../../../scribus/plugins/scriptplugin/cmddialog.h" line="95"/> |
12918 | cbradney | 273 | <source>valueDialog(caption, message [,defaultvalue]) -> string |
274 | |||
275 | Shows the common 'Ask for string' dialog and returns its value as a string |
||
276 | Parameters: window title, text in the window and optional 'default' value. |
||
277 | |||
278 | Example: valueDialog('title', 'text in the window', 'optional') |
||
279 | </source> |
||
280 | <translation type="unfinished">valueDialog(caption, message [,defaultvalue]) -> string |
||
281 | |||
282 | Shows the common 'Ask for string' dialog and returns its value as a string |
||
283 | Parameters: window title, text in the window and optional 'default' value. |
||
284 | |||
285 | Example: valueDialog('title', 'text in the window', 'optional') |
||
286 | </translation> |
||
287 | </message> |
||
288 | <message> |
||
14474 | cbradney | 289 | <location filename="../../../scribus/plugins/scriptplugin/cmddialog.h" line="107"/> |
12918 | cbradney | 290 | <source>newStyleDialog() -> string |
291 | |||
292 | Shows 'Create new paragraph style' dialog. Function returns real |
||
293 | style name or None when user cancels the dialog. |
||
294 | </source> |
||
295 | <translation type="unfinished">newStyleDialog() -> string |
||
296 | |||
297 | Shows 'Create new paragraph style' dialog. Function returns real |
||
298 | style name or None when user cancels the dialog. |
||
299 | </translation> |
||
300 | </message> |
||
301 | <message> |
||
14474 | cbradney | 302 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="16"/> |
12918 | cbradney | 303 | <source>newDocument(size, margins, orientation, firstPageNumber, |
304 | unit, pagesType, firstPageOrder, numPages) -> bool |
||
305 | |||
306 | Creates a new document and returns true if successful. The parameters have the |
||
307 | following meaning: |
||
308 | |||
309 | size = A tuple (width, height) describing the size of the document. You can |
||
310 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
311 | |||
312 | margins = A tuple (left, right, top, bottom) describing the document |
||
313 | margins |
||
314 | |||
315 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
316 | |||
317 | firstPageNumer = is the number of the first page in the document used for |
||
318 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
319 | numbers if you're creating a document in several parts. |
||
320 | |||
321 | unit: this value sets the measurement units used by the document. Use a |
||
322 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
323 | UNIT_PICAS, UNIT_POINTS. |
||
324 | |||
325 | pagesType = One of the predefined constants PAGE_n. PAGE_1 is single page, |
||
326 | PAGE_2 is for double sided documents, PAGE_3 is for 3 pages fold and |
||
327 | PAGE_4 is 4-fold. |
||
328 | |||
329 | firstPageOrder = What is position of first page in the document. |
||
330 | Indexed from 0 (0 = first). |
||
331 | |||
332 | numPage = Number of pages to be created. |
||
333 | |||
334 | The values for width, height and the margins are expressed in the given unit |
||
335 | for the document. PAPER_* constants are expressed in points. If your document |
||
336 | is not in points, make sure to account for this. |
||
337 | |||
338 | example: newDocument(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 7, UNIT_POINTS, |
||
339 | PAGE_4, 3, 1) |
||
340 | |||
341 | May raise ScribusError if is firstPageOrder bigger than allowed by pagesType. |
||
342 | </source> |
||
343 | <translation type="unfinished"></translation> |
||
344 | </message> |
||
345 | <message> |
||
14474 | cbradney | 346 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="62"/> |
12918 | cbradney | 347 | <source>newDoc(size, margins, orientation, firstPageNumber, |
348 | unit, facingPages, firstSideLeft) -> bool |
||
349 | |||
350 | WARNING: Obsolete procedure! Use newDocument instead. |
||
351 | |||
352 | Creates a new document and returns true if successful. The parameters have the |
||
353 | following meaning: |
||
354 | |||
355 | size = A tuple (width, height) describing the size of the document. You can |
||
356 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
357 | |||
358 | margins = A tuple (left, right, top, bottom) describing the document |
||
359 | margins |
||
360 | |||
361 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
362 | |||
363 | firstPageNumer = is the number of the first page in the document used for |
||
364 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
365 | numbers if you're creating a document in several parts. |
||
366 | |||
367 | unit: this value sets the measurement units used by the document. Use a |
||
368 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
369 | UNIT_PICAS, UNIT_POINTS. |
||
370 | |||
371 | facingPages = FACINGPAGES, NOFACINGPAGES |
||
372 | |||
373 | firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
||
374 | |||
375 | The values for width, height and the margins are expressed in the given unit |
||
376 | for the document. PAPER_* constants are expressed in points. If your document |
||
377 | is not in points, make sure to account for this. |
||
378 | |||
379 | example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
||
380 | FACINGPAGES, FIRSTPAGERIGHT) |
||
381 | </source> |
||
382 | <translation type="unfinished">newDoc(size, margins, orientation, firstPageNumber, |
||
383 | unit, facingPages, firstSideLeft) -> bool |
||
384 | |||
385 | WARNING: Obsolete procedure! Use newDocument instead. |
||
386 | |||
387 | Creates a new document and returns true if successful. The parameters have the |
||
388 | following meaning: |
||
389 | |||
390 | size = A tuple (width, height) describing the size of the document. You can |
||
391 | use predefined constants named PAPER_<paper_type> e.g. PAPER_A4 etc. |
||
392 | |||
393 | margins = A tuple (left, right, top, bottom) describing the document |
||
394 | margins |
||
395 | |||
396 | orientation = the page orientation - constants PORTRAIT, LANDSCAPE |
||
397 | |||
398 | firstPageNumer = is the number of the first page in the document used for |
||
399 | pagenumbering. While you'll usually want 1, it's useful to have higher |
||
400 | numbers if you're creating a document in several parts. |
||
401 | |||
402 | unit: this value sets the measurement units used by the document. Use a |
||
403 | predefined constant for this, one of: UNIT_INCHES, UNIT_MILLIMETERS, |
||
404 | UNIT_PICAS, UNIT_POINTS. |
||
405 | |||
406 | facingPages = FACINGPAGES, NOFACINGPAGES |
||
407 | |||
408 | firstSideLeft = FIRSTPAGELEFT, FIRSTPAGERIGHT |
||
409 | |||
410 | The values for width, height and the margins are expressed in the given unit |
||
411 | for the document. PAPER_* constants are expressed in points. If your document |
||
412 | is not in points, make sure to account for this. |
||
413 | |||
414 | example: newDoc(PAPER_A4, (10, 10, 20, 20), LANDSCAPE, 1, UNIT_POINTS, |
||
415 | FACINGPAGES, FIRSTPAGERIGHT) |
||
416 | </translation> |
||
417 | </message> |
||
418 | <message> |
||
14474 | cbradney | 419 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="103"/> |
12456 | jghali | 420 | <source>closeDoc() |
9498 | cbradney | 421 | |
12456 | jghali | 422 | Closes the current document without prompting to save. |
9498 | cbradney | 423 | |
12456 | jghali | 424 | May throw NoDocOpenError if there is no document to close |
9498 | cbradney | 425 | </source> |
12456 | jghali | 426 | <translation type="unfinished">closeDoc() |
9498 | cbradney | 427 | |
12456 | jghali | 428 | Closes the current document without prompting to save. |
9498 | cbradney | 429 | |
12456 | jghali | 430 | May throw NoDocOpenError if there is no document to close |
9498 | cbradney | 431 | </translation> |
432 | </message> |
||
433 | <message> |
||
14474 | cbradney | 434 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="114"/> |
12918 | cbradney | 435 | <source>haveDoc() -> bool |
436 | |||
437 | Returns true if there is a document open. |
||
438 | </source> |
||
439 | <translation type="unfinished">haveDoc() -> bool |
||
440 | |||
441 | Returns true if there is a document open. |
||
442 | </translation> |
||
443 | </message> |
||
444 | <message> |
||
14474 | cbradney | 445 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="123"/> |
12918 | cbradney | 446 | <source>openDoc("name") |
447 | |||
448 | Opens the document "name". |
||
449 | |||
450 | May raise ScribusError if the document could not be opened. |
||
451 | </source> |
||
452 | <translation type="unfinished">openDoc("name") |
||
453 | |||
454 | Opens the document "name". |
||
455 | |||
456 | May raise ScribusError if the document could not be opened. |
||
457 | </translation> |
||
458 | </message> |
||
459 | <message> |
||
14474 | cbradney | 460 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="134"/> |
12918 | cbradney | 461 | <source>saveDoc() |
462 | |||
463 | Saves the current document with its current name, returns true if successful. |
||
464 | If the document has not already been saved, this may bring up an interactive |
||
465 | save file dialog. |
||
466 | |||
467 | If the save fails, there is currently no way to tell. |
||
468 | </source> |
||
469 | <translation type="unfinished">saveDoc() |
||
470 | |||
471 | Saves the current document with its current name, returns true if successful. |
||
472 | If the document has not already been saved, this may bring up an interactive |
||
473 | save file dialog. |
||
474 | |||
475 | If the save fails, there is currently no way to tell. |
||
476 | </translation> |
||
477 | </message> |
||
478 | <message> |
||
14474 | cbradney | 479 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="146"/> |
480 | <source>getDocName() -> string |
||
481 | |||
482 | Returns the name the document was saved under. |
||
483 | If the document was not saved before the name is empty. |
||
484 | </source> |
||
485 | <translation type="unfinished"></translation> |
||
486 | </message> |
||
487 | <message> |
||
488 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="156"/> |
||
12918 | cbradney | 489 | <source>saveDocAs("name") |
490 | |||
491 | Saves the current document under the new name "name" (which may be a full or |
||
492 | relative path). |
||
493 | |||
494 | May raise ScribusError if the save fails. |
||
495 | </source> |
||
496 | <translation type="unfinished">saveDocAs("name") |
||
497 | |||
498 | Saves the current document under the new name "name" (which may be a full or |
||
499 | relative path). |
||
500 | |||
501 | May raise ScribusError if the save fails. |
||
502 | </translation> |
||
503 | </message> |
||
504 | <message> |
||
14474 | cbradney | 505 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="168"/> |
12918 | cbradney | 506 | <source>setInfo("author", "info", "description") -> bool |
507 | |||
508 | Sets the document information. "Author", "Info", "Description" are |
||
509 | strings. |
||
510 | </source> |
||
511 | <translation type="unfinished"></translation> |
||
512 | </message> |
||
513 | <message> |
||
14474 | cbradney | 514 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="178"/> |
12918 | cbradney | 515 | <source>setMargins(lr, rr, tr, br) |
516 | |||
14474 | cbradney | 517 | Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br) |
12918 | cbradney | 518 | margins are given in the measurement units of the document - see UNIT_<type> |
519 | constants. |
||
520 | </source> |
||
14474 | cbradney | 521 | <translation type="unfinished">setMargins(lr, rr, tr, br) |
522 | |||
523 | Sets the margins of the document, Left(lr), Right(rr), Top(tr) and Bottom(br) |
||
524 | margins are given in the measurement units of the document - see UNIT_<type> |
||
525 | constants. |
||
526 | </translation> |
||
527 | </message> |
||
528 | <message> |
||
529 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="189"/> |
||
530 | <source>setBaseLine(grid, offset) |
||
531 | |||
532 | Sets the base line settings of the document, grid spacing(grid), grid offset(offset). |
||
533 | Values are given in the measurement units of the document - see UNIT_<type> |
||
534 | constants. |
||
535 | </source> |
||
12918 | cbradney | 536 | <translation type="unfinished"></translation> |
537 | </message> |
||
538 | <message> |
||
14474 | cbradney | 539 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="200"/> |
12918 | cbradney | 540 | <source>setUnit(type) |
541 | |||
542 | Changes the measurement unit of the document. Possible values for "unit" are |
||
543 | defined as constants UNIT_<type>. |
||
544 | |||
545 | May raise ValueError if an invalid unit is passed. |
||
546 | </source> |
||
547 | <translation type="unfinished">setUnit(type) |
||
548 | |||
549 | Changes the measurement unit of the document. Possible values for "unit" are |
||
550 | defined as constants UNIT_<type>. |
||
551 | |||
552 | May raise ValueError if an invalid unit is passed. |
||
553 | </translation> |
||
554 | </message> |
||
555 | <message> |
||
14474 | cbradney | 556 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="212"/> |
12918 | cbradney | 557 | <source>getUnit() -> integer (Scribus unit constant) |
558 | |||
559 | Returns the measurement units of the document. The returned value will be one |
||
560 | of the UNIT_* constants: |
||
561 | UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS. |
||
562 | </source> |
||
563 | <translation type="unfinished">getUnit() -> integer (Scribus unit constant) |
||
564 | |||
565 | Returns the measurement units of the document. The returned value will be one |
||
566 | of the UNIT_* constants: |
||
567 | UNIT_INCHES, UNIT_MILLIMETERS, UNIT_PICAS, UNIT_POINTS. |
||
568 | </translation> |
||
569 | </message> |
||
570 | <message> |
||
14474 | cbradney | 571 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="223"/> |
12918 | cbradney | 572 | <source>loadStylesFromFile("filename") |
573 | |||
574 | Loads paragraph styles from the Scribus document at "filename" into the |
||
575 | current document. |
||
576 | </source> |
||
577 | <translation type="unfinished">loadStylesFromFile("filename") |
||
578 | |||
579 | Loads paragraph styles from the Scribus document at "filename" into the |
||
580 | current document. |
||
581 | </translation> |
||
582 | </message> |
||
583 | <message> |
||
14474 | cbradney | 584 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="233"/> |
12918 | cbradney | 585 | <source>setDocType(facingPages, firstPageLeft) |
586 | |||
587 | Sets the document type. To get facing pages set the first parameter to |
||
588 | FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want |
||
589 | to be the first page a left side set the second parameter to FIRSTPAGELEFT, for |
||
590 | a right page use FIRSTPAGERIGHT. |
||
591 | </source> |
||
592 | <translation type="unfinished">setDocType(facingPages, firstPageLeft) |
||
593 | |||
594 | Sets the document type. To get facing pages set the first parameter to |
||
595 | FACINGPAGES, to switch facingPages off use NOFACINGPAGES instead. If you want |
||
596 | to be the first page a left side set the second parameter to FIRSTPAGELEFT, for |
||
597 | a right page use FIRSTPAGERIGHT. |
||
598 | </translation> |
||
599 | </message> |
||
600 | <message> |
||
14474 | cbradney | 601 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="243"/> |
12456 | jghali | 602 | <source>closeMasterPage() |
9498 | cbradney | 603 | |
12456 | jghali | 604 | Closes the currently active master page, if any, and returns editing |
605 | to normal. Begin editing with editMasterPage(). |
||
9498 | cbradney | 606 | </source> |
12456 | jghali | 607 | <translation type="unfinished">closeMasterPage() |
9498 | cbradney | 608 | |
12456 | jghali | 609 | Closes the currently active master page, if any, and returns editing |
610 | to normal. Begin editing with editMasterPage(). |
||
9498 | cbradney | 611 | </translation> |
612 | </message> |
||
613 | <message> |
||
14474 | cbradney | 614 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="251"/> |
12918 | cbradney | 615 | <source>masterPageNames() |
616 | |||
617 | Returns a list of the names of all master pages in the document. |
||
618 | </source> |
||
619 | <translation type="unfinished">masterPageNames() |
||
620 | |||
621 | Returns a list of the names of all master pages in the document. |
||
622 | </translation> |
||
623 | </message> |
||
624 | <message> |
||
14474 | cbradney | 625 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="258"/> |
12918 | cbradney | 626 | <source>editMasterPage(pageName) |
627 | |||
628 | Enables master page editing and opens the named master page |
||
629 | for editing. Finish editing with closeMasterPage(). |
||
630 | </source> |
||
631 | <translation type="unfinished">editMasterPage(pageName) |
||
632 | |||
633 | Enables master page editing and opens the named master page |
||
634 | for editing. Finish editing with closeMasterPage(). |
||
635 | </translation> |
||
636 | </message> |
||
637 | <message> |
||
14474 | cbradney | 638 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="266"/> |
12918 | cbradney | 639 | <source>createMasterPage(pageName) |
640 | |||
641 | Creates a new master page named pageName and opens it for |
||
642 | editing. |
||
643 | </source> |
||
644 | <translation type="unfinished">createMasterPage(pageName) |
||
645 | |||
646 | 開新的 pageName 的主頁, 並打開它來編輯. |
||
647 | </translation> |
||
648 | </message> |
||
649 | <message> |
||
14474 | cbradney | 650 | <location filename="../../../scribus/plugins/scriptplugin/cmddoc.h" line="274"/> |
12918 | cbradney | 651 | <source>deleteMasterPage(pageName) |
652 | |||
653 | Delete the named master page. |
||
654 | </source> |
||
14474 | cbradney | 655 | <translation type="unfinished">deleteMasterPage(pageName) |
656 | |||
657 | 刪除已命名的主頁 |
||
658 | </translation> |
||
12918 | cbradney | 659 | </message> |
660 | <message> |
||
14474 | cbradney | 661 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="17"/> |
12918 | cbradney | 662 | <source>getFillColor(["name"]) -> string |
663 | |||
664 | Returns the name of the fill color of the object "name". |
||
665 | If "name" is not given the currently selected item is used. |
||
666 | </source> |
||
667 | <translation type="unfinished"></translation> |
||
668 | </message> |
||
669 | <message> |
||
14474 | cbradney | 670 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="27"/> |
12918 | cbradney | 671 | <source>getFillTransparency(["name"]) -> float |
672 | |||
673 | Returns the fill transparency of the object "name". If "name" |
||
674 | is not given the currently selected Item is used. |
||
675 | </source> |
||
676 | <translation type="unfinished"></translation> |
||
677 | </message> |
||
678 | <message> |
||
14474 | cbradney | 679 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="37"/> |
12918 | cbradney | 680 | <source>getFillBlendmode(["name"]) -> integer |
681 | |||
682 | Returns the fill blendmode of the object "name". If "name" |
||
683 | is not given the currently selected Item is used. |
||
684 | </source> |
||
685 | <translation type="unfinished"></translation> |
||
686 | </message> |
||
687 | <message> |
||
14474 | cbradney | 688 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="47"/> |
12918 | cbradney | 689 | <source>getLineColor(["name"]) -> string |
690 | |||
691 | Returns the name of the line color of the object "name". |
||
692 | If "name" is not given the currently selected item is used. |
||
693 | </source> |
||
694 | <translation type="unfinished">getLineColor(["name"]) -> string |
||
695 | |||
696 | Returns the name of the line colour of the object "name". |
||
697 | If "name" is not given the currently selected item is used. |
||
698 | </translation> |
||
699 | </message> |
||
700 | <message> |
||
14474 | cbradney | 701 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="57"/> |
12918 | cbradney | 702 | <source>getLineTransparency(["name"]) -> float |
703 | |||
704 | Returns the line transparency of the object "name". If "name" |
||
705 | is not given the currently selected Item is used. |
||
706 | </source> |
||
707 | <translation type="unfinished"></translation> |
||
708 | </message> |
||
709 | <message> |
||
14474 | cbradney | 710 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="67"/> |
12918 | cbradney | 711 | <source>getLineBlendmode(["name"]) -> integer |
712 | |||
713 | Returns the line blendmode of the object "name". If "name" |
||
714 | is not given the currently selected Item is used. |
||
715 | </source> |
||
716 | <translation type="unfinished"></translation> |
||
717 | </message> |
||
718 | <message> |
||
14474 | cbradney | 719 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="77"/> |
12918 | cbradney | 720 | <source>getLineWidth(["name"]) -> integer |
721 | |||
722 | Returns the line width of the object "name". If "name" |
||
723 | is not given the currently selected Item is used. |
||
724 | </source> |
||
725 | <translation type="unfinished">getLineWidth(["name"]) -> integer |
||
726 | |||
727 | Returns the line width of the object "name". If "name" |
||
728 | is not given the currently selected Item is used. |
||
729 | </translation> |
||
730 | </message> |
||
731 | <message> |
||
14474 | cbradney | 732 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="87"/> |
12918 | cbradney | 733 | <source>getLineShade(["name"]) -> integer |
734 | |||
735 | Returns the shading value of the line color of the object "name". |
||
736 | If "name" is not given the currently selected item is used. |
||
737 | </source> |
||
738 | <translation type="unfinished">getLineShade(["name"]) -> integer |
||
739 | |||
740 | Returns the shading value of the line colour of the object "name". |
||
741 | If "name" is not given the currently selected item is used. |
||
742 | </translation> |
||
743 | </message> |
||
744 | <message> |
||
14474 | cbradney | 745 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="97"/> |
12918 | cbradney | 746 | <source>getLineJoin(["name"]) -> integer (see constants) |
747 | |||
748 | Returns the line join style of the object "name". If "name" is not given |
||
749 | the currently selected item is used. The join types are: |
||
750 | JOIN_BEVEL, JOIN_MITTER, JOIN_ROUND |
||
751 | </source> |
||
752 | <translation type="unfinished"></translation> |
||
753 | </message> |
||
754 | <message> |
||
14474 | cbradney | 755 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="108"/> |
12918 | cbradney | 756 | <source>getLineEnd(["name"]) -> integer (see constants) |
757 | |||
758 | Returns the line cap style of the object "name". If "name" is not given the |
||
759 | currently selected item is used. The cap types are: |
||
760 | CAP_FLAT, CAP_ROUND, CAP_SQUARE |
||
761 | </source> |
||
762 | <translation type="unfinished">getLineEnd(["name"]) -> integer (see constants) |
||
763 | |||
764 | Returns the line cap style of the object "name". If "name" is not given the |
||
765 | currently selected item is used. The cap types are: |
||
766 | CAP_FLAT, CAP_ROUND, CAP_SQUARE |
||
767 | </translation> |
||
768 | </message> |
||
769 | <message> |
||
14474 | cbradney | 770 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="119"/> |
12918 | cbradney | 771 | <source>getLineStyle(["name"]) -> integer (see constants) |
772 | |||
773 | Returns the line style of the object "name". If "name" is not given the |
||
774 | currently selected item is used. Line style constants are: |
||
775 | LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID |
||
776 | </source> |
||
777 | <translation type="unfinished">getLineStyle(["name"]) -> integer (see constants) |
||
778 | |||
779 | Returns the line style of the object "name". If "name" is not given the |
||
780 | currently selected item is used. Line style constants are: |
||
781 | LINE_DASH, LINE_DASHDOT, LINE_DASHDOTDOT, LINE_DOT, LINE_SOLID |
||
782 | </translation> |
||
783 | </message> |
||
784 | <message> |
||
14474 | cbradney | 785 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="130"/> |
12918 | cbradney | 786 | <source>getFillShade(["name"]) -> integer |
787 | |||
788 | Returns the shading value of the fill color of the object "name". |
||
789 | If "name" is not given the currently selected item is used. |
||
790 | </source> |
||
791 | <translation type="unfinished">getFillShade(["name"]) -> integer |
||
792 | |||
793 | Returns the shading value of the fill colour of the object "name". |
||
794 | If "name" is not given the currently selected item is used. |
||
795 | </translation> |
||
796 | </message> |
||
797 | <message> |
||
14474 | cbradney | 798 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="140"/> |
12918 | cbradney | 799 | <source>getCornerRadius(["name"]) -> integer |
800 | |||
801 | Returns the corner radius of the object "name". The radius is |
||
802 | expressed in points. If "name" is not given the currently |
||
803 | selected item is used. |
||
804 | </source> |
||
805 | <translation type="unfinished"></translation> |
||
806 | </message> |
||
807 | <message> |
||
14474 | cbradney | 808 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="151"/> |
12918 | cbradney | 809 | <source>getImageScale(["name"]) -> (x,y) |
810 | |||
811 | Returns a (x, y) tuple containing the scaling values of the image frame |
||
812 | "name". If "name" is not given the currently selected item is used. |
||
813 | </source> |
||
814 | <translation type="unfinished">getImageScale(["name"]) -> (x,y) |
||
815 | |||
816 | Returns a (x, y) tuple containing the scaling values of the image frame |
||
817 | "name". If "name" is not given the currently selected item is used. |
||
818 | </translation> |
||
819 | </message> |
||
820 | <message> |
||
14474 | cbradney | 821 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="161"/> |
12918 | cbradney | 822 | <source>getImageName(["name"]) -> string |
823 | |||
824 | Returns the filename for the image in the image frame. If "name" is not |
||
825 | given the currently selected item is used. |
||
826 | </source> |
||
827 | <translation type="unfinished">getImageName(["name"]) -> string |
||
828 | |||
829 | Returns the filename for the image in the image frame. If "name" is not |
||
830 | given the currently selected item is used. |
||
831 | </translation> |
||
832 | </message> |
||
833 | <message> |
||
14474 | cbradney | 834 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="171"/> |
12918 | cbradney | 835 | <source>getPosition(["name"]) -> (x,y) |
836 | |||
837 | Returns a (x, y) tuple with the position of the object "name". |
||
838 | If "name" is not given the currently selected item is used. |
||
839 | The position is expressed in the actual measurement unit of the document |
||
840 | - see UNIT_<type> for reference. |
||
841 | </source> |
||
842 | <translation type="unfinished"></translation> |
||
843 | </message> |
||
844 | <message> |
||
14474 | cbradney | 845 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="183"/> |
12918 | cbradney | 846 | <source>getSize(["name"]) -> (width,height) |
847 | |||
848 | Returns a (width, height) tuple with the size of the object "name". |
||
849 | If "name" is not given the currently selected item is used. The size is |
||
850 | expressed in the current measurement unit of the document - see UNIT_<type> |
||
851 | for reference. |
||
852 | </source> |
||
853 | <translation type="unfinished">getSize(["name"]) -> (width,height) |
||
854 | |||
855 | Returns a (width, height) tuple with the size of the object "name". |
||
856 | If "name" is not given the currently selected item is used. The size is |
||
857 | expressed in the current measurement unit of the document - see UNIT_<type> |
||
858 | for reference. |
||
859 | </translation> |
||
860 | </message> |
||
861 | <message> |
||
14474 | cbradney | 862 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="195"/> |
12918 | cbradney | 863 | <source>getRotation(["name"]) -> integer |
864 | |||
865 | Returns the rotation of the object "name". The value is expressed in degrees, |
||
866 | and clockwise is positive. If "name" is not given the currently selected item |
||
867 | is used. |
||
868 | </source> |
||
869 | <translation type="unfinished">getRotation(["name"]) -> integer |
||
870 | |||
871 | Returns the rotation of the object "name". The value is expressed in degrees, |
||
872 | and clockwise is positive. If "name" is not given the currently selected item |
||
873 | is used. |
||
874 | </translation> |
||
875 | </message> |
||
876 | <message> |
||
14474 | cbradney | 877 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetprop.h" line="206"/> |
12918 | cbradney | 878 | <source>getAllObjects() -> list |
879 | |||
880 | Returns a list containing the names of all objects on the current page. |
||
881 | </source> |
||
882 | <translation type="unfinished">getAllObjects() -> list |
||
883 | |||
884 | Returns a list containing the names of all objects on the current page. |
||
885 | </translation> |
||
886 | </message> |
||
887 | <message> |
||
14474 | cbradney | 888 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetsetprop.h" line="77"/> |
12918 | cbradney | 889 | <source>getPropertyCType(object, property, includesuper=True) |
890 | |||
891 | Returns the name of the C type of `property' of `object'. See getProperty() |
||
892 | for details of arguments. |
||
893 | |||
894 | If `includesuper' is true, search inherited properties too. |
||
895 | </source> |
||
896 | <translation type="unfinished">getPropertyCType(object, property, includesuper=True) |
||
897 | |||
898 | Returns the name of the C type of `property' of `object'. See getProperty() |
||
899 | for details of arguments. |
||
900 | |||
901 | If `includesuper' is true, search inherited properties too. |
||
902 | </translation> |
||
903 | </message> |
||
904 | <message> |
||
14474 | cbradney | 905 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetsetprop.h" line="96"/> |
12918 | cbradney | 906 | <source>getPropertyNames(object, includesuper=True) |
907 | |||
908 | Return a list of property names supported by `object'. |
||
909 | If `includesuper' is true, return properties supported |
||
910 | by parent classes as well. |
||
911 | </source> |
||
912 | <translation type="unfinished">getPropertyNames(object, includesuper=True) |
||
913 | |||
914 | Return a list of property names supported by `object'. |
||
915 | If `includesuper' is true, return properties supported |
||
916 | by parent classes as well. |
||
917 | </translation> |
||
918 | </message> |
||
919 | <message> |
||
14474 | cbradney | 920 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetsetprop.h" line="123"/> |
12918 | cbradney | 921 | <source>getProperty(object, property) |
922 | |||
923 | Return the value of the property `property' of the passed `object'. |
||
924 | |||
925 | The `object' argument may be a string, in which case the named PageItem |
||
926 | is searched for. It may also be a PyCObject, which may point to any |
||
927 | C++ QObject instance. |
||
928 | |||
929 | The `property' argument must be a string, and is the name of the property |
||
930 | to look up on `object'. |
||
931 | |||
932 | The return value varies depending on the type of the property. |
||
933 | </source> |
||
934 | <translation type="unfinished">getProperty(object, property) |
||
935 | |||
936 | Return the value of the property `property' of the passed `object'. |
||
937 | |||
938 | The `object' argument may be a string, in which case the named PageItem |
||
939 | is searched for. It may also be a PyCObject, which may point to any |
||
940 | C++ QObject instance. |
||
941 | |||
942 | The `property' argument must be a string, and is the name of the property |
||
943 | to look up on `object'. |
||
944 | |||
945 | The return value varies depending on the type of the property. |
||
946 | </translation> |
||
947 | </message> |
||
948 | <message> |
||
14474 | cbradney | 949 | <location filename="../../../scribus/plugins/scriptplugin/cmdgetsetprop.h" line="158"/> |
12918 | cbradney | 950 | <source>setProperty(object, property, value) |
951 | |||
952 | Set `property' of `object' to `value'. If `value' cannot be converted to a type |
||
953 | compatible with the type of `property', an exception is raised. An exception may |
||
954 | also be raised if the underlying setter fails. |
||
955 | |||
956 | See getProperty() for more information. |
||
957 | </source> |
||
958 | <translation type="unfinished">setProperty(object, property, value) |
||
959 | |||
960 | Set `property' of `object' to `value'. If `value' cannot be converted to a type |
||
961 | compatible with the type of `property', an exception is raised. An exception may |
||
962 | also be raised if the underlying setter fails. |
||
963 | |||
964 | See getProperty() for more information. |
||
965 | </translation> |
||
966 | </message> |
||
967 | <message> |
||
14474 | cbradney | 968 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="17"/> |
12918 | cbradney | 969 | <source>moveObject(dx, dy [, "name"]) |
970 | |||
971 | Moves the object "name" by dx and dy relative to its current position. The |
||
972 | distances are expressed in the current measurement unit of the document (see |
||
973 | UNIT constants). If "name" is not given the currently selected item is used. |
||
974 | If the object "name" belongs to a group, the whole group is moved. |
||
975 | </source> |
||
976 | <translation type="unfinished"></translation> |
||
977 | </message> |
||
978 | <message> |
||
14474 | cbradney | 979 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="29"/> |
12918 | cbradney | 980 | <source>moveObjectAbs(x, y [, "name"]) |
981 | |||
982 | Moves the object "name" to a new location. The coordinates are expressed in |
||
983 | the current measurement unit of the document (see UNIT constants). If "name" |
||
984 | is not given the currently selected item is used. If the object "name" |
||
985 | belongs to a group, the whole group is moved. |
||
986 | </source> |
||
987 | <translation type="unfinished">moveObjectAbs(x, y [, "name"]) |
||
988 | |||
989 | Moves the object "name" to a new location. The coordinates are expressed in |
||
990 | the current measurement unit of the document (see UNIT constants). If "name" |
||
991 | is not given the currently selected item is used. If the object "name" |
||
992 | belongs to a group, the whole group is moved. |
||
993 | </translation> |
||
994 | </message> |
||
995 | <message> |
||
14474 | cbradney | 996 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="41"/> |
12918 | cbradney | 997 | <source>rotateObject(rot [, "name"]) |
998 | |||
999 | Rotates the object "name" by "rot" degrees relatively. The object is |
||
1000 | rotated by the vertex that is currently selected as the rotation point - by |
||
1001 | default, the top left vertex at zero rotation. Positive values mean counter |
||
1002 | clockwise rotation when the default rotation point is used. If "name" is not |
||
1003 | given the currently selected item is used. |
||
1004 | </source> |
||
1005 | <translation type="unfinished"></translation> |
||
1006 | </message> |
||
1007 | <message> |
||
14474 | cbradney | 1008 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="54"/> |
12918 | cbradney | 1009 | <source>rotateObjectAbs(rot [, "name"]) |
1010 | |||
1011 | Sets the rotation of the object "name" to "rot". Positive values |
||
1012 | mean counter clockwise rotation. If "name" is not given the currently |
||
1013 | selected item is used. |
||
1014 | </source> |
||
1015 | <translation type="unfinished"></translation> |
||
1016 | </message> |
||
1017 | <message> |
||
14474 | cbradney | 1018 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="65"/> |
12918 | cbradney | 1019 | <source>sizeObject(width, height [, "name"]) |
1020 | |||
1021 | Resizes the object "name" to the given width and height. If "name" |
||
1022 | is not given the currently selected item is used. |
||
1023 | </source> |
||
1024 | <translation type="unfinished">sizeObject(width, height [, "name"]) |
||
1025 | |||
1026 | Resizes the object "name" to the given width and height. If "name" |
||
1027 | is not given the currently selected item is used. |
||
1028 | </translation> |
||
1029 | </message> |
||
1030 | <message> |
||
14474 | cbradney | 1031 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="75"/> |
12918 | cbradney | 1032 | <source>getSelectedObject([nr]) -> string |
1033 | |||
1034 | Returns the name of the selected object. "nr" if given indicates the number |
||
1035 | of the selected object, e.g. 0 means the first selected object, 1 means the |
||
1036 | second selected Object and so on. |
||
1037 | </source> |
||
1038 | <translation type="unfinished">getSelectedObject([nr]) -> string |
||
1039 | |||
1040 | Returns the name of the selected object. "nr" if given indicates the number |
||
1041 | of the selected object, e.g. 0 means the first selected object, 1 means the |
||
1042 | second selected Object and so on. |
||
1043 | </translation> |
||
1044 | </message> |
||
1045 | <message> |
||
14474 | cbradney | 1046 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="86"/> |
12918 | cbradney | 1047 | <source>selectionCount() -> integer |
1048 | |||
1049 | Returns the number of selected objects. |
||
1050 | </source> |
||
1051 | <translation type="unfinished">selectionCount() -> integer |
||
1052 | |||
1053 | Returns the number of selected objects. |
||
1054 | </translation> |
||
1055 | </message> |
||
1056 | <message> |
||
14474 | cbradney | 1057 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="95"/> |
12918 | cbradney | 1058 | <source>selectObject("name") |
1059 | |||
1060 | Selects the object with the given "name". |
||
1061 | </source> |
||
1062 | <translation type="unfinished">selectObject("name") |
||
1063 | |||
1064 | Selects the object with the given "name". |
||
1065 | </translation> |
||
1066 | </message> |
||
1067 | <message> |
||
14474 | cbradney | 1068 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="104"/> |
12918 | cbradney | 1069 | <source>deselectAll() |
1070 | |||
1071 | Deselects all objects in the whole document. |
||
1072 | </source> |
||
1073 | <translation type="unfinished">deselectAll() |
||
1074 | |||
1075 | Deselects all objects in the whole document. |
||
1076 | </translation> |
||
1077 | </message> |
||
1078 | <message> |
||
14474 | cbradney | 1079 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="113"/> |
14747 | cbradney | 1080 | <source>groupObjects(list) -> string |
1081 | |||
1082 | Groups the objects named in "list" together. "list" must contain the names |
||
1083 | of the objects to be grouped. If "list" is not given the currently selected |
||
1084 | items are used. Returns the group name for further referencing. |
||
1085 | </source> |
||
1086 | <translation type="unfinished"></translation> |
||
1087 | </message> |
||
1088 | <message> |
||
12918 | cbradney | 1089 | <source>groupObjects(list) |
1090 | |||
1091 | Groups the objects named in "list" together. "list" must contain the names |
||
1092 | of the objects to be grouped. If "list" is not given the currently selected |
||
1093 | items are used. |
||
1094 | </source> |
||
14747 | cbradney | 1095 | <translation type="obsolete">groupObjects(list) |
12918 | cbradney | 1096 | |
1097 | Groups the objects named in "list" together. "list" must contain the names |
||
1098 | of the objects to be grouped. If "list" is not given the currently selected |
||
1099 | items are used. |
||
1100 | </translation> |
||
1101 | </message> |
||
1102 | <message> |
||
14474 | cbradney | 1103 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="124"/> |
12918 | cbradney | 1104 | <source>unGroupObjects("name") |
1105 | |||
1106 | Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</source> |
||
1107 | <translation type="unfinished">unGroupObjects("name") |
||
1108 | |||
1109 | Destructs the group the object "name" belongs to.If "name" is not given the currently selected item is used.</translation> |
||
1110 | </message> |
||
1111 | <message> |
||
14474 | cbradney | 1112 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="132"/> |
12918 | cbradney | 1113 | <source>scaleGroup(factor [,"name"]) |
1114 | |||
1115 | Scales the group the object "name" belongs to. Values greater than 1 enlarge |
||
1116 | the group, values smaller than 1 make the group smaller e.g a value of 0.5 |
||
1117 | scales the group to 50 % of its original size, a value of 1.5 scales the group |
||
1118 | to 150 % of its original size. The value for "factor" must be greater than |
||
1119 | 0. If "name" is not given the currently selected item is used. |
||
1120 | |||
1121 | May raise ValueError if an invalid scale factor is passed. |
||
1122 | </source> |
||
1123 | <translation type="unfinished">scaleGroup(factor [,"name"]) |
||
1124 | |||
1125 | Scales the group the object "name" belongs to. Values greater than 1 enlarge |
||
1126 | the group, values smaller than 1 make the group smaller e.g a value of 0.5 |
||
1127 | scales the group to 50 % of its original size, a value of 1.5 scales the group |
||
1128 | to 150 % of its original size. The value for "factor" must be greater than |
||
1129 | 0. If "name" is not given the currently selected item is used. |
||
1130 | |||
1131 | May raise ValueError if an invalid scale factor is passed. |
||
1132 | </translation> |
||
1133 | </message> |
||
1134 | <message> |
||
14474 | cbradney | 1135 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="147"/> |
12918 | cbradney | 1136 | <source>loadImage("filename" [, "name"]) |
1137 | |||
1138 | Loads the picture "picture" into the image frame "name". If "name" is |
||
1139 | not given the currently selected item is used. |
||
1140 | |||
1141 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
1142 | </source> |
||
1143 | <translation type="unfinished">loadImage("filename" [, "name"]) |
||
1144 | |||
1145 | Loads the picture "picture" into the image frame "name". If "name" is |
||
1146 | not given the currently selected item is used. |
||
1147 | |||
1148 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
1149 | </translation> |
||
1150 | </message> |
||
1151 | <message> |
||
14474 | cbradney | 1152 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="159"/> |
12918 | cbradney | 1153 | <source>scaleImage(x, y [, "name"]) |
1154 | |||
14474 | cbradney | 1155 | Sets the internal scaling factors of the picture in the image frame "name". |
1156 | If "name" is not given the currently selected item is used. A number of 1 |
||
1157 | means 100 %. Internal scaling factors are different from the values shown on |
||
1158 | properties palette. Note : deprecated, use setImageScale() instead. |
||
1159 | |||
1160 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
1161 | </source> |
||
1162 | <translation type="unfinished"></translation> |
||
1163 | </message> |
||
1164 | <message> |
||
1165 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="173"/> |
||
1166 | <source>setImageScale(x, y [, "name"]) |
||
1167 | |||
12918 | cbradney | 1168 | Sets the scaling factors of the picture in the image frame "name". |
1169 | If "name" is not given the currently selected item is used. A number of 1 |
||
14474 | cbradney | 1170 | means 100 %. Scaling factors are equal to the values shown on properties palette. |
1171 | |||
1172 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
1173 | </source> |
||
1174 | <translation type="unfinished"></translation> |
||
1175 | </message> |
||
1176 | <message> |
||
1177 | <source>scaleImage(x, y [, "name"]) |
||
1178 | |||
1179 | Sets the scaling factors of the picture in the image frame "name". |
||
1180 | If "name" is not given the currently selected item is used. A number of 1 |
||
12918 | cbradney | 1181 | means 100 %. |
1182 | |||
1183 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
1184 | </source> |
||
13279 | cbradney | 1185 | <translation type="obsolete">scaleImage(x, y [, "name"]) |
12918 | cbradney | 1186 | |
1187 | Sets the scaling factors of the picture in the image frame "name". |
||
1188 | If "name" is not given the currently selected item is used. A number of 1 |
||
1189 | means 100 %. |
||
1190 | |||
1191 | May raise WrongFrameTypeError if the target frame is not an image frame |
||
1192 | </translation> |
||
1193 | </message> |
||
1194 | <message> |
||
14474 | cbradney | 1195 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="186"/> |
12918 | cbradney | 1196 | <source>lockObject(["name"]) -> bool |
1197 | |||
1198 | Locks the object "name" if it's unlocked or unlock it if it's locked. |
||
1199 | If "name" is not given the currently selected item is used. Returns true |
||
1200 | if locked. |
||
1201 | </source> |
||
1202 | <translation type="unfinished">lockObject(["name"]) -> bool |
||
1203 | |||
1204 | Locks the object "name" if it's unlocked or unlock it if it's locked. |
||
1205 | If "name" is not given the currently selected item is used. Returns true |
||
1206 | if locked. |
||
1207 | </translation> |
||
1208 | </message> |
||
1209 | <message> |
||
14474 | cbradney | 1210 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="197"/> |
12918 | cbradney | 1211 | <source>isLocked(["name"]) -> bool |
1212 | |||
1213 | Returns true if is the object "name" locked. If "name" is not given the |
||
1214 | currently selected item is used. |
||
1215 | </source> |
||
1216 | <translation type="unfinished">isLocked(["name"]) -> bool |
||
1217 | |||
1218 | Returns true if is the object "name" locked. If "name" is not given the |
||
1219 | currently selected item is used. |
||
1220 | </translation> |
||
1221 | </message> |
||
1222 | <message> |
||
14474 | cbradney | 1223 | <location filename="../../../scribus/plugins/scriptplugin/cmdmani.h" line="206"/> |
12918 | cbradney | 1224 | <source>setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>) |
1225 | |||
1226 | Sets the scale to frame on the selected or specified image frame to `scaletoframe'. |
||
1227 | If `proportional' is specified, set fixed aspect ratio scaling to `proportional'. |
||
1228 | Both `scaletoframe' and `proportional' are boolean. |
||
1229 | |||
1230 | May raise WrongFrameTypeError. |
||
1231 | </source> |
||
1232 | <translation type="unfinished">setScaleImageToFrame(scaletoframe, proportional=None, name=<selection>) |
||
1233 | |||
1234 | Sets the scale to frame on the selected or specified image frame to `scaletoframe'. |
||
1235 | If `proportional' is specified, set fixed aspect ratio scaling to `proportional'. |
||
1236 | Both `scaletoframe' and `proportional' are boolean. |
||
1237 | |||
1238 | May raise WrongFrameTypeError. |
||
1239 | </translation> |
||
1240 | </message> |
||
1241 | <message> |
||
14474 | cbradney | 1242 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="19"/> |
12918 | cbradney | 1243 | <source>setRedraw(bool) |
1244 | |||
1245 | Disables page redraw when bool = False, otherwise redrawing is enabled. |
||
1246 | This change will persist even after the script exits, so make sure to call |
||
1247 | setRedraw(True) in a finally: clause at the top level of your script. |
||
1248 | </source> |
||
1249 | <translation type="unfinished"></translation> |
||
1250 | </message> |
||
1251 | <message> |
||
14474 | cbradney | 1252 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="30"/> |
12918 | cbradney | 1253 | <source>getFontNames() -> list |
1254 | |||
1255 | Returns a list with the names of all available fonts. |
||
1256 | </source> |
||
1257 | <translation type="unfinished">getFontNames() -> list |
||
1258 | |||
1259 | Returns a list with the names of all available fonts. |
||
1260 | </translation> |
||
1261 | </message> |
||
1262 | <message> |
||
14474 | cbradney | 1263 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="39"/> |
12918 | cbradney | 1264 | <source>getXFontNames() -> list of tuples |
1265 | |||
1266 | Returns a larger font info. It's a list of the tuples with: |
||
1267 | [ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ] |
||
1268 | </source> |
||
1269 | <translation type="unfinished">getXFontNames() -> list of tuples |
||
1270 | |||
1271 | Returns a larger font info. It's a list of the tuples with: |
||
1272 | [ (Scribus name, Family, Real name, subset (1|0), embed PS (1|0), font file), (...), ... ] |
||
1273 | </translation> |
||
1274 | </message> |
||
1275 | <message> |
||
14474 | cbradney | 1276 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="52"/> |
12918 | cbradney | 1277 | <source>renderFont("name", "filename", "sample", size, format="PPM") -> bool |
1278 | |||
1279 | Creates an image preview of font "name" with given text "sample" and size. |
||
1280 | If "filename" is not "", image is saved into "filename". Otherwise |
||
1281 | image data is returned as a string. The optional "format" argument |
||
1282 | specifies the image format to generate, and supports any format allowed |
||
1283 | by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM. |
||
1284 | |||
1285 | May raise NotFoundError if the specified font can't be found. |
||
1286 | May raise ValueError if an empty sample or filename is passed. |
||
1287 | </source> |
||
1288 | <translation type="unfinished">renderFont("name", "filename", "sample", size, format="PPM") -> bool |
||
1289 | |||
1290 | Creates an image preview of font "name" with given text "sample" and size. |
||
1291 | If "filename" is not "", image is saved into "filename". Otherwise |
||
1292 | image data is returned as a string. The optional "format" argument |
||
1293 | specifies the image format to generate, and supports any format allowed |
||
1294 | by QPixmap.save(). Common formats are PPM, JPEG, PNG and XPM. |
||
1295 | |||
1296 | May raise NotFoundError if the specified font can't be found. |
||
1297 | May raise ValueError if an empty sample or filename is passed. |
||
1298 | </translation> |
||
1299 | </message> |
||
1300 | <message> |
||
14474 | cbradney | 1301 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="68"/> |
12918 | cbradney | 1302 | <source>getLayers() -> list |
1303 | |||
1304 | Returns a list with the names of all defined layers. |
||
1305 | </source> |
||
1306 | <translation type="unfinished">getLayers() -> list |
||
1307 | |||
1308 | Returns a list with the names of all defined layers. |
||
1309 | </translation> |
||
1310 | </message> |
||
1311 | <message> |
||
14474 | cbradney | 1312 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="77"/> |
12918 | cbradney | 1313 | <source>setActiveLayer("name") |
1314 | |||
1315 | Sets the active layer to the layer named "name". |
||
1316 | |||
1317 | May raise NotFoundError if the layer can't be found. |
||
1318 | May raise ValueError if the layer name isn't acceptable. |
||
1319 | </source> |
||
1320 | <translation type="unfinished">setActiveLayer("name") |
||
1321 | |||
1322 | Sets the active layer to the layer named "name". |
||
1323 | |||
1324 | May raise NotFoundError if the layer can't be found. |
||
1325 | May raise ValueError if the layer name isn't acceptable. |
||
1326 | </translation> |
||
1327 | </message> |
||
1328 | <message> |
||
14474 | cbradney | 1329 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="89"/> |
12918 | cbradney | 1330 | <source>getActiveLayer() -> string |
1331 | |||
1332 | Returns the name of the current active layer. |
||
1333 | </source> |
||
1334 | <translation type="unfinished">getActiveLayer() -> string |
||
1335 | |||
1336 | Returns the name of the current active layer. |
||
1337 | </translation> |
||
1338 | </message> |
||
1339 | <message> |
||
14474 | cbradney | 1340 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="98"/> |
12918 | cbradney | 1341 | <source>sentToLayer("layer" [, "name"]) |
1342 | |||
1343 | Sends the object "name" to the layer "layer". The layer must exist. |
||
1344 | If "name" is not given the currently selected item is used. |
||
1345 | |||
1346 | May raise NotFoundError if the layer can't be found. |
||
1347 | May raise ValueError if the layer name isn't acceptable. |
||
1348 | </source> |
||
1349 | <translation type="unfinished">sentToLayer("layer" [, "name"]) |
||
1350 | |||
1351 | Sends the object "name" to the layer "layer". The layer must exist. |
||
1352 | If "name" is not given the currently selected item is used. |
||
1353 | |||
1354 | May raise NotFoundError if the layer can't be found. |
||
1355 | May raise ValueError if the layer name isn't acceptable. |
||
1356 | </translation> |
||
1357 | </message> |
||
1358 | <message> |
||
14474 | cbradney | 1359 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="111"/> |
12918 | cbradney | 1360 | <source>setLayerVisible("layer", visible) |
1361 | |||
1362 | Sets the layer "layer" to be visible or not. If is the visible set to false |
||
1363 | the layer is invisible. |
||
1364 | |||
1365 | May raise NotFoundError if the layer can't be found. |
||
1366 | May raise ValueError if the layer name isn't acceptable. |
||
1367 | </source> |
||
1368 | <translation type="unfinished">setLayerVisible("layer", visible) |
||
1369 | |||
1370 | Sets the layer "layer" to be visible or not. If is the visible set to false |
||
1371 | the layer is invisible. |
||
1372 | |||
1373 | May raise NotFoundError if the layer can't be found. |
||
1374 | May raise ValueError if the layer name isn't acceptable. |
||
1375 | </translation> |
||
1376 | </message> |
||
1377 | <message> |
||
14474 | cbradney | 1378 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="124"/> |
12918 | cbradney | 1379 | <source>setLayerPrintable("layer", printable) |
1380 | |||
1381 | Sets the layer "layer" to be printable or not. If is the |
||
1382 | printable set to false the layer won't be printed. |
||
1383 | |||
1384 | May raise NotFoundError if the layer can't be found. |
||
1385 | May raise ValueError if the layer name isn't acceptable. |
||
1386 | </source> |
||
1387 | <translation type="unfinished"></translation> |
||
1388 | </message> |
||
1389 | <message> |
||
14474 | cbradney | 1390 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="137"/> |
12918 | cbradney | 1391 | <source>setLayerLocked("layer", locked) |
1392 | |||
1393 | Sets the layer "layer" to be locked or not. If locked is set to |
||
1394 | true the layer will be locked. |
||
1395 | |||
1396 | May raise NotFoundError if the layer can't be found. |
||
1397 | May raise ValueError if the layer name isn't acceptable. |
||
1398 | </source> |
||
1399 | <translation type="unfinished"></translation> |
||
1400 | </message> |
||
1401 | <message> |
||
14474 | cbradney | 1402 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="150"/> |
12918 | cbradney | 1403 | <source>setLayerOutlined("layer", outline) |
1404 | |||
1405 | Sets the layer "layer" to be locked or not. If outline is set to |
||
1406 | true the layer will be displayed outlined. |
||
1407 | |||
1408 | May raise NotFoundError if the layer can't be found. |
||
1409 | May raise ValueError if the layer name isn't acceptable. |
||
1410 | </source> |
||
1411 | <translation type="unfinished"></translation> |
||
1412 | </message> |
||
1413 | <message> |
||
14474 | cbradney | 1414 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="163"/> |
12918 | cbradney | 1415 | <source>setLayerFlow("layer", flow) |
1416 | |||
1417 | Sets the layers "layer" flowcontrol to flow. If flow is set to |
||
1418 | true text in layers above this one will flow around objects on this layer. |
||
1419 | |||
1420 | May raise NotFoundError if the layer can't be found. |
||
1421 | May raise ValueError if the layer name isn't acceptable. |
||
1422 | </source> |
||
1423 | <translation type="unfinished"></translation> |
||
1424 | </message> |
||
1425 | <message> |
||
14474 | cbradney | 1426 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="176"/> |
12918 | cbradney | 1427 | <source>setLayerBlendmode("layer", blend) |
1428 | |||
1429 | Sets the layers "layer" blendmode to blend. |
||
1430 | |||
1431 | May raise NotFoundError if the layer can't be found. |
||
1432 | May raise ValueError if the layer name isn't acceptable. |
||
1433 | </source> |
||
1434 | <translation type="unfinished"></translation> |
||
1435 | </message> |
||
1436 | <message> |
||
14474 | cbradney | 1437 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="188"/> |
12918 | cbradney | 1438 | <source>setLayerTransparency("layer", trans) |
1439 | |||
1440 | Sets the layers "layer" transparency to trans. |
||
1441 | |||
1442 | May raise NotFoundError if the layer can't be found. |
||
1443 | May raise ValueError if the layer name isn't acceptable. |
||
1444 | </source> |
||
1445 | <translation type="unfinished"></translation> |
||
1446 | </message> |
||
1447 | <message> |
||
14474 | cbradney | 1448 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="200"/> |
12918 | cbradney | 1449 | <source>isLayerVisible("layer") -> bool |
1450 | |||
1451 | Returns whether the layer "layer" is visible or not, a value of True means |
||
1452 | that the layer "layer" is visible, a value of False means that the layer |
||
1453 | "layer" is invisible. |
||
1454 | |||
1455 | May raise NotFoundError if the layer can't be found. |
||
1456 | May raise ValueError if the layer name isn't acceptable. |
||
1457 | </source> |
||
1458 | <translation type="unfinished"></translation> |
||
1459 | </message> |
||
1460 | <message> |
||
14474 | cbradney | 1461 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="214"/> |
12918 | cbradney | 1462 | <source>isLayerPrintable("layer") -> bool |
1463 | |||
1464 | Returns whether the layer "layer" is printable or not, a value of True means |
||
1465 | that the layer "layer" can be printed, a value of False means that printing |
||
1466 | the layer "layer" is disabled. |
||
1467 | |||
1468 | May raise NotFoundError if the layer can't be found. |
||
1469 | May raise ValueError if the layer name isn't acceptable. |
||
1470 | </source> |
||
1471 | <translation type="unfinished">isLayerPrintable("layer") -> bool |
||
1472 | |||
1473 | Returns whether the layer "layer" is printable or not, a value of True means |
||
1474 | that the layer "layer" can be printed, a value of False means that printing |
||
1475 | the layer "layer" is disabled. |
||
1476 | |||
1477 | May raise NotFoundError if the layer can't be found. |
||
1478 | May raise ValueError if the layer name isn't acceptable. |
||
1479 | </translation> |
||
1480 | </message> |
||
1481 | <message> |
||
14474 | cbradney | 1482 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="228"/> |
12918 | cbradney | 1483 | <source>isLayerLocked("layer") -> bool |
1484 | |||
1485 | Returns whether the layer "layer" is locked or not, a value of True means |
||
1486 | that the layer "layer" is editable, a value of False means that the layer |
||
1487 | "layer" is locked. |
||
1488 | |||
1489 | May raise NotFoundError if the layer can't be found. |
||
1490 | May raise ValueError if the layer name isn't acceptable. |
||
1491 | </source> |
||
1492 | <translation type="unfinished"></translation> |
||
1493 | </message> |
||
1494 | <message> |
||
14474 | cbradney | 1495 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="242"/> |
12918 | cbradney | 1496 | <source>isLayerOutlined("layer") -> bool |
1497 | |||
1498 | Returns whether the layer "layer" is outlined or not, a value of True means |
||
1499 | that the layer "layer" is outlined, a value of False means that the layer |
||
1500 | "layer" is normal. |
||
1501 | |||
1502 | May raise NotFoundError if the layer can't be found. |
||
1503 | May raise ValueError if the layer name isn't acceptable. |
||
1504 | </source> |
||
1505 | <translation type="unfinished"></translation> |
||
1506 | </message> |
||
1507 | <message> |
||
14474 | cbradney | 1508 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="256"/> |
12918 | cbradney | 1509 | <source>isLayerFlow("layer") -> bool |
1510 | |||
1511 | Returns whether text flows around objects on layer "layer", a value of True means |
||
1512 | that text flows around, a value of False means that the text does not flow around. |
||
1513 | |||
1514 | May raise NotFoundError if the layer can't be found. |
||
1515 | May raise ValueError if the layer name isn't acceptable. |
||
1516 | </source> |
||
1517 | <translation type="unfinished"></translation> |
||
1518 | </message> |
||
1519 | <message> |
||
14474 | cbradney | 1520 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="269"/> |
12918 | cbradney | 1521 | <source>getLayerBlendmode("layer") -> int |
1522 | |||
1523 | Returns the "layer" layer blendmode, |
||
1524 | |||
1525 | May raise NotFoundError if the layer can't be found. |
||
1526 | May raise ValueError if the layer name isn't acceptable. |
||
1527 | </source> |
||
1528 | <translation type="unfinished"></translation> |
||
1529 | </message> |
||
1530 | <message> |
||
14474 | cbradney | 1531 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="281"/> |
12918 | cbradney | 1532 | <source>getLayerTransparency("layer") -> float |
1533 | |||
1534 | Returns the "layer" layer transparency, |
||
1535 | |||
1536 | May raise NotFoundError if the layer can't be found. |
||
1537 | May raise ValueError if the layer name isn't acceptable. |
||
1538 | </source> |
||
1539 | <translation type="unfinished"></translation> |
||
1540 | </message> |
||
1541 | <message> |
||
14474 | cbradney | 1542 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="293"/> |
12918 | cbradney | 1543 | <source>deleteLayer("layer") |
1544 | |||
1545 | Deletes the layer with the name "layer". Nothing happens if the layer doesn't |
||
1546 | exists or if it's the only layer in the document. |
||
1547 | |||
1548 | May raise NotFoundError if the layer can't be found. |
||
1549 | May raise ValueError if the layer name isn't acceptable. |
||
1550 | </source> |
||
1551 | <translation type="unfinished">deleteLayer("layer") |
||
1552 | |||
1553 | Deletes the layer with the name "layer". Nothing happens if the layer doesn't |
||
1554 | exists or if it's the only layer in the document. |
||
1555 | |||
1556 | May raise NotFoundError if the layer can't be found. |
||
1557 | May raise ValueError if the layer name isn't acceptable. |
||
1558 | </translation> |
||
1559 | </message> |
||
1560 | <message> |
||
14474 | cbradney | 1561 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="306"/> |
12918 | cbradney | 1562 | <source>createLayer(layer) |
1563 | |||
1564 | Creates a new layer with the name "name". |
||
1565 | |||
1566 | May raise ValueError if the layer name isn't acceptable. |
||
1567 | </source> |
||
1568 | <translation type="unfinished">createLayer(layer) |
||
1569 | |||
1570 | Creates a new layer with the name "name". |
||
1571 | |||
1572 | May raise ValueError if the layer name isn't acceptable. |
||
1573 | </translation> |
||
1574 | </message> |
||
1575 | <message> |
||
14474 | cbradney | 1576 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="317"/> |
12918 | cbradney | 1577 | <source>getGuiLanguage() -> string |
1578 | |||
1579 | Returns a string with the -lang value. |
||
1580 | </source> |
||
1581 | <translation type="unfinished">getGuiLanguage() -> string |
||
1582 | |||
1583 | Returns a string with the -lang value. |
||
1584 | </translation> |
||
1585 | </message> |
||
1586 | <message> |
||
14474 | cbradney | 1587 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="326"/> |
12918 | cbradney | 1588 | <source>moveSelectionToFront() |
1589 | |||
1590 | Moves current selection to front. |
||
1591 | </source> |
||
1592 | <translation type="unfinished"></translation> |
||
1593 | </message> |
||
1594 | <message> |
||
14474 | cbradney | 1595 | <location filename="../../../scribus/plugins/scriptplugin/cmdmisc.h" line="335"/> |
12918 | cbradney | 1596 | <source>moveSelectionToFront() |
1597 | |||
1598 | Moves current selection to back. |
||
1599 | </source> |
||
1600 | <translation type="unfinished"></translation> |
||
1601 | </message> |
||
1602 | <message> |
||
14474 | cbradney | 1603 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="17"/> |
12918 | cbradney | 1604 | <source>createRect(x, y, width, height, ["name"]) -> string |
1605 | |||
1606 | Creates a new rectangle on the current page and returns its name. The |
||
1607 | coordinates are given in the current measurement units of the document |
||
1608 | (see UNIT constants). "name" should be a unique identifier for the object |
||
1609 | because you need this name to reference that object in future. If "name" |
||
1610 | is not given Scribus will create one for you. |
||
1611 | |||
1612 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1613 | </source> |
||
1614 | <translation type="unfinished"></translation> |
||
1615 | </message> |
||
1616 | <message> |
||
14474 | cbradney | 1617 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="34"/> |
12918 | cbradney | 1618 | <source>createEllipse(x, y, width, height, ["name"]) -> string |
1619 | |||
1620 | Creates a new ellipse on the current page and returns its name. |
||
1621 | The coordinates are given in the current measurement units of the document |
||
1622 | (see UNIT constants). "name" should be a unique identifier for the object |
||
1623 | because you need this name for further referencing of that object. If "name" |
||
1624 | is not given Scribus will create one for you. |
||
1625 | |||
1626 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1627 | </source> |
||
1628 | <translation type="unfinished">createEllipse(x, y, width, height, ["name"]) -> string |
||
1629 | |||
1630 | Creates a new ellipse on the current page and returns its name. |
||
1631 | The coordinates are given in the current measurement units of the document |
||
1632 | (see UNIT constants). "name" should be a unique identifier for the object |
||
1633 | because you need this name for further referencing of that object. If "name" |
||
1634 | is not given Scribus will create one for you. |
||
1635 | |||
1636 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1637 | </translation> |
||
1638 | </message> |
||
1639 | <message> |
||
14474 | cbradney | 1640 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="51"/> |
12918 | cbradney | 1641 | <source>createImage(x, y, width, height, ["name"]) -> string |
1642 | |||
1643 | Creates a new picture frame on the current page and returns its name. The |
||
1644 | coordinates are given in the current measurement units of the document. |
||
1645 | "name" should be a unique identifier for the object because you need this |
||
1646 | name for further access to that object. If "name" is not given Scribus will |
||
1647 | create one for you. |
||
1648 | |||
1649 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1650 | </source> |
||
1651 | <translation type="unfinished">createImage(x, y, width, height, ["name"]) -> string |
||
1652 | |||
1653 | Creates a new picture frame on the current page and returns its name. The |
||
1654 | coordinates are given in the current measurement units of the document. |
||
1655 | "name" should be a unique identifier for the object because you need this |
||
1656 | name for further access to that object. If "name" is not given Scribus will |
||
1657 | create one for you. |
||
1658 | |||
1659 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1660 | </translation> |
||
1661 | </message> |
||
1662 | <message> |
||
14474 | cbradney | 1663 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="66"/> |
12918 | cbradney | 1664 | <source>createText(x, y, width, height, ["name"]) -> string |
1665 | |||
1666 | Creates a new text frame on the actual page and returns its name. |
||
1667 | The coordinates are given in the actual measurement unit of the document (see |
||
1668 | UNIT constants). "name" should be a unique identifier for the object because |
||
1669 | you need this name for further referencing of that object. If "name" is not |
||
1670 | given Scribus will create one for you. |
||
1671 | |||
1672 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1673 | </source> |
||
1674 | <translation type="unfinished">createText(x, y, width, height, ["name"]) -> string |
||
1675 | |||
1676 | Creates a new text frame on the actual page and returns its name. |
||
1677 | The coordinates are given in the actual measurement unit of the document (see |
||
1678 | UNIT constants). "name" should be a unique identifier for the object because |
||
1679 | you need this name for further referencing of that object. If "name" is not |
||
1680 | given Scribus will create one for you. |
||
1681 | |||
1682 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1683 | </translation> |
||
1684 | </message> |
||
1685 | <message> |
||
14474 | cbradney | 1686 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="81"/> |
12918 | cbradney | 1687 | <source>createLine(x1, y1, x2, y2, ["name"]) -> string |
1688 | |||
1689 | Creates a new line from the point(x1, y1) to the point(x2, y2) and returns |
||
1690 | its name. The coordinates are given in the current measurement unit of the |
||
1691 | document (see UNIT constants). "name" should be a unique identifier for the |
||
1692 | object because you need this name for further access to that object. If |
||
1693 | "name" is not given Scribus will create one for you. |
||
1694 | |||
1695 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1696 | </source> |
||
1697 | <translation type="unfinished">createLine(x1, y1, x2, y2, ["name"]) -> string |
||
1698 | |||
1699 | Creates a new line from the point(x1, y1) to the point(x2, y2) and returns |
||
1700 | its name. The coordinates are given in the current measurement unit of the |
||
1701 | document (see UNIT constants). "name" should be a unique identifier for the |
||
1702 | object because you need this name for further access to that object. If |
||
1703 | "name" is not given Scribus will create one for you. |
||
1704 | |||
1705 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1706 | </translation> |
||
1707 | </message> |
||
1708 | <message> |
||
14474 | cbradney | 1709 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="96"/> |
12918 | cbradney | 1710 | <source>createPolyLine(list, ["name"]) -> string |
1711 | |||
1712 | Creates a new polyline and returns its name. The points for the polyline are |
||
1713 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
1714 | The coordinates are given in the current measurement units of the document (see |
||
1715 | UNIT constants). "name" should be a unique identifier for the object because |
||
1716 | you need this name for further access to that object. If "name" is not given |
||
1717 | Scribus will create one for you. |
||
1718 | |||
1719 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1720 | May raise ValueError if an insufficient number of points is passed or if |
||
1721 | the number of values passed don't group into points without leftovers. |
||
1722 | </source> |
||
1723 | <translation type="unfinished">createPolyLine(list, ["name"]) -> string |
||
1724 | |||
1725 | Creates a new polyline and returns its name. The points for the polyline are |
||
1726 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
1727 | The coordinates are given in the current measurement units of the document (see |
||
1728 | UNIT constants). "name" should be a unique identifier for the object because |
||
1729 | you need this name for further access to that object. If "name" is not given |
||
1730 | Scribus will create one for you. |
||
1731 | |||
1732 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1733 | May raise ValueError if an insufficient number of points is passed or if |
||
1734 | the number of values passed don't group into points without leftovers. |
||
1735 | </translation> |
||
1736 | </message> |
||
1737 | <message> |
||
14474 | cbradney | 1738 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="114"/> |
12918 | cbradney | 1739 | <source>createPolygon(list, ["name"]) -> string |
1740 | |||
1741 | Creates a new polygon and returns its name. The points for the polygon are |
||
1742 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
1743 | At least three points are required. There is no need to repeat the first point |
||
1744 | to close the polygon. The polygon is automatically closed by connecting the |
||
1745 | first and the last point. The coordinates are given in the current measurement |
||
1746 | units of the document (see UNIT constants). "name" should be a unique |
||
1747 | identifier for the object because you need this name for further access to that |
||
1748 | object. If "name" is not given Scribus will create one for you. |
||
1749 | |||
1750 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1751 | May raise ValueError if an insufficient number of points is passed or if |
||
1752 | the number of values passed don't group into points without leftovers. |
||
1753 | </source> |
||
1754 | <translation type="unfinished">createPolygon(list, ["name"]) -> string |
||
1755 | |||
1756 | Creates a new polygon and returns its name. The points for the polygon are |
||
1757 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
1758 | At least three points are required. There is no need to repeat the first point |
||
1759 | to close the polygon. The polygon is automatically closed by connecting the |
||
1760 | first and the last point. The coordinates are given in the current measurement |
||
1761 | units of the document (see UNIT constants). "name" should be a unique |
||
1762 | identifier for the object because you need this name for further access to that |
||
1763 | object. If "name" is not given Scribus will create one for you. |
||
1764 | |||
1765 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1766 | May raise ValueError if an insufficient number of points is passed or if |
||
1767 | the number of values passed don't group into points without leftovers. |
||
1768 | </translation> |
||
1769 | </message> |
||
1770 | <message> |
||
14474 | cbradney | 1771 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="134"/> |
12456 | jghali | 1772 | <source>createBezierLine(list, ["name"]) -> string |
9498 | cbradney | 1773 | |
12456 | jghali | 1774 | Creates a new bezier curve and returns its name. The points for the bezier |
1775 | curve are stored in the list "list" in the following order: |
||
1776 | [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
||
1777 | In the points list, x and y mean the x and y coordinates of the point and kx |
||
1778 | and ky meaning the control point for the curve. The coordinates are given in |
||
1779 | the current measurement units of the document (see UNIT constants). "name" |
||
1780 | should be a unique identifier for the object because you need this name for |
||
1781 | further access to that object. If "name" is not given Scribus will create one |
||
1782 | for you. |
||
9498 | cbradney | 1783 | |
12456 | jghali | 1784 | May raise NameExistsError if you explicitly pass a name that's already used. |
1785 | May raise ValueError if an insufficient number of points is passed or if |
||
1786 | the number of values passed don't group into points without leftovers. |
||
9498 | cbradney | 1787 | </source> |
12456 | jghali | 1788 | <translation type="unfinished">createBezierLine(list, ["name"]) -> string |
9498 | cbradney | 1789 | |
12456 | jghali | 1790 | Creates a new bezier curve and returns its name. The points for the bezier |
1791 | curve are stored in the list "list" in the following order: |
||
1792 | [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
||
1793 | In the points list, x and y mean the x and y coordinates of the point and kx |
||
1794 | and ky meaning the control point for the curve. The coordinates are given in |
||
1795 | the current measurement units of the document (see UNIT constants). "name" |
||
1796 | should be a unique identifier for the object because you need this name for |
||
1797 | further access to that object. If "name" is not given Scribus will create one |
||
1798 | for you. |
||
9498 | cbradney | 1799 | |
12456 | jghali | 1800 | May raise NameExistsError if you explicitly pass a name that's already used. |
1801 | May raise ValueError if an insufficient number of points is passed or if |
||
1802 | the number of values passed don't group into points without leftovers. |
||
9498 | cbradney | 1803 | </translation> |
1804 | </message> |
||
1805 | <message> |
||
14474 | cbradney | 1806 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="155"/> |
12918 | cbradney | 1807 | <source>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
1808 | |||
1809 | Creates a new pathText by merging the two objects "textbox" and |
||
1810 | "beziercurve" and returns its name. The coordinates are given in the current |
||
1811 | measurement unit of the document (see UNIT constants). "name" should be a |
||
1812 | unique identifier for the object because you need this name for further access |
||
1813 | to that object. If "name" is not given Scribus will create one for you. |
||
1814 | |||
1815 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1816 | May raise NotFoundError if one or both of the named base object don't exist. |
||
1817 | </source> |
||
1818 | <translation type="unfinished">createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
||
1819 | |||
1820 | Creates a new pathText by merging the two objects "textbox" and |
||
1821 | "beziercurve" and returns its name. The coordinates are given in the current |
||
1822 | measurement unit of the document (see UNIT constants). "name" should be a |
||
1823 | unique identifier for the object because you need this name for further access |
||
1824 | to that object. If "name" is not given Scribus will create one for you. |
||
1825 | |||
1826 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
1827 | May raise NotFoundError if one or both of the named base object don't exist. |
||
1828 | </translation> |
||
1829 | </message> |
||
1830 | <message> |
||
14474 | cbradney | 1831 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="173"/> |
12918 | cbradney | 1832 | <source>deleteObject(["name"]) |
1833 | |||
1834 | Deletes the item with the name "name". If "name" is not given the currently |
||
1835 | selected item is deleted. |
||
1836 | </source> |
||
1837 | <translation type="unfinished">deleteObject(["name"]) |
||
1838 | |||
1839 | Deletes the item with the name "name". If "name" is not given the currently |
||
1840 | selected item is deleted. |
||
1841 | </translation> |
||
1842 | </message> |
||
1843 | <message> |
||
14474 | cbradney | 1844 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="184"/> |
12918 | cbradney | 1845 | <source>textFlowMode("name" [, state]) |
1846 | |||
1847 | Enables/disables "Text Flows Around Frame" feature for object "name". |
||
1848 | Called with parameters string name and optional int "state" (0 <= state <= 3). |
||
1849 | Setting "state" to 0 will disable text flow. |
||
1850 | Setting "state" to 1 will make text flow around object frame. |
||
1851 | Setting "state" to 2 will make text flow around bounding box. |
||
1852 | Setting "state" to 3 will make text flow around contour line. |
||
1853 | If "state" is not passed, text flow is toggled. |
||
1854 | </source> |
||
1855 | <translation type="unfinished"></translation> |
||
1856 | </message> |
||
1857 | <message> |
||
14474 | cbradney | 1858 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="206"/> |
12918 | cbradney | 1859 | <source>objectExists(["name"]) -> bool |
1860 | |||
1861 | Test if an object with specified name really exists in the document. |
||
1862 | The optional parameter is the object name. When no object name is given, |
||
1863 | returns True if there is something selected. |
||
1864 | </source> |
||
1865 | <translation type="unfinished">objectExists(["name"]) -> bool |
||
1866 | |||
1867 | Test if an object with specified name really exists in the document. |
||
1868 | The optional parameter is the object name. When no object name is given, |
||
1869 | returns True if there is something selected. |
||
1870 | </translation> |
||
1871 | </message> |
||
1872 | <message> |
||
14474 | cbradney | 1873 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="223"/> |
12918 | cbradney | 1874 | <source>setStyle("style" [, "name"]) |
1875 | |||
14474 | cbradney | 1876 | Apply the named "style" to the object named "name". If object name is |
1877 | given, style is applied to the current text selection in object "name". |
||
1878 | If no object name is given, style is applied on selected object. |
||
1879 | </source> |
||
1880 | <translation type="unfinished"></translation> |
||
1881 | </message> |
||
1882 | <message> |
||
1883 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="250"/> |
||
1884 | <source>duplicateObject(["name"]) -> string |
||
1885 | |||
1886 | creates a Duplicate of the selected Object (or Selection Group). |
||
1887 | </source> |
||
1888 | <translation type="unfinished"></translation> |
||
1889 | </message> |
||
1890 | <message> |
||
1891 | <source>setStyle("style" [, "name"]) |
||
1892 | |||
12918 | cbradney | 1893 | Apply the named "style" to the object named "name". If is no object name |
1894 | given, it's applied on the selected object. |
||
1895 | </source> |
||
14474 | cbradney | 1896 | <translation type="obsolete">setStyle("style" [, "name"]) |
12918 | cbradney | 1897 | |
1898 | Apply the named "style" to the object named "name". If is no object name |
||
1899 | given, it's applied on the selected object. |
||
1900 | </translation> |
||
1901 | </message> |
||
1902 | <message> |
||
14474 | cbradney | 1903 | <location filename="../../../scribus/plugins/scriptplugin/cmdobj.h" line="238"/> |
12918 | cbradney | 1904 | <source>getAllStyles() -> list |
1905 | |||
1906 | Return a list of the names of all paragraph styles in the current document. |
||
1907 | </source> |
||
1908 | <translation type="unfinished">getAllStyles() -> list |
||
1909 | |||
1910 | Return a list of the names of all paragraph styles in the current document. |
||
1911 | </translation> |
||
1912 | </message> |
||
1913 | <message> |
||
14474 | cbradney | 1914 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="17"/> |
12918 | cbradney | 1915 | <source>newPage(where [,"masterpage"]) |
1916 | |||
1917 | Creates a new page. If "where" is -1 the new Page is appended to the |
||
1918 | document, otherwise the new page is inserted before "where". Page numbers are |
||
1919 | counted from 1 upwards, no matter what the displayed first page number of your |
||
1920 | document is. The optional parameter "masterpage" specifies the name of the |
||
1921 | master page for the new page. |
||
1922 | |||
1923 | May raise IndexError if the page number is out of range |
||
1924 | </source> |
||
1925 | <translation type="unfinished"></translation> |
||
1926 | </message> |
||
1927 | <message> |
||
14474 | cbradney | 1928 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="32"/> |
12918 | cbradney | 1929 | <source>currentPage() -> integer |
1930 | |||
1931 | Returns the number of the current working page. Page numbers are counted from 1 |
||
1932 | upwards, no matter what the displayed first page number of your document is. |
||
1933 | </source> |
||
1934 | <translation type="unfinished">currentPage() -> integer |
||
1935 | |||
1936 | Returns the number of the current working page. Page numbers are counted from 1 |
||
1937 | upwards, no matter what the displayed first page number of your document is. |
||
1938 | </translation> |
||
1939 | </message> |
||
1940 | <message> |
||
14474 | cbradney | 1941 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="42"/> |
12918 | cbradney | 1942 | <source>redrawAll() |
1943 | |||
1944 | Redraws all pages. |
||
1945 | </source> |
||
1946 | <translation type="unfinished">redrawAll() |
||
1947 | |||
1948 | Redraws all pages. |
||
1949 | </translation> |
||
1950 | </message> |
||
1951 | <message> |
||
14474 | cbradney | 1952 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="51"/> |
12918 | cbradney | 1953 | <source>getPageType() -> integer |
1954 | |||
1955 | Returns the type of the Page, 0 means left Page, 1 is a middle Page and 2 is a right Page |
||
1956 | </source> |
||
1957 | <translation type="unfinished"></translation> |
||
1958 | </message> |
||
1959 | <message> |
||
14474 | cbradney | 1960 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="60"/> |
12918 | cbradney | 1961 | <source>savePageAsEPS("name") |
1962 | |||
1963 | Saves the current page as an EPS to the file "name". |
||
1964 | |||
1965 | May raise ScribusError if the save failed. |
||
1966 | </source> |
||
1967 | <translation type="unfinished">savePageAsEPS("name") |
||
1968 | |||
1969 | Saves the current page as an EPS to the file "name". |
||
1970 | |||
1971 | May raise ScribusError if the save failed. |
||
1972 | </translation> |
||
1973 | </message> |
||
1974 | <message> |
||
14474 | cbradney | 1975 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="71"/> |
12918 | cbradney | 1976 | <source>deletePage(nr) |
1977 | |||
1978 | Deletes the given page. Does nothing if the document contains only one page. |
||
1979 | Page numbers are counted from 1 upwards, no matter what the displayed first |
||
1980 | page number is. |
||
1981 | |||
1982 | May raise IndexError if the page number is out of range |
||
1983 | </source> |
||
1984 | <translation type="unfinished">deletePage(nr) |
||
1985 | |||
1986 | Deletes the given page. Does nothing if the document contains only one page. |
||
1987 | Page numbers are counted from 1 upwards, no matter what the displayed first |
||
1988 | page number is. |
||
1989 | |||
1990 | May raise IndexError if the page number is out of range |
||
1991 | </translation> |
||
1992 | </message> |
||
1993 | <message> |
||
14474 | cbradney | 1994 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="84"/> |
12918 | cbradney | 1995 | <source>gotoPage(nr) |
1996 | |||
1997 | Moves to the page "nr" (that is, makes the current page "nr"). Note that |
||
1998 | gotoPage doesn't (currently) change the page the user's view is displaying, it |
||
1999 | just sets the page that script commands will operates on. |
||
2000 | |||
2001 | May raise IndexError if the page number is out of range. |
||
2002 | </source> |
||
2003 | <translation type="unfinished"></translation> |
||
2004 | </message> |
||
2005 | <message> |
||
14474 | cbradney | 2006 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="97"/> |
12918 | cbradney | 2007 | <source>pageCount() -> integer |
2008 | |||
2009 | Returns the number of pages in the document. |
||
2010 | </source> |
||
2011 | <translation type="unfinished">pageCount() -> integer |
||
2012 | |||
2013 | Returns the number of pages in the document. |
||
2014 | </translation> |
||
2015 | </message> |
||
2016 | <message> |
||
14474 | cbradney | 2017 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="106"/> |
12918 | cbradney | 2018 | <source>getHGuides() -> list |
2019 | |||
2020 | Returns a list containing positions of the horizontal guides. Values are in the |
||
2021 | document's current units - see UNIT_<type> constants. |
||
2022 | </source> |
||
2023 | <translation type="unfinished">getHGuides() -> list |
||
2024 | |||
2025 | Returns a list containing positions of the horizontal guides. Values are in the |
||
2026 | document's current units - see UNIT_<type> constants. |
||
2027 | </translation> |
||
2028 | </message> |
||
2029 | <message> |
||
14474 | cbradney | 2030 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="116"/> |
12918 | cbradney | 2031 | <source>setHGuides(list) |
2032 | |||
2033 | Sets horizontal guides. Input parameter must be a list of guide positions |
||
2034 | measured in the current document units - see UNIT_<type> constants. |
||
2035 | |||
2036 | Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost |
||
2037 | setHGuides([90,250]) # replace current guides entirely |
||
2038 | </source> |
||
2039 | <translation type="unfinished">setHGuides(list) |
||
2040 | |||
2041 | Sets horizontal guides. Input parameter must be a list of guide positions |
||
2042 | measured in the current document units - see UNIT_<type> constants. |
||
2043 | |||
2044 | Example: setHGuides(getHGuides() + [200.0, 210.0] # add new guides without any lost |
||
2045 | setHGuides([90,250]) # replace current guides entirely |
||
2046 | </translation> |
||
2047 | </message> |
||
2048 | <message> |
||
14474 | cbradney | 2049 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="129"/> |
12918 | cbradney | 2050 | <source>getVGuides() |
2051 | |||
2052 | See getHGuides. |
||
2053 | </source> |
||
2054 | <translation type="unfinished">getVGuides() |
||
2055 | |||
2056 | See getHGuides. |
||
2057 | </translation> |
||
2058 | </message> |
||
2059 | <message> |
||
14474 | cbradney | 2060 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="138"/> |
12918 | cbradney | 2061 | <source>setVGuides() |
2062 | |||
2063 | See setHGuides. |
||
2064 | </source> |
||
2065 | <translation type="unfinished">setVGuides() |
||
2066 | |||
2067 | See setHGuides. |
||
2068 | </translation> |
||
2069 | </message> |
||
2070 | <message> |
||
14474 | cbradney | 2071 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="147"/> |
12918 | cbradney | 2072 | <source>getPageSize() -> tuple |
2073 | |||
2074 | Returns a tuple with page dimensions measured in the document's current units. |
||
2075 | See UNIT_<type> constants and getPageMargins() |
||
2076 | </source> |
||
2077 | <translation type="unfinished">getPageSize() -> tuple |
||
2078 | |||
2079 | Returns a tuple with page dimensions measured in the document's current units. |
||
2080 | See UNIT_<type> constants and getPageMargins() |
||
2081 | </translation> |
||
2082 | </message> |
||
2083 | <message> |
||
14474 | cbradney | 2084 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="161"/> |
2085 | <source>getPageNSize() -> tuple |
||
2086 | |||
2087 | Returns a tuple with a particular page's size measured in the document's current units. |
||
2088 | See UNIT_<type> constants and getPageMargins() |
||
2089 | </source> |
||
2090 | <translation type="unfinished"></translation> |
||
2091 | </message> |
||
2092 | <message> |
||
2093 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="174"/> |
||
2094 | <source>getPageNMargins() -> tuple |
||
2095 | |||
2096 | Returns a tuple with a particular page's margins measured in the document's current units. |
||
2097 | See UNIT_<type> constants and getPageMargins() |
||
2098 | </source> |
||
2099 | <translation type="unfinished"></translation> |
||
2100 | </message> |
||
2101 | <message> |
||
2102 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="187"/> |
||
12918 | cbradney | 2103 | <source>getPageItems() -> list |
2104 | |||
2105 | Returns a list of tuples with items on the current page. The tuple is: |
||
2106 | (name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)] |
||
2107 | means that object named 'Text1' is a text frame (type 4) and is the first at |
||
2108 | the page... |
||
2109 | </source> |
||
2110 | <translation type="unfinished">getPageItems() -> list |
||
2111 | |||
2112 | Returns a list of tuples with items on the current page. The tuple is: |
||
2113 | (name, objectType, order) E.g. [('Text1', 4, 0), ('Image1', 2, 1)] |
||
2114 | means that object named 'Text1' is a text frame (type 4) and is the first at |
||
2115 | the page... |
||
2116 | </translation> |
||
2117 | </message> |
||
2118 | <message> |
||
14474 | cbradney | 2119 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="203"/> |
12918 | cbradney | 2120 | <source>getPageMargins() |
2121 | |||
2122 | Returns the page margins as a (top, left, right, bottom) tuple in the current |
||
2123 | units. See UNIT_<type> constants and getPageSize(). |
||
2124 | </source> |
||
2125 | <translation type="unfinished">getPageMargins() |
||
2126 | |||
2127 | Returns the page margins as a (top, left, right, bottom) tuple in the current |
||
2128 | units. See UNIT_<type> constants and getPageSize(). |
||
2129 | </translation> |
||
2130 | </message> |
||
2131 | <message> |
||
14474 | cbradney | 2132 | <location filename="../../../scribus/plugins/scriptplugin/cmdpage.h" line="216"/> |
12918 | cbradney | 2133 | <source>importPage("fromDoc", (pageList), [create, imortwhere, importwherePage]) |
2134 | |||
2135 | Imports a set of pages (given as a tuple) from an existing document (the file name must be given). This functions maps the "Page->Import" dropdown menu function. |
||
2136 | fromDoc: string; the filename of the document to import pages from |
||
2137 | pageList: tuple with page numbers of pages to import |
||
2138 | create: number; 0 to replace existing pages, 1 (default) to insert new pages |
||
2139 | importWhere: number; the page number (of the current document) at which import the pages |
||
2140 | importWherePage: number; used if create==1; 0 to create pages before selected page; 1 to create pages after selected page; 2 (default) to create pages at the end of the document |
||
2141 | </source> |
||
2142 | <translation type="unfinished"></translation> |
||
2143 | </message> |
||
2144 | <message> |
||
14474 | cbradney | 2145 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="17"/> |
12918 | cbradney | 2146 | <source>setGradientFill(type, "color1", shade1, "color2", shade2, ["name"]) |
2147 | |||
2148 | Sets the gradient fill of the object "name" to type. Color descriptions are |
||
2149 | the same as for setFillColor() and setFillShade(). See the constants for |
||
2150 | available types (FILL_<type>). |
||
2151 | </source> |
||
2152 | <translation type="unfinished"></translation> |
||
2153 | </message> |
||
2154 | <message> |
||
14474 | cbradney | 2155 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="28"/> |
2156 | <source>setGradientStop("color", shade, opacity, ramppoint, ["name"]) |
||
2157 | |||
2158 | Set or add a gradient stop to the gradient fill of the object "name" at position ramppoint. |
||
2159 | Color descriptions are the same as for setFillColor() and setFillShade(). setGradientFill() |
||
2160 | must have been called previously for the gradient fill to be visible. |
||
2161 | </source> |
||
2162 | <translation type="unfinished"></translation> |
||
2163 | </message> |
||
2164 | <message> |
||
2165 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="39"/> |
||
12918 | cbradney | 2166 | <source>setFillColor("color", ["name"]) |
2167 | |||
2168 | Sets the fill color of the object "name" to the color "color". "color" |
||
2169 | is the name of one of the defined colors. If "name" is not given the |
||
2170 | currently selected item is used. |
||
2171 | </source> |
||
2172 | <translation type="unfinished">setFillColor("color", ["name"]) |
||
2173 | |||
2174 | Sets the fill colour of the object "name" to the colour "color". "color" |
||
2175 | is the name of one of the defined colours. If "name" is not given the |
||
2176 | currently selected item is used. |
||
2177 | </translation> |
||
2178 | </message> |
||
2179 | <message> |
||
14474 | cbradney | 2180 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="50"/> |
12918 | cbradney | 2181 | <source>setFillTransparency(transparency, ["name"]) |
2182 | |||
2183 | Sets the fill transparency of the object "name" to transparency |
||
2184 | If "name" is not given the currently selected item is used. |
||
2185 | </source> |
||
2186 | <translation type="unfinished"></translation> |
||
2187 | </message> |
||
2188 | <message> |
||
14474 | cbradney | 2189 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="60"/> |
12918 | cbradney | 2190 | <source>setFillBlendmode(blendmode, ["name"]) |
2191 | |||
2192 | Sets the fill blendmode of the object "name" to blendmode |
||
2193 | If "name" is not given the currently selected item is used. |
||
2194 | </source> |
||
2195 | <translation type="unfinished"></translation> |
||
2196 | </message> |
||
2197 | <message> |
||
14474 | cbradney | 2198 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="70"/> |
12918 | cbradney | 2199 | <source>setLineColor("color", ["name"]) |
2200 | |||
2201 | Sets the line color of the object "name" to the color "color". If "name" |
||
2202 | is not given the currently selected item is used. |
||
2203 | </source> |
||
2204 | <translation type="unfinished">setLineColor("color", ["name"]) |
||
2205 | |||
2206 | Sets the line colour of the object "name" to the colour "color". If "name" |
||
2207 | is not given the currently selected item is used. |
||
2208 | </translation> |
||
2209 | </message> |
||
2210 | <message> |
||
14474 | cbradney | 2211 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="80"/> |
12918 | cbradney | 2212 | <source>setLineTransparency(transparency, ["name"]) |
2213 | |||
2214 | Sets the line transparency of the object "name" to transparency |
||
2215 | If "name" is not given the currently selected item is used. |
||
2216 | </source> |
||
2217 | <translation type="unfinished"></translation> |
||
2218 | </message> |
||
2219 | <message> |
||
14474 | cbradney | 2220 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="90"/> |
12918 | cbradney | 2221 | <source>setLineBlendmode(blendmode, ["name"]) |
2222 | |||
2223 | Sets the line blendmode of the object "name" to blendmode |
||
2224 | If "name" is not given the currently selected item is used. |
||
2225 | </source> |
||
2226 | <translation type="unfinished"></translation> |
||
2227 | </message> |
||
2228 | <message> |
||
14474 | cbradney | 2229 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="100"/> |
12918 | cbradney | 2230 | <source>setLineWidth(width, ["name"]) |
2231 | |||
2232 | Sets line width of the object "name" to "width". "width" must be in the |
||
2233 | range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not |
||
2234 | given the currently selected item is used. |
||
2235 | |||
2236 | May raise ValueError if the line width is out of bounds. |
||
2237 | </source> |
||
2238 | <translation type="unfinished">setLineWidth(width, ["name"]) |
||
2239 | |||
2240 | Sets line width of the object "name" to "width". "width" must be in the |
||
2241 | range from 0.0 to 12.0 inclusive, and is measured in points. If "name" is not |
||
2242 | given the currently selected item is used. |
||
2243 | |||
2244 | May raise ValueError if the line width is out of bounds. |
||
2245 | </translation> |
||
2246 | </message> |
||
2247 | <message> |
||
14474 | cbradney | 2248 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="113"/> |
12918 | cbradney | 2249 | <source>setLineShade(shade, ["name"]) |
2250 | |||
2251 | Sets the shading of the line color of the object "name" to "shade". |
||
2252 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
2253 | (full color intensity). If "name" is not given the currently selected item |
||
2254 | is used. |
||
2255 | |||
2256 | May raise ValueError if the line shade is out of bounds. |
||
2257 | </source> |
||
2258 | <translation type="unfinished">setLineShade(shade, ["name"]) |
||
2259 | |||
2260 | Sets the shading of the line colour of the object "name" to "shade". |
||
2261 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
2262 | (full colour intensity). If "name" is not given the currently selected item |
||
2263 | is used. |
||
2264 | |||
2265 | May raise ValueError if the line shade is out of bounds. |
||
2266 | </translation> |
||
2267 | </message> |
||
2268 | <message> |
||
14474 | cbradney | 2269 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="127"/> |
12918 | cbradney | 2270 | <source>setLineJoin(join, ["name"]) |
2271 | |||
2272 | Sets the line join style of the object "name" to the style "join". |
||
2273 | If "name" is not given the currently selected item is used. There are |
||
2274 | predefined constants for join - JOIN_<type>. |
||
2275 | </source> |
||
2276 | <translation type="unfinished">setLineJoin(join, ["name"]) |
||
2277 | |||
2278 | Sets the line join style of the object "name" to the style "join". |
||
2279 | If "name" is not given the currently selected item is used. There are |
||
2280 | predefined constants for join - JOIN_<type>. |
||
2281 | </translation> |
||
2282 | </message> |
||
2283 | <message> |
||
14474 | cbradney | 2284 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="138"/> |
12918 | cbradney | 2285 | <source>setLineEnd(endtype, ["name"]) |
2286 | |||
2287 | Sets the line cap style of the object "name" to the style "cap". |
||
2288 | If "name" is not given the currently selected item is used. There are |
||
2289 | predefined constants for "cap" - CAP_<type>. |
||
2290 | </source> |
||
2291 | <translation type="unfinished">setLineEnd(endtype, ["name"]) |
||
2292 | |||
2293 | Sets the line cap style of the object "name" to the style "cap". |
||
2294 | If "name" is not given the currently selected item is used. There are |
||
2295 | predefined constants for "cap" - CAP_<type>. |
||
2296 | </translation> |
||
2297 | </message> |
||
2298 | <message> |
||
14474 | cbradney | 2299 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="149"/> |
12918 | cbradney | 2300 | <source>setLineStyle(style, ["name"]) |
2301 | |||
2302 | Sets the line style of the object "name" to the style "style". If "name" |
||
2303 | is not given the currently selected item is used. There are predefined |
||
2304 | constants for "style" - LINE_<style>. |
||
2305 | </source> |
||
2306 | <translation type="unfinished">setLineStyle(style, ["name"]) |
||
2307 | |||
2308 | Sets the line style of the object "name" to the style "style". If "name" |
||
2309 | is not given the currently selected item is used. There are predefined |
||
2310 | constants for "style" - LINE_<style>. |
||
2311 | </translation> |
||
2312 | </message> |
||
2313 | <message> |
||
14474 | cbradney | 2314 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="160"/> |
12918 | cbradney | 2315 | <source>setFillShade(shade, ["name"]) |
2316 | |||
2317 | Sets the shading of the fill color of the object "name" to "shade". |
||
2318 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
2319 | (full Color intensity). If "name" is not given the currently selected |
||
2320 | Item is used. |
||
2321 | |||
2322 | May raise ValueError if the fill shade is out of bounds. |
||
2323 | </source> |
||
2324 | <translation type="unfinished">setFillShade(shade, ["name"]) |
||
2325 | |||
2326 | Sets the shading of the fill colour of the object "name" to "shade". |
||
2327 | "shade" must be an integer value in the range from 0 (lightest) to 100 |
||
2328 | (full Colour intensity). If "name" is not given the currently selected |
||
2329 | Item is used. |
||
2330 | |||
2331 | May raise ValueError if the fill shade is out of bounds. |
||
2332 | </translation> |
||
2333 | </message> |
||
2334 | <message> |
||
14474 | cbradney | 2335 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="174"/> |
12918 | cbradney | 2336 | <source>setCornerRadius(radius, ["name"]) |
2337 | |||
2338 | Sets the corner radius of the object "name". The radius is expressed |
||
2339 | in points. If "name" is not given the currently selected item is used. |
||
2340 | |||
2341 | May raise ValueError if the corner radius is negative. |
||
2342 | </source> |
||
2343 | <translation type="unfinished">setCornerRadius(radius, ["name"]) |
||
2344 | |||
2345 | Sets the corner radius of the object "name". The radius is expressed |
||
2346 | in points. If "name" is not given the currently selected item is used. |
||
2347 | |||
2348 | May raise ValueError if the corner radius is negative. |
||
2349 | </translation> |
||
2350 | </message> |
||
2351 | <message> |
||
14474 | cbradney | 2352 | <location filename="../../../scribus/plugins/scriptplugin/cmdsetprop.h" line="186"/> |
12918 | cbradney | 2353 | <source>setMultiLine("namedStyle", ["name"]) |
2354 | |||
2355 | Sets the line style of the object "name" to the named style "namedStyle". |
||
2356 | If "name" is not given the currently selected item is used. |
||
2357 | |||
2358 | May raise NotFoundError if the line style doesn't exist. |
||
2359 | </source> |
||
2360 | <translation type="unfinished">setMultiLine("namedStyle", ["name"]) |
||
2361 | |||
2362 | Sets the line style of the object "name" to the named style "namedStyle". |
||
2363 | If "name" is not given the currently selected item is used. |
||
2364 | |||
2365 | May raise NotFoundError if the line style doesn't exist. |
||
2366 | </translation> |
||
2367 | </message> |
||
2368 | <message> |
||
14474 | cbradney | 2369 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="17"/> |
12918 | cbradney | 2370 | <source>getFontSize(["name"]) -> float |
2371 | |||
2372 | Returns the font size in points for the text frame "name". If this text |
||
2373 | frame has some text selected the value assigned to the first character of |
||
2374 | the selection is returned. |
||
2375 | If "name" is not given the currently selected item is used. |
||
2376 | </source> |
||
2377 | <translation type="unfinished"></translation> |
||
2378 | </message> |
||
2379 | <message> |
||
14474 | cbradney | 2380 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="29"/> |
12918 | cbradney | 2381 | <source>getFont(["name"]) -> string |
2382 | |||
2383 | Returns the font name for the text frame "name". If this text frame |
||
2384 | has some text selected the value assigned to the first character |
||
2385 | of the selection is returned. If "name" is not given the currently |
||
2386 | selected item is used. |
||
2387 | </source> |
||
2388 | <translation type="unfinished">getFont(["name"]) -> string |
||
2389 | |||
2390 | Returns the font name for the text frame "name". If this text frame |
||
2391 | has some text selected the value assigned to the first character |
||
2392 | of the selection is returned. If "name" is not given the currently |
||
2393 | selected item is used. |
||
2394 | </translation> |
||
2395 | </message> |
||
2396 | <message> |
||
14474 | cbradney | 2397 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="41"/> |
12918 | cbradney | 2398 | <source>getTextLength(["name"]) -> integer |
2399 | |||
2400 | Returns the length of the text in the text frame "name". |
||
2401 | If "name" is not given the currently selected item is used. |
||
2402 | </source> |
||
2403 | <translation type="unfinished">getTextLength(["name"]) -> integer |
||
2404 | |||
2405 | Returns the length of the text in the text frame "name". |
||
2406 | If "name" is not given the currently selected item is used. |
||
2407 | </translation> |
||
2408 | </message> |
||
2409 | <message> |
||
14474 | cbradney | 2410 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="51"/> |
12918 | cbradney | 2411 | <source>getTextLines(["name"]) -> integer |
2412 | |||
2413 | Returns the number of lines of the text in the text frame "name". |
||
2414 | If "name" is not given the currently selected item is used. |
||
2415 | </source> |
||
2416 | <translation type="unfinished"></translation> |
||
2417 | </message> |
||
2418 | <message> |
||
14474 | cbradney | 2419 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="61"/> |
12918 | cbradney | 2420 | <source>getText(["name"]) -> string |
2421 | |||
2422 | Returns the text of the text frame "name". If this text frame has some text |
||
2423 | selected, the selected text is returned. All text in the frame, not just |
||
2424 | currently visible text, is returned. If "name" is not given the currently |
||
2425 | selected item is used. |
||
2426 | </source> |
||
2427 | <translation type="unfinished">getText(["name"]) -> string |
||
2428 | |||
2429 | Returns the text of the text frame "name". If this text frame has some text |
||
2430 | selected, the selected text is returned. All text in the frame, not just |
||
2431 | currently visible text, is returned. If "name" is not given the currently |
||
2432 | selected item is used. |
||
2433 | </translation> |
||
2434 | </message> |
||
2435 | <message> |
||
14474 | cbradney | 2436 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="73"/> |
12918 | cbradney | 2437 | <source>getAllText(["name"]) -> string |
2438 | |||
2439 | Returns the text of the text frame "name" and of all text frames which are |
||
2440 | linked with this frame. If this textframe has some text selected, the selected |
||
2441 | text is returned. If "name" is not given the currently selected item is |
||
2442 | used. |
||
2443 | </source> |
||
2444 | <translation type="unfinished">getAllText(["name"]) -> string |
||
2445 | |||
2446 | Returns the text of the text frame "name" and of all text frames which are |
||
2447 | linked with this frame. If this textframe has some text selected, the selected |
||
2448 | text is returned. If "name" is not given the currently selected item is |
||
2449 | used. |
||
2450 | </translation> |
||
2451 | </message> |
||
2452 | <message> |
||
14474 | cbradney | 2453 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="85"/> |
12918 | cbradney | 2454 | <source>getLineSpacing(["name"]) -> float |
2455 | |||
2456 | Returns the line spacing ("leading") of the text frame "name" expressed in |
||
2457 | points. If "name" is not given the currently selected item is used. |
||
2458 | </source> |
||
2459 | <translation type="unfinished">getLineSpacing(["name"]) -> float |
||
2460 | |||
2461 | Returns the line spacing ("leading") of the text frame "name" expressed in |
||
2462 | points. If "name" is not given the currently selected item is used. |
||
2463 | </translation> |
||
2464 | </message> |
||
2465 | <message> |
||
14474 | cbradney | 2466 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="95"/> |
12918 | cbradney | 2467 | <source>getTextDistances(["name"]) -> tuple |
2468 | |||
2469 | Returns the text distances of the text frame "name" expressed in points. The |
||
2470 | distances are returned as a tuple like (left, right, top, bottom). If "name" |
||
2471 | is not given the currently selected item is used. |
||
2472 | </source> |
||
2473 | <translation type="unfinished"></translation> |
||
2474 | </message> |
||
2475 | <message> |
||
14474 | cbradney | 2476 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="106"/> |
12918 | cbradney | 2477 | <source>getColumnGap(["name"]) -> float |
2478 | |||
2479 | Returns the column gap size of the text frame "name" expressed in points. If |
||
2480 | "name" is not given the currently selected item is used. |
||
2481 | </source> |
||
2482 | <translation type="unfinished">getColumnGap(["name"]) -> float |
||
2483 | |||
2484 | Returns the column gap size of the text frame "name" expressed in points. If |
||
2485 | "name" is not given the currently selected item is used. |
||
2486 | </translation> |
||
2487 | </message> |
||
2488 | <message> |
||
14474 | cbradney | 2489 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="116"/> |
12918 | cbradney | 2490 | <source>getColumns(["name"]) -> integer |
2491 | |||
2492 | Gets the number of columns of the text frame "name". If "name" is not |
||
2493 | given the currently selected item is used. |
||
2494 | </source> |
||
2495 | <translation type="unfinished">getColumns(["name"]) -> integer |
||
2496 | |||
2497 | Gets the number of columns of the text frame "name". If "name" is not |
||
2498 | given the currently selected item is used. |
||
2499 | </translation> |
||
2500 | </message> |
||
2501 | <message> |
||
14474 | cbradney | 2502 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="126"/> |
12918 | cbradney | 2503 | <source>setText("text", ["name"]) |
2504 | |||
2505 | Sets the text of the text frame "name" to the text of the string "text". |
||
2506 | Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ |
||
2507 | for more details. If "name" is not given the currently selected item is |
||
2508 | used. |
||
2509 | </source> |
||
2510 | <translation type="unfinished">setText("text", ["name"]) |
||
2511 | |||
2512 | Sets the text of the text frame "name" to the text of the string "text". |
||
2513 | Text must be UTF8 encoded - use e.g. unicode(text, 'iso-8859-2'). See the FAQ |
||
2514 | for more details. If "name" is not given the currently selected item is |
||
2515 | used. |
||
2516 | </translation> |
||
2517 | </message> |
||
2518 | <message> |
||
14474 | cbradney | 2519 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="138"/> |
12918 | cbradney | 2520 | <source>insertText("text", pos, ["name"]) |
2521 | |||
2522 | Inserts the text "text" at the position "pos" into the text frame "name". |
||
2523 | Text must be UTF encoded (see setText() as reference) The first character has an |
||
2524 | index of 0. Inserting text at position -1 appends it to the frame. If "name" is |
||
2525 | not given the currently selected Item is used. |
||
2526 | |||
2527 | May throw IndexError for an insertion out of bounds. |
||
2528 | </source> |
||
2529 | <translation type="unfinished"></translation> |
||
2530 | </message> |
||
2531 | <message> |
||
14474 | cbradney | 2532 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="152"/> |
12918 | cbradney | 2533 | <source>setFont("font", ["name"]) |
2534 | |||
2535 | Sets the font of the text frame "name" to "font". If there is some text |
||
2536 | selected only the selected text is changed. If "name" is not given the |
||
2537 | currently selected item is used. |
||
2538 | |||
2539 | May throw ValueError if the font cannot be found. |
||
2540 | </source> |
||
2541 | <translation type="unfinished">setFont("font", ["name"]) |
||
2542 | |||
2543 | Sets the font of the text frame "name" to "font". If there is some text |
||
2544 | selected only the selected text is changed. If "name" is not given the |
||
2545 | currently selected item is used. |
||
2546 | |||
2547 | May throw ValueError if the font cannot be found. |
||
2548 | </translation> |
||
2549 | </message> |
||
2550 | <message> |
||
14474 | cbradney | 2551 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="165"/> |
12918 | cbradney | 2552 | <source>setFontSize(size, ["name"]) |
2553 | |||
2554 | Sets the font size of the text frame "name" to "size". "size" is treated |
||
2555 | as a value in points. If there is some text selected only the selected text is |
||
2556 | changed. "size" must be in the range 1 to 512. If "name" is not given the |
||
2557 | currently selected item is used. |
||
2558 | |||
2559 | May throw ValueError for a font size that's out of bounds. |
||
2560 | </source> |
||
2561 | <translation type="unfinished">setFontSize(size, ["name"]) |
||
2562 | |||
2563 | Sets the font size of the text frame "name" to "size". "size" is treated |
||
2564 | as a value in points. If there is some text selected only the selected text is |
||
2565 | changed. "size" must be in the range 1 to 512. If "name" is not given the |
||
2566 | currently selected item is used. |
||
2567 | |||
2568 | May throw ValueError for a font size that's out of bounds. |
||
2569 | </translation> |
||
2570 | </message> |
||
2571 | <message> |
||
14474 | cbradney | 2572 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="179"/> |
12918 | cbradney | 2573 | <source>setLineSpacing(size, ["name"]) |
2574 | |||
2575 | Sets the line spacing ("leading") of the text frame "name" to "size". |
||
2576 | "size" is a value in points. If "name" is not given the currently selected |
||
2577 | item is used. |
||
2578 | |||
2579 | May throw ValueError if the line spacing is out of bounds. |
||
2580 | </source> |
||
2581 | <translation type="unfinished">setLineSpacing(size, ["name"]) |
||
2582 | |||
2583 | Sets the line spacing ("leading") of the text frame "name" to "size". |
||
2584 | "size" is a value in points. If "name" is not given the currently selected |
||
2585 | item is used. |
||
2586 | |||
2587 | May throw ValueError if the line spacing is out of bounds. |
||
2588 | </translation> |
||
2589 | </message> |
||
2590 | <message> |
||
14474 | cbradney | 2591 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="192"/> |
2592 | <source>setLineSpacingMode(mode, ["name"]) |
||
2593 | |||
2594 | Sets the line spacing mode of the text frame "name" to "mode". |
||
2595 | If "name" is not given the currently selected |
||
2596 | item is used. |
||
2597 | Mode values are the same as in createParagraphStyle. |
||
2598 | |||
2599 | May throw ValueError if the mode is out of bounds. |
||
2600 | </source> |
||
2601 | <translation type="unfinished"></translation> |
||
2602 | </message> |
||
2603 | <message> |
||
2604 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="206"/> |
||
12918 | cbradney | 2605 | <source>setTextDistances(left, right, top, bottom, ["name"]) |
2606 | |||
2607 | Sets the text distances of the text frame "name" to the values "left" |
||
2608 | "right", "top" and "bottom". If "name" is not given the currently |
||
2609 | selected item is used. |
||
2610 | |||
2611 | May throw ValueError if any of the distances are out of bounds (must be positive). |
||
2612 | </source> |
||
2613 | <translation type="unfinished"></translation> |
||
2614 | </message> |
||
2615 | <message> |
||
14474 | cbradney | 2616 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="219"/> |
12918 | cbradney | 2617 | <source>setColumnGap(size, ["name"]) |
2618 | |||
2619 | Sets the column gap of the text frame "name" to the value "size". If |
||
2620 | "name" is not given the currently selected item is used. |
||
2621 | |||
2622 | May throw ValueError if the column gap is out of bounds (must be positive). |
||
2623 | </source> |
||
2624 | <translation type="unfinished">setColumnGap(size, ["name"]) |
||
2625 | |||
2626 | Sets the column gap of the text frame "name" to the value "size". If |
||
2627 | "name" is not given the currently selected item is used. |
||
2628 | |||
2629 | May throw ValueError if the column gap is out of bounds (must be positive). |
||
2630 | </translation> |
||
2631 | </message> |
||
2632 | <message> |
||
14474 | cbradney | 2633 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="231"/> |
12918 | cbradney | 2634 | <source>setColumns(nr, ["name"]) |
2635 | |||
2636 | Sets the number of columns of the text frame "name" to the integer "nr". |
||
2637 | If "name" is not given the currently selected item is used. |
||
2638 | |||
2639 | May throw ValueError if number of columns is not at least one. |
||
2640 | </source> |
||
2641 | <translation type="unfinished">setColumns(nr, ["name"]) |
||
2642 | |||
2643 | Sets the number of columns of the text frame "name" to the integer "nr". |
||
2644 | If "name" is not given the currently selected item is used. |
||
2645 | |||
2646 | May throw ValueError if number of columns is not at least one. |
||
2647 | </translation> |
||
2648 | </message> |
||
2649 | <message> |
||
14474 | cbradney | 2650 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="243"/> |
12918 | cbradney | 2651 | <source>setTextAlignment(align, ["name"]) |
2652 | |||
2653 | Sets the text alignment of the text frame "name" to the specified alignment. |
||
2654 | If "name" is not given the currently selected item is used. "align" should |
||
2655 | be one of the ALIGN_ constants defined in this module - see dir(scribus). |
||
2656 | |||
2657 | May throw ValueError for an invalid alignment constant. |
||
2658 | </source> |
||
2659 | <translation type="unfinished">setTextAlignment(align, ["name"]) |
||
2660 | |||
2661 | Sets the text alignment of the text frame "name" to the specified alignment. |
||
2662 | If "name" is not given the currently selected item is used. "align" should |
||
2663 | be one of the ALIGN_ constants defined in this module - see dir(scribus). |
||
2664 | |||
2665 | May throw ValueError for an invalid alignment constant. |
||
2666 | </translation> |
||
2667 | </message> |
||
2668 | <message> |
||
14474 | cbradney | 2669 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="256"/> |
12918 | cbradney | 2670 | <source>selectText(start, count, ["name"]) |
2671 | |||
2672 | Selects "count" characters of text in the text frame "name" starting from the |
||
2673 | character "start". Character counting starts at 0. If "count" is zero, any |
||
2674 | text selection will be cleared. If "name" is not given the currently |
||
2675 | selected item is used. |
||
2676 | |||
2677 | May throw IndexError if the selection is outside the bounds of the text. |
||
2678 | </source> |
||
2679 | <translation type="unfinished">selectText(start, count, ["name"]) |
||
2680 | |||
2681 | Selects "count" characters of text in the text frame "name" starting from the |
||
2682 | character "start". Character counting starts at 0. If "count" is zero, any |
||
2683 | text selection will be cleared. If "name" is not given the currently |
||
2684 | selected item is used. |
||
2685 | |||
2686 | May throw IndexError if the selection is outside the bounds of the text. |
||
2687 | </translation> |
||
2688 | </message> |
||
2689 | <message> |
||
14474 | cbradney | 2690 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="270"/> |
12918 | cbradney | 2691 | <source>deleteText(["name"]) |
2692 | |||
2693 | Deletes any text in the text frame "name". If there is some text selected, |
||
2694 | only the selected text will be deleted. If "name" is not given the currently |
||
2695 | selected item is used. |
||
2696 | </source> |
||
2697 | <translation type="unfinished">deleteText(["name"]) |
||
2698 | |||
2699 | Deletes any text in the text frame "name". If there is some text selected, |
||
2700 | only the selected text will be deleted. If "name" is not given the currently |
||
2701 | selected item is used. |
||
2702 | </translation> |
||
2703 | </message> |
||
2704 | <message> |
||
14474 | cbradney | 2705 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="281"/> |
12918 | cbradney | 2706 | <source>setTextColor("color", ["name"]) |
2707 | |||
2708 | Sets the text color of the text frame "name" to the color "color". If there |
||
2709 | is some text selected only the selected text is changed. If "name" is not |
||
2710 | given the currently selected item is used. |
||
2711 | </source> |
||
2712 | <translation type="unfinished">setTextColor("color", ["name"]) |
||
2713 | |||
2714 | Sets the text colour of the text frame "name" to the colour "color". If there |
||
2715 | is some text selected only the selected text is changed. If "name" is not |
||
2716 | given the currently selected item is used. |
||
2717 | </translation> |
||
2718 | </message> |
||
2719 | <message> |
||
14474 | cbradney | 2720 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="292"/> |
12918 | cbradney | 2721 | <source>setTextStroke("color", ["name"]) |
2722 | |||
2723 | Set "color" of the text stroke. If "name" is not given the currently |
||
2724 | selected item is used. |
||
2725 | </source> |
||
2726 | <translation type="unfinished">setTextStroke("color", ["name"]) |
||
2727 | |||
2728 | Set "color" of the text stroke. If "name" is not given the currently |
||
2729 | selected item is used. |
||
2730 | </translation> |
||
2731 | </message> |
||
2732 | <message> |
||
14474 | cbradney | 2733 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="302"/> |
2734 | <source>setTextScalingV(scale, ["name"]) |
||
2735 | |||
2736 | Sets the vertical character scaling of the object "name" to "scale" in percent. |
||
2737 | If "name" is not given the currently selected item is used. |
||
2738 | </source> |
||
2739 | <translation type="unfinished"></translation> |
||
2740 | </message> |
||
2741 | <message> |
||
2742 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="312"/> |
||
2743 | <source>setTextScalingH(scale, ["name"]) |
||
2744 | |||
2745 | Sets the horizontal character scaling of the object "name" to "scale" in percent. |
||
2746 | If "name" is not given the currently selected item is used. |
||
2747 | </source> |
||
2748 | <translation type="unfinished"></translation> |
||
2749 | </message> |
||
2750 | <message> |
||
2751 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="322"/> |
||
12918 | cbradney | 2752 | <source>setTextShade(shade, ["name"]) |
2753 | |||
2754 | Sets the shading of the text color of the object "name" to "shade". If |
||
2755 | there is some text selected only the selected text is changed. "shade" must |
||
2756 | be an integer value in the range from 0 (lightest) to 100 (full color |
||
2757 | intensity). If "name" is not given the currently selected item is |
||
2758 | used. |
||
2759 | </source> |
||
2760 | <translation type="unfinished">setTextShade(shade, ["name"]) |
||
2761 | |||
2762 | Sets the shading of the text colour of the object "name" to "shade". If |
||
2763 | there is some text selected only the selected text is changed. "shade" must |
||
2764 | be an integer value in the range from 0 (lightest) to 100 (full colour |
||
2765 | intensity). If "name" is not given the currently selected item is |
||
2766 | used. |
||
2767 | </translation> |
||
2768 | </message> |
||
2769 | <message> |
||
14474 | cbradney | 2770 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="335"/> |
12918 | cbradney | 2771 | <source>linkTextFrames("fromname", "toname") |
2772 | |||
2773 | Link two text frames. The frame named "fromname" is linked to the |
||
2774 | frame named "toname". The target frame must be an empty text frame |
||
2775 | and must not link to or be linked from any other frames already. |
||
2776 | |||
2777 | May throw ScribusException if linking rules are violated. |
||
2778 | </source> |
||
2779 | <translation type="unfinished">linkTextFrames("fromname", "toname") |
||
2780 | |||
2781 | Link two text frames. The frame named "fromname" is linked to the |
||
2782 | frame named "toname". The target frame must be an empty text frame |
||
2783 | and must not link to or be linked from any other frames already. |
||
2784 | |||
2785 | May throw ScribusException if linking rules are violated. |
||
2786 | </translation> |
||
2787 | </message> |
||
2788 | <message> |
||
14474 | cbradney | 2789 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="352"/> |
12918 | cbradney | 2790 | <source>unlinkTextFrames("name") |
2791 | |||
2792 | Remove the specified (named) object from the text frame flow/linkage. If the |
||
2793 | frame was in the middle of a chain, the previous and next frames will be |
||
2794 | connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)' |
||
2795 | |||
2796 | May throw ScribusException if linking rules are violated. |
||
2797 | </source> |
||
2798 | <translation type="unfinished">unlinkTextFrames("name") |
||
2799 | |||
2800 | Remove the specified (named) object from the text frame flow/linkage. If the |
||
2801 | frame was in the middle of a chain, the previous and next frames will be |
||
2802 | connected, eg 'a->b->c' becomes 'a->c' when you unlinkTextFrames(b)' |
||
2803 | |||
2804 | May throw ScribusException if linking rules are violated. |
||
2805 | </translation> |
||
2806 | </message> |
||
2807 | <message> |
||
14474 | cbradney | 2808 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="369"/> |
12918 | cbradney | 2809 | <source>traceText(["name"]) |
2810 | |||
2811 | Convert the text frame "name" to outlines. If "name" is not given the |
||
2812 | currently selected item is used.</source> |
||
2813 | <translation type="unfinished">traceText(["name"]) |
||
2814 | |||
2815 | Convert the text frame "name" to outlines. If "name" is not given the |
||
2816 | currently selected item is used.</translation> |
||
2817 | </message> |
||
2818 | <message> |
||
14474 | cbradney | 2819 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="380"/> |
12918 | cbradney | 2820 | <source>textOverflows(["name", nolinks]) -> integer |
2821 | |||
2822 | Returns the actual number of overflowing characters in text frame "name". |
||
2823 | If is nolinks set to non zero value it takes only one frame - it doesn't |
||
2824 | use text frame linking. Without this parameter it search all linking chain. |
||
2825 | |||
2826 | May raise WrongFrameTypeError if the target frame is not an text frame |
||
2827 | </source> |
||
2828 | <translation type="unfinished">textOverflows(["name", nolinks]) -> integer |
||
2829 | |||
2830 | Returns the actual number of overflowing characters in text frame "name". |
||
2831 | If is nolinks set to non zero value it takes only one frame - it doesn't |
||
2832 | use text frame linking. Without this parameter it search all linking chain. |
||
2833 | |||
2834 | May raise WrongFrameTypeError if the target frame is not an text frame |
||
2835 | </translation> |
||
2836 | </message> |
||
2837 | <message> |
||
14474 | cbradney | 2838 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="393"/> |
12918 | cbradney | 2839 | <source>hyphenateText(["name"]) -> bool |
2840 | |||
2841 | Does hyphenation on text frame "name". |
||
2842 | If "name" is not given the currently selected item is used. |
||
2843 | |||
2844 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2845 | </source> |
||
2846 | <translation type="unfinished"></translation> |
||
2847 | </message> |
||
2848 | <message> |
||
14474 | cbradney | 2849 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="407"/> |
12918 | cbradney | 2850 | <source>dehyphenateText(["name"]) -> bool |
2851 | |||
2852 | Does dehyphenation on text frame "name". |
||
2853 | If "name" is not given the currently selected item is used. |
||
2854 | |||
2855 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2856 | </source> |
||
2857 | <translation type="unfinished"></translation> |
||
2858 | </message> |
||
2859 | <message> |
||
14474 | cbradney | 2860 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="422"/> |
12918 | cbradney | 2861 | <source>setPDFBookmark("toggle", ["name"]) |
2862 | |||
2863 | Sets whether (toggle = 1) the text frame "name" is a bookmark nor not. |
||
2864 | If "name" is not given the currently selected item is used. |
||
2865 | |||
2866 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2867 | </source> |
||
2868 | <translation type="unfinished"></translation> |
||
2869 | </message> |
||
2870 | <message> |
||
14474 | cbradney | 2871 | <location filename="../../../scribus/plugins/scriptplugin/cmdtext.h" line="434"/> |
12918 | cbradney | 2872 | <source>isPDFBookmark(["name"]) -> bool |
2873 | |||
2874 | Returns true if the text frame "name" is a PDF bookmark. |
||
2875 | If "name" is not given the currently selected item is used. |
||
2876 | |||
2877 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2878 | </source> |
||
2879 | <translation type="unfinished">isPDFBookmark(["name"]) -> bool |
||
2880 | |||
2881 | Returns true if the text frame "name" is a PDF bookmark. |
||
2882 | If "name" is not given the currently selected item is used. |
||
2883 | |||
2884 | May raise WrongFrameTypeError if the target frame is not a text frame |
||
2885 | </translation> |
||
2886 | </message> |
||
2887 | <message> |
||
14474 | cbradney | 2888 | <location filename="../../../scribus/plugins/scriptplugin/guiapp.h" line="17"/> |
12918 | cbradney | 2889 | <source>messagebarText("string") |
2890 | |||
2891 | Writes the "string" into the Scribus message bar (status line). The text |
||
2892 | must be UTF8 encoded or 'unicode' string(recommended). |
||
2893 | </source> |
||
2894 | <translation type="unfinished"></translation> |
||
2895 | </message> |
||
2896 | <message> |
||
14474 | cbradney | 2897 | <location filename="../../../scribus/plugins/scriptplugin/guiapp.h" line="30"/> |
12918 | cbradney | 2898 | <source>progressReset() |
2899 | |||
2900 | Cleans up the Scribus progress bar previous settings. It is called before the |
||
2901 | new progress bar use. See progressSet. |
||
2902 | </source> |
||
2903 | <translation type="unfinished">progressReset() |
||
2904 | |||
2905 | Cleans up the Scribus progress bar previous settings. It is called before the |
||
2906 | new progress bar use. See progressSet. |
||
2907 | </translation> |
||
2908 | </message> |
||
2909 | <message> |
||
14474 | cbradney | 2910 | <location filename="../../../scribus/plugins/scriptplugin/guiapp.h" line="43"/> |
12918 | cbradney | 2911 | <source>progressTotal(max) |
2912 | |||
2913 | Sets the progress bar's maximum steps value to the specified number. |
||
2914 | See progressSet. |
||
2915 | </source> |
||
2916 | <translation type="unfinished">progressTotal(max) |
||
2917 | |||
2918 | Sets the progress bar's maximum steps value to the specified number. |
||
2919 | See progressSet. |
||
2920 | </translation> |
||
2921 | </message> |
||
2922 | <message> |
||
14474 | cbradney | 2923 | <location filename="../../../scribus/plugins/scriptplugin/guiapp.h" line="52"/> |
12918 | cbradney | 2924 | <source>progressSet(nr) |
2925 | |||
2926 | Set the progress bar position to "nr", a value relative to the previously set |
||
2927 | progressTotal. The progress bar uses the concept of steps; you give it the |
||
2928 | total number of steps and the number of steps completed so far and it will |
||
2929 | display the percentage of steps that have been completed. You can specify the |
||
2930 | total number of steps with progressTotal(). The current number of steps is set |
||
2931 | with progressSet(). The progress bar can be rewound to the beginning with |
||
2932 | progressReset(). [based on info taken from Trolltech's Qt docs] |
||
2933 | </source> |
||
2934 | <translation type="unfinished">progressSet(nr) |
||
2935 | |||
2936 | Set the progress bar position to "nr", a value relative to the previously set |
||
2937 | progressTotal. The progress bar uses the concept of steps; you give it the |
||
2938 | total number of steps and the number of steps completed so far and it will |
||
2939 | display the percentage of steps that have been completed. You can specify the |
||
2940 | total number of steps with progressTotal(). The current number of steps is set |
||
2941 | with progressSet(). The progress bar can be rewound to the beginning with |
||
2942 | progressReset(). [based on info taken from Trolltech's Qt docs] |
||
2943 | </translation> |
||
2944 | </message> |
||
2945 | <message> |
||
14474 | cbradney | 2946 | <location filename="../../../scribus/plugins/scriptplugin/guiapp.h" line="66"/> |
12918 | cbradney | 2947 | <source>setCursor() |
2948 | |||
2949 | [UNSUPPORTED!] This might break things, so steer clear for now. |
||
2950 | </source> |
||
2951 | <translation type="unfinished">setCursor() |
||
2952 | |||
2953 | [UNSUPPORTED!] This might break things, so steer clear for now. |
||
2954 | </translation> |
||
2955 | </message> |
||
2956 | <message> |
||
14474 | cbradney | 2957 | <location filename="../../../scribus/plugins/scriptplugin/guiapp.h" line="78"/> |
12918 | cbradney | 2958 | <source>docChanged(bool) |
2959 | |||
2960 | Enable/disable save icon in the Scribus icon bar and the Save menu item. It's |
||
2961 | useful to call this procedure when you're changing the document, because Scribus |
||
2962 | won't automatically notice when you change the document using a script. |
||
2963 | </source> |
||
2964 | <translation type="unfinished">docChanged(bool) |
||
2965 | |||
2966 | Enable/disable save icon in the Scribus icon bar and the Save menu item. It's |
||
2967 | useful to call this procedure when you're changing the document, because Scribus |
||
2968 | won't automatically notice when you change the document using a script. |
||
2969 | </translation> |
||
2970 | </message> |
||
2971 | <message> |
||
14474 | cbradney | 2972 | <location filename="../../../scribus/plugins/scriptplugin/guiapp.h" line="91"/> |
12918 | cbradney | 2973 | <source>zoomDocument(double) |
2974 | |||
2975 | Zoom the document in main GUI window. Actions have whole number |
||
2976 | values like 20.0, 100.0, etc. Zoom to Fit uses -100 as a marker. |
||
2977 | </source> |
||
2978 | <translation type="unfinished">zoomDocument(double) |
||
2979 | |||
2980 | 在主視窗縮放文件, 縮放值如: 20.0, 100.0 等, 縮放並符合視窗大小已 -100 為記號(為主). |
||
2981 | </translation> |
||
2982 | </message> |
||
2983 | <message> |
||
14474 | cbradney | 2984 | <location filename="../../../scribus/plugins/scriptplugin/guiapp.h" line="103"/> |
12918 | cbradney | 2985 | <source>scrollDocument(x,y) |
2986 | |||
2987 | Scroll the document in main GUI window by x and y. |
||
2988 | </source> |
||
2989 | <translation type="unfinished"></translation> |
||
2990 | </message> |
||
2991 | <message> |
||
14474 | cbradney | 2992 | <location filename="../../../scribus/plugins/scriptplugin/cmdstyle.h" line="22"/> |
2993 | <source>createParagraphStyle(...) |
||
12918 | cbradney | 2994 | |
14474 | cbradney | 2995 | Creates a paragraph style. This function takes the following keyword parameters: |
12918 | cbradney | 2996 | |
14474 | cbradney | 2997 | "name" [required] -> specifies the name of the paragraphstyle to create |
12918 | cbradney | 2998 | |
14474 | cbradney | 2999 | linespacingmode [optional] -> specifies the linespacing mode; possible modes are: |
12918 | cbradney | 3000 | |
14474 | cbradney | 3001 | fixed linespacing: 0 |
12918 | cbradney | 3002 | |
14474 | cbradney | 3003 | automatic linespacing: 1 |
12918 | cbradney | 3004 | |
14474 | cbradney | 3005 | baseline grid linespacing: 2 |
12918 | cbradney | 3006 | |
14474 | cbradney | 3007 | linespacing [optional] -> specifies the linespacing if using fixed linespacing |
12918 | cbradney | 3008 | |
14474 | cbradney | 3009 | alignment [optional] -> specifies the alignment of the paragraph |
13279 | cbradney | 3010 | |
14474 | cbradney | 3011 | -> left: 0 |
13279 | cbradney | 3012 | |
14474 | cbradney | 3013 | -> center: 1 |
13279 | cbradney | 3014 | |
14474 | cbradney | 3015 | -> right: 2 |
13279 | cbradney | 3016 | |
14474 | cbradney | 3017 | -> justify: 3 |
3018 | |||
3019 | -> extend: 4 |
||
3020 | |||
3021 | leftmargin [optional], rightmargin [optional] -> specify the margin |
||
3022 | |||
3023 | gapbefore [optional], gapafter [optional] -> specify the gaps to the heading and following paragraphs |
||
3024 | |||
3025 | firstindent [optional] -> the indent of the first line |
||
3026 | |||
3027 | hasdropcap [optional] -> specifies if there are caps (1 = yes, 0 = no) |
||
3028 | |||
3029 | dropcaplines [optional] -> height (in lines) of the caps if used |
||
3030 | |||
3031 | dropcapoffset [optional] -> offset of the caps if used |
||
3032 | |||
3033 | "charstyle" [optional] -> char style to use |
||
3034 | |||
13279 | cbradney | 3035 | </source> |
3036 | <translation type="unfinished"></translation> |
||
3037 | </message> |
||
3038 | <message> |
||
14474 | cbradney | 3039 | <location filename="../../../scribus/plugins/scriptplugin/cmdstyle.h" line="52"/> |
3040 | <source>createCharStyle(...) |
||
13279 | cbradney | 3041 | |
14474 | cbradney | 3042 | Creates a character style. This function takes the following keyword parameters: |
13279 | cbradney | 3043 | |
14474 | cbradney | 3044 | "name" [required] -> name of the char style to create |
3045 | |||
3046 | "font" [optional] -> name of the font to use |
||
3047 | |||
3048 | fontsize [optional] -> font size to set (double) |
||
3049 | |||
3050 | "features" [optional] -> nearer typographic details can be defined by a string that might contain the following phrases comma-seperated (without spaces!): |
||
3051 | |||
3052 | -> inherit |
||
3053 | |||
3054 | -> bold |
||
3055 | |||
3056 | -> italic |
||
3057 | |||
3058 | -> underline |
||
3059 | |||
3060 | -> underlinewords |
||
3061 | |||
3062 | -> strike |
||
3063 | |||
3064 | -> superscript |
||
3065 | |||
3066 | -> subscript |
||
3067 | |||
3068 | -> outline |
||
3069 | |||
3070 | -> shadowed |
||
3071 | |||
3072 | -> allcaps |
||
3073 | |||
3074 | -> smallcaps |
||
3075 | |||
3076 | "fillcolor" [optional], "fillshade" [optional] -> specify fill options |
||
3077 | |||
3078 | "strokecolor" [optional], "strokeshade" [optional] -> specify stroke options |
||
3079 | |||
3080 | baselineoffset [optional] -> offset of the baseline |
||
3081 | |||
3082 | shadowxoffset [optional], shadowyoffset [optional] -> offset of the shadow if used |
||
3083 | |||
3084 | outlinewidth [optional] -> width of the outline if used |
||
3085 | |||
3086 | underlineoffset [optional], underlinewidth [optional] -> underline options if used |
||
3087 | |||
3088 | strikethruoffset [optional], strikethruwidth [optional] -> strikethru options if used |
||
3089 | |||
3090 | scaleh [optional], scalev [optional] -> scale of the chars |
||
3091 | |||
3092 | tracking [optional] -> tracking of the text |
||
3093 | |||
3094 | "language" [optional] -> language code |
||
3095 | |||
13279 | cbradney | 3096 | </source> |
3097 | <translation type="unfinished"></translation> |
||
3098 | </message> |
||
3099 | <message> |
||
14474 | cbradney | 3100 | <location filename="../../../scribus/plugins/scriptplugin/svgimport.h" line="15"/> |
3101 | <source>placeSVG("filename", x, y) |
||
13279 | cbradney | 3102 | |
14474 | cbradney | 3103 | Places the SVG "filename" onto the current page, |
3104 | x and y specify the coordinate of the topleft corner of the SVG placed on the page |
||
13279 | cbradney | 3105 | |
14474 | cbradney | 3106 | If loading was successful, the selection contains the imported SVG |
13279 | cbradney | 3107 | </source> |
3108 | <translation type="unfinished"></translation> |
||
3109 | </message> |
||
3110 | <message> |
||
14474 | cbradney | 3111 | <location filename="../../../scribus/plugins/scriptplugin/svgimport.h" line="27"/> |
3112 | <source>placeEPS("filename", x, y) |
||
13279 | cbradney | 3113 | |
14474 | cbradney | 3114 | Places the EPS "filename" onto the current page, |
3115 | x and y specify the coordinate of the topleft corner of the EPS placed on the page |
||
3116 | |||
3117 | If loading was successful, the selection contains the imported EPS |
||
13279 | cbradney | 3118 | </source> |
3119 | <translation type="unfinished"></translation> |
||
3120 | </message> |
||
3121 | <message> |
||
14474 | cbradney | 3122 | <location filename="../../../scribus/plugins/scriptplugin/svgimport.h" line="39"/> |
3123 | <source>placeSXD("filename", x, y) |
||
13279 | cbradney | 3124 | |
14474 | cbradney | 3125 | Places the SXD "filename" onto the current page, |
3126 | x and y specify the coordinate of the topleft corner of the SXD placed on the page |
||
3127 | |||
3128 | If loading was successful, the selection contains the imported SXD |
||
13279 | cbradney | 3129 | </source> |
3130 | <translation type="unfinished"></translation> |
||
3131 | </message> |
||
3132 | <message> |
||
14474 | cbradney | 3133 | <location filename="../../../scribus/plugins/scriptplugin/svgimport.h" line="51"/> |
3134 | <source>placeODG("filename", x, y) |
||
13279 | cbradney | 3135 | |
14474 | cbradney | 3136 | Places the ODG "filename" onto the current page, |
3137 | x and y specify the coordinate of the topleft corner of the ODG placed on the page |
||
3138 | |||
3139 | If loading was successful, the selection contains the imported ODG |
||
13279 | cbradney | 3140 | </source> |
3141 | <translation type="unfinished"></translation> |
||
3142 | </message> |
||
12918 | cbradney | 3143 | </context> |
3144 | <context> |
||
3145 | <name>@default</name> |
||
3146 | <message> |
||
3147 | <source>changeColor("name", c, m, y, k) |
||
3148 | |||
3149 | Changes the color "name" to the specified CMYK value. The color value is |
||
3150 | defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black. |
||
3151 | Color components should be in the range from 0 to 255. |
||
3152 | |||
3153 | May raise NotFoundError if the named color wasn't found. |
||
3154 | May raise ValueError if an invalid color name is specified. |
||
3155 | </source> |
||
3156 | <translation type="obsolete">changeColour("name", c, m, y, k) |
||
3157 | |||
3158 | Changes the colour "name" to the specified CMYK value. The colour value is |
||
3159 | defined via four components c = Cyan, m = Magenta, y = Yellow and k = Black. |
||
3160 | Colour components should be in the range from 0 to 255. |
||
3161 | |||
3162 | May raise NotFoundError if the named colour wasn't found. |
||
3163 | May raise ValueError if an invalid colour name is specified. |
||
3164 | </translation> |
||
3165 | </message> |
||
3166 | <message> |
||
3167 | <source>closeDoc() |
||
3168 | |||
3169 | Closes the current document without prompting to save. |
||
3170 | |||
3171 | May throw NoDocOpenError if there is no document to close |
||
3172 | </source> |
||
3173 | <translation type="obsolete">closeDoc() |
||
3174 | |||
3175 | Closes the current document without prompting to save. |
||
3176 | |||
3177 | May throw NoDocOpenError if there is no document to close |
||
3178 | </translation> |
||
3179 | </message> |
||
3180 | <message> |
||
3181 | <source>closeMasterPage() |
||
3182 | |||
3183 | Closes the currently active master page, if any, and returns editing |
||
3184 | to normal. Begin editing with editMasterPage(). |
||
3185 | </source> |
||
3186 | <translation type="obsolete">closeMasterPage() |
||
3187 | |||
3188 | Closes the currently active master page, if any, and returns editing |
||
3189 | to normal. Begin editing with editMasterPage(). |
||
3190 | </translation> |
||
3191 | </message> |
||
3192 | <message> |
||
3193 | <source>createBezierLine(list, ["name"]) -> string |
||
3194 | |||
3195 | Creates a new bezier curve and returns its name. The points for the bezier |
||
3196 | curve are stored in the list "list" in the following order: |
||
3197 | [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
||
3198 | In the points list, x and y mean the x and y coordinates of the point and kx |
||
3199 | and ky meaning the control point for the curve. The coordinates are given in |
||
3200 | the current measurement units of the document (see UNIT constants). "name" |
||
3201 | should be a unique identifier for the object because you need this name for |
||
3202 | further access to that object. If "name" is not given Scribus will create one |
||
3203 | for you. |
||
3204 | |||
3205 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
3206 | May raise ValueError if an insufficient number of points is passed or if |
||
3207 | the number of values passed don't group into points without leftovers. |
||
3208 | </source> |
||
3209 | <translation type="obsolete">createBezierLine(list, ["name"]) -> string |
||
3210 | |||
3211 | Creates a new bezier curve and returns its name. The points for the bezier |
||
3212 | curve are stored in the list "list" in the following order: |
||
3213 | [x1, y1, kx1, ky1, x2, y2, kx2, ky2...xn. yn, kxn. kyn] |
||
3214 | In the points list, x and y mean the x and y coordinates of the point and kx |
||
3215 | and ky meaning the control point for the curve. The coordinates are given in |
||
3216 | the current measurement units of the document (see UNIT constants). "name" |
||
3217 | should be a unique identifier for the object because you need this name for |
||
3218 | further access to that object. If "name" is not given Scribus will create one |
||
3219 | for you. |
||
3220 | |||
3221 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
3222 | May raise ValueError if an insufficient number of points is passed or if |
||
3223 | the number of values passed don't group into points without leftovers. |
||
3224 | </translation> |
||
3225 | </message> |
||
3226 | <message> |
||
12456 | jghali | 3227 | <source>createEllipse(x, y, width, height, ["name"]) -> string |
9498 | cbradney | 3228 | |
12456 | jghali | 3229 | Creates a new ellipse on the current page and returns its name. |
3230 | The coordinates are given in the current measurement units of the document |
||
3231 | (see UNIT constants). "name" should be a unique identifier for the object |
||
3232 | because you need this name for further referencing of that object. If "name" |
||
3233 | is not given Scribus will create one for you. |
||
9498 | cbradney | 3234 | |
12456 | jghali | 3235 | May raise NameExistsError if you explicitly pass a name that's already used. |
9498 | cbradney | 3236 | </source> |
12918 | cbradney | 3237 | <translation type="obsolete">createEllipse(x, y, width, height, ["name"]) -> string |
9498 | cbradney | 3238 | |
12456 | jghali | 3239 | Creates a new ellipse on the current page and returns its name. |
3240 | The coordinates are given in the current measurement units of the document |
||
3241 | (see UNIT constants). "name" should be a unique identifier for the object |
||
3242 | because you need this name for further referencing of that object. If "name" |
||
3243 | is not given Scribus will create one for you. |
||
9498 | cbradney | 3244 | |
12456 | jghali | 3245 | May raise NameExistsError if you explicitly pass a name that's already used. |
9498 | cbradney | 3246 | </translation> |
3247 | </message> |
||
3248 | <message> |
||
12456 | jghali | 3249 | <source>createImage(x, y, width, height, ["name"]) -> string |
9498 | cbradney | 3250 | |
12456 | jghali | 3251 | Creates a new picture frame on the current page and returns its name. The |
3252 | coordinates are given in the current measurement units of the document. |
||
3253 | "name" should be a unique identifier for the object because you need this |
||
3254 | name for further access to that object. If "name" is not given Scribus will |
||
3255 | create one for you. |
||
9498 | cbradney | 3256 | |
12456 | jghali | 3257 | May raise NameExistsError if you explicitly pass a name that's already used. |
9498 | cbradney | 3258 | </source> |
12918 | cbradney | 3259 | <translation type="obsolete">createImage(x, y, width, height, ["name"]) -> string |
9498 | cbradney | 3260 | |
12456 | jghali | 3261 | Creates a new picture frame on the current page and returns its name. The |
3262 | coordinates are given in the current measurement units of the document. |
||
3263 | "name" should be a unique identifier for the object because you need this |
||
3264 | name for further access to that object. If "name" is not given Scribus will |
||
3265 | create one for you. |
||
9498 | cbradney | 3266 | |
12456 | jghali | 3267 | May raise NameExistsError if you explicitly pass a name that's already used. |
9498 | cbradney | 3268 | </translation> |
3269 | </message> |
||
3270 | <message> |
||
12456 | jghali | 3271 | <source>createLayer(layer) |
9498 | cbradney | 3272 | |
12456 | jghali | 3273 | Creates a new layer with the name "name". |
9498 | cbradney | 3274 | |
12456 | jghali | 3275 | May raise ValueError if the layer name isn't acceptable. |
9498 | cbradney | 3276 | </source> |
12918 | cbradney | 3277 | <translation type="obsolete">createLayer(layer) |
9498 | cbradney | 3278 | |
12456 | jghali | 3279 | Creates a new layer with the name "name". |
9498 | cbradney | 3280 | |
12456 | jghali | 3281 | May raise ValueError if the layer name isn't acceptable. |
9498 | cbradney | 3282 | </translation> |
3283 | </message> |
||
3284 | <message> |
||
12456 | jghali | 3285 | <source>createLine(x1, y1, x2, y2, ["name"]) -> string |
9498 | cbradney | 3286 | |
12456 | jghali | 3287 | Creates a new line from the point(x1, y1) to the point(x2, y2) and returns |
3288 | its name. The coordinates are given in the current measurement unit of the |
||
3289 | document (see UNIT constants). "name" should be a unique identifier for the |
||
3290 | object because you need this name for further access to that object. If |
||
3291 | "name" is not given Scribus will create one for you. |
||
3292 | |||
3293 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
9498 | cbradney | 3294 | </source> |
12918 | cbradney | 3295 | <translation type="obsolete">createLine(x1, y1, x2, y2, ["name"]) -> string |
9498 | cbradney | 3296 | |
12456 | jghali | 3297 | Creates a new line from the point(x1, y1) to the point(x2, y2) and returns |
3298 | its name. The coordinates are given in the current measurement unit of the |
||
3299 | document (see UNIT constants). "name" should be a unique identifier for the |
||
3300 | object because you need this name for further access to that object. If |
||
3301 | "name" is not given Scribus will create one for you. |
||
3302 | |||
3303 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
9498 | cbradney | 3304 | </translation> |
3305 | </message> |
||
3306 | <message> |
||
12456 | jghali | 3307 | <source>createMasterPage(pageName) |
9498 | cbradney | 3308 | |
12456 | jghali | 3309 | Creates a new master page named pageName and opens it for |
3310 | editing. |
||
9498 | cbradney | 3311 | </source> |
12918 | cbradney | 3312 | <translation type="obsolete">createMasterPage(pageName) |
9498 | cbradney | 3313 | |
12456 | jghali | 3314 | 開新的 pageName 的主頁, 並打開它來編輯. |
9498 | cbradney | 3315 | </translation> |
3316 | </message> |
||
3317 | <message> |
||
12456 | jghali | 3318 | <source>createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
9498 | cbradney | 3319 | |
12456 | jghali | 3320 | Creates a new pathText by merging the two objects "textbox" and |
3321 | "beziercurve" and returns its name. The coordinates are given in the current |
||
3322 | measurement unit of the document (see UNIT constants). "name" should be a |
||
3323 | unique identifier for the object because you need this name for further access |
||
3324 | to that object. If "name" is not given Scribus will create one for you. |
||
3325 | |||
3326 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
3327 | May raise NotFoundError if one or both of the named base object don't exist. |
||
9498 | cbradney | 3328 | </source> |
12918 | cbradney | 3329 | <translation type="obsolete">createPathText(x, y, "textbox", "beziercurve", ["name"]) -> string |
9498 | cbradney | 3330 | |
12456 | jghali | 3331 | Creates a new pathText by merging the two objects "textbox" and |
3332 | "beziercurve" and returns its name. The coordinates are given in the current |
||
3333 | measurement unit of the document (see UNIT constants). "name" should be a |
||
3334 | unique identifier for the object because you need this name for further access |
||
3335 | to that object. If "name" is not given Scribus will create one for you. |
||
3336 | |||
3337 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
3338 | May raise NotFoundError if one or both of the named base object don't exist. |
||
9498 | cbradney | 3339 | </translation> |
3340 | </message> |
||
3341 | <message> |
||
12456 | jghali | 3342 | <source>createPolygon(list, ["name"]) -> string |
9498 | cbradney | 3343 | |
12456 | jghali | 3344 | Creates a new polygon and returns its name. The points for the polygon are |
3345 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
3346 | At least three points are required. There is no need to repeat the first point |
||
3347 | to close the polygon. The polygon is automatically closed by connecting the |
||
3348 | first and the last point. The coordinates are given in the current measurement |
||
3349 | units of the document (see UNIT constants). "name" should be a unique |
||
3350 | identifier for the object because you need this name for further access to that |
||
3351 | object. If "name" is not given Scribus will create one for you. |
||
3352 | |||
3353 | May raise NameExistsError if you explicitly pass a name that's already used. |
||
3354 | May raise ValueError if an insufficient number of points is passed or if |
||
3355 | the number of values passed don't group into points without leftovers. |
||
9498 | cbradney | 3356 | </source> |
12918 | cbradney | 3357 | <translation type="obsolete">createPolygon(list, ["name"]) -> string |
9498 | cbradney | 3358 | |
12456 | jghali | 3359 | Creates a new polygon and returns its name. The points for the polygon are |
3360 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
3361 | At least three points are required. There is no need to repeat the first point |
||
3362 | to close the polygon. The polygon is automatically closed by connecting the |
||
3363 | first and the last point. The coordinates are given in the current measurement |
||
3364 | units of the document (see UNIT constants). "name" should be a unique |
||
3365 | identifier for the object because you need this name for further access to that |
||
3366 | object. If "name" is not given Scribus will create one for you. |
||
9498 | cbradney | 3367 | |
12456 | jghali | 3368 | May raise NameExistsError if you explicitly pass a name that's already used. |
3369 | May raise ValueError if an insufficient number of points is passed or if |
||
3370 | the number of values passed don't group into points without leftovers. |
||
9498 | cbradney | 3371 | </translation> |
3372 | </message> |
||
3373 | <message> |
||
12456 | jghali | 3374 | <source>createPolyLine(list, ["name"]) -> string |
9498 | cbradney | 3375 | |
12456 | jghali | 3376 | Creates a new polyline and returns its name. The points for the polyline are |
3377 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
3378 | The coordinates are given in the current measurement units of the document (see |
||
3379 | UNIT constants). "name" should be a unique identifier for the object because |
||
3380 | you need this name for further access to that object. If "name" is not given |
||
3381 | Scribus will create one for you. |
||
9498 | cbradney | 3382 | |
12456 | jghali | 3383 | May raise NameExistsError if you explicitly pass a name that's already used. |
3384 | May raise ValueError if an insufficient number of points is passed or if |
||
3385 | the number of values passed don't group into points without leftovers. |
||
9498 | cbradney | 3386 | </source> |
12918 | cbradney | 3387 | <translation type="obsolete">createPolyLine(list, ["name"]) -> string |
9498 | cbradney | 3388 | |
12456 | jghali | 3389 | Creates a new polyline and returns its name. The points for the polyline are |
3390 | stored in the list "list" in the following order: [x1, y1, x2, y2...xn. yn]. |
||
3391 | The coordinates are given in the current measurement units of the document (see |
||
3392 | UNIT constants). "name" should be a unique identifier for the object because |
||
3393 | you need this name for further access to that object. If "name" is not given |
||
3394 | Scribus will create one for you. |
||
9498 | cbradney | 3395 | |
12456 | jghali | 3396 | May raise NameExistsError if you explicitly pass a name that's already used. |
3397 | May raise ValueError if an insufficient number of points is passed or if |
||
3398 | the number of values passed don't group into points without leftovers. |
||
9498 | cbradney | 3399 | </translation> |
3400 | </message> |
||
3401 | <message> |
||
12456 | jghali | 3402 | <source>createText(x, y, width, height, ["name"]) -> string |
9498 | cbradney | 3403 | |
12456 | jghali | 3404 | Creates a new text frame on the actual page and returns its name. |
3405 | The coordinates are given in the actual measurement unit of the document (see |
||
3406 | UNIT constants). "name" should be a unique identifier for the object because |
||
3407 | you need this name for further referencing of that object. If "name" is not |
||
3408 | given Scribus will create one for you. |
||
9498 | cbradney | 3409 | |
12456 | jghali | 3410 | May raise NameExistsError if you explicitly pass a name that's already used. |
9498 | cbradney | 3411 | </source> |
12918 | cbradney | 3412 | <translation type="obsolete">createText(x, y, width, height, ["name"]) -> string |
9498 | cbradney | 3413 | |
12456 | jghali | 3414 | Creates a new text frame on the actual page and returns its name. |
3415 | The coordinates are given in the actual measurement unit of the document (see |
||
3416 | UNIT constants). "name" should be a unique identifier for the object because |
||
3417 | you need this name for further referencing of that object. If "name" is not |
||
3418 | given Scribus will create one for you. |
||
9498 | cbradney | 3419 | |
12456 | jghali | 3420 | May raise NameExistsError if you explicitly pass a name that's already used. |
9498 | cbradney | 3421 | </translation> |
3422 | </message> |
||
3423 | <message> |
||
12456 | jghali | 3424 | <source>currentPage() -> integer |
9498 | cbradney | 3425 | |
12456 | jghali | 3426 | Returns the number of the current working page. Page numbers are counted from 1 |
3427 | upwards, no matter what the displayed first page number of your document is. |
||
9498 | cbradney | 3428 | </source> |
12918 | cbradney | 3429 | <translation type="obsolete">currentPage() -> integer |
9498 | cbradney | 3430 | |
12456 | jghali | 3431 | Returns the number of the current working page. Page numbers are counted from 1 |
3432 | upwards, no matter what the displayed first page number of your document is. |
||
9498 | cbradney | 3433 | </translation> |
3434 | </message> |
||
3435 | <message> |
||
12456 | jghali | 3436 | <source>defineColor("name", c, m, y, k) |
9498 | cbradney | 3437 | |
12456 | jghali | 3438 | Defines a new color "name". The color Value is defined via four components: |
3439 | c = Cyan, m = Magenta, y = Yello and k = Black. Color components should be in |
||
3440 | the range from 0 to 255. |
||
9498 | cbradney | 3441 | |
12456 | jghali | 3442 | May raise ValueError if an invalid color name is specified. |
9498 | cbradney | 3443 | </source> |
12456 | jghali | 3444 | <translation type="obsolete">defineColor("name", c, m, y, k) |
9498 | cbradney | 3445 | |
12456 | jghali | 3446 | Defines a new colour "name". The colour Value is defined via four components: |
3447 | c = Cyan, m = Magenta, y = Yello and k = Black. Colour components should be in |
||
3448 | the range from 0 to 255. |
||
9498 | cbradney | 3449 | |
12456 | jghali | 3450 | May raise ValueError if an invalid colour name is specified. |
9498 | cbradney | 3451 | </translation> |
3452 | </message> |
||
3453 | <message> |
||
12456 | jghali | 3454 | <source>deleteColor("name", "replace") |
9498 | cbradney | 3455 | |
12456 | jghali | 3456 | Deletes the color "name". Every occurence of that color is replaced by the |
3457 | color "replace". If not specified, "replace" defaults to the color |
||
3458 | "None" - transparent. |
||
9498 | cbradney | 3459 | |
12456 | jghali | 3460 | deleteColor works on the default document colors if there is no document open. |
3461 | In that case, "replace", if specified, has no effect. |
||
9498 | cbradney | 3462 | |
12456 | jghali | 3463 | May raise NotFoundError if a named color wasn't found. |
3464 | May raise ValueError if an invalid color name is specified. |
||
9498 | cbradney | 3465 | </source> |
12918 | cbradney | 3466 | <translation type="obsolete">deleteColor("name", "replace") |
9498 | cbradney | 3467 | |
12456 | jghali | 3468 | Deletes the colour "name". Every occurence of that colour is replaced by the |
3469 | colour "replace". If not specified, "replace" defaults to the colour |
||
3470 | "None" - transparent. |
||
9498 | cbradney | 3471 | |
12456 | jghali | 3472 | deleteColor works on the default document colours if there is no document open. |
3473 | In that case, "replace", if specified, has no effect. |
||
9498 | cbradney | 3474 | |
12456 | jghali | 3475 | May raise NotFoundError if a named colour wasn't found. |
3476 | May raise ValueError if an invalid colour name is specified. |
||
9498 | cbradney | 3477 | </translation> |
3478 | </message> |
||
3479 | <message> |
||
12456 | jghali | 3480 | <source>deleteLayer("layer") |
9498 | cbradney | 3481 | |
12456 | jghali | 3482 | Deletes the layer with the name "layer". Nothing happens if the layer doesn't |
3483 | exists or if it's the only layer in the document. |
||
3484 | |||
3485 | May raise NotFoundError if the layer can't be found. |
||
3486 | May raise ValueError if the layer name isn't acceptable. |
||
9498 | cbradney | 3487 | </source> |
12918 | cbradney | 3488 | <translation type="obsolete">deleteLayer("layer") |
9498 | cbradney | 3489 | |
12456 | jghali | 3490 | Deletes the layer with the name "layer". Nothing happens if the layer doesn't |
3491 | exists or if it's the only layer in the document. |
||
3492 | |||
3493 | May raise NotFoundError if the layer can't be found. |
||
3494 | May raise ValueError if the layer name isn't acceptable. |
||
9498 | cbradney | 3495 | </translation> |
3496 | </message> |
||
3497 | <message> |
||
12456 | jghali | 3498 | <source>deleteMasterPage(pageName) |
9498 | cbradney | 3499 | |
12456 | jghali | 3500 | Delete the named master page. |
9498 | cbradney | 3501 | </source> |
12918 | cbradney | 3502 | <translation type="obsolete">deleteMasterPage(pageName) |
9498 | cbradney | 3503 | |
12456 | jghali | 3504 | 刪除已命名的主頁 |
9498 | cbradney | 3505 | </translation> |
3506 | </message> |
||
3507 | <message> |
||
12456 | jghali | 3508 | <source>deleteObject(["name"]) |
9498 | cbradney | 3509 | |
12456 | jghali | 3510 | Deletes the item with the name "name". If "name" is not given the currently |
3511 | selected item is deleted. |
||
9498 | cbradney | 3512 | </source> |
12918 | cbradney | 3513 | <translation type="obsolete">deleteObject(["name"]) |
9498 | cbradney | 3514 | |
12456 | jghali | 3515 | Deletes the item with the name "name". If "name" is not given the currently |
3516 | selected item is deleted. |
||
9498 | cbradney | 3517 | </translation> |
3518 | </message> |
||
3519 | <message> |
||
12456 | jghali | 3520 | <source>deletePage(nr) |
9498 | cbradney | 3521 | |
12456 | jghali | 3522 | Deletes the given page. Does nothing if the document contains only one page. |
3523 | Page numbers are counted from 1 upwards, no matter what the displayed first |
||
3524 | page number is. |
||
3525 | |||
3526 | May raise IndexError if the page number is out of range |
||
9498 | cbradney | 3527 | </source> |
12918 | cbradney | 3528 | <translation type="obsolete">deletePage(nr) |
9498 | cbradney | 3529 | |
12456 | jghali | 3530 | Deletes the given page. Does nothing if the document contains only one page. |
3531 | Page numbers are counted from 1 upwards, no matter what the displayed first |
||
3532 | page number is. |
||
3533 | |||
3534 | May raise IndexError if the page number is out of range |
||
9498 | cbradney | 3535 | </translation> |
3536 | </message> |
||
3537 | <message> |
||
12456 | jghali | 3538 | <source>deleteText(["name"]) |
9498 | cbradney | 3539 | |
12456 | jghali | 3540 | Deletes any text in the text frame "name". If there is some text selected, |
3541 | only the selected text will be deleted. If "name" is not given the currently |
||
3542 | selected item is used. |
||
9498 | cbradney | 3543 | </source> |
12918 | cbradney | 3544 | <translation type="obsolete">deleteText(["name"]) |
9498 | cbradney | 3545 | |
12456 | jghali | 3546 | Deletes any text in the text frame "name". If there is some text selected, |
3547 | only the selected text will be deleted. If "name" is not given the currently |
||
3548 | selected item is used. |
||
9498 | cbradney | 3549 | </translation> |
3550 | </message> |
||
3551 | <message> |
||
3552 | <source>deselectAll() |
||
3553 | |||
3554 | Deselects all objects in the whole document. |
||
3555 | </source> |
||
12918 | cbradney | 3556 | <translation type="obsolete">deselectAll() |
9498 | cbradney | 3557 | |
3558 | Deselects all objects in the whole document. |
||
3559 | </translation> |
||
3560 | </message> |
||
3561 | <message> |
||
12456 | jghali | 3562 | <source>docChanged(bool) |
9498 | cbradney | 3563 | |
12456 | jghali | 3564 | Enable/disable save icon in the Scribus icon bar and the Save menu item. It's |
3565 | useful to call this procedure when you're changing the document, because Scribus |
||
3566 | won't automatically notice when you change the document using a script. |
||
9498 | cbradney | 3567 | </source> |
12918 | cbradney | 3568 | <translation type="obsolete">docChanged(bool) |
9498 | cbradney | 3569 | |
12456 | jghali | 3570 | Enable/disable save icon in the Scribus icon bar and the Save menu item. It's |
3571 | useful to call this procedure when you're changing the document, because Scribus |
||
3572 | won't automatically notice when you change the document using a script. |
||
9498 | cbradney | 3573 | </translation> |
3574 | </message> |
||
3575 | <message> |
||
12456 | jghali | 3576 | <source>editMasterPage(pageName) |
9498 | cbradney | 3577 | |
12456 | jghali | 3578 | Enables master page editing and opens the named master page |
3579 | for editing. Finish editing with closeMasterPage(). |
||
9498 | cbradney | 3580 | </source> |
12918 | cbradney | 3581 | <translation type="obsolete">editMasterPage(pageName) |
9498 | cbradney | 3582 | |
12456 | jghali | 3583 | Enables master page editing and opens the named master page |
3584 | for editing. Finish editing with closeMasterPage(). |
||
9498 | cbradney | 3585 | </translation> |
3586 | </message> |
||
3587 | <message> |
||
12456 | jghali | 3588 | <source>fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename |
9498 | cbradney | 3589 | |
12456 | jghali | 3590 | Shows a File Open dialog box with the caption "caption". Files are filtered |
3591 | with the filter string "filter". A default filename or file path can also |
||
3592 | supplied, leave this string empty when you don't want to use it. A value of |
||
3593 | True for haspreview enables a small preview widget in the FileSelect box. When |
||
3594 | the issave parameter is set to True the dialog acts like a "Save As" dialog |
||
3595 | otherwise it acts like a "File Open Dialog". When the isdir parameter is True |
||
3596 | the dialog shows and returns only directories. The default for all of the |
||
3597 | opional parameters is False. |
||
9498 | cbradney | 3598 | |
12456 | jghali | 3599 | The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
3600 | For example 'Images (*.png *.xpm *.jpg)'. |
||
9498 | cbradney | 3601 | |
12456 | jghali | 3602 | Refer to the Qt-Documentation for QFileDialog for details on filters. |
9498 | cbradney | 3603 | |
12456 | jghali | 3604 | Example: fileDialog('Open input', 'CSV files (*.csv)') |
3605 | Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
||
9498 | cbradney | 3606 | </source> |
12456 | jghali | 3607 | <translation type="obsolete">fileDialog("caption", ["filter", "defaultname", haspreview, issave, isdir]) -> string with filename |
9498 | cbradney | 3608 | |
12456 | jghali | 3609 | Shows a File Open dialog box with the caption "caption". Files are filtered |
3610 | with the filter string "filter". A default filename or file path can also |
||
3611 | supplied, leave this string empty when you don't want to use it. A value of |
||
3612 | True for haspreview enables a small preview widget in the FileSelect box. When |
||
3613 | the issave parameter is set to True the dialog acts like a "Save As" dialog |
||
3614 | otherwise it acts like a "File Open Dialog". When the isdir parameter is True |
||
3615 | the dialog shows and returns only directories. The default for all of the |
||
3616 | opional parameters is False. |
||
9498 | cbradney | 3617 | |
12456 | jghali | 3618 | The filter, if specified, takes the form 'comment (*.type *.type2 ...)'. |
3619 | For example 'Images (*.png *.xpm *.jpg)'. |
||
9498 | cbradney | 3620 | |
12456 | jghali | 3621 | Refer to the Qt-Documentation for QFileDialog for details on filters. |
9498 | cbradney | 3622 | |
12456 | jghali | 3623 | Example: fileDialog('Open input', 'CSV files (*.csv)') |
3624 | Example: fileDialog('Save report', defaultname='report.txt', issave=True) |
||
9498 | cbradney | 3625 | </translation> |
3626 | </message> |
||
3627 | <message> |
||
12456 | jghali | 3628 | <source>getActiveLayer() -> string |
9498 | cbradney | 3629 | |
12456 | jghali | 3630 | Returns the name of the current active layer. |
9498 | cbradney | 3631 | </source> |
12918 | cbradney | 3632 | <translation type="obsolete">getActiveLayer() -> string |
9498 | cbradney | 3633 | |
12456 | jghali | 3634 | Returns the name of the current active layer. |
9498 | cbradney | 3635 | </translation> |
3636 | </message> |
||
3637 | <message> |
||
12456 | jghali | 3638 | <source>getAllObjects() -> list |
9498 | cbradney | 3639 | |
12456 | jghali | 3640 | Returns a list containing the names of all objects on the current page. |
9498 | cbradney | 3641 | </source> |
12918 | cbradney | 3642 | <translation type="obsolete">getAllObjects() -> list |
9498 | cbradney | 3643 | |
12456 | jghali | 3644 | Returns a list containing the names of all objects on the current page. |
9498 | cbradney | 3645 | </translation> |
3646 | </message> |
||
3647 | <message> |
||
12456 | jghali | 3648 | <source>getAllStyles() -> list |
9498 | cbradney | 3649 | |
12456 | jghali | 3650 | Return a list of the names of all paragraph styles in the current document. |
9498 | cbradney | 3651 | </source> |
12918 | cbradney | 3652 | <translation type="obsolete">getAllStyles() -> list |
9498 | cbradney | 3653 | |
12456 | jghali | 3654 | Return a list of the names of all paragraph styles in the current document. |
9498 | cbradney | 3655 | </translation> |
3656 | </message> |
||
3657 | <message> |
||
12456 | jghali | 3658 | <source>getAllText(["name"]) -> string |
9498 | cbradney | 3659 | |
12456 | jghali | 3660 | Returns the text of the text frame "name" and of all text frames which are |
3661 | linked with this frame. If this textframe has some text selected, the selected |
||
3662 | text is returned. If "name" is not given the currently selected item is |
||
3663 | used. |
||
9498 | cbradney | 3664 | </source> |
12918 | cbradney | 3665 | <translation type="obsolete">getAllText(["name"]) -> string |
9498 | cbradney | 3666 | |
12456 | jghali | 3667 | Returns the text of the text frame "name" and of all text frames which are |
3668 | linked with this frame. If this textframe has some text selected, the selected |
||
3669 | text is returned. If "name" is not given the currently selected item is |
||
3670 | used. |
||
9498 | cbradney | 3671 | </translation> |
3672 | </message> |
||
3673 | <message> |
||
12456 | jghali | 3674 | <source>getChild(object, childname, ofclass=None, recursive=True) |
9498 | cbradney | 3675 | |
12456 | jghali | 3676 | Return the first child of `object' named `childname', possibly restricting |
3677 | the search to children of type name `ofclass'. If `recursive' is true, |
||
3678 | search recursively through children, grandchildren, etc. |
||
9498 | cbradney | 3679 | </source> |
12456 | jghali | 3680 | <translation type="obsolete">getChild(object, childname, ofclass=None, recursive=True) |
9498 | cbradney | 3681 | |
12456 | jghali | 3682 | Return the first child of `object' named `childname', possibly restricting |
3683 | the search to children of type name `ofclass'. If `recursive' is true, |
||
3684 | search recursively through children, grandchildren, etc. |
||
9498 | cbradney | 3685 | </translation> |
3686 | </message> |
||
3687 | <message> |
||
12456 | jghali | 3688 | <source>getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True) |
9498 | cbradney | 3689 | |
12456 | jghali | 3690 | Return a list of children of `object', possibly restricted to children |
3691 | of class named `ofclass' or children named `ofname'. If `recursive' is true, |
||
3692 | search recursively through children, grandchildren, etc. |
||
9498 | cbradney | 3693 | |
12456 | jghali | 3694 | See QObject::children() in the Qt docs for more information. |
9498 | cbradney | 3695 | </source> |
12456 | jghali | 3696 | <translation type="obsolete">getChildren(object, ofclass=None, ofname=None, regexpmatch=False, recursive=True) |
9498 | cbradney | 3697 | |
12456 | jghali | 3698 | Return a list of children of `object', possibly restricted to children |
3699 | of class named `ofclass' or children named `ofname'. If `recursive' is true, |
||
3700 | search recursively through children, grandchildren, etc. |
||
9498 | cbradney | 3701 | |
12456 | jghali | 3702 | See QObject::children() in the Qt docs for more information. |
9498 | cbradney | 3703 | </translation> |
3704 | </message> |
||
3705 | <message> |
||
12456 | jghali | 3706 | <source>getColor("name") -> tuple |
9498 | cbradney | 3707 | |
12456 | jghali | 3708 | Returns a tuple (C, M, Y, K) containing the four color components of the |
3709 | color "name" from the current document. If no document is open, returns |
||
3710 | the value of the named color from the default document colors. |
||
9498 | cbradney | 3711 | |
12456 | jghali | 3712 | May raise NotFoundError if the named color wasn't found. |
3713 | May raise ValueError if an invalid color name is specified. |
||
9498 | cbradney | 3714 | </source> |
12918 | cbradney | 3715 | <translation type="obsolete">getColor("name") -> tuple |
9498 | cbradney | 3716 | |
12456 | jghali | 3717 | Returns a tuple (C, M, Y, K) containing the four colour components of the |
3718 | colour "name" from the current document. If no document is open, returns |
||
3719 | the value of the named colour from the default document colours. |
||
9498 | cbradney | 3720 | |
12456 | jghali | 3721 | May raise NotFoundError if the named colour wasn't found. |
3722 | May raise ValueError if an invalid colour name is specified. |
||
9498 | cbradney | 3723 | </translation> |
3724 | </message> |
||
3725 | <message> |
||
12456 | jghali | 3726 | <source>getColorAsRGB("name") -> tuple |
9498 | cbradney | 3727 | |
12456 | jghali | 3728 | Returns a tuple (R,G,B) containing the three color components of the |
3729 | color "name" from the current document, converted to the RGB color |
||
3730 | space. If no document is open, returns the value of the named color |
||
3731 | from the default document colors. |
||
9498 | cbradney | 3732 | |
12456 | jghali | 3733 | May raise NotFoundError if the named color wasn't found. |
3734 | May raise ValueError if an invalid color name is specified. |
||
9498 | cbradney | 3735 | </source> |
12918 | cbradney | 3736 | <translation type="obsolete">getColorAsRGB("name") -> tuple |
9498 | cbradney | 3737 | |
12456 | jghali | 3738 | Returns a tuple (R,G,B) containing the three colour components of the |
3739 | colour "name" from the current document, converted to the RGB colour |
||
3740 | space. If no document is open, returns the value of the named colour |
||
3741 | from the default document colours. |
||
9498 | cbradney | 3742 | |
12456 | jghali | 3743 | May raise NotFoundError if the named colour wasn't found. |
3744 | May raise ValueError if an invalid colour name is specified. |
||
9498 | cbradney | 3745 | </translation> |
3746 | </message> |
||
3747 | <message> |
||
12456 | jghali | 3748 | <source>getColorNames() -> list |
9498 | cbradney | 3749 | |
12456 | jghali | 3750 | Returns a list containing the names of all defined colors in the document. |
3751 | If no document is open, returns a list of the default document colors. |
||
9498 | cbradney | 3752 | </source> |
12918 | cbradney | 3753 | <translation type="obsolete"> |
12456 | jghali | 3754 | getColorNames() -> list |
9498 | cbradney | 3755 | |
12456 | jghali | 3756 | 傳回檔案中所有已定義顏色名稱的列表 |
3757 | |||
3758 | </translation> |
||
9498 | cbradney | 3759 | </message> |
3760 | <message> |
||
12456 | jghali | 3761 | <source>getColumnGap(["name"]) -> float |
9498 | cbradney | 3762 | |
12456 | jghali | 3763 | Returns the column gap size of the text frame "name" expressed in points. If |
3764 | "name" is not given the currently selected item is used. |
||
9498 | cbradney | 3765 | </source> |
12918 | cbradney | 3766 | <translation type="obsolete">getColumnGap(["name"]) -> float |
9498 | cbradney | 3767 | |
12456 | jghali | 3768 | Returns the column gap size of the text frame "name" expressed in points. If |
3769 | "name" is not given the currently selected item is used. |
||
9498 | cbradney | 3770 | </translation> |
3771 | </message> |
||
3772 | <message> |
||
12456 | jghali | 3773 | <source>getColumns(["name"]) -> integer |
9498 | cbradney | 3774 | |
12456 | jghali | 3775 | Gets the number of columns of the text frame "name". If "name" is not |
3776 | given the currently selected item is used. |
||
9498 | cbradney | 3777 | </source> |
12918 | cbradney | 3778 | <translation type="obsolete">getColumns(["name"]) -> integer |
9498 | cbradney | 3779 | |
12456 | jghali | 3780 | Gets the number of columns of the text frame "name". If "name" is not |
3781 | given the currently selected item is used. |
||
9498 | cbradney | 3782 | </translation> |
3783 | </message> |
||
3784 | <message> |
||
12456 | jghali | 3785 | <source>getCornerRadius(["name"]) -> integer |
9498 | cbradney | 3786 | |
12456 | jghali | 3787 | Returns the corner radius of the object "name". The radius isexpressed in points. If "name" is not given the currentlyselected item is used. |
9498 | cbradney | 3788 | </source> |
12456 | jghali | 3789 | <translation type="obsolete">getCornerRadius(["name"]) -> integer |
9498 | cbradney | 3790 | |
12456 | jghali | 3791 | Returns the corner radius of the object "name". The radius isexpressed in points. If "name" is not given the currentlyselected item is used. |
9498 | cbradney | 3792 | </translation> |
3793 | </message> |
||
3794 | <message> |
||
12456 | jghali | 3795 | <source>getFillShade(["name"]) -> integer |
9498 | cbradney | 3796 | |
12456 | jghali | 3797 | Returns the shading value of the fill color of the object "name". |
3798 | If "name" is not given the currently selected item is used. |
||
9498 | cbradney | 3799 | </source> |
12918 | cbradney | 3800 | <translation type="obsolete">getFillShade(["name"]) -> integer |
9498 | cbradney | 3801 | |
12456 | jghali | 3802 | Returns the shading value of the fill colour of the object "name". |
3803 | If "name" is not given the currently selected item is used. |
||
9498 | cbradney | 3804 | </translation> |
3805 | </message> |
||
3806 | <message> |
||
12456 | jghali | 3807 | <source>getFont(["name"]) -> string |
9498 | cbradney | 3808 | |
12456 | jghali | 3809 | Returns the font name for the text frame "name". If this text frame |
3810 | has some text selected the value assigned to the first character |
||
3811 | of the selection is returned. If "name" is not given the currently |
||
3812 | selected item is used. |
||
9498 | cbradney | 3813 | </source> |
12918 | cbradney | 3814 | <translation type="obsolete">getFont(["name"]) -> string |
9498 | cbradney | 3815 | |
12456 | jghali | 3816 | Returns the font name for the text frame "name". If this text frame |
3817 | has some text selected the value assigned to the first character |
||
3818 | of the selection is returned. If "name" is not given the currently |
||
3819 | selected item is used. |
||
9498 | cbradney | 3820 | </translation> |
3821 | </message> |
||
3822 | <message> |
||
12456 | jghali | 3823 | <source>getFontNames() -> list |
9498 | cbradney | 3824 | |
12456 | jghali | 3825 | Returns a list with the names of all available fonts. |
9498 | cbradney | 3826 | </source> |
12918 | cbradney | 3827 | <translation type="obsolete">getFontNames() -> list |
9498 | cbradney | 3828 | |
12456 | jghali | 3829 | Returns a list with the names of all available fonts. |
9498 | cbradney | 3830 | </translation> |
3831 | </message> |
||
3832 | <message> |
||
12456 | jghali | 3833 | <source>getGuiLanguage() -> string |
9498 | cbradney | 3834 | |
12456 | jghali | 3835 | Returns a string with the -lang value. |
9498 | cbradney | 3836 | </source> |
12918 | cbradney | 3837 | <translation type="obsolete">getGuiLanguage() -> string |
9498 | cbradney | 3838 | |
12456 | jghali | 3839 | Returns a string with the -lang value. |
9498 | cbradney | 3840 | </translation> |
3841 | </message> |
||
3842 | <message> |
||
12456 | jghali | 3843 | <source>getHGuides() -> list |
9498 | cbradney | 3844 | |
12456 | jghali | 3845 | Returns a list containing positions of the horizontal guides. Values are in the |
3846 | document's current units - see UNIT_<type> constants. |
||
9498 | cbradney | 3847 | </source> |
12918 | cbradney | 3848 | <translation type="obsolete">getHGuides() -> list |
9498 | cbradney | 3849 | |
12456 | jghali | 3850 | Returns a list containing positions of the horizontal guides. Values are in the |
3851 | document's current units - see UNIT_<type> constants. |
||
9498 | cbradney | 3852 | </translation> |
3853 | </message> |
||
3854 | <message> |
||
12456 | jghali | 3855 | <source>getImageName(["name"]) -> string |
9498 | cbradney | 3856 | |
12456 | jghali | 3857 | Returns the filename for the image in the image frame. If "name" is not |
3858 | given the currently selected item is used. |
||
9498 | cbradney | 3859 | </source> |
12918 | cbradney | 3860 | <translation type="obsolete">getImageName(["name"]) -> string |
9498 | cbradney | 3861 | |
12456 | jghali | 3862 | Returns the filename for the image in the image frame. If "name" is not |
3863 | given the currently selected item is used. |
||
9498 | cbradney | 3864 | </translation> |
3865 | </message> |
||
3866 | <message> |
||
12456 | jghali | 3867 | <source>getImageScale(["name"]) -> (x,y) |
9498 | cbradney | 3868 | |
12456 | jghali | 3869 | Returns a (x, y) tuple containing the scaling values of the image frame |
3870 | "name". If "name" is not given the currently selected item is used. |
||
9498 | cbradney | 3871 | </source> |
12918 | cbradney | 3872 | <translation type="obsolete">getImageScale(["name"]) -> (x,y) |
9498 | cbradney | 3873 | |
12456 | jghali | 3874 | Returns a (x, y) tuple containing the scaling values of the image frame |
3875 | "name". If "name" is not given the currently selected item is used. |
||
9498 | cbradney | 3876 | </translation> |
3877 | </message> |
||
3878 | <message> |
||
12456 | jghali | 3879 | <source>getLayers() -> list |
9498 | cbradney | 3880 | |
12456 | jghali | 3881 | Returns a list with the names of all defined layers. |
9498 | cbradney | 3882 | </source> |
12918 | cbradney | 3883 | <tra |