Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gtk2::sourceview2::buffer(3pm) [debian man page]

Gtk2::SourceView2::Buffer(3pm)				User Contributed Perl Documentation			    Gtk2::SourceView2::Buffer(3pm)

NAME
Gtk2::SourceView2::Buffer HIERARCHY
Glib::Object +----Gtk2::TextBuffer +----Gtk2::SourceView2::Buffer METHODS
buffer = Gtk2::SourceView2::Buffer->new ($table) o $table (Gtk2::TextTagTable or undef) buffer = Gtk2::SourceView2::Buffer->new_with_language ($language) o $language (Gtk2::SourceView2::Language) boolean = $buffer->backward_iter_to_source_mark ($iter, $category) o $iter (Gtk2::TextIter) o $category (string or undef) $buffer->begin_not_undoable_action boolean = $buffer->can_redo boolean = $buffer->can_undo mark = $buffer->create_source_mark ($name, $category, $where) o $name (string or undef) o $category (string) o $where (Gtk2::TextIter) $buffer->end_not_undoable_action $buffer->ensure_highlight ($start, $end) o $start (Gtk2::TextIter) o $end (Gtk2::TextIter) boolean = $buffer->forward_iter_to_source_mark ($iter, $category) o $iter (Gtk2::TextIter) o $category (string or undef) boolean = $buffer->get_highlight_matching_brackets $buffer->set_highlight_matching_brackets ($highlight) o $highlight (boolean) boolean = $buffer->get_highlight_syntax $buffer->set_highlight_syntax ($highlight) o $highlight (boolean) language or undef = $buffer->get_language $buffer->set_language ($language) o $language (Gtk2::SourceView2::Language or undef) integer = $buffer->get_max_undo_levels $buffer->set_max_undo_levels ($max_undo_levels) o $max_undo_levels (integer) $buffer->redo $buffer->remove_source_marks ($start, $end, $category) o $start (Gtk2::TextIter) o $end (Gtk2::TextIter) o $category (string or undef) $buffer->get_source_marks_at_iter ($iter, $category) o $iter (Gtk2::TextIter) o $category (string or undef) $buffer->get_source_marks_at_line ($line, $category) o $line (integer) o $category (string or undef) stylescheme or undef = $buffer->get_style_scheme $buffer->set_style_scheme ($scheme) o $scheme (Gtk2::SourceView2::StyleScheme) $buffer->undo PROPERTIES
'can-redo' (boolean : default false : readable) Whether Redo operation is possible 'can-undo' (boolean : default false : readable) Whether Undo operation is possible 'highlight-matching-brackets' (boolean : default true : readable / writable) Whether to highlight matching brackets 'highlight-syntax' (boolean : default true : readable / writable) Whether to highlight syntax in the buffer 'language' (Gtk2::SourceView2::Language : default undef : readable / writable) Language object to get highlighting patterns from 'max-undo-levels' (integer : default 1000 : readable / writable) Number of undo levels for the buffer 'style-scheme' (Gtk2::SourceView2::StyleScheme : default undef : readable / writable) Style scheme 'undo-manager' (Glib::Object::_Unregistered::GtkSourceUndoManager : default undef : readable / writable / construct) The buffer undo manager SIGNALS
highlight-updated (Gtk2::SourceView2::Buffer, Gtk2::TextIter, Gtk2::TextIter) source-mark-updated (Gtk2::SourceView2::Buffer, Gtk2::TextMark) undo (Gtk2::SourceView2::Buffer) redo (Gtk2::SourceView2::Buffer) SEE ALSO
Gtk2::SourceView2, Glib::Object, Gtk2::TextBuffer COPYRIGHT
Copyright (C) 2009 by Emmanuel Rodriguez perl v5.14.2 2011-11-16 Gtk2::SourceView2::Buffer(3pm)

Check Out this Related Man Page

Gtk2::SourceView2::PrintCompositor(3pm) 		User Contributed Perl Documentation		   Gtk2::SourceView2::PrintCompositor(3pm)

