info_panels.hpp
资源名称:vlc-1.0.5.zip [点击查看]
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:4k
源码类别:
midi
开发平台:
Unix_Linux
- /*****************************************************************************
- * infopanels.hpp : Panels for the information dialogs
- ****************************************************************************
- * Copyright (C) 2006-2007 the VideoLAN team
- * $Id: f5d8de8ede673319468ef321d5f9977779ce3b72 $
- *
- * 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 <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 * );
- 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( const QString& );
- void editing();
- };
- class ExtraMetaPanel: public QWidget
- {
- Q_OBJECT;
- public:
- ExtraMetaPanel( QWidget *, intf_thread_t * );
- 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 * );
- 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 *corrupted_stat;
- QTreeWidgetItem *discontinuity_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 * );
- private:
- intf_thread_t *p_intf;
- QTreeWidget *InfoTree;
- public slots:
- void update( input_item_t * );
- void clear();
- };
- #endif