Changeset 915
- Timestamp:
- Aug 18, 2010, 3:59:41 AM (14 years ago)
- Location:
- Scheduling/trunk/cs/bsdx0200GUISourceCode
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
Scheduling/trunk/cs/bsdx0200GUISourceCode/AssemblyInfo.cs
r884 r915 28 28 // by using the '*' as shown below: 29 29 30 [assembly: AssemblyVersion("1.3. *")]30 [assembly: AssemblyVersion("1.3.1.*")] 31 31 32 32 // … … 58 58 [assembly: AssemblyKeyFile("")] 59 59 [assembly: AssemblyKeyName("")] 60 [assembly: AssemblyFileVersionAttribute("1.3. 0.0")]60 [assembly: AssemblyFileVersionAttribute("1.3.1.0")] 61 61 [assembly: ComVisibleAttribute(false)] -
Scheduling/trunk/cs/bsdx0200GUISourceCode/CGAVView.cs
r913 r915 59 59 this.lblResource = new System.Windows.Forms.Label(); 60 60 this.panelCenter = new System.Windows.Forms.Panel(); 61 this.calendarGrid1 = new IndianHealthService.ClinicalScheduling.CalendarGrid(); 61 62 this.ctxCalendarGrid = new System.Windows.Forms.ContextMenu(); 62 63 this.ctxCalGridAdd = new System.Windows.Forms.MenuItem(); … … 90 91 this.mnuHelpAbout = new System.Windows.Forms.MenuItem(); 91 92 this.splitter1 = new System.Windows.Forms.Splitter(); 92 this.calendarGrid1 = new IndianHealthService.ClinicalScheduling.CalendarGrid();93 93 this.panelRight.SuspendLayout(); 94 94 this.panelClip.SuspendLayout(); … … 219 219 this.panelCenter.Size = new System.Drawing.Size(712, 469); 220 220 this.panelCenter.TabIndex = 4; 221 //222 // ctxCalendarGrid223 //224 this.ctxCalendarGrid.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {225 this.ctxCalGridAdd,226 this.ctxCalGridEdit,227 this.ctxCalGridDelete});228 this.ctxCalendarGrid.Popup += new System.EventHandler(this.ctxCalendarGrid_Popup);229 //230 // ctxCalGridAdd231 //232 this.ctxCalGridAdd.Index = 0;233 this.ctxCalGridAdd.Text = "Add New Access Block";234 this.ctxCalGridAdd.Click += new System.EventHandler(this.ctxCalGridAdd_Click);235 //236 // ctxCalGridEdit237 //238 this.ctxCalGridEdit.Index = 1;239 this.ctxCalGridEdit.Text = "Edit Access Block";240 this.ctxCalGridEdit.Click += new System.EventHandler(this.ctxCalGridEdit_Click);241 //242 // ctxCalGridDelete243 //244 this.ctxCalGridDelete.Index = 2;245 this.ctxCalGridDelete.Text = "Delete Access Block";246 this.ctxCalGridDelete.Click += new System.EventHandler(this.ctxCalGridDelete_Click);247 //248 // tvSchedules249 //250 this.tvSchedules.BackColor = System.Drawing.SystemColors.ControlLight;251 this.tvSchedules.Dock = System.Windows.Forms.DockStyle.Left;252 this.tvSchedules.HotTracking = true;253 this.tvSchedules.Location = new System.Drawing.Point(0, 0);254 this.tvSchedules.Name = "tvSchedules";255 this.tvSchedules.Size = new System.Drawing.Size(8, 517);256 this.tvSchedules.Sorted = true;257 this.tvSchedules.TabIndex = 5;258 //259 // mainMenu1260 //261 this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {262 this.menuItem1,263 this.mnuAvailability,264 this.mnuCalendar,265 this.mnuHelp});266 //267 // menuItem1268 //269 this.menuItem1.Index = 0;270 this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {271 this.mnuLoadTemplate,272 this.mnuSaveTemplate,273 this.menuItem6,274 this.mnuSchedulingManagment,275 this.menuItem5,276 this.mnuClose});277 this.menuItem1.Text = "&File";278 //279 // mnuLoadTemplate280 //281 this.mnuLoadTemplate.Index = 0;282 this.mnuLoadTemplate.Shortcut = System.Windows.Forms.Shortcut.CtrlA;283 this.mnuLoadTemplate.Text = "&Apply Template";284 this.mnuLoadTemplate.Click += new System.EventHandler(this.mnuLoadTemplate_Click);285 //286 // mnuSaveTemplate287 //288 this.mnuSaveTemplate.Index = 1;289 this.mnuSaveTemplate.Shortcut = System.Windows.Forms.Shortcut.CtrlS;290 this.mnuSaveTemplate.Text = "&Save Template";291 this.mnuSaveTemplate.Click += new System.EventHandler(this.mnuSaveTemplate_Click);292 //293 // menuItem6294 //295 this.menuItem6.Index = 2;296 this.menuItem6.Text = "-";297 //298 // mnuSchedulingManagment299 //300 this.mnuSchedulingManagment.Index = 3;301 this.mnuSchedulingManagment.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftM;302 this.mnuSchedulingManagment.Text = "Scheduling &Management";303 this.mnuSchedulingManagment.Click += new System.EventHandler(this.mnuSchedulingManagment_Click);304 //305 // menuItem5306 //307 this.menuItem5.Index = 4;308 this.menuItem5.Text = "-";309 //310 // mnuClose311 //312 this.mnuClose.Index = 5;313 this.mnuClose.Shortcut = System.Windows.Forms.Shortcut.CtrlW;314 this.mnuClose.Text = "&Close";315 this.mnuClose.Click += new System.EventHandler(this.mnuClose_Click);316 //317 // mnuAvailability318 //319 this.mnuAvailability.Index = 1;320 this.mnuAvailability.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {321 this.mnuAddNewAV,322 this.mnuRemoveAV,323 this.mnuEditAV});324 this.mnuAvailability.Text = "&Access Blocks";325 this.mnuAvailability.Popup += new System.EventHandler(this.mnuAvailability_Popup);326 //327 // mnuAddNewAV328 //329 this.mnuAddNewAV.Index = 0;330 this.mnuAddNewAV.Shortcut = System.Windows.Forms.Shortcut.CtrlN;331 this.mnuAddNewAV.Text = "Add &New Block";332 this.mnuAddNewAV.Click += new System.EventHandler(this.mnuAddNewAV_Click);333 //334 // mnuRemoveAV335 //336 this.mnuRemoveAV.Index = 1;337 this.mnuRemoveAV.Shortcut = System.Windows.Forms.Shortcut.CtrlR;338 this.mnuRemoveAV.Text = "&Remove Block";339 this.mnuRemoveAV.Click += new System.EventHandler(this.mnuRemoveAV_Click);340 //341 // mnuEditAV342 //343 this.mnuEditAV.Index = 2;344 this.mnuEditAV.Shortcut = System.Windows.Forms.Shortcut.CtrlE;345 this.mnuEditAV.Text = "&Edit Block";346 this.mnuEditAV.Click += new System.EventHandler(this.mnuEditAV_Click);347 //348 // mnuCalendar349 //350 this.mnuCalendar.Index = 2;351 this.mnuCalendar.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {352 this.mnu1Day,353 this.mnu5Day,354 this.mnu7Day,355 this.menuItem7,356 this.mnuTimeScale,357 this.mnuViewRightPanel});358 this.mnuCalendar.Text = "&View";359 //360 // mnu1Day361 //362 this.mnu1Day.Index = 0;363 this.mnu1Day.Shortcut = System.Windows.Forms.Shortcut.Ctrl1;364 this.mnu1Day.Text = "&1-Day View";365 this.mnu1Day.Click += new System.EventHandler(this.mnu1Day_Click);366 //367 // mnu5Day368 //369 this.mnu5Day.Index = 1;370 this.mnu5Day.Shortcut = System.Windows.Forms.Shortcut.Ctrl5;371 this.mnu5Day.Text = "&5-Day View";372 this.mnu5Day.Click += new System.EventHandler(this.mnu5Day_Click);373 //374 // mnu7Day375 //376 this.mnu7Day.Index = 2;377 this.mnu7Day.Shortcut = System.Windows.Forms.Shortcut.Ctrl7;378 this.mnu7Day.Text = "&7-Day View";379 this.mnu7Day.Click += new System.EventHandler(this.mnu7Day_Click);380 //381 // menuItem7382 //383 this.menuItem7.Index = 3;384 this.menuItem7.Text = "-";385 //386 // mnuTimeScale387 //388 this.mnuTimeScale.Index = 4;389 this.mnuTimeScale.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {390 this.mnu10Minute,391 this.mnu15Minute,392 this.mnu20Minute,393 this.mnu30Minute});394 this.mnuTimeScale.Text = "&Time Scale";395 //396 // mnu10Minute397 //398 this.mnu10Minute.Index = 0;399 this.mnu10Minute.Shortcut = System.Windows.Forms.Shortcut.Ctrl0;400 this.mnu10Minute.Text = "&10-Minute";401 this.mnu10Minute.Click += new System.EventHandler(this.mnu10Minute_Click);402 //403 // mnu15Minute404 //405 this.mnu15Minute.Index = 1;406 this.mnu15Minute.Shortcut = System.Windows.Forms.Shortcut.Ctrl4;407 this.mnu15Minute.Text = "&15-Minute";408 this.mnu15Minute.Click += new System.EventHandler(this.mnu15Minute_Click);409 //410 // mnu20Minute411 //412 this.mnu20Minute.Index = 2;413 this.mnu20Minute.Shortcut = System.Windows.Forms.Shortcut.Ctrl3;414 this.mnu20Minute.Text = "&20-Minute";415 this.mnu20Minute.Click += new System.EventHandler(this.mnu20Minute_Click);416 //417 // mnu30Minute418 //419 this.mnu30Minute.Index = 3;420 this.mnu30Minute.Shortcut = System.Windows.Forms.Shortcut.Ctrl2;421 this.mnu30Minute.Text = "&30-Minute";422 this.mnu30Minute.Click += new System.EventHandler(this.mnu30Minute_Click);423 //424 // mnuViewRightPanel425 //426 this.mnuViewRightPanel.Index = 5;427 this.mnuViewRightPanel.Text = "&Access Block Clipboard";428 this.mnuViewRightPanel.Click += new System.EventHandler(this.mnuViewRightPanel_Click);429 //430 // mnuHelp431 //432 this.mnuHelp.Index = 3;433 this.mnuHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {434 this.mnuHelpAbout});435 this.mnuHelp.Text = "&Help";436 //437 // mnuHelpAbout438 //439 this.mnuHelpAbout.Index = 0;440 this.mnuHelpAbout.Text = "&About";441 this.mnuHelpAbout.Click += new System.EventHandler(this.mnuHelpAbout_Click);442 //443 // splitter1444 //445 this.splitter1.Dock = System.Windows.Forms.DockStyle.Right;446 this.splitter1.Location = new System.Drawing.Point(720, 24);447 this.splitter1.Name = "splitter1";448 this.splitter1.Size = new System.Drawing.Size(8, 469);449 this.splitter1.TabIndex = 6;450 this.splitter1.TabStop = false;451 221 // 452 222 // calendarGrid1 … … 477 247 this.calendarGrid1.CGAppointmentChanged += new IndianHealthService.ClinicalScheduling.CGAppointmentChangedHandler(this.calendarGrid1_CGAppointmentChanged); 478 248 this.calendarGrid1.CGAppointmentAdded += new IndianHealthService.ClinicalScheduling.CGAppointmentChangedHandler(this.calendarGrid1_CGAppointmentAdded); 249 // 250 // ctxCalendarGrid 251 // 252 this.ctxCalendarGrid.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { 253 this.ctxCalGridAdd, 254 this.ctxCalGridEdit, 255 this.ctxCalGridDelete}); 256 this.ctxCalendarGrid.Popup += new System.EventHandler(this.ctxCalendarGrid_Popup); 257 // 258 // ctxCalGridAdd 259 // 260 this.ctxCalGridAdd.Index = 0; 261 this.ctxCalGridAdd.Text = "Add New Access Block"; 262 this.ctxCalGridAdd.Click += new System.EventHandler(this.ctxCalGridAdd_Click); 263 // 264 // ctxCalGridEdit 265 // 266 this.ctxCalGridEdit.Index = 1; 267 this.ctxCalGridEdit.Text = "Edit Access Block"; 268 this.ctxCalGridEdit.Click += new System.EventHandler(this.ctxCalGridEdit_Click); 269 // 270 // ctxCalGridDelete 271 // 272 this.ctxCalGridDelete.Index = 2; 273 this.ctxCalGridDelete.Text = "Delete Access Block"; 274 this.ctxCalGridDelete.Click += new System.EventHandler(this.ctxCalGridDelete_Click); 275 // 276 // tvSchedules 277 // 278 this.tvSchedules.BackColor = System.Drawing.SystemColors.ControlLight; 279 this.tvSchedules.Dock = System.Windows.Forms.DockStyle.Left; 280 this.tvSchedules.HotTracking = true; 281 this.tvSchedules.Location = new System.Drawing.Point(0, 0); 282 this.tvSchedules.Name = "tvSchedules"; 283 this.tvSchedules.Size = new System.Drawing.Size(8, 517); 284 this.tvSchedules.Sorted = true; 285 this.tvSchedules.TabIndex = 5; 286 // 287 // mainMenu1 288 // 289 this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { 290 this.menuItem1, 291 this.mnuAvailability, 292 this.mnuCalendar, 293 this.mnuHelp}); 294 // 295 // menuItem1 296 // 297 this.menuItem1.Index = 0; 298 this.menuItem1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { 299 this.mnuLoadTemplate, 300 this.mnuSaveTemplate, 301 this.menuItem6, 302 this.mnuSchedulingManagment, 303 this.menuItem5, 304 this.mnuClose}); 305 this.menuItem1.Text = "&File"; 306 // 307 // mnuLoadTemplate 308 // 309 this.mnuLoadTemplate.Index = 0; 310 this.mnuLoadTemplate.Shortcut = System.Windows.Forms.Shortcut.CtrlA; 311 this.mnuLoadTemplate.Text = "&Apply Template"; 312 this.mnuLoadTemplate.Click += new System.EventHandler(this.mnuLoadTemplate_Click); 313 // 314 // mnuSaveTemplate 315 // 316 this.mnuSaveTemplate.Index = 1; 317 this.mnuSaveTemplate.Shortcut = System.Windows.Forms.Shortcut.CtrlS; 318 this.mnuSaveTemplate.Text = "&Save Template"; 319 this.mnuSaveTemplate.Click += new System.EventHandler(this.mnuSaveTemplate_Click); 320 // 321 // menuItem6 322 // 323 this.menuItem6.Index = 2; 324 this.menuItem6.Text = "-"; 325 // 326 // mnuSchedulingManagment 327 // 328 this.mnuSchedulingManagment.Index = 3; 329 this.mnuSchedulingManagment.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftM; 330 this.mnuSchedulingManagment.Text = "Scheduling &Management"; 331 this.mnuSchedulingManagment.Click += new System.EventHandler(this.mnuSchedulingManagment_Click); 332 // 333 // menuItem5 334 // 335 this.menuItem5.Index = 4; 336 this.menuItem5.Text = "-"; 337 // 338 // mnuClose 339 // 340 this.mnuClose.Index = 5; 341 this.mnuClose.Shortcut = System.Windows.Forms.Shortcut.CtrlW; 342 this.mnuClose.Text = "&Close"; 343 this.mnuClose.Click += new System.EventHandler(this.mnuClose_Click); 344 // 345 // mnuAvailability 346 // 347 this.mnuAvailability.Index = 1; 348 this.mnuAvailability.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { 349 this.mnuAddNewAV, 350 this.mnuRemoveAV, 351 this.mnuEditAV}); 352 this.mnuAvailability.Text = "&Access Blocks"; 353 this.mnuAvailability.Popup += new System.EventHandler(this.mnuAvailability_Popup); 354 // 355 // mnuAddNewAV 356 // 357 this.mnuAddNewAV.Index = 0; 358 this.mnuAddNewAV.Shortcut = System.Windows.Forms.Shortcut.CtrlN; 359 this.mnuAddNewAV.Text = "Add &New Block"; 360 this.mnuAddNewAV.Click += new System.EventHandler(this.mnuAddNewAV_Click); 361 // 362 // mnuRemoveAV 363 // 364 this.mnuRemoveAV.Index = 1; 365 this.mnuRemoveAV.Shortcut = System.Windows.Forms.Shortcut.CtrlR; 366 this.mnuRemoveAV.Text = "&Remove Block"; 367 this.mnuRemoveAV.Click += new System.EventHandler(this.mnuRemoveAV_Click); 368 // 369 // mnuEditAV 370 // 371 this.mnuEditAV.Index = 2; 372 this.mnuEditAV.Shortcut = System.Windows.Forms.Shortcut.CtrlE; 373 this.mnuEditAV.Text = "&Edit Block"; 374 this.mnuEditAV.Click += new System.EventHandler(this.mnuEditAV_Click); 375 // 376 // mnuCalendar 377 // 378 this.mnuCalendar.Index = 2; 379 this.mnuCalendar.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { 380 this.mnu1Day, 381 this.mnu5Day, 382 this.mnu7Day, 383 this.menuItem7, 384 this.mnuTimeScale, 385 this.mnuViewRightPanel}); 386 this.mnuCalendar.Text = "&View"; 387 // 388 // mnu1Day 389 // 390 this.mnu1Day.Index = 0; 391 this.mnu1Day.Shortcut = System.Windows.Forms.Shortcut.Ctrl1; 392 this.mnu1Day.Text = "&1-Day View"; 393 this.mnu1Day.Click += new System.EventHandler(this.mnu1Day_Click); 394 // 395 // mnu5Day 396 // 397 this.mnu5Day.Index = 1; 398 this.mnu5Day.Shortcut = System.Windows.Forms.Shortcut.Ctrl5; 399 this.mnu5Day.Text = "&5-Day View"; 400 this.mnu5Day.Click += new System.EventHandler(this.mnu5Day_Click); 401 // 402 // mnu7Day 403 // 404 this.mnu7Day.Index = 2; 405 this.mnu7Day.Shortcut = System.Windows.Forms.Shortcut.Ctrl7; 406 this.mnu7Day.Text = "&7-Day View"; 407 this.mnu7Day.Click += new System.EventHandler(this.mnu7Day_Click); 408 // 409 // menuItem7 410 // 411 this.menuItem7.Index = 3; 412 this.menuItem7.Text = "-"; 413 // 414 // mnuTimeScale 415 // 416 this.mnuTimeScale.Index = 4; 417 this.mnuTimeScale.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { 418 this.mnu10Minute, 419 this.mnu15Minute, 420 this.mnu20Minute, 421 this.mnu30Minute}); 422 this.mnuTimeScale.Text = "&Time Scale"; 423 // 424 // mnu10Minute 425 // 426 this.mnu10Minute.Index = 0; 427 this.mnu10Minute.Shortcut = System.Windows.Forms.Shortcut.Ctrl0; 428 this.mnu10Minute.Text = "&10-Minute"; 429 this.mnu10Minute.Click += new System.EventHandler(this.mnu10Minute_Click); 430 // 431 // mnu15Minute 432 // 433 this.mnu15Minute.Index = 1; 434 this.mnu15Minute.Shortcut = System.Windows.Forms.Shortcut.Ctrl4; 435 this.mnu15Minute.Text = "&15-Minute"; 436 this.mnu15Minute.Click += new System.EventHandler(this.mnu15Minute_Click); 437 // 438 // mnu20Minute 439 // 440 this.mnu20Minute.Index = 2; 441 this.mnu20Minute.Shortcut = System.Windows.Forms.Shortcut.Ctrl3; 442 this.mnu20Minute.Text = "&20-Minute"; 443 this.mnu20Minute.Click += new System.EventHandler(this.mnu20Minute_Click); 444 // 445 // mnu30Minute 446 // 447 this.mnu30Minute.Index = 3; 448 this.mnu30Minute.Shortcut = System.Windows.Forms.Shortcut.Ctrl2; 449 this.mnu30Minute.Text = "&30-Minute"; 450 this.mnu30Minute.Click += new System.EventHandler(this.mnu30Minute_Click); 451 // 452 // mnuViewRightPanel 453 // 454 this.mnuViewRightPanel.Index = 5; 455 this.mnuViewRightPanel.Text = "&Access Block Clipboard"; 456 this.mnuViewRightPanel.Click += new System.EventHandler(this.mnuViewRightPanel_Click); 457 // 458 // mnuHelp 459 // 460 this.mnuHelp.Index = 3; 461 this.mnuHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { 462 this.mnuHelpAbout}); 463 this.mnuHelp.Text = "&Help"; 464 // 465 // mnuHelpAbout 466 // 467 this.mnuHelpAbout.Index = 0; 468 this.mnuHelpAbout.Text = "&About"; 469 this.mnuHelpAbout.Click += new System.EventHandler(this.mnuHelpAbout_Click); 470 // 471 // splitter1 472 // 473 this.splitter1.Dock = System.Windows.Forms.DockStyle.Right; 474 this.splitter1.Location = new System.Drawing.Point(720, 24); 475 this.splitter1.Name = "splitter1"; 476 this.splitter1.Size = new System.Drawing.Size(8, 469); 477 this.splitter1.TabIndex = 6; 478 this.splitter1.TabStop = false; 479 479 // 480 480 // CGAVView -
Scheduling/trunk/cs/bsdx0200GUISourceCode/ClinicalScheduling.csproj
r908 r915 67 67 <ConfigurationOverrideFile> 68 68 </ConfigurationOverrideFile> 69 <DefineConstants> TRACE;DEBUG</DefineConstants>69 <DefineConstants>DEBUG</DefineConstants> 70 70 <DocumentationFile>bin\Release\ClinicalScheduling.XML</DocumentationFile> 71 71 <DebugSymbols>false</DebugSymbols> … … 90 90 <ConfigurationOverrideFile> 91 91 </ConfigurationOverrideFile> 92 <DefineConstants>TRACE</DefineConstants> 92 <DefineConstants> 93 </DefineConstants> 93 94 <DocumentationFile>bin\Release\ClinicalScheduling.XML</DocumentationFile> 94 95 <DebugSymbols>false</DebugSymbols> -
Scheduling/trunk/cs/bsdx0200GUISourceCode/DAccessTemplate.cs
r913 r915 225 225 this.lblDescriptionResourceGroup.Size = new System.Drawing.Size(434, 61); 226 226 this.lblDescriptionResourceGroup.TabIndex = 0; 227 this.lblDescriptionResourceGroup.Text = "Use this panel to define an access pattern for future clinic availability."; 227 this.lblDescriptionResourceGroup.Text = "Use this panel to define an access pattern for future clinic availability.\r\nMAKE " + 228 "SURE TO SELECT 5 or 7 day view first depending on which view you used to save th" + 229 "e selected Access Template."; 228 230 // 229 231 // cmdSelectTemplate
Note:
See TracChangeset
for help on using the changeset viewer.