⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frxdctrl.hpp

📁 这个是功能强大的报表软件
💻 HPP
📖 第 1 页 / 共 3 页
字号:
// Borland C++ Builder
// Copyright (c) 1995, 2005 by Borland Software Corporation
// All rights reserved

// (DO NOT EDIT: machine generated header) 'Frxdctrl.pas' rev: 10.00

#ifndef FrxdctrlHPP
#define FrxdctrlHPP

#pragma delphiheader begin
#pragma option push
#pragma option -w-      // All warnings off
#pragma option -Vx      // Zero-length empty class member functions
#pragma pack(push,8)
#include <System.hpp>	// Pascal unit
#include <Sysinit.hpp>	// Pascal unit
#include <Windows.hpp>	// Pascal unit
#include <Messages.hpp>	// Pascal unit
#include <Sysutils.hpp>	// Pascal unit
#include <Classes.hpp>	// Pascal unit
#include <Graphics.hpp>	// Pascal unit
#include <Controls.hpp>	// Pascal unit
#include <Stdctrls.hpp>	// Pascal unit
#include <Extctrls.hpp>	// Pascal unit
#include <Forms.hpp>	// Pascal unit
#include <Menus.hpp>	// Pascal unit
#include <Dialogs.hpp>	// Pascal unit
#include <Comctrls.hpp>	// Pascal unit
#include <Buttons.hpp>	// Pascal unit
#include <Mask.hpp>	// Pascal unit
#include <Checklst.hpp>	// Pascal unit
#include <Frxclass.hpp>	// Pascal unit
#include <Variants.hpp>	// Pascal unit

//-- user supplied -----------------------------------------------------------

