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

Method OnHeaderTrack

Libraries/TabbingFramework/TabbedMDISave.cpp:914–928  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

912}
913
914LRESULT CSaveModifiedItemsDialog::OnHeaderTrack(int /*idCtrl*/, LPNMHDR /*pnmh*/, BOOL& bHandled)
915{
916 // NOTE: See http://support.microsoft.com/?kbid=183258
917 // "INFO: HDN_TRACK Notifications and Full Window Drag Style"
918 // We only get this if the HDS_FULLDRAG style is not set
919 // (in which case, we won't get HDN_ITEMCHANGING).
920
921 // If HDS_FULLDRAG is NOT set, the list view won't show the contents
922 // as the user is dragging the divider to resize a column.
923 // So we won't update the column widths as they drag,
924 // but will in "End Track" when they're done
925
926 bHandled = FALSE;
927 return 0;
928}
929
930LRESULT CSaveModifiedItemsDialog::OnHeaderEndTrack(int /*idCtrl*/, LPNMHDR pnmh, BOOL& bHandled)
931{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected