]> git.sesse.net Git - vlc/commitdiff
Merge views.hpp in customwidgets
authorClément Stenac <zorglub@videolan.org>
Thu, 31 Aug 2006 22:17:17 +0000 (22:17 +0000)
committerClément Stenac <zorglub@videolan.org>
Thu, 31 Aug 2006 22:17:17 +0000 (22:17 +0000)
modules/gui/qt4/Modules.am
modules/gui/qt4/components/playlist/standardpanel.cpp
modules/gui/qt4/util/customwidgets.hpp
modules/gui/qt4/util/views.hpp [deleted file]

index 4132304a89afbbd94bebaed12b935148582b5753..0e29c374ed5a256205480baaf0e9cea3f68b6c75 100644 (file)
@@ -37,7 +37,6 @@ TOMOC = main_interface \
        components/playlist/panels \
        components/playlist/selector \
        util/input_slider \
-       util/views \
        util/customwidgets
 MOCCPP = $(TOMOC:%=%.moc.cpp)
 
@@ -62,7 +61,6 @@ nodist_SOURCES_qt4 = \
                components/playlist/panels.moc.cpp \
                components/playlist/selector.moc.cpp \
                util/input_slider.moc.cpp \
-               util/views.moc.cpp \
                util/customwidgets.moc.cpp \
                resources.cpp
 
@@ -134,7 +132,6 @@ EXTRA_DIST += \
        components/playlist/selector.hpp \
        util/input_slider.hpp \
        util/directslider.hpp \
-       util/views.hpp \
        util/customwidgets.hpp \
        util/qvlcframe.hpp \
        ui/input_stats.ui \
index 907cb94cde67c541e01063d29a108d41c633057a..90a32d79ec57e37f515801d1a7ff1e69f46e5407 100644 (file)
@@ -35,7 +35,6 @@
 #include <QToolBar>
 #include <QLabel>
 #include <QSpacerItem>
-#include "util/views.hpp"
 #include "util/customwidgets.hpp"
 
 StandardPLPanel::StandardPLPanel( QWidget *_parent, intf_thread_t *_p_intf,
index e0d0af3323518e839b66f818b6f5788c0b7eb2b8..a9a7b32248b8eafc43168e971bd5cfe7b402fd51 100644 (file)
@@ -55,4 +55,33 @@ private:
     bool mDrawClickMsg;
 };
 
-#endif // CLICKLINEEDIT_H
+/*****************************************************************
+ * Custom views
+ *****************************************************************/
+#include <QMouseEvent>
+#include <QTreeView>
+#include <QCursor>
+#include <QPoint>
+#include <QModelIndex>
+
+class QVLCTreeView : public QTreeView
+{
+    Q_OBJECT;
+public:
+    QVLCTreeView( QWidget * parent ) : QTreeView( parent )
+    {
+    };
+    virtual ~QVLCTreeView()   {};
+
+    void mouseReleaseEvent(QMouseEvent* e )
+    {
+        if( e->button() & Qt::RightButton )
+        {
+            emit rightClicked( indexAt( QPoint( e->x(), e->y() ) ),
+                               QCursor::pos() );
+        }
+    }
+signals:
+    void rightClicked( QModelIndex, QPoint  );
+};
+#endif
diff --git a/modules/gui/qt4/util/views.hpp b/modules/gui/qt4/util/views.hpp
deleted file mode 100644 (file)
index 5ad0f1e..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-/*****************************************************************************
- * views.hpp : Custom views
- ****************************************************************************
- * Copyright (C) 2006 the VideoLAN team
- * $Id: qvlcframe.hpp 16283 2006-08-17 18:16:09Z zorglub $
- *
- * Authors: Clément Stenac <zorglub@videolan.org>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/
-
-#ifndef _QVLCVIEWS_H_
-#define _QVLCVIEWS_H_
-
-#include <QMouseEvent>
-#include <QTreeView>
-#include <QCursor>
-#include <QPoint>
-#include <QModelIndex>
-
-class QVLCTreeView : public QTreeView
-{
-    Q_OBJECT;
-public:
-    QVLCTreeView( QWidget * parent ) : QTreeView( parent )
-    {
-    };
-    virtual ~QVLCTreeView()   {};
-
-    void mouseReleaseEvent(QMouseEvent* e )
-    {
-        if( e->button() & Qt::RightButton )
-        {
-            emit rightClicked( indexAt( QPoint( e->x(), e->y() ) ), QCursor::pos() );
-        }
-    }
-signals:
-    void rightClicked( QModelIndex, QPoint  );
-};
-#endif