Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
VLMC
Commits
72e9f57e
Commit
72e9f57e
authored
Sep 14, 2009
by
Ludovic Fauvet
Browse files
GUI: the help menu redirects the user to the VLMC website
... until we have a real documentation.
parent
52ef0b4c
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/GUI/MainWindow.cpp
View file @
72e9f57e
...
...
@@ -28,6 +28,8 @@
#include
<QSlider>
#include
<QUndoView>
#include
<QMessageBox>
#include
<QDesktopServices>
#include
<QUrl>
#include
"MainWindow.h"
#include
"MediaListWidget.h"
...
...
@@ -353,6 +355,11 @@ void MainWindow::on_actionNew_Project_triggered()
m_projectPreferences
->
show
();
}
void
MainWindow
::
on_actionHelp_triggered
()
{
QDesktopServices
::
openUrl
(
QUrl
(
"http://vlmc.org"
)
);
}
void
MainWindow
::
zoomIn
()
{
m_zoomSlider
->
setValue
(
m_zoomSlider
->
value
()
-
1
);
...
...
src/GUI/MainWindow.h
View file @
72e9f57e
...
...
@@ -85,6 +85,7 @@ private slots:
void
on_actionNew_Project_triggered
();
void
on_actionLoad_Project_triggered
();
void
on_actionSave_triggered
();
void
on_actionHelp_triggered
();
void
mediaListItemDoubleClicked
(
QListWidgetItem
*
);
void
toolButtonClicked
(
int
id
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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