NAME
Gtk2::SourceView2::PrintCompositor HIERARCHY
Glib::Object +----Gtk2::SourceView2::PrintCompositor METHODS
printcompositor = Gtk2::SourceView2::PrintCompositor->new ($buffer) o $buffer (Gtk2::SourceView2::Buffer) printcompositor = Gtk2::SourceView2::PrintCompositor->new_from_view ($view) o $view (Gtk2::SourceView2::View) string = $compositor->get_body_font_name $compositor->set_body_font_name ($font_name) o $font_name (string) double = $compositor->get_bottom_margin ($unit) o $unit (Gtk2::Unit) $compositor->set_bottom_margin ($margin, $unit) o $margin (double) o $unit (Gtk2::Unit) buffer = $compositor->get_buffer $compositor->draw_page ($context, $page_nr) o $context (Gtk2::PrintContext) o $page_nr (integer) string = $compositor->get_footer_font_name $compositor->set_footer_font_name ($font_name) o $font_name (string or undef) $compositor->set_footer_format ($separator, $left, $center, $right) o $separator (boolean) o $left (string or undef) o $center (string or undef) o $right (string or undef) string = $compositor->get_header_font_name $compositor->set_header_font_name ($font_name) o $font_name (string or undef) $compositor->set_header_format ($separator, $left, $center, $right) o $separator (boolean) o $left (string or undef) o $center (string or undef) o $right (string or undef) boolean = $compositor->get_highlight_syntax $compositor->set_highlight_syntax ($highlight) o $highlight (boolean) double = $compositor->get_left_margin ($unit) o $unit (Gtk2::Unit) $compositor->set_left_margin ($margin, $unit) o $margin (double) o $unit (Gtk2::Unit) string = $compositor->get_line_numbers_font_name $compositor->set_line_numbers_font_name ($font_name) o $font_name (string or undef) integer = $compositor->get_n_pages boolean = $compositor->paginate ($context) o $context (Gtk2::PrintContext) double = $compositor->get_pagination_progress boolean = $compositor->get_print_footer $compositor->set_print_footer ($print) o $print (boolean) boolean = $compositor->get_print_header $compositor->set_print_header ($print) o $print (boolean) integer = $compositor->get_print_line_numbers $compositor->set_print_line_numbers ($interval) o $interval (integer) double = $compositor->get_right_margin ($unit) o $unit (Gtk2::Unit) $compositor->set_right_margin ($margin, $unit) o $margin (double) o $unit (Gtk2::Unit) integer = $compositor->get_tab_width $compositor->set_tab_width ($width) o $width (integer) double = $compositor->get_top_margin ($unit) o $unit (Gtk2::Unit) $compositor->set_top_margin ($margin, $unit) o $margin (double) o $unit (Gtk2::Unit) wrapmode = $compositor->get_wrap_mode $compositor->set_wrap_mode ($wrap_mode) o $wrap_mode (Gtk2::WrapMode) PROPERTIES
'body-font-name' (string : default undef : readable / writable) Name of the font to use for the text body (e.g. "Monospace 10") 'buffer' (Gtk2::SourceView2::Buffer : default undef : readable / writable / construct-only) The GtkSourceBuffer object to print 'footer-font-name' (string : default undef : readable / writable) Name of the font to use for the page footer (e.g. "Monospace 10") 'header-font-name' (string : default undef : readable / writable) Name of the font to use for the page header (e.g. "Monospace 10") 'highlight-syntax' (boolean : default true : readable / writable) Whether to print the document with highlighted syntax 'line-numbers-font-name' (string : default undef : readable / writable) Name of the font to use for the line numbers (e.g. "Monospace 10") 'n-pages' (integer : default -1 : readable) The number of pages in the document (-1 means the document has not been completely paginated). 'print-footer' (boolean : default false : readable / writable) Whether to print a footer in each page 'print-header' (boolean : default false : readable / writable) Whether to print a header in each page 'print-line-numbers' (Glib::UInt : default 1 : readable / writable) Interval of printed line numbers (0 means no numbers) 'tab-width' (Glib::UInt : default 8 : readable / writable) Width of a tab character expressed in spaces 'wrap-mode' (Gtk2::WrapMode : default "none" : readable / writable) Whether to wrap lines never, at word boundaries, or at character boundaries. ENUMS AND FLAGS
enum Gtk2::Unit o 'pixel' / 'GTK_UNIT_PIXEL' o 'points' / 'GTK_UNIT_POINTS' o 'inch' / 'GTK_UNIT_INCH' o 'mm' / 'GTK_UNIT_MM' enum Gtk2::WrapMode o 'none' / 'GTK_WRAP_NONE' o 'char' / 'GTK_WRAP_CHAR' o 'word' / 'GTK_WRAP_WORD' o 'word-char' / 'GTK_WRAP_WORD_CHAR' SEE ALSO
Gtk2::SourceView2, Glib::Object COPYRIGHT
Copyright (C) 2009 by Emmanuel Rodriguez perl v5.14.2 2011-11-16 Gtk2::SourceView2::PrintCompositor(3pm)
Man Page