summaryrefslogtreecommitdiff
path: root/examples/activeqt/wrapper/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/activeqt/wrapper/main.cpp')
-rw-r--r--examples/activeqt/wrapper/main.cpp112
1 files changed, 56 insertions, 56 deletions
diff --git a/examples/activeqt/wrapper/main.cpp b/examples/activeqt/wrapper/main.cpp
index 3f0cfb5..5c16f92 100644
--- a/examples/activeqt/wrapper/main.cpp
+++ b/examples/activeqt/wrapper/main.cpp
@@ -73,85 +73,85 @@ static const char *fileopen[] = {
class ActiveQtFactory : public QAxFactory
{
public:
- ActiveQtFactory( const QUuid &lib, const QUuid &app )
- : QAxFactory( lib, app )
+ ActiveQtFactory( const QUuid &lib, const QUuid &app )
+ : QAxFactory( lib, app )
{}
QStringList featureList() const
{
- QStringList list;
- list << "QCheckBox";
- list << "QRadioButton";
- list << "QPushButton";
- list << "QToolButton";
- return list;
+ QStringList list;
+ list << "QCheckBox";
+ list << "QRadioButton";
+ list << "QPushButton";
+ list << "QToolButton";
+ return list;
}
QObject *createObject(const QString &key)
{
- if ( key == "QCheckBox" )
- return new QCheckBox(0);
- if ( key == "QRadioButton" )
- return new QRadioButton(0);
- if ( key == "QPushButton" )
- return new QPushButton(0 );
- if ( key == "QToolButton" ) {
- QToolButton *tb = new QToolButton(0);
-// tb->setIcon( QPixmap(fileopen) );
- return tb;
- }
+ if ( key == "QCheckBox" )
+ return new QCheckBox(0);
+ if ( key == "QRadioButton" )
+ return new QRadioButton(0);
+ if ( key == "QPushButton" )
+ return new QPushButton(0 );
+ if ( key == "QToolButton" ) {
+ QToolButton *tb = new QToolButton(0);
+// tb->setIcon( QPixmap(fileopen) );
+ return tb;
+ }
- return 0;
+ return 0;
}
const QMetaObject *metaObject( const QString &key ) const
{
- if ( key == "QCheckBox" )
- return &QCheckBox::staticMetaObject;
- if ( key == "QRadioButton" )
- return &QRadioButton::staticMetaObject;
- if ( key == "QPushButton" )
- return &QPushButton::staticMetaObject;
- if ( key == "QToolButton" )
- return &QToolButton::staticMetaObject;
+ if ( key == "QCheckBox" )
+ return &QCheckBox::staticMetaObject;
+ if ( key == "QRadioButton" )
+ return &QRadioButton::staticMetaObject;
+ if ( key == "QPushButton" )
+ return &QPushButton::staticMetaObject;
+ if ( key == "QToolButton" )
+ return &QToolButton::staticMetaObject;
- return 0;
+ return 0;
}
QUuid classID( const QString &key ) const
{
- if ( key == "QCheckBox" )
- return "{6E795DE9-872D-43CF-A831-496EF9D86C68}";
- if ( key == "QRadioButton" )
- return "{AFCF78C8-446C-409A-93B3-BA2959039189}";
- if ( key == "QPushButton" )
- return "{2B262458-A4B6-468B-B7D4-CF5FEE0A7092}";
- if ( key == "QToolButton" )
- return "{7c0ffe7a-60c3-4666-bde2-5cf2b54390a1}";
+ if ( key == "QCheckBox" )
+ return "{6E795DE9-872D-43CF-A831-496EF9D86C68}";
+ if ( key == "QRadioButton" )
+ return "{AFCF78C8-446C-409A-93B3-BA2959039189}";
+ if ( key == "QPushButton" )
+ return "{2B262458-A4B6-468B-B7D4-CF5FEE0A7092}";
+ if ( key == "QToolButton" )
+ return "{7c0ffe7a-60c3-4666-bde2-5cf2b54390a1}";
- return QUuid();
+ return QUuid();
}
QUuid interfaceID( const QString &key ) const
{
- if ( key == "QCheckBox" )
- return "{4FD39DD7-2DE0-43C1-A8C2-27C51A052810}";
- if ( key == "QRadioButton" )
- return "{7CC8AE30-206C-48A3-A009-B0A088026C2F}";
- if ( key == "QPushButton" )
- return "{06831CC9-59B6-436A-9578-6D53E5AD03D3}";
- if ( key == "QToolButton" )
- return "{6726080f-d63d-4950-a366-9bf33e5cdf84}";
+ if ( key == "QCheckBox" )
+ return "{4FD39DD7-2DE0-43C1-A8C2-27C51A052810}";
+ if ( key == "QRadioButton" )
+ return "{7CC8AE30-206C-48A3-A009-B0A088026C2F}";
+ if ( key == "QPushButton" )
+ return "{06831CC9-59B6-436A-9578-6D53E5AD03D3}";
+ if ( key == "QToolButton" )
+ return "{6726080f-d63d-4950-a366-9bf33e5cdf84}";
- return QUuid();
+ return QUuid();
}
QUuid eventsID( const QString &key ) const
{
- if ( key == "QCheckBox" )
- return "{FDB6FFBE-56A3-4E90-8F4D-198488418B3A}";
- if ( key == "QRadioButton" )
- return "{73EE4860-684C-4A66-BF63-9B9EFFA0CBE5}";
- if ( key == "QPushButton" )
- return "{3CC3F17F-EA59-4B58-BBD3-842D467131DD}";
- if ( key == "QToolButton" )
- return "{f4d421fd-4ead-4fd9-8a25-440766939639}";
+ if ( key == "QCheckBox" )
+ return "{FDB6FFBE-56A3-4E90-8F4D-198488418B3A}";
+ if ( key == "QRadioButton" )
+ return "{73EE4860-684C-4A66-BF63-9B9EFFA0CBE5}";
+ if ( key == "QPushButton" )
+ return "{3CC3F17F-EA59-4B58-BBD3-842D467131DD}";
+ if ( key == "QToolButton" )
+ return "{f4d421fd-4ead-4fd9-8a25-440766939639}";
- return QUuid();
+ return QUuid();
}
};
//! [0] //! [1]