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

📄 qiplotmanagers.hpp

📁 Iocomp Ultra Pack v3.0.2 Sources.For.Delphi 数据显示编程插件,可用于工业控制
💻 HPP
📖 第 1 页 / 共 2 页
字号:
// Borland C++ Builder
// Copyright (c) 1995, 2002 by Borland Software Corporation
// All rights reserved

// (DO NOT EDIT: machine generated header) 'QiPlotManagers.pas' rev: 6.00

#ifndef QiPlotManagersHPP
#define QiPlotManagersHPP

#pragma delphiheader begin
#pragma option push -w-
#pragma option push -Vx
#include <QiPlotTable.hpp>	// Pascal unit
#include <QiPlotAnnotation.hpp>	// Pascal unit
#include <QiPlotLabel.hpp>	// Pascal unit
#include <QiPlotLimit.hpp>	// Pascal unit
#include <QiPlotDataCursor.hpp>	// Pascal unit
#include <QiPlotDataView.hpp>	// Pascal unit
#include <QiPlotChannelCustom.hpp>	// Pascal unit
#include <QiPlotAxis.hpp>	// Pascal unit
#include <QiPlotLegend.hpp>	// Pascal unit
#include <QiPlotToolBar.hpp>	// Pascal unit
#include <QiPlotObjects.hpp>	// Pascal unit
#include <QiGPFunctions.hpp>	// Pascal unit
#include <QiTypes.hpp>	// Pascal unit
#include <QMenus.hpp>	// Pascal unit
#include <QExtCtrls.hpp>	// Pascal unit
#include <QStdCtrls.hpp>	// Pascal unit
#include <QComCtrls.hpp>	// Pascal unit
#include <QControls.hpp>	// Pascal unit
#include <Variants.hpp>	// Pascal unit
#include <Classes.hpp>	// Pascal unit
#include <Types.hpp>	// Pascal unit
#include <QTypes.hpp>	// Pascal unit
#include <QClipbrd.hpp>	// Pascal unit
#include <QDialogs.hpp>	// Pascal unit
#include <QForms.hpp>	// Pascal unit
#include <QGraphics.hpp>	// Pascal unit
#include <Qt.hpp>	// Pascal unit
#include <TypInfo.hpp>	// Pascal unit
#include <SysUtils.hpp>	// Pascal unit
#include <Windows.hpp>	// Pascal unit
#include <SysInit.hpp>	// Pascal unit
#include <System.hpp>	// Pascal unit

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

