Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VLMC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
21
Issues
21
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
VideoLAN
VLMC
Commits
72e9f57e
Commit
72e9f57e
authored
Sep 14, 2009
by
Ludovic Fauvet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
src/GUI/MainWindow.cpp
src/GUI/MainWindow.cpp
+7
-0
src/GUI/MainWindow.h
src/GUI/MainWindow.h
+1
-0
No files found.
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
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