From 39d272d0ddcfed5024e7d4430b6ecf504aa41628 Mon Sep 17 00:00:00 2001 From: Christophe Mutricy Date: Wed, 23 Jan 2008 23:23:37 +0000 Subject: [PATCH] missing from [24525] --- .../gui/qt4/components/complete_preferences.hpp | 4 ++++ modules/gui/qt4/components/extended_panels.hpp | 4 ++++ modules/gui/qt4/components/info_panels.hpp | 15 ++++++++++++++- modules/gui/qt4/components/interface_widgets.hpp | 4 ++++ modules/gui/qt4/components/open_panels.hpp | 4 ++++ modules/gui/qt4/components/playlist/panels.hpp | 4 ++++ modules/gui/qt4/components/playlist/playlist.hpp | 4 ++++ .../qt4/components/playlist/playlist_model.hpp | 4 ++++ modules/gui/qt4/components/playlist/selector.hpp | 4 ++++ .../gui/qt4/components/preferences_widgets.hpp | 4 ++++ modules/gui/qt4/components/simple_preferences.hpp | 4 ++++ modules/gui/qt4/dialogs/help.hpp | 4 ++++ modules/gui/qt4/dialogs/interaction.hpp | 4 ++++ modules/gui/qt4/dialogs/open.hpp | 4 ++++ modules/gui/qt4/dialogs/sout.hpp | 4 ++++ modules/gui/qt4/dialogs/vlm.hpp | 4 ++++ modules/gui/qt4/dialogs_provider.hpp | 5 +++++ modules/gui/qt4/input_manager.hpp | 4 ++++ modules/gui/qt4/qt4.hpp | 4 ++++ 19 files changed, 87 insertions(+), 1 deletion(-) diff --git a/modules/gui/qt4/components/complete_preferences.hpp b/modules/gui/qt4/components/complete_preferences.hpp index ebdcb4c99c..a0b1f9a728 100644 --- a/modules/gui/qt4/components/complete_preferences.hpp +++ b/modules/gui/qt4/components/complete_preferences.hpp @@ -24,6 +24,10 @@ #ifndef _PREFSTREE_H_ #define _PREFSTREE_H_ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include diff --git a/modules/gui/qt4/components/extended_panels.hpp b/modules/gui/qt4/components/extended_panels.hpp index c0aa71c6e0..c215f2a24f 100644 --- a/modules/gui/qt4/components/extended_panels.hpp +++ b/modules/gui/qt4/components/extended_panels.hpp @@ -25,6 +25,10 @@ #ifndef _EQUALIZER_H_ #define _EQUALIZER_H_ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include diff --git a/modules/gui/qt4/components/info_panels.hpp b/modules/gui/qt4/components/info_panels.hpp index 2c6c14e136..6c78c830ee 100644 --- a/modules/gui/qt4/components/info_panels.hpp +++ b/modules/gui/qt4/components/info_panels.hpp @@ -26,10 +26,15 @@ #ifndef _INFOPANELS_H_ #define _INFOPANELS_H_ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include #include +#include #ifdef HAVE_LIMITS_H # include @@ -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 diff --git a/modules/gui/qt4/components/interface_widgets.hpp b/modules/gui/qt4/components/interface_widgets.hpp index 3a1294a4b5..59275c66bf 100644 --- a/modules/gui/qt4/components/interface_widgets.hpp +++ b/modules/gui/qt4/components/interface_widgets.hpp @@ -26,6 +26,10 @@ #ifndef _INTFWIDGETS_H_ #define _INTFWIDGETS_H_ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include diff --git a/modules/gui/qt4/components/open_panels.hpp b/modules/gui/qt4/components/open_panels.hpp index d854687348..393ca74330 100644 --- a/modules/gui/qt4/components/open_panels.hpp +++ b/modules/gui/qt4/components/open_panels.hpp @@ -28,6 +28,10 @@ #ifndef _OPENPANELS_H_ #define _OPENPANELS_H_ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include diff --git a/modules/gui/qt4/components/playlist/panels.hpp b/modules/gui/qt4/components/playlist/panels.hpp index e6b41c409c..615ad2a57f 100644 --- a/modules/gui/qt4/components/playlist/panels.hpp +++ b/modules/gui/qt4/components/playlist/panels.hpp @@ -24,6 +24,10 @@ #ifndef _PLPANELS_H_ #define _PLPANELS_H_ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include "qt4.hpp" diff --git a/modules/gui/qt4/components/playlist/playlist.hpp b/modules/gui/qt4/components/playlist/playlist.hpp index 782ecfd16c..3144fc66bf 100644 --- a/modules/gui/qt4/components/playlist/playlist.hpp +++ b/modules/gui/qt4/components/playlist/playlist.hpp @@ -26,6 +26,10 @@ #ifndef _PLAYLISTWIDGET_H_ #define _PLAYLISTWIDGET_H_ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include "qt4.hpp" #include "dialogs_provider.hpp" diff --git a/modules/gui/qt4/components/playlist/playlist_model.hpp b/modules/gui/qt4/components/playlist/playlist_model.hpp index e5839ee9e1..86ad09f3ae 100644 --- a/modules/gui/qt4/components/playlist/playlist_model.hpp +++ b/modules/gui/qt4/components/playlist/playlist_model.hpp @@ -24,6 +24,10 @@ #ifndef _PLAYLIST_MODEL_H_ #define _PLAYLIST_MODEL_H_ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include #include diff --git a/modules/gui/qt4/components/playlist/selector.hpp b/modules/gui/qt4/components/playlist/selector.hpp index 016ba3a403..7e98eff43c 100644 --- a/modules/gui/qt4/components/playlist/selector.hpp +++ b/modules/gui/qt4/components/playlist/selector.hpp @@ -24,6 +24,10 @@ #ifndef _PLSEL_H_ #define _PLSEL_H_ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include #include diff --git a/modules/gui/qt4/components/preferences_widgets.hpp b/modules/gui/qt4/components/preferences_widgets.hpp index d8b108a57e..156b2c1c40 100644 --- a/modules/gui/qt4/components/preferences_widgets.hpp +++ b/modules/gui/qt4/components/preferences_widgets.hpp @@ -26,6 +26,10 @@ #ifndef _PREFERENCESWIDGETS_H_ #define _PREFERENCESWIDGETS_H_ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include "qt4.hpp" diff --git a/modules/gui/qt4/components/simple_preferences.hpp b/modules/gui/qt4/components/simple_preferences.hpp index 1f2fd88d8f..63309a0f48 100644 --- a/modules/gui/qt4/components/simple_preferences.hpp +++ b/modules/gui/qt4/components/simple_preferences.hpp @@ -24,6 +24,10 @@ #ifndef _SIMPLEPREFS_H_ #define _SIMPLEPREFS_H_ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include #include diff --git a/modules/gui/qt4/dialogs/help.hpp b/modules/gui/qt4/dialogs/help.hpp index cb9d4eba87..e0fc292e20 100644 --- a/modules/gui/qt4/dialogs/help.hpp +++ b/modules/gui/qt4/dialogs/help.hpp @@ -24,6 +24,10 @@ #ifndef _HELP_DIALOG_H_ #define _HELP_DIALOG_H_ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include "util/qvlcframe.hpp" diff --git a/modules/gui/qt4/dialogs/interaction.hpp b/modules/gui/qt4/dialogs/interaction.hpp index fce2dd6003..d36d7a6d2c 100644 --- a/modules/gui/qt4/dialogs/interaction.hpp +++ b/modules/gui/qt4/dialogs/interaction.hpp @@ -24,6 +24,10 @@ #ifndef _INTERACTION_H_ #define _INTERACTION_H_ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include diff --git a/modules/gui/qt4/dialogs/open.hpp b/modules/gui/qt4/dialogs/open.hpp index f603028276..6399068f47 100644 --- a/modules/gui/qt4/dialogs/open.hpp +++ b/modules/gui/qt4/dialogs/open.hpp @@ -24,6 +24,10 @@ #ifndef _OPEN_DIALOG_H_ #define _OPEN_DIALOG_H_ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include "util/qvlcframe.hpp" diff --git a/modules/gui/qt4/dialogs/sout.hpp b/modules/gui/qt4/dialogs/sout.hpp index f398a1017d..97e80f19a0 100644 --- a/modules/gui/qt4/dialogs/sout.hpp +++ b/modules/gui/qt4/dialogs/sout.hpp @@ -24,6 +24,10 @@ #ifndef _SOUT_DIALOG_H_ #define _SOUT_DIALOG_H_ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include diff --git a/modules/gui/qt4/dialogs/vlm.hpp b/modules/gui/qt4/dialogs/vlm.hpp index 9594e5c393..356d72fb1e 100644 --- a/modules/gui/qt4/dialogs/vlm.hpp +++ b/modules/gui/qt4/dialogs/vlm.hpp @@ -25,6 +25,10 @@ #ifndef _VLM_DIALOG_H_ #define _VLM_DIALOG_H_ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #ifdef ENABLE_VLM diff --git a/modules/gui/qt4/dialogs_provider.hpp b/modules/gui/qt4/dialogs_provider.hpp index 3c90b8b436..93f3645884 100644 --- a/modules/gui/qt4/dialogs_provider.hpp +++ b/modules/gui/qt4/dialogs_provider.hpp @@ -25,10 +25,15 @@ #ifndef _DIALOGS_PROVIDER_H_ #define _DIALOGS_PROVIDER_H_ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include #include +#include "qt4.hpp" #include "dialogs/interaction.hpp" #include diff --git a/modules/gui/qt4/input_manager.hpp b/modules/gui/qt4/input_manager.hpp index e738e74453..0f72a6fcc0 100644 --- a/modules/gui/qt4/input_manager.hpp +++ b/modules/gui/qt4/input_manager.hpp @@ -24,6 +24,10 @@ #ifndef _INPUT_MANAGER_H_ #define _INPUT_MANAGER_H_ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include diff --git a/modules/gui/qt4/qt4.hpp b/modules/gui/qt4/qt4.hpp index 29b1dae4c4..5face00f3f 100644 --- a/modules/gui/qt4/qt4.hpp +++ b/modules/gui/qt4/qt4.hpp @@ -25,6 +25,10 @@ #ifndef _QVLC_H_ #define _QVLC_H_ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include #include #include -- 2.39.2