mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 16:18:42 +00:00
.. move the twitter dialog into the deprecated folder .. remove all remaining references to twitter
91 lines
2.3 KiB
C++
91 lines
2.3 KiB
C++
/*
|
|
* Copyright (c) 2009 Justin F. Knotzke (jknotzke@shampoo.ca)
|
|
*
|
|
* 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.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc., 51
|
|
* Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef TWITTERDIALOG_H
|
|
#define TWITTERDIALOG_H
|
|
#include "GoldenCheetah.h"
|
|
|
|
#include <QObject>
|
|
#include <QtGui>
|
|
#include <QCheckBox>
|
|
#include <QDialog>
|
|
#include <QLabel>
|
|
#include <QLineEdit>
|
|
#include <QMessageBox>
|
|
#include <QGroupBox>
|
|
#include <QtGui>
|
|
#include "MainWindow.h"
|
|
#include "RideItem.h"
|
|
#include "RideMetric.h"
|
|
#include "Context.h"
|
|
|
|
#ifdef GC_HAVE_KQOAUTH
|
|
#include <kqoauthmanager.h>
|
|
#endif
|
|
|
|
class TwitterDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
G_OBJECT
|
|
|
|
public:
|
|
TwitterDialog(Context *context, RideItem *item);
|
|
~TwitterDialog();
|
|
|
|
signals:
|
|
void extraTokensReady(const QVariantMap &extraTokens);
|
|
void linkingFailed();
|
|
void linkingSucceeded();
|
|
void statusPosted();
|
|
|
|
private slots:
|
|
void onCheck(int state);
|
|
void tweetMsgChange(QString);
|
|
void tweetCurrentRide();
|
|
void onRequestReady(QByteArray);
|
|
void onAuthorizedRequestDone();
|
|
|
|
private:
|
|
Context *context;
|
|
|
|
QPushButton *tweetButton;
|
|
QPushButton *cancelButton;
|
|
MainWindow *mainWindow;
|
|
QCheckBox *workoutTimeChk;
|
|
QCheckBox *timeRidingChk;
|
|
QCheckBox *totalDistanceChk;
|
|
QCheckBox *elevationGainChk;
|
|
QCheckBox *totalWorkChk;
|
|
QCheckBox *averageSpeedChk;
|
|
QCheckBox *averagePowerChk;
|
|
QCheckBox *averageHRMChk;
|
|
QCheckBox *averageCadenceChk;
|
|
QCheckBox *maxPowerChk;
|
|
QCheckBox *maxHRMChk;
|
|
QLineEdit *twitterMessageEdit;
|
|
QLineEdit *twitterLengthLabel;
|
|
|
|
RideItem *ride;
|
|
QString getTwitterMessage();
|
|
|
|
KQOAuthManager *oauthManager;
|
|
KQOAuthRequest *oauthRequest;
|
|
};
|
|
|
|
#endif // TWITTERDIALOG_H
|