From b6892bc235607f16d252aeeaa13ab2c98672fd25 Mon Sep 17 00:00:00 2001 From: Nikolaj Olsson Date: Sun, 11 Feb 2024 18:41:04 +0100 Subject: [PATCH] Add default icon for layout - thx PaulVeld :) Fix #7899 --- src/ui/Forms/Main.Designer.cs | 19 +++++++++-------- src/ui/Forms/Main.resx | 4 ++-- src/ui/Properties/Resources.Designer.cs | 10 +++++++++ src/ui/Properties/Resources.resx | 27 +++++++++++++----------- src/ui/Resources/Layout.png | Bin 0 -> 2498 bytes src/ui/SubtitleEdit.csproj | 1 + 6 files changed, 38 insertions(+), 23 deletions(-) create mode 100644 src/ui/Resources/Layout.png diff --git a/src/ui/Forms/Main.Designer.cs b/src/ui/Forms/Main.Designer.cs index a1f786e6d..569b2a500 100644 --- a/src/ui/Forms/Main.Designer.cs +++ b/src/ui/Forms/Main.Designer.cs @@ -349,6 +349,7 @@ namespace Nikse.SubtitleEdit.Forms this.genericTranslateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItemUnbreakLines = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItemAutoBreakLines = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripMenuItemEvenlyDistributeLines = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripMenuItemSaveSelectedLines = new System.Windows.Forms.ToolStripMenuItem(); this.typeEffectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.karaokeEffectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); @@ -576,7 +577,6 @@ namespace Nikse.SubtitleEdit.Forms this.timerOriginalTextUndo = new System.Windows.Forms.Timer(this.components); this.contextMenuStripShowVideoControls = new System.Windows.Forms.ContextMenuStrip(this.components); this.toolStripMenuItemShowVideoControls = new System.Windows.Forms.ToolStripMenuItem(); - this.toolStripMenuItemEvenlyDistributeLines = new System.Windows.Forms.ToolStripMenuItem(); this.statusStrip1.SuspendLayout(); this.toolStrip1.SuspendLayout(); this.menuStrip1.SuspendLayout(); @@ -996,10 +996,11 @@ namespace Nikse.SubtitleEdit.Forms // this.toolStripButtonLayout.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButtonLayout.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); + this.toolStripButtonLayout.Image = global::Nikse.SubtitleEdit.Properties.Resources.Layout; this.toolStripButtonLayout.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.toolStripButtonLayout.ImageTransparentColor = System.Drawing.Color.Magenta; this.toolStripButtonLayout.Name = "toolStripButtonLayout"; - this.toolStripButtonLayout.Size = new System.Drawing.Size(23, 37); + this.toolStripButtonLayout.Size = new System.Drawing.Size(36, 37); this.toolStripButtonLayout.Text = "Show/hide waveform"; this.toolStripButtonLayout.Click += new System.EventHandler(this.ToolStripButtonLayoutChooseClick); // @@ -3226,6 +3227,13 @@ namespace Nikse.SubtitleEdit.Forms this.toolStripMenuItemAutoBreakLines.Text = "Auto balance selected lines..."; this.toolStripMenuItemAutoBreakLines.Click += new System.EventHandler(this.ToolStripMenuItemAutoBreakLinesClick); // + // toolStripMenuItemEvenlyDistributeLines + // + this.toolStripMenuItemEvenlyDistributeLines.Name = "toolStripMenuItemEvenlyDistributeLines"; + this.toolStripMenuItemEvenlyDistributeLines.Size = new System.Drawing.Size(275, 22); + this.toolStripMenuItemEvenlyDistributeLines.Text = "Evenly distribute lines (CPS)..."; + this.toolStripMenuItemEvenlyDistributeLines.Click += new System.EventHandler(this.ToolStripMenuItemEvenlyDistributeLinesClick); + // // toolStripMenuItemSaveSelectedLines // this.toolStripMenuItemSaveSelectedLines.Name = "toolStripMenuItemSaveSelectedLines"; @@ -5847,13 +5855,6 @@ namespace Nikse.SubtitleEdit.Forms this.toolStripMenuItemShowVideoControls.Text = "Show video controls"; this.toolStripMenuItemShowVideoControls.Click += new System.EventHandler(this.ToolStripMenuItemShowVideoControlsClick); // - // toolStripMenuItemEvenlyDistributeLines - // - this.toolStripMenuItemEvenlyDistributeLines.Name = "toolStripMenuItemEvenlyDistributeLines"; - this.toolStripMenuItemEvenlyDistributeLines.Size = new System.Drawing.Size(275, 22); - this.toolStripMenuItemEvenlyDistributeLines.Text = "Evenly distribute lines (CPS)..."; - this.toolStripMenuItemEvenlyDistributeLines.Click += new System.EventHandler(this.ToolStripMenuItemEvenlyDistributeLinesClick); - // // Main // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); diff --git a/src/ui/Forms/Main.resx b/src/ui/Forms/Main.resx index c24bd088c..00439894c 100644 --- a/src/ui/Forms/Main.resx +++ b/src/ui/Forms/Main.resx @@ -730,9 +730,9 @@ iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 - YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACJSURBVEhLYxjioPT6M4aKawVQHvEApAekFydIv/6bofx6 + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACJSURBVEhLYxjioPT6M4aKawVQHvEApAekFydIu/6bofx6 A5RHPADpAenFCbAZXHk1ACi2nqHi6n44BokhA5INrrpiwFBx/T9Q7DxYHILPg8VAcjBAssEgNsgQdACx - DFXdqMFgMGowlDdqMCUG0yxLgwCowEEugEAFEsWFELGAoME0K+gHP2BgAADj1Bh2gurMTQAAAABJRU5E + DFXdqMFgMGowlDdqMCUG0yxLgwCowEEugEAFEsWFELGAoME0K+gHP2BgAABpZBhW3VPvKwAAAABJRU5E rkJggg== diff --git a/src/ui/Properties/Resources.Designer.cs b/src/ui/Properties/Resources.Designer.cs index 9b17d3945..2a5c7e6f5 100644 --- a/src/ui/Properties/Resources.Designer.cs +++ b/src/ui/Properties/Resources.Designer.cs @@ -280,6 +280,16 @@ namespace Nikse.SubtitleEdit.Properties { } } + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Layout { + get { + object obj = ResourceManager.GetObject("Layout", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// diff --git a/src/ui/Properties/Resources.resx b/src/ui/Properties/Resources.resx index 34b18653b..098d605fd 100644 --- a/src/ui/Properties/Resources.resx +++ b/src/ui/Properties/Resources.resx @@ -118,15 +118,9 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - ..\Resources\L2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\Resources\L3.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\L1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - ..\Resources\webvtt.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -142,6 +136,9 @@ ..\Icons\Settings.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\L7.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\Resources\color-picker-small2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -154,12 +151,15 @@ ..\Resources\Error.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\L8.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\L2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\bookmark22dark.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\L11.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + ..\Resources\ebu.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -196,8 +196,11 @@ ..\Resources\SE.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\L7.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\L8.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\L1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\Help32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -205,7 +208,7 @@ ..\Resources\Information.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\Resources\L11.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\Resources\Layout.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a \ No newline at end of file diff --git a/src/ui/Resources/Layout.png b/src/ui/Resources/Layout.png new file mode 100644 index 0000000000000000000000000000000000000000..a4ad93747c9a44e2a0f0b8121d86228878c44e30 GIT binary patch literal 2498 zcmbVO3se(l8XZ6ZQCfNEveqNBL#u#JX7Yd}1L2_oc{CuHE_7|TPG%+$NircbK!PB_ zx)v01TY(~?AhlZ-UmV%21wpauS_=h>N2$wVb!|lvq-wQTq}>UR)VB6}EJ^(QD zoJN_-rYc^<2wKO(Nm@nmOgaOH27u6TlL03(C>B&vX&Su@8aZ|X0yU%zN(oY+3d0I2 zT@#aQq*mu9D2dz*LP|p6VPL2U;|O#Vi-RVeR?lE288pF*ackRc1Og`@Y=#VqvS?;lQWWPELk2s zCB|LJpmdfsU=2r57X0+>UBw@!HvW(gZagsnNEv2LMEW=^> zcB~7rDwO~isMSK4ASo402t;aFCE%-I z9G6mJQldh|;^681a+=7pRo1qDvdc-D;5fclm8e8Q5kab8R3Hw5RZ>wfERl-EFey@r z)IwaSLWM!oY>7q<_oCt2Cs}Q-NRCmhCMBqv#9=fjNCNYPoGYoC;==+0rwB?ysVP;k zt(zwr1dGuyT3}6$8S=e+Mkn7aiqUc z{7H3&R%Xm(lb(KR{YTCC|5%?&3z3fN(PUK7ur7)R4^ZpPV`_UX!9*yl5)=ctX`^o7>9Tm}HAnpkC&nec`}j%cwaaD}p35`XJ-WHBgVD!XQ%neP#D)Bp5W1#>&wV>4Xp zijucTQbZRE10-Ji0^4#%tP6+kx4zf5eetc0A=0tCV_o#YriaI!zeEby+gl6XX+G~2 zRqo|ZfK8iMC(z^O;SWN93&Iroc2nuj{YU3j{qiVhqr6;JKH|H zqcRY>dij-COj|qFq>Sbj)Qq{f9F#Km@3$Vamfu*SxIVU|UpBfYk%w%|Z7=ml);juL z8GXhwc4ARuzUDcPfV9+%%l-YjgIWilg$;Yg={r{soLcJ~w=}No!!t+4{694>hW;~l zZDk3+KJdA;-oosLH2@Ip?sa)aS8mDg9c$ytEJ;rJjW1V}1JdESz~2{V9qIA`q8bL> zwtRiuxmKg})>_kM*H#X;o!$8fP@>3KfYe{D-VfZ1e6z?}uI+Q^`Mk8d(eIMQ>w?LA zamMv(*kQ{x{~rHgXNw#bKj_*%2mIH*uM;26^ESQK7k1dGxF>aFtIqS)Wpiq;hxlCI z{NX@VaB{8RMP}d?Vo}xc$`*Bv)0uTI++UOtoe^Ew7y~hHN--y`hSiH^ZZt)?CtEA!1ma^vUNgs)@zPBAk+rno>{3Gy#&YYX{ zve)O9v1ReYYcsnBdNeiP-VL_I=*!=dhR=_t}C$ITx>DQL8n`tI9+p)7(uDn+}uz(m&sE;dovu4A$UsQg+y7lfio(=zg|8G{H z?)1HalbxMxov+c?XZ{0a!!yH98~?Cd)zs9q((}%<13l-k#(8g?CpK&-+_hd@vwV4n zpSZlBueteA%B;P;&i;qe_x4elnT7B6R&4&We2;TtlxsgPOY!Vqo7usGH8SQv-Rlrj z@tvC`p!?MC4&^_}L)?~(BOg~iANGZLR2-0mI5O?=B^SOao$vN|=3~8OPNgH(9n)IG c`?C8xtw$)(ee%dr+gDa>RD%4_^0gcP2TO#tlK=n! literal 0 HcmV?d00001 diff --git a/src/ui/SubtitleEdit.csproj b/src/ui/SubtitleEdit.csproj index e37155f06..5975ec30c 100644 --- a/src/ui/SubtitleEdit.csproj +++ b/src/ui/SubtitleEdit.csproj @@ -2597,6 +2597,7 @@ + Designer