Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
d1f0a4fd
Commit
d1f0a4fd
authored
Feb 08, 2008
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4 - Include fix
parent
e4dd19a5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
6 deletions
+17
-6
modules/gui/qt4/components/interface_widgets.cpp
modules/gui/qt4/components/interface_widgets.cpp
+6
-0
modules/gui/qt4/components/interface_widgets.hpp
modules/gui/qt4/components/interface_widgets.hpp
+2
-0
modules/gui/qt4/components/playlist/playlist_item.cpp
modules/gui/qt4/components/playlist/playlist_item.cpp
+2
-0
modules/gui/qt4/components/playlist/playlist_model.cpp
modules/gui/qt4/components/playlist/playlist_model.cpp
+7
-6
No files found.
modules/gui/qt4/components/interface_widgets.cpp
View file @
d1f0a4fd
...
...
@@ -828,6 +828,12 @@ SpeedControlWidget::SpeedControlWidget( intf_thread_t *_p_i ) :
SpeedControlWidget
::~
SpeedControlWidget
()
{}
void
SpeedControlWidget
::
mouseDoubleClickEvent
(
QMouseEvent
*
event
)
{
msg_Dbg
(
p_intf
,
"coin coin"
);
resetRate
();
}
#define RATE_SLIDER_MAXIMUM 3.0
#define RATE_SLIDER_MINIMUM 0.3
#define RATE_SLIDER_LENGTH 100.0
...
...
modules/gui/qt4/components/interface_widgets.hpp
View file @
d1f0a4fd
...
...
@@ -247,6 +247,8 @@ public:
SpeedControlWidget
(
intf_thread_t
*
);
virtual
~
SpeedControlWidget
();
void
updateControls
(
int
);
protected:
virtual
void
mouseDoubleClickEvent
(
QMouseEvent
*
event
);
private:
intf_thread_t
*
p_intf
;
QSlider
*
speedSlider
;
...
...
modules/gui/qt4/components/playlist/playlist_item.cpp
View file @
d1f0a4fd
...
...
@@ -34,6 +34,8 @@
#include "pixmaps/type_unknown.xpm"
#include <QSettings>
/*************************************************************************
* Playlist item implementation
*************************************************************************/
...
...
modules/gui/qt4/components/playlist/playlist_model.cpp
View file @
d1f0a4fd
...
...
@@ -25,12 +25,6 @@
# include "config.h"
#endif
#include <assert.h>
#include <QIcon>
#include <QFont>
#include <QMenu>
#include <QApplication>
#include "qt4.hpp"
#include "components/playlist/playlist_model.hpp"
#include "dialogs/mediainfo.hpp"
...
...
@@ -38,6 +32,13 @@
#include "pixmaps/type_unknown.xpm"
#include <assert.h>
#include <QIcon>
#include <QFont>
#include <QMenu>
#include <QApplication>
#include <QSettings>
QIcon
PLModel
::
icons
[
ITEM_TYPE_NUMBER
];
static
int
PlaylistChanged
(
vlc_object_t
*
,
const
char
*
,
...
...
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