2018-12-25 15:10:15 -05:00
|
|
|
/*******************************************************************************
|
|
|
|
* gui/toaster/DownloadToaster.h *
|
|
|
|
* *
|
|
|
|
* Copyright (c) 2010 Retroshare Team <retroshare.project@gmail.com> *
|
|
|
|
* Copyright (C) 2007 - 2010 Xesc & Technology *
|
|
|
|
* *
|
|
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU Affero 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 Affero General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
|
|
* *
|
|
|
|
*******************************************************************************/
|
2010-11-24 19:20:25 -05:00
|
|
|
|
|
|
|
#ifndef DOWNLOADTOASTER_H
|
|
|
|
#define DOWNLOADTOASTER_H
|
|
|
|
|
|
|
|
#include "ui_DownloadToaster.h"
|
2014-03-17 16:56:06 -04:00
|
|
|
#include <retroshare/rstypes.h>
|
2010-11-24 19:20:25 -05:00
|
|
|
|
2010-12-07 19:14:12 -05:00
|
|
|
class DownloadToaster : public QWidget
|
2010-11-24 19:20:25 -05:00
|
|
|
{
|
2010-12-07 19:14:12 -05:00
|
|
|
Q_OBJECT
|
2010-11-24 19:20:25 -05:00
|
|
|
|
|
|
|
public:
|
2014-03-17 16:56:06 -04:00
|
|
|
DownloadToaster(const RsFileHash &hash, const QString &name);
|
2010-11-24 19:20:25 -05:00
|
|
|
|
|
|
|
private slots:
|
2010-12-07 19:14:12 -05:00
|
|
|
void play();
|
2010-11-24 19:20:25 -05:00
|
|
|
|
|
|
|
private:
|
2014-03-17 16:56:06 -04:00
|
|
|
RsFileHash fileHash;
|
2010-12-07 19:14:12 -05:00
|
|
|
|
|
|
|
/** Qt Designer generated object */
|
|
|
|
Ui::DownloadToaster ui;
|
2010-11-24 19:20:25 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|