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
7c350f52
Commit
7c350f52
authored
Mar 07, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4 - Add skeletons for Captures and some widget on Help/ About
parent
1a8198ec
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
6 deletions
+14
-6
modules/gui/qt4/components/open.cpp
modules/gui/qt4/components/open.cpp
+5
-0
modules/gui/qt4/dialogs/help.cpp
modules/gui/qt4/dialogs/help.cpp
+8
-5
modules/gui/qt4/ui/open_capture.ui
modules/gui/qt4/ui/open_capture.ui
+1
-1
No files found.
modules/gui/qt4/components/open.cpp
View file @
7c350f52
...
...
@@ -267,3 +267,8 @@ CaptureOpenPanel::CaptureOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
CaptureOpenPanel
::~
CaptureOpenPanel
()
{}
CaptureOpenPanel
::
clear
()
{}
CaptureOpenPanel
::
updateMRL
()
{}
modules/gui/qt4/dialogs/help.cpp
View file @
7c350f52
...
...
@@ -28,6 +28,7 @@
#include "qt4.hpp"
#include <QTextBrowser>
#include <QTabWidget>
HelpDialog
*
HelpDialog
::
instance
=
NULL
;
...
...
@@ -59,12 +60,14 @@ AboutDialog *AboutDialog::instance = NULL;
AboutDialog
::
AboutDialog
(
intf_thread_t
*
_p_intf
)
:
QVLCFrame
(
_p_intf
)
{
setWindowTitle
(
qtr
(
"About"
)
);
resize
(
250
,
250
);
resize
(
450
,
250
);
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
QPushButton
*
closeButton
=
new
QPushButton
(
qtr
(
"&Close"
));
layout
->
addWidget
(
closeButton
,
1
,
3
);
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
QTabWidget
*
tab
=
new
QTabWidget
(
this
);
QPushButton
*
closeButton
=
new
QPushButton
(
qtr
(
"&Close"
)
);
layout
->
addWidget
(
tab
,
0
,
0
);
layout
->
addWidget
(
closeButton
,
1
,
3
);
BUTTONACT
(
closeButton
,
close
()
);
}
...
...
modules/gui/qt4/ui/open_capture.ui
View file @
7c350f52
...
...
@@ -11,7 +11,7 @@
</rect>
</property>
<property name="windowTitle" >
<string>
Form
</string>
<string>
Capture
</string>
</property>
<layout class="QGridLayout" >
<property name="margin" >
...
...
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