Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
e84ae528
Commit
e84ae528
authored
Nov 10, 2011
by
Jean-Baptiste Kempf
Browse files
Qt: re-probe the disc drives on each change of FocusPanel()
parent
16f0f6c6
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/gui/qt4/components/open_panels.cpp
View file @
e84ae528
...
...
@@ -336,6 +336,28 @@ DiscOpenPanel::DiscOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
ui
.
deviceCombo
->
setToolTip
(
qtr
(
I_DEVICE_TOOLTIP
)
);
ui
.
deviceCombo
->
setInsertPolicy
(
QComboBox
::
InsertAtTop
);
/* CONNECTs */
BUTTONACT
(
ui
.
dvdRadioButton
,
updateButtons
()
);
BUTTONACT
(
ui
.
vcdRadioButton
,
updateButtons
()
);
BUTTONACT
(
ui
.
audioCDRadioButton
,
updateButtons
()
);
BUTTONACT
(
ui
.
dvdsimple
,
updateButtons
()
);
BUTTONACT
(
ui
.
browseDiscButton
,
browseDevice
()
);
BUTTON_SET_ACT_I
(
ui
.
ejectButton
,
""
,
toolbar
/
eject
,
qtr
(
"Eject the disc"
),
eject
()
);
CONNECT
(
ui
.
deviceCombo
,
editTextChanged
(
QString
),
this
,
updateMRL
());
CONNECT
(
ui
.
deviceCombo
,
currentIndexChanged
(
QString
),
this
,
updateMRL
());
CONNECT
(
ui
.
titleSpin
,
valueChanged
(
int
),
this
,
updateMRL
());
CONNECT
(
ui
.
chapterSpin
,
valueChanged
(
int
),
this
,
updateMRL
());
CONNECT
(
ui
.
audioSpin
,
valueChanged
(
int
),
this
,
updateMRL
());
CONNECT
(
ui
.
subtitlesSpin
,
valueChanged
(
int
),
this
,
updateMRL
());
/* Run once the updateButtons function in order to fill correctly the comboBoxes */
updateButtons
();
}
void
DiscOpenPanel
::
onFocus
()
{
#ifdef WIN32
/* Disc drives probing for Windows */
wchar_t
szDrives
[
512
];
szDrives
[
0
]
=
'\0'
;
...
...
@@ -375,24 +397,7 @@ DiscOpenPanel::DiscOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
POPULATE_WITH_DEVS
(
ppsz_discdevices
,
discCombo
);
#endif
/* CONNECTs */
BUTTONACT
(
ui
.
dvdRadioButton
,
updateButtons
()
);
BUTTONACT
(
ui
.
vcdRadioButton
,
updateButtons
()
);
BUTTONACT
(
ui
.
audioCDRadioButton
,
updateButtons
()
);
BUTTONACT
(
ui
.
dvdsimple
,
updateButtons
()
);
BUTTONACT
(
ui
.
browseDiscButton
,
browseDevice
()
);
BUTTON_SET_ACT_I
(
ui
.
ejectButton
,
""
,
toolbar
/
eject
,
qtr
(
"Eject the disc"
),
eject
()
);
CONNECT
(
ui
.
deviceCombo
,
editTextChanged
(
QString
),
this
,
updateMRL
());
CONNECT
(
ui
.
deviceCombo
,
currentIndexChanged
(
QString
),
this
,
updateMRL
());
CONNECT
(
ui
.
titleSpin
,
valueChanged
(
int
),
this
,
updateMRL
());
CONNECT
(
ui
.
chapterSpin
,
valueChanged
(
int
),
this
,
updateMRL
());
CONNECT
(
ui
.
audioSpin
,
valueChanged
(
int
),
this
,
updateMRL
());
CONNECT
(
ui
.
subtitlesSpin
,
valueChanged
(
int
),
this
,
updateMRL
());
/* Run once the updateButtons function in order to fill correctly the comboBoxes */
updateButtons
();
}
DiscOpenPanel
::~
DiscOpenPanel
()
...
...
modules/gui/qt4/components/open_panels.hpp
View file @
e84ae528
...
...
@@ -174,10 +174,11 @@ public:
virtual
~
DiscOpenPanel
();
virtual
void
clear
()
;
virtual
void
accept
()
;
void
onFocus
();
private:
Ui
::
OpenDisk
ui
;
char
*
psz_dvddiscpath
,
*
psz_vcddiscpath
,
*
psz_cddadiscpath
;
DiscType
m_discType
;
DiscType
m_discType
;
public
slots
:
virtual
void
updateMRL
()
;
private
slots
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment