[614] | 1 | using System;
|
---|
| 2 | using System.Drawing;
|
---|
| 3 | using System.Collections;
|
---|
| 4 | using System.ComponentModel;
|
---|
| 5 | using System.Windows.Forms;
|
---|
| 6 |
|
---|
| 7 | namespace IndianHealthService.ClinicalScheduling
|
---|
| 8 | {
|
---|
| 9 | /// <summary>
|
---|
[1143] | 10 | /// Program loading splash screen. Notice the numerous remote methods intended
|
---|
| 11 | /// to mickey mouse the form from another thread.
|
---|
| 12 | ///
|
---|
| 13 | /// I don't know of a better way of doing this right now.
|
---|
[614] | 14 | /// </summary>
|
---|
| 15 | public class DSplash : System.Windows.Forms.Form
|
---|
| 16 | {
|
---|
| 17 | private System.Windows.Forms.Label label1;
|
---|
| 18 | private System.Windows.Forms.LinkLabel lnkMail;
|
---|
| 19 | private System.Windows.Forms.Label lblStatus;
|
---|
[1050] | 20 | private Label lblVersion;
|
---|
| 21 | private Label label2;
|
---|
[1051] | 22 | private ProgressBar progressBar1;
|
---|
[614] | 23 | /// <summary>
|
---|
| 24 | /// Required designer variable.
|
---|
| 25 | /// </summary>
|
---|
| 26 | private System.ComponentModel.Container components = null;
|
---|
| 27 |
|
---|
| 28 | public DSplash()
|
---|
| 29 | {
|
---|
| 30 | //
|
---|
| 31 | // Required for Windows Form Designer support
|
---|
| 32 | //
|
---|
| 33 | InitializeComponent();
|
---|
| 34 |
|
---|
| 35 | //
|
---|
| 36 | // TODO: Add any constructor code after InitializeComponent call
|
---|
| 37 | //
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | /// <summary>
|
---|
| 41 | /// Clean up any resources being used.
|
---|
| 42 | /// </summary>
|
---|
| 43 | protected override void Dispose( bool disposing )
|
---|
| 44 | {
|
---|
| 45 | if( disposing )
|
---|
| 46 | {
|
---|
| 47 | if(components != null)
|
---|
| 48 | {
|
---|
| 49 | components.Dispose();
|
---|
| 50 | }
|
---|
| 51 | }
|
---|
| 52 | base.Dispose( disposing );
|
---|
| 53 | }
|
---|
| 54 |
|
---|
| 55 | #region Windows Form Designer generated code
|
---|
| 56 | /// <summary>
|
---|
| 57 | /// Required method for Designer support - do not modify
|
---|
| 58 | /// the contents of this method with the code editor.
|
---|
| 59 | /// </summary>
|
---|
| 60 | private void InitializeComponent()
|
---|
| 61 | {
|
---|
[1050] | 62 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DSplash));
|
---|
[627] | 63 | this.label1 = new System.Windows.Forms.Label();
|
---|
| 64 | this.lnkMail = new System.Windows.Forms.LinkLabel();
|
---|
| 65 | this.lblStatus = new System.Windows.Forms.Label();
|
---|
[1050] | 66 | this.lblVersion = new System.Windows.Forms.Label();
|
---|
| 67 | this.label2 = new System.Windows.Forms.Label();
|
---|
[1051] | 68 | this.progressBar1 = new System.Windows.Forms.ProgressBar();
|
---|
[627] | 69 | this.SuspendLayout();
|
---|
| 70 | //
|
---|
| 71 | // label1
|
---|
| 72 | //
|
---|
| 73 | this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
---|
[1050] | 74 | this.label1.Location = new System.Drawing.Point(12, 67);
|
---|
[627] | 75 | this.label1.Name = "label1";
|
---|
[1050] | 76 | this.label1.Size = new System.Drawing.Size(464, 40);
|
---|
[627] | 77 | this.label1.TabIndex = 0;
|
---|
[1050] | 78 | this.label1.Text = "Clinical Scheduling";
|
---|
[627] | 79 | this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
---|
| 80 | //
|
---|
| 81 | // lnkMail
|
---|
| 82 | //
|
---|
| 83 | this.lnkMail.Location = new System.Drawing.Point(0, 0);
|
---|
| 84 | this.lnkMail.Name = "lnkMail";
|
---|
| 85 | this.lnkMail.Size = new System.Drawing.Size(100, 23);
|
---|
| 86 | this.lnkMail.TabIndex = 4;
|
---|
| 87 | //
|
---|
| 88 | // lblStatus
|
---|
| 89 | //
|
---|
| 90 | this.lblStatus.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
---|
[1050] | 91 | this.lblStatus.Location = new System.Drawing.Point(80, 159);
|
---|
[627] | 92 | this.lblStatus.Name = "lblStatus";
|
---|
| 93 | this.lblStatus.Size = new System.Drawing.Size(328, 16);
|
---|
| 94 | this.lblStatus.TabIndex = 3;
|
---|
| 95 | this.lblStatus.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
---|
| 96 | //
|
---|
[1050] | 97 | // lblVersion
|
---|
| 98 | //
|
---|
| 99 | this.lblVersion.AutoSize = true;
|
---|
| 100 | this.lblVersion.Location = new System.Drawing.Point(210, 117);
|
---|
| 101 | this.lblVersion.Name = "lblVersion";
|
---|
| 102 | this.lblVersion.Size = new System.Drawing.Size(52, 13);
|
---|
| 103 | this.lblVersion.TabIndex = 5;
|
---|
| 104 | this.lblVersion.Text = "lblVersion";
|
---|
| 105 | this.lblVersion.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
---|
| 106 | //
|
---|
| 107 | // label2
|
---|
| 108 | //
|
---|
| 109 | this.label2.AutoSize = true;
|
---|
| 110 | this.label2.Font = new System.Drawing.Font("Book Antiqua", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
---|
| 111 | this.label2.Location = new System.Drawing.Point(180, 21);
|
---|
| 112 | this.label2.Name = "label2";
|
---|
| 113 | this.label2.Size = new System.Drawing.Size(130, 46);
|
---|
| 114 | this.label2.TabIndex = 6;
|
---|
| 115 | this.label2.Text = "VISTA";
|
---|
| 116 | //
|
---|
[1051] | 117 | // progressBar1
|
---|
| 118 | //
|
---|
| 119 | this.progressBar1.Location = new System.Drawing.Point(18, 207);
|
---|
| 120 | this.progressBar1.Name = "progressBar1";
|
---|
| 121 | this.progressBar1.Size = new System.Drawing.Size(458, 14);
|
---|
| 122 | this.progressBar1.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
|
---|
| 123 | this.progressBar1.TabIndex = 7;
|
---|
| 124 | //
|
---|
[627] | 125 | // DSplash
|
---|
| 126 | //
|
---|
| 127 | this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
|
---|
[1050] | 128 | this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
|
---|
[627] | 129 | this.ClientSize = new System.Drawing.Size(488, 252);
|
---|
| 130 | this.ControlBox = false;
|
---|
[1051] | 131 | this.Controls.Add(this.progressBar1);
|
---|
[1050] | 132 | this.Controls.Add(this.label2);
|
---|
| 133 | this.Controls.Add(this.lblVersion);
|
---|
[627] | 134 | this.Controls.Add(this.lblStatus);
|
---|
| 135 | this.Controls.Add(this.lnkMail);
|
---|
| 136 | this.Controls.Add(this.label1);
|
---|
[1050] | 137 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
---|
| 138 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
---|
[627] | 139 | this.Name = "DSplash";
|
---|
| 140 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
---|
| 141 | this.Text = "Clinical Scheduling";
|
---|
| 142 | this.Load += new System.EventHandler(this.DSplash_Load);
|
---|
| 143 | this.ResumeLayout(false);
|
---|
[1050] | 144 | this.PerformLayout();
|
---|
[614] | 145 |
|
---|
| 146 | }
|
---|
| 147 | #endregion
|
---|
| 148 |
|
---|
[1050] | 149 | public delegate void dSetStatus(string sStatus);
|
---|
| 150 | public delegate void dAny();
|
---|
[1051] | 151 | public delegate void dProgressBarSet(int number);
|
---|
[1143] | 152 | public delegate DialogResult dMessageBox(IWin32Window owner, string message);
|
---|
| 153 | public delegate DialogResult dMessageBox2(IWin32Window owner, string message, string caption, MessageBoxButtons btns);
|
---|
[1050] | 154 |
|
---|
| 155 | public void SetStatus(string sStatus)
|
---|
[614] | 156 | {
|
---|
[1050] | 157 | if (this.InvokeRequired == true)
|
---|
| 158 | {
|
---|
| 159 | dSetStatus d = new dSetStatus(SetStatus);
|
---|
| 160 | this.Invoke(d, new object[] { sStatus });
|
---|
| 161 | return;
|
---|
| 162 | }
|
---|
| 163 |
|
---|
| 164 | this.lblStatus.Text = sStatus;
|
---|
[614] | 165 | }
|
---|
| 166 |
|
---|
| 167 | private void DSplash_Load(object sender, System.EventArgs e)
|
---|
| 168 | {
|
---|
[1050] | 169 | this.lblVersion.Text = "Version " + Application.ProductVersion;
|
---|
[614] | 170 | }
|
---|
| 171 |
|
---|
[1143] | 172 | public DialogResult RemoteMsgBox(string msg)
|
---|
| 173 | {
|
---|
| 174 | dMessageBox d = new dMessageBox(MessageBox.Show);
|
---|
| 175 | return (DialogResult)this.Invoke(d, this, msg);
|
---|
| 176 | }
|
---|
| 177 |
|
---|
| 178 | public DialogResult RemoteMsgBox(string msg, string caption, MessageBoxButtons btns)
|
---|
| 179 | {
|
---|
| 180 | dMessageBox2 d = new dMessageBox2(MessageBox.Show);
|
---|
| 181 | return (DialogResult)this.Invoke(d, this, msg, caption, btns);
|
---|
| 182 | }
|
---|
| 183 |
|
---|
[1050] | 184 | public void RemoteClose()
|
---|
| 185 | {
|
---|
| 186 | dAny d = new dAny(this.Close);
|
---|
| 187 | this.Invoke(d);
|
---|
| 188 | }
|
---|
| 189 |
|
---|
[1143] | 190 | public void RemoteActivate()
|
---|
| 191 | {
|
---|
| 192 | dAny d = new dAny(this.Activate);
|
---|
| 193 | this.Invoke(d);
|
---|
| 194 | }
|
---|
| 195 |
|
---|
| 196 | public void RemoteHide()
|
---|
| 197 | {
|
---|
| 198 | dAny d = new dAny(this.Hide);
|
---|
| 199 | this.Invoke(d);
|
---|
| 200 | }
|
---|
| 201 |
|
---|
[1051] | 202 | public void RemoteProgressBarMaxSet(int max)
|
---|
| 203 | {
|
---|
| 204 | if (this.InvokeRequired == true)
|
---|
| 205 | {
|
---|
| 206 | dProgressBarSet d = new dProgressBarSet(RemoteProgressBarMaxSet);
|
---|
| 207 | this.Invoke(d, new object[] { max });
|
---|
| 208 | return;
|
---|
| 209 | }
|
---|
| 210 |
|
---|
| 211 | this.progressBar1.Maximum = max;
|
---|
| 212 | }
|
---|
| 213 |
|
---|
| 214 | public void RemoteProgressBarValueSet(int val)
|
---|
| 215 | {
|
---|
| 216 | if (this.InvokeRequired == true)
|
---|
| 217 | {
|
---|
| 218 | dProgressBarSet d = new dProgressBarSet(RemoteProgressBarValueSet);
|
---|
| 219 | this.Invoke(d, new object[] { val });
|
---|
| 220 | return;
|
---|
| 221 | }
|
---|
| 222 |
|
---|
| 223 | this.progressBar1.Value = val;
|
---|
| 224 | }
|
---|
| 225 |
|
---|
[614] | 226 | }
|
---|
[1050] | 227 |
|
---|
| 228 |
|
---|
| 229 |
|
---|
[614] | 230 | }
|
---|