Sha256: 7a89184663fa0685fe2d677876f944ea6f2a4af3eceb26992068ff27c7cfbcde

Contents?: true

Size: 1.93 KB

Versions: 52

Compression:

Stored size: 1.93 KB

Contents

# Copyright (C) 2014  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

module Cairo
  class Context
    if method_defined?(:set_source_color)
      alias_method :set_source_color_raw, :set_source_color
      def set_source_color(color)
        if color.is_a?(Gdk::Color)
          set_source_gdk_color(color)
        else
          set_source_color_raw(color)
        end
      end
    else
      alias_method :set_source_color, :set_source_gdk_color
    end

    def source_color=(color)
      set_source_color(color)
      color
    end

    if method_defined?(:set_source_rgba)
      alias_method :set_source_rgba_raw, :set_source_rgba
      def set_source_rgba(rgba, g=nil, b=nil, a=nil)
        case rgba
        when Gdk::RGBA
          set_source_gdk_rgba(rgba)
        when Array
          set_source_rgba_raw(rgba)
        else
          r = rgba
          set_source_rgba_raw([r, g, b, a || 1.0])
        end
      end
    else
      alias_method :set_source_rgba, :set_source_gdk_rgba
    end

    def source_rgba=(rgba)
      set_source_rgba(rgba)
      rgba
    end

    alias_method :set_source_pixbuf_raw, :set_source_pixbuf
    def set_source_pixbuf(pixbuf, pixbuf_x=0, pixbuf_y=0)
      set_source_pixbuf_raw(pixbuf, pixbuf_x, pixbuf_y)
    end
  end
end

Version data entries

52 entries across 44 versions & 2 rubygems

Version Path
gdk3-3.1.3-x64-mingw32 lib/gdk3/cairo.rb
gdk3-3.1.3-x86-mingw32 lib/gdk3/cairo.rb
gdk3-3.1.3 lib/gdk3/cairo.rb
gdk3-3.1.2-x64-mingw32 lib/gdk3/cairo.rb
gdk3-3.1.2-x86-mingw32 lib/gdk3/cairo.rb
gdk3-3.1.2 lib/gdk3/cairo.rb
savant-echo-1.0.4 bin/packaging/vendor/ruby/2.2.0/gems/gdk3-3.1.0/lib/gdk3/cairo.rb
savant-echo-1.0.4 bin/alexa-0.1.2-osx/lib/vendor/ruby/2.2.0/gems/gdk3-3.1.0/lib/gdk3/cairo.rb
gdk3-3.1.1-x64-mingw32 lib/gdk3/cairo.rb
gdk3-3.1.1-x86-mingw32 lib/gdk3/cairo.rb
gdk3-3.1.1 lib/gdk3/cairo.rb
savant-echo-1.0.1 bin/packaging/vendor/ruby/2.2.0/gems/gdk3-3.1.0/lib/gdk3/cairo.rb
savant-echo-1.0.1 bin/alexa-0.1.2-osx/lib/vendor/ruby/2.2.0/gems/gdk3-3.1.0/lib/gdk3/cairo.rb
savant-echo-0.1.91 bin/packaging/vendor/ruby/2.2.0/gems/gdk3-3.1.0/lib/gdk3/cairo.rb
savant-echo-0.1.91 bin/alexa-0.1.2-osx/lib/vendor/ruby/2.2.0/gems/gdk3-3.1.0/lib/gdk3/cairo.rb
savant-echo-0.1.9 bin/packaging/vendor/ruby/2.2.0/gems/gdk3-3.1.0/lib/gdk3/cairo.rb
savant-echo-0.1.9 bin/alexa-0.1.2-osx/lib/vendor/ruby/2.2.0/gems/gdk3-3.1.0/lib/gdk3/cairo.rb
savant-echo-0.1.6 bin/alexa-0.1.2-osx/lib/vendor/ruby/2.2.0/gems/gdk3-3.1.0/lib/gdk3/cairo.rb
savant-echo-0.1.6 bin/packaging/vendor/ruby/2.2.0/gems/gdk3-3.1.0/lib/gdk3/cairo.rb
savant-echo-0.1.5 bin/alexa-0.1.2-osx/lib/vendor/ruby/2.2.0/gems/gdk3-3.1.0/lib/gdk3/cairo.rb