diff --git a/Properties/Resources.Designer.cs b/Properties/Resources.Designer.cs index 0fe47ac..4751479 100644 --- a/Properties/Resources.Designer.cs +++ b/Properties/Resources.Designer.cs @@ -147,6 +147,16 @@ namespace bzit.bomg.Properties { } } + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap file_text { + get { + object obj = ResourceManager.GetObject("file_text", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// @@ -200,9 +210,9 @@ namespace bzit.bomg.Properties { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap page_white_world_bw { + internal static System.Drawing.Bitmap hexagon { get { - object obj = ResourceManager.GetObject("page_white_world_bw", resourceCulture); + object obj = ResourceManager.GetObject("hexagon", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -237,16 +247,6 @@ namespace bzit.bomg.Properties { } } - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap transmit_blue { - get { - object obj = ResourceManager.GetObject("transmit_blue", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// diff --git a/Properties/Resources.resx b/Properties/Resources.resx index 6d715ff..bdc354f 100644 --- a/Properties/Resources.resx +++ b/Properties/Resources.resx @@ -145,6 +145,9 @@ ..\Resources\2\file-plus.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\2\file-text.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\Resources\folder.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -160,8 +163,8 @@ ..\Resources\2\help-circle.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\page_white_world_bw.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\2\hexagon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\2\save.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -172,9 +175,6 @@ ..\Resources\2\settings.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\transmit_blue.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\Resources\2\trash-2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a diff --git a/Resources/2/file-text.png b/Resources/2/file-text.png new file mode 100644 index 0000000..4772be9 Binary files /dev/null and b/Resources/2/file-text.png differ diff --git a/Resources/2/hexagon.png b/Resources/2/hexagon.png new file mode 100644 index 0000000..01e6fdb Binary files /dev/null and b/Resources/2/hexagon.png differ diff --git a/Resources/2/svg/book-open.svg b/Resources/2/svg/book-open.svg new file mode 100644 index 0000000..5e0ca0a --- /dev/null +++ b/Resources/2/svg/book-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Resources/2/svg/circle.svg b/Resources/2/svg/circle.svg new file mode 100644 index 0000000..b009088 --- /dev/null +++ b/Resources/2/svg/circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Resources/2/svg/globe.svg b/Resources/2/svg/globe.svg new file mode 100644 index 0000000..0a0586d --- /dev/null +++ b/Resources/2/svg/globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Resources/2/svg/hexagon.svg b/Resources/2/svg/hexagon.svg new file mode 100644 index 0000000..eae7f25 --- /dev/null +++ b/Resources/2/svg/hexagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Windows/Forms/BookmarkTreeView.cs b/Windows/Forms/BookmarkTreeView.cs index 5cd01f5..cf067fb 100644 --- a/Windows/Forms/BookmarkTreeView.cs +++ b/Windows/Forms/BookmarkTreeView.cs @@ -52,10 +52,10 @@ namespace RyzStudio.Windows.Forms this.ImageList.TransparentColor = Color.Transparent; this.ImageList.Images.Clear(); - this.ImageList.Images.Add(Resources.transmit_blue); + this.ImageList.Images.Add(Resources.hexagon); this.ImageList.Images.Add(Resources.folder); this.ImageList.Images.Add(Resources.folder_explore); - this.ImageList.Images.Add(Resources.page_white_world_bw); + this.ImageList.Images.Add(Resources.file_text); this.PathSeparator = "\n"; } diff --git a/bomg.csproj b/bomg.csproj index 0de7fdf..7882b90 100644 --- a/bomg.csproj +++ b/bomg.csproj @@ -266,6 +266,11 @@ + + + + +