usbloadergx/source/homebrewboot/HomebrewBrowser.hpp
dimok321 052c6d4591 RC1 upload:
*update of ehcmodules for Hermes IOS supporting now more drives (thanks rodries again)
*added ignore case sensitivity on NTFS (hopefully it works as good as it sounds)
*fixed homebrew receiving in homebrew launcher via network
*changed video switching code to the one from Wiiflow
*allow ',' as floating point '.'
*Fix of reloading titles after wiitdb update
*reset all other button clicks on carousel when two or more buttons are clicked at once
*a few code optimizations
*fixed compile bug on OSX (Issue 1844 and Issue 1132)
*language files updated
2011-03-14 21:19:21 +00:00

65 lines
2.1 KiB
C++

/****************************************************************************
* Copyright (C) 2010
* by Dimok
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any
* damages arising from the use of this software.
*
* Permission is granted to anyone to use this software for any
* purpose, including commercial applications, and to alter it and
* redistribute it freely, subject to the following restrictions:
*
* 1. The origin of this software must not be misrepresented; you
* must not claim that you wrote the original software. If you use
* this software in a product, an acknowledgment in the product
* documentation would be appreciated but is not required.
*
* 2. Altered source versions must be plainly marked as such, and
* must not be misrepresented as being the original software.
*
* 3. This notice may not be removed or altered from any source
* distribution.
***************************************************************************/
#ifndef HOMEBREWBROWSER_HPP_
#define HOMEBREWBROWSER_HPP_
#include "settings/menus/FlyingButtonsMenu.hpp"
#include "FileOperations/DirList.h"
#define DISPLAY_BUTTONS 4
class HomebrewBrowser : public FlyingButtonsMenu
{
public:
HomebrewBrowser();
~HomebrewBrowser();
static int Execute();
virtual int MainLoop();
protected:
void MainButtonClicked(int index);
int ReceiveFile();
virtual void CreateSettingsMenu(int index) { MainButtonClicked(index); };
virtual void DeleteSettingsMenu() { };
virtual void SetupMainButtons();
virtual void AddMainButtons();
DirList * HomebrewList;
GuiImageData * IconImgData[DISPLAY_BUTTONS];
GuiImage * IconImg[DISPLAY_BUTTONS];
std::vector<GuiText *> MainButtonDesc;
std::vector<GuiText *> MainButtonDescOver;
bool wifiNotSet;
GuiTooltip * wifiToolTip;
GuiImageData * wifiImgData;
GuiImage * wifiImg;
GuiButton * wifiBtn;
GuiImageData * channelImgData;
GuiImage * channelBtnImg;
GuiButton * channelBtn;
};
#endif