namespace Qiplotmanagers
{
//-- type declarations -------------------------------------------------------
class DELPHICLASS TiColorCountObject;
class PASCALIMPLEMENTATION TiColorCountObject : public System::TObject 
{
	typedef System::TObject inherited;
	
public:
	Qgraphics::TColor Color;
	int Count;
public:
	#pragma option push -w-inl
	/* TObject.Create */ inline __fastcall TiColorCountObject(void) : System::TObject() { }
	#pragma option pop
	#pragma option push -w-inl
	/* TObject.Destroy */ inline __fastcall virtual ~TiColorCountObject(void) { }
	#pragma option pop
	
};


class DELPHICLASS TiPlotObjectManagerCustom;
class PASCALIMPLEMENTATION TiPlotObjectManagerCustom : public System::TObject 
{
	typedef System::TObject inherited;
	
private:
	Classes::TStringList* FList;
	Qcontrols::TWidgetControl* FOwner;
	Classes::TNotifyEvent FOnChange;
	Classes::TNotifyEvent FOnRemove;
	Classes::TNotifyEvent FOnInsert;
	Classes::TNotifyEvent FOnRename;
	
protected:
	int __fastcall GetCount(void);
	Qiplotobjects::TiPlotObject* __fastcall GetObject(int Index);
	Qiplotobjects::TiPlotObject* __fastcall GetItem(int Index);
	virtual Qiplotobjects::TiPlotObject* __fastcall CreateObject(void) = 0 ;
	virtual AnsiString __fastcall GetName(void) = 0 ;
	void __fastcall DoChange(void);
	virtual void __fastcall RemovingObject(Qiplotobjects::TiPlotObject* AObject);
	__property Qcontrols::TWidgetControl* Owner = {read=FOwner};
	
public:
	__fastcall virtual TiPlotObjectManagerCustom(Qcontrols::TWidgetControl* AOwner, Classes::TNotifyEvent AOnChange, Classes::TNotifyEvent AOnInsert, Classes::TNotifyEvent AOnRemove, Classes::TNotifyEvent AOnRename);
	__fastcall virtual ~TiPlotObjectManagerCustom(void);
	void __fastcall InsertObject(Qiplotobjects::TiPlotObject* AObject);
	virtual void __fastcall NotificationRemove(System::TObject* Sender);
	virtual void __fastcall NotificationInsert(System::TObject* Sender) = 0 ;
	virtual void __fastcall NotificationRename(System::TObject* Sender);
	virtual void __fastcall NotificationSetFocus(System::TObject* Sender);
	bool __fastcall DoWriteToStream(void);
	void __fastcall WriteToStream(Classes::TWriter* Writer);
	void __fastcall ReadFromStream(Classes::TReader* Reader);
	virtual void __fastcall Clear(void);
	virtual void __fastcall Delete(int Index);
	AnsiString __fastcall GetNextName();
	int __fastcall GetIndex(Qiplotobjects::TiPlotObject* AObject);
	Qiplotobjects::TiPlotObject* __fastcall GetObjectByName(AnsiString Value);
	int __fastcall GetIndexByName(AnsiString Value);
	__property Qiplotobjects::TiPlotObject* Items[int Index] = {read=GetItem};
	__property int Count = {read=GetCount, nodefault};
	__property Classes::TNotifyEvent OnChange = {read=FOnChange, write=FOnChange};
	__property Classes::TNotifyEvent OnInsert = {read=FOnInsert, write=FOnInsert};
	__property Classes::TNotifyEvent OnRemove = {read=FOnRemove, write=FOnRemove};
	__property Classes::TNotifyEvent OnRename = {read=FOnRename, write=FOnRename};
};


class DELPHICLASS TiPlotObjectOwnedManager;
class PASCALIMPLEMENTATION TiPlotObjectOwnedManager : public TiPlotObjectManagerCustom 
{
	typedef TiPlotObjectManagerCustom inherited;
	
public:
	virtual void __fastcall Clear(void);
	virtual void __fastcall NotificationRemove(System::TObject* Sender);
public:
	#pragma option push -w-inl
	/* TiPlotObjectManagerCustom.Create */ inline __fastcall virtual TiPlotObjectOwnedManager(Qcontrols::TWidgetControl* AOwner, Classes::TNotifyEvent AOnChange, Classes::TNotifyEvent AOnInsert, Classes::TNotifyEvent AOnRemove, Classes::TNotifyEvent AOnRename) : TiPlotObjectManagerCustom(AOwner, AOnChange, AOnInsert, AOnRemove, AOnRename) { }
	#pragma option pop
	#pragma option push -w-inl
	/* TiPlotObjectManagerCustom.Destroy */ inline __fastcall virtual ~TiPlotObjectOwnedManager(void) { }
	#pragma option pop
	
};


class DELPHICLASS TiPlotToolBarManager;
class PASCALIMPLEMENTATION TiPlotToolBarManager : public TiPlotObjectOwnedManager 
{
	typedef TiPlotObjectOwnedManager inherited;
	
private:
	HIDESBASE Qiplottoolbar::TiPlotToolBar* __fastcall GetItem(int Index);
	
protected:
	virtual Qiplotobjects::TiPlotObject* __fastcall CreateObject(void);
	virtual AnsiString __fastcall GetName();
	
public:
	virtual void __fastcall NotificationInsert(System::TObject* Sender);
	__property Qiplottoolbar::TiPlotToolBar* Items[int Index] = {read=GetItem};
public:
	#pragma option push -w-inl
	/* TiPlotObjectManagerCustom.Create */ inline __fastcall virtual TiPlotToolBarManager(Qcontrols::TWidgetControl* AOwner, Classes::TNotifyEvent AOnChange, Classes::TNotifyEvent AOnInsert, Classes::TNotifyEvent AOnRemove, Classes::TNotifyEvent AOnRename) : TiPlotObjectOwnedManager(AOwner, AOnChange, AOnInsert, AOnRemove, AOnRename) { }
	#pragma option pop
	#pragma option push -w-inl
	/* TiPlotObjectManagerCustom.Destroy */ inline __fastcall virtual ~TiPlotToolBarManager(void) { }
	#pragma option pop
	
};


class DELPHICLASS TiPlotLegendManager;
class PASCALIMPLEMENTATION TiPlotLegendManager : public TiPlotObjectOwnedManager 
{
	typedef TiPlotObjectOwnedManager inherited;
	
private:
	HIDESBASE Qiplotlegend::TiPlotLegend* __fastcall GetItem(int Index);
	
protected:
	virtual Qiplotobjects::TiPlotObject* __fastcall CreateObject(void);
	virtual AnsiString __fastcall GetName();
	
public:
	virtual void __fastcall NotificationInsert(System::TObject* Sender);
	__property Qiplotlegend::TiPlotLegend* Items[int Index] = {read=GetItem};
public:
	#pragma option push -w-inl
	/* TiPlotObjectManagerCustom.Create */ inline __fastcall virtual TiPlotLegendManager(Qcontrols::TWidgetControl* AOwner, Classes::TNotifyEvent AOnChange, Classes::TNotifyEvent AOnInsert, Classes::TNotifyEvent AOnRemove, Classes::TNotifyEvent AOnRename) : TiPlotObjectOwnedManager(AOwner, AOnChange, AOnInsert, AOnRemove, AOnRename) { }
	#pragma option pop
	#pragma option push -w-inl
	/* TiPlotObjectManagerCustom.Destroy */ inline __fastcall virtual ~TiPlotLegendManager(void) { }
	#pragma option pop
	
};


class DELPHICLASS TiPlotXAxisManager;
class PASCALIMPLEMENTATION TiPlotXAxisManager : public TiPlotObjectOwnedManager 
{
	typedef TiPlotObjectOwnedManager inherited;
	
private:
	HIDESBASE Qiplotaxis::TiPlotXAxis* __fastcall GetItem(int Index);
	
protected:
	virtual Qiplotobjects::TiPlotObject* __fastcall CreateObject(void);
	virtual AnsiString __fastcall GetName();
	
public:
	virtual void __fastcall NotificationInsert(System::TObject* Sender);
	__property Qiplotaxis::TiPlotXAxis* Items[int Index] = {read=GetItem};
public:
	#pragma option push -w-inl
	/* TiPlotObjectManagerCustom.Create */ inline __fastcall virtual TiPlotXAxisManager(Qcontrols::TWidgetControl* AOwner, Classes::TNotifyEvent AOnChange, Classes::TNotifyEvent AOnInsert, Classes::TNotifyEvent AOnRemove, Classes::TNotifyEvent AOnRename) : TiPlotObjectOwnedManager(AOwner, AOnChange, AOnInsert, AOnRemove, AOnRename) { }
	#pragma option pop
	#pragma option push -w-inl
	/* TiPlotObjectManagerCustom.Destroy */ inline __fastcall virtual ~TiPlotXAxisManager(void) { }
	#pragma option pop
	
};


class DELPHICLASS TiPlotYAxisManager;
class PASCALIMPLEMENTATION TiPlotYAxisManager : public TiPlotObjectOwnedManager 
{
	typedef TiPlotObjectOwnedManager inherited;
	
private:
	HIDESBASE Qiplotaxis::TiPlotYAxis* __fastcall GetItem(int Index);
	
protected:
	virtual Qiplotobjects::TiPlotObject* __fastcall CreateObject(void);
	virtual AnsiString __fastcall GetName();
	
public:
	virtual void __fastcall NotificationInsert(System::TObject* Sender);
	__property Qiplotaxis::TiPlotYAxis* Items[int Index] = {read=GetItem};
public:
	#pragma option push -w-inl
	/* TiPlotObjectManagerCustom.Create */ inline __fastcall virtual TiPlotYAxisManager(Qcontrols::TWidgetControl* AOwner, Classes::TNotifyEvent AOnChange, Classes::TNotifyEvent AOnInsert, Classes::TNotifyEvent AOnRemove, Classes::TNotifyEvent AOnRename) : TiPlotObjectOwnedManager(AOwner, AOnChange, AOnInsert, AOnRemove, AOnRename) { }
	#pragma option pop
	#pragma option push -w-inl
	/* TiPlotObjectManagerCustom.Destroy */ inline __fastcall virtual ~TiPlotYAxisManager(void) { }
	#pragma option pop
	
};


class DELPHICLASS TiPlotChannelManager;
class PASCALIMPLEMENTATION TiPlotChannelManager : public TiPlotObjectOwnedManager 
{

⌨️ 快捷键说明

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