Exemplo n.º 1
0
        public void Init(PainterApp pa)
        {
            Tracing.StartMethodTrace();

            this.m_painter = pa;


            Tracing.EndMethodTrace();
        }
Exemplo n.º 2
0
		public void Init (PainterApp pa )
		{
			Tracing.StartMethodTrace();

			this.m_painter  = pa;
			

			Tracing.EndMethodTrace();
		}	
Exemplo n.º 3
0
        public static int GetPainter8Window()
        {
            int h = PainterApp.FindPainter8Window();

            if (h == 0)
            {
                throw new Errors.WindowNotFoundError(err_window_not_found);
            }
            return(h);
        }
Exemplo n.º 4
0
 public ConverterEngine(PainterApp pa)
 {
     Tracing.StartMethodTrace();
     this.Init(pa);
     Tracing.EndMethodTrace();
 }
Exemplo n.º 5
0
		public WaitOnDocumentCount( int desired_count, PainterApp app )
		{
			this.m_desired_count=desired_count;
			this.m_app = app;
			this.docs=null;
		}
Exemplo n.º 6
0
		public WaitForDialogToCloseObj( PainterApp app , int ab)
		{
			this.m_app = app;
			this.m_ab=ab;
		}
Exemplo n.º 7
0
		public WaitForDialogToAppearObj( PainterApp app , string t)
		{
			this.m_app = app;
			this.m_dialog_window_text =t;
			this.m_found_dialog=0;
		}
Exemplo n.º 8
0
 public WaitOnDocumentCount(int desired_count, PainterApp app)
 {
     this.m_desired_count = desired_count;
     this.m_app           = app;
     this.docs            = null;
 }
Exemplo n.º 9
0
 public WaitForDialogToCloseObj(PainterApp app, int ab)
 {
     this.m_app = app;
     this.m_ab  = ab;
 }
Exemplo n.º 10
0
 public WaitForDialogToAppearObj(PainterApp app, string t)
 {
     this.m_app = app;
     this.m_dialog_window_text = t;
     this.m_found_dialog       = 0;
 }
Exemplo n.º 11
0
 public PainterApp(Delegates.LogCallback logcb)
 {
     this.m_painter = PainterApp.GetPainter8Window();
     this.m_log_cb  = logcb;
 }
Exemplo n.º 12
0
		public ConverterEngine(PainterApp pa )
		{
			Tracing.StartMethodTrace();
			this.Init( pa );
			Tracing.EndMethodTrace();
		}