diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2015-11-08 12:10:13 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-11-08 09:45:13 -0800 |
commit | 8abf64d8c08804549639b754e49058ec96ea6b5f (patch) | |
tree | 0681e55427acbe1e59de9cefd22ffb863abd40e8 /desktop-widgets/plugins | |
parent | a1ff14a48f06e15c863f6ef0ba31b15c7bb1696d (diff) | |
download | subsurface-8abf64d8c08804549639b754e49058ec96ea6b5f.tar.gz |
Finish the first facebook integration plugin
Now the plugin is usable, one can use it to send stuff to facebook.
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'desktop-widgets/plugins')
-rw-r--r-- | desktop-widgets/plugins/facebook/facebookconnectwidget.cpp | 56 | ||||
-rw-r--r-- | desktop-widgets/plugins/facebook/facebookconnectwidget.h | 14 |
2 files changed, 54 insertions, 16 deletions
diff --git a/desktop-widgets/plugins/facebook/facebookconnectwidget.cpp b/desktop-widgets/plugins/facebook/facebookconnectwidget.cpp index b5e402617..264244b48 100644 --- a/desktop-widgets/plugins/facebook/facebookconnectwidget.cpp +++ b/desktop-widgets/plugins/facebook/facebookconnectwidget.cpp @@ -308,22 +308,60 @@ void FacebookConnectWidget::facebookDisconnect() } } -SocialNetworkDialog::SocialNetworkDialog(QWidget* parent, Qt::WindowFlags f): QDialog(parent, f) +SocialNetworkDialog::SocialNetworkDialog(QWidget *parent) : + QDialog(parent), + ui( new Ui::SocialnetworksDialog()) { - + ui->setupUi(this); + ui->buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false); + connect(ui->date, SIGNAL(clicked()), this, SLOT(selectionChanged())); + connect(ui->duration, SIGNAL(clicked()), this, SLOT(selectionChanged())); + connect(ui->Buddy, SIGNAL(clicked()), this, SLOT(selectionChanged())); + connect(ui->Divemaster, SIGNAL(clicked()), this, SLOT(selectionChanged())); + connect(ui->Location, SIGNAL(clicked()), this, SLOT(selectionChanged())); + connect(ui->Notes, SIGNAL(clicked()), this, SLOT(selectionChanged())); + connect(ui->album, SIGNAL(textChanged(QString)), this, SLOT(albumChanged())); } -QString SocialNetworkDialog::name() const +void SocialNetworkDialog::albumChanged() { - return _name; + QAbstractButton *button = ui->buttonBox->button(QDialogButtonBox::Ok); + button->setEnabled(!ui->album->text().isEmpty()); } -QString SocialNetworkDialog::album() const +void SocialNetworkDialog::selectionChanged() { - return _album; + struct dive *d = current_dive; + QString fullText; + if (ui->date->isChecked()) { + fullText += tr("Dive date: %1 \n").arg(get_short_dive_date_string(d->when)); + } + if (ui->duration->isChecked()) { + fullText += tr("Duration: %1 \n").arg(get_dive_duration_string(d->duration.seconds, + tr("h:", "abbreviation for hours plus separator"), + tr("min", "abbreviation for minutes"))); + } + if (ui->Location->isChecked()) { + fullText += tr("Dive location: %1 \n").arg(get_dive_location(d)); + } + if (ui->Buddy->isChecked()) { + fullText += tr("Buddy: %1 \n").arg(d->buddy); + } + if (ui->Divemaster->isChecked()) { + fullText += tr("Divemaster: %1 \n").arg(d->divemaster); + } + if (ui->Notes->isChecked()) { + fullText += tr("\n%1").arg(d->notes); + } + ui->text->setPlainText(fullText); } -QString SocialNetworkDialog::text() const -{ - return _text; +QString SocialNetworkDialog::text() const { + return ui->text->toPlainText().toHtmlEscaped(); +} + +QString SocialNetworkDialog::album() const { + return ui->album->text().toHtmlEscaped(); } + + diff --git a/desktop-widgets/plugins/facebook/facebookconnectwidget.h b/desktop-widgets/plugins/facebook/facebookconnectwidget.h index 4802b9f63..61966f566 100644 --- a/desktop-widgets/plugins/facebook/facebookconnectwidget.h +++ b/desktop-widgets/plugins/facebook/facebookconnectwidget.h @@ -5,6 +5,7 @@ class QWebView; namespace Ui { class FacebookConnectWidget; + class SocialnetworksDialog; } class FacebookManager : public QObject @@ -47,15 +48,14 @@ private: class SocialNetworkDialog : public QDialog { Q_OBJECT public: - explicit SocialNetworkDialog(QWidget* parent = 0, Qt::WindowFlags f = 0); - QString album() const; - QString name() const; + SocialNetworkDialog(QWidget *parent = 0); QString text() const; - + QString album() const; +public slots: + void selectionChanged(); + void albumChanged(); private: - QString _album; - QString _name; - QString _text; + Ui::SocialnetworksDialog *ui; }; #endif
\ No newline at end of file |