Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/24/10 17:58:03 (14 years ago)
Author:
mkommend
Message:

intermediate version of graph visualization (ticket #867)

Location:
trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/ToolBarItems
Files:
3 edited
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/ToolBarItems/ConnectionToolBarItem.cs

    r2853 r2861  
    2525
    2626namespace HeuristicLab.Operators.Views.GraphVisualization {
    27   internal class PanToolBarItem : HeuristicLab.MainForm.WindowsForms.ToolBarItem, HeuristicLab.Optimizer.IOptimizerUserInterfaceItemProvider {
     27  internal class ConnectionToolBarItem : HeuristicLab.MainForm.WindowsForms.ToolBarItem, HeuristicLab.Optimizer.IOptimizerUserInterfaceItemProvider {
    2828    public override string Name {
    29       get { return "Pan"; }
     29      get { return "Connection"; }
    3030    }
    3131
    3232    public override string ToolTipText {
    33       get { return "Pan"; }
     33      get { return "Connection"; }
    3434    }
    3535    public override int Position {
    36       get { return 130; }
     36      get { return 140; }
    3737    }
    3838    public override Image Image {
    39       get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Macro; }
     39      get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Add; }
    4040    }
    4141
     
    4848      OperatorGraphView view = MainFormManager.MainForm.ActiveView as OperatorGraphView;
    4949      if (view != null)
    50         view.ActivatePanTool();
     50        view.ActivateConnectionTool();
    5151    }
    5252  }
  • trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/ToolBarItems/ZoomInToolBarItem.cs

    r2853 r2861  
    3434    }
    3535    public override int Position {
    36       get { return 141; }
     36      get { return 151; }
    3737    }
    3838    public override Image Image {
    39       get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Sort; }
     39      get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.ArrowUp; }
    4040    }
    4141
  • trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/ToolBarItems/ZoomOutToolBarItem.cs

    r2853 r2861  
    3434    }
    3535    public override int Position {
    36       get { return 142; }
     36      get { return 152; }
    3737    }
    3838    public override Image Image {
    39       get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.SortUp; }
     39      get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.ArrowDown; }
    4040    }
    4141
  • trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/ToolBarItems/ZoomToolBarItem.cs

    r2853 r2861  
    3434    }
    3535    public override int Position {
    36       get { return 140; }
     36      get { return 150; }
    3737    }
    3838    public override Image Image {
Note: See TracChangeset for help on using the changeset viewer.