profile_selector.hpp
资源名称:vlc-1.0.5.zip [点击查看]
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:2k
源码类别:
midi
开发平台:
Unix_Linux
- /*****************************************************************************
- * profile_selector.hpp : A small profile selector and editor
- ****************************************************************************
- * Copyright (C) 2009 the VideoLAN team
- * $Id: 65ff9739682502ac4df066d714f94c5b9f3d8c54 $
- *
- * Authors: Jean-Baptiste Kempf <jb@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 _PROFILE_H_
- #define _PROFILE_H_
- #include "qt4.hpp"
- #include <QWidget>
- #include "util/qvlcframe.hpp"
- #include "ui/profiles.h"
- class QComboBox;
- class VLCProfileSelector : public QWidget
- {
- Q_OBJECT
- public:
- VLCProfileSelector( QWidget *_parent );
- QString getMux() { return mux; }
- QString getTranscode() { return transcode; }
- private:
- QComboBox *profileBox;
- void fillProfilesCombo();
- void editProfile( const QString&, const QString& );
- void saveProfiles();
- QString mux;
- QString transcode;
- private slots:
- void newProfile();
- void editProfile();
- void deleteProfile();
- void updateOptions( int i );
- signals:
- void optionsChanged();
- };
- class VLCProfileEditor : public QVLCDialog
- {
- Q_OBJECT
- Ui::Profiles ui;
- public:
- VLCProfileEditor( const QString&, const QString&, QWidget * );
- QString name;
- QString muxValue;
- QString transcodeValue();
- private:
- void registerCodecs();
- void fillProfile( const QString& qs );
- protected slots:
- virtual void close();
- private slots:
- void setVTranscodeOptions( bool );
- void setATranscodeOptions( bool );
- void setSTranscodeOptions( bool );
- };
- #endif