Update Better Code Hub config

This commit is contained in:
Markus Gans 2018-02-24 19:19:28 +01:00
parent e0f4872d6e
commit 67f2cbcf76
3 changed files with 47 additions and 34 deletions

View File

@ -1,10 +1,13 @@
exclude: exclude:
- /fonts/newfont.h - /fonts/.*
- /fonts/vgafont.h - /scripts/.*
- /fonts/unicodemap.h - /doc/.*
- /build.sh - /build.sh
- /ltmain.sh - /ltmain.sh
component_depth: 3 component_depth: 3
test:
include:
- /test/.*
languages: languages:
- cpp - cpp
- script - script

View File

@ -186,6 +186,8 @@ class FDialog : public FWindow
void drawTitleBar(); void drawTitleBar();
void drawBarButton(); void drawBarButton();
void drawZoomButton(); void drawZoomButton();
void drawRestoreSizeButton();
void drawZoomedButton();
void drawTextBar(); void drawTextBar();
void restoreOverlaidWindows(); void restoreOverlaidWindows();
void setCursorToFocusWidget(); void setCursorToFocusWidget();

View File

@ -1132,49 +1132,57 @@ void FDialog::drawZoomButton()
setColor (wc.titlebar_button_fg, wc.titlebar_button_bg); setColor (wc.titlebar_button_fg, wc.titlebar_button_bg);
if ( isZoomed() ) if ( isZoomed() )
drawRestoreSizeButton();
else
drawZoomedButton();
}
//----------------------------------------------------------------------
inline void FDialog::drawRestoreSizeButton()
{
if ( isNewFont() )
{ {
if ( isNewFont() ) print (fc::NF_rev_down_pointing_triangle1);
print (fc::NF_rev_down_pointing_triangle2);
}
else
{
if ( isMonochron() )
{ {
print (fc::NF_rev_down_pointing_triangle1); print ('[');
print (fc::NF_rev_down_pointing_triangle2); print (fc::BlackDownPointingTriangle); // ▼
print (']');
} }
else else
{ {
if ( isMonochron() ) print (' ');
{ print (fc::BlackDownPointingTriangle); // ▼
print ('['); print (' ');
print (fc::BlackDownPointingTriangle); // ▼
print (']');
}
else
{
print (' ');
print (fc::BlackDownPointingTriangle); // ▼
print (' ');
}
} }
} }
else // is not zoomed }
//----------------------------------------------------------------------
inline void FDialog::drawZoomedButton()
{
if ( isNewFont() )
{ {
if ( isNewFont() ) print (fc::NF_rev_up_pointing_triangle1);
print (fc::NF_rev_up_pointing_triangle2);
}
else
{
if ( isMonochron() )
{ {
print (fc::NF_rev_up_pointing_triangle1); print ('[');
print (fc::NF_rev_up_pointing_triangle2); print (fc::BlackUpPointingTriangle); // ▲
print (']');
} }
else else
{ {
if ( isMonochron() ) print (' ');
{ print (fc::BlackUpPointingTriangle); // ▲
print ('['); print (' ');
print (fc::BlackUpPointingTriangle); // ▲
print (']');
}
else
{
print (' ');
print (fc::BlackUpPointingTriangle); // ▲
print (' ');
}
} }
} }
} }