//---------------------------------------------------------------------------- // ObjectWindows // (C) Copyright 1992, 1994 by Borland International, All Rights Reserved // // Implementation of class TControlBar. //---------------------------------------------------------------------------- #include #include IMPLEMENT_CASTABLE(TControlBar); TControlBar::TControlBar(TWindow* parent, TTileDirection direction, TFont* font, TModule* module) : TGadgetWindow(parent, direction, font, module) { Margins.Units = TMargins::BorderUnits; if (Direction == Horizontal) { Margins.Left = Margins.Right = 6; Margins.Top = Margins.Bottom = 2; } else { Margins.Left = Margins.Right = 2; Margins.Top = Margins.Bottom = 6; } } bool TControlBar::PreProcessMsg(MSG&) { return false; } void TControlBar::PositionGadget(TGadget* previous, TGadget* next, TPoint& origin) { // // overlap the button borders // if (previous->GetBorderStyle() == TGadget::Plain && next->GetBorderStyle() == TGadget::Plain) if (Direction == Horizontal) origin.x -= GetSystemMetrics(SM_CXBORDER); else origin.y -= GetSystemMetrics(SM_CYBORDER); }