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

📄 open_panels.hpp

📁 VLC Player Source Code
💻 HPP
字号:
/***************************************************************************** * open.hpp : Panels for the open dialogs **************************************************************************** * Copyright (C) 2006-2007 the VideoLAN team * Copyright (C) 2007 Société des arts technologiques * Copyright (C) 2007 Savoir-faire Linux * $Id$ * * Authors: Clément Stenac <zorglub@videolan.org> *          Jean-Baptiste Kempf <jb@videolan.org> *          Pierre-Luc Beaudoin <pierre-luc.beaudoin@savoirfairelinux.com> * * 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 _OPENPANELS_H_#define _OPENPANELS_H_#ifdef HAVE_CONFIG_H# include "config.h"#endif#include <vlc_common.h>#include <QFileDialog>#include "ui/open_file.h"#include "ui/open_disk.h"#include "ui/open_net.h"#include "ui/open_capture.h"#include "components/preferences_widgets.hpp"#include <limits.h>#define setSpinBoxFreq( spinbox ){ spinbox->setRange ( 0, INT_MAX ); \    spinbox->setAccelerated( true ); }enum{    NO_PROTO,    HTTP_PROTO,    HTTPS_PROTO,    MMS_PROTO,    FTP_PROTO,    RTSP_PROTO,    RTP_PROTO,    UDP_PROTO,    RTMP_PROTO};enum{    V4L_DEVICE,    V4L2_DEVICE,    PVR_DEVICE,    DVB_DEVICE,    BDA_DEVICE,    DSHOW_DEVICE,    SCREEN_DEVICE,    JACK_DEVICE};static const char *psz_devModule[] = { "v4l", "v4l2", "pvr", "dvb", "bda",                                       "dshow", "screen", "jack" };class QWidget;class QLineEdit;class QString;class OpenPanel: public QWidget{    Q_OBJECT;public:    OpenPanel( QWidget *p, intf_thread_t *_p_intf ) : QWidget( p )    {        p_intf = _p_intf;    }    virtual ~OpenPanel() {};    virtual void clear() = 0;protected:    intf_thread_t *p_intf;public slots:    virtual void updateMRL() = 0;signals:    void mrlUpdated( QString );    void methodChanged( QString method );};class FileOpenBox: public QFileDialog{    Q_OBJECT;public:    FileOpenBox( QWidget *parent, const QString &caption,        const QString &directory, const QString &filter ):        QFileDialog( parent, caption, directory, filter ) {}public slots:    void accept();    void reject();};class FileOpenPanel: public OpenPanel{    Q_OBJECT;public:    FileOpenPanel( QWidget *, intf_thread_t * );    virtual ~FileOpenPanel();    virtual void clear() ;    virtual void accept() ;private:    Ui::OpenFile ui;    QStringList browse( QString );    FileOpenBox *dialogBox;    QLineEdit *lineFileEdit;    QStringList fileCompleteList ;public slots:    virtual void updateMRL();private slots:    void browseFileSub();    void toggleSubtitleFrame();};class NetOpenPanel: public OpenPanel{    Q_OBJECT;public:    NetOpenPanel( QWidget *, intf_thread_t * );    virtual ~NetOpenPanel();    virtual void clear() ;private:    Ui::OpenNetwork ui;public slots:    virtual void updateMRL();private slots:    void updateProtocol( int );};class DiscOpenPanel: public OpenPanel{    Q_OBJECT;public:    DiscOpenPanel( QWidget *, intf_thread_t * );    virtual ~DiscOpenPanel();    virtual void clear() ;    virtual void accept() ;private:    Ui::OpenDisk ui;    char *psz_dvddiscpath, *psz_vcddiscpath, *psz_cddadiscpath;    bool b_firstdvd, b_firstvcd, b_firstcdda;public slots:    virtual void updateMRL() ;private slots:    void browseDevice();    void updateButtons() ;    void eject();};class CaptureOpenPanel: public OpenPanel{    Q_OBJECT;public:    CaptureOpenPanel( QWidget *, intf_thread_t * );    virtual ~CaptureOpenPanel();    virtual void clear() ;private:    Ui::OpenCapture ui;    bool isInitialized;    QString advMRL;    QDialog *adv;#ifdef WIN32    QRadioButton *bdas, *bdat, *bdac;    QSpinBox *bdaCard, *bdaFreq, *bdaSrate;    QLabel *bdaSrateLabel, *bdaBandLabel;    QComboBox *bdaBandBox;    StringListConfigControl *vdevDshowW, *adevDshowW;    QLineEdit *dshowVSizeLine;#else    QRadioButton *dvbs, *dvbt, *dvbc;    QSpinBox  *v4lFreq, *pvrFreq, *pvrBitr;    QLineEdit *v4lVideoDevice, *v4lAudioDevice;    QLineEdit *v4l2VideoDevice, *v4l2AudioDevice;    QLineEdit *pvrDevice, *pvrRadioDevice;    QComboBox *v4lNormBox, *v4l2StdBox, *pvrNormBox;    QSpinBox *dvbCard, *dvbFreq, *dvbSrate;    QSpinBox *jackChannels, *jackCaching;    QCheckBox *jackPace, *jackConnect;    QLineEdit *jackPortsSelected;#endif    QSpinBox *screenFPS;public slots:    virtual void updateMRL();    void initialize();private slots:    void updateButtons();    void advancedDialog();};#endif

⌨️ 快捷键说明

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