- Timestamp:
- 10/18/18 16:16:31 (6 years ago)
- Location:
- branches/2915-AbsoluteSymbol
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2915-AbsoluteSymbol
- Property svn:mergeinfo changed
-
branches/2915-AbsoluteSymbol/HeuristicLab.Clients.OKB.Views
- Property svn:mergeinfo changed
/branches/2839_HiveProjectManagement/HeuristicLab.Clients.OKB.Views (added) merged: 15953,16044,16057 /trunk/HeuristicLab.Clients.OKB.Views (added) merged: 16024-16025,16032-16033,16117
- Property svn:mergeinfo changed
-
branches/2915-AbsoluteSymbol/HeuristicLab.Clients.OKB.Views/3.3/Administration/Views/AlgorithmView.Designer.cs
r15583 r16240 42 42 this.usersTabPage = new System.Windows.Forms.TabPage(); 43 43 this.storeUsersButton = new System.Windows.Forms.Button(); 44 this.refreshableLightweightUserView = new HeuristicLab.Clients.Access.Views.RefreshableLightweight UserView();44 this.refreshableLightweightUserView = new HeuristicLab.Clients.Access.Views.RefreshableLightweightAccessClientView(); 45 45 this.dataTabPage = new System.Windows.Forms.TabPage(); 46 46 this.noViewAvailableLabel = new System.Windows.Forms.Label(); … … 147 147 // storeUsersButton 148 148 // 149 this.storeUsersButton.Image = HeuristicLab.Common.Resources.VSImageLibrary. PublishToWeb;149 this.storeUsersButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save; 150 150 this.storeUsersButton.Location = new System.Drawing.Point(37, 9); 151 151 this.storeUsersButton.Name = "storeUsersButton"; … … 250 250 // storeDataButton 251 251 // 252 this.storeDataButton.Image = HeuristicLab.Common.Resources.VSImageLibrary. PublishToWeb;252 this.storeDataButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save; 253 253 this.storeDataButton.Location = new System.Drawing.Point(36, 6); 254 254 this.storeDataButton.Name = "storeDataButton"; … … 394 394 private MainForm.WindowsForms.ViewHost dataViewHost; 395 395 private System.Windows.Forms.Label noViewAvailableLabel; 396 private Access.Views.RefreshableLightweight UserView refreshableLightweightUserView;396 private Access.Views.RefreshableLightweightAccessClientView refreshableLightweightUserView; 397 397 398 398 } -
branches/2915-AbsoluteSymbol/HeuristicLab.Clients.OKB.Views/3.3/Administration/Views/OKBItemView.Designer.cs
r15583 r16240 52 52 // storeButton 53 53 // 54 this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary. PublishToWeb;54 this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save; 55 55 this.storeButton.Location = new System.Drawing.Point(0, 0); 56 56 this.storeButton.Name = "storeButton"; -
branches/2915-AbsoluteSymbol/HeuristicLab.Clients.OKB.Views/3.3/Administration/Views/ProblemView.Designer.cs
r15583 r16240 42 42 this.usersTabPage = new System.Windows.Forms.TabPage(); 43 43 this.storeUsersButton = new System.Windows.Forms.Button(); 44 this.problemUserView = new HeuristicLab.Clients.Access.Views.RefreshableLightweight UserView();44 this.problemUserView = new HeuristicLab.Clients.Access.Views.RefreshableLightweightAccessClientView(); 45 45 this.dataTabPage = new System.Windows.Forms.TabPage(); 46 46 this.noViewAvailableLabel = new System.Windows.Forms.Label(); … … 147 147 // storeUsersButton 148 148 // 149 this.storeUsersButton.Image = HeuristicLab.Common.Resources.VSImageLibrary. PublishToWeb;149 this.storeUsersButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save; 150 150 this.storeUsersButton.Location = new System.Drawing.Point(38, 9); 151 151 this.storeUsersButton.Name = "storeUsersButton"; … … 249 249 // storeDataButton 250 250 // 251 this.storeDataButton.Image = HeuristicLab.Common.Resources.VSImageLibrary. PublishToWeb;251 this.storeDataButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save; 252 252 this.storeDataButton.Location = new System.Drawing.Point(36, 6); 253 253 this.storeDataButton.Name = "storeDataButton"; … … 393 393 private MainForm.WindowsForms.ViewHost dataViewHost; 394 394 private System.Windows.Forms.Label noViewAvailableLabel; 395 private Access.Views.RefreshableLightweight UserView problemUserView;395 private Access.Views.RefreshableLightweightAccessClientView problemUserView; 396 396 397 397 } -
branches/2915-AbsoluteSymbol/HeuristicLab.Clients.OKB.Views/3.3/RunCreation/CreateFromExperimentMenuItem.cs
r15583 r16240 41 41 protected override void OnActiveViewChanged(object sender, EventArgs e) { 42 42 IContentView activeView = MainFormManager.MainForm.ActiveView as IContentView; 43 ToolStripItem.Enabled = (activeView != null) && (activeView.Content != null) && ((activeView.Content is Experiment) || (activeView.Content is RunCollection) || (activeView.Content is IOptimizer)) && !activeView.Locked && OKBRoles.CheckUserPermissions(); 43 44 ToolStripItem.Enabled = (activeView != null) && (activeView.Content != null) 45 && ((activeView.Content is Experiment) || (activeView.Content is RunCollection) || (activeView.Content is IOptimizer)) 46 && !activeView.Locked; 44 47 } 45 48 -
branches/2915-AbsoluteSymbol/HeuristicLab.Clients.OKB.Views/3.3/RunCreation/Views/OKBProblemView.cs
r15583 r16240 72 72 downloadCharacteristicsButton.Image = VSImageLibrary.Refresh; 73 73 uploadCharacteristicsButton.Text = string.Empty; 74 uploadCharacteristicsButton.Image = VSImageLibrary. PublishToWeb;74 uploadCharacteristicsButton.Image = VSImageLibrary.Save; 75 75 refreshSolutionsButton.Text = string.Empty; 76 76 refreshSolutionsButton.Image = VSImageLibrary.Refresh; 77 77 uploadSolutionsButton.Text = string.Empty; 78 uploadSolutionsButton.Image = VSImageLibrary. PublishToWeb;78 uploadSolutionsButton.Image = VSImageLibrary.Save; 79 79 } 80 80 -
branches/2915-AbsoluteSymbol/HeuristicLab.Clients.OKB.Views/3.3/RunCreation/Views/OKBRunView.Designer.cs
r15583 r16240 51 51 // storeButton 52 52 // 53 this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary. PublishToWeb;53 this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save; 54 54 this.storeButton.Location = new System.Drawing.Point(0, 0); 55 55 this.storeButton.Name = "storeButton"; -
branches/2915-AbsoluteSymbol/HeuristicLab.Clients.OKB.Views/3.3/RunCreation/Views/SingleObjectiveOKBSolutionView.cs
r15583 r16240 41 41 refreshButton.Image = VSImageLibrary.Refresh; 42 42 uploadButton.Text = string.Empty; 43 uploadButton.Image = VSImageLibrary. PublishToWeb;43 uploadButton.Image = VSImageLibrary.Save; 44 44 } 45 45
Note: See TracChangeset
for help on using the changeset viewer.