transmission/qt/add-data.h

47 lines
891 B
C
Raw Normal View History

/*
* This file Copyright (C) 2010-2014 Mnemosyne LLC
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
* $Id$
*/
#ifndef ADD_DATA_H
#define ADD_DATA_H
#include <QByteArray>
#include <QString>
#include <QUrl>
class AddData
{
2013-09-14 22:45:04 +00:00
public:
2013-09-14 22:45:04 +00:00
enum { NONE, MAGNET, URL, FILENAME, METAINFO };
int type;
2013-09-14 22:45:04 +00:00
QByteArray metainfo;
QString filename;
QString magnet;
QUrl url;
2013-09-14 22:45:04 +00:00
public:
2013-09-14 22:45:04 +00:00
int set (const QString&);
AddData (const QString& str) { set(str); }
AddData (): type(NONE) {}
2013-09-14 22:45:04 +00:00
QByteArray toBase64 () const;
QString readableName () const;
2013-09-14 22:45:04 +00:00
public:
2013-09-14 22:45:04 +00:00
static bool isSupported (const QString& str) { return AddData(str).type != NONE; }
};
#endif