source: smplayer/trunk/src/prefnetwork.h@ 176

Last change on this file since 176 was 176, checked in by Silvan Scherrer, 9 years ago

smplayer: update trunk to version 16.4

File size: 1.6 KB
Line 
1/* smplayer, GUI front-end for mplayer.
2 Copyright (C) 2006-2016 Ricardo Villalba <rvm@users.sourceforge.net>
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
26class Preferences;
27
28class PrefNetwork : public PrefWidget, public Ui::PrefNetwork
29{
30 Q_OBJECT
31
32public:
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
45protected:
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
59protected slots:
60 void streaming_type_combo_changed(int);
61
62protected:
63 virtual void retranslateStrings();
64};
65
66#endif
Note: See TracBrowser for help on using the repository browser.