summaryrefslogtreecommitdiff
path: root/src/plugins/cpaster/pastebindotcaprotocol.h
diff options
context:
space:
mode:
authorMaurice Kalinowski <maurice.kalinowski@nokia.com>2009-07-31 12:13:37 +0200
committerMaurice Kalinowski <maurice.kalinowski@nokia.com>2009-07-31 12:13:37 +0200
commit5c663082ccc5ba71c6b0509a2b0b6dfdcc45f2ea (patch)
tree48db77b0c1058e100248d7239bc2804a84400f79 /src/plugins/cpaster/pastebindotcaprotocol.h
parent435207a2239ed35750c9cbca687b229f98b6a5e5 (diff)
downloadqt-creator-5c663082ccc5ba71c6b0509a2b0b6dfdcc45f2ea.tar.gz
add pastebin.ca support for codepaster
- cannot list and does not need any preferences, as there is only one server
Diffstat (limited to 'src/plugins/cpaster/pastebindotcaprotocol.h')
-rw-r--r--src/plugins/cpaster/pastebindotcaprotocol.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/src/plugins/cpaster/pastebindotcaprotocol.h b/src/plugins/cpaster/pastebindotcaprotocol.h
new file mode 100644
index 0000000000..d6c2cc1725
--- /dev/null
+++ b/src/plugins/cpaster/pastebindotcaprotocol.h
@@ -0,0 +1,66 @@
+/**************************************************************************
+**
+** This file is part of Qt Creator
+**
+** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+**
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** Commercial Usage
+**
+** Licensees holding valid Qt Commercial licenses may use this file in
+** accordance with the Qt Commercial License Agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Nokia.
+**
+** GNU Lesser General Public License Usage
+**
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** If you are unsure which license is appropriate for your use, please
+** contact the sales department at http://www.qtsoftware.com/contact.
+**
+**************************************************************************/
+
+#ifndef PASTEBINDOTCAPROTOCOL_H
+#define PASTEBINDOTCAPROTOCOL_H
+#include "protocol.h"
+#include <QtNetwork/QNetworkAccessManager>
+#include <QtNetwork/QNetworkReply>
+#include <QtNetwork/QHttp>
+
+class PasteBinDotCaProtocol : public Protocol
+{
+ Q_OBJECT
+public:
+ PasteBinDotCaProtocol();
+ QString name() const { return QLatin1String("Pastebin.Ca"); }
+
+ bool hasSettings() const { return false; }
+ bool canList() const { return false; }
+
+ void fetch(const QString &id);
+ void paste(const QString &text,
+ const QString &username = "",
+ const QString &comment = "",
+ const QString &description = "");
+public slots:
+ void fetchFinished();
+
+ void postRequestFinished(int id, bool error);
+
+private:
+ QNetworkAccessManager manager;
+ QNetworkReply *reply;
+ QString fetchId;
+
+ QHttp http;
+ int postId;
+};
+
+#endif // PASTEBINDOTCAPROTOCOL_H