コード例 #1
0
 public Atk.TextRange GetBoundedRanges(Atk.TextRectangle rect, Atk.CoordType coordType, Atk.TextClipType xClipType, Atk.TextClipType yClipType)
 {
     return(textExpert.GetBoundedRanges(rect, coordType, xClipType, yClipType));
 }
コード例 #2
0
 public Atk.TextRange GetBoundedRanges(Atk.TextRectangle rect, Atk.CoordType coord_type, Atk.TextClipType x_clip_type, Atk.TextClipType y_clip_type)
 {
     Console.WriteLine("ATKTEXT: GetBoundedRanges");
     throw new NotImplementedException();
 }
コード例 #3
0
        public Atk.TextRange GetBoundedRanges(Atk.TextRectangle rect, Atk.CoordType coord_type, Atk.TextClipType x_clip_type, Atk.TextClipType y_clip_type)
        {
            IntPtr native_rect = GLib.Marshaller.StructureToPtrAlloc(rect);
            IntPtr raw_ret     = atk_text_get_bounded_ranges(Handle, native_rect, (int)coord_type, (int)x_clip_type, (int)y_clip_type);

            Atk.TextRange ret = Atk.TextRange.New(raw_ret);
            Marshal.FreeHGlobal(native_rect);
            return(ret);
        }
コード例 #4
0
 public Atk.TextRange GetBoundedRanges(Atk.TextRectangle rect, Atk.CoordType coordType, Atk.TextClipType xClipType, Atk.TextClipType yClipType)
 {
     //TODO
     Log.Warn("GetBoundedRanges not implemented");
     return(new Atk.TextRange());
 }