mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-28 16:01:20 +02:00
- plugins: add and use default hint icon; THX to fred_feuerstein
This commit is contained in:
@@ -110,6 +110,7 @@ install_DATA += \
|
|||||||
hint_osd.png \
|
hint_osd.png \
|
||||||
hint_personalize.png \
|
hint_personalize.png \
|
||||||
hint_picview.png \
|
hint_picview.png \
|
||||||
|
hint_plugin.png \
|
||||||
hint_protection.png \
|
hint_protection.png \
|
||||||
hint_radiomode.png \
|
hint_radiomode.png \
|
||||||
hint_reboot.png \
|
hint_reboot.png \
|
||||||
|
BIN
data/icons/hint_plugin.png
Normal file
BIN
data/icons/hint_plugin.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
@@ -210,7 +210,11 @@ bool CPlugins::parseCfg(plugin *plugin_data)
|
|||||||
plugin_data->hide = false;
|
plugin_data->hide = false;
|
||||||
plugin_data->type = CPlugins::P_TYPE_DISABLED;
|
plugin_data->type = CPlugins::P_TYPE_DISABLED;
|
||||||
plugin_data->integration = CPlugins::I_TYPE_DISABLED;
|
plugin_data->integration = CPlugins::I_TYPE_DISABLED;
|
||||||
plugin_data->hinticon = plugin_data->filename + "_hint";
|
plugin_data->hinticon = NEUTRINO_ICON_HINT_PLUGIN;
|
||||||
|
|
||||||
|
std::string _hintIcon = plugin_data->plugindir + "/" + plugin_data->filename + "_hint.png";
|
||||||
|
if (access(_hintIcon.c_str(), F_OK) == 0)
|
||||||
|
plugin_data->hinticon = _hintIcon;
|
||||||
|
|
||||||
for (int i = 0; i < linecount; i++)
|
for (int i = 0; i < linecount; i++)
|
||||||
{
|
{
|
||||||
@@ -294,7 +298,7 @@ bool CPlugins::parseCfg(plugin *plugin_data)
|
|||||||
|
|
||||||
inFile.close();
|
inFile.close();
|
||||||
|
|
||||||
std::string _hintIcon = plugin_data->plugindir + "/" + plugin_data->hinticon + ".png";
|
_hintIcon = plugin_data->plugindir + "/" + plugin_data->hinticon + ".png";
|
||||||
if (access(_hintIcon.c_str(), F_OK) == 0)
|
if (access(_hintIcon.c_str(), F_OK) == 0)
|
||||||
plugin_data->hinticon = _hintIcon;
|
plugin_data->hinticon = _hintIcon;
|
||||||
|
|
||||||
|
@@ -253,6 +253,9 @@
|
|||||||
#define NEUTRINO_ICON_HINT_RESTORE "hint_restore"
|
#define NEUTRINO_ICON_HINT_RESTORE "hint_restore"
|
||||||
#define NEUTRINO_ICON_HINT_FACTORY "hint_factory"
|
#define NEUTRINO_ICON_HINT_FACTORY "hint_factory"
|
||||||
|
|
||||||
|
/* plugins */
|
||||||
|
#define NEUTRINO_ICON_HINT_PLUGIN "hint_plugin"
|
||||||
|
|
||||||
/* opkg manager */
|
/* opkg manager */
|
||||||
#define NEUTRINO_ICON_CHECKMARK "checkmark"
|
#define NEUTRINO_ICON_CHECKMARK "checkmark"
|
||||||
#define NEUTRINO_ICON_WARNING "warning"
|
#define NEUTRINO_ICON_WARNING "warning"
|
||||||
|
Reference in New Issue
Block a user