Changeset 6263 for branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.SlaveTrayIcon
- Timestamp:
- 05/24/11 14:30:55 (14 years ago)
- Location:
- branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.SlaveTrayIcon
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.SlaveTrayIcon/MainWindow.Designer.cs
r6257 r6263 36 36 this.tabSlaveView = new System.Windows.Forms.TabPage(); 37 37 this.slaveView = new HeuristicLab.Clients.Hive.SlaveCore.Views.SlaveView(); 38 this.tabJobs = new System.Windows.Forms.TabPage(); 39 this.jobsView = new HeuristicLab.Clients.Hive.SlaveCore.Views.JobsView(); 38 40 this.tabLog = new System.Windows.Forms.TabPage(); 39 41 this.logView = new HeuristicLab.Clients.Hive.SlaveCore.Views.LogView(); … … 43 45 this.mainTabControl.SuspendLayout(); 44 46 this.tabSlaveView.SuspendLayout(); 47 this.tabJobs.SuspendLayout(); 45 48 this.tabLog.SuspendLayout(); 46 49 this.tabAbout.SuspendLayout(); … … 98 101 // mainTabControl 99 102 // 100 this.mainTabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)101 | System.Windows.Forms.AnchorStyles.Left)102 | System.Windows.Forms.AnchorStyles.Right)));103 103 this.mainTabControl.Controls.Add(this.tabSlaveView); 104 this.mainTabControl.Controls.Add(this.tabJobs); 104 105 this.mainTabControl.Controls.Add(this.tabLog); 105 106 this.mainTabControl.Controls.Add(this.tabAbout); 106 this.mainTabControl.Location = new System.Drawing.Point(12, 12); 107 this.mainTabControl.Dock = System.Windows.Forms.DockStyle.Fill; 108 this.mainTabControl.Location = new System.Drawing.Point(0, 0); 109 this.mainTabControl.Margin = new System.Windows.Forms.Padding(1); 107 110 this.mainTabControl.Name = "mainTabControl"; 108 111 this.mainTabControl.SelectedIndex = 0; 109 this.mainTabControl.Size = new System.Drawing.Size( 581, 369);112 this.mainTabControl.Size = new System.Drawing.Size(605, 393); 110 113 this.mainTabControl.TabIndex = 1; 111 114 // … … 116 119 this.tabSlaveView.Name = "tabSlaveView"; 117 120 this.tabSlaveView.Padding = new System.Windows.Forms.Padding(3); 118 this.tabSlaveView.Size = new System.Drawing.Size(5 73, 343);121 this.tabSlaveView.Size = new System.Drawing.Size(597, 367); 119 122 this.tabSlaveView.TabIndex = 0; 120 123 this.tabSlaveView.Text = "Overview"; … … 131 134 this.slaveView.Name = "slaveView"; 132 135 this.slaveView.ReadOnly = false; 133 this.slaveView.Size = new System.Drawing.Size(5 61, 331);136 this.slaveView.Size = new System.Drawing.Size(585, 355); 134 137 this.slaveView.TabIndex = 0; 138 // 139 // tabJobs 140 // 141 this.tabJobs.Controls.Add(this.jobsView); 142 this.tabJobs.Location = new System.Drawing.Point(4, 22); 143 this.tabJobs.Name = "tabJobs"; 144 this.tabJobs.Size = new System.Drawing.Size(597, 367); 145 this.tabJobs.TabIndex = 3; 146 this.tabJobs.Text = "Jobs"; 147 this.tabJobs.UseVisualStyleBackColor = true; 148 // 149 // jobsView 150 // 151 this.jobsView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 152 | System.Windows.Forms.AnchorStyles.Left) 153 | System.Windows.Forms.AnchorStyles.Right))); 154 this.jobsView.Caption = "JobsView"; 155 this.jobsView.Content = null; 156 this.jobsView.Location = new System.Drawing.Point(4, 4); 157 this.jobsView.Name = "jobsView"; 158 this.jobsView.ReadOnly = false; 159 this.jobsView.Size = new System.Drawing.Size(590, 360); 160 this.jobsView.TabIndex = 0; 135 161 // 136 162 // tabLog … … 140 166 this.tabLog.Name = "tabLog"; 141 167 this.tabLog.Padding = new System.Windows.Forms.Padding(3); 142 this.tabLog.Size = new System.Drawing.Size(5 73, 277);168 this.tabLog.Size = new System.Drawing.Size(597, 367); 143 169 this.tabLog.TabIndex = 1; 144 170 this.tabLog.Text = "Log"; … … 155 181 this.logView.Name = "logView"; 156 182 this.logView.ReadOnly = false; 157 this.logView.Size = new System.Drawing.Size(5 60, 264);183 this.logView.Size = new System.Drawing.Size(584, 352); 158 184 this.logView.TabIndex = 0; 159 185 // … … 163 189 this.tabAbout.Location = new System.Drawing.Point(4, 22); 164 190 this.tabAbout.Name = "tabAbout"; 165 this.tabAbout.Size = new System.Drawing.Size(57 3, 277);191 this.tabAbout.Size = new System.Drawing.Size(577, 347); 166 192 this.tabAbout.TabIndex = 2; 167 193 this.tabAbout.Text = "About HeuristicLab Hive"; … … 178 204 this.aboutView.Name = "aboutView"; 179 205 this.aboutView.ReadOnly = false; 180 this.aboutView.Size = new System.Drawing.Size(5 67, 271);206 this.aboutView.Size = new System.Drawing.Size(571, 275); 181 207 this.aboutView.TabIndex = 0; 182 208 // … … 187 213 this.ClientSize = new System.Drawing.Size(605, 393); 188 214 this.Controls.Add(this.mainTabControl); 189 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;190 215 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 191 216 this.Name = "MainWindow"; … … 195 220 this.mainTabControl.ResumeLayout(false); 196 221 this.tabSlaveView.ResumeLayout(false); 222 this.tabJobs.ResumeLayout(false); 197 223 this.tabLog.ResumeLayout(false); 198 224 this.tabAbout.ResumeLayout(false); … … 216 242 private System.Windows.Forms.ToolStripSeparator toolStripSeparator; 217 243 private System.Windows.Forms.ToolStripMenuItem homepageToolStripMenuItem; 244 private System.Windows.Forms.TabPage tabJobs; 245 private Views.JobsView jobsView; 218 246 } 219 247 } -
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.SlaveTrayIcon/MainWindow.cs
r6257 r6263 12 12 slaveView.Content = value; 13 13 logView.Content = value; 14 jobsView.Content = value; 14 15 Content.UserVisibleMessageFired += new EventHandler<Common.EventArgs<string>>(Content_UserVisibleMessageFired); 15 16 } … … 58 59 e.Cancel = true; 59 60 MinimizeToTray(); 60 } else {61 if (Content != null) {62 Content.StopAll();63 }64 61 } 65 62 } … … 72 69 System.Diagnostics.Process.Start("http://dev.heuristiclab.com"); 73 70 } 74 75 76 71 } 77 72 }
Note: See TracChangeset
for help on using the changeset viewer.