Reference

The COM object is a QAxObject with the CLSID .

Interfaces

Event Interfaces

Public Slots:

Signals:

Properties:


Member Type Documentation

__MIDL___MIDL_itf_automation_0262_0001

__MIDL___MIDL_itf_automation_0262_0002

__MIDL___MIDL_itf_automation_0262_0003

__MIDL___MIDL_itf_automation_0262_0004

__MIDL___MIDL_itf_automation_0262_0005

__MIDL___MIDL_itf_automation_0262_0006

__MIDL___MIDL_itf_automation_0262_0007


Member Function Documentation

void AddCustomItem (IDispatch* pItem) [slot]

Connect a signal to this slot:

	QObject::connect(sender, SIGNAL(someSignal(IDispatch*)), object, SLOT(AddCustomItem(IDispatch*)));

Or call the function directly:

	QVariantList params = ...
	object->dynamicCall("AddCustomItem(IDispatch*)", params);

void RemoveCustomItem (QVariant vItem) [slot]

Connect a signal to this slot:

	QObject::connect(sender, SIGNAL(someSignal(QVariant)), object, SLOT(RemoveCustomItem(QVariant)));

Or call the function directly:

	QVariantList params = ...
	object->dynamicCall("RemoveCustomItem(QVariant)", params);

void exception (int code, QString source, QString disc, QString help) [signal]

Connect a slot to this signal:

	QObject::connect(object, SIGNAL(exception(int, QString, QString, QString)), receiver, SLOT(someSlot(int, QString, QString, QString)));

void propertyChanged (QString name) [signal]

Connect a slot to this signal:

	QObject::connect(object, SIGNAL(propertyChanged(QString)), receiver, SLOT(someSlot(QString)));

void signal (QString name, int argc, void* argv) [signal]

Connect a slot to this signal:

	QObject::connect(object, SIGNAL(signal(QString, int, void*)), receiver, SLOT(someSlot(QString, int, void*)));

Property Documentation

QString objectName

Read this property's value using QObject::property:

	QString val = object->property("objectName").toString();
Set this property' value using QObject::setProperty:
	QString newValue = ...
	object->setProperty("objectName", newValue);
Or using the setObjectName slot.

IDispatch* Application

Read this property's value using QObject::property:

	IDispatch* val = object->property("Application").toIDispatch*();

IDispatch* CustomItems

Read this property's value using QObject::property:

	IDispatch* val = object->property("CustomItems").toIDispatch*();

IDispatch* Parent

Read this property's value using QObject::property:

	IDispatch* val = object->property("Parent").toIDispatch*();

QString control

Read this property's value using QObject::property:

	QString val = object->property("control").toString();
Set this property' value using QObject::setProperty:
	QString newValue = ...
	object->setProperty("control", newValue);
Or using the setControl slot.