Show Patreon patrons in the about dialog

This commit is contained in:
Forkk
2014-05-01 12:43:55 -05:00
parent 5fa36f67b3
commit 605a334057
3 changed files with 102 additions and 28 deletions

View File

@ -17,6 +17,8 @@
#include <QDialog>
#include <logic/net/ByteArrayDownload.h>
namespace Ui
{
class AboutDialog;
@ -30,6 +32,16 @@ public:
explicit AboutDialog(QWidget *parent = 0);
~AboutDialog();
public
slots:
/// Starts loading a list of Patreon patrons.
void loadPatronList();
/// Slot for when the patron list loads successfully.
void patronListLoaded();
private:
Ui::AboutDialog *ui;
ByteArrayDownloadPtr patronListDownload;
};