10#ifndef SCINTILLAWIDGET_H
11#define SCINTILLAWIDGET_H
19#define SCINTILLA(obj) G_TYPE_CHECK_INSTANCE_CAST (obj, scintilla_get_type (), ScintillaObject)
20#define SCINTILLA_CLASS(klass) G_TYPE_CHECK_CLASS_CAST (klass, scintilla_get_type (), ScintillaClass)
21#define IS_SCINTILLA(obj) G_TYPE_CHECK_INSTANCE_TYPE (obj, scintilla_get_type ())
23#define SCINTILLA_TYPE_OBJECT (scintilla_object_get_type())
24#define SCINTILLA_OBJECT(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), SCINTILLA_TYPE_OBJECT, ScintillaObject))
25#define SCINTILLA_IS_OBJECT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SCINTILLA_TYPE_OBJECT))
26#define SCINTILLA_OBJECT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), SCINTILLA_TYPE_OBJECT, ScintillaObjectClass))
27#define SCINTILLA_IS_OBJECT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), SCINTILLA_TYPE_OBJECT))
28#define SCINTILLA_OBJECT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), SCINTILLA_TYPE_OBJECT, ScintillaObjectClass))
30typedef struct _ScintillaObject ScintillaObject;
31typedef struct _ScintillaClass ScintillaObjectClass;
33struct _ScintillaObject {
38struct _ScintillaClass {
39 GtkContainerClass parent_class;
41 void (*
command) (ScintillaObject *
sci,
int cmd, GtkWidget *window);
51#define SCINTILLA_TYPE_NOTIFICATION (scnotification_get_type())
55typedef struct _ScintillaClass ScintillaClass;
64#define SCINTILLA_NOTIFY "sci-notify"
GType scnotification_get_type(void)
GtkWidget * scintilla_object_new()
void scintilla_set_id(ScintillaObject *sci, uptr_t id)
GType scintilla_object_get_type()
gintptr scintilla_object_send_message(ScintillaObject *sci, unsigned int iMessage, uptr_t wParam, sptr_t lParam)
sptr_t scintilla_send_message(ScintillaObject *sci, unsigned int iMessage, uptr_t wParam, sptr_t lParam)
GType scintilla_get_type()
GtkWidget * scintilla_new()
void scintilla_release_resources(void)