namespace Frxdctrl
{
//-- type declarations -------------------------------------------------------
class DELPHICLASS TfrxDialogControls;
class PASCALIMPLEMENTATION TfrxDialogControls : public Classes::TComponent 
{
	typedef Classes::TComponent inherited;
	
public:
	#pragma option push -w-inl
	/* TComponent.Create */ inline __fastcall virtual TfrxDialogControls(Classes::TComponent* AOwner) : Classes::TComponent(AOwner) { }
	#pragma option pop
	#pragma option push -w-inl
	/* TComponent.Destroy */ inline __fastcall virtual ~TfrxDialogControls(void) { }
	#pragma option pop
	
};


class DELPHICLASS TfrxLabelControl;
class PASCALIMPLEMENTATION TfrxLabelControl : public Frxclass::TfrxDialogControl 
{
	typedef Frxclass::TfrxDialogControl inherited;
	
private:
	Stdctrls::TLabel* FLabel;
	Classes::TAlignment __fastcall GetAlignment(void);
	bool __fastcall GetAutoSize(void);
	bool __fastcall GetWordWrap(void);
	void __fastcall SetAlignment(const Classes::TAlignment Value);
	void __fastcall SetAutoSize(const bool Value);
	void __fastcall SetWordWrap(const bool Value);
	
public:
	__fastcall virtual TfrxLabelControl(Classes::TComponent* AOwner);
	#pragma option push -w-inl
	/* virtual class method */ virtual AnsiString __fastcall GetDescription() { return GetDescription(__classid(TfrxLabelControl)); }
	#pragma option pop
	/*         class method */ static AnsiString __fastcall GetDescription(TMetaClass* vmt);
	virtual void __fastcall BeforeStartReport(void);
	virtual void __fastcall Draw(Graphics::TCanvas* Canvas, Extended ScaleX, Extended ScaleY, Extended OffsetX, Extended OffsetY);
	__property Stdctrls::TLabel* LabelCtl = {read=FLabel};
	
__published:
	__property Classes::TAlignment Alignment = {read=GetAlignment, write=SetAlignment, default=0};
	__property bool AutoSize = {read=GetAutoSize, write=SetAutoSize, default=1};
	__property Caption ;
	__property Color ;
	__property bool WordWrap = {read=GetWordWrap, write=SetWordWrap, default=0};
	__property OnClick ;
	__property OnDblClick ;
	__property OnMouseDown ;
	__property OnMouseMove ;
	__property OnMouseUp ;
public:
	#pragma option push -w-inl
	/* TfrxDialogControl.Destroy */ inline __fastcall virtual ~TfrxLabelControl(void) { }
	#pragma option pop
	
public:
	#pragma option push -w-inl
	/* TfrxComponent.DesignCreate */ inline __fastcall virtual TfrxLabelControl(Classes::TComponent* AOwner, Word Flags) : Frxclass::TfrxDialogControl(AOwner, Flags) { }
	#pragma option pop
	
};


class DELPHICLASS TfrxCustomEditControl;
class PASCALIMPLEMENTATION TfrxCustomEditControl : public Frxclass::TfrxDialogControl 
{
	typedef Frxclass::TfrxDialogControl inherited;
	
private:
	AnsiString FOnChange;
	int __fastcall GetMaxLength(void);
	char __fastcall GetPasswordChar(void);
	bool __fastcall GetReadOnly(void);
	AnsiString __fastcall GetText();
	void __fastcall DoOnChange(System::TObject* Sender);
	void __fastcall SetMaxLength(const int Value);
	void __fastcall SetPasswordChar(const char Value);
	void __fastcall SetReadOnly(const bool Value);
	void __fastcall SetText(const AnsiString Value);
	
protected:
	Stdctrls::TCustomEdit* FCustomEdit;
	
public:
	__fastcall virtual TfrxCustomEditControl(Classes::TComponent* AOwner);
	__property int MaxLength = {read=GetMaxLength, write=SetMaxLength, nodefault};
	__property char PasswordChar = {read=GetPasswordChar, write=SetPasswordChar, nodefault};
	__property bool ReadOnly = {read=GetReadOnly, write=SetReadOnly, default=0};
	__property AnsiString Text = {read=GetText, write=SetText};
	__property AnsiString OnChange = {read=FOnChange, write=FOnChange};
public:
	#pragma option push -w-inl
	/* TfrxDialogControl.Destroy */ inline __fastcall virtual ~TfrxCustomEditControl(void) { }
	#pragma option pop
	
public:
	#pragma option push -w-inl
	/* TfrxComponent.DesignCreate */ inline __fastcall virtual TfrxCustomEditControl(Classes::TComponent* AOwner, Word Flags) : Frxclass::TfrxDialogControl(AOwner, Flags) { }
	#pragma option pop
	
};


class DELPHICLASS TfrxEditControl;
class PASCALIMPLEMENTATION TfrxEditControl : public TfrxCustomEditControl 
{
	typedef TfrxCustomEditControl inherited;
	
private:
	Stdctrls::TEdit* FEdit;
	
public:
	__fastcall virtual TfrxEditControl(Classes::TComponent* AOwner);
	#pragma option push -w-inl
	/* virtual class method */ virtual AnsiString __fastcall GetDescription() { return GetDescription(__classid(TfrxEditControl)); }
	#pragma option pop
	/*         class method */ static AnsiString __fastcall GetDescription(TMetaClass* vmt);
	__property Stdctrls::TEdit* Edit = {read=FEdit};
	
__published:
	__property Color ;
	__property MaxLength ;
	__property PasswordChar ;
	__property ReadOnly  = {default=0};
	__property TabStop  = {default=1};
	__property Text ;
	__property OnChange ;
	__property OnClick ;
	__property OnDblClick ;
	__property OnEnter ;
	__property OnExit ;
	__property OnKeyDown ;
	__property OnKeyPress ;
	__property OnKeyUp ;
	__property OnMouseDown ;
	__property OnMouseMove ;
	__property OnMouseUp ;
public:
	#pragma option push -w-inl
	/* TfrxDialogControl.Destroy */ inline __fastcall virtual ~TfrxEditControl(void) { }
	#pragma option pop
	
public:
	#pragma option push -w-inl
	/* TfrxComponent.DesignCreate */ inline __fastcall virtual TfrxEditControl(Classes::TComponent* AOwner, Word Flags) : TfrxCustomEditControl(AOwner, Flags) { }
	#pragma option pop
	
};


class DELPHICLASS TfrxMemoControl;
class PASCALIMPLEMENTATION TfrxMemoControl : public TfrxCustomEditControl 
{
	typedef TfrxCustomEditControl inherited;
	
private:
	Stdctrls::TMemo* FMemo;
	Classes::TStrings* __fastcall GetLines(void);
	void __fastcall SetLines(const Classes::TStrings* Value);
	Stdctrls::TScrollStyle __fastcall GetScrollStyle(void);
	bool __fastcall GetWordWrap(void);
	void __fastcall SetScrollStyle(const Stdctrls::TScrollStyle Value);
	void __fastcall SetWordWrap(const bool Value);
	
public:
	__fastcall virtual TfrxMemoControl(Classes::TComponent* AOwner);
	#pragma option push -w-inl
	/* virtual class method */ virtual AnsiString __fastcall GetDescription() { return GetDescription(__classid(TfrxMemoControl)); }
	#pragma option pop
	/*         class method */ static AnsiString __fastcall GetDescription(TMetaClass* vmt);
	__property Stdctrls::TMemo* Memo = {read=FMemo};
	
__published:
	__property Color ;
	__property Classes::TStrings* Lines = {read=GetLines, write=SetLines};
	__property MaxLength ;
	__property ReadOnly  = {default=0};
	__property Stdctrls::TScrollStyle ScrollBars = {read=GetScrollStyle, write=SetScrollStyle, default=0};
	__property TabStop  = {default=1};
	__property bool WordWrap = {read=GetWordWrap, write=SetWordWrap, default=1};
	__property OnChange ;
	__property OnClick ;
	__property OnDblClick ;
	__property OnEnter ;
	__property OnExit ;
	__property OnKeyDown ;
	__property OnKeyPress ;
	__property OnKeyUp ;
	__property OnMouseDown ;
	__property OnMouseMove ;
	__property OnMouseUp ;
public:
	#pragma option push -w-inl
	/* TfrxDialogControl.Destroy */ inline __fastcall virtual ~TfrxMemoControl(void) { }
	#pragma option pop
	
public:
	#pragma option push -w-inl
	/* TfrxComponent.DesignCreate */ inline __fastcall virtual TfrxMemoControl(Classes::TComponent* AOwner, Word Flags) : TfrxCustomEditControl(AOwner, Flags) { }
	#pragma option pop
	
};


class DELPHICLASS TfrxButtonControl;
class PASCALIMPLEMENTATION TfrxButtonControl : public Frxclass::TfrxDialogControl 
{
	typedef Frxclass::TfrxDialogControl inherited;
	
private:
	Stdctrls::TButton* FButton;
	bool __fastcall GetCancel(void);
	bool __fastcall GetDefault(void);
	Controls::TModalResult __fastcall GetModalResult(void);
	void __fastcall SetCancel(const bool Value);
	void __fastcall SetDefault(const bool Value);
	void __fastcall SetModalResult(const Controls::TModalResult Value);
	bool __fastcall GetWordWrap(void);
	void __fastcall SetWordWrap(const bool Value);
	
public:
	__fastcall virtual TfrxButtonControl(Classes::TComponent* AOwner);
	#pragma option push -w-inl
	/* virtual class method */ virtual AnsiString __fastcall GetDescription() { return GetDescription(__classid(TfrxButtonControl)); }
	#pragma option pop
	/*         class method */ static AnsiString __fastcall GetDescription(TMetaClass* vmt);
	__property Stdctrls::TButton* Button = {read=FButton};
	
__published:
	__property bool Cancel = {read=GetCancel, write=SetCancel, default=0};
	__property Caption ;
	__property bool Default = {read=GetDefault, write=SetDefault, default=0};
	__property Controls::TModalResult ModalResult = {read=GetModalResult, write=SetModalResult, default=0};
	__property bool WordWrap = {read=GetWordWrap, write=SetWordWrap, default=0};
	__property TabStop  = {default=1};
	__property OnClick ;
	__property OnEnter ;
	__property OnExit ;
	__property OnKeyDown ;
	__property OnKeyPress ;
	__property OnKeyUp ;
	__property OnMouseDown ;
	__property OnMouseMove ;
	__property OnMouseUp ;
public:
	#pragma option push -w-inl
	/* TfrxDialogControl.Destroy */ inline __fastcall virtual ~TfrxButtonControl(void) { }
	#pragma option pop
	
public:
	#pragma option push -w-inl
	/* TfrxComponent.DesignCreate */ inline __fastcall virtual TfrxButtonControl(Classes::TComponent* AOwner, Word Flags) : Frxclass::TfrxDialogControl(AOwner, Flags) { }
	#pragma option pop
	
};


class DELPHICLASS TfrxCheckBoxControl;
class PASCALIMPLEMENTATION TfrxCheckBoxControl : public Frxclass::TfrxDialogControl 
{
	typedef Frxclass::TfrxDialogControl inherited;
	
private:
	Stdctrls::TCheckBox* FCheckBox;
	Classes::TAlignment __fastcall GetAlignment(void);
	bool __fastcall GetAllowGrayed(void);
	bool __fastcall GetChecked(void);
	Stdctrls::TCheckBoxState __fastcall GetState(void);
	void __fastcall SetAlignment(const Classes::TAlignment Value);
	void __fastcall SetAllowGrayed(const bool Value);
	void __fastcall SetChecked(const bool Value);
	void __fastcall SetState(const Stdctrls::TCheckBoxState Value);
	bool __fastcall GetWordWrap(void);
	void __fastcall SetWordWrap(const bool Value);
	
public:
	__fastcall virtual TfrxCheckBoxControl(Classes::TComponent* AOwner);
	#pragma option push -w-inl
	/* virtual class method */ virtual AnsiString __fastcall GetDescription() { return GetDescription(__classid(TfrxCheckBoxControl)); }
	#pragma option pop
	/*         class method */ static AnsiString __fastcall GetDescription(TMetaClass* vmt);
	__property Stdctrls::TCheckBox* CheckBox = {read=FCheckBox};
	
__published:
	__property Classes::TAlignment Alignment = {read=GetAlignment, write=SetAlignment, default=1};
	__property Caption ;
	__property bool Checked = {read=GetChecked, write=SetChecked, default=0};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -