- Timestamp:
- 09/14/11 13:59:25 (13 years ago)
- Location:
- branches/PersistenceSpeedUp
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceSpeedUp ¶
- Property svn:ignore
-
TabularUnified
old new 12 12 *.psess 13 13 *.vsp 14 *.docstates
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
TabularUnified branches/PersistenceSpeedUp/HeuristicLab.MainForm.WindowsForms/3.3/Controls/ViewHost.Designer.cs ¶
r5956 r6760 51 51 this.viewContextMenuStrip = new HeuristicLab.MainForm.WindowsForms.ViewContextMenuStrip(); 52 52 this.toolTip = new System.Windows.Forms.ToolTip(this.components); 53 this.configurationLabel = new System.Windows.Forms.Label(); 53 54 this.SuspendLayout(); 54 55 // … … 86 87 this.viewContextMenuStrip.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.viewContextMenuStrip_ItemClicked); 87 88 // 89 // configurationLabel 90 // 91 this.configurationLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 92 this.configurationLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.EditInformation; 93 this.configurationLabel.Location = new System.Drawing.Point(211, 22); 94 this.configurationLabel.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3); 95 this.configurationLabel.Name = "configurationLabel"; 96 this.configurationLabel.Size = new System.Drawing.Size(16, 16); 97 this.configurationLabel.TabIndex = 0; 98 this.configurationLabel.Visible = false; 99 this.configurationLabel.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.configurationLabel_MouseDoubleClick); 100 // 88 101 // ViewHost 89 102 // … … 91 104 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 92 105 this.Controls.Add(this.viewsLabel); 106 this.Controls.Add(this.configurationLabel); 93 107 this.Controls.Add(this.messageLabel); 94 108 this.Name = "ViewHost"; … … 103 117 private System.Windows.Forms.ToolTip toolTip; 104 118 private HeuristicLab.MainForm.WindowsForms.ViewContextMenuStrip viewContextMenuStrip; 119 private System.Windows.Forms.Label configurationLabel; 105 120 106 121 } -
TabularUnified branches/PersistenceSpeedUp/HeuristicLab.MainForm.WindowsForms/3.3/Controls/ViewHost.cs ¶
r5956 r6760 81 81 if (cached != null) { 82 82 Controls.Remove(cached); 83 cached.Dispose();84 83 } 85 84 cachedView = null; … … 101 100 } 102 101 } else viewType = null; 102 configurationLabel.Visible = activeView is IConfigureableView; 103 configurationLabel.Enabled = activeView != null && !activeView.Locked; 103 104 } 104 105 } … … 189 190 private void activeView_LockedChanged(object sender, EventArgs e) { 190 191 Locked = activeView.Locked; 192 configurationLabel.Enabled = !activeView.Locked; 191 193 } 192 194 … … 200 202 base.OnSizeChanged(e); 201 203 viewsLabel.Location = new Point(Width - viewsLabel.Margin.Right - viewsLabel.Width, viewsLabel.Margin.Top); 204 configurationLabel.Location = new Point(Width - configurationLabel.Margin.Right - configurationLabel.Width, viewsLabel.Bottom + viewsLabel.Margin.Bottom + configurationLabel.Margin.Top); 205 202 206 } 203 207 … … 287 291 startDragAndDrop = false; 288 292 } 293 294 private void configurationLabel_MouseDoubleClick(object sender, MouseEventArgs e) { 295 ((IConfigureableView)ActiveView).ShowConfiguration(); 296 } 289 297 #endregion 290 298 } -
TabularUnified branches/PersistenceSpeedUp/HeuristicLab.MainForm.WindowsForms/3.3/HeuristicLabMainFormWindowsFormsPlugin.cs.frame ¶
r6099 r6760 26 26 27 27 namespace HeuristicLab.MainForm.WindowsForms { 28 [Plugin("HeuristicLab.MainForm.WindowsForms", "3.3. 4.$WCREV$")]28 [Plugin("HeuristicLab.MainForm.WindowsForms", "3.3.5.$WCREV$")] 29 29 [PluginFile("HeuristicLab.MainForm.WindowsForms-3.3.dll", PluginFileType.Assembly)] 30 30 [PluginDependency("HeuristicLab.Common", "3.3")] -
TabularUnified branches/PersistenceSpeedUp/HeuristicLab.MainForm.WindowsForms/3.3/Properties/AssemblyInfo.frame ¶
r6099 r6760 54 54 // by using the '*' as shown below: 55 55 [assembly: AssemblyVersion("3.3.0.0")] 56 [assembly: AssemblyFileVersion("3.3. 4.$WCREV$")]56 [assembly: AssemblyFileVersion("3.3.5.$WCREV$")]
Note: See TracChangeset
for help on using the changeset viewer.