]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/dialogs/mediainfo.hpp
Qt: use __MIN when applicable
[vlc] / modules / gui / qt4 / dialogs / mediainfo.hpp
index 0884ff44ae0a07d3999a16a21076702ab96d9435..49c1f18ed53625a469b99b3f13df189baab52ebe 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * mediainfo.hpp : Information about a stream
  ****************************************************************************
- * Copyright (C) 2006 the VideoLAN team
+ * Copyright (C) 2006-2007 the VideoLAN team
  * $Id$
  *
  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  ******************************************************************************/
 
-#ifndef _MEDIAINFO_DIALOG_H_
-#define _MEDIAINFO_DIALOG_H_
+#ifndef QVLC_MEDIAINFO_DIALOG_H_
+#define QVLC_MEDIAINFO_DIALOG_H_ 1
 
 #include "util/qvlcframe.hpp"
-#include <QTabWidget>
-#include <QBoxLayout>
+#include "components/info_panels.hpp"
+#include "util/singleton.hpp"
 
-class InfoTab;
+class QTabWidget;
 
-class MediaInfoDialog : public QVLCFrame
+class MediaInfoDialog : public QVLCFrame, public Singleton<MediaInfoDialog>
 {
-    Q_OBJECT;
+    Q_OBJECT
 public:
-    MediaInfoDialog( intf_thread_t *, bool mainInput = false );
-    static MediaInfoDialog * getInstance( intf_thread_t *p_intf )
-    {
-        if( !instance)
-            instance = new MediaInfoDialog( p_intf, true);
-        return instance;
-    }
-    static void killInstance()
-    {
-        if( instance ) delete instance;
-        instance= NULL;
-    }
-    virtual ~MediaInfoDialog();
+    MediaInfoDialog( intf_thread_t *,
+                     input_item_t * input = NULL );
 
     void showTab( int );
-    bool need_update;
+#if 0
     void setInput( input_item_t * );
+#endif
+
 private:
-    input_thread_t *p_input;
-    InfoTab *IT;
-    static MediaInfoDialog *instance;
-    int i_runs;
-    bool mainInput;
-public slots:
-    void update();
-    void close();
+    virtual ~MediaInfoDialog();
+
+    bool isMainInputInfo;
+
+    QTabWidget *infoTabW;
+
+    InputStatsPanel *ISP;
+    MetaPanel *MP;
+    InfoPanel *IP;
+    ExtraMetaPanel *EMP;
+
+    QPushButton *saveMetaButton;
+    QLineEdit   *uriLine;
+
+private slots:
+    void updateAllTabs( input_item_t * );
+    void clearAllTabs();
+
+    virtual void close();
+
+    void saveMeta();
+    void updateButtons( int i_tab );
+    void updateURI( const QString& );
+
+    friend class    Singleton<MediaInfoDialog>;
 };
 
 #endif