Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
f49d815a
Commit
f49d815a
authored
Mar 14, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4 - Open and menus links, cleaning, etc..
parent
fd62f6b1
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
28 additions
and
15 deletions
+28
-15
modules/gui/qt4/dialogs/open.cpp
modules/gui/qt4/dialogs/open.cpp
+17
-7
modules/gui/qt4/dialogs/open.hpp
modules/gui/qt4/dialogs/open.hpp
+5
-2
modules/gui/qt4/menus.cpp
modules/gui/qt4/menus.cpp
+2
-2
modules/gui/qt4/ui/open.ui
modules/gui/qt4/ui/open.ui
+4
-4
No files found.
modules/gui/qt4/dialogs/open.cpp
View file @
f49d815a
...
...
@@ -47,10 +47,10 @@ OpenDialog::OpenDialog( QWidget *parent, intf_thread_t *_p_intf, bool modal ) :
netOpenPanel
=
new
NetOpenPanel
(
this
,
p_intf
);
captureOpenPanel
=
new
CaptureOpenPanel
(
this
,
p_intf
);
ui
.
Tab
->
addTab
(
fileOpenPanel
,
qtr
(
"File"
)
);
ui
.
Tab
->
addTab
(
diskOpenPanel
,
qtr
(
"Disc"
)
);
ui
.
Tab
->
addTab
(
netOpenPanel
,
qtr
(
"Network"
)
);
ui
.
Tab
->
addTab
(
captureOpenPanel
,
qtr
(
"Capture"
)
);
ui
.
Tab
->
addTab
(
fileOpenPanel
,
qtr
(
"
&
File"
)
);
ui
.
Tab
->
addTab
(
diskOpenPanel
,
qtr
(
"
&
Disc"
)
);
ui
.
Tab
->
addTab
(
netOpenPanel
,
qtr
(
"
&
Network"
)
);
ui
.
Tab
->
addTab
(
captureOpenPanel
,
qtr
(
"Capture
&Device
"
)
);
ui
.
advancedFrame
->
hide
();
...
...
@@ -74,9 +74,9 @@ OpenDialog::OpenDialog( QWidget *parent, intf_thread_t *_p_intf, bool modal ) :
CONNECT
(
ui
.
slaveText
,
textChanged
(
QString
),
this
,
updateMRL
());
CONNECT
(
ui
.
cacheSpinBox
,
valueChanged
(
int
),
this
,
updateMRL
());
BUTTONACT
(
ui
.
closeButton
,
play
OrEnqueue
());
BUTTONACT
(
ui
.
closeButton
,
play
());
BUTTONACT
(
ui
.
cancelButton
,
cancel
());
BUTTONACT
(
ui
.
enqueueButton
,
playOrEnqueue
(
true
));
BUTTONACT
(
ui
.
enqueueButton
,
enqueue
(
));
BUTTONACT
(
ui
.
advancedCheckBox
,
toggleAdvancedPanel
()
);
/* Initialize caching */
...
...
@@ -111,7 +111,17 @@ void OpenDialog::cancel()
reject
();
}
void
OpenDialog
::
playOrEnqueue
(
bool
b_enqueue
=
false
)
void
OpenDialog
::
play
()
{
playOrEnqueue
(
false
);
}
void
OpenDialog
::
enqueue
()
{
playOrEnqueue
(
true
);
}
void
OpenDialog
::
playOrEnqueue
(
bool
b_enqueue
=
false
)
{
this
->
toggleVisible
();
mrl
=
ui
.
advancedLineInput
->
text
();
...
...
modules/gui/qt4/dialogs/open.hpp
View file @
f49d815a
...
...
@@ -64,11 +64,14 @@ private:
QString
storedMethod
;
int
advHeight
,
mainHeight
;
void
playOrEnqueue
(
bool
);
private
slots
:
void
cancel
();
void
playOrEnqueue
(
bool
);
void
play
();
void
enqueue
();
void
toggleAdvancedPanel
();
void
updateMRL
(
QString
);
void
updateMRL
(
QString
);
void
updateMRL
();
void
newMethod
(
QString
);
void
signalCurrent
();
...
...
modules/gui/qt4/menus.cpp
View file @
f49d815a
...
...
@@ -145,9 +145,9 @@ QMenu *QVLCMenu::FileMenu()
DP_SADD
(
qtr
(
"Open &File..."
),
""
,
""
,
openFileDialog
()
);
DP_SADD
(
qtr
(
"Open &Disc..."
),
""
,
""
,
openDiscDialog
());
DP_SADD
(
qtr
(
"Open &Network..."
),
""
,
""
,
openNetDialog
());
DP_SADD
(
qtr
(
"Open &
Network
..."
),
""
,
""
,
openCaptureDialog
());
DP_SADD
(
qtr
(
"Open &
Capture Device
..."
),
""
,
""
,
openCaptureDialog
());
menu
->
addSeparator
();
DP_SADD
(
qtr
(
"Streaming..."
),
""
,
""
,
streamingDialog
()
);
DP_SADD
(
qtr
(
"
&
Streaming..."
),
""
,
""
,
streamingDialog
()
);
menu
->
addSeparator
();
DP_SADD
(
qtr
(
"&Quit"
)
,
""
,
""
,
quit
()
);
return
menu
;
...
...
modules/gui/qt4/ui/open.ui
View file @
f49d815a
...
...
@@ -33,7 +33,7 @@
<item>
<widget class="QCheckBox" name="advancedCheckBox" >
<property name="text" >
<string>Show more options</string>
<string>
&
Show more options</string>
</property>
</widget>
</item>
...
...
@@ -160,21 +160,21 @@
<item>
<widget class="QPushButton" name="cancelButton" >
<property name="text" >
<string>Cancel</string>
<string>
&
Cancel</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="enqueueButton" >
<property name="text" >
<string>Enqueue</string>
<string>
&
Enqueue</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="closeButton" >
<property name="text" >
<string>Play</string>
<string>
&
Play</string>
</property>
<property name="default" >
<bool>true</bool>
...
...
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