Module: Pango

Extended by:
GLib::Deprecatable
Defined in:
lib/pango/color.rb,
lib/pango.rb,
lib/pango/layout.rb,
lib/pango/loader.rb,
lib/pango/markup.rb,
lib/pango/matrix.rb,
lib/pango/version.rb,
lib/pango/language.rb,
lib/pango/attr-type.rb,
lib/pango/rectangle.rb,
lib/pango/deprecated.rb,
lib/pango/cairo-loader.rb,
lib/pango/font-description.rb,
ext/pango/rb-pango.c

Overview

Copyright © 2017 Ruby-GNOME2 Project Team

This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

Defined Under Namespace

Modules: Scale, Version Classes: AttrScale, AttrType, AttrUnderline, CairoLoader, Color, Context, FontDescription, Gravity, Language, Layout, Loader, Matrix, Rectangle

Constant Summary collapse

LOG_DOMAIN =
"Pango"

Class Method Summary collapse

Class Method Details

.parse_markup(markup_text, accel_marker = nil) ⇒ Object



20
21
22
23
24
25
26
27
28
29
30
# File 'lib/pango/markup.rb', line 20

def parse_markup(markup_text, accel_marker=nil)
  accel_marker ||= 0
  success, attr_list, text, accel_char =
    parse_markup_raw(markup_text,
                     markup_text.bytesize,
                     accel_marker)
  return nil unless success

  accel_char = nil if accel_char.empty?
  [attr_list, text, accel_char]
end

.parse_markup_rawObject



19
# File 'lib/pango/markup.rb', line 19

alias_method :parse_markup_raw, :parse_markup