MCPcopy Index your code
hub / github.com/DreamSourceLab/DSView / setShadowStatus

Method setShadowStatus

DSView/pv/winnativewidget.cpp:823–848  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

821}
822
823void WinNativeWidget::setShadowStatus(int windowStatus)
824{
825 if (_shadow == NULL)
826 return;
827
828 switch (windowStatus)
829 {
830 case WINDOW_STATUS_MAX:
831 {
832 _shadow->hideShadow();
833 hideBorder();
834 break;
835 }
836 case WINDOW_STATUS_NORMAL:
837 {
838 _shadow->showLater();
839 showBorder();
840 break;
841 }
842 case WINDOW_STATUS_MIN:
843 {
844 _shadow->hideShadow();
845 break;
846 }
847 }
848}
849
850void WinNativeWidget::EnalbeNoClientArea(bool bEnabled)
851{

Callers 1

WndProcMethod · 0.95

Calls 2

hideShadowMethod · 0.80
showLaterMethod · 0.80

Tested by

no test coverage detected