Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
464d09b0
Commit
464d09b0
authored
Jul 26, 2008
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forgotten method for Input Slave Selection.
parent
2795385d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
modules/gui/qt4/dialogs/open.cpp
modules/gui/qt4/dialogs/open.cpp
+9
-0
modules/gui/qt4/dialogs/open.hpp
modules/gui/qt4/dialogs/open.hpp
+1
-0
No files found.
modules/gui/qt4/dialogs/open.cpp
View file @
464d09b0
...
...
@@ -148,6 +148,7 @@ OpenDialog::OpenDialog( QWidget *parent,
CONNECT
(
ui
.
cacheSpinBox
,
valueChanged
(
int
),
this
,
updateMRL
()
);
CONNECT
(
ui
.
startTimeSpinBox
,
valueChanged
(
int
),
this
,
updateMRL
()
);
BUTTONACT
(
ui
.
advancedCheckBox
,
toggleAdvancedPanel
()
);
BUTTONACT
(
ui
.
slaveBrowseButton
,
browseInputSlave
()
);
/* Buttons action */
BUTTONACT
(
playButton
,
selectSlots
()
);
...
...
@@ -419,3 +420,11 @@ QStringList OpenDialog::SeparateEntries( QString entries )
return
entries_array
;
}
void
OpenDialog
::
browseInputSlave
()
{
OpenDialog
*
od
=
new
OpenDialog
(
this
,
p_intf
,
true
,
SELECT
);
od
->
exec
();
ui
.
slaveText
->
setText
(
od
->
getMRL
()
);
delete
od
;
}
modules/gui/qt4/dialogs/open.hpp
View file @
464d09b0
...
...
@@ -113,6 +113,7 @@ private slots:
void
updateMRL
();
void
newCachingMethod
(
QString
);
void
signalCurrent
();
void
browseInputSlave
();
};
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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