homebrew_launcher/src/menu/ProgressWindow.h
dimok789 b6d29714c7 - filter homebrew launcher itself from the list of homebrews (issue 13)
- fixed random freeze caused from multi threaded access to elements list in a frame (issue 6)
- changed maximum depth of ELF file searching to 1 sub-directory only
- fixed wrong homebrew buttons order display in some cases (issue 15)
- bump hbl version to 1.3
2016-11-04 20:47:39 +01:00

48 lines
1.5 KiB
C++

/****************************************************************************
* Copyright (C) 2015 Dimok
*
* 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 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
****************************************************************************/
#ifndef _PROGRESS_WINDOW_H_
#define _PROGRESS_WINDOW_H_
#include "gui/Gui.h"
class ProgressWindow : public GuiFrame, public sigslot::has_slots<>
{
public:
ProgressWindow(const std::string & titleText);
virtual ~ProgressWindow();
void setProgress(f32 percent);
void setTitle(const std::string & title);
private:
void draw(CVideo * v);
GuiText titleText;
GuiImageData *bgImageData;
GuiImage bgImage;
GuiImage progressImageBlack;
GuiImage progressImageColored;
GuiTrigger touchTrigger;
GuiTrigger wpadTouchTrigger;
bool titleChanged;
std::string currentTitle;
CMutex titleMutex;
};
#endif //_PROGRESS_WINDOW_H_