nextcloud-desktop/src/mirall/statusdialog.h

40 lines
974 B
C
Raw Normal View History

2011-09-30 19:42:28 +04:00
/*
* Copyright (C) by Klaas Freitag <freitag@kde.org>
*
* 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.
*/
#ifndef STATUSDIALOG_H
#define STATUSDIALOG_H
#include <QDialog>
2011-09-26 23:46:26 +04:00
#include "ui_statusdialog.h"
#include "application.h"
2011-09-26 17:00:12 +04:00
namespace Mirall {
2011-09-26 23:46:26 +04:00
class StatusDialog : public QDialog, public Ui::statusDialog
{
Q_OBJECT
public:
explicit StatusDialog(QWidget *parent = 0);
2011-09-26 23:46:26 +04:00
void setFolderList( QHash<QString, Folder*> );
signals:
public slots:
2011-09-26 23:46:26 +04:00
void slotRemoveFolder();
};
2011-09-26 17:00:12 +04:00
};
2011-09-26 23:46:26 +04:00
#endif // STATUSDIALOG_H