Exemplo n.º 1
0
        public void Init(XaraApp app)
        {
            Tracing.StartMethodTrace();

            this.m_xarahwnd = app;


            Tracing.EndMethodTrace();
        }
Exemplo n.º 2
0
        public static int GetXaraAppHWND()
        {
            // SAVEEN: Why is this needed?
            int h = XaraApp.FindXaraAppHWND();

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