medit/moo/moopython/mooedit-pygtk.defs

68 lines
1.2 KiB
Plaintext
Raw Normal View History

;; -*- scheme -*-
2005-06-22 11:20:32 -07:00
; object definitions ...
(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")
)
(define-object Indenter
(in-module "Moo")
2005-06-22 11:20:32 -07:00
(parent "GObject")
(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
(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
)
(define-object TextBuffer
2005-06-22 11:20:32 -07:00
(in-module "Moo")
(parent "GtkTextBuffer")
(c-name "MooTextBuffer")
(gtype-id "MOO_TYPE_TEXT_BUFFER")
2005-06-22 11:20:32 -07:00
)
(define-object TextView
2005-06-22 11:20:32 -07:00
(in-module "Moo")
(parent "GtkTextView")
(c-name "MooTextView")
(gtype-id "MOO_TYPE_TEXT_VIEW")
2005-06-22 11:20:32 -07:00
)
(define-object LineView
2005-06-22 11:20:32 -07:00
(in-module "Moo")
(parent "MooTextView")
(c-name "MooLineView")
(gtype-id "MOO_TYPE_LINE_VIEW")
2005-06-22 11:20:32 -07:00
)
(define-object CmdView
2005-06-22 11:20:32 -07:00
(in-module "Moo")
(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
(include "mooplugin.defs")
2005-11-06 19:19:25 -08:00
(include "mooeditor.defs")