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
ad84f272
Commit
ad84f272
authored
Sep 01, 2007
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4 - help: add AUTHORS to the tabs
parent
defc0764
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
4 deletions
+12
-4
modules/gui/qt4/Modules.am
modules/gui/qt4/Modules.am
+3
-0
modules/gui/qt4/dialogs/help.cpp
modules/gui/qt4/dialogs/help.cpp
+9
-4
No files found.
modules/gui/qt4/Modules.am
View file @
ad84f272
...
...
@@ -85,6 +85,9 @@ dialogs/about.hpp:
echo "char *psz_thanks = { \\" >> dialogs/about.hpp
cat $(top_srcdir)/THANKS | grep -v '$$Id:' | sed s/'"'/'\\"'/g | awk '{ print "\""$$0"\\n\" \\" }' >> dialogs/about.hpp
echo "};" >> dialogs/about.hpp
echo "char *psz_authors = { \\" >> dialogs/about.hpp
cat $(top_srcdir)/AUTHORS | grep -v '$$Id:' | sed s/'"'/'\\"'/g | awk '{ print "\""$$0"\\n\" \\" }' >> dialogs/about.hpp
echo "};" >> dialogs/about.hpp
SOURCES_qt4 = qt4.cpp \
...
...
modules/gui/qt4/dialogs/help.cpp
View file @
ad84f272
...
...
@@ -79,9 +79,9 @@ AboutDialog::AboutDialog( intf_thread_t *_p_intf) : QVLCFrame( _p_intf )
QLabel
*
introduction
=
new
QLabel
(
qtr
(
"Information about VLC media player"
)
);
layout
->
addWidget
(
introduction
,
0
,
0
,
1
,
2
);
layout
->
addWidget
(
tab
,
1
,
0
,
1
,
2
);
layout
->
addWidget
(
closeButton
,
2
,
1
,
1
,
1
);
layout
->
addWidget
(
introduction
,
0
,
0
,
1
,
4
);
layout
->
addWidget
(
tab
,
1
,
0
,
1
,
4
);
layout
->
addWidget
(
closeButton
,
2
,
3
,
1
,
1
);
/* GPL License */
QTextEdit
*
licenseEdit
=
new
QTextEdit
(
this
);
...
...
@@ -93,9 +93,14 @@ AboutDialog::AboutDialog( intf_thread_t *_p_intf) : QVLCFrame( _p_intf )
thanksEdit
->
setText
(
qfu
(
psz_thanks
)
);
thanksEdit
->
setReadOnly
(
true
);
/* People who helped */
QTextEdit
*
authorsEdit
=
new
QTextEdit
(
this
);
authorsEdit
->
setText
(
qfu
(
psz_authors
)
);
authorsEdit
->
setReadOnly
(
true
);
/* add the tabs to the Tabwidget */
tab
->
addTab
(
NULL
,
qtr
(
"General Info"
)
);
tab
->
addTab
(
NULL
,
qtr
(
"Authors"
)
);
tab
->
addTab
(
authorsEdit
,
qtr
(
"Authors"
)
);
tab
->
addTab
(
thanksEdit
,
qtr
(
"Thanks"
)
);
tab
->
addTab
(
licenseEdit
,
qtr
(
"Distribution License"
)
);
...
...
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