infoviewer: rename txt_cur_event_rest => txt_cur_rest

Origin commit data
------------------
Branch: ni/coolstream
Commit: 041e08639a
Author: vanhofen <vanhofen@gmx.de>
Date: 2018-01-09 (Tue, 09 Jan 2018)

Origin message was:
------------------
- infoviewer: rename txt_cur_event_rest => txt_cur_rest

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2018-01-09 11:14:08 +01:00
parent b75d1e1041
commit d268025b61
2 changed files with 15 additions and 15 deletions

View File

@@ -103,7 +103,7 @@ CInfoViewer::CInfoViewer ()
{ {
sigbox = NULL; sigbox = NULL;
header = numbox = body = rec = NULL; header = numbox = body = rec = NULL;
txt_cur_start = txt_cur_event = txt_cur_event_rest = txt_next_start = txt_next_event = txt_next_in = NULL; txt_cur_start = txt_cur_event = txt_cur_rest = txt_next_start = txt_next_event = txt_next_in = NULL;
timescale = NULL; timescale = NULL;
clock = NULL; clock = NULL;
info_CurrentNext.current_zeit.startzeit = 0; info_CurrentNext.current_zeit.startzeit = 0;
@@ -468,12 +468,12 @@ void CInfoViewer::paintBody()
if (body == NULL){ if (body == NULL){
body = new CComponentsShapeSquare(ChanInfoX, y_body, BoxEndX-ChanInfoX, h_body); body = new CComponentsShapeSquare(ChanInfoX, y_body, BoxEndX-ChanInfoX, h_body);
} else { } else {
if (txt_cur_event && txt_cur_start && txt_cur_event_rest && if (txt_cur_event && txt_cur_start && txt_cur_rest &&
txt_next_event && txt_next_start && txt_next_in) { txt_next_event && txt_next_start && txt_next_in) {
if (h_body != body->getHeight() || y_body != body->getYPos()){ if (h_body != body->getHeight() || y_body != body->getYPos()){
txt_cur_start->getCTextBoxObject()->clearScreenBuffer(); txt_cur_start->getCTextBoxObject()->clearScreenBuffer();
txt_cur_event->getCTextBoxObject()->clearScreenBuffer(); txt_cur_event->getCTextBoxObject()->clearScreenBuffer();
txt_cur_event_rest->getCTextBoxObject()->clearScreenBuffer(); txt_cur_rest->getCTextBoxObject()->clearScreenBuffer();
txt_next_start->getCTextBoxObject()->clearScreenBuffer(); txt_next_start->getCTextBoxObject()->clearScreenBuffer();
txt_next_event->getCTextBoxObject()->clearScreenBuffer(); txt_next_event->getCTextBoxObject()->clearScreenBuffer();
txt_next_in->getCTextBoxObject()->clearScreenBuffer(); txt_next_in->getCTextBoxObject()->clearScreenBuffer();
@@ -1859,14 +1859,14 @@ void CInfoViewer::display_Info(const char *current, const char *next,
} }
if (runningRest){ if (runningRest){
if (txt_cur_event_rest == NULL) if (txt_cur_rest == NULL)
txt_cur_event_rest = new CComponentsTextTransp(NULL, currTimeX, CurrInfoY - height, currTimeW, height); txt_cur_rest = new CComponentsTextTransp(NULL, currTimeX, CurrInfoY - height, currTimeW, height);
else else
txt_cur_event_rest->setDimensionsAll(currTimeX, CurrInfoY - height, currTimeW, height); txt_cur_rest->setDimensionsAll(currTimeX, CurrInfoY - height, currTimeW, height);
txt_cur_event_rest->setText(runningRest, CTextBox::RIGHT, g_Font[SNeutrinoSettings::FONT_TYPE_INFOBAR_INFO], colored_event_C ? COL_COLORED_EVENTS_TEXT : COL_INFOBAR_TEXT); txt_cur_rest->setText(runningRest, CTextBox::RIGHT, g_Font[SNeutrinoSettings::FONT_TYPE_INFOBAR_INFO], colored_event_C ? COL_COLORED_EVENTS_TEXT : COL_INFOBAR_TEXT);
if (txt_cur_event_rest->isPainted()) if (txt_cur_rest->isPainted())
txt_cur_event_rest->hide(); txt_cur_rest->hide();
txt_cur_event_rest->paint(CC_SAVE_SCREEN_YES); txt_cur_rest->paint(CC_SAVE_SCREEN_YES);
} }
} }
@@ -2148,8 +2148,8 @@ void CInfoViewer::killTitle()
if (txt_cur_event) if (txt_cur_event)
txt_cur_event->kill(); txt_cur_event->kill();
if (txt_cur_event_rest) if (txt_cur_rest)
txt_cur_event_rest->kill(); txt_cur_rest->kill();
if (txt_cur_start) if (txt_cur_start)
txt_cur_start->kill(); txt_cur_start->kill();
if (txt_next_start) if (txt_next_start)
@@ -2424,8 +2424,8 @@ void CInfoViewer::ResetModules()
delete clock; clock = NULL; delete clock; clock = NULL;
} }
delete txt_cur_start; txt_cur_start = NULL; delete txt_cur_start; txt_cur_start = NULL;
delete txt_cur_event; txt_cur_event = NULL; delete txt_cur_event; txt_cur_event = NULL;
delete txt_cur_event_rest; txt_cur_event_rest = NULL; delete txt_cur_rest; txt_cur_rest = NULL;
delete txt_next_start; txt_next_start = NULL; delete txt_next_start; txt_next_start = NULL;
delete txt_next_event; txt_next_event = NULL; delete txt_next_event; txt_next_event = NULL;
delete txt_next_in; txt_next_in = NULL; delete txt_next_in; txt_next_in = NULL;

View File

@@ -52,7 +52,7 @@ class CInfoViewer
CInfoViewerBB* infoViewerBB; CInfoViewerBB* infoViewerBB;
CComponentsFrmClock *clock; CComponentsFrmClock *clock;
CComponentsShapeSquare *header , *numbox, *body, *rec; CComponentsShapeSquare *header , *numbox, *body, *rec;
CComponentsTextTransp *txt_cur_start, *txt_cur_event, *txt_cur_event_rest, *txt_next_start, *txt_next_event, *txt_next_in; CComponentsTextTransp *txt_cur_start, *txt_cur_event, *txt_cur_rest, *txt_next_start, *txt_next_event, *txt_next_in;
bool gotTime; bool gotTime;
bool recordModeActive; bool recordModeActive;