| 1 | /* |
|---|
| 2 | * $Id$ |
|---|
| 3 | * Copyright 2008-2010 The Eraser Project |
|---|
| 4 | * Original Author: Joel Low <lowjoel@users.sourceforge.net> |
|---|
| 5 | * Modified By: |
|---|
| 6 | * |
|---|
| 7 | * This file is part of Eraser. |
|---|
| 8 | * |
|---|
| 9 | * Eraser is free software: you can redistribute it and/or modify it under the |
|---|
| 10 | * terms of the GNU General Public License as published by the Free Software |
|---|
| 11 | * Foundation, either version 3 of the License, or (at your option) any later |
|---|
| 12 | * version. |
|---|
| 13 | * |
|---|
| 14 | * Eraser is distributed in the hope that it will be useful, but WITHOUT ANY |
|---|
| 15 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR |
|---|
| 16 | * A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
|---|
| 17 | * |
|---|
| 18 | * A copy of the GNU General Public License can be found at |
|---|
| 19 | * <http://www.gnu.org/licenses/>. |
|---|
| 20 | */ |
|---|
| 21 | |
|---|
| 22 | namespace Eraser |
|---|
| 23 | { |
|---|
| 24 | partial class SchedulerPanel |
|---|
| 25 | { |
|---|
| 26 | /// <summary> |
|---|
| 27 | /// Required designer variable. |
|---|
| 28 | /// </summary> |
|---|
| 29 | private System.ComponentModel.IContainer components = null; |
|---|
| 30 | |
|---|
| 31 | /// <summary> |
|---|
| 32 | /// Clean up any resources being used. |
|---|
| 33 | /// </summary> |
|---|
| 34 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> |
|---|
| 35 | protected override void Dispose(bool disposing) |
|---|
| 36 | { |
|---|
| 37 | if (disposing && (components != null)) |
|---|
| 38 | { |
|---|
| 39 | components.Dispose(); |
|---|
| 40 | } |
|---|
| 41 | base.Dispose(disposing); |
|---|
| 42 | } |
|---|
| 43 | |
|---|
| 44 | #region Windows Form Designer generated code |
|---|
| 45 | |
|---|
| 46 | /// <summary> |
|---|
| 47 | /// Required method for Designer support - do not modify |
|---|
| 48 | /// the contents of this method with the code editor. |
|---|
| 49 | /// </summary> |
|---|
| 50 | private void InitializeComponent() |
|---|
| 51 | { |
|---|
| 52 | this.components = new System.ComponentModel.Container(); |
|---|
| 53 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SchedulerPanel)); |
|---|
| 54 | this.scheduler = new System.Windows.Forms.ListView(); |
|---|
| 55 | this.schedulerColName = new System.Windows.Forms.ColumnHeader(); |
|---|
| 56 | this.schedulerColNextRun = new System.Windows.Forms.ColumnHeader(); |
|---|
| 57 | this.schedulerColStatus = new System.Windows.Forms.ColumnHeader(); |
|---|
| 58 | this.schedulerMenu = new System.Windows.Forms.ContextMenuStrip(this.components); |
|---|
| 59 | this.runNowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); |
|---|
| 60 | this.cancelTaskToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); |
|---|
| 61 | this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); |
|---|
| 62 | this.viewTaskLogToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); |
|---|
| 63 | this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); |
|---|
| 64 | this.editTaskToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); |
|---|
| 65 | this.deleteTaskToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); |
|---|
| 66 | this.schedulerProgress = new System.Windows.Forms.ProgressBar(); |
|---|
| 67 | this.schedulerDefaultMenu = new System.Windows.Forms.ContextMenuStrip(this.components); |
|---|
| 68 | this.newTaskToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); |
|---|
| 69 | ((System.ComponentModel.ISupportInitialize)(this.titleIcon)).BeginInit(); |
|---|
| 70 | this.content.SuspendLayout(); |
|---|
| 71 | this.schedulerMenu.SuspendLayout(); |
|---|
| 72 | this.schedulerDefaultMenu.SuspendLayout(); |
|---|
| 73 | this.SuspendLayout(); |
|---|
| 74 | // |
|---|
| 75 | // titleLabel |
|---|
| 76 | // |
|---|
| 77 | resources.ApplyResources(this.titleLabel, "titleLabel"); |
|---|
| 78 | // |
|---|
| 79 | // titleIcon |
|---|
| 80 | // |
|---|
| 81 | this.titleIcon.Image = global::Eraser.Properties.Resources.ToolbarSchedule; |
|---|
| 82 | // |
|---|
| 83 | // content |
|---|
| 84 | // |
|---|
| 85 | this.content.Controls.Add(this.schedulerProgress); |
|---|
| 86 | this.content.Controls.Add(this.scheduler); |
|---|
| 87 | // |
|---|
| 88 | // scheduler |
|---|
| 89 | // |
|---|
| 90 | this.scheduler.AllowDrop = true; |
|---|
| 91 | resources.ApplyResources(this.scheduler, "scheduler"); |
|---|
| 92 | this.scheduler.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { |
|---|
| 93 | this.schedulerColName, |
|---|
| 94 | this.schedulerColNextRun, |
|---|
| 95 | this.schedulerColStatus}); |
|---|
| 96 | this.scheduler.ContextMenuStrip = this.schedulerMenu; |
|---|
| 97 | this.scheduler.FullRowSelect = true; |
|---|
| 98 | this.scheduler.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] { |
|---|
| 99 | ((System.Windows.Forms.ListViewGroup)(resources.GetObject("scheduler.Groups"))), |
|---|
| 100 | ((System.Windows.Forms.ListViewGroup)(resources.GetObject("scheduler.Groups1"))), |
|---|
| 101 | ((System.Windows.Forms.ListViewGroup)(resources.GetObject("scheduler.Groups2")))}); |
|---|
| 102 | this.scheduler.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable; |
|---|
| 103 | this.scheduler.Name = "scheduler"; |
|---|
| 104 | this.scheduler.OwnerDraw = true; |
|---|
| 105 | this.scheduler.UseCompatibleStateImageBehavior = false; |
|---|
| 106 | this.scheduler.View = System.Windows.Forms.View.Details; |
|---|
| 107 | this.scheduler.DrawColumnHeader += new System.Windows.Forms.DrawListViewColumnHeaderEventHandler(this.scheduler_DrawColumnHeader); |
|---|
| 108 | this.scheduler.ItemActivate += new System.EventHandler(this.scheduler_ItemActivate); |
|---|
| 109 | this.scheduler.DragDrop += new System.Windows.Forms.DragEventHandler(this.scheduler_DragDrop); |
|---|
| 110 | this.scheduler.DragEnter += new System.Windows.Forms.DragEventHandler(this.scheduler_DragEnter); |
|---|
| 111 | this.scheduler.DragLeave += new System.EventHandler(this.scheduler_DragLeave); |
|---|
| 112 | this.scheduler.KeyDown += new System.Windows.Forms.KeyEventHandler(this.scheduler_KeyDown); |
|---|
| 113 | this.scheduler.DragOver += new System.Windows.Forms.DragEventHandler(this.scheduler_DragOver); |
|---|
| 114 | this.scheduler.DrawSubItem += new System.Windows.Forms.DrawListViewSubItemEventHandler(this.scheduler_DrawSubItem); |
|---|
| 115 | // |
|---|
| 116 | // schedulerColName |
|---|
| 117 | // |
|---|
| 118 | resources.ApplyResources(this.schedulerColName, "schedulerColName"); |
|---|
| 119 | // |
|---|
| 120 | // schedulerColNextRun |
|---|
| 121 | // |
|---|
| 122 | resources.ApplyResources(this.schedulerColNextRun, "schedulerColNextRun"); |
|---|
| 123 | // |
|---|
| 124 | // schedulerColStatus |
|---|
| 125 | // |
|---|
| 126 | resources.ApplyResources(this.schedulerColStatus, "schedulerColStatus"); |
|---|
| 127 | // |
|---|
| 128 | // schedulerMenu |
|---|
| 129 | // |
|---|
| 130 | this.schedulerMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { |
|---|
| 131 | this.runNowToolStripMenuItem, |
|---|
| 132 | this.cancelTaskToolStripMenuItem, |
|---|
| 133 | this.toolStripSeparator2, |
|---|
| 134 | this.viewTaskLogToolStripMenuItem, |
|---|
| 135 | this.toolStripSeparator1, |
|---|
| 136 | this.editTaskToolStripMenuItem, |
|---|
| 137 | this.deleteTaskToolStripMenuItem}); |
|---|
| 138 | this.schedulerMenu.Name = "schedulerMenu"; |
|---|
| 139 | resources.ApplyResources(this.schedulerMenu, "schedulerMenu"); |
|---|
| 140 | this.schedulerMenu.Opening += new System.ComponentModel.CancelEventHandler(this.schedulerMenu_Opening); |
|---|
| 141 | // |
|---|
| 142 | // runNowToolStripMenuItem |
|---|
| 143 | // |
|---|
| 144 | this.runNowToolStripMenuItem.Name = "runNowToolStripMenuItem"; |
|---|
| 145 | resources.ApplyResources(this.runNowToolStripMenuItem, "runNowToolStripMenuItem"); |
|---|
| 146 | this.runNowToolStripMenuItem.Click += new System.EventHandler(this.runNowToolStripMenuItem_Click); |
|---|
| 147 | // |
|---|
| 148 | // cancelTaskToolStripMenuItem |
|---|
| 149 | // |
|---|
| 150 | this.cancelTaskToolStripMenuItem.Name = "cancelTaskToolStripMenuItem"; |
|---|
| 151 | resources.ApplyResources(this.cancelTaskToolStripMenuItem, "cancelTaskToolStripMenuItem"); |
|---|
| 152 | this.cancelTaskToolStripMenuItem.Click += new System.EventHandler(this.cancelTaskToolStripMenuItem_Click); |
|---|
| 153 | // |
|---|
| 154 | // toolStripSeparator2 |
|---|
| 155 | // |
|---|
| 156 | this.toolStripSeparator2.Name = "toolStripSeparator2"; |
|---|
| 157 | resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2"); |
|---|
| 158 | // |
|---|
| 159 | // viewTaskLogToolStripMenuItem |
|---|
| 160 | // |
|---|
| 161 | this.viewTaskLogToolStripMenuItem.Name = "viewTaskLogToolStripMenuItem"; |
|---|
| 162 | resources.ApplyResources(this.viewTaskLogToolStripMenuItem, "viewTaskLogToolStripMenuItem"); |
|---|
| 163 | this.viewTaskLogToolStripMenuItem.Click += new System.EventHandler(this.viewTaskLogToolStripMenuItem_Click); |
|---|
| 164 | // |
|---|
| 165 | // toolStripSeparator1 |
|---|
| 166 | // |
|---|
| 167 | this.toolStripSeparator1.Name = "toolStripSeparator1"; |
|---|
| 168 | resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1"); |
|---|
| 169 | // |
|---|
| 170 | // editTaskToolStripMenuItem |
|---|
| 171 | // |
|---|
| 172 | this.editTaskToolStripMenuItem.Name = "editTaskToolStripMenuItem"; |
|---|
| 173 | resources.ApplyResources(this.editTaskToolStripMenuItem, "editTaskToolStripMenuItem"); |
|---|
| 174 | this.editTaskToolStripMenuItem.Click += new System.EventHandler(this.editTaskToolStripMenuItem_Click); |
|---|
| 175 | // |
|---|
| 176 | // deleteTaskToolStripMenuItem |
|---|
| 177 | // |
|---|
| 178 | this.deleteTaskToolStripMenuItem.Name = "deleteTaskToolStripMenuItem"; |
|---|
| 179 | resources.ApplyResources(this.deleteTaskToolStripMenuItem, "deleteTaskToolStripMenuItem"); |
|---|
| 180 | this.deleteTaskToolStripMenuItem.Click += new System.EventHandler(this.deleteTaskToolStripMenuItem_Click); |
|---|
| 181 | // |
|---|
| 182 | // schedulerProgress |
|---|
| 183 | // |
|---|
| 184 | resources.ApplyResources(this.schedulerProgress, "schedulerProgress"); |
|---|
| 185 | this.schedulerProgress.Maximum = 1000; |
|---|
| 186 | this.schedulerProgress.Name = "schedulerProgress"; |
|---|
| 187 | this.schedulerProgress.Style = System.Windows.Forms.ProgressBarStyle.Continuous; |
|---|
| 188 | // |
|---|
| 189 | // schedulerDefaultMenu |
|---|
| 190 | // |
|---|
| 191 | this.schedulerDefaultMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { |
|---|
| 192 | this.newTaskToolStripMenuItem}); |
|---|
| 193 | this.schedulerDefaultMenu.Name = "schedulerDefaultMenu"; |
|---|
| 194 | resources.ApplyResources(this.schedulerDefaultMenu, "schedulerDefaultMenu"); |
|---|
| 195 | // |
|---|
| 196 | // newTaskToolStripMenuItem |
|---|
| 197 | // |
|---|
| 198 | this.newTaskToolStripMenuItem.Name = "newTaskToolStripMenuItem"; |
|---|
| 199 | resources.ApplyResources(this.newTaskToolStripMenuItem, "newTaskToolStripMenuItem"); |
|---|
| 200 | this.newTaskToolStripMenuItem.Click += new System.EventHandler(this.newTaskToolStripMenuItem_Click); |
|---|
| 201 | // |
|---|
| 202 | // SchedulerPanel |
|---|
| 203 | // |
|---|
| 204 | this.DoubleBuffered = true; |
|---|
| 205 | this.Name = "SchedulerPanel"; |
|---|
| 206 | this.Controls.SetChildIndex(this.titleLabel, 0); |
|---|
| 207 | this.Controls.SetChildIndex(this.titleIcon, 0); |
|---|
| 208 | this.Controls.SetChildIndex(this.content, 0); |
|---|
| 209 | ((System.ComponentModel.ISupportInitialize)(this.titleIcon)).EndInit(); |
|---|
| 210 | this.content.ResumeLayout(false); |
|---|
| 211 | this.schedulerMenu.ResumeLayout(false); |
|---|
| 212 | this.schedulerDefaultMenu.ResumeLayout(false); |
|---|
| 213 | this.ResumeLayout(false); |
|---|
| 214 | this.PerformLayout(); |
|---|
| 215 | |
|---|
| 216 | } |
|---|
| 217 | |
|---|
| 218 | #endregion |
|---|
| 219 | |
|---|
| 220 | private System.Windows.Forms.ColumnHeader schedulerColName; |
|---|
| 221 | private System.Windows.Forms.ColumnHeader schedulerColNextRun; |
|---|
| 222 | private System.Windows.Forms.ColumnHeader schedulerColStatus; |
|---|
| 223 | private System.Windows.Forms.ListView scheduler; |
|---|
| 224 | private System.Windows.Forms.ProgressBar schedulerProgress; |
|---|
| 225 | private System.Windows.Forms.ContextMenuStrip schedulerMenu; |
|---|
| 226 | private System.Windows.Forms.ToolStripMenuItem runNowToolStripMenuItem; |
|---|
| 227 | private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; |
|---|
| 228 | private System.Windows.Forms.ToolStripMenuItem viewTaskLogToolStripMenuItem; |
|---|
| 229 | private System.Windows.Forms.ToolStripMenuItem editTaskToolStripMenuItem; |
|---|
| 230 | private System.Windows.Forms.ToolStripMenuItem deleteTaskToolStripMenuItem; |
|---|
| 231 | private System.Windows.Forms.ToolStripMenuItem cancelTaskToolStripMenuItem; |
|---|
| 232 | private System.Windows.Forms.ToolStripSeparator toolStripSeparator2; |
|---|
| 233 | private System.Windows.Forms.ContextMenuStrip schedulerDefaultMenu; |
|---|
| 234 | private System.Windows.Forms.ToolStripMenuItem newTaskToolStripMenuItem; |
|---|
| 235 | } |
|---|
| 236 | } |
|---|
| 237 | |
|---|