/* 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 #endif #include #include #include #include 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; int y_tmp; std::vector 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); std::string getYWebVersion(); CComponentsWindowMax *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