[175] | 1 | /* smplayer, GUI front-end for mplayer.
|
---|
[188] | 2 | Copyright (C) 2006-2017 Ricardo Villalba <rvm@users.sourceforge.net>
|
---|
[175] | 3 |
|
---|
| 4 | This program is free software; you can redistribute it and/or modify
|
---|
| 5 | it under the terms of the GNU General Public License as published by
|
---|
| 6 | the Free Software Foundation; either version 2 of the License, or
|
---|
| 7 | (at your option) any later version.
|
---|
| 8 |
|
---|
| 9 | This program is distributed in the hope that it will be useful,
|
---|
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 12 | GNU General Public License for more details.
|
---|
| 13 |
|
---|
| 14 | You should have received a copy of the GNU General Public License
|
---|
| 15 | along with this program; if not, write to the Free Software
|
---|
| 16 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
---|
| 17 | */
|
---|
| 18 |
|
---|
| 19 | #ifndef PREFNETWORK_H
|
---|
| 20 | #define PREFNETWORK_H
|
---|
| 21 |
|
---|
| 22 | #include "ui_prefnetwork.h"
|
---|
| 23 | #include "prefwidget.h"
|
---|
| 24 | #include "config.h"
|
---|
| 25 |
|
---|
| 26 | class Preferences;
|
---|
| 27 |
|
---|
| 28 | class PrefNetwork : public PrefWidget, public Ui::PrefNetwork
|
---|
| 29 | {
|
---|
| 30 | Q_OBJECT
|
---|
| 31 |
|
---|
| 32 | public:
|
---|
| 33 | PrefNetwork( QWidget * parent = 0, Qt::WindowFlags f = 0 );
|
---|
| 34 | ~PrefNetwork();
|
---|
| 35 |
|
---|
| 36 | virtual QString sectionName();
|
---|
| 37 | virtual QPixmap sectionIcon();
|
---|
| 38 |
|
---|
| 39 | // Pass data to the dialog
|
---|
| 40 | void setData(Preferences * pref);
|
---|
| 41 |
|
---|
| 42 | // Apply changes
|
---|
| 43 | void getData(Preferences * pref);
|
---|
| 44 |
|
---|
| 45 | protected:
|
---|
| 46 | virtual void createHelp();
|
---|
| 47 |
|
---|
| 48 | void setProxyType(int type);
|
---|
| 49 | int proxyType();
|
---|
| 50 |
|
---|
| 51 | #ifdef YOUTUBE_SUPPORT
|
---|
| 52 | void setYTQuality(int q);
|
---|
| 53 | int YTQuality();
|
---|
| 54 | #endif
|
---|
| 55 |
|
---|
| 56 | void setStreamingType(int);
|
---|
| 57 | int streamingType();
|
---|
| 58 |
|
---|
[188] | 59 | #ifdef CHROMECAST_SUPPORT
|
---|
| 60 | void setLocalIP(const QString & ip, const QStringList & values);
|
---|
| 61 | QString localIP();
|
---|
| 62 | #endif
|
---|
| 63 |
|
---|
[175] | 64 | protected slots:
|
---|
| 65 | void streaming_type_combo_changed(int);
|
---|
| 66 |
|
---|
| 67 | protected:
|
---|
| 68 | virtual void retranslateStrings();
|
---|
| 69 | };
|
---|
| 70 |
|
---|
| 71 | #endif
|
---|