Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
15249253
Commit
15249253
authored
May 13, 2007
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
QT4: implement the open dialog from the playlist
parent
a2d20f55
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
0 deletions
+8
-0
modules/gui/qt4/dialogs/open.cpp
modules/gui/qt4/dialogs/open.cpp
+4
-0
modules/gui/qt4/dialogs_provider.cpp
modules/gui/qt4/dialogs_provider.cpp
+3
-0
modules/gui/qt4/dialogs_provider.hpp
modules/gui/qt4/dialogs_provider.hpp
+1
-0
No files found.
modules/gui/qt4/dialogs/open.cpp
View file @
15249253
...
@@ -148,6 +148,10 @@ void OpenDialog::setMenuAction()
...
@@ -148,6 +148,10 @@ void OpenDialog::setMenuAction()
playButton
->
setText
(
qtr
(
"&Convert / Save"
)
);
playButton
->
setText
(
qtr
(
"&Convert / Save"
)
);
BUTTONACT
(
playButton
,
stream
(
true
)
);
BUTTONACT
(
playButton
,
stream
(
true
)
);
break
;
break
;
case
ENQUEUE
:
playButton
->
setText
(
qtr
(
"&Enqueue"
)
);
BUTTONACT
(
playButton
,
enqueue
()
);
break
;
case
OPEN_AND_PLAY
:
case
OPEN_AND_PLAY
:
default:
default:
playButton
->
setText
(
qtr
(
"&Play"
)
);
playButton
->
setText
(
qtr
(
"&Play"
)
);
...
...
modules/gui/qt4/dialogs_provider.cpp
View file @
15249253
...
@@ -216,6 +216,9 @@ void DialogsProvider::openDialog( int i_tab )
...
@@ -216,6 +216,9 @@ void DialogsProvider::openDialog( int i_tab )
void
DialogsProvider
::
PLAppendDialog
()
void
DialogsProvider
::
PLAppendDialog
()
{
{
OpenDialog
::
getInstance
(
p_intf
->
p_sys
->
p_mi
,
p_intf
,
ENQUEUE
)
->
showTab
(
0
);
}
}
void
DialogsProvider
::
MLAppendDialog
()
void
DialogsProvider
::
MLAppendDialog
()
{
{
...
...
modules/gui/qt4/dialogs_provider.hpp
View file @
15249253
...
@@ -78,6 +78,7 @@
...
@@ -78,6 +78,7 @@
#define OPEN_AND_PLAY 0x0
#define OPEN_AND_PLAY 0x0
#define OPEN_AND_STREAM 0x1
#define OPEN_AND_STREAM 0x1
#define OPEN_AND_SAVE 0x2
#define OPEN_AND_SAVE 0x2
#define ENQUEUE 0x4
class
QEvent
;
class
QEvent
;
class
QSignalMapper
;
class
QSignalMapper
;
...
...
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