⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 info_panels.hpp

📁 VLC Player Source Code
💻 HPP
字号:
/***************************************************************************** * infopanels.hpp : Panels for the information dialogs **************************************************************************** * Copyright (C) 2006-2007 the VideoLAN team * $Id: 5a948e45e92113a3db5f723a103909cbeb787125 $ * * Authors: Clément Stenac <zorglub@videolan.org> *          Jean-Baptiste Kempf <jb@videolan.org> *          Ilkka Ollakka <ileoo@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 _INFOPANELS_H_#define _INFOPANELS_H_#ifdef HAVE_CONFIG_H# include "config.h"#endif#include <vlc_common.h>#include <vlc_meta.h>#include <QWidget>#include <QLabel>#include <limits.h>#define setSpinBounds( spinbox ) {               \    spinbox->setRange( 0, INT_MAX );             \    spinbox->setAccelerated( true ) ;            \    spinbox->setAlignment( Qt::AlignRight );     \    spinbox->setSpecialValueText(""); }class QTreeWidget;class QTreeWidgetItem;class QTreeView;class QSpinBox;class QLineEdit;class CoverArtLabel;class MetaPanel: public QWidget{    Q_OBJECT;public:    MetaPanel( QWidget *, intf_thread_t * );    virtual ~MetaPanel();    void saveMeta();    bool isInEditMode();    void setEditMode( bool );private:    input_item_t *p_input;    intf_thread_t *p_intf;    bool b_inEditMode;    QLineEdit *title_text;    QLineEdit *artist_text;    QLineEdit *genre_text;    QLineEdit *copyright_text;    QLineEdit *collection_text;    QLineEdit *seqnum_text;    QLineEdit *description_text;//    QSpinBox *rating_text;    QLineEdit *date_text;//    QLineEdit *setting_text;    QLineEdit *language_text;    QLineEdit *nowplaying_text;    QLineEdit *publisher_text;//    QLineEdit *encodedby_text;    CoverArtLabel *art_cover;public slots:    void update( input_item_t * );    void clear();private slots:    void enterEditMode();signals:    void uriSet( QString );    void editing();};class ExtraMetaPanel: public QWidget{    Q_OBJECT;public:    ExtraMetaPanel( QWidget *, intf_thread_t * );    virtual  ~ExtraMetaPanel() {};private:    intf_thread_t *p_intf;    QTreeWidget *extraMetaTree;public slots:    void update( input_item_t * );    void clear();};class InputStatsPanel: public QWidget{    Q_OBJECT;public:    InputStatsPanel( QWidget *, intf_thread_t * );    virtual ~InputStatsPanel();private:    intf_thread_t *p_intf;    QTreeWidget *StatsTree;    QTreeWidgetItem *input;    QTreeWidgetItem *read_media_stat;    QTreeWidgetItem *input_bitrate_stat;    QTreeWidgetItem *demuxed_stat;    QTreeWidgetItem *stream_bitrate_stat;    QTreeWidgetItem *video;    QTreeWidgetItem *vdecoded_stat;    QTreeWidgetItem *vdisplayed_stat;    QTreeWidgetItem *vlost_frames_stat;    QTreeWidgetItem *vfps_stat;    QTreeWidgetItem *streaming;    QTreeWidgetItem *send_stat;    QTreeWidgetItem *send_bytes_stat;    QTreeWidgetItem *send_bitrate_stat;    QTreeWidgetItem *audio;    QTreeWidgetItem *adecoded_stat;    QTreeWidgetItem *aplayed_stat;    QTreeWidgetItem *alost_stat;public slots:    void update( input_item_t * );    void clear();};class InfoPanel: public QWidget{    Q_OBJECT;public:    InfoPanel( QWidget *, intf_thread_t * );    virtual ~InfoPanel();private:    intf_thread_t *p_intf;    QTreeWidget *InfoTree;public slots:    void update( input_item_t * );    void clear();};class ArtCover : public QLabel{    Q_OBJECT    void mouseDoubleClickEvent( QMouseEvent *event )    {        fprintf(stderr, "**************************" );    }};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -