File: options.h

package info (click to toggle)
psi-plugins 1.5-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 4,368 kB
  • sloc: cpp: 42,063; xml: 714; ansic: 84; makefile: 61; sh: 12
file content (71 lines) | stat: -rw-r--r-- 2,164 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
    proxy.h

	Copyright (c) 2011 by Evgeny Khryukin

 ***************************************************************************
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 ***************************************************************************
*/

#ifndef PROXY_H
#define PROXY_H

#include <QNetworkProxy>
#include <QNetworkCookie>
#include "QVariant"

class ApplicationInfoAccessingHost;
class OptionAccessingHost;

#define CONST_COOKIES "cookies"
#define CONST_LOGIN "login"
#define CONST_PASS_OLD "pass"
#define CONST_PASS "pass-encoded"
#define CONST_TEMPLATE "template"
#define CONST_LAST_FOLDER "lastfolder"
#define CONST_WIDTH "width"
#define CONST_HEIGHT "height"
#define POPUP_OPTION_NAME ".popupinterval"
#define VERSION "0.1.4"


#define O_M(x) Options::message(x)

enum MessageType { MAuthStart, MAuthOk, MAuthError, MCancel, MChooseFile, MUploading, MError, MRemoveCookie };

class Options : public QObject
{
	Q_OBJECT
public:
	static Options * instance();
	static void reset();
	static QString message(MessageType type);

	static QString encodePassword(const QString &pass);
	static QString decodePassword(const QString &pass);

	void setApplicationInfoAccessingHost(ApplicationInfoAccessingHost* host);
	void setOptionAccessingHost(OptionAccessingHost* host);
	void setOption(const QString& name, const QVariant& value);
	QVariant getOption(const QString& name, const QVariant& def = QVariant::Invalid);
	QNetworkProxy getProxy() const;
	bool useProxy() const;
	void saveCookies(const QList<QNetworkCookie>& cooks);
	QList<QNetworkCookie> loadCookies();

private:
	static Options * instance_;
	Options ();
	virtual ~Options();

	ApplicationInfoAccessingHost* appInfo;
	OptionAccessingHost* options;
};

#endif // PROXY_H