manual nui merge 0.2.38
[platform/core/csapi/nui.git] / Tizen.NUI / src / internal / FixedRuler.cs
1 //------------------------------------------------------------------------------
2 // <auto-generated />
3 //
4 // This file was automatically generated by SWIG (http://www.swig.org).
5 // Version 3.0.9
6 //
7 // Do not make changes to this file unless you know what you are doing--modify
8 // the SWIG interface file instead.
9 //------------------------------------------------------------------------------
10
11 namespace Tizen.NUI {
12
13     public class FixedRuler : Ruler {
14   private global::System.Runtime.InteropServices.HandleRef swigCPtr;
15
16   internal FixedRuler(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.FixedRuler_SWIGUpcast(cPtr), cMemoryOwn) {
17     swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
18   }
19
20   internal static global::System.Runtime.InteropServices.HandleRef getCPtr(FixedRuler obj) {
21     return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
22   }
23
24   public override void Dispose() {
25     if (!Window.IsInstalled()) {
26       DisposeQueue.Instance.Add(this);
27       return;
28     }
29
30     lock(this) {
31       if (swigCPtr.Handle != global::System.IntPtr.Zero) {
32         if (swigCMemOwn) {
33           swigCMemOwn = false;
34           NDalicPINVOKE.delete_FixedRuler(swigCPtr);
35         }
36         swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
37       }
38       global::System.GC.SuppressFinalize(this);
39       base.Dispose();
40     }
41   }
42
43   public FixedRuler(float spacing) : this(NDalicPINVOKE.new_FixedRuler__SWIG_0(spacing), true) {
44     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
45   }
46
47   public FixedRuler() : this(NDalicPINVOKE.new_FixedRuler__SWIG_1(), true) {
48     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
49   }
50
51   public override float Snap(float x, float bias) {
52     float ret = NDalicPINVOKE.FixedRuler_Snap(swigCPtr, x, bias);
53     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
54     return ret;
55   }
56
57   public override float GetPositionFromPage(uint page, out uint volume, bool wrap) {
58     float ret = NDalicPINVOKE.FixedRuler_GetPositionFromPage(swigCPtr, page, out volume, wrap);
59     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
60     return ret;
61   }
62
63   public override uint GetPageFromPosition(float position, bool wrap) {
64     uint ret = NDalicPINVOKE.FixedRuler_GetPageFromPosition(swigCPtr, position, wrap);
65     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
66     return ret;
67   }
68
69   public override uint GetTotalPages() {
70     uint ret = NDalicPINVOKE.FixedRuler_GetTotalPages(swigCPtr);
71     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
72     return ret;
73   }
74
75 }
76
77 }