Skip to content

Commit

Permalink
mantis 3636
Browse files Browse the repository at this point in the history
- re-enable PMT-based video/audio detection for channel type detection
- default to using ONID + TSID + SID for DVB-S, DVB-C and DVB-T channel identification (channel movement detection must be explicitly enabled)
- default to using URL for DVB-IP channel identification (channel movement can be enabled)
- disable all fields when scanning is active
- a few minor field movements for consistency
- fix field tab orders on scanning screens
  • Loading branch information
mm1352000 committed Aug 8, 2011
1 parent 6d93b36 commit b86beab
Show file tree
Hide file tree
Showing 13 changed files with 430 additions and 354 deletions.
236 changes: 118 additions & 118 deletions TvEngine3/TVLibrary/SetupTv/Sections/CardAnalog.Designer.cs

Large diffs are not rendered by default.

25 changes: 17 additions & 8 deletions TvEngine3/TVLibrary/SetupTv/Sections/CardAnalog.cs
Expand Up @@ -841,9 +841,11 @@ private void DoTvScan()
Card card = layer.GetCardByDevicePath(RemoteControl.Instance.CardDevice(_cardNumber));
mpComboBoxCountry.Enabled = false;
mpComboBoxSource.Enabled = false;
mpButtonScanRadio.Enabled = false;
mpComboBoxSensitivity.Enabled = false;
mpButton1.Enabled = false;
checkBoxCreateSignalGroup.Enabled = false;
checkBoxNoMerge.Enabled = false;
mpButtonScanRadio.Enabled = false;
mpButtonAddSvideoChannels.Enabled = false;
mpListView1.Items.Clear();
CountryCollection countries = new CountryCollection();
IUser user = new User();
Expand Down Expand Up @@ -1019,9 +1021,12 @@ private void DoTvScan()
progressBar1.Value = 100;
mpComboBoxCountry.Enabled = true;
mpComboBoxSource.Enabled = true;
mpButtonScanRadio.Enabled = true;
mpComboBoxSensitivity.Enabled = true;
mpButton1.Enabled = true;
checkBoxCreateSignalGroup.Enabled = true;
checkBoxNoMerge.Enabled = true;
mpButtonScanTv.Enabled = true;
mpButtonScanRadio.Enabled = true;
mpButtonAddSvideoChannels.Enabled = true;
_isScanning = false;
checkButton.Enabled = true;
}
Expand Down Expand Up @@ -1125,8 +1130,10 @@ private void DoRadioScan()
mpComboBoxCountry.Enabled = false;
mpComboBoxSource.Enabled = false;
mpComboBoxSensitivity.Enabled = false;
checkBoxCreateSignalGroup.Enabled = false;
checkBoxNoMerge.Enabled = false;
mpButtonScanTv.Enabled = false;
mpButton1.Enabled = false;
mpButtonAddSvideoChannels.Enabled = false;
UpdateStatus();
mpListView1.Items.Clear();
CountryCollection countries = new CountryCollection();
Expand Down Expand Up @@ -1235,10 +1242,12 @@ private void DoRadioScan()
progressBar1.Value = 100;
mpComboBoxCountry.Enabled = true;
mpComboBoxSource.Enabled = true;
mpButtonScanRadio.Enabled = true;
mpButtonScanTv.Enabled = true;
mpComboBoxSensitivity.Enabled = true;
mpButton1.Enabled = true;
checkBoxCreateSignalGroup.Enabled = true;
checkBoxNoMerge.Enabled = true;
mpButtonScanTv.Enabled = true;
mpButtonScanRadio.Enabled = true;
mpButtonAddSvideoChannels.Enabled = true;
_isScanning = false;
}
ListViewItem lastItem =
Expand Down
48 changes: 24 additions & 24 deletions TvEngine3/TVLibrary/SetupTv/Sections/CardAtsc.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b86beab

Please sign in to comment.