#include <lcdprocclient.h>
Definition at line 17 of file lcdprocclient.h.
Public Member Functions | |
| LCDProcClient (LCDServer *lparent) | |
| void | customEvent (QCustomEvent *e) |
| ~LCDProcClient () | |
| bool | SetupLCD (void) |
| void | reset (void) |
| void | setStartupMessage (QString msq, uint messagetime) |
| bool | connectToHost (const QString &hostname, unsigned int port) |
| void | switchToTime () |
| void | switchToMusic (const QString &artist, const QString &album, const QString &track) |
| void | setMusicProgress (QString time, float generic_progress) |
| void | setMusicRepeat (int repeat) |
| void | setMusicShuffle (int shuffle) |
| void | setLevels (int numbLevels, float *values) |
| void | switchToChannel (QString channum="", QString title="", QString subtitle="") |
| void | setChannelProgress (float percentViewed) |
| void | switchToMenu (QPtrList< LCDMenuItem > *menuItems, QString app_name="", bool popMenu=true) |
| void | switchToGeneric (QPtrList< LCDTextItem > *textItems) |
| void | setGenericProgress (bool busy, float generic_progress) |
| void | switchToVolume (QString app_name) |
| void | setVolumeLevel (float volume_level) |
| void | switchToNothing () |
| void | shutdown () |
| void | removeWidgets () |
| void | updateLEDs (int mask) |
| void | stopAll (void) |
| int | getLCDWidth (void) |
| int | getLCDHeight (void) |
Private Types | |
| enum | PRIORITY { TOP, URGENT, HIGH, MEDIUM, LOW, OFF } |
Private Slots | |
| void | veryBadThings (int) |
| void | serverSendingData () |
| void | checkConnections () |
| void | dobigclock (bool) |
| void | dostdclock () |
| void | outputTime () |
| void | outputMusic () |
| void | outputChannel () |
| void | outputGeneric () |
| void | outputVolume () |
| void | outputRecStatus () |
| void | scrollMenuText () |
| void | beginScrollingMenuText () |
| void | unPopMenu () |
| void | scrollList () |
| void | updateRecordingList (void) |
| void | removeStartupMessage (void) |
| void | beginScrollingWidgets (void) |
| void | scrollWidgets (void) |
Private Member Functions | |
| void | outputCenteredText (QString theScreen, QString theText, QString widget="topWidget", int row=1) |
| void | outputLeftText (QString theScreen, QString theText, QString widget="topWidget", int row=1) |
| void | outputRightText (QString theScreen, QString theText, QString widget="topWidget", int row=1) |
| void | outputScrollerText (QString theScreen, QString theText, QString widget="scroller", int top=1, int bottom=1) |
| QStringList | formatScrollerText (const QString &text) |
| void | outputText (QPtrList< LCDTextItem > *textItems) |
| void | sendToServer (const QString &someText) |
| void | setPriority (const QString &screen, PRIORITY priority) |
| void | setHeartbeat (const QString &screen, bool onoff) |
| QString | expandString (const QString &aString) |
| void | init () |
| void | loadSettings () |
| void | assignScrollingList (QStringList theList, QString theScreen, QString theWidget="topWidget", int theRow=1) |
| void | assignScrollingWidgets (QString theText, QString theScreen, QString theWidget="topWidget", int theRow=1) |
| void | formatScrollingWidgets (void) |
| void | startTime () |
| void | startMusic (QString artist, QString album, QString track) |
| void | startChannel (QString channum, QString title, QString subtitle) |
| void | startGeneric (QPtrList< LCDTextItem > *textItems) |
| void | startMenu (QPtrList< LCDMenuItem > *menuItems, QString app_name, bool popMenu) |
| void | startVolume (QString app_name) |
| void | showStartupMessage (void) |
| void | setWidth (unsigned int) |
| void | setHeight (unsigned int) |
| void | setCellWidth (unsigned int) |
| void | setCellHeight (unsigned int) |
| void | setVersion (const QString &, const QString &) |
| void | describeServer () |
Private Attributes | |
| QString | activeScreen |
| QSocket * | socket |
| QTimer * | timeTimer |
| QTimer * | scrollWTimer |
| QTimer * | preScrollWTimer |
| QTimer * | menuScrollTimer |
| QTimer * | menuPreScrollTimer |
| QTimer * | popMenuTimer |
| QTimer * | checkConnectionsTimer |
| QTimer * | recStatusTimer |
| QTimer * | scrollListTimer |
| QTimer * | showMessageTimer |
| QTimer * | updateRecInfoTimer |
| QString | prioTop |
| QString | prioUrgent |
| QString | prioHigh |
| QString | prioMedium |
| QString | prioLow |
| QString | prioOff |
| unsigned int | lcdWidth |
| unsigned int | lcdHeight |
| unsigned int | cellWidth |
| unsigned int | cellHeight |
| QString | serverVersion |
| QString | protocolVersion |
| int | pVersion |
| float | EQlevels [10] |
| float | progress |
| bool | busy_progress |
| true if the generic progress indicator is a busy (ie. | |
| int | busy_pos |
Current position of the busy indicator, used if busy_progress is true. | |
| float | busy_indicator_size |
How many "blocks" the busy indicator must be, used if busy_progress is true. | |
| int | busy_direction |
Direction of the busy indicator on the, -1 or 1, used if busy_progress is true. | |
| float | generic_progress |
| float | volume_level |
| float | music_progress |
| QString | music_time |
| int | music_repeat |
| int | music_shuffle |
| QPtrList< LCDTextItem > * | lcdTextItems |
| QString | scrollingText |
| QString | scrollScreen |
| unsigned int | scrollPosition |
| QString | timeformat |
| QStringList | scrollListItems |
| QString | scrollListScreen |
| QString | scrollListWidget |
| int | scrollListRow |
| unsigned int | scrollListItem |
| unsigned int | menuScrollPosition |
| QPtrList< LCDMenuItem > * | lcdMenuItems |
| bool | connected |
| bool | timeFlash |
| QString | send_buffer |
| QString | last_command |
| QString | hostname |
| unsigned int | port |
| bool | lcd_ready |
| bool | lcd_showtime |
| bool | lcd_showmenu |
| bool | lcd_showgeneric |
| bool | lcd_showmusic |
| bool | lcd_showchannel |
| bool | lcd_showvolume |
| bool | lcd_showrecstatus |
| bool | lcd_backlighton |
| bool | lcd_heartbeaton |
| bool | lcd_bigclock |
| int | lcd_popuptime |
| QString | lcd_showmusic_items |
| QString | lcd_keystring |
| LCDServer * | m_parent |
| QString | startup_message |
| uint | startup_showtime |
| bool | isRecording |
| bool | isTimeVisible |
| int | lcdTunerNo |
| QPtrList< TunerStatus > | tunerList |
enum LCDProcClient::PRIORITY [private] |
| LCDProcClient::LCDProcClient | ( | LCDServer * | lparent | ) |
Definition at line 35 of file lcdprocclient.cpp.
| LCDProcClient::~LCDProcClient | ( | ) |
Definition at line 2324 of file lcdprocclient.cpp.
| void LCDProcClient::customEvent | ( | QCustomEvent * | e | ) |
Definition at line 2342 of file lcdprocclient.cpp.
| bool LCDProcClient::SetupLCD | ( | void | ) |
| void LCDProcClient::reset | ( | void | ) |
| void LCDProcClient::setStartupMessage | ( | QString | msq, | |
| uint | messagetime | |||
| ) |
| bool LCDProcClient::connectToHost | ( | const QString & | hostname, | |
| unsigned int | port | |||
| ) |
| void LCDProcClient::switchToTime | ( | ) |
Definition at line 2170 of file lcdprocclient.cpp.
Referenced by init(), LCDServer::newConnection(), removeStartupMessage(), LCDServer::switchToTime(), and updateRecordingList().
| void LCDProcClient::switchToMusic | ( | const QString & | artist, | |
| const QString & | album, | |||
| const QString & | track | |||
| ) |
| void LCDProcClient::setMusicProgress | ( | QString | time, | |
| float | generic_progress | |||
| ) |
| void LCDProcClient::setMusicRepeat | ( | int | repeat | ) |
| void LCDProcClient::setMusicShuffle | ( | int | shuffle | ) |
| void LCDProcClient::setLevels | ( | int | numbLevels, | |
| float * | values | |||
| ) |
Definition at line 1642 of file lcdprocclient.cpp.
| void LCDProcClient::switchToChannel | ( | QString | channum = "", |
|
| QString | title = "", |
|||
| QString | subtitle = "" | |||
| ) |
| void LCDProcClient::setChannelProgress | ( | float | percentViewed | ) |
| void LCDProcClient::switchToMenu | ( | QPtrList< LCDMenuItem > * | menuItems, | |
| QString | app_name = "", |
|||
| bool | popMenu = true | |||
| ) |
| void LCDProcClient::switchToGeneric | ( | QPtrList< LCDTextItem > * | textItems | ) |
Definition at line 2221 of file lcdprocclient.cpp.
Referenced by showStartupMessage(), and LCDServer::switchToGeneric().
| void LCDProcClient::setGenericProgress | ( | bool | busy, | |
| float | generic_progress | |||
| ) |
| void LCDProcClient::switchToVolume | ( | QString | app_name | ) |
| void LCDProcClient::setVolumeLevel | ( | float | volume_level | ) |
| void LCDProcClient::switchToNothing | ( | ) |
| void LCDProcClient::shutdown | ( | ) |
Definition at line 2257 of file lcdprocclient.cpp.
| void LCDProcClient::removeWidgets | ( | ) |
| void LCDProcClient::updateLEDs | ( | int | mask | ) |
| void LCDProcClient::stopAll | ( | void | ) |
Definition at line 762 of file lcdprocclient.cpp.
Referenced by LCDServer::parseTokens(), sendToServer(), shutdown(), switchToChannel(), switchToGeneric(), switchToMusic(), switchToNothing(), switchToTime(), and switchToVolume().
| int LCDProcClient::getLCDWidth | ( | void | ) | [inline] |
| int LCDProcClient::getLCDHeight | ( | void | ) | [inline] |
| void LCDProcClient::veryBadThings | ( | int | anError | ) | [private, slot] |
| void LCDProcClient::serverSendingData | ( | ) | [private, slot] |
| void LCDProcClient::checkConnections | ( | ) | [private, slot] |
| void LCDProcClient::dobigclock | ( | bool | init | ) | [private, slot] |
| void LCDProcClient::dostdclock | ( | ) | [private, slot] |
| void LCDProcClient::outputTime | ( | ) | [private, slot] |
Definition at line 1835 of file lcdprocclient.cpp.
Referenced by LCDProcClient(), outputRecStatus(), and startTime().
| void LCDProcClient::outputMusic | ( | ) | [private, slot] |
Definition at line 2056 of file lcdprocclient.cpp.
Referenced by setMusicProgress(), setMusicRepeat(), and setMusicShuffle().
| void LCDProcClient::outputChannel | ( | ) | [private, slot] |
Definition at line 2114 of file lcdprocclient.cpp.
Referenced by setChannelProgress(), and startChannel().
| void LCDProcClient::outputGeneric | ( | ) | [private, slot] |
Definition at line 2129 of file lcdprocclient.cpp.
Referenced by setGenericProgress(), and startGeneric().
| void LCDProcClient::outputVolume | ( | ) | [private, slot] |
Definition at line 2146 of file lcdprocclient.cpp.
Referenced by setVolumeLevel(), and startVolume().
| void LCDProcClient::outputRecStatus | ( | void | ) | [private, slot] |
| void LCDProcClient::scrollMenuText | ( | ) | [private, slot] |
| void LCDProcClient::beginScrollingMenuText | ( | ) | [private, slot] |
| void LCDProcClient::unPopMenu | ( | ) | [private, slot] |
| void LCDProcClient::scrollList | ( | ) | [private, slot] |
Definition at line 746 of file lcdprocclient.cpp.
Referenced by assignScrollingList(), and LCDProcClient().
| void LCDProcClient::updateRecordingList | ( | void | ) | [private, slot] |
| void LCDProcClient::removeStartupMessage | ( | void | ) | [private, slot] |
| void LCDProcClient::beginScrollingWidgets | ( | void | ) | [private, slot] |
| void LCDProcClient::scrollWidgets | ( | void | ) | [private, slot] |
| void LCDProcClient::outputCenteredText | ( | QString | theScreen, | |
| QString | theText, | |||
| QString | widget = "topWidget", |
|||
| int | row = 1 | |||
| ) | [private] |
Definition at line 852 of file lcdprocclient.cpp.
Referenced by formatScrollingWidgets(), outputMusic(), outputRecStatus(), outputText(), outputTime(), startMenu(), and startVolume().
| void LCDProcClient::outputLeftText | ( | QString | theScreen, | |
| QString | theText, | |||
| QString | widget = "topWidget", |
|||
| int | row = 1 | |||
| ) | [private] |
Definition at line 875 of file lcdprocclient.cpp.
Referenced by formatScrollingWidgets(), outputMusic(), outputText(), scrollList(), scrollWidgets(), and startGeneric().
| void LCDProcClient::outputRightText | ( | QString | theScreen, | |
| QString | theText, | |||
| QString | widget = "topWidget", |
|||
| int | row = 1 | |||
| ) | [private] |
| void LCDProcClient::outputScrollerText | ( | QString | theScreen, | |
| QString | theText, | |||
| QString | widget = "scroller", |
|||
| int | top = 1, |
|||
| int | bottom = 1 | |||
| ) | [private] |
Definition at line 1999 of file lcdprocclient.cpp.
| QStringList LCDProcClient::formatScrollerText | ( | const QString & | text | ) | [private] |
Definition at line 2013 of file lcdprocclient.cpp.
Referenced by outputRecStatus(), showStartupMessage(), and startChannel().
| void LCDProcClient::outputText | ( | QPtrList< LCDTextItem > * | textItems | ) | [private] |
| void LCDProcClient::sendToServer | ( | const QString & | someText | ) | [private] |
Definition at line 179 of file lcdprocclient.cpp.
Referenced by dobigclock(), dostdclock(), init(), loadSettings(), outputCenteredText(), outputChannel(), outputGeneric(), outputLeftText(), outputMusic(), outputRecStatus(), outputRightText(), outputScrollerText(), outputVolume(), removeWidgets(), scrollMenuText(), setHeartbeat(), setPriority(), startMenu(), startMusic(), and updateLEDs().
| void LCDProcClient::setPriority | ( | const QString & | screen, | |
| PRIORITY | priority | |||
| ) | [private] |
Definition at line 221 of file lcdprocclient.cpp.
Referenced by init(), outputRecStatus(), startChannel(), startGeneric(), startMenu(), startMusic(), startTime(), startVolume(), stopAll(), and unPopMenu().
| void LCDProcClient::setHeartbeat | ( | const QString & | screen, | |
| bool | onoff | |||
| ) | [private] |
| QString LCDProcClient::expandString | ( | const QString & | aString | ) | [private] |
| void LCDProcClient::init | ( | ) | [private] |
| void LCDProcClient::loadSettings | ( | ) | [private] |
| void LCDProcClient::assignScrollingList | ( | QStringList | theList, | |
| QString | theScreen, | |||
| QString | theWidget = "topWidget", |
|||
| int | theRow = 1 | |||
| ) | [private] |
Definition at line 909 of file lcdprocclient.cpp.
Referenced by outputRecStatus(), and startChannel().
| void LCDProcClient::assignScrollingWidgets | ( | QString | theText, | |
| QString | theScreen, | |||
| QString | theWidget = "topWidget", |
|||
| int | theRow = 1 | |||
| ) | [private] |
Definition at line 929 of file lcdprocclient.cpp.
Referenced by outputText(), startChannel(), startGeneric(), and startMusic().
| void LCDProcClient::formatScrollingWidgets | ( | void | ) | [private] |
Definition at line 939 of file lcdprocclient.cpp.
Referenced by startChannel(), startGeneric(), and startMusic().
| void LCDProcClient::startTime | ( | ) | [private] |
Definition at line 793 of file lcdprocclient.cpp.
Referenced by switchToTime(), and updateRecordingList().
| void LCDProcClient::startMusic | ( | QString | artist, | |
| QString | album, | |||
| QString | track | |||
| ) | [private] |
| void LCDProcClient::startChannel | ( | QString | channum, | |
| QString | title, | |||
| QString | subtitle | |||
| ) | [private] |
| void LCDProcClient::startGeneric | ( | QPtrList< LCDTextItem > * | textItems | ) | [private] |
| void LCDProcClient::startMenu | ( | QPtrList< LCDMenuItem > * | menuItems, | |
| QString | app_name, | |||
| bool | popMenu | |||
| ) | [private] |
| void LCDProcClient::startVolume | ( | QString | app_name | ) | [private] |
| void LCDProcClient::showStartupMessage | ( | void | ) | [private] |
| void LCDProcClient::setWidth | ( | unsigned int | x | ) | [private] |
| void LCDProcClient::setHeight | ( | unsigned int | x | ) | [private] |
| void LCDProcClient::setCellWidth | ( | unsigned int | x | ) | [private] |
| void LCDProcClient::setCellHeight | ( | unsigned int | x | ) | [private] |
| void LCDProcClient::setVersion | ( | const QString & | sversion, | |
| const QString & | pversion | |||
| ) | [private] |
| void LCDProcClient::describeServer | ( | ) | [private] |
QString LCDProcClient::activeScreen [private] |
Definition at line 131 of file lcdprocclient.h.
Referenced by outputRecStatus(), scrollList(), scrollWidgets(), startChannel(), startGeneric(), startMusic(), startTime(), and updateRecordingList().
QSocket* LCDProcClient::socket [private] |
Definition at line 133 of file lcdprocclient.h.
Referenced by checkConnections(), connectToHost(), LCDProcClient(), sendToServer(), serverSendingData(), shutdown(), veryBadThings(), and ~LCDProcClient().
QTimer* LCDProcClient::timeTimer [private] |
Definition at line 134 of file lcdprocclient.h.
Referenced by LCDProcClient(), outputRecStatus(), startTime(), and stopAll().
QTimer* LCDProcClient::scrollWTimer [private] |
Definition at line 135 of file lcdprocclient.h.
Referenced by beginScrollingWidgets(), formatScrollingWidgets(), LCDProcClient(), outputRecStatus(), scrollWidgets(), and stopAll().
QTimer* LCDProcClient::preScrollWTimer [private] |
Definition at line 136 of file lcdprocclient.h.
Referenced by beginScrollingWidgets(), formatScrollingWidgets(), LCDProcClient(), and stopAll().
QTimer* LCDProcClient::menuScrollTimer [private] |
Definition at line 137 of file lcdprocclient.h.
Referenced by beginScrollingMenuText(), LCDProcClient(), scrollMenuText(), startMenu(), stopAll(), and unPopMenu().
QTimer* LCDProcClient::menuPreScrollTimer [private] |
Definition at line 138 of file lcdprocclient.h.
Referenced by LCDProcClient(), startMenu(), and stopAll().
QTimer* LCDProcClient::popMenuTimer [private] |
Definition at line 139 of file lcdprocclient.h.
Referenced by LCDProcClient(), startMenu(), and stopAll().
QTimer* LCDProcClient::checkConnectionsTimer [private] |
QTimer* LCDProcClient::recStatusTimer [private] |
Definition at line 141 of file lcdprocclient.h.
Referenced by LCDProcClient(), outputRecStatus(), startTime(), and stopAll().
QTimer* LCDProcClient::scrollListTimer [private] |
Definition at line 142 of file lcdprocclient.h.
Referenced by assignScrollingList(), LCDProcClient(), outputRecStatus(), and stopAll().
QTimer* LCDProcClient::showMessageTimer [private] |
Definition at line 143 of file lcdprocclient.h.
Referenced by LCDProcClient(), and showStartupMessage().
QTimer* LCDProcClient::updateRecInfoTimer [private] |
QString LCDProcClient::prioTop [private] |
QString LCDProcClient::prioUrgent [private] |
QString LCDProcClient::prioHigh [private] |
QString LCDProcClient::prioMedium [private] |
QString LCDProcClient::prioLow [private] |
QString LCDProcClient::prioOff [private] |
unsigned int LCDProcClient::lcdWidth [private] |
Definition at line 160 of file lcdprocclient.h.
Referenced by beginScrollingMenuText(), beginScrollingWidgets(), describeServer(), dobigclock(), dostdclock(), formatScrollerText(), formatScrollingWidgets(), getLCDWidth(), LCDProcClient(), outputCenteredText(), outputChannel(), outputGeneric(), outputMusic(), outputRecStatus(), outputRightText(), outputScrollerText(), outputVolume(), scrollMenuText(), scrollWidgets(), setGenericProgress(), setWidth(), and startMenu().
unsigned int LCDProcClient::lcdHeight [private] |
Definition at line 161 of file lcdprocclient.h.
Referenced by describeServer(), dostdclock(), getLCDHeight(), init(), LCDProcClient(), outputChannel(), outputGeneric(), outputMusic(), outputRecStatus(), outputText(), outputVolume(), scrollMenuText(), setHeight(), showStartupMessage(), startChannel(), startMenu(), startMusic(), and startVolume().
unsigned int LCDProcClient::cellWidth [private] |
Definition at line 162 of file lcdprocclient.h.
Referenced by describeServer(), LCDProcClient(), outputChannel(), outputGeneric(), outputMusic(), outputRecStatus(), outputVolume(), and setCellWidth().
unsigned int LCDProcClient::cellHeight [private] |
Definition at line 163 of file lcdprocclient.h.
Referenced by describeServer(), LCDProcClient(), and setCellHeight().
QString LCDProcClient::serverVersion [private] |
QString LCDProcClient::protocolVersion [private] |
int LCDProcClient::pVersion [private] |
Definition at line 167 of file lcdprocclient.h.
Referenced by expandString(), setHeartbeat(), and setVersion().
float LCDProcClient::EQlevels[10] [private] |
float LCDProcClient::progress [private] |
Definition at line 170 of file lcdprocclient.h.
Referenced by LCDProcClient(), outputChannel(), setChannelProgress(), and startChannel().
bool LCDProcClient::busy_progress [private] |
true if the generic progress indicator is a busy (ie.
doesn't have a known total steps
Definition at line 173 of file lcdprocclient.h.
Referenced by setGenericProgress(), and startGeneric().
int LCDProcClient::busy_pos [private] |
Current position of the busy indicator, used if busy_progress is true.
Definition at line 176 of file lcdprocclient.h.
Referenced by outputGeneric(), setGenericProgress(), and startGeneric().
float LCDProcClient::busy_indicator_size [private] |
How many "blocks" the busy indicator must be, used if busy_progress is true.
Definition at line 179 of file lcdprocclient.h.
Referenced by setGenericProgress(), and startGeneric().
int LCDProcClient::busy_direction [private] |
Direction of the busy indicator on the, -1 or 1, used if busy_progress is true.
Definition at line 182 of file lcdprocclient.h.
Referenced by setGenericProgress(), and startGeneric().
float LCDProcClient::generic_progress [private] |
Definition at line 183 of file lcdprocclient.h.
Referenced by LCDProcClient(), outputGeneric(), setGenericProgress(), and startGeneric().
float LCDProcClient::volume_level [private] |
Definition at line 184 of file lcdprocclient.h.
Referenced by LCDProcClient(), outputVolume(), setVolumeLevel(), and startVolume().
float LCDProcClient::music_progress [private] |
Definition at line 186 of file lcdprocclient.h.
Referenced by outputMusic(), setMusicProgress(), and startMusic().
QString LCDProcClient::music_time [private] |
Definition at line 187 of file lcdprocclient.h.
Referenced by outputMusic(), and setMusicProgress().
int LCDProcClient::music_repeat [private] |
int LCDProcClient::music_shuffle [private] |
QPtrList<LCDTextItem>* LCDProcClient::lcdTextItems [private] |
Definition at line 191 of file lcdprocclient.h.
Referenced by assignScrollingWidgets(), formatScrollingWidgets(), LCDProcClient(), scrollWidgets(), startChannel(), startGeneric(), and startMusic().
QString LCDProcClient::scrollingText [private] |
QString LCDProcClient::scrollScreen [private] |
Definition at line 193 of file lcdprocclient.h.
Referenced by assignScrollingWidgets(), formatScrollingWidgets(), and scrollWidgets().
unsigned int LCDProcClient::scrollPosition [private] |
Definition at line 194 of file lcdprocclient.h.
Referenced by beginScrollingWidgets(), and scrollWidgets().
QString LCDProcClient::timeformat [private] |
QStringList LCDProcClient::scrollListItems [private] |
Definition at line 197 of file lcdprocclient.h.
Referenced by assignScrollingList(), outputRecStatus(), and scrollList().
QString LCDProcClient::scrollListScreen [private] |
Definition at line 198 of file lcdprocclient.h.
Referenced by assignScrollingList(), and scrollList().
QString LCDProcClient::scrollListWidget [private] |
Definition at line 198 of file lcdprocclient.h.
Referenced by assignScrollingList(), and scrollList().
int LCDProcClient::scrollListRow [private] |
Definition at line 199 of file lcdprocclient.h.
Referenced by assignScrollingList(), and scrollList().
unsigned int LCDProcClient::scrollListItem [private] |
Definition at line 200 of file lcdprocclient.h.
Referenced by assignScrollingList(), and scrollList().
unsigned int LCDProcClient::menuScrollPosition [private] |
Definition at line 202 of file lcdprocclient.h.
Referenced by beginScrollingMenuText(), and scrollMenuText().
QPtrList<LCDMenuItem>* LCDProcClient::lcdMenuItems [private] |
Definition at line 203 of file lcdprocclient.h.
Referenced by beginScrollingMenuText(), LCDProcClient(), scrollMenuText(), startMenu(), and ~LCDProcClient().
bool LCDProcClient::connected [private] |
Definition at line 205 of file lcdprocclient.h.
Referenced by checkConnections(), connectToHost(), init(), LCDProcClient(), sendToServer(), SetupLCD(), and shutdown().
bool LCDProcClient::timeFlash [private] |
Definition at line 206 of file lcdprocclient.h.
Referenced by dobigclock(), dostdclock(), and LCDProcClient().
QString LCDProcClient::send_buffer [private] |
Definition at line 208 of file lcdprocclient.h.
Referenced by init(), LCDProcClient(), and sendToServer().
QString LCDProcClient::last_command [private] |
Definition at line 209 of file lcdprocclient.h.
Referenced by sendToServer(), and serverSendingData().
QString LCDProcClient::hostname [private] |
Definition at line 210 of file lcdprocclient.h.
unsigned int LCDProcClient::port [private] |
Definition at line 211 of file lcdprocclient.h.
Referenced by checkConnections(), connectToHost(), and LCDProcClient().
bool LCDProcClient::lcd_ready [private] |
Definition at line 213 of file lcdprocclient.h.
Referenced by checkConnections(), init(), LCDProcClient(), loadSettings(), outputRecStatus(), outputText(), sendToServer(), setChannelProgress(), setGenericProgress(), setLevels(), setMusicProgress(), setMusicRepeat(), setMusicShuffle(), setVolumeLevel(), shutdown(), stopAll(), switchToChannel(), switchToGeneric(), switchToMenu(), switchToMusic(), switchToNothing(), switchToTime(), switchToVolume(), and ~LCDProcClient().
bool LCDProcClient::lcd_showtime [private] |
Definition at line 215 of file lcdprocclient.h.
Referenced by describeServer(), dostdclock(), and loadSettings().
bool LCDProcClient::lcd_showmenu [private] |
Definition at line 216 of file lcdprocclient.h.
Referenced by describeServer(), loadSettings(), and startMenu().
bool LCDProcClient::lcd_showgeneric [private] |
Definition at line 217 of file lcdprocclient.h.
Referenced by describeServer(), loadSettings(), and startGeneric().
bool LCDProcClient::lcd_showmusic [private] |
Definition at line 218 of file lcdprocclient.h.
Referenced by describeServer(), loadSettings(), and startMusic().
bool LCDProcClient::lcd_showchannel [private] |
Definition at line 219 of file lcdprocclient.h.
Referenced by describeServer(), loadSettings(), and startChannel().
bool LCDProcClient::lcd_showvolume [private] |
Definition at line 220 of file lcdprocclient.h.
Referenced by describeServer(), loadSettings(), and startVolume().
bool LCDProcClient::lcd_showrecstatus [private] |
Definition at line 221 of file lcdprocclient.h.
Referenced by customEvent(), describeServer(), loadSettings(), outputRecStatus(), outputTime(), and startTime().
bool LCDProcClient::lcd_backlighton [private] |
bool LCDProcClient::lcd_heartbeaton [private] |
bool LCDProcClient::lcd_bigclock [private] |
Definition at line 224 of file lcdprocclient.h.
Referenced by loadSettings(), outputTime(), and removeWidgets().
int LCDProcClient::lcd_popuptime [private] |
Definition at line 225 of file lcdprocclient.h.
Referenced by describeServer(), loadSettings(), and startMenu().
QString LCDProcClient::lcd_showmusic_items [private] |
Definition at line 226 of file lcdprocclient.h.
Referenced by describeServer(), loadSettings(), and startMusic().
QString LCDProcClient::lcd_keystring [private] |
LCDServer* LCDProcClient::m_parent [private] |
Definition at line 228 of file lcdprocclient.h.
Referenced by LCDProcClient(), and serverSendingData().
QString LCDProcClient::startup_message [private] |
Definition at line 229 of file lcdprocclient.h.
Referenced by init(), setStartupMessage(), and showStartupMessage().
uint LCDProcClient::startup_showtime [private] |
Definition at line 230 of file lcdprocclient.h.
Referenced by setStartupMessage(), and showStartupMessage().
bool LCDProcClient::isRecording [private] |
Definition at line 232 of file lcdprocclient.h.
Referenced by LCDProcClient(), outputRecStatus(), outputTime(), startTime(), and updateRecordingList().
bool LCDProcClient::isTimeVisible [private] |
int LCDProcClient::lcdTunerNo [private] |
Definition at line 234 of file lcdprocclient.h.
Referenced by outputRecStatus(), and updateRecordingList().
QPtrList<TunerStatus> LCDProcClient::tunerList [private] |
Definition at line 236 of file lcdprocclient.h.
Referenced by outputRecStatus(), and updateRecordingList().
1.5.5