profile_selector.hpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:2k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * profile_selector.hpp : A small profile selector and editor
  3.  ****************************************************************************
  4.  * Copyright (C) 2009 the VideoLAN team
  5.  * $Id: 65ff9739682502ac4df066d714f94c5b9f3d8c54 $
  6.  *
  7.  * Authors: Jean-Baptiste Kempf <jb@videolan.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. #ifndef _PROFILE_H_
  24. #define _PROFILE_H_
  25. #include "qt4.hpp"
  26. #include <QWidget>
  27. #include "util/qvlcframe.hpp"
  28. #include "ui/profiles.h"
  29. class QComboBox;
  30. class VLCProfileSelector : public QWidget
  31. {
  32.     Q_OBJECT
  33. public:
  34.     VLCProfileSelector( QWidget *_parent );
  35.     QString getMux() { return mux; }
  36.     QString getTranscode() { return transcode; }
  37. private:
  38.     QComboBox *profileBox;
  39.     void fillProfilesCombo();
  40.     void editProfile( const QString&, const QString& );
  41.     void saveProfiles();
  42.     QString mux;
  43.     QString transcode;
  44. private slots:
  45.     void newProfile();
  46.     void editProfile();
  47.     void deleteProfile();
  48.     void updateOptions( int i );
  49. signals:
  50.     void optionsChanged();
  51. };
  52. class VLCProfileEditor : public QVLCDialog
  53. {
  54.     Q_OBJECT
  55.     Ui::Profiles ui;
  56. public:
  57.     VLCProfileEditor( const QString&, const QString&, QWidget * );
  58.     QString name;
  59.     QString muxValue;
  60.     QString transcodeValue();
  61. private:
  62.     void registerCodecs();
  63.     void fillProfile( const QString& qs );
  64. protected slots:
  65.     virtual void close();
  66. private slots:
  67.     void setVTranscodeOptions( bool );
  68.     void setATranscodeOptions( bool );
  69.     void setSTranscodeOptions( bool );
  70. };
  71. #endif