Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/12/11 09:13:15 (14 years ago)
Author:
abeham
Message:

#1337

  • Renamed VS2008ImageLibrary resource to VSImageLibrary
  • Added Filter icon to the VS2010ImageLibrary folder and the resource manager
Location:
trunk/sources/HeuristicLab.Core.Views/3.3
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core.Views/3.3/Clipboard.Designer.cs

    r5237 r5287  
    120120      //
    121121      this.sortDescendingButton.Enabled = false;
    122       this.sortDescendingButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.SortUp;
     122      this.sortDescendingButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.SortUp;
    123123      this.sortDescendingButton.Location = new System.Drawing.Point(30, 0);
    124124      this.sortDescendingButton.Name = "sortDescendingButton";
     
    132132      //
    133133      this.sortAscendingButton.Enabled = false;
    134       this.sortAscendingButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Sort;
     134      this.sortAscendingButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Sort;
    135135      this.sortAscendingButton.Location = new System.Drawing.Point(60, 0);
    136136      this.sortAscendingButton.Name = "sortAscendingButton";
     
    144144      //
    145145      this.removeButton.Enabled = false;
    146       this.removeButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Remove;
     146      this.removeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
    147147      this.removeButton.Location = new System.Drawing.Point(90, 0);
    148148      this.removeButton.Name = "removeButton";
     
    155155      // addButton
    156156      //
    157       this.addButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Add;
     157      this.addButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Add;
    158158      this.addButton.Location = new System.Drawing.Point(0, 0);
    159159      this.addButton.Name = "addButton";
     
    166166      // saveButton
    167167      //
    168       this.saveButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Save;
     168      this.saveButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save;
    169169      this.saveButton.Location = new System.Drawing.Point(120, 0);
    170170      this.saveButton.Name = "saveButton";
  • trunk/sources/HeuristicLab.Core.Views/3.3/ItemArrayView.Designer.cs

    r5237 r5287  
    2020#endregion
    2121
    22 using System;
    2322using System.Windows.Forms;
    2423
     
    8483      //
    8584      this.addButton.Enabled = false;
    86       this.addButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Add;
     85      this.addButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Add;
    8786      this.addButton.Location = new System.Drawing.Point(3, 3);
    8887      this.addButton.Name = "addButton";
     
    9695      //
    9796      this.moveUpButton.Enabled = false;
    98       this.moveUpButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.ArrowUp;
     97      this.moveUpButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.ArrowUp;
    9998      this.moveUpButton.Location = new System.Drawing.Point(33, 3);
    10099      this.moveUpButton.Name = "moveUpButton";
     
    108107      //
    109108      this.removeButton.Enabled = false;
    110       this.removeButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Remove;
     109      this.removeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
    111110      this.removeButton.Location = new System.Drawing.Point(93, 3);
    112111      this.removeButton.Name = "removeButton";
     
    120119      //
    121120      this.moveDownButton.Enabled = false;
    122       this.moveDownButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.ArrowDown;
     121      this.moveDownButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.ArrowDown;
    123122      this.moveDownButton.Location = new System.Drawing.Point(63, 3);
    124123      this.moveDownButton.Name = "moveDownButton";
     
    204203      this.showDetailsCheckBox.Checked = true;
    205204      this.showDetailsCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
    206       this.showDetailsCheckBox.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Properties;
     205      this.showDetailsCheckBox.Image = HeuristicLab.Common.Resources.VSImageLibrary.Properties;
    207206      this.showDetailsCheckBox.Location = new System.Drawing.Point(123, 3);
    208207      this.showDetailsCheckBox.Name = "showDetailsCheckBox";
  • trunk/sources/HeuristicLab.Core.Views/3.3/ItemArrayView.cs

    r5239 r5287  
    139139        try {
    140140          return (T)typeSelectorDialog.TypeSelector.CreateInstanceOfSelectedType();
    141         }
    142         catch (Exception ex) {
     141        } catch (Exception ex) {
    143142          ErrorHandling.ShowErrorDialog(this, ex);
    144143        }
     
    150149      if (item == null) {
    151150        listViewItem.Text = "null";
    152         itemsListView.SmallImageList.Images.Add(HeuristicLab.Common.Resources.VS2008ImageLibrary.Nothing);
     151        itemsListView.SmallImageList.Images.Add(HeuristicLab.Common.Resources.VSImageLibrary.Nothing);
    153152        listViewItem.ImageIndex = itemsListView.SmallImageList.Images.Count - 1;
    154153      } else {
     
    197196      T item = listViewItem.Tag as T;
    198197      int i = listViewItem.ImageIndex;
    199       listViewItem.ImageList.Images[i] = item == null ? HeuristicLab.Common.Resources.VS2008ImageLibrary.Nothing : item.ItemImage;
     198      listViewItem.ImageList.Images[i] = item == null ? HeuristicLab.Common.Resources.VSImageLibrary.Nothing : item.ItemImage;
    200199      listViewItem.ImageIndex = -1;
    201200      listViewItem.ImageIndex = i;
     
    445444      foreach (ListViewItem listViewItem in itemsListView.Items) {
    446445        T item = listViewItem.Tag as T;
    447         itemsListView.SmallImageList.Images.Add(item == null ? HeuristicLab.Common.Resources.VS2008ImageLibrary.Nothing : item.ItemImage);
     446        itemsListView.SmallImageList.Images.Add(item == null ? HeuristicLab.Common.Resources.VSImageLibrary.Nothing : item.ItemImage);
    448447        listViewItem.ImageIndex = itemsListView.SmallImageList.Images.Count - 1;
    449448      }
  • trunk/sources/HeuristicLab.Core.Views/3.3/ItemCollectionView.Designer.cs

    r5237 r5287  
    116116      //
    117117      this.sortDescendingButton.Enabled = false;
    118       this.sortDescendingButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.SortUp;
     118      this.sortDescendingButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.SortUp;
    119119      this.sortDescendingButton.Location = new System.Drawing.Point(33, 3);
    120120      this.sortDescendingButton.Name = "sortDescendingButton";
     
    128128      //
    129129      this.sortAscendingButton.Enabled = false;
    130       this.sortAscendingButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Sort;
     130      this.sortAscendingButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Sort;
    131131      this.sortAscendingButton.Location = new System.Drawing.Point(63, 3);
    132132      this.sortAscendingButton.Name = "sortAscendingButton";
     
    140140      //
    141141      this.removeButton.Enabled = false;
    142       this.removeButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Remove;
     142      this.removeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
    143143      this.removeButton.Location = new System.Drawing.Point(93, 3);
    144144      this.removeButton.Name = "removeButton";
     
    151151      // addButton
    152152      //
    153       this.addButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Add;
     153      this.addButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Add;
    154154      this.addButton.Location = new System.Drawing.Point(3, 3);
    155155      this.addButton.Name = "addButton";
     
    203203      this.showDetailsCheckBox.Checked = true;
    204204      this.showDetailsCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
    205       this.showDetailsCheckBox.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Properties;
     205      this.showDetailsCheckBox.Image = HeuristicLab.Common.Resources.VSImageLibrary.Properties;
    206206      this.showDetailsCheckBox.Location = new System.Drawing.Point(123, 3);
    207207      this.showDetailsCheckBox.Name = "showDetailsCheckBox";
  • trunk/sources/HeuristicLab.Core.Views/3.3/ItemCollectionView.cs

    r5239 r5287  
    128128        try {
    129129          return (T)typeSelectorDialog.TypeSelector.CreateInstanceOfSelectedType();
    130         }
    131         catch (Exception ex) {
     130        } catch (Exception ex) {
    132131          ErrorHandling.ShowErrorDialog(this, ex);
    133132        }
     
    139138      if (item == null) {
    140139        listViewItem.Text = "null";
    141         itemsListView.SmallImageList.Images.Add(HeuristicLab.Common.Resources.VS2008ImageLibrary.Nothing);
     140        itemsListView.SmallImageList.Images.Add(HeuristicLab.Common.Resources.VSImageLibrary.Nothing);
    142141        listViewItem.ImageIndex = itemsListView.SmallImageList.Images.Count - 1;
    143142      } else {
     
    179178      T item = listViewItem.Tag as T;
    180179      int i = listViewItem.ImageIndex;
    181       listViewItem.ImageList.Images[i] = item == null ? HeuristicLab.Common.Resources.VS2008ImageLibrary.Nothing : item.ItemImage;
     180      listViewItem.ImageList.Images[i] = item == null ? HeuristicLab.Common.Resources.VSImageLibrary.Nothing : item.ItemImage;
    182181      listViewItem.ImageIndex = -1;
    183182      listViewItem.ImageIndex = i;
     
    383382      foreach (ListViewItem listViewItem in itemsListView.Items) {
    384383        T item = listViewItem.Tag as T;
    385         itemsListView.SmallImageList.Images.Add(item == null ? HeuristicLab.Common.Resources.VS2008ImageLibrary.Nothing : item.ItemImage);
     384        itemsListView.SmallImageList.Images.Add(item == null ? HeuristicLab.Common.Resources.VSImageLibrary.Nothing : item.ItemImage);
    386385        listViewItem.ImageIndex = itemsListView.SmallImageList.Images.Count - 1;
    387386      }
  • trunk/sources/HeuristicLab.Core.Views/3.3/ItemListView.Designer.cs

    r5237 r5287  
    2020#endregion
    2121
    22 using System;
    2322using System.Windows.Forms;
    2423
     
    8685      this.showDetailsCheckBox.Checked = true;
    8786      this.showDetailsCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
    88       this.showDetailsCheckBox.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Properties;
     87      this.showDetailsCheckBox.Image = HeuristicLab.Common.Resources.VSImageLibrary.Properties;
    8988      this.showDetailsCheckBox.Location = new System.Drawing.Point(123, 3);
    9089      this.showDetailsCheckBox.Name = "showDetailsCheckBox";
     
    9897      //
    9998      this.removeButton.Enabled = false;
    100       this.removeButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Remove;
     99      this.removeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
    101100      this.removeButton.Location = new System.Drawing.Point(93, 3);
    102101      this.removeButton.Name = "removeButton";
     
    110109      //
    111110      this.moveUpButton.Enabled = false;
    112       this.moveUpButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.ArrowUp;
     111      this.moveUpButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.ArrowUp;
    113112      this.moveUpButton.Location = new System.Drawing.Point(33, 3);
    114113      this.moveUpButton.Name = "moveUpButton";
     
    122121      //
    123122      this.moveDownButton.Enabled = false;
    124       this.moveDownButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.ArrowDown;
     123      this.moveDownButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.ArrowDown;
    125124      this.moveDownButton.Location = new System.Drawing.Point(63, 3);
    126125      this.moveDownButton.Name = "moveDownButton";
     
    165164      // addButton
    166165      //
    167       this.addButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Add;
     166      this.addButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Add;
    168167      this.addButton.Location = new System.Drawing.Point(3, 3);
    169168      this.addButton.Name = "addButton";
  • trunk/sources/HeuristicLab.Core.Views/3.3/ItemListView.cs

    r5239 r5287  
    142142        try {
    143143          return (T)typeSelectorDialog.TypeSelector.CreateInstanceOfSelectedType();
    144         }
    145         catch (Exception ex) {
     144        } catch (Exception ex) {
    146145          ErrorHandling.ShowErrorDialog(this, ex);
    147146        }
     
    153152      if (item == null) {
    154153        listViewItem.Text = "null";
    155         itemsListView.SmallImageList.Images.Add(HeuristicLab.Common.Resources.VS2008ImageLibrary.Nothing);
     154        itemsListView.SmallImageList.Images.Add(HeuristicLab.Common.Resources.VSImageLibrary.Nothing);
    156155        listViewItem.ImageIndex = itemsListView.SmallImageList.Images.Count - 1;
    157156      } else {
     
    200199      T item = listViewItem.Tag as T;
    201200      int i = listViewItem.ImageIndex;
    202       listViewItem.ImageList.Images[i] = item == null ? HeuristicLab.Common.Resources.VS2008ImageLibrary.Nothing : item.ItemImage;
     201      listViewItem.ImageList.Images[i] = item == null ? HeuristicLab.Common.Resources.VSImageLibrary.Nothing : item.ItemImage;
    203202      listViewItem.ImageIndex = -1;
    204203      listViewItem.ImageIndex = i;
     
    462461      foreach (ListViewItem listViewItem in itemsListView.Items) {
    463462        T item = listViewItem.Tag as T;
    464         itemsListView.SmallImageList.Images.Add(item == null ? HeuristicLab.Common.Resources.VS2008ImageLibrary.Nothing : item.ItemImage);
     463        itemsListView.SmallImageList.Images.Add(item == null ? HeuristicLab.Common.Resources.VSImageLibrary.Nothing : item.ItemImage);
    465464        listViewItem.ImageIndex = itemsListView.SmallImageList.Images.Count - 1;
    466465      }
  • trunk/sources/HeuristicLab.Core.Views/3.3/MovieView.Designer.cs

    r4715 r5287  
    117117      //
    118118      this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
    119       this.stopButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Stop;
     119      this.stopButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Stop;
    120120      this.stopButton.Location = new System.Drawing.Point(36, 355);
    121121      this.stopButton.Name = "stopButton";
     
    129129      //
    130130      this.nextButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
    131       this.nextButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.MoveNext;
     131      this.nextButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.MoveNext;
    132132      this.nextButton.Location = new System.Drawing.Point(472, 325);
    133133      this.nextButton.Name = "nextButton";
     
    140140      //
    141141      this.lastButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
    142       this.lastButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.MoveLast;
     142      this.lastButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.MoveLast;
    143143      this.lastButton.Location = new System.Drawing.Point(502, 325);
    144144      this.lastButton.Name = "lastButton";
     
    152152      //
    153153      this.playButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
    154       this.playButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Play;
     154      this.playButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Play;
    155155      this.playButton.Location = new System.Drawing.Point(6, 355);
    156156      this.playButton.Name = "playButton";
     
    164164      //
    165165      this.previousButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
    166       this.previousButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.MovePrevious;
     166      this.previousButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.MovePrevious;
    167167      this.previousButton.Location = new System.Drawing.Point(36, 325);
    168168      this.previousButton.Name = "previousButton";
     
    175175      //
    176176      this.firstButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
    177       this.firstButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.MoveFirst;
     177      this.firstButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.MoveFirst;
    178178      this.firstButton.Location = new System.Drawing.Point(6, 325);
    179179      this.firstButton.Name = "firstButton";
  • trunk/sources/HeuristicLab.Core.Views/3.3/OperatorTreeView.cs

    r5237 r5287  
    113113        node.Text += "-";
    114114        node.ToolTipText = "";
    115         graphTreeView.ImageList.Images.Add(HeuristicLab.Common.Resources.VS2008ImageLibrary.Nothing);
     115        graphTreeView.ImageList.Images.Add(HeuristicLab.Common.Resources.VSImageLibrary.Nothing);
    116116        node.ImageIndex = graphTreeView.ImageList.Images.Count - 1;
    117117        node.SelectedImageIndex = node.ImageIndex;
  • trunk/sources/HeuristicLab.Core.Views/3.3/TypeSelector.Designer.cs

    r5237 r5287  
    135135      // searchLabel
    136136      //
    137       this.searchLabel.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Zoom;
     137      this.searchLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Zoom;
    138138      this.searchLabel.Location = new System.Drawing.Point(3, 3);
    139139      this.searchLabel.Name = "searchLabel";
     
    171171      this.setTypeParameterButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
    172172      this.setTypeParameterButton.Enabled = false;
    173       this.setTypeParameterButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Edit;
     173      this.setTypeParameterButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Edit;
    174174      this.setTypeParameterButton.Location = new System.Drawing.Point(189, 19);
    175175      this.setTypeParameterButton.Name = "setTypeParameterButton";
  • trunk/sources/HeuristicLab.Core.Views/3.3/TypeSelector.cs

    r5237 r5287  
    9999        treeNodes.Clear();
    100100        imageList.Images.Clear();
    101         imageList.Images.Add(HeuristicLab.Common.Resources.VS2008ImageLibrary.Class);      // default icon
    102         imageList.Images.Add(HeuristicLab.Common.Resources.VS2008ImageLibrary.Namespace);  // plugins
    103         imageList.Images.Add(HeuristicLab.Common.Resources.VS2008ImageLibrary.Interface);  // interfaces
    104         imageList.Images.Add(HeuristicLab.Common.Resources.VS2008ImageLibrary.Template);   // generic types
     101        imageList.Images.Add(HeuristicLab.Common.Resources.VSImageLibrary.Class);      // default icon
     102        imageList.Images.Add(HeuristicLab.Common.Resources.VSImageLibrary.Namespace);  // plugins
     103        imageList.Images.Add(HeuristicLab.Common.Resources.VSImageLibrary.Interface);  // interfaces
     104        imageList.Images.Add(HeuristicLab.Common.Resources.VSImageLibrary.Template);   // generic types
    105105
    106106        var plugins = from p in ApplicationManager.Manager.Plugins
     
    137137                  imageList.Images.Add(type.FullName, item.ItemImage);
    138138                  typeNode.ImageIndex = imageList.Images.IndexOfKey(type.FullName);
    139                 }
    140                 catch (Exception) { }
     139                } catch (Exception) { }
    141140              }
    142141              typeNode.SelectedImageIndex = typeNode.ImageIndex;
  • trunk/sources/HeuristicLab.Core.Views/3.3/VariableView.Designer.cs

    r5237 r5287  
    117117      // clearValueButton
    118118      //
    119       this.clearValueButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Remove;
     119      this.clearValueButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
    120120      this.clearValueButton.Location = new System.Drawing.Point(36, 19);
    121121      this.clearValueButton.Name = "clearValueButton";
     
    128128      // setValueButton
    129129      //
    130       this.setValueButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Edit;
     130      this.setValueButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Edit;
    131131      this.setValueButton.Location = new System.Drawing.Point(6, 19);
    132132      this.setValueButton.Name = "setValueButton";
Note: See TracChangeset for help on using the changeset viewer.