git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@7 05c56307-c608-d34a-929d-697000501d7a
20 lines
549 B
C++
20 lines
549 B
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef EditorsStylesDemoFrameControlH
|
|
#define EditorsStylesDemoFrameControlH
|
|
#include "Controls.hpp"
|
|
|
|
class TcxFrameControl : public TWinControl {
|
|
private:
|
|
TControl* FFramedControl;
|
|
protected:
|
|
void __fastcall AdjustFrameRgn();
|
|
DYNAMIC void __fastcall Resize(void);
|
|
public:
|
|
__fastcall virtual TcxFrameControl(Classes::TComponent* AOwner);
|
|
void __fastcall FrameControl(TControl* AControl);
|
|
void __fastcall UpdateFrameControlPos();
|
|
};
|
|
#endif
|
|
|