]>
Commit | Line | Data |
---|---|---|
9e96e16f | 1 | /* Scintilla source code edit control */ |
65ec6247 RD |
2 | /** @file ScintillaWidget.h |
3 | ** Definition of Scintilla widget for GTK+. | |
4 | ** Only needed by GTK+ code but is harmless on other platforms. | |
5 | **/ | |
9e96e16f RD |
6 | /* Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org> |
7 | * The License.txt file describes the conditions under which this software may be distributed. */ | |
d134f170 RD |
8 | |
9 | #ifndef SCINTILLAWIDGET_H | |
10 | #define SCINTILLAWIDGET_H | |
11 | ||
1dcf666d | 12 | #if defined(GTK) |
d134f170 RD |
13 | |
14 | #ifdef __cplusplus | |
15 | extern "C" { | |
16 | #endif | |
17 | ||
1dcf666d | 18 | #define SCINTILLA(obj) G_TYPE_CHECK_INSTANCE_CAST (obj, scintilla_get_type (), ScintillaObject) |
d134f170 RD |
19 | #define SCINTILLA_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, scintilla_get_type (), ScintillaClass) |
20 | #define IS_SCINTILLA(obj) GTK_CHECK_TYPE (obj, scintilla_get_type ()) | |
21 | ||
22 | typedef struct _ScintillaObject ScintillaObject; | |
23 | typedef struct _ScintillaClass ScintillaClass; | |
24 | ||
25 | struct _ScintillaObject { | |
65ec6247 | 26 | GtkContainer cont; |
d134f170 RD |
27 | void *pscin; |
28 | }; | |
29 | ||
30 | struct _ScintillaClass { | |
a834585d | 31 | GtkContainerClass parent_class; |
d134f170 RD |
32 | |
33 | void (* command) (ScintillaObject *ttt); | |
34 | void (* notify) (ScintillaObject *ttt); | |
35 | }; | |
36 | ||
b8193d80 | 37 | GType scintilla_get_type (void); |
d134f170 | 38 | GtkWidget* scintilla_new (void); |
1e9bafca | 39 | void scintilla_set_id (ScintillaObject *sci, uptr_t id); |
9e730a78 RD |
40 | sptr_t scintilla_send_message (ScintillaObject *sci,unsigned int iMessage, uptr_t wParam, sptr_t lParam); |
41 | void scintilla_release_resources(void); | |
d134f170 | 42 | |
a834585d | 43 | #define SCINTILLA_NOTIFY "sci-notify" |
a834585d | 44 | |
d134f170 RD |
45 | #ifdef __cplusplus |
46 | } | |
47 | #endif | |
48 | ||
49 | #endif | |
50 | ||
51 | #endif |