Example #1
0
        public static OutlookApplication CreateInstance(OutlookListener listener)
        {
            if (listener == null)
                throw new ArgumentNullException("listener");

            return new OutlookApplication(listener);
        }
Example #2
0
        public static OutlookApplication CreateInstance(OutlookListener listener)
        {
            if (listener == null)
            {
                throw new ArgumentNullException("listener");
            }

            return(new OutlookApplication(listener));
        }
Example #3
0
 private UIController(AddinModule addinModule, OutlookListener outlookListener, SyncApplication app, 
     FormSyncItem syncForm, FormSyncOptions syncOprionsForm,	 FormSyncConflictResolution syncConflictResForm)
 {
     _addinModule = addinModule;
     _outlookListener = outlookListener;
     _syncApp = app;
     _syncItemForm = syncForm;
     _syncOptionsForm = syncOprionsForm;
     _syncConflictResForm = syncConflictResForm;
 }
Example #4
0
 public OutlookRecipient(OutlookListener listener, Outlook.Recipient oRecipient)
     : base(listener)
 {
     _oRecipient = oRecipient;
 }
Example #5
0
 public OutlookException(OutlookListener listener, Outlook.Exception oException)
     : base(listener)
 {
     _oException = oException;
 }
Example #6
0
 public OutlookFolder(OutlookListener outlookListener, Outlook.MAPIFolder oFolder)
     : base(outlookListener)
 {
     _oFolder = oFolder;
 }
Example #7
0
 public OutlookFolder(OutlookListener outlookListener, Outlook.MAPIFolder oFolder)
     : base(outlookListener)
 {
     _oFolder = oFolder;
 }
Example #8
0
 public OutlookRecurrencePattern(OutlookListener outlookListener, Outlook.RecurrencePattern oRecurrPattern)
     : base(outlookListener)
 {
     _oRecurrPattern = oRecurrPattern;
 }
Example #9
0
 public OutlookItemFactory(OutlookListener listener)
 {
     _listener = listener;
 }
Example #10
0
 private OutlookApplication(OutlookListener listener)
     : base(listener)
 {
 }
Example #11
0
 private OutlookApplication(OutlookListener listener)
     : base(listener)
 {
 }
 public OutlookRecurrencePattern(OutlookListener outlookListener, Outlook.RecurrencePattern oRecurrPattern)
     : base(outlookListener)
 {
     _oRecurrPattern = oRecurrPattern;
 }
Example #13
0
 public OutlookAppointment(OutlookListener outlookListener, Outlook._AppointmentItem oAppItem)
     : base(outlookListener)
 {
     _oAppItem = oAppItem;
 }
Example #14
0
 public OutlookException(OutlookListener listener, Outlook.Exception oException)
     : base(listener)
 {
     _oException = oException;
 }
Example #15
0
 public OutlookItem(OutlookListener outlookListener)
 {
     _outlookListener = outlookListener;
 }
Example #16
0
        //this method must call in Addin thread
        public static UIController CreateInstance(AddinModule addinModule)
        {
            if (addinModule == null)
                throw new ArgumentNullException("addinModule");

            if (_instance != null)
                return _instance;

            //Set LogFilePath
            DebugAssistant.LogFilePath = ApplicationConfig.LogPathFile;

            FormSyncOptions syncOptionsForm = new FormSyncOptions();
            FormSyncItem syncForm= new FormSyncItem();
            FormSyncConflictResolution syncConflictResForm = new FormSyncConflictResolution();
            OutlookListener listener = new OutlookListener(addinModule);
            IntPtr handle = listener.Handle;
            OutlookApplication outlookApplication = OutlookApplication.CreateInstance(listener);
            SyncApplication syncApp = SyncApplication.CreateInstance(outlookApplication);

            if (syncApp == null)
                throw new NullReferenceException("syncApp");

            UIController retVal = new UIController(addinModule, listener, syncApp, syncForm,
                                                   syncOptionsForm, syncConflictResForm);

            if (syncConflictResForm != null)
            {
                //Force create control
                handle = syncConflictResForm.Handle;
            }

            if (syncForm != null)
            {
                //Subscribe events SyncApp(Model)
                retVal.HookEvents(syncApp);
                //Sunscribe events syncForm(View)
                retVal.HookEvents(syncForm);
                //Force create control
                handle = syncForm.Handle;

                //TODO: Нужно прочитать историю последней синхронизации и установить статус прошлой синхронизации
                syncForm.AddSyncMenuItem(Outlook.OlItemType.olAppointmentItem);
                syncForm.AddSyncMenuItem(Outlook.OlItemType.olContactItem);
                syncForm.AddSyncMenuItem(Outlook.OlItemType.olTaskItem);
                syncForm.AddSyncMenuItem(Outlook.OlItemType.olNoteItem);
                //Appointment
                SyncItemInfo status = new SyncItemInfo();
                syncAppointmentSetting apppointSetting = syncApp.CurrentSettings.CurrentSyncAppointentSetting;
                if(apppointSetting != null)
                {
                    status.Status = (eSyncStatus)apppointSetting.lastSyncStatus;
                    if (status.Status != eSyncStatus.Unknow)
                    {
                        status.LastSyncDate = new DateTime(TimeSpan.TicksPerSecond * apppointSetting.lastSyncDate);
                    }

                    if(status.Status == eSyncStatus.Ok || status.Status == eSyncStatus.Unknow)
                    {
                        status.Status = eSyncStatus.Ready;
                    }
                }

                syncForm.ThrSetSyncItemStatus(Outlook.OlItemType.olAppointmentItem, status);
                //Contact
                //Task
                status = new SyncItemInfo();
                status.Status = eSyncStatus.Ready;
                syncForm.ThrSetSyncItemStatus(Outlook.OlItemType.olTaskItem, status);
                //Note
                status = new SyncItemInfo();
                status.Status = eSyncStatus.Unknow;
                syncForm.ThrSetSyncItemStatus(Outlook.OlItemType.olContactItem, status);

                syncForm.ThrSetSyncItemStatus(Outlook.OlItemType.olNoteItem, status);

                retVal._syncItemForm = syncForm;

            }

            if (syncOptionsForm != null)
            {
                //Force create control
                handle = syncOptionsForm.Handle;
                //Sunscribe events syncOptionsForm(View)
                retVal.HookEvents(syncOptionsForm);
            }

            _instance = retVal;

            return retVal;
        }
Example #17
0
 public OutlookRecipient(OutlookListener listener, Outlook.Recipient oRecipient)
     : base(listener)
 {
     _oRecipient = oRecipient;
 }
Example #18
0
 public OutlookAppointment(OutlookListener outlookListener, Outlook._AppointmentItem oAppItem)
     : base(outlookListener)
 {
     _oAppItem = oAppItem;
 }