MCPcopy Create free account
hub / github.com/CobaltFusion/DebugViewPP / ScrollLeft

Function ScrollLeft

Libraries/TabbingFramework/CustomTabCtrl.h:2371–2385  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2369 }
2370
2371 void ScrollLeft(bool bForceRedraw = true)
2372 {
2373 m_iScrollOffset += ((m_dwState & ectcScrollDeltaMask) >> ectcScrollDeltaShift);
2374
2375 T* pT = static_cast<T*>(this);
2376 pT->UpdateLayout();
2377 pT->UpdateScrollOverflowStatus();
2378 pT->UpdateTabItemTooltipRects();
2379 if(bForceRedraw)
2380 {
2381 this->Invalidate();
2382 // If something a little more forceful is needed:
2383 //::RedrawWindow(m_hWnd, NULL, NULL, RDW_INVALIDATE | RDW_UPDATENOW);
2384 }
2385 }
2386
2387 void ScrollRight(bool bForceRedraw = true)
2388 {

Callers

nothing calls this directly

Calls 1

UpdateLayoutMethod · 0.80

Tested by

no test coverage detected