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
39d272d0
Commit
39d272d0
authored
Jan 23, 2008
by
Christophe Mutricy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
missing from [24525]
parent
e189922f
Changes
19
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
87 additions
and
1 deletion
+87
-1
modules/gui/qt4/components/complete_preferences.hpp
modules/gui/qt4/components/complete_preferences.hpp
+4
-0
modules/gui/qt4/components/extended_panels.hpp
modules/gui/qt4/components/extended_panels.hpp
+4
-0
modules/gui/qt4/components/info_panels.hpp
modules/gui/qt4/components/info_panels.hpp
+14
-1
modules/gui/qt4/components/interface_widgets.hpp
modules/gui/qt4/components/interface_widgets.hpp
+4
-0
modules/gui/qt4/components/open_panels.hpp
modules/gui/qt4/components/open_panels.hpp
+4
-0
modules/gui/qt4/components/playlist/panels.hpp
modules/gui/qt4/components/playlist/panels.hpp
+4
-0
modules/gui/qt4/components/playlist/playlist.hpp
modules/gui/qt4/components/playlist/playlist.hpp
+4
-0
modules/gui/qt4/components/playlist/playlist_model.hpp
modules/gui/qt4/components/playlist/playlist_model.hpp
+4
-0
modules/gui/qt4/components/playlist/selector.hpp
modules/gui/qt4/components/playlist/selector.hpp
+4
-0
modules/gui/qt4/components/preferences_widgets.hpp
modules/gui/qt4/components/preferences_widgets.hpp
+4
-0
modules/gui/qt4/components/simple_preferences.hpp
modules/gui/qt4/components/simple_preferences.hpp
+4
-0
modules/gui/qt4/dialogs/help.hpp
modules/gui/qt4/dialogs/help.hpp
+4
-0
modules/gui/qt4/dialogs/interaction.hpp
modules/gui/qt4/dialogs/interaction.hpp
+4
-0
modules/gui/qt4/dialogs/open.hpp
modules/gui/qt4/dialogs/open.hpp
+4
-0
modules/gui/qt4/dialogs/sout.hpp
modules/gui/qt4/dialogs/sout.hpp
+4
-0
modules/gui/qt4/dialogs/vlm.hpp
modules/gui/qt4/dialogs/vlm.hpp
+4
-0
modules/gui/qt4/dialogs_provider.hpp
modules/gui/qt4/dialogs_provider.hpp
+5
-0
modules/gui/qt4/input_manager.hpp
modules/gui/qt4/input_manager.hpp
+4
-0
modules/gui/qt4/qt4.hpp
modules/gui/qt4/qt4.hpp
+4
-0
No files found.
modules/gui/qt4/components/complete_preferences.hpp
View file @
39d272d0
...
...
@@ -24,6 +24,10 @@
#ifndef _PREFSTREE_H_
#define _PREFSTREE_H_
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc/vlc.h>
#include <vlc_interface.h>
...
...
modules/gui/qt4/components/extended_panels.hpp
View file @
39d272d0
...
...
@@ -25,6 +25,10 @@
#ifndef _EQUALIZER_H_
#define _EQUALIZER_H_
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc/vlc.h>
#include <vlc_aout.h>
...
...
modules/gui/qt4/components/info_panels.hpp
View file @
39d272d0
...
...
@@ -26,10 +26,15 @@
#ifndef _INFOPANELS_H_
#define _INFOPANELS_H_
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc/vlc.h>
#include <vlc_meta.h>
#include <QWidget>
#include <QLabel>
#ifdef HAVE_LIMITS_H
# include <limits.h>
...
...
@@ -46,7 +51,6 @@ class QTreeWidgetItem;
class
QTreeView
;
class
QSpinBox
;
class
QLineEdit
;
class
QLabel
;
class
MetaPanel
:
public
QWidget
{
...
...
@@ -156,4 +160,13 @@ public slots:
void
update
(
input_item_t
*
);
void
clear
();
};
class
ArtCover
:
public
QLabel
{
Q_OBJECT
void
mouseDoubleClickEvent
(
QMouseEvent
*
event
)
{
fprintf
(
stderr
,
"**************************"
);
}
};
#endif
modules/gui/qt4/components/interface_widgets.hpp
View file @
39d272d0
...
...
@@ -26,6 +26,10 @@
#ifndef _INTFWIDGETS_H_
#define _INTFWIDGETS_H_
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc/vlc.h>
#include <vlc_interface.h>
...
...
modules/gui/qt4/components/open_panels.hpp
View file @
39d272d0
...
...
@@ -28,6 +28,10 @@
#ifndef _OPENPANELS_H_
#define _OPENPANELS_H_
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc/vlc.h>
#include <QFileDialog>
...
...
modules/gui/qt4/components/playlist/panels.hpp
View file @
39d272d0
...
...
@@ -24,6 +24,10 @@
#ifndef _PLPANELS_H_
#define _PLPANELS_H_
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc/vlc.h>
#include "qt4.hpp"
...
...
modules/gui/qt4/components/playlist/playlist.hpp
View file @
39d272d0
...
...
@@ -26,6 +26,10 @@
#ifndef _PLAYLISTWIDGET_H_
#define _PLAYLISTWIDGET_H_
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc/vlc.h>
#include "qt4.hpp"
#include "dialogs_provider.hpp"
...
...
modules/gui/qt4/components/playlist/playlist_model.hpp
View file @
39d272d0
...
...
@@ -24,6 +24,10 @@
#ifndef _PLAYLIST_MODEL_H_
#define _PLAYLIST_MODEL_H_
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc/vlc.h>
#include <vlc_input.h>
#include <vlc_playlist.h>
...
...
modules/gui/qt4/components/playlist/selector.hpp
View file @
39d272d0
...
...
@@ -24,6 +24,10 @@
#ifndef _PLSEL_H_
#define _PLSEL_H_
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc/vlc.h>
#include <QWidget>
#include <QString>
...
...
modules/gui/qt4/components/preferences_widgets.hpp
View file @
39d272d0
...
...
@@ -26,6 +26,10 @@
#ifndef _PREFERENCESWIDGETS_H_
#define _PREFERENCESWIDGETS_H_
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc/vlc.h>
#include "qt4.hpp"
...
...
modules/gui/qt4/components/simple_preferences.hpp
View file @
39d272d0
...
...
@@ -24,6 +24,10 @@
#ifndef _SIMPLEPREFS_H_
#define _SIMPLEPREFS_H_
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc/vlc.h>
#include <vlc_interface.h>
#include <QWidget>
...
...
modules/gui/qt4/dialogs/help.hpp
View file @
39d272d0
...
...
@@ -24,6 +24,10 @@
#ifndef _HELP_DIALOG_H_
#define _HELP_DIALOG_H_
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc/vlc.h>
#include "util/qvlcframe.hpp"
...
...
modules/gui/qt4/dialogs/interaction.hpp
View file @
39d272d0
...
...
@@ -24,6 +24,10 @@
#ifndef _INTERACTION_H_
#define _INTERACTION_H_
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc/vlc.h>
#include <vlc_interface.h>
...
...
modules/gui/qt4/dialogs/open.hpp
View file @
39d272d0
...
...
@@ -24,6 +24,10 @@
#ifndef _OPEN_DIALOG_H_
#define _OPEN_DIALOG_H_
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc/vlc.h>
#include "util/qvlcframe.hpp"
...
...
modules/gui/qt4/dialogs/sout.hpp
View file @
39d272d0
...
...
@@ -24,6 +24,10 @@
#ifndef _SOUT_DIALOG_H_
#define _SOUT_DIALOG_H_
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc/vlc.h>
#include <vlc_streaming.h>
...
...
modules/gui/qt4/dialogs/vlm.hpp
View file @
39d272d0
...
...
@@ -25,6 +25,10 @@
#ifndef _VLM_DIALOG_H_
#define _VLM_DIALOG_H_
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc/vlc.h>
#ifdef ENABLE_VLM
...
...
modules/gui/qt4/dialogs_provider.hpp
View file @
39d272d0
...
...
@@ -25,10 +25,15 @@
#ifndef _DIALOGS_PROVIDER_H_
#define _DIALOGS_PROVIDER_H_
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <assert.h>
#include <vlc/vlc.h>
#include <vlc_interface.h>
#include "qt4.hpp"
#include "dialogs/interaction.hpp"
#include <QObject>
...
...
modules/gui/qt4/input_manager.hpp
View file @
39d272d0
...
...
@@ -24,6 +24,10 @@
#ifndef _INPUT_MANAGER_H_
#define _INPUT_MANAGER_H_
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc/vlc.h>
#include <vlc_input.h>
...
...
modules/gui/qt4/qt4.hpp
View file @
39d272d0
...
...
@@ -25,6 +25,10 @@
#ifndef _QVLC_H_
#define _QVLC_H_
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc/vlc.h>
#include <vlc_interface.h>
#include <vlc_playlist.h>
...
...
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