summaryrefslogtreecommitdiffstats
path: root/superkaramba/src/textlabel_python.h
blob: 78e047af60e9bd1fea49597a1f6ddff90e100419 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
/****************************************************************************
*  textlabel_python.h  -  Functions for textlabel python api
*
*  Copyright (C) 2003 Hans Karlsson <karlsson.h@home.se>
*  Copyright (C) 2003-2004 Adam Geitgey <adam@rootnode.org>
*  Copyright (c) 2004 Petri Damstén <damu@iki.fi>
*
*  This file is part of SuperKaramba.
*
*  SuperKaramba is free software; you can redistribute it and/or modify
*  it under the terms of the GNU General Public License as published by
*  the Free Software Foundation; either version 2 of the License, or
*  (at your option) any later version.
*
*  SuperKaramba is distributed in the hope that it will be useful,
*  but WITHOUT ANY WARRANTY; without even the implied warranty of
*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
*  GNU General Public License for more details.
*
*  You should have received a copy of the GNU General Public License
*  along with SuperKaramba; if not, write to the Free Software
*  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
****************************************************************************/

#ifndef TEXTLABEL_PYTHON_H
#define TEXTLABEL_PYTHON_H

/** Text/createText
*
* SYNOPSIS
*   long createText(widget, x, y, w, h, text)
* DESCRIPTION
*   This creates a text at x,y with width and height w,h. You need to save
*   the return value of this function to call other functions on your text
*   field, such as changeText()
* ARGUMENTS
*   * long widget -- karamba
*   * long x -- x coordinate
*   * long y -- y coordinate
*   * long w -- width
*   * long h -- height
*   * string text -- text for the textlabel
* RETURN VALUE
*   Pointer to new text meter
*/
PyObject* py_createText(PyObject *self, PyObject *args);

/** Text/deleteText
*
* SYNOPSIS
*   long deleteText(widget, text)
* DESCRIPTION
*   This removes a text object from memory. Please do not call functions on
*   "text" after calling deleteText, as it does not exist anymore and that
*   could cause crashes in some cases.
* ARGUMENTS
*   * long widget -- karamba
*   * long widget -- text
* RETURN VALUE
*   1 if successful
*/
PyObject* py_deleteText(PyObject *self, PyObject *args);

/** Text/getThemeText
*
* SYNOPSIS
*   long getThemeText(widget, name)
* DESCRIPTION
*   You can reference text in your python code that was created in the
*   theme file. Basically, you just add a NAME= value to the TEXT line in
*   the .theme file. Then if you want to use that object, instead of calling
*   createText, you can call this function.
*
*   The name you pass to the function is the same one that you gave it for
*   the NAME= parameter in the .theme file.
* ARGUMENTS
*   * long widget -- karamba
*   * string name -- name of the text to get
* RETURN VALUE
*   Pointer to text
*/
PyObject* py_getThemeText(PyObject *self, PyObject *args);

/** Text/getTextSize
*
* SYNOPSIS
*   tuple getTextSize(widget, text)
* DESCRIPTION
*   Given a reference to a text object, this will return a tuple
*   containing the height and width of a text object.
* ARGUMENTS
*   * long widget -- karamba
*   * long text -- pointer to text
* RETURN VALUE
*   size
*/
PyObject* py_getTextSize(PyObject *self, PyObject *args);

/** Text/resizeText
*
* SYNOPSIS
*   long resizeText(widget, text, w, h)
* DESCRIPTION
*   This will resize text to new height and width.
* ARGUMENTS
*   * long widget -- karamba
*   * long text -- pointer to text
*   * long w -- new width
*   * long h -- new height
* RETURN VALUE
*   1 if successful
*/
PyObject* py_resizeText(PyObject *self, PyObject *args);

