indentation, trailing spaces, alignment, ... (to make further work easier)
This commit is contained in:
parent
b674037a3c
commit
0b0c681775
1 changed files with 98 additions and 107 deletions
|
@ -3,14 +3,13 @@
|
|||
|
||||
|
||||
#ifdef USE_HUD_TextList
|
||||
#define textString( x , y, text, digit ) TextString( text, x , y,digit ) //suma
|
||||
#define textString( x , y, text, digit ) TextString( text, x , y,digit )
|
||||
#else
|
||||
#define textString( x , y, text, digit ) puDrawString ( guiFnt, text, x, y ); //suma
|
||||
#define textString( x , y, text, digit ) puDrawString ( guiFnt, text, x, y )
|
||||
#endif
|
||||
|
||||
//======================= Top of instr_label class =========================
|
||||
lat_label ::
|
||||
lat_label( int x,
|
||||
lat_label::lat_label(int x,
|
||||
int y,
|
||||
UINT width,
|
||||
UINT height,
|
||||
|
@ -24,9 +23,9 @@ lat_label ::
|
|||
int font_size,
|
||||
int blinking,
|
||||
bool working ,
|
||||
int digit): //suma
|
||||
int digit) :
|
||||
instr_item( x, y, width, height,
|
||||
data_source, scale_data,options, working,digit), //suma
|
||||
data_source, scale_data,options, working,digit),
|
||||
pformat ( label_format ),
|
||||
pre_str ( pre_label_string ),
|
||||
post_str ( post_label_string ),
|
||||
|
@ -35,17 +34,13 @@ lat_label ::
|
|||
blink ( blinking )
|
||||
{
|
||||
if (pre_str != NULL) {
|
||||
if( post_str != NULL ) {
|
||||
if (post_str != NULL)
|
||||
sprintf( format_buffer, "%s%s%s", pre_str, pformat, post_str );
|
||||
}
|
||||
else {
|
||||
else
|
||||
sprintf( format_buffer, "%s%s", pre_str, pformat );
|
||||
}
|
||||
}
|
||||
else {
|
||||
if( post_str != NULL ) {
|
||||
|
||||
} else if (post_str != NULL) {
|
||||
sprintf( format_buffer, "%s%s", pformat, post_str );
|
||||
}
|
||||
} // else do nothing if both pre and post strings are nulls. Interesting.
|
||||
|
||||
}
|
||||
|
@ -58,6 +53,7 @@ lat_label :: ~lat_label()
|
|||
{
|
||||
}
|
||||
|
||||
|
||||
// Copy constructor
|
||||
lat_label::lat_label( const lat_label & image) :
|
||||
instr_item((const instr_item &)image),
|
||||
|
@ -67,21 +63,18 @@ lat_label :: lat_label( const lat_label & image) :
|
|||
blink ( image.blink )
|
||||
{
|
||||
if (pre_str != NULL) {
|
||||
if( post_str != NULL ) {
|
||||
if (post_str != NULL)
|
||||
sprintf( format_buffer, "%s%s%s", pre_str, pformat, post_str );
|
||||
}
|
||||
else {
|
||||
else
|
||||
sprintf( format_buffer, "%s%s", pre_str, pformat );
|
||||
}
|
||||
}
|
||||
else {
|
||||
if( post_str != NULL ) {
|
||||
|
||||
} else if (post_str != NULL) {
|
||||
sprintf( format_buffer, "%s%s", pformat, post_str );
|
||||
}
|
||||
} // else do nothing if both pre and post strings are nulls. Interesting.
|
||||
|
||||
}
|
||||
|
||||
|
||||
lat_label& lat_label::operator=(const lat_label & rhs)
|
||||
{
|
||||
if (!(this == &rhs)) {
|
||||
|
@ -97,12 +90,12 @@ lat_label & lat_label ::operator = (const lat_label & rhs )
|
|||
return *this;
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// draw Draws a label anywhere in the HUD
|
||||
//
|
||||
//
|
||||
void lat_label ::
|
||||
draw( void ) // Required method in base class
|
||||
void lat_label::draw( void ) // Required method in base class
|
||||
{
|
||||
char label_buffer[80];
|
||||
int posincr;
|
||||
|
@ -111,11 +104,11 @@ draw( void ) // Required method in base class
|
|||
// float lat = get_value();
|
||||
|
||||
if (data_available()) {
|
||||
// sprintf( label_buffer, format_buffer, coord_format_lat(lat) );
|
||||
// // sprintf( label_buffer, format_buffer, coord_format_lat(lat) );
|
||||
sprintf( label_buffer, format_buffer,
|
||||
coord_format_lat( get_value()) );
|
||||
}
|
||||
else {
|
||||
|
||||
} else {
|
||||
sprintf( label_buffer, format_buffer );
|
||||
}
|
||||
|
||||
|
@ -128,23 +121,21 @@ draw( void ) // Required method in base class
|
|||
|
||||
lenstr = getStringWidth(label_buffer);
|
||||
|
||||
if( justify == RIGHT_JUST ) {
|
||||
if (justify == RIGHT_JUST)
|
||||
posincr = scrn_rect.right - lenstr;
|
||||
}else if( justify == CENTER_JUST ) {
|
||||
else if (justify == CENTER_JUST)
|
||||
posincr = get_span() - (lenstr/2);
|
||||
} else { // justify == LEFT_JUST
|
||||
posincr = 0; // 0;
|
||||
}
|
||||
else // justify == LEFT_JUST
|
||||
posincr = 0;
|
||||
|
||||
if (fontSize == HUD_FONT_SMALL) {
|
||||
textString( scrn_rect.left + posincr, scrn_rect.top,
|
||||
label_buffer, get_digits()); //suma
|
||||
}
|
||||
else {
|
||||
if( fontSize == HUD_FONT_LARGE ) {
|
||||
label_buffer, get_digits());
|
||||
|
||||
} else if (fontSize == HUD_FONT_LARGE) {
|
||||
textString( scrn_rect.left + posincr, scrn_rect.top,
|
||||
label_buffer, get_digits()); //suma
|
||||
}
|
||||
label_buffer, get_digits());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue