mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-02-20 13:26:50 +01:00
- UI: added search button (because it is not obvious that the top row of the table is a search/filter row)
This commit is contained in:
35
source/ChanSort/MainForm.Designer.cs
generated
35
source/ChanSort/MainForm.Designer.cs
generated
@@ -104,6 +104,7 @@
|
||||
this.colDebug = new DevExpress.XtraGrid.Columns.GridColumn();
|
||||
this.lblHotkeyRight = new DevExpress.XtraEditors.LabelControl();
|
||||
this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
|
||||
this.btnSearch = new DevExpress.XtraEditors.SimpleButton();
|
||||
this.lblPredefinedList = new DevExpress.XtraEditors.LabelControl();
|
||||
this.btnRemoveRight = new DevExpress.XtraEditors.SimpleButton();
|
||||
this.btnAddAll = new DevExpress.XtraEditors.SimpleButton();
|
||||
@@ -150,12 +151,12 @@
|
||||
this.miCzech = new DevExpress.XtraBars.BarButtonItem();
|
||||
this.miGerman = new DevExpress.XtraBars.BarButtonItem();
|
||||
this.miSpanish = new DevExpress.XtraBars.BarButtonItem();
|
||||
this.miHungarian = new DevExpress.XtraBars.BarButtonItem();
|
||||
this.miPolski = new DevExpress.XtraBars.BarButtonItem();
|
||||
this.miPortuguese = new DevExpress.XtraBars.BarButtonItem();
|
||||
this.miRomanian = new DevExpress.XtraBars.BarButtonItem();
|
||||
this.miRussian = new DevExpress.XtraBars.BarButtonItem();
|
||||
this.miTurkish = new DevExpress.XtraBars.BarButtonItem();
|
||||
this.miHungarian = new DevExpress.XtraBars.BarButtonItem();
|
||||
this.mnuCharset = new DevExpress.XtraBars.BarSubItem();
|
||||
this.miCharsetForm = new DevExpress.XtraBars.BarButtonItem();
|
||||
this.miUtf8Charset = new DevExpress.XtraBars.BarButtonItem();
|
||||
@@ -944,6 +945,7 @@
|
||||
//
|
||||
// panelControl3
|
||||
//
|
||||
this.panelControl3.Controls.Add(this.btnSearch);
|
||||
this.panelControl3.Controls.Add(this.lblPredefinedList);
|
||||
this.panelControl3.Controls.Add(this.btnRemoveRight);
|
||||
this.panelControl3.Controls.Add(this.btnAddAll);
|
||||
@@ -952,6 +954,16 @@
|
||||
resources.ApplyResources(this.panelControl3, "panelControl3");
|
||||
this.panelControl3.Name = "panelControl3";
|
||||
//
|
||||
// btnSearch
|
||||
//
|
||||
resources.ApplyResources(this.btnSearch, "btnSearch");
|
||||
this.btnSearch.Appearance.FontStyleDelta = ((System.Drawing.FontStyle)(resources.GetObject("btnSearch.Appearance.FontStyleDelta")));
|
||||
this.btnSearch.Appearance.Options.UseFont = true;
|
||||
this.btnSearch.ImageOptions.ImageIndex = ((int)(resources.GetObject("btnSearch.ImageOptions.ImageIndex")));
|
||||
this.btnSearch.ImageOptions.ImageList = this.globalImageCollection1;
|
||||
this.btnSearch.Name = "btnSearch";
|
||||
this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
|
||||
//
|
||||
// lblPredefinedList
|
||||
//
|
||||
this.lblPredefinedList.Appearance.Font = ((System.Drawing.Font)(resources.GetObject("lblPredefinedList.Appearance.Font")));
|
||||
@@ -1542,6 +1554,16 @@
|
||||
this.miSpanish.Tag = "es-ES";
|
||||
this.miSpanish.DownChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.miLanguage_DownChanged);
|
||||
//
|
||||
// miHungarian
|
||||
//
|
||||
this.miHungarian.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
|
||||
resources.ApplyResources(this.miHungarian, "miHungarian");
|
||||
this.miHungarian.Id = 111;
|
||||
this.miHungarian.ImageOptions.ImageIndex = ((int)(resources.GetObject("miHungarian.ImageOptions.ImageIndex")));
|
||||
this.miHungarian.Name = "miHungarian";
|
||||
this.miHungarian.Tag = "hu-HU";
|
||||
this.miHungarian.DownChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.miLanguage_DownChanged);
|
||||
//
|
||||
// miPolski
|
||||
//
|
||||
this.miPolski.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
|
||||
@@ -1592,16 +1614,6 @@
|
||||
this.miTurkish.Tag = "tr-TR";
|
||||
this.miTurkish.DownChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.miLanguage_DownChanged);
|
||||
//
|
||||
// miHungarian
|
||||
//
|
||||
this.miHungarian.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
|
||||
resources.ApplyResources(this.miHungarian, "miHungarian");
|
||||
this.miHungarian.Id = 111;
|
||||
this.miHungarian.ImageOptions.ImageIndex = ((int)(resources.GetObject("miHungarian.ImageOptions.ImageIndex")));
|
||||
this.miHungarian.Name = "miHungarian";
|
||||
this.miHungarian.Tag = "hu-HU";
|
||||
this.miHungarian.DownChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.miLanguage_DownChanged);
|
||||
//
|
||||
// mnuCharset
|
||||
//
|
||||
resources.ApplyResources(this.mnuCharset, "mnuCharset");
|
||||
@@ -2393,6 +2405,7 @@
|
||||
private DevExpress.XtraBars.BarButtonItem miUtf16BigEndian;
|
||||
private DevExpress.XtraBars.BarButtonItem miUtf16LittleEndian;
|
||||
private DevExpress.XtraBars.BarButtonItem miHungarian;
|
||||
private DevExpress.XtraEditors.SimpleButton btnSearch;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -3297,6 +3297,16 @@ namespace ChanSort.Ui
|
||||
|
||||
#endregion
|
||||
|
||||
#region btnSearch_Click
|
||||
private void btnSearch_Click(object sender, EventArgs e)
|
||||
{
|
||||
this.gviewRight.FocusedRowHandle = GridControl.AutoFilterRowHandle;
|
||||
this.gviewRight.FocusedColumn = colName;
|
||||
this.gridRight.Focus();
|
||||
this.gviewRight.ShowEditor();
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region btnRemoveLeft_Click, btnRemoveRight_Click
|
||||
|
||||
private void btnRemoveLeft_Click(object sender, EventArgs e)
|
||||
|
||||
@@ -279,7 +279,7 @@
|
||||
<value>gridLeft</value>
|
||||
</data>
|
||||
<data name=">>gridLeft.Type" xml:space="preserve">
|
||||
<value>ChanSort.XGridControl, ChanSort, Version=1.0.7665.29929, Culture=neutral, PublicKeyToken=null</value>
|
||||
<value>ChanSort.XGridControl, ChanSort, Version=1.0.7718.18008, Culture=neutral, PublicKeyToken=null</value>
|
||||
</data>
|
||||
<data name=">>gridLeft.Parent" xml:space="preserve">
|
||||
<value>grpOutputList</value>
|
||||
@@ -489,7 +489,7 @@
|
||||
<value>&Add channels</value>
|
||||
</data>
|
||||
<data name="miAddChannel.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
||||
<value>40</value>
|
||||
<value>39</value>
|
||||
</data>
|
||||
<data name="miRemove.Caption" xml:space="preserve">
|
||||
<value>&Remove channels</value>
|
||||
@@ -1229,7 +1229,7 @@
|
||||
<value>gviewLeft</value>
|
||||
</data>
|
||||
<data name=">>gviewLeft.Type" xml:space="preserve">
|
||||
<value>ChanSort.XGridView, ChanSort, Version=1.0.7665.29929, Culture=neutral, PublicKeyToken=null</value>
|
||||
<value>ChanSort.XGridView, ChanSort, Version=1.0.7718.18008, Culture=neutral, PublicKeyToken=null</value>
|
||||
</data>
|
||||
<data name=">>colIndex1.Name" xml:space="preserve">
|
||||
<value>colIndex1</value>
|
||||
@@ -1313,13 +1313,13 @@
|
||||
<value>globalImageCollection1</value>
|
||||
</data>
|
||||
<data name=">>globalImageCollection1.Type" xml:space="preserve">
|
||||
<value>ChanSort.Ui.GlobalImageCollection, ChanSort, Version=1.0.7665.29929, Culture=neutral, PublicKeyToken=null</value>
|
||||
<value>ChanSort.Ui.GlobalImageCollection, ChanSort, Version=1.0.7718.18008, Culture=neutral, PublicKeyToken=null</value>
|
||||
</data>
|
||||
<data name=">>gviewRight.Name" xml:space="preserve">
|
||||
<value>gviewRight</value>
|
||||
</data>
|
||||
<data name=">>gviewRight.Type" xml:space="preserve">
|
||||
<value>ChanSort.XGridView, ChanSort, Version=1.0.7665.29929, Culture=neutral, PublicKeyToken=null</value>
|
||||
<value>ChanSort.XGridView, ChanSort, Version=1.0.7718.18008, Culture=neutral, PublicKeyToken=null</value>
|
||||
</data>
|
||||
<data name=">>colIndex.Name" xml:space="preserve">
|
||||
<value>colIndex</value>
|
||||
@@ -1771,6 +1771,12 @@
|
||||
<data name=">>miSpanish.Type" xml:space="preserve">
|
||||
<value>DevExpress.XtraBars.BarButtonItem, DevExpress.XtraBars.v20.1, Version=20.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||
</data>
|
||||
<data name=">>miHungarian.Name" xml:space="preserve">
|
||||
<value>miHungarian</value>
|
||||
</data>
|
||||
<data name=">>miHungarian.Type" xml:space="preserve">
|
||||
<value>DevExpress.XtraBars.BarButtonItem, DevExpress.XtraBars.v20.1, Version=20.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||
</data>
|
||||
<data name=">>miPolski.Name" xml:space="preserve">
|
||||
<value>miPolski</value>
|
||||
</data>
|
||||
@@ -1801,12 +1807,6 @@
|
||||
<data name=">>miTurkish.Type" xml:space="preserve">
|
||||
<value>DevExpress.XtraBars.BarButtonItem, DevExpress.XtraBars.v20.1, Version=20.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||
</data>
|
||||
<data name=">>miHungarian.Name" xml:space="preserve">
|
||||
<value>miHungarian</value>
|
||||
</data>
|
||||
<data name=">>miHungarian.Type" xml:space="preserve">
|
||||
<value>DevExpress.XtraBars.BarButtonItem, DevExpress.XtraBars.v20.1, Version=20.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||
</data>
|
||||
<data name=">>mnuCharset.Name" xml:space="preserve">
|
||||
<value>mnuCharset</value>
|
||||
</data>
|
||||
@@ -2066,7 +2066,7 @@
|
||||
<value>DevExpress.XtraEditors.XtraForm, DevExpress.Utils.v20.1, Version=20.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||
</data>
|
||||
<data name="SharedImageCollection.Timestamp" type="System.DateTime, mscorlib">
|
||||
<value>12/26/2020 17:01:09</value>
|
||||
<value>02/17/2021 10:00:22</value>
|
||||
</data>
|
||||
<data name="SharedImageCollection.ImageSize" type="System.Drawing.Size, System.Drawing">
|
||||
<value>16, 16</value>
|
||||
@@ -2891,7 +2891,7 @@
|
||||
<value>gridRight</value>
|
||||
</data>
|
||||
<data name=">>gridRight.Type" xml:space="preserve">
|
||||
<value>ChanSort.XGridControl, ChanSort, Version=1.0.7665.29929, Culture=neutral, PublicKeyToken=null</value>
|
||||
<value>ChanSort.XGridControl, ChanSort, Version=1.0.7718.18008, Culture=neutral, PublicKeyToken=null</value>
|
||||
</data>
|
||||
<data name=">>gridRight.Parent" xml:space="preserve">
|
||||
<value>grpInputList</value>
|
||||
@@ -2929,11 +2929,44 @@
|
||||
<data name=">>lblHotkeyRight.ZOrder" xml:space="preserve">
|
||||
<value>1</value>
|
||||
</data>
|
||||
<data name="btnSearch.AccessibleDescription" xml:space="preserve">
|
||||
<value>Search for a channel</value>
|
||||
</data>
|
||||
<data name="btnSearch.Appearance.FontStyleDelta" type="System.Drawing.FontStyle, System.Drawing">
|
||||
<value>Strikeout</value>
|
||||
</data>
|
||||
<data name="btnSearch.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
||||
<value>18</value>
|
||||
</data>
|
||||
<data name="btnSearch.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>270, 5</value>
|
||||
</data>
|
||||
<data name="btnSearch.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>23, 23</value>
|
||||
</data>
|
||||
<data name="btnSearch.TabIndex" type="System.Int32, mscorlib">
|
||||
<value>9</value>
|
||||
</data>
|
||||
<data name="btnSearch.ToolTip" xml:space="preserve">
|
||||
<value>Search channel by name</value>
|
||||
</data>
|
||||
<data name=">>btnSearch.Name" xml:space="preserve">
|
||||
<value>btnSearch</value>
|
||||
</data>
|
||||
<data name=">>btnSearch.Type" xml:space="preserve">
|
||||
<value>DevExpress.XtraEditors.SimpleButton, DevExpress.XtraEditors.v20.1, Version=20.1.8.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||
</data>
|
||||
<data name=">>btnSearch.Parent" xml:space="preserve">
|
||||
<value>panelControl3</value>
|
||||
</data>
|
||||
<data name=">>btnSearch.ZOrder" xml:space="preserve">
|
||||
<value>0</value>
|
||||
</data>
|
||||
<data name="lblPredefinedList.Appearance.Font" type="System.Drawing.Font, System.Drawing">
|
||||
<value>Tahoma, 12pt, style=Bold</value>
|
||||
</data>
|
||||
<data name="lblPredefinedList.Location" type="System.Drawing.Point, System.Drawing">
|
||||
<value>291, 7</value>
|
||||
<value>419, 5</value>
|
||||
</data>
|
||||
<data name="lblPredefinedList.Size" type="System.Drawing.Size, System.Drawing">
|
||||
<value>372, 19</value>
|
||||
@@ -2960,7 +2993,7 @@
|
||||
<value>panelControl3</value>
|
||||
</data>
|
||||
<data name=">>lblPredefinedList.ZOrder" xml:space="preserve">
|
||||
<value>0</value>
|
||||
<value>1</value>
|
||||
</data>
|
||||
<data name="btnRemoveRight.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
||||
<value>11</value>
|
||||
@@ -2990,7 +3023,7 @@
|
||||
<value>panelControl3</value>
|
||||
</data>
|
||||
<data name=">>btnRemoveRight.ZOrder" xml:space="preserve">
|
||||
<value>1</value>
|
||||
<value>2</value>
|
||||
</data>
|
||||
<data name="btnAddAll.AccessibleDescription" xml:space="preserve">
|
||||
<value>Append all currently unsorted channels at the end of the list</value>
|
||||
@@ -3020,7 +3053,7 @@
|
||||
<value>panelControl3</value>
|
||||
</data>
|
||||
<data name=">>btnAddAll.ZOrder" xml:space="preserve">
|
||||
<value>2</value>
|
||||
<value>3</value>
|
||||
</data>
|
||||
<data name="btnClearRightFilter.AccessibleDescription" xml:space="preserve">
|
||||
<value>Remove channel filter criteria from complete channel list</value>
|
||||
@@ -3056,7 +3089,7 @@
|
||||
<value>panelControl3</value>
|
||||
</data>
|
||||
<data name=">>btnClearRightFilter.ZOrder" xml:space="preserve">
|
||||
<value>3</value>
|
||||
<value>4</value>
|
||||
</data>
|
||||
<data name="btnAdd.ImageOptions.ImageIndex" type="System.Int32, mscorlib">
|
||||
<value>39</value>
|
||||
@@ -3086,7 +3119,7 @@
|
||||
<value>panelControl3</value>
|
||||
</data>
|
||||
<data name=">>btnAdd.ZOrder" xml:space="preserve">
|
||||
<value>4</value>
|
||||
<value>5</value>
|
||||
</data>
|
||||
<data name="panelControl3.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
|
||||
<value>Top</value>
|
||||
|
||||
@@ -3,34 +3,35 @@ ChanSort Change Log
|
||||
|
||||
2021-02-17
|
||||
- Panasonic: fixed error reading lists with channels that refer to non-existing transponders
|
||||
- Philips ChannelMap_45: incrementing fav list version number when saving and setting the last_watched_channel_id to
|
||||
- Philips ChannelMap\_45: incrementing fav list version number when saving and setting the last\_watched\_channel\_id to
|
||||
the first channel in the fav list (ensuring that the channel is actually present in the list)
|
||||
- UI: added search button (because it is not obvious that the top row of the table is a search/filter row)
|
||||
|
||||
2021-02-09
|
||||
- Sony: fixed incorrect checksum error for Android based TVs which use CR+LF as line separators (normally only LF is used)
|
||||
- Philips: show info that it may be necessary to unplug and reboot the TV after the import
|
||||
- Philips ChannelMap_45: show info when there are checksum errors, which indicate that TV's internal list is broken
|
||||
- Philips ChannelMap\_45: show info when there are checksum errors, which indicate that TV's internal list is broken
|
||||
and a rescan is required in order to properly export/import the list.
|
||||
|
||||
2021-02-08
|
||||
- Philips: lists with a chanLst.bin file show information about file format version and TV model under File / Information
|
||||
- Philips ChannelMap_45: fixed handling of favorite lists (allow up to 8 lists, empty ones get removed automatically)
|
||||
- Philips ChannelMap_45: no longer prompting to reorder channels sequentially (to close gaps).
|
||||
- Philips ChannelMap\_45: fixed handling of favorite lists (allow up to 8 lists, empty ones get removed automatically)
|
||||
- Philips ChannelMap\_45: no longer prompting to reorder channels sequentially (to close gaps).
|
||||
(This feature caused DVB-C/T list to only contain odd numbers and DVB-S to contain only even numbers, when both exist)
|
||||
- Philips ChannelMap_45: added display for service type (TV/radio), encryption, sat frequency polarity
|
||||
- Philips ChannelMap_45: fixed display of DVB-C/T frequency
|
||||
- Philips ChannelMap\_45: added display for service type (TV/radio), encryption, sat frequency polarity
|
||||
- Philips ChannelMap\_45: fixed display of DVB-C/T frequency
|
||||
- Philips Repair\chanLst.bin (1.x): fixed sat frequency display for transponders with vertical polarity
|
||||
|
||||
2021-02-05
|
||||
- Philips ChannelMap_100 and later: keeping original indentation in XML files
|
||||
and original number of bytes for hex-encoded Unicode names (channel name, fav list names)
|
||||
- Philips ChannelMap_110: setting the "UserReorderChannel" flag in the file to 1
|
||||
- Philips ChannelMap_45: fixed error when channel names did not match between tv.db and Cable/Terrestrial/SatelliteDb.bin
|
||||
- Philips ChannelMap\_45: fixed error when channel names did not match between tv.db and Cable/Terrestrial/SatelliteDb.bin
|
||||
|
||||
2021-01-31
|
||||
- Philips ChannelMap_45: fixed bug writting "channel edited" indicator to the wrong location inside the file
|
||||
- Philips ChannelMap_45: fixed display of wrong frequency
|
||||
- Philips ChannelMap_45: added support for favorite lists
|
||||
- Philips ChannelMap\_45: fixed bug writting "channel edited" indicator to the wrong location inside the file
|
||||
- Philips ChannelMap\_45: fixed display of wrong frequency
|
||||
- Philips ChannelMap\_45: added support for favorite lists
|
||||
|
||||
2021-01-24
|
||||
- fixed issues with applying reference lists (especially .m3u)
|
||||
@@ -40,7 +41,7 @@ ChanSort Change Log
|
||||
- SatcoDX (*.sdx format used by ITT, Telefunken, Silva-Schneider, ...): minor bug fixes
|
||||
|
||||
2021-01-17
|
||||
- Philips: added support for ChannelMap_45 format
|
||||
- Philips: added support for ChannelMap\_45 format
|
||||
- Philips: fixed display of symbol rate and frequency (off by factor 1000 depending of list and DVB source)
|
||||
- Philips: fixed special characters in channel names (e.g. german umlauts)
|
||||
- Philips: "ServiceType" now only shows "TV" or "Radio". There is no information about HD/SD in the file.
|
||||
|
||||
Reference in New Issue
Block a user