ppsspp/UI/PluginScreen.h

59 lines
1.6 KiB
C
Raw Normal View History

2013-06-01 21:34:50 +00:00
// Copyright (c) 2012- PPSSPP Project.
// 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, version 2.0 or later versions.
// 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 2.0 for more details.
// A copy of the GPL 2.0 should have been included with the program.
// If not, see http://www.gnu.org/licenses/
// Official git repository and contact information can be found at
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
#pragma once
2013-06-02 22:42:19 +00:00
2013-06-01 21:34:50 +00:00
#include <string>
#include <vector>
#include <map>
#include "ui/screen.h"
#include "ui/ui.h"
#include "ui/viewgroup.h"
2013-06-02 22:42:19 +00:00
#include "ui/ui_screen.h"
2013-06-01 21:34:50 +00:00
#include "file/file_util.h"
#include "net/http_client.h"
2013-07-21 11:31:46 +00:00
#include "UI/MiscScreens.h"
2013-06-01 21:34:50 +00:00
class PluginScreen : public UIDialogScreenWithBackground {
2013-06-01 21:34:50 +00:00
public:
PluginScreen();
virtual void update(InputState &input);
2013-06-02 12:38:22 +00:00
protected:
virtual void CreateViews();
2013-06-01 21:34:50 +00:00
private:
2013-06-05 14:48:16 +00:00
// Event handlers
2013-06-01 21:34:50 +00:00
UI::EventReturn OnDownload(UI::EventParams &e);
UI::EventReturn OnInformation(UI::EventParams &e);
2013-06-05 14:48:16 +00:00
// Keeping track of downloads
2013-06-01 21:34:50 +00:00
http::Downloader downloader_;
std::shared_ptr<http::Download> json_;
std::shared_ptr<http::Download> at3plusdecoder_;
// UI widgets that need updating
UI::TextView *tvDescription_;
2013-06-02 21:46:03 +00:00
UI::Button *buttonBack_;
2013-06-01 21:34:50 +00:00
UI::Button *buttonDownload_;
2013-06-02 12:38:22 +00:00
UI::ProgressBar *progress_;
2013-06-02 21:46:03 +00:00
std::string at3plusdecoderUrl_;
2013-06-01 21:34:50 +00:00
};