/** Text/getTextPos
*
* SYNOPSIS
*   tuple getTextPos(widget, text)
* DESCRIPTION
*   Given a reference to a text object, this will return a tuple
*   containing the x and y coordinate of a text object.
* ARGUMENTS
*   * long widget -- karamba
*   * long text -- pointer to text
* RETURN VALUE
*   pos
*/
PyObject* py_getTextPos(PyObject *self, PyObject *args);

/** Text/moveText
*
* SYNOPSIS
*   long moveText(widget, text, x, y)
* DESCRIPTION
*   This moves a text object to a new x, y relative to your widget. In other
*   words, (0,0) is the top corner of your widget, not the screen.
* ARGUMENTS
*   * long widget -- karamba
*   * long text -- pointer to text
*   * long x -- x coordinate
*   * long y -- y coordinate
* RETURN VALUE
*   1 if successful
*/
PyObject* py_moveText(PyObject *self, PyObject *args);

/** Text/hideText
*
* SYNOPSIS
*   long hideText(widget, text)
* DESCRIPTION
*   Hides text that is visible. You need to call redrawWidget() afterwords
*   to actually hide the text on screen.
* ARGUMENTS
*   * long widget -- karamba
*   * long text -- pointer to text
* RETURN VALUE
*   1 if successful
*/
PyObject* py_hideText(PyObject *self, PyObject *args);

/** Text/showText
*
* SYNOPSIS
*   long showText(widget, text)
* DESCRIPTION
*   Shows text that has been hidden with hideText()
* ARGUMENTS
*   * long widget -- karamba
*   * long text -- pointer to text
* RETURN VALUE
*   1 if successful
*/
PyObject* py_showText(PyObject *self, PyObject *args);

/** Text/getTextValue
*
* SYNOPSIS
*   string getTextValue(widget, text)
* DESCRIPTION
*   Returns current text value.
* ARGUMENTS
*   * long widget -- karamba
*   * long text -- pointer to text
* RETURN VALUE
*   value
*/
PyObject* py_getTextValue(PyObject *self, PyObject *args);

/** Text/changeText
*
* SYNOPSIS
*   long changeText(widget, text, value)
* DESCRIPTION
*   This will change the contents of a text widget.
* ARGUMENTS
*   * long widget -- karamba
*   * long text -- pointer to text
*   * long value -- new value
* RETURN VALUE
*   1 if successful
*/
PyObject* py_setTextValue(PyObject *self, PyObject *args);

/** Text/getTextSensor
*
* SYNOPSIS
*   string getTextSensor(widget, text)
* DESCRIPTION
*   Get current sensor string
* ARGUMENTS
*   * long widget -- karamba
*   * long text -- pointer to text
* RETURN VALUE
*   sensor string
*/
PyObject* py_getTextSensor(PyObject *self, PyObject *args);

/** Text/setTextSensor
*
* SYNOPSIS
*   long setTextSensor(widget, text, sensor)
* DESCRIPTION
*   Get current sensor string
* ARGUMENTS
*   * long widget -- karamba
*   * long text -- pointer to text
*   * string sensor -- new sensor as in theme files
* RETURN VALUE
*   1 if successful
*/
PyObject* py_setTextSensor(PyObject *self, PyObject *args);

/** Text/changeTextShadow
*
* SYNOPSIS
*   long changeTextShadow(widget, text, shadow)
* DESCRIPTION
*    This will change the shadow size of a text widget (only ones you
*    created through python currently). textToChange is the reference to the
*    text object to change that you saved from the createText() call. size
*    is the offset of the shadow in pixels. 1 or 2 is a good value in most
*    cases. Get current sensor string
* ARGUMENTS
*   * long widget -- karamba
*   * long text -- pointer to text
*   * long shadow -- shadow offset
* RETURN VALUE
*   1 if successful
*/
PyObject* py_setTextShadow(PyObject *self, PyObject *args);

/** Text/getTextShadow
*
* SYNOPSIS
*   long getTextShadow(widget, text)
* DESCRIPTION
*   Get current shadow offset
* ARGUMENTS
*   * long widget -- karamba
*   * long text -- pointer to text
* RETURN VALUE
*   shadow offset
*/
PyObject* py_getTextShadow(PyObject *self, PyObject *args);

