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,6 +1132,13 @@ 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() )
{ {
@ -1154,7 +1161,9 @@ void FDialog::drawZoomButton()
} }
} }
} }
else // is not zoomed
//----------------------------------------------------------------------
inline void FDialog::drawZoomedButton()
{ {
if ( isNewFont() ) if ( isNewFont() )
{ {
@ -1177,7 +1186,6 @@ void FDialog::drawZoomButton()
} }
} }
} }
}
//---------------------------------------------------------------------- //----------------------------------------------------------------------
void FDialog::drawTextBar() void FDialog::drawTextBar()