2005-10-13 07:08:18 -07:00
|
|
|
;; -*- scheme -*-
|
2005-06-22 11:20:32 -07:00
|
|
|
; object definitions ...
|
2005-10-13 07:08:18 -07:00
|
|
|
(define-object EditWindow
|
|
|
|
(in-module "Moo")
|
|
|
|
(parent "MooWindow")
|
|
|
|
(c-name "MooEditWindow")
|
|
|
|
(gtype-id "MOO_TYPE_EDIT_WINDOW")
|
2005-06-22 11:20:32 -07:00
|
|
|
)
|
|
|
|
|
2005-11-06 04:26:19 -08:00
|
|
|
(define-object Editor
|
|
|
|
(in-module "Moo")
|
|
|
|
(parent "GObject")
|
|
|
|
(c-name "MooEditor")
|
|
|
|
(gtype-id "MOO_TYPE_EDITOR")
|
|
|
|
)
|
|
|
|
|
2005-10-13 07:08:18 -07:00
|
|
|
(define-object Indenter
|
|
|
|
(in-module "Moo")
|
2005-06-22 11:20:32 -07:00
|
|
|
(parent "GObject")
|
2005-10-13 07:08:18 -07:00
|
|
|
(c-name "MooIndenter")
|
|
|
|
(gtype-id "MOO_TYPE_INDENTER")
|
2005-06-22 11:20:32 -07:00
|
|
|
)
|
|
|
|
|
2005-10-30 08:39:35 -08:00
|
|
|
(define-object LangMgr
|
2005-10-13 07:08:18 -07:00
|
|
|
(in-module "Moo")
|
|
|
|
(parent "GObject")
|
2005-10-30 08:39:35 -08:00
|
|
|
(c-name "MooLangMgr")
|
|
|
|
(gtype-id "MOO_TYPE_LANG_MGR")
|
2005-06-22 11:20:32 -07:00
|
|
|
)
|
|
|
|
|
2005-10-13 07:08:18 -07:00
|
|
|
(define-object TextBuffer
|
2005-06-22 11:20:32 -07:00
|
|
|
(in-module "Moo")
|
2005-10-13 07:08:18 -07:00
|
|
|
(parent "GtkTextBuffer")
|
|
|
|
(c-name "MooTextBuffer")
|
|
|
|
(gtype-id "MOO_TYPE_TEXT_BUFFER")
|
2005-06-22 11:20:32 -07:00
|
|
|
)
|
|
|
|
|
2005-10-13 07:08:18 -07:00
|
|
|
(define-object TextView
|
2005-06-22 11:20:32 -07:00
|
|
|
(in-module "Moo")
|
2005-10-13 07:08:18 -07:00
|
|
|
(parent "GtkTextView")
|
|
|
|
(c-name "MooTextView")
|
|
|
|
(gtype-id "MOO_TYPE_TEXT_VIEW")
|
2005-06-22 11:20:32 -07:00
|
|
|
)
|
|
|
|
|
2005-10-13 07:08:18 -07:00
|
|
|
(define-object LineView
|
2005-06-22 11:20:32 -07:00
|
|
|
(in-module "Moo")
|
2005-10-13 07:08:18 -07:00
|
|
|
(parent "MooTextView")
|
|
|
|
(c-name "MooLineView")
|
|
|
|
(gtype-id "MOO_TYPE_LINE_VIEW")
|
2005-06-22 11:20:32 -07:00
|
|
|
)
|
|
|
|
|
2005-10-13 07:08:18 -07:00
|
|
|
(define-object CmdView
|
2005-06-22 11:20:32 -07:00
|
|
|
(in-module "Moo")
|
2005-10-13 07:08:18 -07:00
|
|
|
(parent "MooLineView")
|
|
|
|
(c-name "MooCmdView")
|
|
|
|
(gtype-id "MOO_TYPE_CMD_VIEW")
|
|
|
|
)
|
|
|
|
|
|
|
|
(define-object Edit
|
|
|
|
(in-module "Moo")
|
|
|
|
(parent "MooTextView")
|
|
|
|
(c-name "MooEdit")
|
|
|
|
(gtype-id "MOO_TYPE_EDIT")
|
2005-06-22 11:20:32 -07:00
|
|
|
)
|
|
|
|
|
2005-11-05 20:49:00 -08:00
|
|
|
;; moo_plugin
|
|
|
|
(include "mooplugin.defs")
|