Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxpc1000 <xpc1000@users.sourceforge.net>2010-09-03 14:17:42 +0400
committerxpc1000 <xpc1000@users.sourceforge.net>2010-09-03 14:17:42 +0400
commit6dc99efbac9b3224d5e65f6eadc8fa792d9750a9 (patch)
tree822fa2e8d5d0c4e9a4dc3944ef433c7fbe961f0a /src/apps/mplayerc/PlayerNavigationDialog.h
parent6c8e7daac76422ea1a8fd96b7e1aff66e7aa7c78 (diff)
Fixed: DVB-T - image problems after changing from tv channel to radio & back
This commit fixes ticket #672 git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@2448 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/apps/mplayerc/PlayerNavigationDialog.h')
-rw-r--r--src/apps/mplayerc/PlayerNavigationDialog.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/apps/mplayerc/PlayerNavigationDialog.h b/src/apps/mplayerc/PlayerNavigationDialog.h
index 4920c5f74..b9b44cd48 100644
--- a/src/apps/mplayerc/PlayerNavigationDialog.h
+++ b/src/apps/mplayerc/PlayerNavigationDialog.h
@@ -29,6 +29,8 @@
#include "DVBChannel.h"
#define MAX_CHANNELS_ALLOWED 200
+#define BTN_CAPTION_SEERADIO "Click to see Radio Stations"
+#define BTN_CAPTION_SEETV "Click to see TV Stations"
// CPlayerNavigationDialog dialog
@@ -45,6 +47,7 @@ public:
void SetupAudioSwitcherSubMenu(CDVBChannel* Channel = NULL);
int p_nItems[MAX_CHANNELS_ALLOWED];
DVBStreamInfo m_audios[DVB_MAX_AUDIO];
+ bool m_bTVStations;
// Dialog Data
enum { IDD = IDD_NAVIGATION_DLG };
@@ -53,6 +56,7 @@ public:
CComboBox m_ComboAudio;
CButton m_ButtonInfo;
CButton m_ButtonScan;
+ CButton m_ButtonFilterStations;
CWnd* m_pParent;
// CMenu m_subtitles, m_audios;
@@ -70,4 +74,5 @@ public:
afx_msg void OnTunerScan();
afx_msg void OnSelChangeComboAudio();
afx_msg void OnButtonInfo();
+ afx_msg void OnTvRadioStations();
};