mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-30 17:01:08 +02:00
Origin commit data
------------------
Branch: ni/coolstream
Commit: 79e16c058d
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-12-04 (Sat, 04 Dec 2021)
Origin message was:
------------------
- update: formatting code using astyle; some manual code nicenings
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
120 lines
3.0 KiB
C++
120 lines
3.0 KiB
C++
/*
|
|
Neutrino-GUI - DBoxII-Project
|
|
|
|
Copyright (C) 2001 Steffen Hehn 'McClean'
|
|
Homepage: http://dbox.cyberphoria.org/
|
|
|
|
Kommentar:
|
|
|
|
Diese GUI wurde von Grund auf neu programmiert und sollte nun vom
|
|
Aufbau und auch den Ausbaumoeglichkeiten gut aussehen. Neutrino basiert
|
|
auf der Client-Server Idee, diese GUI ist also von der direkten DBox-
|
|
Steuerung getrennt. Diese wird dann von Daemons uebernommen.
|
|
|
|
|
|
License: GPL
|
|
|
|
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 2 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, write to the
|
|
Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef __update__
|
|
#define __update__
|
|
|
|
#include <gui/widget/menue.h>
|
|
|
|
#include <gui/widget/progresswindow.h>
|
|
|
|
#include <driver/framebuffer.h>
|
|
#ifdef BOXMODEL_CST_HD2
|
|
#include <system/mtdutils/mkfs.jffs2.h>
|
|
#endif
|
|
|
|
#include <string>
|
|
|
|
class CFlashUpdate : public CProgressWindow
|
|
{
|
|
private:
|
|
std::string filename;
|
|
std::string file_md5;
|
|
std::string sysfs;
|
|
char fileType;
|
|
bool gotImage;
|
|
int width;
|
|
bool notify;
|
|
|
|
std::string newVersion;
|
|
int menu_ret;
|
|
int softupdate_mode;
|
|
|
|
void update_php(std::string &url, const char *type);
|
|
bool selectHttpImage(void);
|
|
bool getUpdateImage(const std::string &version);
|
|
bool checkVersion4Update();
|
|
|
|
public:
|
|
CFlashUpdate();
|
|
int exec(CMenuTarget *parent, const std::string &actionKey);
|
|
bool checkOnlineVersion();
|
|
void enableNotify(bool enable) { notify = enable; }
|
|
};
|
|
|
|
class CFlashExpert : public CProgressWindow
|
|
{
|
|
private:
|
|
int selectedMTD;
|
|
int width;
|
|
|
|
int showMTDSelector(const std::string &actionkey);
|
|
int showFileSelector(const std::string &actionkey);
|
|
|
|
bool checkSize(int mtd, std::string &backupFile);
|
|
#ifdef BOXMODEL_CST_HD2
|
|
bool readDevtableFile(std::string &devtableFile, CMkfsJFFS2::v_devtable_t &v_devtable);
|
|
void readmtdJFFS2(std::string &filename, std::string title = "", std::string path = "/", bool makeDevTable = true);
|
|
#endif
|
|
|
|
public:
|
|
#ifdef BOXMODEL_CST_HD2
|
|
bool forceOtherFilename;
|
|
std::string otherFilename;
|
|
int createimage_other;
|
|
#endif
|
|
CFlashExpert();
|
|
static CFlashExpert *getInstance();
|
|
int exec(CMenuTarget *parent, const std::string &actionKey);
|
|
void writemtd(const std::string &filename, int mtdNumber);
|
|
void readmtd(int readmtd);
|
|
};
|
|
|
|
#ifdef BOXMODEL_CST_HD2
|
|
class CFlashExpertSetup : public CMenuTarget
|
|
{
|
|
private:
|
|
int width;
|
|
|
|
int showMenu();
|
|
void readMTDPart(int mtd, const std::string &fileName);
|
|
|
|
public:
|
|
CFlashExpertSetup();
|
|
//~CFlashExpertSetup();
|
|
|
|
int exec(CMenuTarget *parent, const std::string &actionKey);
|
|
};
|
|
#endif // BOXMODEL_CST_HD2
|
|
|
|
#endif
|