source: BMXNET_RPMS_dotNET_UTILITIES-BMX/branch/IHS BMX Framework/IndianHealthService.BMXNet.WinForm/Forms/RpmsLoginView.cs@ 1146

Last change on this file since 1146 was 1146, checked in by Sam Habiel, 13 years ago

Initial Import of BMX4

File size: 1016 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using IndianHealthService.BMXNet.WinForm.Configuration;
5using System.Windows.Forms;
6
7namespace IndianHealthService.BMXNet.WinForm.Forms
8{
9 internal interface RpmsLoginView
10 {
11 String Title { set; }
12 List<RpmsConnectionSpec> ConnectionSpecs { set; }
13
14 String AccessCode { get; }
15 String VerifyCode { get; }
16 bool UseWindowsAuthentication { get; set; }
17 bool EnableUseWindowsAuthentication { get; set; }
18 RpmsConnectionSpec ConnectionSpec { get; set; }
19 bool IsSwitchServerModeEnabled { get; set; }
20
21 event EventHandler ConnectionSpecSelected;
22 event EventHandler Ok;
23 event EventHandler Cancel;
24
25 void ResetAccessVerifyCodes();
26
27 void ShowView(IWin32Window anOwner);
28
29 void ShowWait();
30 void HideWait();
31
32 IWin32Window UiOwner { get; }
33 void CloseView();
34
35
36
37 }
38}
Note: See TracBrowser for help on using the repository browser.