2011-03-03 18:29:20 +01:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
|
|
|
* Copyright (C) 2010-2011 nowrep
|
|
|
|
*
|
|
|
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
* ============================================================ */
|
2011-03-03 15:24:23 +01:00
|
|
|
#include "rssnotification.h"
|
|
|
|
#include "ui_rssnotification.h"
|
|
|
|
#include "mainapplication.h"
|
|
|
|
#include "qupzilla.h"
|
2011-09-30 21:44:18 +02:00
|
|
|
#include "iconprovider.h"
|
2011-03-03 15:24:23 +01:00
|
|
|
|
2011-03-17 17:03:04 +01:00
|
|
|
RSSNotification::RSSNotification(QString host, QWidget* parent) :
|
2011-09-11 19:15:06 +02:00
|
|
|
AnimatedWidget(AnimatedWidget::Down, 300, parent),
|
2011-03-03 15:24:23 +01:00
|
|
|
ui(new Ui::RSSNotification)
|
|
|
|
{
|
|
|
|
setAttribute(Qt::WA_DeleteOnClose);
|
2011-08-02 16:19:20 +02:00
|
|
|
ui->setupUi(widget());
|
2011-09-30 21:44:18 +02:00
|
|
|
ui->closeButton->setIcon(IconProvider::standardIcon(QStyle::SP_DialogCloseButton));
|
2011-03-03 15:24:23 +01:00
|
|
|
ui->label->setText(tr("You have successfuly added RSS feed \"%1\".").arg(host));
|
|
|
|
|
2011-03-04 13:59:07 +01:00
|
|
|
connect(ui->pushButton, SIGNAL(clicked()), mApp->getWindow(), SLOT(showRSSManager()));
|
2011-03-03 15:24:23 +01:00
|
|
|
connect(ui->pushButton, SIGNAL(clicked()), this, SLOT(hide()));
|
|
|
|
connect(ui->closeButton, SIGNAL(clicked()), this, SLOT(hide()));
|
2011-08-02 16:19:20 +02:00
|
|
|
startAnimation();
|
2011-03-03 15:24:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
RSSNotification::~RSSNotification()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|