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
684012f9
Commit
684012f9
authored
Mar 07, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4 - Open Dialog: Capture tab. Last tab. Just the skeleton is present.
parent
2204879a
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
118 additions
and
0 deletions
+118
-0
modules/gui/qt4/Modules.am
modules/gui/qt4/Modules.am
+2
-0
modules/gui/qt4/components/open.cpp
modules/gui/qt4/components/open.cpp
+13
-0
modules/gui/qt4/components/open.hpp
modules/gui/qt4/components/open.hpp
+15
-0
modules/gui/qt4/ui/open_capture.ui
modules/gui/qt4/ui/open_capture.ui
+88
-0
No files found.
modules/gui/qt4/Modules.am
View file @
684012f9
...
...
@@ -17,6 +17,7 @@ TOUI = \
ui/open_file
\
ui/open_disk
\
ui/open_net
\
ui/open_capture
\
ui/open
\
ui/main_interface
\
ui/sprefs_audio
\
...
...
@@ -174,6 +175,7 @@ EXTRA_DIST += \
ui/open_file.ui
\
ui/open_disk.ui
\
ui/open_net.ui
\
ui/open_capture.ui
\
ui/open.ui
\
ui/main_interface.ui
\
ui/sprefs_audio.ui
\
...
...
modules/gui/qt4/components/open.cpp
View file @
684012f9
...
...
@@ -254,3 +254,16 @@ void NetOpenPanel::updateMRL() {
}
emit
mrlUpdated
(
mrl
);
}
/**************************************************************************
* Capture open
**************************************************************************/
CaptureOpenPanel
::
CaptureOpenPanel
(
QWidget
*
_parent
,
intf_thread_t
*
_p_intf
)
:
OpenPanel
(
_parent
,
_p_intf
)
{
ui
.
setupUi
(
this
);
}
CaptureOpenPanel
::~
CaptureOpenPanel
()
{}
modules/gui/qt4/components/open.hpp
View file @
684012f9
...
...
@@ -31,6 +31,7 @@
#include "ui/open_file.h"
#include "ui/open_disk.h"
#include "ui/open_net.h"
#include "ui/open_capture.h"
class
OpenPanel
:
public
QWidget
{
...
...
@@ -97,4 +98,18 @@ public slots:
virtual
void
updateMRL
()
;
};
class
CaptureOpenPanel
:
public
OpenPanel
{
Q_OBJECT
;
public:
CaptureOpenPanel
(
QWidget
*
,
intf_thread_t
*
);
virtual
~
CaptureOpenPanel
();
virtual
void
clear
()
;
private:
Ui
::
OpenCapture
ui
;
public
slots
:
virtual
void
updateMRL
();
};
#endif
modules/gui/qt4/ui/open_capture.ui
0 → 100644
View file @
684012f9
<ui version="4.0" >
<author>Jean-Baptiste Kempf</author>
<class>OpenCapture</class>
<widget class="QWidget" name="OpenCapture" >
<property name="geometry" >
<rect>
<x>0</x>
<y>0</y>
<width>487</width>
<height>165</height>
</rect>
</property>
<property name="windowTitle" >
<string>Form</string>
</property>
<layout class="QGridLayout" >
<property name="margin" >
<number>9</number>
</property>
<property name="spacing" >
<number>6</number>
</property>
<item row="3" column="1" >
<spacer>
<property name="orientation" >
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" >
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
<item row="1" column="0" >
<widget class="QComboBox" name="protocolCombo" />
</item>
<item row="0" column="1" >
<widget class="QLabel" name="label_2" >
<property name="sizePolicy" >
<sizepolicy>
<hsizetype>5</hsizetype>
<vsizetype>0</vsizetype>
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text" >
<string>Card Selection</string>
</property>
</widget>
</item>
<item row="0" column="0" >
<widget class="QLabel" name="label" >
<property name="text" >
<string>Capture Mode</string>
</property>
</widget>
</item>
<item row="2" column="0" colspan="3" >
<widget class="QGroupBox" name="groupBox_3" >
<property name="sizePolicy" >
<sizepolicy>
<hsizetype>5</hsizetype>
<vsizetype>0</vsizetype>
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="title" >
<string>Options</string>
</property>
<layout class="QHBoxLayout" >
<property name="margin" >
<number>9</number>
</property>
<property name="spacing" >
<number>6</number>
</property>
</layout>
</widget>
</item>
</layout>
</widget>
<resources/>
<connections/>
</ui>
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