DoctorForm.Designer.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. namespace FietsClientV2
  2. {
  3. partial class DoctorForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
  29. System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
  30. System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
  31. System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea2 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
  32. System.Windows.Forms.DataVisualization.Charting.Legend legend2 = new System.Windows.Forms.DataVisualization.Charting.Legend();
  33. System.Windows.Forms.DataVisualization.Charting.Series series2 = new System.Windows.Forms.DataVisualization.Charting.Series();
  34. System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea3 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
  35. System.Windows.Forms.DataVisualization.Charting.Legend legend3 = new System.Windows.Forms.DataVisualization.Charting.Legend();
  36. System.Windows.Forms.DataVisualization.Charting.Series series3 = new System.Windows.Forms.DataVisualization.Charting.Series();
  37. this.menuStrip1 = new System.Windows.Forms.MenuStrip();
  38. this.archiefToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  39. this.selectSessionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  40. this.sESSIONSToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  41. this.speedBox = new System.Windows.Forms.GroupBox();
  42. this.speedChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
  43. this.bpmBox = new System.Windows.Forms.GroupBox();
  44. this.bpmChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
  45. this.sessionInfoBox = new System.Windows.Forms.GroupBox();
  46. this.rpmBox = new System.Windows.Forms.GroupBox();
  47. this.rpmChart = new System.Windows.Forms.DataVisualization.Charting.Chart();
  48. this.chatBox = new System.Windows.Forms.TextBox();
  49. this.messageBox = new System.Windows.Forms.TextBox();
  50. this.chatArea = new System.Windows.Forms.GroupBox();
  51. this.selectArchiveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  52. this.startNewSessionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  53. this.pauzeSessionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  54. this.stopSessionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  55. this.menuStrip1.SuspendLayout();
  56. this.speedBox.SuspendLayout();
  57. ((System.ComponentModel.ISupportInitialize)(this.speedChart)).BeginInit();
  58. this.bpmBox.SuspendLayout();
  59. ((System.ComponentModel.ISupportInitialize)(this.bpmChart)).BeginInit();
  60. this.rpmBox.SuspendLayout();
  61. ((System.ComponentModel.ISupportInitialize)(this.rpmChart)).BeginInit();
  62. this.chatArea.SuspendLayout();
  63. this.SuspendLayout();
  64. //
  65. // menuStrip1
  66. //
  67. this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  68. this.archiefToolStripMenuItem});
  69. this.menuStrip1.Location = new System.Drawing.Point(0, 0);
  70. this.menuStrip1.Name = "menuStrip1";
  71. this.menuStrip1.Size = new System.Drawing.Size(1064, 24);
  72. this.menuStrip1.TabIndex = 0;
  73. this.menuStrip1.Text = "menuStrip1";
  74. //
  75. // archiefToolStripMenuItem
  76. //
  77. this.archiefToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  78. this.selectSessionToolStripMenuItem,
  79. this.selectArchiveToolStripMenuItem,
  80. this.startNewSessionToolStripMenuItem,
  81. this.pauzeSessionToolStripMenuItem,
  82. this.stopSessionToolStripMenuItem});
  83. this.archiefToolStripMenuItem.Name = "archiefToolStripMenuItem";
  84. this.archiefToolStripMenuItem.Size = new System.Drawing.Size(56, 20);
  85. this.archiefToolStripMenuItem.Text = "Patient";
  86. //
  87. // selectSessionToolStripMenuItem
  88. //
  89. this.selectSessionToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  90. this.sESSIONSToolStripMenuItem});
  91. this.selectSessionToolStripMenuItem.Name = "selectSessionToolStripMenuItem";
  92. this.selectSessionToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
  93. this.selectSessionToolStripMenuItem.Text = "Select patient";
  94. //
  95. // sESSIONSToolStripMenuItem
  96. //
  97. this.sESSIONSToolStripMenuItem.Name = "sESSIONSToolStripMenuItem";
  98. this.sESSIONSToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
  99. this.sESSIONSToolStripMenuItem.Text = "Patients";
  100. //
  101. // speedBox
  102. //
  103. this.speedBox.Controls.Add(this.speedChart);
  104. this.speedBox.Location = new System.Drawing.Point(12, 27);
  105. this.speedBox.Name = "speedBox";
  106. this.speedBox.Size = new System.Drawing.Size(400, 310);
  107. this.speedBox.TabIndex = 2;
  108. this.speedBox.TabStop = false;
  109. this.speedBox.Text = "Speed:";
  110. //
  111. // speedChart
  112. //
  113. chartArea1.Name = "ChartArea1";
  114. this.speedChart.ChartAreas.Add(chartArea1);
  115. legend1.Name = "Legend1";
  116. this.speedChart.Legends.Add(legend1);
  117. this.speedChart.Location = new System.Drawing.Point(6, 19);
  118. this.speedChart.Name = "speedChart";
  119. series1.ChartArea = "ChartArea1";
  120. series1.Legend = "Legend1";
  121. series1.Name = "Series1";
  122. this.speedChart.Series.Add(series1);
  123. this.speedChart.Size = new System.Drawing.Size(388, 285);
  124. this.speedChart.TabIndex = 0;
  125. this.speedChart.Text = "Speed chart";
  126. //
  127. // bpmBox
  128. //
  129. this.bpmBox.Controls.Add(this.bpmChart);
  130. this.bpmBox.Location = new System.Drawing.Point(12, 343);
  131. this.bpmBox.Name = "bpmBox";
  132. this.bpmBox.Size = new System.Drawing.Size(400, 310);
  133. this.bpmBox.TabIndex = 3;
  134. this.bpmBox.TabStop = false;
  135. this.bpmBox.Text = "Beats per second:";
  136. //
  137. // bpmChart
  138. //
  139. chartArea2.Name = "ChartArea1";
  140. this.bpmChart.ChartAreas.Add(chartArea2);
  141. legend2.Name = "Legend1";
  142. this.bpmChart.Legends.Add(legend2);
  143. this.bpmChart.Location = new System.Drawing.Point(6, 19);
  144. this.bpmChart.Name = "bpmChart";
  145. series2.ChartArea = "ChartArea1";
  146. series2.Legend = "Legend1";
  147. series2.Name = "Series1";
  148. this.bpmChart.Series.Add(series2);
  149. this.bpmChart.Size = new System.Drawing.Size(388, 285);
  150. this.bpmChart.TabIndex = 1;
  151. this.bpmChart.Text = "beats per second";
  152. //
  153. // sessionInfoBox
  154. //
  155. this.sessionInfoBox.Location = new System.Drawing.Point(418, 27);
  156. this.sessionInfoBox.Name = "sessionInfoBox";
  157. this.sessionInfoBox.Size = new System.Drawing.Size(400, 310);
  158. this.sessionInfoBox.TabIndex = 4;
  159. this.sessionInfoBox.TabStop = false;
  160. this.sessionInfoBox.Text = "Session info:";
  161. //
  162. // rpmBox
  163. //
  164. this.rpmBox.Controls.Add(this.rpmChart);
  165. this.rpmBox.Location = new System.Drawing.Point(418, 343);
  166. this.rpmBox.Name = "rpmBox";
  167. this.rpmBox.Size = new System.Drawing.Size(400, 310);
  168. this.rpmBox.TabIndex = 5;
  169. this.rpmBox.TabStop = false;
  170. this.rpmBox.Text = "Rounds per minute:";
  171. //
  172. // rpmChart
  173. //
  174. chartArea3.Name = "ChartArea1";
  175. this.rpmChart.ChartAreas.Add(chartArea3);
  176. legend3.Name = "Legend1";
  177. this.rpmChart.Legends.Add(legend3);
  178. this.rpmChart.Location = new System.Drawing.Point(6, 19);
  179. this.rpmChart.Name = "rpmChart";
  180. series3.ChartArea = "ChartArea1";
  181. series3.Legend = "Legend1";
  182. series3.Name = "Series1";
  183. this.rpmChart.Series.Add(series3);
  184. this.rpmChart.Size = new System.Drawing.Size(388, 285);
  185. this.rpmChart.TabIndex = 2;
  186. this.rpmChart.Text = "rounds per minute";
  187. //
  188. // chatBox
  189. //
  190. this.chatBox.Location = new System.Drawing.Point(0, 19);
  191. this.chatBox.Multiline = true;
  192. this.chatBox.Name = "chatBox";
  193. this.chatBox.ReadOnly = true;
  194. this.chatBox.Size = new System.Drawing.Size(228, 581);
  195. this.chatBox.TabIndex = 3;
  196. //
  197. // messageBox
  198. //
  199. this.messageBox.Location = new System.Drawing.Point(0, 606);
  200. this.messageBox.Name = "messageBox";
  201. this.messageBox.Size = new System.Drawing.Size(228, 20);
  202. this.messageBox.TabIndex = 6;
  203. //
  204. // chatArea
  205. //
  206. this.chatArea.Controls.Add(this.chatBox);
  207. this.chatArea.Controls.Add(this.messageBox);
  208. this.chatArea.Location = new System.Drawing.Point(824, 27);
  209. this.chatArea.Name = "chatArea";
  210. this.chatArea.Size = new System.Drawing.Size(228, 626);
  211. this.chatArea.TabIndex = 5;
  212. this.chatArea.TabStop = false;
  213. this.chatArea.Text = "Chat:";
  214. //
  215. // selectArchiveToolStripMenuItem
  216. //
  217. this.selectArchiveToolStripMenuItem.Name = "selectArchiveToolStripMenuItem";
  218. this.selectArchiveToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
  219. this.selectArchiveToolStripMenuItem.Text = "Select archive";
  220. //
  221. // startNewSessionToolStripMenuItem
  222. //
  223. this.startNewSessionToolStripMenuItem.Name = "startNewSessionToolStripMenuItem";
  224. this.startNewSessionToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
  225. this.startNewSessionToolStripMenuItem.Text = "Start new session";
  226. //
  227. // pauzeSessionToolStripMenuItem
  228. //
  229. this.pauzeSessionToolStripMenuItem.Name = "pauzeSessionToolStripMenuItem";
  230. this.pauzeSessionToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
  231. this.pauzeSessionToolStripMenuItem.Text = "Pauze session";
  232. //
  233. // stopSessionToolStripMenuItem
  234. //
  235. this.stopSessionToolStripMenuItem.Name = "stopSessionToolStripMenuItem";
  236. this.stopSessionToolStripMenuItem.Size = new System.Drawing.Size(164, 22);
  237. this.stopSessionToolStripMenuItem.Text = "Stop session";
  238. //
  239. // DoctorForm
  240. //
  241. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  242. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  243. this.BackColor = System.Drawing.SystemColors.Control;
  244. this.ClientSize = new System.Drawing.Size(1064, 681);
  245. this.Controls.Add(this.chatArea);
  246. this.Controls.Add(this.sessionInfoBox);
  247. this.Controls.Add(this.rpmBox);
  248. this.Controls.Add(this.bpmBox);
  249. this.Controls.Add(this.speedBox);
  250. this.Controls.Add(this.menuStrip1);
  251. this.MainMenuStrip = this.menuStrip1;
  252. this.Name = "DoctorForm";
  253. this.Text = "Doctor";
  254. this.Load += new System.EventHandler(this.Form1_Load);
  255. this.menuStrip1.ResumeLayout(false);
  256. this.menuStrip1.PerformLayout();
  257. this.speedBox.ResumeLayout(false);
  258. ((System.ComponentModel.ISupportInitialize)(this.speedChart)).EndInit();
  259. this.bpmBox.ResumeLayout(false);
  260. ((System.ComponentModel.ISupportInitialize)(this.bpmChart)).EndInit();
  261. this.rpmBox.ResumeLayout(false);
  262. ((System.ComponentModel.ISupportInitialize)(this.rpmChart)).EndInit();
  263. this.chatArea.ResumeLayout(false);
  264. this.chatArea.PerformLayout();
  265. this.ResumeLayout(false);
  266. this.PerformLayout();
  267. }
  268. #endregion
  269. private System.Windows.Forms.MenuStrip menuStrip1;
  270. private System.Windows.Forms.ToolStripMenuItem archiefToolStripMenuItem;
  271. private System.Windows.Forms.ToolStripMenuItem selectSessionToolStripMenuItem;
  272. private System.Windows.Forms.ToolStripMenuItem sESSIONSToolStripMenuItem;
  273. private System.Windows.Forms.GroupBox speedBox;
  274. private System.Windows.Forms.GroupBox bpmBox;
  275. private System.Windows.Forms.GroupBox sessionInfoBox;
  276. private System.Windows.Forms.GroupBox rpmBox;
  277. private System.Windows.Forms.DataVisualization.Charting.Chart speedChart;
  278. private System.Windows.Forms.DataVisualization.Charting.Chart bpmChart;
  279. private System.Windows.Forms.DataVisualization.Charting.Chart rpmChart;
  280. private System.Windows.Forms.TextBox chatBox;
  281. private System.Windows.Forms.TextBox messageBox;
  282. private System.Windows.Forms.GroupBox chatArea;
  283. private System.Windows.Forms.ToolStripMenuItem selectArchiveToolStripMenuItem;
  284. private System.Windows.Forms.ToolStripMenuItem startNewSessionToolStripMenuItem;
  285. private System.Windows.Forms.ToolStripMenuItem pauzeSessionToolStripMenuItem;
  286. private System.Windows.Forms.ToolStripMenuItem stopSessionToolStripMenuItem;
  287. }
  288. }