/** Text/changeTextSize
*
* SYNOPSIS
*   long changeTextSize(widget, text, size)
* DESCRIPTION
*   This will change the font size of a text widget (only ones you created
*   through python currently). textToChange is the reference to the text
*   object to change that you saved from the createText() call. size is the
*   new font point size.
* ARGUMENTS
*   * long widget -- karamba
*   * long text -- pointer to text
*   * long size -- new size for text
* RETURN VALUE
*   1 if successful
*/
PyObject* py_setTextFontSize(PyObject *self, PyObject *args);

/** Text/getTextFontSize
*
* SYNOPSIS
*   long getTextFontSize(widget, text)
* DESCRIPTION
*   Get current text font size
* ARGUMENTS
*   * long widget -- karamba
*   * long text -- pointer to text
* RETURN VALUE
*   text font size
*/
PyObject* py_getTextFontSize(PyObject *self, PyObject *args);

/** Text/changeTextColor
*
* SYNOPSIS
*   long changeTextColor(widget, text, r, g, b)
* DESCRIPTION
*   This will change the color of a text widget (only ones you created
*   through python currently). textToChange is the reference to the text
*   object to change that you saved from the createText() call. r, g, b are
*   ints from 0 to 255 that represent red, green, and blue.
* ARGUMENTS
*   * long widget -- karamba
*   * long text -- pointer to text
*   * long red -- red component of color
*   * long green -- green component of color
*   * long blue -- blue component of color
* RETURN VALUE
*   1 if successful
*/
PyObject* py_setTextColor(PyObject *self, PyObject *args);

/** Text/getTextColor
*
* SYNOPSIS
*   tuple getTextColor(widget, text)
* DESCRIPTION
*   Get current text color
* ARGUMENTS
*   * long widget -- karamba
*   * long text -- pointer to text
* RETURN VALUE
*   (red, green, blue)
*/
PyObject* py_getTextColor(PyObject *self, PyObject *args);

/** Text/changeTextFont
*
* SYNOPSIS
*   long changeTextFont(widget, text, font)
* DESCRIPTION
*   This will change the font of a text widget (only ones you created
*   through python currently). Text is the reference to the text
*   object to change that you saved from the createText() call. Font is a
*   string the the name of the font to use.
* ARGUMENTS
*   * long widget -- karamba
*   * long text -- pointer to text
*   * string font -- font name
* RETURN VALUE
*   1 if successful
*/
PyObject* py_setTextFont(PyObject *self, PyObject *args);

/** Text/getTextFont
*
* SYNOPSIS
*   string getTextFont(widget, text)
* DESCRIPTION
*   Get current text font name
* ARGUMENTS
*   * long widget -- karamba
*   * long text -- pointer to text
* RETURN VALUE
*   font name
*/
PyObject* py_getTextFont(PyObject *self, PyObject *args);

/** Text/setTextAlign
*
* SYNOPSIS
*   long setTextAlign(widget, text, align)
* DESCRIPTION
*   Sets text label align.
* ARGUMENTS
*   * long widget -- karamba
*   * long text -- pointer to text
*   * string align -- LEFT, CENTER or RIGHT
* RETURN VALUE
*   1 if successful
*/
PyObject* py_setTextAlign(PyObject *self, PyObject *args);

/** Text/getTextAlign
*
* SYNOPSIS
*   string getTextAlign(widget, text)
* DESCRIPTION
*   Get current text align.
* ARGUMENTS
*   * long widget -- karamba
*   * long text -- pointer to text
* RETURN VALUE
*   LEFT, CENTER or RIGHT
*/
PyObject* py_getTextAlign(PyObject *self, PyObject *args);

// XXX: Is this valid for new release
PyObject* py_setTextScroll(PyObject *self, PyObject *args);

#endif // TEXTLABEL_PYTHON_H