mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-26 15:02:56 +02:00
-use CComponentsExtTextForm: this combines labels and text to one item -add build informations: this includes some functions of CBuildInfo class to show its informations, user can now use the red button and toggle between license and build infos
87 lines
2.0 KiB
C++
87 lines
2.0 KiB
C++
/*
|
|
Based up Neutrino-GUI - Tuxbox-Project
|
|
Copyright (C) 2001 by Steffen Hehn 'McClean'
|
|
|
|
Implementation of component classes
|
|
Copyright (C) 2013, Thilo Graf 'dbt'
|
|
|
|
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 __imageinfo__
|
|
#define __imageinfo__
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <gui/widget/menue.h>
|
|
#include <gui/components/cc.h>
|
|
#include <gui/buildinfo.h>
|
|
#include <configfile.h>
|
|
|
|
typedef struct image_info_t
|
|
{
|
|
neutrino_locale_t caption;
|
|
std::string info_text;
|
|
|
|
} image_info_struct_t;
|
|
|
|
class CImageInfo : public CMenuTarget
|
|
{
|
|
private:
|
|
int item_offset; //distance between items and to boarder
|
|
std::string license_txt;
|
|
Font* item_font;
|
|
int item_height;
|
|
|
|
std::vector<image_info_t> v_info;
|
|
|
|
void Clean();
|
|
void Init();
|
|
void InitInfoData();
|
|
void InitMinitv();
|
|
void InitInfos();
|
|
void InitBuildInfos();
|
|
void InitInfoText(const std::string& text);
|
|
std::string getLicenseText();
|
|
void ShowWindow();
|
|
void ScrollLic(bool scrollDown);
|
|
|
|
CComponentsWindow *cc_win;
|
|
CComponentsForm *cc_info;
|
|
CComponentsPIP *cc_tv;
|
|
CComponentsInfoBox *cc_lic;
|
|
CBuildInfo *b_info;
|
|
CConfigFile config;
|
|
CComponentsButtonRed *btn_red;
|
|
CComponentsLabel *cc_sub_caption;
|
|
|
|
public:
|
|
|
|
CImageInfo();
|
|
~CImageInfo();
|
|
|
|
void hide();
|
|
int exec(CMenuTarget* parent, const std::string & actionKey);
|
|
};
|
|
|
|
#endif
|
|
|