]>
Commit | Line | Data |
---|---|---|
f97d84a6 RD |
1 | #!/bin/env python |
2 | #---------------------------------------------------------------------------- | |
3 | # Name: gen_iface.py | |
4 | # Purpose: Generate stc.h and stc.cpp from the info in Scintilla.iface | |
5 | # | |
6 | # Author: Robin Dunn | |
7 | # | |
8 | # Created: 5-Sept-2000 | |
9 | # RCS-ID: $Id$ | |
10 | # Copyright: (c) 2000 by Total Control Software | |
11 | # Licence: wxWindows license | |
12 | #---------------------------------------------------------------------------- | |
13 | ||
14 | ||
65ec6247 | 15 | import sys, string, re, os |
f97d84a6 RD |
16 | from fileinput import FileInput |
17 | ||
18 | ||
65ec6247 RD |
19 | IFACE = os.path.abspath('./scintilla/include/Scintilla.iface') |
20 | H_TEMPLATE = os.path.abspath('./stc.h.in') | |
21 | CPP_TEMPLATE = os.path.abspath('./stc.cpp.in') | |
22 | H_DEST = os.path.abspath('../../include/wx/stc/stc.h') | |
23 | CPP_DEST = os.path.abspath('./stc.cpp') | |
7e0c58e9 | 24 | DOCSTR_DEST = os.path.abspath('../../../wxPython/contrib/stc/_stc_gendocs.i') |
f97d84a6 RD |
25 | |
26 | ||
27 | # Value prefixes to convert | |
28 | valPrefixes = [('SCI_', ''), | |
29 | ('SC_', ''), | |
37d62433 | 30 | ('SCN_', None), # just toss these out... |
f97d84a6 RD |
31 | ('SCEN_', None), |
32 | ('SCE_', ''), | |
33 | ('SCLEX_', 'LEX_'), | |
34 | ('SCK_', 'KEY_'), | |
35 | ('SCFIND_', 'FIND_'), | |
36 | ('SCWS_', 'WS_'), | |
37 | ] | |
38 | ||
c26dba42 | 39 | # Message function values that should have a CMD_ constant generated |
7e0c58e9 | 40 | cmdValues = [ 2011, |
2b5f62a0 VZ |
41 | 2013, |
42 | (2176, 2180), | |
7e0c58e9 | 43 | (2300, 2349), |
2b5f62a0 VZ |
44 | (2390, 2393), |
45 | (2395, 2396), | |
9e730a78 RD |
46 | 2404, |
47 | (2413, 2416), | |
8e54aaed | 48 | (2426, 2442), |
c26dba42 | 49 | (2450, 2455), |
7e0c58e9 | 50 | 2518, |
2b5f62a0 | 51 | ] |
f97d84a6 RD |
52 | |
53 | ||
c26dba42 RD |
54 | # Should a funciton be also generated for the CMDs? |
55 | FUNC_FOR_CMD = True | |
56 | ||
57 | ||
f97d84a6 RD |
58 | # Map some generic typenames to wx types, using return value syntax |
59 | retTypeMap = { | |
60 | 'position': 'int', | |
61 | 'string': 'wxString', | |
62 | 'colour': 'wxColour', | |
63 | } | |
64 | ||
65 | # Map some generic typenames to wx types, using parameter syntax | |
66 | paramTypeMap = { | |
67 | 'position': 'int', | |
68 | 'string': 'const wxString&', | |
69 | 'colour': 'const wxColour&', | |
70 | 'keymod': 'int', | |
71 | } | |
72 | ||
73 | # Map of method info that needs tweaked. Either the name needs changed, or | |
74 | # the method definition/implementation. Tuple items are: | |
75 | # | |
76 | # 1. New method name. None to skip the method, 0 to leave the | |
77 | # default name. | |
78 | # 2. Method definition for the .h file, 0 to leave alone | |
79 | # 3. Method implementation for the .cpp file, 0 to leave alone. | |
80 | # 4. tuple of Doc string lines, or 0 to leave alone. | |
81 | # | |
82 | methodOverrideMap = { | |
83 | 'AddText' : (0, | |
84 | 'void %s(const wxString& text);', | |
85 | ||
86 | '''void %s(const wxString& text) { | |
0c5b83b0 | 87 | wxWX2MBbuf buf = (wxWX2MBbuf)wx2stc(text); |
10ef30eb | 88 | SendMsg(%s, strlen(buf), (long)(const char*)buf);''', |
f97d84a6 RD |
89 | 0), |
90 | ||
91 | 'AddStyledText' : (0, | |
10ef30eb | 92 | 'void %s(const wxMemoryBuffer& data);', |
f97d84a6 | 93 | |
10ef30eb RD |
94 | '''void %s(const wxMemoryBuffer& data) { |
95 | SendMsg(%s, data.GetDataLen(), (long)data.GetData());''', | |
f97d84a6 RD |
96 | 0), |
97 | ||
41a499cd RD |
98 | 'AppendText' : (0, |
99 | 'void %s(const wxString& text);', | |
100 | ||
101 | '''void %s(const wxString& text) { | |
102 | wxWX2MBbuf buf = (wxWX2MBbuf)wx2stc(text); | |
103 | SendMsg(%s, strlen(buf), (long)(const char*)buf);''', | |
104 | 0), | |
105 | ||
f97d84a6 RD |
106 | 'GetViewWS' : ( 'GetViewWhiteSpace', 0, 0, 0), |
107 | 'SetViewWS' : ( 'SetViewWhiteSpace', 0, 0, 0), | |
108 | ||
9e730a78 RD |
109 | 'GetCharAt' : |
110 | ( 0, 0, | |
111 | '''int %s(int pos) { | |
112 | return (unsigned char)SendMsg(%s, pos, 0);''', | |
113 | 0), | |
114 | ||
115 | 'GetStyleAt' : | |
116 | ( 0, 0, | |
117 | '''int %s(int pos) { | |
118 | return (unsigned char)SendMsg(%s, pos, 0);''', | |
119 | 0), | |
120 | ||
121 | 'GetStyledText' : | |
122 | (0, | |
123 | 'wxMemoryBuffer %s(int startPos, int endPos);', | |
124 | ||
125 | '''wxMemoryBuffer %s(int startPos, int endPos) { | |
126 | wxMemoryBuffer buf; | |
127 | if (endPos < startPos) { | |
128 | int temp = startPos; | |
129 | startPos = endPos; | |
130 | endPos = temp; | |
131 | } | |
132 | int len = endPos - startPos; | |
133 | if (!len) return buf; | |
134 | TextRange tr; | |
135 | tr.lpstrText = (char*)buf.GetWriteBuf(len*2+1); | |
136 | tr.chrg.cpMin = startPos; | |
137 | tr.chrg.cpMax = endPos; | |
138 | len = SendMsg(%s, 0, (long)&tr); | |
139 | buf.UngetWriteBuf(len); | |
140 | return buf;''', | |
141 | ||
142 | ('Retrieve a buffer of cells.',)), | |
143 | ||
144 | ||
145 | 'PositionFromPoint' : | |
146 | (0, | |
147 | 'int %s(wxPoint pt);', | |
148 | ||
149 | '''int %s(wxPoint pt) { | |
150 | return SendMsg(%s, pt.x, pt.y);''', | |
151 | 0), | |
152 | ||
153 | 'GetCurLine' : | |
154 | (0, | |
155 | '#ifdef SWIG\n wxString %s(int* OUTPUT);\n#else\n wxString GetCurLine(int* linePos=NULL);\n#endif', | |
156 | ||
157 | '''wxString %s(int* linePos) { | |
158 | int len = LineLength(GetCurrentLine()); | |
159 | if (!len) { | |
160 | if (linePos) *linePos = 0; | |
161 | return wxEmptyString; | |
162 | } | |
163 | ||
164 | wxMemoryBuffer mbuf(len+1); | |
165 | char* buf = (char*)mbuf.GetWriteBuf(len+1); | |
166 | ||
167 | int pos = SendMsg(%s, len+1, (long)buf); | |
168 | mbuf.UngetWriteBuf(len); | |
169 | mbuf.AppendByte(0); | |
170 | if (linePos) *linePos = pos; | |
171 | return stc2wx(buf);''', | |
172 | ||
173 | 0), | |
f97d84a6 RD |
174 | |
175 | 'SetUsePalette' : (None, 0,0,0), | |
176 | ||
177 | 'MarkerSetFore' : ('MarkerSetForeground', 0, 0, 0), | |
178 | 'MarkerSetBack' : ('MarkerSetBackground', 0, 0, 0), | |
179 | ||
9e730a78 RD |
180 | 'MarkerDefine' : |
181 | (0, | |
182 | '''void %s(int markerNumber, int markerSymbol, | |
183 | const wxColour& foreground = wxNullColour, | |
184 | const wxColour& background = wxNullColour);''', | |
185 | ||
186 | '''void %s(int markerNumber, int markerSymbol, | |
187 | const wxColour& foreground, | |
188 | const wxColour& background) { | |
189 | ||
190 | SendMsg(%s, markerNumber, markerSymbol); | |
191 | if (foreground.Ok()) | |
192 | MarkerSetForeground(markerNumber, foreground); | |
193 | if (background.Ok()) | |
194 | MarkerSetBackground(markerNumber, background);''', | |
195 | ||
196 | ('Set the symbol used for a particular marker number,', | |
197 | 'and optionally the fore and background colours.')), | |
198 | ||
199 | ||
200 | 'MarkerDefinePixmap' : | |
201 | ('MarkerDefineBitmap', | |
202 | '''void %s(int markerNumber, const wxBitmap& bmp);''', | |
203 | '''void %s(int markerNumber, const wxBitmap& bmp) { | |
204 | // convert bmp to a xpm in a string | |
205 | wxMemoryOutputStream strm; | |
206 | wxImage img = bmp.ConvertToImage(); | |
e45b3f17 RD |
207 | if (img.HasAlpha()) |
208 | img.ConvertAlphaToMask(); | |
9e730a78 RD |
209 | img.SaveFile(strm, wxBITMAP_TYPE_XPM); |
210 | size_t len = strm.GetSize(); | |
211 | char* buff = new char[len+1]; | |
212 | strm.CopyTo(buff, len); | |
213 | buff[len] = 0; | |
214 | SendMsg(%s, markerNumber, (long)buff); | |
215 | delete [] buff; | |
216 | ''', | |
217 | ('Define a marker from a bitmap',)), | |
f97d84a6 | 218 | |
f97d84a6 RD |
219 | |
220 | 'SetMarginTypeN' : ('SetMarginType', 0, 0, 0), | |
221 | 'GetMarginTypeN' : ('GetMarginType', 0, 0, 0), | |
222 | 'SetMarginWidthN' : ('SetMarginWidth', 0, 0, 0), | |
223 | 'GetMarginWidthN' : ('GetMarginWidth', 0, 0, 0), | |
224 | 'SetMarginMaskN' : ('SetMarginMask', 0, 0, 0), | |
225 | 'GetMarginMaskN' : ('GetMarginMask', 0, 0, 0), | |
226 | 'SetMarginSensitiveN' : ('SetMarginSensitive', 0, 0, 0), | |
227 | 'GetMarginSensitiveN' : ('GetMarginSensitive', 0, 0, 0), | |
228 | ||
7e0c58e9 RD |
229 | |
230 | 'StyleGetFore' : ('StyleGetForeground', 0, 0, 0), | |
231 | 'StyleGetBack' : ('StyleGetBackground', 0, 0, 0), | |
f97d84a6 RD |
232 | 'StyleSetFore' : ('StyleSetForeground', 0, 0, 0), |
233 | 'StyleSetBack' : ('StyleSetBackground', 0, 0, 0), | |
234 | 'SetSelFore' : ('SetSelForeground', 0, 0, 0), | |
235 | 'SetSelBack' : ('SetSelBackground', 0, 0, 0), | |
236 | 'SetCaretFore' : ('SetCaretForeground', 0, 0, 0), | |
7e0c58e9 RD |
237 | 'StyleGetFont' : |
238 | ('StyleGetFaceName', | |
239 | 'wxString %s(int style);', | |
240 | '''wxString %s(int style) { | |
241 | long msg = %s; | |
242 | long len = SendMsg(msg, style, 0); | |
243 | wxMemoryBuffer mbuf(len+1); | |
244 | char* buf = (char*)mbuf.GetWriteBuf(len+1); | |
245 | SendMsg(msg, style, (long)buf); | |
246 | mbuf.UngetWriteBuf(len); | |
247 | mbuf.AppendByte(0); | |
248 | return stc2wx(buf);''', | |
249 | ('Get the font facename of a style',)), | |
f97d84a6 | 250 | 'StyleSetFont' : ('StyleSetFaceName', 0, 0, 0), |
3727c043 RD |
251 | 'StyleSetCharacterSet' : (None, 0, 0, 0), |
252 | ||
9e730a78 RD |
253 | 'AssignCmdKey' : |
254 | ('CmdKeyAssign', | |
255 | 'void %s(int key, int modifiers, int cmd);', | |
f97d84a6 | 256 | |
9e730a78 RD |
257 | '''void %s(int key, int modifiers, int cmd) { |
258 | SendMsg(%s, MAKELONG(key, modifiers), cmd);''', | |
259 | 0), | |
f97d84a6 | 260 | |
f97d84a6 | 261 | |
9e730a78 RD |
262 | 'ClearCmdKey' : |
263 | ('CmdKeyClear', | |
264 | 'void %s(int key, int modifiers);', | |
f97d84a6 | 265 | |
9e730a78 RD |
266 | '''void %s(int key, int modifiers) { |
267 | SendMsg(%s, MAKELONG(key, modifiers));''', | |
268 | 0), | |
f97d84a6 RD |
269 | |
270 | 'ClearAllCmdKeys' : ('CmdKeyClearAll', 0, 0, 0), | |
271 | ||
272 | ||
9e730a78 RD |
273 | 'SetStylingEx' : |
274 | ('SetStyleBytes', | |
275 | 'void %s(int length, char* styleBytes);', | |
f97d84a6 | 276 | |
9e730a78 RD |
277 | '''void %s(int length, char* styleBytes) { |
278 | SendMsg(%s, length, (long)styleBytes);''', | |
279 | 0), | |
f97d84a6 RD |
280 | |
281 | ||
282 | 'IndicSetStyle' : ('IndicatorSetStyle', 0, 0, 0), | |
283 | 'IndicGetStyle' : ('IndicatorGetStyle', 0, 0, 0), | |
284 | 'IndicSetFore' : ('IndicatorSetForeground', 0, 0, 0), | |
285 | 'IndicGetFore' : ('IndicatorGetForeground', 0, 0, 0), | |
7e0c58e9 RD |
286 | 'IndicSetUnder': ('IndicatorSetUnder', 0, 0, 0), |
287 | 'IndicGetUnder': ('IndicatorGetUnder', 0, 0, 0), | |
288 | ||
f114b858 RD |
289 | 'SetWhitespaceFore' : ('SetWhitespaceForeground', 0, 0, 0), |
290 | 'SetWhitespaceBack' : ('SetWhitespaceBackground', 0, 0, 0), | |
291 | ||
f97d84a6 RD |
292 | 'AutoCShow' : ('AutoCompShow', 0, 0, 0), |
293 | 'AutoCCancel' : ('AutoCompCancel', 0, 0, 0), | |
294 | 'AutoCActive' : ('AutoCompActive', 0, 0, 0), | |
295 | 'AutoCPosStart' : ('AutoCompPosStart', 0, 0, 0), | |
296 | 'AutoCComplete' : ('AutoCompComplete', 0, 0, 0), | |
297 | 'AutoCStops' : ('AutoCompStops', 0, 0, 0), | |
298 | 'AutoCSetSeparator' : ('AutoCompSetSeparator', 0, 0, 0), | |
299 | 'AutoCGetSeparator' : ('AutoCompGetSeparator', 0, 0, 0), | |
300 | 'AutoCSelect' : ('AutoCompSelect', 0, 0, 0), | |
301 | 'AutoCSetCancelAtStart' : ('AutoCompSetCancelAtStart', 0, 0, 0), | |
302 | 'AutoCGetCancelAtStart' : ('AutoCompGetCancelAtStart', 0, 0, 0), | |
303 | 'AutoCSetFillUps' : ('AutoCompSetFillUps', 0, 0, 0), | |
304 | 'AutoCSetChooseSingle' : ('AutoCompSetChooseSingle', 0, 0, 0), | |
305 | 'AutoCGetChooseSingle' : ('AutoCompGetChooseSingle', 0, 0, 0), | |
306 | 'AutoCSetIgnoreCase' : ('AutoCompSetIgnoreCase', 0, 0, 0), | |
307 | 'AutoCGetIgnoreCase' : ('AutoCompGetIgnoreCase', 0, 0, 0), | |
65ec6247 RD |
308 | 'AutoCSetAutoHide' : ('AutoCompSetAutoHide', 0, 0, 0), |
309 | 'AutoCGetAutoHide' : ('AutoCompGetAutoHide', 0, 0, 0), | |
1a2fb4cd RD |
310 | 'AutoCSetDropRestOfWord' : ('AutoCompSetDropRestOfWord', 0,0,0), |
311 | 'AutoCGetDropRestOfWord' : ('AutoCompGetDropRestOfWord', 0,0,0), | |
9e730a78 RD |
312 | 'AutoCGetTypeSeparator' : ('AutoCompGetTypeSeparator', 0, 0, 0), |
313 | 'AutoCSetTypeSeparator' : ('AutoCompSetTypeSeparator', 0, 0, 0), | |
8e54aaed | 314 | 'AutoCGetCurrent' : ('AutoCompGetCurrent', 0, 0, 0), |
1e9bafca RD |
315 | 'AutoCSetMaxWidth' : ('AutoCompSetMaxWidth', 0, 0, 0), |
316 | 'AutoCGetMaxWidth' : ('AutoCompGetMaxWidth', 0, 0, 0), | |
317 | 'AutoCSetMaxHeight' : ('AutoCompSetMaxHeight', 0, 0, 0), | |
318 | 'AutoCGetMaxHeight' : ('AutoCompGetMaxHeight', 0, 0, 0), | |
319 | 'AutoCGetMaxHeight' : ('AutoCompGetMaxHeight', 0, 0, 0), | |
320 | ||
9e730a78 RD |
321 | 'RegisterImage' : |
322 | (0, | |
323 | '''void %s(int type, const wxBitmap& bmp);''', | |
324 | '''void %s(int type, const wxBitmap& bmp) { | |
325 | // convert bmp to a xpm in a string | |
326 | wxMemoryOutputStream strm; | |
327 | wxImage img = bmp.ConvertToImage(); | |
e45b3f17 RD |
328 | if (img.HasAlpha()) |
329 | img.ConvertAlphaToMask(); | |
9e730a78 RD |
330 | img.SaveFile(strm, wxBITMAP_TYPE_XPM); |
331 | size_t len = strm.GetSize(); | |
332 | char* buff = new char[len+1]; | |
333 | strm.CopyTo(buff, len); | |
334 | buff[len] = 0; | |
335 | SendMsg(%s, type, (long)buff); | |
336 | delete [] buff; | |
337 | ''', | |
338 | ('Register an image for use in autocompletion lists.',)), | |
339 | ||
340 | ||
341 | 'ClearRegisteredImages' : (0, 0, 0, | |
342 | ('Clear all the registered images.',)), | |
65ec6247 | 343 | |
f97d84a6 RD |
344 | |
345 | 'SetHScrollBar' : ('SetUseHorizontalScrollBar', 0, 0, 0), | |
346 | 'GetHScrollBar' : ('GetUseHorizontalScrollBar', 0, 0, 0), | |
347 | ||
9e730a78 RD |
348 | 'SetVScrollBar' : ('SetUseVerticalScrollBar', 0, 0, 0), |
349 | 'GetVScrollBar' : ('GetUseVerticalScrollBar', 0, 0, 0), | |
350 | ||
f97d84a6 RD |
351 | 'GetCaretFore' : ('GetCaretForeground', 0, 0, 0), |
352 | ||
353 | 'GetUsePalette' : (None, 0, 0, 0), | |
354 | ||
9e730a78 RD |
355 | 'FindText' : |
356 | (0, | |
357 | '''int %s(int minPos, int maxPos, const wxString& text, int flags=0);''', | |
358 | ||
359 | '''int %s(int minPos, int maxPos, | |
360 | const wxString& text, | |
361 | int flags) { | |
362 | TextToFind ft; | |
363 | ft.chrg.cpMin = minPos; | |
364 | ft.chrg.cpMax = maxPos; | |
365 | wxWX2MBbuf buf = (wxWX2MBbuf)wx2stc(text); | |
366 | ft.lpstrText = (char*)(const char*)buf; | |
367 | ||
368 | return SendMsg(%s, flags, (long)&ft);''', | |
369 | 0), | |
370 | ||
371 | 'FormatRange' : | |
372 | (0, | |
373 | '''int %s(bool doDraw, | |
374 | int startPos, | |
375 | int endPos, | |
376 | wxDC* draw, | |
8e54aaed | 377 | wxDC* target, |
9e730a78 RD |
378 | wxRect renderRect, |
379 | wxRect pageRect);''', | |
380 | ''' int %s(bool doDraw, | |
381 | int startPos, | |
382 | int endPos, | |
383 | wxDC* draw, | |
8e54aaed | 384 | wxDC* target, |
9e730a78 RD |
385 | wxRect renderRect, |
386 | wxRect pageRect) { | |
387 | RangeToFormat fr; | |
388 | ||
389 | if (endPos < startPos) { | |
390 | int temp = startPos; | |
391 | startPos = endPos; | |
392 | endPos = temp; | |
393 | } | |
394 | fr.hdc = draw; | |
395 | fr.hdcTarget = target; | |
396 | fr.rc.top = renderRect.GetTop(); | |
397 | fr.rc.left = renderRect.GetLeft(); | |
398 | fr.rc.right = renderRect.GetRight(); | |
399 | fr.rc.bottom = renderRect.GetBottom(); | |
400 | fr.rcPage.top = pageRect.GetTop(); | |
401 | fr.rcPage.left = pageRect.GetLeft(); | |
402 | fr.rcPage.right = pageRect.GetRight(); | |
403 | fr.rcPage.bottom = pageRect.GetBottom(); | |
404 | fr.chrg.cpMin = startPos; | |
405 | fr.chrg.cpMax = endPos; | |
406 | ||
407 | return SendMsg(%s, doDraw, (long)&fr);''', | |
408 | 0), | |
409 | ||
410 | ||
411 | 'GetLine' : | |
412 | (0, | |
413 | 'wxString %s(int line);', | |
414 | ||
415 | '''wxString %s(int line) { | |
416 | int len = LineLength(line); | |
417 | if (!len) return wxEmptyString; | |
418 | ||
419 | wxMemoryBuffer mbuf(len+1); | |
420 | char* buf = (char*)mbuf.GetWriteBuf(len+1); | |
421 | SendMsg(%s, line, (long)buf); | |
422 | mbuf.UngetWriteBuf(len); | |
423 | mbuf.AppendByte(0); | |
424 | return stc2wx(buf);''', | |
425 | ||
426 | ('Retrieve the contents of a line.',)), | |
f97d84a6 RD |
427 | |
428 | 'SetSel' : ('SetSelection', 0, 0, 0), | |
9e730a78 RD |
429 | |
430 | 'GetSelText' : | |
431 | ('GetSelectedText', | |
432 | 'wxString %s();', | |
433 | ||
434 | '''wxString %s() { | |
435 | int start; | |
436 | int end; | |
437 | ||
438 | GetSelection(&start, &end); | |
439 | int len = end - start; | |
440 | if (!len) return wxEmptyString; | |
441 | ||
3d7a4fe8 | 442 | wxMemoryBuffer mbuf(len+2); |
9e730a78 RD |
443 | char* buf = (char*)mbuf.GetWriteBuf(len+1); |
444 | SendMsg(%s, 0, (long)buf); | |
445 | mbuf.UngetWriteBuf(len); | |
446 | mbuf.AppendByte(0); | |
447 | return stc2wx(buf);''', | |
448 | ||
449 | ('Retrieve the selected text.',)), | |
450 | ||
451 | ||
452 | 'GetTextRange' : | |
453 | (0, | |
454 | 'wxString %s(int startPos, int endPos);', | |
455 | ||
456 | '''wxString %s(int startPos, int endPos) { | |
457 | if (endPos < startPos) { | |
458 | int temp = startPos; | |
459 | startPos = endPos; | |
460 | endPos = temp; | |
461 | } | |
462 | int len = endPos - startPos; | |
463 | if (!len) return wxEmptyString; | |
464 | wxMemoryBuffer mbuf(len+1); | |
465 | char* buf = (char*)mbuf.GetWriteBuf(len); | |
466 | TextRange tr; | |
467 | tr.lpstrText = buf; | |
468 | tr.chrg.cpMin = startPos; | |
469 | tr.chrg.cpMax = endPos; | |
470 | SendMsg(%s, 0, (long)&tr); | |
471 | mbuf.UngetWriteBuf(len); | |
472 | mbuf.AppendByte(0); | |
473 | return stc2wx(buf);''', | |
474 | ||
475 | ('Retrieve a range of text.',)), | |
f97d84a6 RD |
476 | |
477 | 'PointXFromPosition' : (None, 0, 0, 0), | |
478 | 'PointYFromPosition' : (None, 0, 0, 0), | |
479 | ||
480 | 'ScrollCaret' : ('EnsureCaretVisible', 0, 0, 0), | |
481 | 'ReplaceSel' : ('ReplaceSelection', 0, 0, 0), | |
482 | 'Null' : (None, 0, 0, 0), | |
483 | ||
9e730a78 RD |
484 | 'GetText' : |
485 | (0, | |
486 | 'wxString %s();', | |
f97d84a6 | 487 | |
9e730a78 RD |
488 | '''wxString %s() { |
489 | int len = GetTextLength(); | |
490 | wxMemoryBuffer mbuf(len+1); // leave room for the null... | |
491 | char* buf = (char*)mbuf.GetWriteBuf(len+1); | |
492 | SendMsg(%s, len+1, (long)buf); | |
493 | mbuf.UngetWriteBuf(len); | |
494 | mbuf.AppendByte(0); | |
495 | return stc2wx(buf);''', | |
f97d84a6 | 496 | |
9e730a78 | 497 | ('Retrieve all the text in the document.', )), |
f97d84a6 RD |
498 | |
499 | 'GetDirectFunction' : (None, 0, 0, 0), | |
500 | 'GetDirectPointer' : (None, 0, 0, 0), | |
501 | ||
9e730a78 RD |
502 | 'CallTipPosStart' : ('CallTipPosAtStart', 0, 0, 0), |
503 | 'CallTipSetHlt' : ('CallTipSetHighlight', 0, 0, 0), | |
504 | 'CallTipSetBack' : ('CallTipSetBackground', 0, 0, 0), | |
505 | 'CallTipSetFore' : ('CallTipSetForeground', 0, 0, 0), | |
506 | 'CallTipSetForeHlt' : ('CallTipSetForegroundHighlight', 0, 0, 0), | |
507 | ||
508 | 'SetHotspotActiveFore' : ('SetHotspotActiveForeground', 0, 0, 0), | |
509 | 'SetHotspotActiveBack' : ('SetHotspotActiveBackground', 0, 0, 0), | |
7e0c58e9 RD |
510 | 'GetHotspotActiveFore' : ('GetHotspotActiveForeground', 0, 0, 0), |
511 | 'GetHotspotActiveBack' : ('GetHotspotActiveBackground', 0, 0, 0), | |
6a93571d RD |
512 | |
513 | 'GetCaretLineBack' : ('GetCaretLineBackground', 0, 0, 0), | |
514 | 'SetCaretLineBack' : ('SetCaretLineBackground', 0, 0, 0), | |
9e730a78 RD |
515 | |
516 | 'ReplaceTarget' : | |
517 | (0, | |
518 | 'int %s(const wxString& text);', | |
519 | ||
520 | ''' | |
521 | int %s(const wxString& text) { | |
522 | wxWX2MBbuf buf = (wxWX2MBbuf)wx2stc(text); | |
523 | return SendMsg(%s, strlen(buf), (long)(const char*)buf);''', | |
524 | 0), | |
525 | ||
526 | 'ReplaceTargetRE' : | |
527 | (0, | |
528 | 'int %s(const wxString& text);', | |
529 | ||
530 | ''' | |
531 | int %s(const wxString& text) { | |
532 | wxWX2MBbuf buf = (wxWX2MBbuf)wx2stc(text); | |
533 | return SendMsg(%s, strlen(buf), (long)(const char*)buf);''', | |
534 | 0), | |
535 | ||
536 | 'SearchInTarget' : | |
537 | (0, | |
538 | 'int %s(const wxString& text);', | |
539 | ||
540 | ''' | |
541 | int %s(const wxString& text) { | |
542 | wxWX2MBbuf buf = (wxWX2MBbuf)wx2stc(text); | |
543 | return SendMsg(%s, strlen(buf), (long)(const char*)buf);''', | |
544 | 0), | |
545 | ||
a33203cb RD |
546 | # not sure what to do about these yet |
547 | 'TargetAsUTF8' : ( None, 0, 0, 0), | |
548 | 'SetLengthForEncode' : ( None, 0, 0, 0), | |
549 | 'EncodedFromUTF8' : ( None, 0, 0, 0), | |
1e9bafca RD |
550 | |
551 | ||
552 | 'GetProperty' : | |
553 | (0, | |
554 | 'wxString %s(const wxString& key);', | |
555 | ||
556 | '''wxString %s(const wxString& key) { | |
600b3983 | 557 | int len = SendMsg(SCI_GETPROPERTY, (long)(const char*)wx2stc(key), 0); |
1e9bafca RD |
558 | if (!len) return wxEmptyString; |
559 | ||
560 | wxMemoryBuffer mbuf(len+1); | |
561 | char* buf = (char*)mbuf.GetWriteBuf(len+1); | |
562 | SendMsg(%s, (long)(const char*)wx2stc(key), (long)buf); | |
563 | mbuf.UngetWriteBuf(len); | |
564 | mbuf.AppendByte(0); | |
565 | return stc2wx(buf);''', | |
566 | ("Retrieve a 'property' value previously set with SetProperty.",)), | |
567 | ||
568 | 'GetPropertyExpanded' : | |
569 | (0, | |
570 | 'wxString %s(const wxString& key);', | |
571 | ||
572 | '''wxString %s(const wxString& key) { | |
600b3983 | 573 | int len = SendMsg(SCI_GETPROPERTYEXPANDED, (long)(const char*)wx2stc(key), 0); |
1e9bafca RD |
574 | if (!len) return wxEmptyString; |
575 | ||
576 | wxMemoryBuffer mbuf(len+1); | |
577 | char* buf = (char*)mbuf.GetWriteBuf(len+1); | |
578 | SendMsg(%s, (long)(const char*)wx2stc(key), (long)buf); | |
579 | mbuf.UngetWriteBuf(len); | |
580 | mbuf.AppendByte(0); | |
581 | return stc2wx(buf);''', | |
582 | ("Retrieve a 'property' value previously set with SetProperty,", | |
583 | "with '$()' variable replacement on returned buffer.")), | |
584 | ||
585 | 'GetPropertyInt' : (0, 0, 0, | |
586 | ("Retrieve a 'property' value previously set with SetProperty,", | |
587 | "interpreted as an int AFTER any '$()' variable replacement.")), | |
588 | ||
9e730a78 RD |
589 | |
590 | 'GetDocPointer' : | |
591 | (0, | |
592 | 'void* %s();', | |
593 | '''void* %s() { | |
594 | return (void*)SendMsg(%s);''', | |
595 | 0), | |
596 | ||
597 | 'SetDocPointer' : | |
598 | (0, | |
599 | 'void %s(void* docPointer);', | |
600 | '''void %s(void* docPointer) { | |
601 | SendMsg(%s, 0, (long)docPointer);''', | |
602 | 0), | |
603 | ||
604 | 'CreateDocument' : | |
605 | (0, | |
606 | 'void* %s();', | |
607 | '''void* %s() { | |
608 | return (void*)SendMsg(%s);''', | |
609 | 0), | |
610 | ||
611 | 'AddRefDocument' : | |
612 | (0, | |
613 | 'void %s(void* docPointer);', | |
614 | '''void %s(void* docPointer) { | |
615 | SendMsg(%s, 0, (long)docPointer);''', | |
616 | 0), | |
617 | ||
618 | 'ReleaseDocument' : | |
619 | (0, | |
620 | 'void %s(void* docPointer);', | |
621 | '''void %s(void* docPointer) { | |
622 | SendMsg(%s, 0, (long)docPointer);''', | |
623 | 0), | |
624 | ||
625 | 'SetCodePage' : | |
626 | (0, | |
627 | 0, | |
628 | '''void %s(int codePage) { | |
2b5f62a0 VZ |
629 | #if wxUSE_UNICODE |
630 | wxASSERT_MSG(codePage == wxSTC_CP_UTF8, | |
631 | wxT("Only wxSTC_CP_UTF8 may be used when wxUSE_UNICODE is on.")); | |
632 | #else | |
633 | wxASSERT_MSG(codePage != wxSTC_CP_UTF8, | |
634 | wxT("wxSTC_CP_UTF8 may not be used when wxUSE_UNICODE is off.")); | |
635 | #endif | |
9e730a78 RD |
636 | SendMsg(%s, codePage);''', |
637 | ("Set the code page used to interpret the bytes of the document as characters.",) ), | |
2b5f62a0 VZ |
638 | |
639 | ||
640 | 'GrabFocus' : (None, 0, 0, 0), | |
88a8b04e | 641 | |
c26dba42 | 642 | # Rename some that would otherwise hide the wxWindow methods |
2b5f62a0 VZ |
643 | 'SetFocus' : ('SetSTCFocus', 0, 0, 0), |
644 | 'GetFocus' : ('GetSTCFocus', 0, 0, 0), | |
88a8b04e RD |
645 | 'SetCursor' : ('SetSTCCursor', 0, 0, 0), |
646 | 'GetCursor' : ('GetSTCCursor', 0, 0, 0), | |
2b5f62a0 | 647 | |
9e730a78 RD |
648 | 'LoadLexerLibrary' : (None, 0,0,0), |
649 | ||
7e0c58e9 RD |
650 | 'SetPositionCache' : ('SetPositionCacheSize', 0, 0, 0), |
651 | 'GetPositionCache' : ('GetPositionCacheSize', 0, 0, 0), | |
652 | ||
9e730a78 | 653 | |
f97d84a6 RD |
654 | '' : ('', 0, 0, 0), |
655 | ||
656 | } | |
657 | ||
658 | #---------------------------------------------------------------------------- | |
659 | ||
f2ccce28 | 660 | def processIface(iface, h_tmplt, cpp_tmplt, h_dest, cpp_dest, docstr_dest): |
f97d84a6 RD |
661 | curDocStrings = [] |
662 | values = [] | |
663 | methods = [] | |
2b5f62a0 | 664 | cmds = [] |
f97d84a6 RD |
665 | |
666 | # parse iface file | |
667 | fi = FileInput(iface) | |
668 | for line in fi: | |
669 | line = line[:-1] | |
670 | if line[:2] == '##' or line == '': | |
671 | #curDocStrings = [] | |
672 | continue | |
673 | ||
674 | op = line[:4] | |
675 | if line[:2] == '# ': # a doc string | |
676 | curDocStrings.append(line[2:]) | |
677 | ||
678 | elif op == 'val ': | |
679 | parseVal(line[4:], values, curDocStrings) | |
680 | curDocStrings = [] | |
681 | ||
682 | elif op == 'fun ' or op == 'set ' or op == 'get ': | |
2b5f62a0 | 683 | parseFun(line[4:], methods, curDocStrings, cmds) |
f97d84a6 RD |
684 | curDocStrings = [] |
685 | ||
686 | elif op == 'cat ': | |
687 | if string.strip(line[4:]) == 'Deprecated': | |
688 | break # skip the rest of the file | |
689 | ||
690 | elif op == 'evt ': | |
691 | pass | |
692 | ||
a834585d RD |
693 | elif op == 'enu ': |
694 | pass | |
695 | ||
696 | elif op == 'lex ': | |
697 | pass | |
698 | ||
f97d84a6 RD |
699 | else: |
700 | print '***** Unknown line type: ', line | |
701 | ||
702 | ||
703 | # process templates | |
704 | data = {} | |
705 | data['VALUES'] = processVals(values) | |
2b5f62a0 | 706 | data['CMDS'] = processVals(cmds) |
f2ccce28 | 707 | defs, imps, docstrings = processMethods(methods) |
f97d84a6 RD |
708 | data['METHOD_DEFS'] = defs |
709 | data['METHOD_IMPS'] = imps | |
710 | ||
711 | # get template text | |
712 | h_text = open(h_tmplt).read() | |
713 | cpp_text = open(cpp_tmplt).read() | |
714 | ||
715 | # do the substitutions | |
716 | h_text = h_text % data | |
717 | cpp_text = cpp_text % data | |
718 | ||
719 | # write out destination files | |
720 | open(h_dest, 'w').write(h_text) | |
721 | open(cpp_dest, 'w').write(cpp_text) | |
f2ccce28 | 722 | open(docstr_dest, 'w').write(docstrings) |
f97d84a6 RD |
723 | |
724 | ||
725 | ||
726 | #---------------------------------------------------------------------------- | |
727 | ||
728 | def processVals(values): | |
729 | text = [] | |
730 | for name, value, docs in values: | |
731 | if docs: | |
732 | text.append('') | |
733 | for x in docs: | |
734 | text.append('// ' + x) | |
735 | text.append('#define %s %s' % (name, value)) | |
736 | return string.join(text, '\n') | |
737 | ||
738 | #---------------------------------------------------------------------------- | |
739 | ||
740 | def processMethods(methods): | |
741 | defs = [] | |
742 | imps = [] | |
f2ccce28 | 743 | dstr = [] |
f97d84a6 RD |
744 | |
745 | for retType, name, number, param1, param2, docs in methods: | |
746 | retType = retTypeMap.get(retType, retType) | |
747 | params = makeParamString(param1, param2) | |
748 | ||
749 | name, theDef, theImp, docs = checkMethodOverride(name, number, docs) | |
750 | ||
751 | if name is None: | |
752 | continue | |
753 | ||
f2ccce28 RD |
754 | # Build docstrings |
755 | st = 'DocStr(wxStyledTextCtrl::%s,\n' \ | |
756 | '"%s", "");\n' % (name, '\n'.join(docs)) | |
757 | dstr.append(st) | |
758 | ||
f97d84a6 RD |
759 | # Build the method definition for the .h file |
760 | if docs: | |
761 | defs.append('') | |
762 | for x in docs: | |
763 | defs.append(' // ' + x) | |
764 | if not theDef: | |
765 | theDef = ' %s %s(%s);' % (retType, name, params) | |
766 | defs.append(theDef) | |
767 | ||
768 | # Build the method implementation string | |
769 | if docs: | |
770 | imps.append('') | |
771 | for x in docs: | |
772 | imps.append('// ' + x) | |
773 | if not theImp: | |
774 | theImp = '%s wxStyledTextCtrl::%s(%s) {\n ' % (retType, name, params) | |
775 | ||
776 | if retType == 'wxColour': | |
777 | theImp = theImp + 'long c = ' | |
778 | elif retType != 'void': | |
779 | theImp = theImp + 'return ' | |
780 | theImp = theImp + 'SendMsg(%s, %s, %s)' % (number, | |
781 | makeArgString(param1), | |
782 | makeArgString(param2)) | |
783 | if retType == 'bool': | |
784 | theImp = theImp + ' != 0' | |
785 | if retType == 'wxColour': | |
786 | theImp = theImp + ';\n return wxColourFromLong(c)' | |
787 | ||
788 | theImp = theImp + ';\n}' | |
789 | imps.append(theImp) | |
790 | ||
791 | ||
f2ccce28 | 792 | return '\n'.join(defs), '\n'.join(imps), '\n'.join(dstr) |
f97d84a6 RD |
793 | |
794 | ||
795 | #---------------------------------------------------------------------------- | |
796 | ||
797 | def checkMethodOverride(name, number, docs): | |
798 | theDef = theImp = None | |
799 | if methodOverrideMap.has_key(name): | |
800 | item = methodOverrideMap[name] | |
801 | ||
c13219d6 RD |
802 | try: |
803 | if item[0] != 0: | |
804 | name = item[0] | |
805 | if item[1] != 0: | |
806 | theDef = ' ' + (item[1] % name) | |
807 | if item[2] != 0: | |
808 | theImp = item[2] % ('wxStyledTextCtrl::'+name, number) + '\n}' | |
809 | if item[3] != 0: | |
810 | docs = item[3] | |
811 | except: | |
812 | print "*************", name | |
813 | raise | |
f97d84a6 RD |
814 | |
815 | return name, theDef, theImp, docs | |
816 | ||
817 | #---------------------------------------------------------------------------- | |
818 | ||
819 | def makeArgString(param): | |
820 | if not param: | |
821 | return '0' | |
822 | ||
823 | typ, name = param | |
824 | ||
825 | if typ == 'string': | |
0c5b83b0 | 826 | return '(long)(const char*)wx2stc(%s)' % name |
f97d84a6 RD |
827 | if typ == 'colour': |
828 | return 'wxColourAsLong(%s)' % name | |
829 | ||
830 | return name | |
831 | ||
832 | #---------------------------------------------------------------------------- | |
833 | ||
834 | def makeParamString(param1, param2): | |
835 | def doOne(param): | |
836 | if param: | |
837 | aType = paramTypeMap.get(param[0], param[0]) | |
838 | return aType + ' ' + param[1] | |
839 | else: | |
840 | return '' | |
841 | ||
842 | st = doOne(param1) | |
843 | if st and param2: | |
844 | st = st + ', ' | |
845 | st = st + doOne(param2) | |
846 | return st | |
847 | ||
848 | ||
849 | #---------------------------------------------------------------------------- | |
850 | ||
851 | def parseVal(line, values, docs): | |
852 | name, val = string.split(line, '=') | |
853 | ||
854 | # remove prefixes such as SCI, etc. | |
855 | for old, new in valPrefixes: | |
856 | lo = len(old) | |
857 | if name[:lo] == old: | |
858 | if new is None: | |
859 | return | |
860 | name = new + name[lo:] | |
861 | ||
862 | # add it to the list | |
863 | values.append( ('wxSTC_' + name, val, docs) ) | |
864 | ||
865 | #---------------------------------------------------------------------------- | |
866 | ||
867 | funregex = re.compile(r'\s*([a-zA-Z0-9_]+)' # <ws>return type | |
868 | '\s+([a-zA-Z0-9_]+)=' # <ws>name= | |
869 | '([0-9]+)' # number | |
870 | '\(([ a-zA-Z0-9_]*),' # (param, | |
871 | '([ a-zA-Z0-9_]*)\)') # param) | |
872 | ||
873 | def parseFun(line, methods, docs, values): | |
874 | def parseParam(param): | |
875 | param = string.strip(param) | |
876 | if param == '': | |
877 | param = None | |
878 | else: | |
879 | param = tuple(string.split(param)) | |
880 | return param | |
881 | ||
882 | mo = funregex.match(line) | |
883 | if mo is None: | |
884 | print "***** Line doesn't match! : " + line | |
885 | ||
886 | retType, name, number, param1, param2 = mo.groups() | |
887 | ||
888 | param1 = parseParam(param1) | |
889 | param2 = parseParam(param2) | |
890 | ||
2b5f62a0 | 891 | # Special case. For the key command functions we want a value defined too |
f97d84a6 RD |
892 | num = string.atoi(number) |
893 | for v in cmdValues: | |
2b5f62a0 | 894 | if (type(v) == type(()) and v[0] <= num <= v[1]) or v == num: |
10ef30eb | 895 | parseVal('CMD_%s=%s' % (string.upper(name), number), values, docs) |
c26dba42 RD |
896 | |
897 | # if we are not also doing a function for CMD values, then | |
898 | # just return, otherwise fall through to the append blow. | |
899 | if not FUNC_FOR_CMD: | |
900 | return | |
901 | ||
f97d84a6 RD |
902 | methods.append( (retType, name, number, param1, param2, tuple(docs)) ) |
903 | ||
904 | ||
905 | #---------------------------------------------------------------------------- | |
906 | ||
907 | ||
908 | def main(args): | |
909 | # TODO: parse command line args to replace default input/output files??? | |
910 | ||
911 | # Now just do it | |
f2ccce28 | 912 | processIface(IFACE, H_TEMPLATE, CPP_TEMPLATE, H_DEST, CPP_DEST, DOCSTR_DEST) |
f97d84a6 RD |
913 | |
914 | ||
915 | ||
916 | if __name__ == '__main__': | |
917 | main(sys.argv) | |
918 | ||
919 | #---------------------------------------------------------------------------- | |
920 |