mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-31 09:21:18 +02:00
- upnpbrowser: formatting code using astyle; some manual code nicenings
Conflicts: src/gui/upnpbrowser.cpp Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
@@ -44,6 +44,7 @@
|
||||
|
||||
#include <gui/audiomute.h>
|
||||
#include <gui/color.h>
|
||||
|
||||
#include <gui/movieplayer.h>
|
||||
#include <gui/components/cc.h>
|
||||
#include <gui/widget/msgbox.h>
|
||||
@@ -253,7 +254,7 @@ void CUpnpBrowserGui::splitProtocol(std::string &protocol, std::string &prot, st
|
||||
}
|
||||
}
|
||||
}
|
||||
//printf("%s -> %s - %s - %s - %s\n", protocol.c_str(), prot.c_str(), network.c_str(), mime.c_str(), additional.c_str());
|
||||
//printf("%s -> %s - %s - %s - %s\n", protocol.c_str(), prot.c_str(), network.c_str(), mime.c_str(), additional.c_str());
|
||||
}
|
||||
|
||||
bool CUpnpBrowserGui::discoverDevices()
|
||||
@@ -261,7 +262,7 @@ bool CUpnpBrowserGui::discoverDevices()
|
||||
if (!m_devices.empty())
|
||||
return true;
|
||||
|
||||
CHintBox hintbox(LOCALE_MESSAGEBOX_INFO, g_Locale->getText(LOCALE_UPNPBROWSER_SCANNING)); // UTF-8
|
||||
CHintBox hintbox(LOCALE_MESSAGEBOX_INFO, g_Locale->getText(LOCALE_UPNPBROWSER_SCANNING));
|
||||
hintbox.paint();
|
||||
|
||||
try
|
||||
@@ -602,7 +603,6 @@ void CUpnpBrowserGui::selectDevice()
|
||||
{
|
||||
CNeutrinoApp::getInstance()->handleMsg(msg, data);
|
||||
}
|
||||
else if (msg > CRCInput::RC_MaxRC)
|
||||
#endif
|
||||
else
|
||||
{
|
||||
@@ -612,6 +612,7 @@ void CUpnpBrowserGui::selectDevice()
|
||||
}
|
||||
}
|
||||
CAudioMute::getInstance()->enableMuteIcon(true);
|
||||
|
||||
}
|
||||
|
||||
void CUpnpBrowserGui::playnext(void)
|
||||
@@ -706,7 +707,7 @@ void CUpnpBrowserGui::playnext(void)
|
||||
m_frameBuffer->Clear();
|
||||
}
|
||||
|
||||
bool CUpnpBrowserGui::getItems(std::string id, unsigned int index, std::vector<UPnPEntry>*&entries, unsigned int &total)
|
||||
bool CUpnpBrowserGui::getItems(std::string id, unsigned int index, std::vector<UPnPEntry> *&entries, unsigned int &total)
|
||||
{
|
||||
bool tfound = false;
|
||||
bool rfound = false;
|
||||
@@ -752,7 +753,7 @@ bool CUpnpBrowserGui::getItems(std::string id, unsigned int index, std::vector<U
|
||||
return true;
|
||||
}
|
||||
|
||||
bool CUpnpBrowserGui::updateItemSelection(std::string id, std::vector<UPnPEntry>*&entries, int newpos, unsigned int &selected, unsigned int &liststart)
|
||||
bool CUpnpBrowserGui::updateItemSelection(std::string id, std::vector<UPnPEntry> *&entries, int newpos, unsigned int &selected, unsigned int &liststart)
|
||||
{
|
||||
if ((int) selected != newpos)
|
||||
{
|
||||
@@ -1080,7 +1081,7 @@ void CUpnpBrowserGui::paintDevices()
|
||||
// Head
|
||||
CComponentsHeader header(m_x, m_header_y, m_width, m_header_height, LOCALE_UPNPBROWSER_HEAD, NEUTRINO_ICON_UPNP);
|
||||
header.enableShadow(CC_SHADOW_RIGHT | CC_SHADOW_CORNER_TOP_RIGHT | CC_SHADOW_CORNER_BOTTOM_RIGHT, -1, true);
|
||||
if (CNeutrinoApp::getInstance()->isMuted()) //TODO: consider mute mode on runtime
|
||||
if (CNeutrinoApp::getInstance()->isMuted()) // TODO: consider mute mode on runtime
|
||||
header.addContextButton(NEUTRINO_ICON_BUTTON_MUTE_SMALL);
|
||||
else
|
||||
header.removeContextButtons();
|
||||
@@ -1208,7 +1209,7 @@ void CUpnpBrowserGui::paintItemInfo(UPnPEntry *entry)
|
||||
}
|
||||
tmp += "\n";
|
||||
|
||||
//third line
|
||||
// third line
|
||||
if (!entry->isdir && preferred != -1)
|
||||
tmp += "URL: " + entry->resources[preferred].url;
|
||||
|
||||
@@ -1247,7 +1248,7 @@ void CUpnpBrowserGui::paintItems(std::vector<UPnPEntry> *entry, unsigned int sel
|
||||
{
|
||||
printf("CUpnpBrowserGui::paintItem:s selected %d max %d offset %d\n", selected, max, offset);
|
||||
|
||||
//block infoclock
|
||||
// block infoclock
|
||||
CInfoClock::getInstance()->block();
|
||||
|
||||
// LCD
|
||||
@@ -1266,7 +1267,7 @@ void CUpnpBrowserGui::paintItems(std::vector<UPnPEntry> *entry, unsigned int sel
|
||||
for (unsigned int count = 0; count < m_listmaxshow; count++)
|
||||
paintItem(entry, count, selected);
|
||||
|
||||
//scrollbar
|
||||
// scrollbar
|
||||
int total_pages;
|
||||
int current_page;
|
||||
getScrollBarData(&total_pages, ¤t_page, max + offset, m_listmaxshow, selected + offset);
|
||||
@@ -1377,7 +1378,7 @@ void CUpnpBrowserGui::updateTimes(const bool force)
|
||||
|
||||
void CUpnpBrowserGui::updateMode()
|
||||
{
|
||||
/* switch back to mode_upnp if audio has stopped automatically */
|
||||
// switch back to mode_upnp if audio has stopped automatically
|
||||
if ((CAudioPlayer::getInstance()->getState() == CBaseDec::STOP) && (CNeutrinoApp::getInstance()->getMode() == NeutrinoModes::mode_audio))
|
||||
{
|
||||
CNeutrinoApp::getInstance()->handleMsg(NeutrinoMessages::CHANGEMODE, NeutrinoModes::mode_upnp | NeutrinoModes::norezap);
|
||||
|
@@ -116,8 +116,8 @@ class CUpnpBrowserGui : public CMenuTarget, public CListHelpers
|
||||
void paintDeviceInfo();
|
||||
void playnext();
|
||||
|
||||
bool getItems(std::string id, unsigned int index, std::vector<UPnPEntry>*&entries, unsigned int &total);
|
||||
bool updateItemSelection(std::string id, std::vector<UPnPEntry>*&entries, int newpos, unsigned int &selected, unsigned int &liststart);
|
||||
bool getItems(std::string id, unsigned int index, std::vector<UPnPEntry> *&entries, unsigned int &total);
|
||||
bool updateItemSelection(std::string id, std::vector<UPnPEntry> *&entries, int newpos, unsigned int &selected, unsigned int &liststart);
|
||||
bool selectItem(std::string);
|
||||
void paintItems(std::vector<UPnPEntry> *entry, unsigned int selected, unsigned int max, unsigned int offset);
|
||||
void paintItem(std::vector<UPnPEntry> *entry, unsigned int pos, unsigned int selected);
|
||||
|
Reference in New Issue
Block a user