// // UpdateDialog.h // interface // // Created by Leonardo Murillo on 1/8/14. // Copyright (c) 2013, 2014 High Fidelity, Inc. All rights reserved. // #ifndef __hifi__UpdateDialog__ #define __hifi__UpdateDialog__ #include class UpdateDialog : public QWidget { Q_OBJECT public: UpdateDialog(QWidget* parent, const QString& releaseNotes, const QString& latestVersion, const QUrl& downloadURL); private: QString _latestVersion; QUrl _downloadUrl; private slots: void handleDownload(); void handleSkip(); }; #endif /* defined(__hifi__UpdateDialog__) */