diff --git a/src/adaptors/UBImportVirtualPrinter.h b/src/adaptors/UBImportVirtualPrinter.h deleted file mode 100644 index e1c56eb7..00000000 --- a/src/adaptors/UBImportVirtualPrinter.h +++ /dev/null @@ -1,55 +0,0 @@ -/* - * UBImportVirtualPrinter.h - * - * Created on: 18 mars 2009 - * Author: Julien - */ - -#ifndef UBIMPORTVIRTUALPRINTER_H_ -#define UBIMPORTVIRTUALPRINTER_H_ - -#include - -#include "UBImportAdaptor.h" - -#include "document/UBDocumentProxy.h" - -/** - * This class import ini file that are generated by Uniboard Printer. - */ -class UBImportVirtualPrinter: public UBImportAdaptor -{ - Q_OBJECT; - - public: - UBImportVirtualPrinter(QObject *parent = 0); - virtual ~UBImportVirtualPrinter(); - - // this is the name of the default printer that must be reset after importing from virtual printer. - // this allow other import adaptor to backup default printer, then set Uniboard printer as default printer and launch the - // print. Then when uniboard will import the file from virtual printer, it will reset the default printer to this one. - static QString sOriginalDefaultPrintername; - - - /** - * The document expecting to be merged with incoming data - */ - static QPointer pendingDocument; - - virtual QStringList supportedExtentions(); - virtual QString importFileFilter(); - virtual UBDocumentProxy* importFile(const QFile& pFile, const QString& pGroup); - - virtual bool addFileToDocument(UBDocumentProxy* pDocument, const QFile& pFile); - - - private: - - QString pdfFileName(const QFile& pFile); - QStringList emfFileNames(const QFile& pFile); - - void cleanUp(const QFile& pFile, const QString& pPdfFileName, QStringList pEmfFilenames); -}; - - -#endif /* UBIMPORTVIRTUALPRINTER_H_ */ diff --git a/src/adaptors/UBPowerPointApplication.h b/src/adaptors/UBPowerPointApplication.h deleted file mode 100644 index fee07ac5..00000000 --- a/src/adaptors/UBPowerPointApplication.h +++ /dev/null @@ -1,13 +0,0 @@ - -#ifndef UBPOWERPOINTAPPLICATION_H_ -#define UBPOWERPOINTAPPLICATION_H_ - -#if defined(Q_OS_WIN) -#include "UBPowerPointApplication_win.h" -#elif defined(Q_OS_MAC) -#include "UBPowerPointApplication_mac.h" -#else -//TODO Linux -#endif - -#endif /* UBPOWERPOINTAPPLICATION_H_ */ diff --git a/src/adaptors/UBPowerPointApplication_mac.h b/src/adaptors/UBPowerPointApplication_mac.h deleted file mode 100644 index 83bace84..00000000 --- a/src/adaptors/UBPowerPointApplication_mac.h +++ /dev/null @@ -1,28 +0,0 @@ - -#ifndef UBPOWERPOINTAPPLICATIONMAC_H_ -#define UBPOWERPOINTAPPLICATIONMAC_H_ - -#include -#include "UBImportAdaptor.h" - -class UBPowerPointApplication : public UBImportAdaptor -{ - Q_OBJECT - - public: - UBPowerPointApplication(QObject* parent = 0); - virtual ~UBPowerPointApplication(); - - virtual QStringList supportedExtentions(); - virtual QString importFileFilter(); - virtual UBDocumentProxy* importFile(const QFile& pFile, const QString& pGroup); - - virtual bool addFileToDocument(UBDocumentProxy* pDocument, const QFile& pFile); - - private: - bool generatePdfFromPptFile(const QString& pptFile, const QString& pOutputFile); - - -}; - -#endif /* UBPOWERPOINTAPPLICATIONMAC_H_ */ diff --git a/src/adaptors/UBPowerPointApplication_mac.mm b/src/adaptors/UBPowerPointApplication_mac.mm deleted file mode 100644 index f6e3a793..00000000 --- a/src/adaptors/UBPowerPointApplication_mac.mm +++ /dev/null @@ -1,227 +0,0 @@ - -#include "UBPowerPointApplication_mac.h" - -#include "core/UBApplication.h" -#include "core/UBDocumentManager.h" -#include "frameworks/UBPlatformUtils.h" -#include "frameworks/UBFileSystemUtils.h" - -#import -#import - - - -UBPowerPointApplication::UBPowerPointApplication(QObject* parent) -: UBImportAdaptor(parent) -{ - // NOOP -} - -UBPowerPointApplication::~UBPowerPointApplication() -{ - // NOOP -} - -class AppleScriptThread : public QThread -{ - public: - AppleScriptThread(NSAppleScript *appleScript, QObject *parent = 0) - : QThread(parent) - , mAppleScript(appleScript) - , mError(nil) - { - // NOOP - } - - ~AppleScriptThread() - { - if (mError) - { - [mError release]; - } - } - - void run() - { - NSDictionary *error = nil; - NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; - [mAppleScript executeAndReturnError:&error]; - mError = error ? [[NSDictionary alloc] initWithDictionary:error] : nil; - [pool release]; - } - - NSDictionary* error() - { - return mError; - } - - private: - NSAppleScript *mAppleScript; - NSDictionary *mError; -}; - - -NSString* escapePath(const QString &filePath) -{ - QString escapedFilePath(filePath); - escapedFilePath.replace("\"", "\\\""); - QByteArray pathRepresentation = QFile::encodeName(escapedFilePath); - return [[NSFileManager defaultManager] stringWithFileSystemRepresentation:pathRepresentation.constData() length:pathRepresentation.length()]; -} - - -bool UBPowerPointApplication::generatePdfFromPptFile(const QString& pptFile, const QString& pOutputFile) -{ - bool result = true; - NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; - QResource scriptResource(":/PowerPointImport.applescript"); - NSString *script = [[NSString alloc] initWithBytes:scriptResource.data() length:scriptResource.size() encoding:NSUTF8StringEncoding]; - QFileInfo pptFileInfo(pptFile); - NSString *scriptSource = [NSString stringWithFormat:script, escapePath(pptFileInfo.fileName()), escapePath(pptFile), escapePath(pOutputFile)]; - [script release]; - NSAppleScript *pdfExportScript = [[NSAppleScript alloc] initWithSource:scriptSource]; - AppleScriptThread appleScriptThread(pdfExportScript); - appleScriptThread.start(); - while (appleScriptThread.isRunning()) - { - qApp->processEvents(); - } - if (appleScriptThread.error()) - { - const char* errorDescription = [[appleScriptThread.error() description] UTF8String]; - qWarning() << "PowerPoint import error:" << QString::fromUtf8(errorDescription, strlen(errorDescription)); - result = false; - } - [pdfExportScript release]; - [pool drain]; - return result; -} - - -QStringList UBPowerPointApplication::supportedExtentions() -{ - QStringList result; - CFURLRef powerPointURL = NULL; - - if (LSFindApplicationForInfo(kLSUnknownCreator, CFSTR("com.microsoft.Powerpoint"), NULL, NULL, &powerPointURL) == noErr) - { - CFBundleRef powerPointBundle = CFBundleCreate(kCFAllocatorDefault, powerPointURL); - if (powerPointBundle) - { - CFStringRef buildNumber = (CFStringRef)CFBundleGetValueForInfoDictionaryKey(powerPointBundle, CFSTR("MicrosoftBuildNumber")); - if (buildNumber && (CFGetTypeID(buildNumber) == CFStringGetTypeID())) - { - int buildValue = CFStringGetIntValue(buildNumber); - if (buildValue >= 80409) - { - // PowerPoint 2008 - result << "ppt" << "pptx" << "pptm" << "pps" << "ppsx" << "ppsm"; - } - /* - else if (buildValue >= `Office 2004 MicrosoftBuildNumber`) - { - result << "ppt" << "pptm" << "pps" << "ppsm"; - } - */ - else - { - qWarning("Unsupported Microsoft PowerPoint version: %d", buildValue); - } - } - else - { - qWarning("Invalid PowerPoint MicrosoftBuildNumber"); - } - CFRelease(powerPointBundle); - } - else - { - qWarning("Microsoft PowerPoint bundle was not found"); - } - } - else - { - qWarning("Microsoft PowerPoint was not found"); - } - - if (powerPointURL) - { - CFRelease(powerPointURL); - } - - return result; -} - - -QString UBPowerPointApplication::importFileFilter() -{ - QStringList extentions = supportedExtentions(); - if (extentions.count() > 0) - { - QString filter = "PowerPoint ("; - foreach (const QString ext, extentions) - { - filter.append("*."); - filter.append(ext); - filter.append(" "); - } - filter = filter.trimmed(); - filter.append(")"); - return filter; - } - else - { - return 0; - } -} - - -UBDocumentProxy* UBPowerPointApplication::importFile(const QFile& pFile, const QString& pGroup) -{ - UBApplication::showMessage(tr("Converting PowerPoint file ..."), true); - UBDocumentProxy* result = 0; - - QString tempDir = UBFileSystemUtils::createTempDir(); - QFileInfo sourceFileInfo(pFile); - QString tempFile = tempDir + "/" + sourceFileInfo.baseName() + ".pdf"; - - if (generatePdfFromPptFile(pFile.fileName(), tempFile)) - { - UBApplication::showMessage(tr("PowerPoint import successful.")); - QFile tmp(tempFile); - result = UBDocumentManager::documentManager()->importFile(tmp, pGroup); - } - else - { - UBApplication::showMessage(tr("PowerPoint import failed.")); - } - - UBFileSystemUtils::deleteDir(tempDir); - return result; -} - - -bool UBPowerPointApplication::addFileToDocument(UBDocumentProxy* pDocument, const QFile& pFile) -{ - UBApplication::showMessage(tr("Converting PowerPoint file ..."), true); - bool result = false; - - QString tempDir = UBFileSystemUtils::createTempDir(); - QFileInfo sourceFileInfo(pFile); - QString tempFile = tempDir + "/" + sourceFileInfo.baseName() + ".pdf"; - - if (generatePdfFromPptFile(pFile.fileName(), tempFile)) - { - UBApplication::showMessage(tr("PowerPoint import successful.")); - QFile tmp(tempFile); - result = UBDocumentManager::documentManager()->addFileToDocument(pDocument, tmp); - } - else - { - UBApplication::showMessage(tr("PowerPoint import failed.")); - } - - UBFileSystemUtils::deleteDir(tempDir); - return result; -} - diff --git a/src/adaptors/UBPowerPointApplication_win.cpp b/src/adaptors/UBPowerPointApplication_win.cpp deleted file mode 100644 index 53312e43..00000000 --- a/src/adaptors/UBPowerPointApplication_win.cpp +++ /dev/null @@ -1,269 +0,0 @@ -/* - * UBPowerPointApplication.cpp - * - * Created on: Dec 4, 2008 - * Author: Luc - */ - -#include "UBPowerPointApplication_win.h" - -#include "frameworks/UBFileSystemUtils.h" - -#include "core/UBApplication.h" -#include "core/UBDocumentManager.h" -#include "core/UBPersistenceManager.h" - -#include "UBImportVirtualPrinter.h" -#include "msppt.h" -#include "mso.h" -#include "windows.h" - -UBPowerPointApplication::UBPowerPointApplication(QObject* parent) - : UBImportAdaptor(parent) - , mInit(false) - , mHasException(false) - , mSupportPpt(false) - , mSupportPptX(false) -{ - // NOOP -} - - -UBPowerPointApplication::~UBPowerPointApplication() -{ - // NOOP -} - - -void UBPowerPointApplication::init() -{ - PowerPoint::Application ppt; - qDebug() << "PPT version :" << ppt.Version().toFloat(); - mSupportPpt = !ppt.isNull(); - mSupportPptX = ppt.Version().toFloat() >= 12; - mInit = true; -} - - -bool UBPowerPointApplication::isPowerPointInstalled() -{ - if (!mInit) - { - init(); - } - return mSupportPpt; -} - - -bool UBPowerPointApplication::supportPptx() -{ - if (!mInit) - { - init(); - } - - return mSupportPptX; -} - - -bool UBPowerPointApplication::generatePdfFromPptFile(const QString& pptFile, const QString& outputDir) -{ - Q_UNUSED(pptFile); - Q_UNUSED(outputDir); - return false; -} - - -bool UBPowerPointApplication::generateImagesFromPptFile(const QString& pptFile, const QString& outputDir, const QString& imageFormat, const QSize& imageSize) -{ - mHasException = false; - - PowerPoint::Application ppt; - - connect(&ppt, SIGNAL(exception ( int , const QString & , const QString & , const QString & )) - , this, SLOT(exception ( int , const QString & , const QString & , const QString & ))); - - if (ppt.isNull()) - return false; - - ppt.Activate(); - ppt.SetWindowState(PowerPoint::ppWindowMinimized); - - UBApplication::processEvents(); - - int previouslyOpenPresentations = ppt.Presentations()->Count(); - - PowerPoint::Presentation *presentation = - ppt.Presentations()->Open(QDir::toNativeSeparators(pptFile)); - - int currentOpenPresentations = ppt.Presentations()->Count(); - - if(!presentation) - return false; - - if (ppt.Version().toFloat() >= 12) // PPT 2007 is broken with high res exports : https://trac.assembla.com/uniboard/ticket/297#comment:16 - { - presentation->Export(QDir::toNativeSeparators(outputDir), imageFormat); - } - else - { - presentation->Export(QDir::toNativeSeparators(outputDir), imageFormat, imageSize.width(), imageSize.height()); - } - - if(mHasException) - return false; - - if (currentOpenPresentations != previouslyOpenPresentations) - presentation->Close(); - - if (ppt.Presentations()->Count() == 0) - ppt.Quit(); - - return true; -} - -QStringList UBPowerPointApplication::supportedExtentions() -{ - QStringList result; - if (UBPowerPointApplication::isPowerPointInstalled()) - { - result << QStringList("ppt") << "pps"; - if (UBPowerPointApplication::supportPptx()) - { - result << "pptx" << "pptm" << "ppsx" << "ppsm"; - } - } - - return result; -} - -QString UBPowerPointApplication::importFileFilter() -{ - if (UBPowerPointApplication::isPowerPointInstalled()) - { - if (UBPowerPointApplication::supportPptx()) - { - return "PowerPoint (*.ppt *.pptx *.pptm *.pps *.ppsx *.ppsm)"; - } - else - { - return "PowerPoint (*.ppt *.pps)"; - } - } - else - { - return ""; - } -} - -UBDocumentProxy* UBPowerPointApplication::importFile(const QFile& pFile, const QString& pGroup) -{ - - UBDocumentProxy* document = 0; - // print by changing default printer and use shell execute to print - LPTSTR wDefaultPrinterName = new TCHAR[255]; - LPTSTR virtualPrinter = new TCHAR[255]; - - int i = QString("Uniboard").toWCharArray(virtualPrinter); // TODO UB 4.x make me configurable .... - virtualPrinter[i] = 0; - DWORD bufferSize = 1000; - GetDefaultPrinter(wDefaultPrinterName, &bufferSize); - UBImportVirtualPrinter::sOriginalDefaultPrintername = QString::fromWCharArray(wDefaultPrinterName); - - if (!SetDefaultPrinter(virtualPrinter)) - { - QMessageBox msgBox(0); - msgBox.setText(tr("Uniboard printer is not installed. Import will be done in jpg format.")); - msgBox.setStandardButtons(QMessageBox::Ok); - msgBox.setDefaultButton(QMessageBox::Ok); - msgBox.exec(); - QString tempLocation = UBFileSystemUtils::createTempDir(); - QDir tempDir(tempLocation); - - bool pptSuccess = generateImagesFromPptFile(pFile.fileName(), tempLocation, "jpg", QSize(3000, 2250)); - - if (pptSuccess) - { - document = UBDocumentManager::documentManager()->importDir(tempDir, pGroup); - - if (document) - { - UBFileSystemUtils::deleteDir(tempLocation); - } - } - } - else - { - document = UBPersistenceManager::persistenceManager()->createDocument(pGroup); - - QFileInfo sourceFileInfo(pFile); - - document->setMetaData(UBSettings::documentName, sourceFileInfo.baseName()); - UBPersistenceManager::persistenceManager()->persistDocumentMetadata(document); - - UBImportVirtualPrinter::pendingDocument = document; - - int result = (int)ShellExecute(NULL, QString("print").utf16() , pFile.fileName().utf16(), NULL, NULL, SW_HIDE); - - qDebug() << "PPT shellexec print result" << result; - } - - delete[] wDefaultPrinterName; - delete[] virtualPrinter; - - return document; -} - -bool UBPowerPointApplication::addFileToDocument(UBDocumentProxy* pDocument, const QFile& pFile) -{ - bool result = false; - // print by changing default printer and use shell execute to print - LPTSTR wDefaultPrinterName = new TCHAR[255]; - LPTSTR virtualPrinter = new TCHAR[255]; - - int i = QString("Uniboard").toWCharArray(virtualPrinter); // TODO UB 4.x make me configurable .... - virtualPrinter[i] = 0; - DWORD bufferSize = 1000; - GetDefaultPrinter(wDefaultPrinterName, &bufferSize); - UBImportVirtualPrinter::sOriginalDefaultPrintername = QString::fromWCharArray(wDefaultPrinterName); - - if (!SetDefaultPrinter(virtualPrinter)) - { - QMessageBox msgBox(0); - msgBox.setText(tr("Uniboard printer is not installed. Import will be done in jpg format.")); - msgBox.setStandardButtons(QMessageBox::Ok); - msgBox.setDefaultButton(QMessageBox::Ok); - msgBox.exec(); - QString tempLocation = UBFileSystemUtils::createTempDir(); - QDir tempDir(tempLocation); - - bool pptSuccess = generateImagesFromPptFile(pFile.fileName(), tempLocation, "jpg", QSize(3000, 2250)); - - if (pptSuccess) - { - if (UBDocumentManager::documentManager()->addImageDirToDocument(tempDir, pDocument)) - { - UBFileSystemUtils::deleteDir(tempLocation); - result = true; - } - } - } - else - { - UBImportVirtualPrinter::pendingDocument = pDocument; - result = ShellExecute(NULL, QString("print").utf16() , pFile.fileName().utf16(), NULL, NULL, SW_HIDE); - } - - delete[] wDefaultPrinterName; - delete[] virtualPrinter; - return result; - -} - -void UBPowerPointApplication::exception ( int code, const QString & source, const QString & desc, const QString & help ) -{ - Q_UNUSED(help); - mHasException = true; - qCritical() << source << desc << code; -} - diff --git a/src/adaptors/UBPowerPointApplication_win.h b/src/adaptors/UBPowerPointApplication_win.h deleted file mode 100644 index 8ea42a76..00000000 --- a/src/adaptors/UBPowerPointApplication_win.h +++ /dev/null @@ -1,50 +0,0 @@ -/* - * UBPowerPointApplication.h - * - * Created on: Dec 4, 2008 - * Author: Luc - */ - -#ifndef UBPOWERPOINTAPPLICATIONWIN_H_ -#define UBPOWERPOINTAPPLICATIONWIN_H_ - -#include -#include "UBImportAdaptor.h" - -class UBPowerPointApplication : public UBImportAdaptor { - - Q_OBJECT; - - public: - UBPowerPointApplication(QObject* parent = 0); - virtual ~UBPowerPointApplication(); - - bool isPowerPointInstalled(); - - bool supportPptx(); - - virtual QStringList supportedExtentions(); - virtual QString importFileFilter(); - virtual UBDocumentProxy* importFile(const QFile& pFile, const QString& pGroup); - - virtual bool addFileToDocument(UBDocumentProxy* pDocument, const QFile& pFile); - - private: - - bool generateImagesFromPptFile(const QString& pptFile, const QString&outputDir, const QString& imageFormat, const QSize& imageSize); - bool generatePdfFromPptFile(const QString& pptFile, const QString& pOutputFile); - bool catchAndProcessFile(); - - void init(); - bool mInit; - bool mHasException; - bool mSupportPpt; - bool mSupportPptX; - - - private slots: - void exception ( int code, const QString & source, const QString & desc, const QString & help); - -}; - -#endif /* UBPOWERPOINTAPPLICATIONWIN_H_ */ diff --git a/src/adaptors/adaptors.pri b/src/adaptors/adaptors.pri index d6d13e88..8404364d 100644 --- a/src/adaptors/adaptors.pri +++ b/src/adaptors/adaptors.pri @@ -47,22 +47,9 @@ SOURCES += src/adaptors/voting/UBAbstractVotingSystem.cpp win32 { - SOURCES += src/adaptors/UBPowerPointApplication_win.cpp \ - src/adaptors/UBImportVirtualPrinter.cpp \ - src/adaptors/voting/UBReply2005VotingSystem.cpp \ + SOURCES += src/adaptors/voting/UBReply2005VotingSystem.cpp \ src/adaptors/voting/UBReplyWRS970VotingSystem.cpp - HEADERS += src/adaptors/UBPowerPointApplication_win.h \ - src/adaptors/UBImportVirtualPrinter.h \ - src/adaptors/voting/UBReply2005VotingSystem.h \ + HEADERS += src/adaptors/voting/UBReply2005VotingSystem.h \ src/adaptors/voting/UBReplyWRS970VotingSystem.h } - - -macx { - - SOURCES += src/adaptors/UBPowerPointApplication_mac.mm - - HEADERS += src/adaptors/UBPowerPointApplication_mac.h - -} diff --git a/src/core/UBApplicationController.cpp b/src/core/UBApplicationController.cpp index 4d4c2e9a..f8631586 100644 --- a/src/core/UBApplicationController.cpp +++ b/src/core/UBApplicationController.cpp @@ -13,8 +13,6 @@ #include "softwareupdate/UBSoftwareUpdateController.h" #include "softwareupdate/UBSoftwareUpdate.h" -#include "adaptors/UBImportVirtualPrinter.h" - #include "board/UBBoardView.h" #include "board/UBBoardController.h" #include "board/UBBoardPaletteManager.h" @@ -651,32 +649,9 @@ void UBApplicationController::importFile(const QString& pFilePath) bool success = false; -#ifdef Q_WS_WIN - - if (UBImportVirtualPrinter::pendingDocument.isNull()) - { - -#endif - document = UBDocumentManager::documentManager()->importFile(fileToOpen, - UBSettings::defaultDocumentGroupName); - - success = (document != 0); + document = UBDocumentManager::documentManager()->importFile(fileToOpen, UBSettings::defaultDocumentGroupName); -#ifdef Q_WS_WIN - - } - else - { - document = UBImportVirtualPrinter::pendingDocument; - - UBImportVirtualPrinter::pendingDocument = 0; - - success = UBDocumentManager::documentManager()->addFileToDocument(document, fileToOpen); - if (success) - document->setMetaData(UBSettings::documentUpdatedAt, UBStringUtils::toUtcIsoDateTime(QDateTime::currentDateTime())); - } - -#endif + success = (document != 0); if (success && document) { diff --git a/src/core/UBDocumentManager.cpp b/src/core/UBDocumentManager.cpp index 8d5032ae..1f16c977 100644 --- a/src/core/UBDocumentManager.cpp +++ b/src/core/UBDocumentManager.cpp @@ -14,15 +14,10 @@ #include "adaptors/UBExportDocument.h" #include "adaptors/UBExportWeb.h" #include "adaptors/UBWebPublisher.h" -#include "adaptors/UBPowerPointApplication.h" #include "adaptors/UBImportDocument.h" #include "adaptors/UBImportPDF.h" #include "adaptors/UBImportImage.h" -#ifdef Q_OS_WIN - #include "adaptors/UBImportVirtualPrinter.h" -#endif - #include "domain/UBGraphicsScene.h" #include "domain/UBGraphicsSvgItem.h" #include "domain/UBGraphicsPixmapItem.h" @@ -60,27 +55,12 @@ UBDocumentManager::UBDocumentManager(QObject *parent) UBExportDocument* exportDocument = new UBExportDocument(this); mExportAdaptors.append(exportDocument); -// remove the Publish Documents on Uniboard Web entry -// UBWebPublisher* webPublisher = new UBWebPublisher(this); -// mExportAdaptors.append(webPublisher); - - -#if defined(Q_OS_WIN) || defined(Q_OS_MAC) // TODO UB 4.x - Linux implement a wrapper around Open Office - UBPowerPointApplication* pptImport = new UBPowerPointApplication(this); - mImportAdaptors.append(pptImport); -#endif - UBImportDocument* documentImport = new UBImportDocument(this); mImportAdaptors.append(documentImport); UBImportPDF* pdfImport = new UBImportPDF(this); mImportAdaptors.append(pdfImport); UBImportImage* imageImport = new UBImportImage(this); mImportAdaptors.append(imageImport); - -#ifdef Q_OS_WIN - UBImportVirtualPrinter* virtualPrinterImport = new UBImportVirtualPrinter(this); - mImportAdaptors.append(virtualPrinterImport); -#endif } diff --git a/thirdparty/libs.pri b/thirdparty/libs.pri index e394d7dc..a6791266 100644 --- a/thirdparty/libs.pri +++ b/thirdparty/libs.pri @@ -34,13 +34,6 @@ CONFIG(release, debug|release) { LIBS += "-L$$PWD/openssl/0.9.8i/lib/VC/static" "-llibeay32MD" INCLUDEPATH += "$$PWD/openssl/0.9.8i/include" - LIBS += "-L$$PWD/microsoft/ppt/lib" "-lppt" - INCLUDEPATH += "$$PWD/microsoft/ppt/include" - - # need those link if we want to change default printer and print usind shell command - LIBS += "-L$$PWD/microsoft/lib" "-lWinspool" - LIBS += "-L$$PWD/microsoft/lib" "-lshell32" - LIBS += "-lWmvcore" LIBS += "-lWinmm" diff --git a/thirdparty/microsoft/lib/WinSpool.Lib b/thirdparty/microsoft/lib/WinSpool.Lib deleted file mode 100644 index b2b2ac7a..00000000 Binary files a/thirdparty/microsoft/lib/WinSpool.Lib and /dev/null differ diff --git a/thirdparty/microsoft/lib/shell32.lib b/thirdparty/microsoft/lib/shell32.lib deleted file mode 100644 index 3553d68f..00000000 Binary files a/thirdparty/microsoft/lib/shell32.lib and /dev/null differ diff --git a/thirdparty/microsoft/ppt/include/MSO.h b/thirdparty/microsoft/ppt/include/MSO.h deleted file mode 100644 index 7add7d6b..00000000 --- a/thirdparty/microsoft/ppt/include/MSO.h +++ /dev/null @@ -1,33554 +0,0 @@ -/**************************************************************************** -** -** Namespace Office generated by dumpcpp from type library -** c:\Program Files\Common Files\Microsoft Shared\OFFICE11\MSO.DLL -** -****************************************************************************/ - -#ifndef QAX_DUMPCPP_OFFICE_H -#define QAX_DUMPCPP_OFFICE_H - -// Define this symbol to __declspec(dllexport) or __declspec(dllimport) -#ifndef OFFICE_EXPORT -#define OFFICE_EXPORT -#endif - -#include -#include -#include -#include - -struct IDispatch; - - -// Referenced namespace - -namespace Office { - - enum DocProperties { - offPropertyTypeNumber = 1, - offPropertyTypeBoolean = 2, - offPropertyTypeDate = 3, - offPropertyTypeString = 4, - offPropertyTypeFloat = 5 - }; - - enum MailFormat { - mfPlainText = 1, - mfHTML = 2, - mfRTF = 3 - }; - - enum MsoAlertButtonType { - msoAlertButtonOK = 0, - msoAlertButtonOKCancel = 1, - msoAlertButtonAbortRetryIgnore= 2, - msoAlertButtonYesNoCancel= 3, - msoAlertButtonYesNo = 4, - msoAlertButtonRetryCancel= 5, - msoAlertButtonYesAllNoCancel= 6 - }; - - enum MsoAlertCancelType { - msoAlertCancelDefault = -1, - msoAlertCancelFirst = 0, - msoAlertCancelSecond = 1, - msoAlertCancelThird = 2, - msoAlertCancelFourth = 3, - msoAlertCancelFifth = 4 - }; - - enum MsoAlertDefaultType { - msoAlertDefaultFirst = 0, - msoAlertDefaultSecond = 1, - msoAlertDefaultThird = 2, - msoAlertDefaultFourth = 3, - msoAlertDefaultFifth = 4 - }; - - enum MsoAlertIconType { - msoAlertIconNoIcon = 0, - msoAlertIconCritical = 1, - msoAlertIconQuery = 2, - msoAlertIconWarning = 3, - msoAlertIconInfo = 4 - }; - - enum MsoAlignCmd { - msoAlignLefts = 0, - msoAlignCenters = 1, - msoAlignRights = 2, - msoAlignTops = 3, - msoAlignMiddles = 4, - msoAlignBottoms = 5 - }; - - enum MsoAnimationType { - msoAnimationIdle = 1, - msoAnimationGreeting = 2, - msoAnimationGoodbye = 3, - msoAnimationBeginSpeaking= 4, - msoAnimationRestPose = 5, - msoAnimationCharacterSuccessMajor= 6, - msoAnimationGetAttentionMajor= 11, - msoAnimationGetAttentionMinor= 12, - msoAnimationSearching = 13, - msoAnimationPrinting = 18, - msoAnimationGestureRight= 19, - msoAnimationWritingNotingSomething= 22, - msoAnimationWorkingAtSomething= 23, - msoAnimationThinking = 24, - msoAnimationSendingMail = 25, - msoAnimationListensToComputer= 26, - msoAnimationDisappear = 31, - msoAnimationAppear = 32, - msoAnimationGetArtsy = 100, - msoAnimationGetTechy = 101, - msoAnimationGetWizardy = 102, - msoAnimationCheckingSomething= 103, - msoAnimationLookDown = 104, - msoAnimationLookDownLeft= 105, - msoAnimationLookDownRight= 106, - msoAnimationLookLeft = 107, - msoAnimationLookRight = 108, - msoAnimationLookUp = 109, - msoAnimationLookUpLeft = 110, - msoAnimationLookUpRight = 111, - msoAnimationSaving = 112, - msoAnimationGestureDown = 113, - msoAnimationGestureLeft = 114, - msoAnimationGestureUp = 115, - msoAnimationEmptyTrash = 116 - }; - - enum MsoAppLanguageID { - msoLanguageIDInstall = 1, - msoLanguageIDUI = 2, - msoLanguageIDHelp = 3, - msoLanguageIDExeMode = 4, - msoLanguageIDUIPrevious = 5 - }; - - enum MsoArrowheadLength { - msoArrowheadLengthMixed = -2, - msoArrowheadShort = 1, - msoArrowheadLengthMedium= 2, - msoArrowheadLong = 3 - }; - - enum MsoArrowheadStyle { - msoArrowheadStyleMixed = -2, - msoArrowheadNone = 1, - msoArrowheadTriangle = 2, - msoArrowheadOpen = 3, - msoArrowheadStealth = 4, - msoArrowheadDiamond = 5, - msoArrowheadOval = 6 - }; - - enum MsoArrowheadWidth { - msoArrowheadWidthMixed = -2, - msoArrowheadNarrow = 1, - msoArrowheadWidthMedium = 2, - msoArrowheadWide = 3 - }; - - enum MsoAutoShapeType { - msoShapeMixed = -2, - msoShapeRectangle = 1, - msoShapeParallelogram = 2, - msoShapeTrapezoid = 3, - msoShapeDiamond = 4, - msoShapeRoundedRectangle= 5, - msoShapeOctagon = 6, - msoShapeIsoscelesTriangle= 7, - msoShapeRightTriangle = 8, - msoShapeOval = 9, - msoShapeHexagon = 10, - msoShapeCross = 11, - msoShapeRegularPentagon = 12, - msoShapeCan = 13, - msoShapeCube = 14, - msoShapeBevel = 15, - msoShapeFoldedCorner = 16, - msoShapeSmileyFace = 17, - msoShapeDonut = 18, - msoShapeNoSymbol = 19, - msoShapeBlockArc = 20, - msoShapeHeart = 21, - msoShapeLightningBolt = 22, - msoShapeSun = 23, - msoShapeMoon = 24, - msoShapeArc = 25, - msoShapeDoubleBracket = 26, - msoShapeDoubleBrace = 27, - msoShapePlaque = 28, - msoShapeLeftBracket = 29, - msoShapeRightBracket = 30, - msoShapeLeftBrace = 31, - msoShapeRightBrace = 32, - msoShapeRightArrow = 33, - msoShapeLeftArrow = 34, - msoShapeUpArrow = 35, - msoShapeDownArrow = 36, - msoShapeLeftRightArrow = 37, - msoShapeUpDownArrow = 38, - msoShapeQuadArrow = 39, - msoShapeLeftRightUpArrow= 40, - msoShapeBentArrow = 41, - msoShapeUTurnArrow = 42, - msoShapeLeftUpArrow = 43, - msoShapeBentUpArrow = 44, - msoShapeCurvedRightArrow= 45, - msoShapeCurvedLeftArrow = 46, - msoShapeCurvedUpArrow = 47, - msoShapeCurvedDownArrow = 48, - msoShapeStripedRightArrow= 49, - msoShapeNotchedRightArrow= 50, - msoShapePentagon = 51, - msoShapeChevron = 52, - msoShapeRightArrowCallout= 53, - msoShapeLeftArrowCallout= 54, - msoShapeUpArrowCallout = 55, - msoShapeDownArrowCallout= 56, - msoShapeLeftRightArrowCallout= 57, - msoShapeUpDownArrowCallout= 58, - msoShapeQuadArrowCallout= 59, - msoShapeCircularArrow = 60, - msoShapeFlowchartProcess= 61, - msoShapeFlowchartAlternateProcess= 62, - msoShapeFlowchartDecision= 63, - msoShapeFlowchartData = 64, - msoShapeFlowchartPredefinedProcess= 65, - msoShapeFlowchartInternalStorage= 66, - msoShapeFlowchartDocument= 67, - msoShapeFlowchartMultidocument= 68, - msoShapeFlowchartTerminator= 69, - msoShapeFlowchartPreparation= 70, - msoShapeFlowchartManualInput= 71, - msoShapeFlowchartManualOperation= 72, - msoShapeFlowchartConnector= 73, - msoShapeFlowchartOffpageConnector= 74, - msoShapeFlowchartCard = 75, - msoShapeFlowchartPunchedTape= 76, - msoShapeFlowchartSummingJunction= 77, - msoShapeFlowchartOr = 78, - msoShapeFlowchartCollate= 79, - msoShapeFlowchartSort = 80, - msoShapeFlowchartExtract= 81, - msoShapeFlowchartMerge = 82, - msoShapeFlowchartStoredData= 83, - msoShapeFlowchartDelay = 84, - msoShapeFlowchartSequentialAccessStorage= 85, - msoShapeFlowchartMagneticDisk= 86, - msoShapeFlowchartDirectAccessStorage= 87, - msoShapeFlowchartDisplay= 88, - msoShapeExplosion1 = 89, - msoShapeExplosion2 = 90, - msoShape4pointStar = 91, - msoShape5pointStar = 92, - msoShape8pointStar = 93, - msoShape16pointStar = 94, - msoShape24pointStar = 95, - msoShape32pointStar = 96, - msoShapeUpRibbon = 97, - msoShapeDownRibbon = 98, - msoShapeCurvedUpRibbon = 99, - msoShapeCurvedDownRibbon= 100, - msoShapeVerticalScroll = 101, - msoShapeHorizontalScroll= 102, - msoShapeWave = 103, - msoShapeDoubleWave = 104, - msoShapeRectangularCallout= 105, - msoShapeRoundedRectangularCallout= 106, - msoShapeOvalCallout = 107, - msoShapeCloudCallout = 108, - msoShapeLineCallout1 = 109, - msoShapeLineCallout2 = 110, - msoShapeLineCallout3 = 111, - msoShapeLineCallout4 = 112, - msoShapeLineCallout1AccentBar= 113, - msoShapeLineCallout2AccentBar= 114, - msoShapeLineCallout3AccentBar= 115, - msoShapeLineCallout4AccentBar= 116, - msoShapeLineCallout1NoBorder= 117, - msoShapeLineCallout2NoBorder= 118, - msoShapeLineCallout3NoBorder= 119, - msoShapeLineCallout4NoBorder= 120, - msoShapeLineCallout1BorderandAccentBar= 121, - msoShapeLineCallout2BorderandAccentBar= 122, - msoShapeLineCallout3BorderandAccentBar= 123, - msoShapeLineCallout4BorderandAccentBar= 124, - msoShapeActionButtonCustom= 125, - msoShapeActionButtonHome= 126, - msoShapeActionButtonHelp= 127, - msoShapeActionButtonInformation= 128, - msoShapeActionButtonBackorPrevious= 129, - msoShapeActionButtonForwardorNext= 130, - msoShapeActionButtonBeginning= 131, - msoShapeActionButtonEnd = 132, - msoShapeActionButtonReturn= 133, - msoShapeActionButtonDocument= 134, - msoShapeActionButtonSound= 135, - msoShapeActionButtonMovie= 136, - msoShapeBalloon = 137, - msoShapeNotPrimitive = 138 - }; - - enum MsoAutomationSecurity { - msoAutomationSecurityLow= 1, - msoAutomationSecurityByUI= 2, - msoAutomationSecurityForceDisable= 3 - }; - - enum MsoBalloonButtonType { - msoBalloonButtonYesToAll= -15, - msoBalloonButtonOptions = -14, - msoBalloonButtonTips = -13, - msoBalloonButtonClose = -12, - msoBalloonButtonSnooze = -11, - msoBalloonButtonSearch = -10, - msoBalloonButtonIgnore = -9, - msoBalloonButtonAbort = -8, - msoBalloonButtonRetry = -7, - msoBalloonButtonNext = -6, - msoBalloonButtonBack = -5, - msoBalloonButtonNo = -4, - msoBalloonButtonYes = -3, - msoBalloonButtonCancel = -2, - msoBalloonButtonOK = -1, - msoBalloonButtonNull = 0 - }; - - enum MsoBalloonErrorType { - msoBalloonErrorNone = 0, - msoBalloonErrorOther = 1, - msoBalloonErrorTooBig = 2, - msoBalloonErrorOutOfMemory= 3, - msoBalloonErrorBadPictureRef= 4, - msoBalloonErrorBadReference= 5, - msoBalloonErrorButtonlessModal= 6, - msoBalloonErrorButtonModeless= 7, - msoBalloonErrorBadCharacter= 8, - msoBalloonErrorCOMFailure= 9, - msoBalloonErrorCharNotTopmostForModal= 10, - msoBalloonErrorTooManyControls= 11 - }; - - enum MsoBalloonType { - msoBalloonTypeButtons = 0, - msoBalloonTypeBullets = 1, - msoBalloonTypeNumbers = 2 - }; - - enum MsoBarPosition { - msoBarLeft = 0, - msoBarTop = 1, - msoBarRight = 2, - msoBarBottom = 3, - msoBarFloating = 4, - msoBarPopup = 5, - msoBarMenuBar = 6 - }; - - enum MsoBarProtection { - msoBarNoProtection = 0, - msoBarNoCustomize = 1, - msoBarNoResize = 2, - msoBarNoMove = 4, - msoBarNoChangeVisible = 8, - msoBarNoChangeDock = 16, - msoBarNoVerticalDock = 32, - msoBarNoHorizontalDock = 64 - }; - - enum MsoBarRow { - msoBarRowFirst = 0, - msoBarRowLast = -1 - }; - - enum MsoBarType { - msoBarTypeNormal = 0, - msoBarTypeMenuBar = 1, - msoBarTypePopup = 2 - }; - - enum MsoBlackWhiteMode { - msoBlackWhiteMixed = -2, - msoBlackWhiteAutomatic = 1, - msoBlackWhiteGrayScale = 2, - msoBlackWhiteLightGrayScale= 3, - msoBlackWhiteInverseGrayScale= 4, - msoBlackWhiteGrayOutline= 5, - msoBlackWhiteBlackTextAndLine= 6, - msoBlackWhiteHighContrast= 7, - msoBlackWhiteBlack = 8, - msoBlackWhiteWhite = 9, - msoBlackWhiteDontShow = 10 - }; - - enum MsoButtonSetType { - msoButtonSetNone = 0, - msoButtonSetOK = 1, - msoButtonSetCancel = 2, - msoButtonSetOkCancel = 3, - msoButtonSetYesNo = 4, - msoButtonSetYesNoCancel = 5, - msoButtonSetBackClose = 6, - msoButtonSetNextClose = 7, - msoButtonSetBackNextClose= 8, - msoButtonSetRetryCancel = 9, - msoButtonSetAbortRetryIgnore= 10, - msoButtonSetSearchClose = 11, - msoButtonSetBackNextSnooze= 12, - msoButtonSetTipsOptionsClose= 13, - msoButtonSetYesAllNoCancel= 14 - }; - - enum MsoButtonState { - msoButtonUp = 0, - msoButtonDown = -1, - msoButtonMixed = 2 - }; - - enum MsoButtonStyle { - msoButtonAutomatic = 0, - msoButtonIcon = 1, - msoButtonCaption = 2, - msoButtonIconAndCaption = 3, - msoButtonIconAndWrapCaption= 7, - msoButtonIconAndCaptionBelow= 11, - msoButtonWrapCaption = 14, - msoButtonIconAndWrapCaptionBelow= 15 - }; - - enum MsoButtonStyleHidden { - msoButtonWrapText = 4, - msoButtonTextBelow = 8 - }; - - enum MsoCalloutAngleType { - msoCalloutAngleMixed = -2, - msoCalloutAngleAutomatic= 1, - msoCalloutAngle30 = 2, - msoCalloutAngle45 = 3, - msoCalloutAngle60 = 4, - msoCalloutAngle90 = 5 - }; - - enum MsoCalloutDropType { - msoCalloutDropMixed = -2, - msoCalloutDropCustom = 1, - msoCalloutDropTop = 2, - msoCalloutDropCenter = 3, - msoCalloutDropBottom = 4 - }; - - enum MsoCalloutType { - msoCalloutMixed = -2, - msoCalloutOne = 1, - msoCalloutTwo = 2, - msoCalloutThree = 3, - msoCalloutFour = 4 - }; - - enum MsoCharacterSet { - msoCharacterSetArabic = 1, - msoCharacterSetCyrillic = 2, - msoCharacterSetEnglishWesternEuropeanOtherLatinScript= 3, - msoCharacterSetGreek = 4, - msoCharacterSetHebrew = 5, - msoCharacterSetJapanese = 6, - msoCharacterSetKorean = 7, - msoCharacterSetMultilingualUnicode= 8, - msoCharacterSetSimplifiedChinese= 9, - msoCharacterSetThai = 10, - msoCharacterSetTraditionalChinese= 11, - msoCharacterSetVietnamese= 12 - }; - - enum MsoColorType { - msoColorTypeMixed = -2, - msoColorTypeRGB = 1, - msoColorTypeScheme = 2, - msoColorTypeCMYK = 3, - msoColorTypeCMS = 4, - msoColorTypeInk = 5 - }; - - enum MsoComboStyle { - msoComboNormal = 0, - msoComboLabel = 1 - }; - - enum MsoCommandBarButtonHyperlinkType { - msoCommandBarButtonHyperlinkNone= 0, - msoCommandBarButtonHyperlinkOpen= 1, - msoCommandBarButtonHyperlinkInsertPicture= 2 - }; - - enum MsoCondition { - msoConditionFileTypeAllFiles= 1, - msoConditionFileTypeOfficeFiles= 2, - msoConditionFileTypeWordDocuments= 3, - msoConditionFileTypeExcelWorkbooks= 4, - msoConditionFileTypePowerPointPresentations= 5, - msoConditionFileTypeBinders= 6, - msoConditionFileTypeDatabases= 7, - msoConditionFileTypeTemplates= 8, - msoConditionIncludes = 9, - msoConditionIncludesPhrase= 10, - msoConditionBeginsWith = 11, - msoConditionEndsWith = 12, - msoConditionIncludesNearEachOther= 13, - msoConditionIsExactly = 14, - msoConditionIsNot = 15, - msoConditionYesterday = 16, - msoConditionToday = 17, - msoConditionTomorrow = 18, - msoConditionLastWeek = 19, - msoConditionThisWeek = 20, - msoConditionNextWeek = 21, - msoConditionLastMonth = 22, - msoConditionThisMonth = 23, - msoConditionNextMonth = 24, - msoConditionAnytime = 25, - msoConditionAnytimeBetween= 26, - msoConditionOn = 27, - msoConditionOnOrAfter = 28, - msoConditionOnOrBefore = 29, - msoConditionInTheNext = 30, - msoConditionInTheLast = 31, - msoConditionEquals = 32, - msoConditionDoesNotEqual= 33, - msoConditionAnyNumberBetween= 34, - msoConditionAtMost = 35, - msoConditionAtLeast = 36, - msoConditionMoreThan = 37, - msoConditionLessThan = 38, - msoConditionIsYes = 39, - msoConditionIsNo = 40, - msoConditionIncludesFormsOf= 41, - msoConditionFreeText = 42, - msoConditionFileTypeOutlookItems= 43, - msoConditionFileTypeMailItem= 44, - msoConditionFileTypeCalendarItem= 45, - msoConditionFileTypeContactItem= 46, - msoConditionFileTypeNoteItem= 47, - msoConditionFileTypeJournalItem= 48, - msoConditionFileTypeTaskItem= 49, - msoConditionFileTypePhotoDrawFiles= 50, - msoConditionFileTypeDataConnectionFiles= 51, - msoConditionFileTypePublisherFiles= 52, - msoConditionFileTypeProjectFiles= 53, - msoConditionFileTypeDocumentImagingFiles= 54, - msoConditionFileTypeVisioFiles= 55, - msoConditionFileTypeDesignerFiles= 56, - msoConditionFileTypeWebPages= 57, - msoConditionEqualsLow = 58, - msoConditionEqualsNormal= 59, - msoConditionEqualsHigh = 60, - msoConditionNotEqualToLow= 61, - msoConditionNotEqualToNormal= 62, - msoConditionNotEqualToHigh= 63, - msoConditionEqualsNotStarted= 64, - msoConditionEqualsInProgress= 65, - msoConditionEqualsCompleted= 66, - msoConditionEqualsWaitingForSomeoneElse= 67, - msoConditionEqualsDeferred= 68, - msoConditionNotEqualToNotStarted= 69, - msoConditionNotEqualToInProgress= 70, - msoConditionNotEqualToCompleted= 71, - msoConditionNotEqualToWaitingForSomeoneElse= 72, - msoConditionNotEqualToDeferred= 73 - }; - - enum MsoConnector { - msoConnectorAnd = 1, - msoConnectorOr = 2 - }; - - enum MsoConnectorType { - msoConnectorTypeMixed = -2, - msoConnectorStraight = 1, - msoConnectorElbow = 2, - msoConnectorCurve = 3 - }; - - enum MsoControlOLEUsage { - msoControlOLEUsageNeither= 0, - msoControlOLEUsageServer= 1, - msoControlOLEUsageClient= 2, - msoControlOLEUsageBoth = 3 - }; - - enum MsoControlType { - msoControlCustom = 0, - msoControlButton = 1, - msoControlEdit = 2, - msoControlDropdown = 3, - msoControlComboBox = 4, - msoControlButtonDropdown= 5, - msoControlSplitDropdown = 6, - msoControlOCXDropdown = 7, - msoControlGenericDropdown= 8, - msoControlGraphicDropdown= 9, - msoControlPopup = 10, - msoControlGraphicPopup = 11, - msoControlButtonPopup = 12, - msoControlSplitButtonPopup= 13, - msoControlSplitButtonMRUPopup= 14, - msoControlLabel = 15, - msoControlExpandingGrid = 16, - msoControlSplitExpandingGrid= 17, - msoControlGrid = 18, - msoControlGauge = 19, - msoControlGraphicCombo = 20, - msoControlPane = 21, - msoControlActiveX = 22, - msoControlSpinner = 23, - msoControlLabelEx = 24, - msoControlWorkPane = 25, - msoControlAutoCompleteCombo= 26 - }; - - enum MsoDiagramNodeType { - msoDiagramNode = 1, - msoDiagramAssistant = 2 - }; - - enum MsoDiagramType { - msoDiagramMixed = -2, - msoDiagramOrgChart = 1, - msoDiagramCycle = 2, - msoDiagramRadial = 3, - msoDiagramPyramid = 4, - msoDiagramVenn = 5, - msoDiagramTarget = 6 - }; - - enum MsoDistributeCmd { - msoDistributeHorizontally= 0, - msoDistributeVertically = 1 - }; - - enum MsoDocProperties { - msoPropertyTypeNumber = 1, - msoPropertyTypeBoolean = 2, - msoPropertyTypeDate = 3, - msoPropertyTypeString = 4, - msoPropertyTypeFloat = 5 - }; - - enum MsoEditingType { - msoEditingAuto = 0, - msoEditingCorner = 1, - msoEditingSmooth = 2, - msoEditingSymmetric = 3 - }; - - enum MsoEncoding { - msoEncodingThai = 874, - msoEncodingJapaneseShiftJIS= 932, - msoEncodingSimplifiedChineseGBK= 936, - msoEncodingKorean = 949, - msoEncodingTraditionalChineseBig5= 950, - msoEncodingUnicodeLittleEndian= 1200, - msoEncodingUnicodeBigEndian= 1201, - msoEncodingCentralEuropean= 1250, - msoEncodingCyrillic = 1251, - msoEncodingWestern = 1252, - msoEncodingGreek = 1253, - msoEncodingTurkish = 1254, - msoEncodingHebrew = 1255, - msoEncodingArabic = 1256, - msoEncodingBaltic = 1257, - msoEncodingVietnamese = 1258, - msoEncodingAutoDetect = 50001, - msoEncodingJapaneseAutoDetect= 50932, - msoEncodingSimplifiedChineseAutoDetect= 50936, - msoEncodingKoreanAutoDetect= 50949, - msoEncodingTraditionalChineseAutoDetect= 50950, - msoEncodingCyrillicAutoDetect= 51251, - msoEncodingGreekAutoDetect= 51253, - msoEncodingArabicAutoDetect= 51256, - msoEncodingISO88591Latin1= 28591, - msoEncodingISO88592CentralEurope= 28592, - msoEncodingISO88593Latin3= 28593, - msoEncodingISO88594Baltic= 28594, - msoEncodingISO88595Cyrillic= 28595, - msoEncodingISO88596Arabic= 28596, - msoEncodingISO88597Greek= 28597, - msoEncodingISO88598Hebrew= 28598, - msoEncodingISO88599Turkish= 28599, - msoEncodingISO885915Latin9= 28605, - msoEncodingISO88598HebrewLogical= 38598, - msoEncodingISO2022JPNoHalfwidthKatakana= 50220, - msoEncodingISO2022JPJISX02021984= 50221, - msoEncodingISO2022JPJISX02011989= 50222, - msoEncodingISO2022KR = 50225, - msoEncodingISO2022CNTraditionalChinese= 50227, - msoEncodingISO2022CNSimplifiedChinese= 50229, - msoEncodingMacRoman = 10000, - msoEncodingMacJapanese = 10001, - msoEncodingMacTraditionalChineseBig5= 10002, - msoEncodingMacKorean = 10003, - msoEncodingMacArabic = 10004, - msoEncodingMacHebrew = 10005, - msoEncodingMacGreek1 = 10006, - msoEncodingMacCyrillic = 10007, - msoEncodingMacSimplifiedChineseGB2312= 10008, - msoEncodingMacRomania = 10010, - msoEncodingMacUkraine = 10017, - msoEncodingMacLatin2 = 10029, - msoEncodingMacIcelandic = 10079, - msoEncodingMacTurkish = 10081, - msoEncodingMacCroatia = 10082, - msoEncodingEBCDICUSCanada= 37, - msoEncodingEBCDICInternational= 500, - msoEncodingEBCDICMultilingualROECELatin2= 870, - msoEncodingEBCDICGreekModern= 875, - msoEncodingEBCDICTurkishLatin5= 1026, - msoEncodingEBCDICGermany= 20273, - msoEncodingEBCDICDenmarkNorway= 20277, - msoEncodingEBCDICFinlandSweden= 20278, - msoEncodingEBCDICItaly = 20280, - msoEncodingEBCDICLatinAmericaSpain= 20284, - msoEncodingEBCDICUnitedKingdom= 20285, - msoEncodingEBCDICJapaneseKatakanaExtended= 20290, - msoEncodingEBCDICFrance = 20297, - msoEncodingEBCDICArabic = 20420, - msoEncodingEBCDICGreek = 20423, - msoEncodingEBCDICHebrew = 20424, - msoEncodingEBCDICKoreanExtended= 20833, - msoEncodingEBCDICThai = 20838, - msoEncodingEBCDICIcelandic= 20871, - msoEncodingEBCDICTurkish= 20905, - msoEncodingEBCDICRussian= 20880, - msoEncodingEBCDICSerbianBulgarian= 21025, - msoEncodingEBCDICJapaneseKatakanaExtendedAndJapanese= 50930, - msoEncodingEBCDICUSCanadaAndJapanese= 50931, - msoEncodingEBCDICKoreanExtendedAndKorean= 50933, - msoEncodingEBCDICSimplifiedChineseExtendedAndSimplifiedChinese= 50935, - msoEncodingEBCDICUSCanadaAndTraditionalChinese= 50937, - msoEncodingEBCDICJapaneseLatinExtendedAndJapanese= 50939, - msoEncodingOEMUnitedStates= 437, - msoEncodingOEMGreek437G = 737, - msoEncodingOEMBaltic = 775, - msoEncodingOEMMultilingualLatinI= 850, - msoEncodingOEMMultilingualLatinII= 852, - msoEncodingOEMCyrillic = 855, - msoEncodingOEMTurkish = 857, - msoEncodingOEMPortuguese= 860, - msoEncodingOEMIcelandic = 861, - msoEncodingOEMHebrew = 862, - msoEncodingOEMCanadianFrench= 863, - msoEncodingOEMArabic = 864, - msoEncodingOEMNordic = 865, - msoEncodingOEMCyrillicII= 866, - msoEncodingOEMModernGreek= 869, - msoEncodingEUCJapanese = 51932, - msoEncodingEUCChineseSimplifiedChinese= 51936, - msoEncodingEUCKorean = 51949, - msoEncodingEUCTaiwaneseTraditionalChinese= 51950, - msoEncodingISCIIDevanagari= 57002, - msoEncodingISCIIBengali = 57003, - msoEncodingISCIITamil = 57004, - msoEncodingISCIITelugu = 57005, - msoEncodingISCIIAssamese= 57006, - msoEncodingISCIIOriya = 57007, - msoEncodingISCIIKannada = 57008, - msoEncodingISCIIMalayalam= 57009, - msoEncodingISCIIGujarati= 57010, - msoEncodingISCIIPunjabi = 57011, - msoEncodingArabicASMO = 708, - msoEncodingArabicTransparentASMO= 720, - msoEncodingKoreanJohab = 1361, - msoEncodingTaiwanCNS = 20000, - msoEncodingTaiwanTCA = 20001, - msoEncodingTaiwanEten = 20002, - msoEncodingTaiwanIBM5550= 20003, - msoEncodingTaiwanTeleText= 20004, - msoEncodingTaiwanWang = 20005, - msoEncodingIA5IRV = 20105, - msoEncodingIA5German = 20106, - msoEncodingIA5Swedish = 20107, - msoEncodingIA5Norwegian = 20108, - msoEncodingUSASCII = 20127, - msoEncodingT61 = 20261, - msoEncodingISO6937NonSpacingAccent= 20269, - msoEncodingKOI8R = 20866, - msoEncodingExtAlphaLowercase= 21027, - msoEncodingKOI8U = 21866, - msoEncodingEuropa3 = 29001, - msoEncodingHZGBSimplifiedChinese= 52936, - msoEncodingSimplifiedChineseGB18030= 54936, - msoEncodingUTF7 = 65000, - msoEncodingUTF8 = 65001 - }; - - enum MsoExtraInfoMethod { - msoMethodGet = 0, - msoMethodPost = 1 - }; - - enum MsoExtrusionColorType { - msoExtrusionColorTypeMixed= -2, - msoExtrusionColorAutomatic= 1, - msoExtrusionColorCustom = 2 - }; - - enum MsoFarEastLineBreakLanguageID { - MsoFarEastLineBreakLanguageJapanese= 1041, - MsoFarEastLineBreakLanguageKorean= 1042, - MsoFarEastLineBreakLanguageSimplifiedChinese= 2052, - MsoFarEastLineBreakLanguageTraditionalChinese= 1028 - }; - - enum MsoFeatureInstall { - msoFeatureInstallNone = 0, - msoFeatureInstallOnDemand= 1, - msoFeatureInstallOnDemandWithUI= 2 - }; - - enum MsoFileDialogType { - msoFileDialogOpen = 1, - msoFileDialogSaveAs = 2, - msoFileDialogFilePicker = 3, - msoFileDialogFolderPicker= 4 - }; - - enum MsoFileDialogView { - msoFileDialogViewList = 1, - msoFileDialogViewDetails= 2, - msoFileDialogViewProperties= 3, - msoFileDialogViewPreview= 4, - msoFileDialogViewThumbnail= 5, - msoFileDialogViewLargeIcons= 6, - msoFileDialogViewSmallIcons= 7, - msoFileDialogViewWebView= 8, - msoFileDialogViewTiles = 9 - }; - - enum MsoFileFindListBy { - msoListbyName = 1, - msoListbyTitle = 2 - }; - - enum MsoFileFindOptions { - msoOptionsNew = 1, - msoOptionsAdd = 2, - msoOptionsWithin = 3 - }; - - enum MsoFileFindSortBy { - msoFileFindSortbyAuthor = 1, - msoFileFindSortbyDateCreated= 2, - msoFileFindSortbyLastSavedBy= 3, - msoFileFindSortbyDateSaved= 4, - msoFileFindSortbyFileName= 5, - msoFileFindSortbySize = 6, - msoFileFindSortbyTitle = 7 - }; - - enum MsoFileFindView { - msoViewFileInfo = 1, - msoViewPreview = 2, - msoViewSummaryInfo = 3 - }; - - enum MsoFileNewAction { - msoEditFile = 0, - msoCreateNewFile = 1, - msoOpenFile = 2 - }; - - enum MsoFileNewSection { - msoOpenDocument = 0, - msoNew = 1, - msoNewfromExistingFile = 2, - msoNewfromTemplate = 3, - msoBottomSection = 4 - }; - - enum MsoFileType { - msoFileTypeAllFiles = 1, - msoFileTypeOfficeFiles = 2, - msoFileTypeWordDocuments= 3, - msoFileTypeExcelWorkbooks= 4, - msoFileTypePowerPointPresentations= 5, - msoFileTypeBinders = 6, - msoFileTypeDatabases = 7, - msoFileTypeTemplates = 8, - msoFileTypeOutlookItems = 9, - msoFileTypeMailItem = 10, - msoFileTypeCalendarItem = 11, - msoFileTypeContactItem = 12, - msoFileTypeNoteItem = 13, - msoFileTypeJournalItem = 14, - msoFileTypeTaskItem = 15, - msoFileTypePhotoDrawFiles= 16, - msoFileTypeDataConnectionFiles= 17, - msoFileTypePublisherFiles= 18, - msoFileTypeProjectFiles = 19, - msoFileTypeDocumentImagingFiles= 20, - msoFileTypeVisioFiles = 21, - msoFileTypeDesignerFiles= 22, - msoFileTypeWebPages = 23 - }; - - enum MsoFillType { - msoFillMixed = -2, - msoFillSolid = 1, - msoFillPatterned = 2, - msoFillGradient = 3, - msoFillTextured = 4, - msoFillBackground = 5, - msoFillPicture = 6 - }; - - enum MsoFilterComparison { - msoFilterComparisonEqual= 0, - msoFilterComparisonNotEqual= 1, - msoFilterComparisonLessThan= 2, - msoFilterComparisonGreaterThan= 3, - msoFilterComparisonLessThanEqual= 4, - msoFilterComparisonGreaterThanEqual= 5, - msoFilterComparisonIsBlank= 6, - msoFilterComparisonIsNotBlank= 7, - msoFilterComparisonContains= 8, - msoFilterComparisonNotContains= 9 - }; - - enum MsoFilterConjunction { - msoFilterConjunctionAnd = 0, - msoFilterConjunctionOr = 1 - }; - - enum MsoFlipCmd { - msoFlipHorizontal = 0, - msoFlipVertical = 1 - }; - - enum MsoGradientColorType { - msoGradientColorMixed = -2, - msoGradientOneColor = 1, - msoGradientTwoColors = 2, - msoGradientPresetColors = 3 - }; - - enum MsoGradientStyle { - msoGradientMixed = -2, - msoGradientHorizontal = 1, - msoGradientVertical = 2, - msoGradientDiagonalUp = 3, - msoGradientDiagonalDown = 4, - msoGradientFromCorner = 5, - msoGradientFromTitle = 6, - msoGradientFromCenter = 7 - }; - - enum MsoHTMLProjectOpen { - msoHTMLProjectOpenSourceView= 1, - msoHTMLProjectOpenTextView= 2 - }; - - enum MsoHTMLProjectState { - msoHTMLProjectStateDocumentLocked= 1, - msoHTMLProjectStateProjectLocked= 2, - msoHTMLProjectStateDocumentProjectUnlocked= 3 - }; - - enum MsoHorizontalAnchor { - msoHorizontalAnchorMixed= -2, - msoAnchorNone = 1, - msoAnchorCenter = 2 - }; - - enum MsoHyperlinkType { - msoHyperlinkRange = 0, - msoHyperlinkShape = 1, - msoHyperlinkInlineShape = 2 - }; - - enum MsoIconType { - msoIconNone = 0, - msoIconAlert = 2, - msoIconTip = 3, - msoIconAlertInfo = 4, - msoIconAlertWarning = 5, - msoIconAlertQuery = 6, - msoIconAlertCritical = 7 - }; - - enum MsoLanguageID { - msoLanguageIDMixed = -2, - msoLanguageIDNone = 0, - msoLanguageIDNoProofing = 1024, - msoLanguageIDAfrikaans = 1078, - msoLanguageIDAlbanian = 1052, - msoLanguageIDAmharic = 1118, - msoLanguageIDArabicAlgeria= 5121, - msoLanguageIDArabicBahrain= 15361, - msoLanguageIDArabicEgypt= 3073, - msoLanguageIDArabicIraq = 2049, - msoLanguageIDArabicJordan= 11265, - msoLanguageIDArabicKuwait= 13313, - msoLanguageIDArabicLebanon= 12289, - msoLanguageIDArabicLibya= 4097, - msoLanguageIDArabicMorocco= 6145, - msoLanguageIDArabicOman = 8193, - msoLanguageIDArabicQatar= 16385, - msoLanguageIDArabic = 1025, - msoLanguageIDArabicSyria= 10241, - msoLanguageIDArabicTunisia= 7169, - msoLanguageIDArabicUAE = 14337, - msoLanguageIDArabicYemen= 9217, - msoLanguageIDArmenian = 1067, - msoLanguageIDAssamese = 1101, - msoLanguageIDAzeriCyrillic= 2092, - msoLanguageIDAzeriLatin = 1068, - msoLanguageIDBasque = 1069, - msoLanguageIDByelorussian= 1059, - msoLanguageIDBengali = 1093, - msoLanguageIDBosnian = 4122, - msoLanguageIDBosnianBosniaHerzegovinaCyrillic= 8218, - msoLanguageIDBosnianBosniaHerzegovinaLatin= 5146, - msoLanguageIDBulgarian = 1026, - msoLanguageIDBurmese = 1109, - msoLanguageIDCatalan = 1027, - msoLanguageIDChineseHongKongSAR= 3076, - msoLanguageIDChineseMacaoSAR= 5124, - msoLanguageIDSimplifiedChinese= 2052, - msoLanguageIDChineseSingapore= 4100, - msoLanguageIDTraditionalChinese= 1028, - msoLanguageIDCherokee = 1116, - msoLanguageIDCroatian = 1050, - msoLanguageIDCzech = 1029, - msoLanguageIDDanish = 1030, - msoLanguageIDDivehi = 1125, - msoLanguageIDBelgianDutch= 2067, - msoLanguageIDDutch = 1043, - msoLanguageIDDzongkhaBhutan= 2129, - msoLanguageIDEdo = 1126, - msoLanguageIDEnglishAUS = 3081, - msoLanguageIDEnglishBelize= 10249, - msoLanguageIDEnglishCanadian= 4105, - msoLanguageIDEnglishCaribbean= 9225, - msoLanguageIDEnglishIndonesia= 14345, - msoLanguageIDEnglishIreland= 6153, - msoLanguageIDEnglishJamaica= 8201, - msoLanguageIDEnglishNewZealand= 5129, - msoLanguageIDEnglishPhilippines= 13321, - msoLanguageIDEnglishSouthAfrica= 7177, - msoLanguageIDEnglishTrinidadTobago= 11273, - msoLanguageIDEnglishUK = 2057, - msoLanguageIDEnglishUS = 1033, - msoLanguageIDEnglishZimbabwe= 12297, - msoLanguageIDEstonian = 1061, - msoLanguageIDFaeroese = 1080, - msoLanguageIDFarsi = 1065, - msoLanguageIDFilipino = 1124, - msoLanguageIDFinnish = 1035, - msoLanguageIDBelgianFrench= 2060, - msoLanguageIDFrenchCameroon= 11276, - msoLanguageIDFrenchCanadian= 3084, - msoLanguageIDFrenchCotedIvoire= 12300, - msoLanguageIDFrench = 1036, - msoLanguageIDFrenchHaiti= 15372, - msoLanguageIDFrenchLuxembourg= 5132, - msoLanguageIDFrenchMali = 13324, - msoLanguageIDFrenchMonaco= 6156, - msoLanguageIDFrenchMorocco= 14348, - msoLanguageIDFrenchReunion= 8204, - msoLanguageIDFrenchSenegal= 10252, - msoLanguageIDSwissFrench= 4108, - msoLanguageIDFrenchWestIndies= 7180, - msoLanguageIDFrenchZaire= 9228, - msoLanguageIDFrisianNetherlands= 1122, - msoLanguageIDFulfulde = 1127, - msoLanguageIDGaelicIreland= 2108, - msoLanguageIDGaelicScotland= 1084, - msoLanguageIDGalician = 1110, - msoLanguageIDGeorgian = 1079, - msoLanguageIDGermanAustria= 3079, - msoLanguageIDGerman = 1031, - msoLanguageIDGermanLiechtenstein= 5127, - msoLanguageIDGermanLuxembourg= 4103, - msoLanguageIDSwissGerman= 2055, - msoLanguageIDGreek = 1032, - msoLanguageIDGuarani = 1140, - msoLanguageIDGujarati = 1095, - msoLanguageIDHausa = 1128, - msoLanguageIDHawaiian = 1141, - msoLanguageIDHebrew = 1037, - msoLanguageIDHindi = 1081, - msoLanguageIDHungarian = 1038, - msoLanguageIDIbibio = 1129, - msoLanguageIDIcelandic = 1039, - msoLanguageIDIgbo = 1136, - msoLanguageIDIndonesian = 1057, - msoLanguageIDInuktitut = 1117, - msoLanguageIDItalian = 1040, - msoLanguageIDSwissItalian= 2064, - msoLanguageIDJapanese = 1041, - msoLanguageIDKannada = 1099, - msoLanguageIDKanuri = 1137, - msoLanguageIDKashmiri = 1120, - msoLanguageIDKashmiriDevanagari= 2144, - msoLanguageIDKazakh = 1087, - msoLanguageIDKhmer = 1107, - msoLanguageIDKirghiz = 1088, - msoLanguageIDKonkani = 1111, - msoLanguageIDKorean = 1042, - msoLanguageIDKyrgyz = 1088, - msoLanguageIDLatin = 1142, - msoLanguageIDLao = 1108, - msoLanguageIDLatvian = 1062, - msoLanguageIDLithuanian = 1063, - msoLanguageIDMacedonian = 1071, - msoLanguageIDMalaysian = 1086, - msoLanguageIDMalayBruneiDarussalam= 2110, - msoLanguageIDMalayalam = 1100, - msoLanguageIDMaltese = 1082, - msoLanguageIDManipuri = 1112, - msoLanguageIDMaori = 1153, - msoLanguageIDMarathi = 1102, - msoLanguageIDMongolian = 1104, - msoLanguageIDNepali = 1121, - msoLanguageIDNorwegianBokmol= 1044, - msoLanguageIDNorwegianNynorsk= 2068, - msoLanguageIDOriya = 1096, - msoLanguageIDOromo = 1138, - msoLanguageIDPashto = 1123, - msoLanguageIDPolish = 1045, - msoLanguageIDBrazilianPortuguese= 1046, - msoLanguageIDPortuguese = 2070, - msoLanguageIDPunjabi = 1094, - msoLanguageIDQuechuaBolivia= 1131, - msoLanguageIDQuechuaEcuador= 2155, - msoLanguageIDQuechuaPeru= 3179, - msoLanguageIDRhaetoRomanic= 1047, - msoLanguageIDRomanianMoldova= 2072, - msoLanguageIDRomanian = 1048, - msoLanguageIDRussianMoldova= 2073, - msoLanguageIDRussian = 1049, - msoLanguageIDSamiLappish= 1083, - msoLanguageIDSanskrit = 1103, - msoLanguageIDSepedi = 1132, - msoLanguageIDSerbianBosniaHerzegovinaCyrillic= 7194, - msoLanguageIDSerbianBosniaHerzegovinaLatin= 6170, - msoLanguageIDSerbianCyrillic= 3098, - msoLanguageIDSerbianLatin= 2074, - msoLanguageIDSesotho = 1072, - msoLanguageIDSindhi = 1113, - msoLanguageIDSindhiPakistan= 2137, - msoLanguageIDSinhalese = 1115, - msoLanguageIDSlovak = 1051, - msoLanguageIDSlovenian = 1060, - msoLanguageIDSomali = 1143, - msoLanguageIDSorbian = 1070, - msoLanguageIDSpanishArgentina= 11274, - msoLanguageIDSpanishBolivia= 16394, - msoLanguageIDSpanishChile= 13322, - msoLanguageIDSpanishColombia= 9226, - msoLanguageIDSpanishCostaRica= 5130, - msoLanguageIDSpanishDominicanRepublic= 7178, - msoLanguageIDSpanishEcuador= 12298, - msoLanguageIDSpanishElSalvador= 17418, - msoLanguageIDSpanishGuatemala= 4106, - msoLanguageIDSpanishHonduras= 18442, - msoLanguageIDMexicanSpanish= 2058, - msoLanguageIDSpanishNicaragua= 19466, - msoLanguageIDSpanishPanama= 6154, - msoLanguageIDSpanishParaguay= 15370, - msoLanguageIDSpanishPeru= 10250, - msoLanguageIDSpanishPuertoRico= 20490, - msoLanguageIDSpanishModernSort= 3082, - msoLanguageIDSpanish = 1034, - msoLanguageIDSpanishUruguay= 14346, - msoLanguageIDSpanishVenezuela= 8202, - msoLanguageIDSutu = 1072, - msoLanguageIDSwahili = 1089, - msoLanguageIDSwedishFinland= 2077, - msoLanguageIDSwedish = 1053, - msoLanguageIDSyriac = 1114, - msoLanguageIDTajik = 1064, - msoLanguageIDTamil = 1097, - msoLanguageIDTamazight = 1119, - msoLanguageIDTamazightLatin= 2143, - msoLanguageIDTatar = 1092, - msoLanguageIDTelugu = 1098, - msoLanguageIDThai = 1054, - msoLanguageIDTibetan = 1105, - msoLanguageIDTigrignaEthiopic= 1139, - msoLanguageIDTigrignaEritrea= 2163, - msoLanguageIDTsonga = 1073, - msoLanguageIDTswana = 1074, - msoLanguageIDTurkish = 1055, - msoLanguageIDTurkmen = 1090, - msoLanguageIDUkrainian = 1058, - msoLanguageIDUrdu = 1056, - msoLanguageIDUzbekCyrillic= 2115, - msoLanguageIDUzbekLatin = 1091, - msoLanguageIDVenda = 1075, - msoLanguageIDVietnamese = 1066, - msoLanguageIDWelsh = 1106, - msoLanguageIDXhosa = 1076, - msoLanguageIDYi = 1144, - msoLanguageIDYiddish = 1085, - msoLanguageIDYoruba = 1130, - msoLanguageIDZulu = 1077 - }; - - enum MsoLanguageIDHidden { - msoLanguageIDChineseHongKong= 3076, - msoLanguageIDChineseMacao= 5124, - msoLanguageIDEnglishTrinidad= 11273 - }; - - enum MsoLastModified { - msoLastModifiedYesterday= 1, - msoLastModifiedToday = 2, - msoLastModifiedLastWeek = 3, - msoLastModifiedThisWeek = 4, - msoLastModifiedLastMonth= 5, - msoLastModifiedThisMonth= 6, - msoLastModifiedAnyTime = 7 - }; - - enum MsoLineDashStyle { - msoLineDashStyleMixed = -2, - msoLineSolid = 1, - msoLineSquareDot = 2, - msoLineRoundDot = 3, - msoLineDash = 4, - msoLineDashDot = 5, - msoLineDashDotDot = 6, - msoLineLongDash = 7, - msoLineLongDashDot = 8 - }; - - enum MsoLineStyle { - msoLineStyleMixed = -2, - msoLineSingle = 1, - msoLineThinThin = 2, - msoLineThinThick = 3, - msoLineThickThin = 4, - msoLineThickBetweenThin = 5 - }; - - enum MsoMenuAnimation { - msoMenuAnimationNone = 0, - msoMenuAnimationRandom = 1, - msoMenuAnimationUnfold = 2, - msoMenuAnimationSlide = 3 - }; - - enum MsoMixedType { - msoIntegerMixed = 32768, - msoSingleMixed = -2147483648 - }; - - enum MsoModeType { - msoModeModal = 0, - msoModeAutoDown = 1, - msoModeModeless = 2 - }; - - enum MsoMoveRow { - msoMoveRowFirst = -4, - msoMoveRowPrev = -3, - msoMoveRowNext = -2, - msoMoveRowNbr = -1 - }; - - enum MsoOLEMenuGroup { - msoOLEMenuGroupNone = -1, - msoOLEMenuGroupFile = 0, - msoOLEMenuGroupEdit = 1, - msoOLEMenuGroupContainer= 2, - msoOLEMenuGroupObject = 3, - msoOLEMenuGroupWindow = 4, - msoOLEMenuGroupHelp = 5 - }; - - enum MsoOrgChartLayoutType { - msoOrgChartLayoutMixed = -2, - msoOrgChartLayoutStandard= 1, - msoOrgChartLayoutBothHanging= 2, - msoOrgChartLayoutLeftHanging= 3, - msoOrgChartLayoutRightHanging= 4 - }; - - enum MsoOrgChartOrientation { - msoOrgChartOrientationMixed= -2, - msoOrgChartOrientationVertical= 1 - }; - - enum MsoOrientation { - msoOrientationMixed = -2, - msoOrientationHorizontal= 1, - msoOrientationVertical = 2 - }; - - enum MsoPatternType { - msoPatternMixed = -2, - msoPattern5Percent = 1, - msoPattern10Percent = 2, - msoPattern20Percent = 3, - msoPattern25Percent = 4, - msoPattern30Percent = 5, - msoPattern40Percent = 6, - msoPattern50Percent = 7, - msoPattern60Percent = 8, - msoPattern70Percent = 9, - msoPattern75Percent = 10, - msoPattern80Percent = 11, - msoPattern90Percent = 12, - msoPatternDarkHorizontal= 13, - msoPatternDarkVertical = 14, - msoPatternDarkDownwardDiagonal= 15, - msoPatternDarkUpwardDiagonal= 16, - msoPatternSmallCheckerBoard= 17, - msoPatternTrellis = 18, - msoPatternLightHorizontal= 19, - msoPatternLightVertical = 20, - msoPatternLightDownwardDiagonal= 21, - msoPatternLightUpwardDiagonal= 22, - msoPatternSmallGrid = 23, - msoPatternDottedDiamond = 24, - msoPatternWideDownwardDiagonal= 25, - msoPatternWideUpwardDiagonal= 26, - msoPatternDashedUpwardDiagonal= 27, - msoPatternDashedDownwardDiagonal= 28, - msoPatternNarrowVertical= 29, - msoPatternNarrowHorizontal= 30, - msoPatternDashedVertical= 31, - msoPatternDashedHorizontal= 32, - msoPatternLargeConfetti = 33, - msoPatternLargeGrid = 34, - msoPatternHorizontalBrick= 35, - msoPatternLargeCheckerBoard= 36, - msoPatternSmallConfetti = 37, - msoPatternZigZag = 38, - msoPatternSolidDiamond = 39, - msoPatternDiagonalBrick = 40, - msoPatternOutlinedDiamond= 41, - msoPatternPlaid = 42, - msoPatternSphere = 43, - msoPatternWeave = 44, - msoPatternDottedGrid = 45, - msoPatternDivot = 46, - msoPatternShingle = 47, - msoPatternWave = 48 - }; - - enum MsoPermission { - msoPermissionView = 1, - msoPermissionRead = 1, - msoPermissionEdit = 2, - msoPermissionSave = 4, - msoPermissionExtract = 8, - msoPermissionChange = 15, - msoPermissionPrint = 16, - msoPermissionObjModel = 32, - msoPermissionFullControl= 64 - }; - - enum MsoPictureColorType { - msoPictureMixed = -2, - msoPictureAutomatic = 1, - msoPictureGrayscale = 2, - msoPictureBlackAndWhite = 3, - msoPictureWatermark = 4 - }; - - enum MsoPresetExtrusionDirection { - msoPresetExtrusionDirectionMixed= -2, - msoExtrusionBottomRight = 1, - msoExtrusionBottom = 2, - msoExtrusionBottomLeft = 3, - msoExtrusionRight = 4, - msoExtrusionNone = 5, - msoExtrusionLeft = 6, - msoExtrusionTopRight = 7, - msoExtrusionTop = 8, - msoExtrusionTopLeft = 9 - }; - - enum MsoPresetGradientType { - msoPresetGradientMixed = -2, - msoGradientEarlySunset = 1, - msoGradientLateSunset = 2, - msoGradientNightfall = 3, - msoGradientDaybreak = 4, - msoGradientHorizon = 5, - msoGradientDesert = 6, - msoGradientOcean = 7, - msoGradientCalmWater = 8, - msoGradientFire = 9, - msoGradientFog = 10, - msoGradientMoss = 11, - msoGradientPeacock = 12, - msoGradientWheat = 13, - msoGradientParchment = 14, - msoGradientMahogany = 15, - msoGradientRainbow = 16, - msoGradientRainbowII = 17, - msoGradientGold = 18, - msoGradientGoldII = 19, - msoGradientBrass = 20, - msoGradientChrome = 21, - msoGradientChromeII = 22, - msoGradientSilver = 23, - msoGradientSapphire = 24 - }; - - enum MsoPresetLightingDirection { - msoPresetLightingDirectionMixed= -2, - msoLightingTopLeft = 1, - msoLightingTop = 2, - msoLightingTopRight = 3, - msoLightingLeft = 4, - msoLightingNone = 5, - msoLightingRight = 6, - msoLightingBottomLeft = 7, - msoLightingBottom = 8, - msoLightingBottomRight = 9 - }; - - enum MsoPresetLightingSoftness { - msoPresetLightingSoftnessMixed= -2, - msoLightingDim = 1, - msoLightingNormal = 2, - msoLightingBright = 3 - }; - - enum MsoPresetMaterial { - msoPresetMaterialMixed = -2, - msoMaterialMatte = 1, - msoMaterialPlastic = 2, - msoMaterialMetal = 3, - msoMaterialWireFrame = 4 - }; - - enum MsoPresetTextEffect { - msoTextEffectMixed = -2, - msoTextEffect1 = 0, - msoTextEffect2 = 1, - msoTextEffect3 = 2, - msoTextEffect4 = 3, - msoTextEffect5 = 4, - msoTextEffect6 = 5, - msoTextEffect7 = 6, - msoTextEffect8 = 7, - msoTextEffect9 = 8, - msoTextEffect10 = 9, - msoTextEffect11 = 10, - msoTextEffect12 = 11, - msoTextEffect13 = 12, - msoTextEffect14 = 13, - msoTextEffect15 = 14, - msoTextEffect16 = 15, - msoTextEffect17 = 16, - msoTextEffect18 = 17, - msoTextEffect19 = 18, - msoTextEffect20 = 19, - msoTextEffect21 = 20, - msoTextEffect22 = 21, - msoTextEffect23 = 22, - msoTextEffect24 = 23, - msoTextEffect25 = 24, - msoTextEffect26 = 25, - msoTextEffect27 = 26, - msoTextEffect28 = 27, - msoTextEffect29 = 28, - msoTextEffect30 = 29 - }; - - enum MsoPresetTextEffectShape { - msoTextEffectShapeMixed = -2, - msoTextEffectShapePlainText= 1, - msoTextEffectShapeStop = 2, - msoTextEffectShapeTriangleUp= 3, - msoTextEffectShapeTriangleDown= 4, - msoTextEffectShapeChevronUp= 5, - msoTextEffectShapeChevronDown= 6, - msoTextEffectShapeRingInside= 7, - msoTextEffectShapeRingOutside= 8, - msoTextEffectShapeArchUpCurve= 9, - msoTextEffectShapeArchDownCurve= 10, - msoTextEffectShapeCircleCurve= 11, - msoTextEffectShapeButtonCurve= 12, - msoTextEffectShapeArchUpPour= 13, - msoTextEffectShapeArchDownPour= 14, - msoTextEffectShapeCirclePour= 15, - msoTextEffectShapeButtonPour= 16, - msoTextEffectShapeCurveUp= 17, - msoTextEffectShapeCurveDown= 18, - msoTextEffectShapeCanUp = 19, - msoTextEffectShapeCanDown= 20, - msoTextEffectShapeWave1 = 21, - msoTextEffectShapeWave2 = 22, - msoTextEffectShapeDoubleWave1= 23, - msoTextEffectShapeDoubleWave2= 24, - msoTextEffectShapeInflate= 25, - msoTextEffectShapeDeflate= 26, - msoTextEffectShapeInflateBottom= 27, - msoTextEffectShapeDeflateBottom= 28, - msoTextEffectShapeInflateTop= 29, - msoTextEffectShapeDeflateTop= 30, - msoTextEffectShapeDeflateInflate= 31, - msoTextEffectShapeDeflateInflateDeflate= 32, - msoTextEffectShapeFadeRight= 33, - msoTextEffectShapeFadeLeft= 34, - msoTextEffectShapeFadeUp= 35, - msoTextEffectShapeFadeDown= 36, - msoTextEffectShapeSlantUp= 37, - msoTextEffectShapeSlantDown= 38, - msoTextEffectShapeCascadeUp= 39, - msoTextEffectShapeCascadeDown= 40 - }; - - enum MsoPresetTexture { - msoPresetTextureMixed = -2, - msoTexturePapyrus = 1, - msoTextureCanvas = 2, - msoTextureDenim = 3, - msoTextureWovenMat = 4, - msoTextureWaterDroplets = 5, - msoTexturePaperBag = 6, - msoTextureFishFossil = 7, - msoTextureSand = 8, - msoTextureGreenMarble = 9, - msoTextureWhiteMarble = 10, - msoTextureBrownMarble = 11, - msoTextureGranite = 12, - msoTextureNewsprint = 13, - msoTextureRecycledPaper = 14, - msoTextureParchment = 15, - msoTextureStationery = 16, - msoTextureBlueTissuePaper= 17, - msoTexturePinkTissuePaper= 18, - msoTexturePurpleMesh = 19, - msoTextureBouquet = 20, - msoTextureCork = 21, - msoTextureWalnut = 22, - msoTextureOak = 23, - msoTextureMediumWood = 24 - }; - - enum MsoPresetThreeDFormat { - msoPresetThreeDFormatMixed= -2, - msoThreeD1 = 1, - msoThreeD2 = 2, - msoThreeD3 = 3, - msoThreeD4 = 4, - msoThreeD5 = 5, - msoThreeD6 = 6, - msoThreeD7 = 7, - msoThreeD8 = 8, - msoThreeD9 = 9, - msoThreeD10 = 10, - msoThreeD11 = 11, - msoThreeD12 = 12, - msoThreeD13 = 13, - msoThreeD14 = 14, - msoThreeD15 = 15, - msoThreeD16 = 16, - msoThreeD17 = 17, - msoThreeD18 = 18, - msoThreeD19 = 19, - msoThreeD20 = 20 - }; - - enum MsoRelativeNodePosition { - msoBeforeNode = 1, - msoAfterNode = 2, - msoBeforeFirstSibling = 3, - msoAfterLastSibling = 4 - }; - - enum MsoScaleFrom { - msoScaleFromTopLeft = 0, - msoScaleFromMiddle = 1, - msoScaleFromBottomRight = 2 - }; - - enum MsoScreenSize { - msoScreenSize544x376 = 0, - msoScreenSize640x480 = 1, - msoScreenSize720x512 = 2, - msoScreenSize800x600 = 3, - msoScreenSize1024x768 = 4, - msoScreenSize1152x882 = 5, - msoScreenSize1152x900 = 6, - msoScreenSize1280x1024 = 7, - msoScreenSize1600x1200 = 8, - msoScreenSize1800x1440 = 9, - msoScreenSize1920x1200 = 10 - }; - - enum MsoScriptLanguage { - msoScriptLanguageJava = 1, - msoScriptLanguageVisualBasic= 2, - msoScriptLanguageASP = 3, - msoScriptLanguageOther = 4 - }; - - enum MsoScriptLocation { - msoScriptLocationInHead = 1, - msoScriptLocationInBody = 2 - }; - - enum MsoSearchIn { - msoSearchInMyComputer = 0, - msoSearchInOutlook = 1, - msoSearchInMyNetworkPlaces= 2, - msoSearchInCustom = 3 - }; - - enum MsoSegmentType { - msoSegmentLine = 0, - msoSegmentCurve = 1 - }; - - enum MsoShadowType { - msoShadowMixed = -2, - msoShadow1 = 1, - msoShadow2 = 2, - msoShadow3 = 3, - msoShadow4 = 4, - msoShadow5 = 5, - msoShadow6 = 6, - msoShadow7 = 7, - msoShadow8 = 8, - msoShadow9 = 9, - msoShadow10 = 10, - msoShadow11 = 11, - msoShadow12 = 12, - msoShadow13 = 13, - msoShadow14 = 14, - msoShadow15 = 15, - msoShadow16 = 16, - msoShadow17 = 17, - msoShadow18 = 18, - msoShadow19 = 19, - msoShadow20 = 20 - }; - - enum MsoShapeType { - msoShapeTypeMixed = -2, - msoAutoShape = 1, - msoCallout = 2, - msoChart = 3, - msoComment = 4, - msoFreeform = 5, - msoGroup = 6, - msoEmbeddedOLEObject = 7, - msoFormControl = 8, - msoLine = 9, - msoLinkedOLEObject = 10, - msoLinkedPicture = 11, - msoOLEControlObject = 12, - msoPicture = 13, - msoPlaceholder = 14, - msoTextEffect = 15, - msoMedia = 16, - msoTextBox = 17, - msoScriptAnchor = 18, - msoTable = 19, - msoCanvas = 20, - msoDiagram = 21, - msoInk = 22, - msoInkComment = 23 - }; - - enum MsoSharedWorkspaceTaskPriority { - msoSharedWorkspaceTaskPriorityHigh= 1, - msoSharedWorkspaceTaskPriorityNormal= 2, - msoSharedWorkspaceTaskPriorityLow= 3 - }; - - enum MsoSharedWorkspaceTaskStatus { - msoSharedWorkspaceTaskStatusNotStarted= 1, - msoSharedWorkspaceTaskStatusInProgress= 2, - msoSharedWorkspaceTaskStatusCompleted= 3, - msoSharedWorkspaceTaskStatusDeferred= 4, - msoSharedWorkspaceTaskStatusWaiting= 5 - }; - - enum MsoSortBy { - msoSortByFileName = 1, - msoSortBySize = 2, - msoSortByFileType = 3, - msoSortByLastModified = 4, - msoSortByNone = 5 - }; - - enum MsoSortOrder { - msoSortOrderAscending = 1, - msoSortOrderDescending = 2 - }; - - enum MsoSyncAvailableType { - msoSyncAvailableNone = 0, - msoSyncAvailableOffline = 1, - msoSyncAvailableAnywhere= 2 - }; - - enum MsoSyncCompareType { - msoSyncCompareAndMerge = 0, - msoSyncCompareSideBySide= 1 - }; - - enum MsoSyncConflictResolutionType { - msoSyncConflictClientWins= 0, - msoSyncConflictServerWins= 1, - msoSyncConflictMerge = 2 - }; - - enum MsoSyncErrorType { - msoSyncErrorNone = 0, - msoSyncErrorUnauthorizedUser= 1, - msoSyncErrorCouldNotConnect= 2, - msoSyncErrorOutOfSpace = 3, - msoSyncErrorFileNotFound= 4, - msoSyncErrorFileTooLarge= 5, - msoSyncErrorFileInUse = 6, - msoSyncErrorVirusUpload = 7, - msoSyncErrorVirusDownload= 8, - msoSyncErrorUnknownUpload= 9, - msoSyncErrorUnknownDownload= 10, - msoSyncErrorCouldNotOpen= 11, - msoSyncErrorCouldNotUpdate= 12, - msoSyncErrorCouldNotCompare= 13, - msoSyncErrorCouldNotResolve= 14, - msoSyncErrorNoNetwork = 15, - msoSyncErrorUnknown = 16 - }; - - enum MsoSyncEventType { - msoSyncEventDownloadInitiated= 0, - msoSyncEventDownloadSucceeded= 1, - msoSyncEventDownloadFailed= 2, - msoSyncEventUploadInitiated= 3, - msoSyncEventUploadSucceeded= 4, - msoSyncEventUploadFailed= 5, - msoSyncEventDownloadNoChange= 6, - msoSyncEventOffline = 7 - }; - - enum MsoSyncStatusType { - msoSyncStatusNoSharedWorkspace= 0, - msoSyncStatusLatest = 1, - msoSyncStatusNewerAvailable= 2, - msoSyncStatusLocalChanges= 3, - msoSyncStatusConflict = 4, - msoSyncStatusSuspended = 5, - msoSyncStatusError = 6 - }; - - enum MsoSyncVersionType { - msoSyncVersionLastViewed= 0, - msoSyncVersionServer = 1 - }; - - enum MsoTargetBrowser { - msoTargetBrowserV3 = 0, - msoTargetBrowserV4 = 1, - msoTargetBrowserIE4 = 2, - msoTargetBrowserIE5 = 3, - msoTargetBrowserIE6 = 4 - }; - - enum MsoTextEffectAlignment { - msoTextEffectAlignmentMixed= -2, - msoTextEffectAlignmentLeft= 1, - msoTextEffectAlignmentCentered= 2, - msoTextEffectAlignmentRight= 3, - msoTextEffectAlignmentLetterJustify= 4, - msoTextEffectAlignmentWordJustify= 5, - msoTextEffectAlignmentStretchJustify= 6 - }; - - enum MsoTextOrientation { - msoTextOrientationMixed = -2, - msoTextOrientationHorizontal= 1, - msoTextOrientationUpward= 2, - msoTextOrientationDownward= 3, - msoTextOrientationVerticalFarEast= 4, - msoTextOrientationVertical= 5, - msoTextOrientationHorizontalRotatedFarEast= 6 - }; - - enum MsoTextureType { - msoTextureTypeMixed = -2, - msoTexturePreset = 1, - msoTextureUserDefined = 2 - }; - - enum MsoTriState { - msoTrue = -1, - msoFalse = 0, - msoCTrue = 1, - msoTriStateToggle = -3, - msoTriStateMixed = -2 - }; - - enum MsoVerticalAnchor { - msoVerticalAnchorMixed = -2, - msoAnchorTop = 1, - msoAnchorTopBaseline = 2, - msoAnchorMiddle = 3, - msoAnchorBottom = 4, - msoAnchorBottomBaseLine = 5 - }; - - enum MsoWizardActType { - msoWizardActInactive = 0, - msoWizardActActive = 1, - msoWizardActSuspend = 2, - msoWizardActResume = 3 - }; - - enum MsoWizardMsgType { - msoWizardMsgLocalStateOn= 1, - msoWizardMsgLocalStateOff= 2, - msoWizardMsgShowHelp = 3, - msoWizardMsgSuspending = 4, - msoWizardMsgResuming = 5 - }; - - enum MsoZOrderCmd { - msoBringToFront = 0, - msoSendToBack = 1, - msoBringForward = 2, - msoSendBackward = 3, - msoBringInFrontOfText = 4, - msoSendBehindText = 5 - }; - -// forward declarations - enum MsoLineDashStyle; - enum MsoLineStyle; - enum MsoArrowheadStyle; - enum MsoArrowheadWidth; - enum MsoArrowheadLength; - enum MsoFillType; - enum MsoGradientStyle; - enum MsoGradientColorType; - enum MsoTextureType; - enum MsoPresetTexture; - enum MsoPatternType; - enum MsoPresetGradientType; - enum MsoShadowType; - enum MsoPresetTextEffect; - enum MsoPresetTextEffectShape; - enum MsoTextEffectAlignment; - enum MsoPresetLightingDirection; - enum MsoPresetLightingSoftness; - enum MsoPresetMaterial; - enum MsoPresetExtrusionDirection; - enum MsoPresetThreeDFormat; - enum MsoExtrusionColorType; - enum MsoAlignCmd; - enum MsoDistributeCmd; - enum MsoConnectorType; - enum MsoHorizontalAnchor; - enum MsoVerticalAnchor; - enum MsoOrientation; - enum MsoZOrderCmd; - enum MsoSegmentType; - enum MsoEditingType; - enum MsoAutoShapeType; - enum MsoShapeType; - enum MsoFlipCmd; - enum MsoTriState; - enum MsoColorType; - enum MsoPictureColorType; - enum MsoCalloutAngleType; - enum MsoCalloutDropType; - enum MsoCalloutType; - enum MsoBlackWhiteMode; - enum MsoMixedType; - enum MsoTextOrientation; - enum MsoScaleFrom; - enum MsoBarPosition; - enum MsoBarProtection; - enum MsoBarType; - enum MsoControlType; - enum MsoButtonState; - enum MsoControlOLEUsage; - enum MsoButtonStyleHidden; - enum MsoButtonStyle; - enum MsoComboStyle; - enum MsoOLEMenuGroup; - enum MsoMenuAnimation; - enum MsoBarRow; - enum MsoCommandBarButtonHyperlinkType; - enum MsoHyperlinkType; - enum MsoExtraInfoMethod; - enum MsoAnimationType; - enum MsoButtonSetType; - enum MsoIconType; - enum MsoBalloonType; - enum MsoModeType; - enum MsoBalloonErrorType; - enum MsoWizardActType; - enum MsoWizardMsgType; - enum MsoBalloonButtonType; - enum DocProperties; - enum MsoDocProperties; - enum MsoAppLanguageID; - enum MsoFarEastLineBreakLanguageID; - enum MsoFeatureInstall; - enum MsoScriptLanguage; - enum MsoScriptLocation; - class DocumentProperty; - class DocumentProperties; - enum MsoFileFindOptions; - enum MsoFileFindView; - enum MsoFileFindSortBy; - enum MsoFileFindListBy; - enum MsoLastModified; - enum MsoSortBy; - enum MsoSortOrder; - enum MsoConnector; - enum MsoCondition; - enum MsoFileType; - enum MsoLanguageID; - enum MsoScreenSize; - enum MsoCharacterSet; - enum MsoEncoding; - enum MsoHTMLProjectOpen; - enum MsoHTMLProjectState; - enum MsoFileDialogType; - enum MsoFileDialogView; - enum MsoAutomationSecurity; - enum MailFormat; - enum MsoAlertButtonType; - enum MsoAlertIconType; - enum MsoAlertDefaultType; - enum MsoAlertCancelType; - enum MsoSearchIn; - enum MsoTargetBrowser; - enum MsoOrgChartOrientation; - enum MsoOrgChartLayoutType; - enum MsoRelativeNodePosition; - enum MsoDiagramType; - enum MsoDiagramNodeType; - enum MsoMoveRow; - enum MsoFilterComparison; - enum MsoFilterConjunction; - enum MsoFileNewSection; - enum MsoFileNewAction; - enum MsoLanguageIDHidden; - enum MsoSharedWorkspaceTaskStatus; - enum MsoSharedWorkspaceTaskPriority; - enum MsoSyncVersionType; - enum MsoSyncConflictResolutionType; - enum MsoSyncCompareType; - enum MsoSyncAvailableType; - enum MsoSyncEventType; - enum MsoSyncErrorType; - enum MsoSyncStatusType; - enum MsoPermission; - enum MsoLineDashStyle; - enum MsoLineStyle; - enum MsoArrowheadStyle; - enum MsoArrowheadWidth; - enum MsoArrowheadLength; - enum MsoFillType; - enum MsoGradientStyle; - enum MsoGradientColorType; - enum MsoTextureType; - enum MsoPresetTexture; - enum MsoPatternType; - enum MsoPresetGradientType; - enum MsoShadowType; - enum MsoPresetTextEffect; - enum MsoPresetTextEffectShape; - enum MsoTextEffectAlignment; - enum MsoPresetLightingDirection; - enum MsoPresetLightingSoftness; - enum MsoPresetMaterial; - enum MsoPresetExtrusionDirection; - enum MsoPresetThreeDFormat; - enum MsoExtrusionColorType; - enum MsoAlignCmd; - enum MsoDistributeCmd; - enum MsoConnectorType; - enum MsoHorizontalAnchor; - enum MsoVerticalAnchor; - enum MsoOrientation; - enum MsoZOrderCmd; - enum MsoSegmentType; - enum MsoEditingType; - enum MsoAutoShapeType; - enum MsoShapeType; - enum MsoFlipCmd; - enum MsoTriState; - enum MsoColorType; - enum MsoPictureColorType; - enum MsoCalloutAngleType; - enum MsoCalloutDropType; - enum MsoCalloutType; - enum MsoBlackWhiteMode; - enum MsoMixedType; - enum MsoTextOrientation; - enum MsoScaleFrom; - enum MsoBarPosition; - enum MsoBarProtection; - enum MsoBarType; - enum MsoControlType; - enum MsoButtonState; - enum MsoControlOLEUsage; - enum MsoButtonStyleHidden; - enum MsoButtonStyle; - enum MsoComboStyle; - enum MsoOLEMenuGroup; - enum MsoMenuAnimation; - enum MsoBarRow; - enum MsoCommandBarButtonHyperlinkType; - enum MsoHyperlinkType; - enum MsoExtraInfoMethod; - enum MsoAnimationType; - enum MsoButtonSetType; - enum MsoIconType; - enum MsoBalloonType; - enum MsoModeType; - enum MsoBalloonErrorType; - enum MsoWizardActType; - enum MsoWizardMsgType; - enum MsoBalloonButtonType; - enum DocProperties; - enum MsoDocProperties; - enum MsoAppLanguageID; - enum MsoFarEastLineBreakLanguageID; - enum MsoFeatureInstall; - class CommandBarControl; - class CommandBar; - class CommandBarControls; - class Shape; - class ColorFormat; - class ShapeRange; - class ShapeNode; - enum MsoScriptLanguage; - enum MsoScriptLocation; - class Script; - class Adjustments; - class CalloutFormat; - class ConnectorFormat; - class FillFormat; - class GroupShapes; - class LineFormat; - class ShapeNodes; - class PictureFormat; - class ShadowFormat; - class TextEffectFormat; - class TextFrame; - class ThreeDFormat; - class IMsoDiagram; - class DiagramNode; - class CanvasShapes; - class FreeformBuilder; - class AnswerWizardFiles; - class Balloon; - class DocumentProperty; - class DocumentProperties; - enum MsoFileFindOptions; - enum MsoFileFindView; - enum MsoFileFindSortBy; - enum MsoFileFindListBy; - class IFoundFiles; - enum MsoLastModified; - enum MsoSortBy; - enum MsoSortOrder; - enum MsoConnector; - enum MsoCondition; - enum MsoFileType; - class PropertyTest; - class FoundFiles; - class PropertyTests; - class SearchScopes; - class SearchFolders; - class FileTypes; - class COMAddIn; - enum MsoLanguageID; - struct GUID; - struct DISPPARAMS; - struct EXCEPINFO; - class CommandBarComboBox; - class CommandBarButton; - enum MsoScreenSize; - enum MsoCharacterSet; - enum MsoEncoding; - class WebPageFont; - enum MsoHTMLProjectOpen; - enum MsoHTMLProjectState; - class HTMLProjectItem; - class HTMLProjectItems; - enum MsoFileDialogType; - enum MsoFileDialogView; - class FileDialogFilter; - class FileDialogFilters; - class FileDialogSelectedItems; - enum MsoAutomationSecurity; - class Signature; - enum MailFormat; - enum MsoAlertButtonType; - enum MsoAlertIconType; - enum MsoAlertDefaultType; - enum MsoAlertCancelType; - enum MsoSearchIn; - enum MsoTargetBrowser; - class ScopeFolder; - class ScopeFolders; - class SearchScope; - enum MsoOrgChartOrientation; - enum MsoOrgChartLayoutType; - enum MsoRelativeNodePosition; - enum MsoDiagramType; - enum MsoDiagramNodeType; - class DiagramNodes; - class DiagramNodeChildren; - enum MsoMoveRow; - enum MsoFilterComparison; - enum MsoFilterConjunction; - enum MsoFileNewSection; - enum MsoFileNewAction; - class WebComponent; - enum MsoLanguageIDHidden; - class SharedWorkspaceMember; - enum MsoSharedWorkspaceTaskStatus; - enum MsoSharedWorkspaceTaskPriority; - class SharedWorkspaceTask; - class SharedWorkspaceFile; - class SharedWorkspaceFolder; - class SharedWorkspaceLink; - class SharedWorkspaceMembers; - class SharedWorkspaceTasks; - class SharedWorkspaceFiles; - class SharedWorkspaceFolders; - class SharedWorkspaceLinks; - enum MsoSyncVersionType; - enum MsoSyncConflictResolutionType; - enum MsoSyncCompareType; - enum MsoSyncAvailableType; - enum MsoSyncEventType; - enum MsoSyncErrorType; - enum MsoSyncStatusType; - class DocumentLibraryVersion; - enum MsoPermission; - class UserPermission; - -class OFFICE_EXPORT IAccessible : public QAxObject -{ -public: - IAccessible(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property accChildCount - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accChildCount() const; //Returns the value of accChildCount - - /* - Property accDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accDefaultAction() const; //Returns the value of accDefaultAction - - /* - Property accDescription - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accDescription() const; //Returns the value of accDescription - - /* - Property accFocus - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accFocus() const; //Returns the value of accFocus - - /* - Property accHelp - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accHelp() const; //Returns the value of accHelp - - /* - Property accKeyboardShortcut - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accKeyboardShortcut() const; //Returns the value of accKeyboardShortcut - - /* - Property accName - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accName() const; //Returns the value of accName - inline void setAccName(const QVariant& value); //Sets the value of the accName property - - /* - Property accParent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* accParent() const; //Returns the value of accParent - - /* - Property accRole - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accRole() const; //Returns the value of accRole - - /* - Property accSelection - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accSelection() const; //Returns the value of accSelection - - /* - Property accState - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accState() const; //Returns the value of accState - - /* - Property accValue - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accValue() const; //Returns the value of accValue - inline void setAccValue(const QVariant& value); //Sets the value of the accValue property - - /* - Method accChild - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* accChild(const QVariant& varChild); - - /* - Method accDoDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accDoDefaultAction(); - - /* - Method accDoDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accDoDefaultAction(const QVariant& varChild); - - /* - Method accHelpTopic - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accHelpTopic(QString& pszHelpFile); - - /* - Method accHelpTopic - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accHelpTopic(QString& pszHelpFile, const QVariant& varChild); - - /* - Method accHitTest - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accHitTest(int xLeft, int yTop); - - /* - Method accLocation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight); - - /* - Method accLocation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight, const QVariant& varChild); - - /* - Method accNavigate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accNavigate(int navDir); - - /* - Method accNavigate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accNavigate(int navDir, const QVariant& varStart); - - /* - Method accSelect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accSelect(int flagsSelect); - - /* - Method accSelect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accSelect(int flagsSelect, const QVariant& varChild); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT _IMsoDispObj : public QAxObject -{ -public: - _IMsoDispObj(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT _IMsoOleAccDispObj : public QAxObject -{ -public: - _IMsoOleAccDispObj(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property accChildCount - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accChildCount() const; //Returns the value of accChildCount - - /* - Property accDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accDefaultAction() const; //Returns the value of accDefaultAction - - /* - Property accDescription - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accDescription() const; //Returns the value of accDescription - - /* - Property accFocus - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accFocus() const; //Returns the value of accFocus - - /* - Property accHelp - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accHelp() const; //Returns the value of accHelp - - /* - Property accKeyboardShortcut - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accKeyboardShortcut() const; //Returns the value of accKeyboardShortcut - - /* - Property accName - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accName() const; //Returns the value of accName - inline void setAccName(const QVariant& value); //Sets the value of the accName property - - /* - Property accParent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* accParent() const; //Returns the value of accParent - - /* - Property accRole - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accRole() const; //Returns the value of accRole - - /* - Property accSelection - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accSelection() const; //Returns the value of accSelection - - /* - Property accState - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accState() const; //Returns the value of accState - - /* - Property accValue - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accValue() const; //Returns the value of accValue - inline void setAccValue(const QVariant& value); //Sets the value of the accValue property - - /* - Method accChild - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* accChild(const QVariant& varChild); - - /* - Method accDoDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accDoDefaultAction(); - - /* - Method accDoDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accDoDefaultAction(const QVariant& varChild); - - /* - Method accHelpTopic - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accHelpTopic(QString& pszHelpFile); - - /* - Method accHelpTopic - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accHelpTopic(QString& pszHelpFile, const QVariant& varChild); - - /* - Method accHitTest - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accHitTest(int xLeft, int yTop); - - /* - Method accLocation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight); - - /* - Method accLocation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight, const QVariant& varChild); - - /* - Method accNavigate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accNavigate(int navDir); - - /* - Method accNavigate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accNavigate(int navDir, const QVariant& varStart); - - /* - Method accSelect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accSelect(int flagsSelect); - - /* - Method accSelect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accSelect(int flagsSelect, const QVariant& varChild); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT _CommandBars : public QAxObject -{ -public: - _CommandBars(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property ActionControl - - For more information, see help context 2001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* ActionControl() const; //Returns the value of ActionControl - - /* - Property ActiveMenuBar - - For more information, see help context 2002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* ActiveMenuBar() const; //Returns the value of ActiveMenuBar - - /* - Property AdaptiveMenus - - For more information, see help context 2013 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool AdaptiveMenus() const; //Returns the value of AdaptiveMenus - inline void SetAdaptiveMenus(bool value); //Sets the value of the AdaptiveMenus property - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 2004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property DisableAskAQuestionDropdown - - For more information, see help context 2017 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool DisableAskAQuestionDropdown() const; //Returns the value of DisableAskAQuestionDropdown - inline void SetDisableAskAQuestionDropdown(bool value); //Sets the value of the DisableAskAQuestionDropdown property - - /* - Property DisableCustomize - - For more information, see help context 2016 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool DisableCustomize() const; //Returns the value of DisableCustomize - inline void SetDisableCustomize(bool value); //Sets the value of the DisableCustomize property - - /* - Property DisplayFonts - - For more information, see help context 2015 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool DisplayFonts() const; //Returns the value of DisplayFonts - inline void SetDisplayFonts(bool value); //Sets the value of the DisplayFonts property - - /* - Property DisplayKeysInTooltips - - For more information, see help context 2006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool DisplayKeysInTooltips() const; //Returns the value of DisplayKeysInTooltips - inline void SetDisplayKeysInTooltips(bool value); //Sets the value of the DisplayKeysInTooltips property - - /* - Property DisplayTooltips - - For more information, see help context 2005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool DisplayTooltips() const; //Returns the value of DisplayTooltips - inline void SetDisplayTooltips(bool value); //Sets the value of the DisplayTooltips property - - /* - Property LargeButtons - - For more information, see help context 2009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool LargeButtons() const; //Returns the value of LargeButtons - inline void SetLargeButtons(bool value); //Sets the value of the LargeButtons property - - /* - Property MenuAnimationStyle - - For more information, see help context 2010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoMenuAnimation MenuAnimationStyle() const; //Returns the value of MenuAnimationStyle - inline void SetMenuAnimationStyle(Office::MsoMenuAnimation value); //Sets the value of the MenuAnimationStyle property - - /* - Property Parent - - For more information, see help context 2011 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 2003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* Add(); - - /* - Method Add - - For more information, see help context 2003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* Add(const QVariant& Name); - - /* - Method Add - - For more information, see help context 2003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* Add(const QVariant& Name, const QVariant& Position); - - /* - Method Add - - For more information, see help context 2003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* Add(const QVariant& Name, const QVariant& Position, const QVariant& MenuBar); - - /* - Method Add - - For more information, see help context 2003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* Add(const QVariant& Name, const QVariant& Position, const QVariant& MenuBar, const QVariant& Temporary); - - /* - Method AddEx - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* AddEx(); - - /* - Method AddEx - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* AddEx(const QVariant& TbidOrName); - - /* - Method AddEx - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* AddEx(const QVariant& TbidOrName, const QVariant& Position); - - /* - Method AddEx - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* AddEx(const QVariant& TbidOrName, const QVariant& Position, const QVariant& MenuBar); - - /* - Method AddEx - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* AddEx(const QVariant& TbidOrName, const QVariant& Position, const QVariant& MenuBar, const QVariant& Temporary); - - /* - Method AddEx - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* AddEx(const QVariant& TbidOrName, const QVariant& Position, const QVariant& MenuBar, const QVariant& Temporary, const QVariant& TbtrProtection); - - /* - Method FindControl - - For more information, see help context 2007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* FindControl(); - - /* - Method FindControl - - For more information, see help context 2007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* FindControl(const QVariant& Type); - - /* - Method FindControl - - For more information, see help context 2007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* FindControl(const QVariant& Type, const QVariant& Id); - - /* - Method FindControl - - For more information, see help context 2007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* FindControl(const QVariant& Type, const QVariant& Id, const QVariant& Tag); - - /* - Method FindControl - - For more information, see help context 2007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* FindControl(const QVariant& Type, const QVariant& Id, const QVariant& Tag, const QVariant& Visible); - - /* - Method FindControls - - For more information, see help context 2014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControls* FindControls(); - - /* - Method FindControls - - For more information, see help context 2014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControls* FindControls(const QVariant& Type); - - /* - Method FindControls - - For more information, see help context 2014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControls* FindControls(const QVariant& Type, const QVariant& Id); - - /* - Method FindControls - - For more information, see help context 2014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControls* FindControls(const QVariant& Type, const QVariant& Id, const QVariant& Tag); - - /* - Method FindControls - - For more information, see help context 2014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControls* FindControls(const QVariant& Type, const QVariant& Id, const QVariant& Tag, const QVariant& Visible); - - /* - Method IdsString - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int IdsString(int ids, QString& pbstrName); - - /* - Method Item - - For more information, see help context 2008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* Item(const QVariant& Index); - - /* - Method ReleaseFocus - - For more information, see help context 2012 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ReleaseFocus(); - - /* - Method TmcGetName - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int TmcGetName(int tmc, QString& pbstrName); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT CommandBar : public QAxObject -{ -public: - CommandBar(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property AdaptiveMenu - - For more information, see help context 3022 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool AdaptiveMenu() const; //Returns the value of AdaptiveMenu - inline void SetAdaptiveMenu(bool value); //Sets the value of the AdaptiveMenu property - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property BuiltIn - - For more information, see help context 3001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool BuiltIn() const; //Returns the value of BuiltIn - - /* - Property Context - - For more information, see help context 3002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Context() const; //Returns the value of Context - inline void SetContext(const QString& value); //Sets the value of the Context property - - /* - Property Controls - - For more information, see help context 3003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControls* Controls() const; //Returns the value of Controls - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Enabled - - For more information, see help context 3005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Enabled() const; //Returns the value of Enabled - inline void SetEnabled(bool value); //Sets the value of the Enabled property - - /* - Property Height - - For more information, see help context 3007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Height() const; //Returns the value of Height - inline void SetHeight(int value); //Sets the value of the Height property - - /* - Property Id - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Id() const; //Returns the value of Id - - /* - Property Index - - For more information, see help context 3008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Index() const; //Returns the value of Index - - /* - Property InstanceId - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int InstanceId() const; //Returns the value of InstanceId - - /* - Property Left - - For more information, see help context 3009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Left() const; //Returns the value of Left - inline void SetLeft(int value); //Sets the value of the Left property - - /* - Property Name - - For more information, see help context 3010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Name() const; //Returns the value of Name - inline void SetName(const QString& value); //Sets the value of the Name property - - /* - Property NameLocal - - For more information, see help context 3011 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString NameLocal() const; //Returns the value of NameLocal - inline void SetNameLocal(const QString& value); //Sets the value of the NameLocal property - - /* - Property Parent - - For more information, see help context 3012 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Position - - For more information, see help context 3013 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoBarPosition Position() const; //Returns the value of Position - inline void SetPosition(Office::MsoBarPosition value); //Sets the value of the Position property - - /* - Property Protection - - For more information, see help context 3015 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoBarProtection Protection() const; //Returns the value of Protection - inline void SetProtection(Office::MsoBarProtection value); //Sets the value of the Protection property - - /* - Property RowIndex - - For more information, see help context 3014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int RowIndex() const; //Returns the value of RowIndex - inline void SetRowIndex(int value); //Sets the value of the RowIndex property - - /* - Property Top - - For more information, see help context 3018 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Top() const; //Returns the value of Top - inline void SetTop(int value); //Sets the value of the Top property - - /* - Property Type - - For more information, see help context 3019 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoBarType Type() const; //Returns the value of Type - - /* - Property Visible - - For more information, see help context 3020 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Visible() const; //Returns the value of Visible - inline void SetVisible(bool value); //Sets the value of the Visible property - - /* - Property Width - - For more information, see help context 3021 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Width() const; //Returns the value of Width - inline void SetWidth(int value); //Sets the value of the Width property - - /* - Property accChildCount - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accChildCount() const; //Returns the value of accChildCount - - /* - Property accDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accDefaultAction() const; //Returns the value of accDefaultAction - - /* - Property accDescription - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accDescription() const; //Returns the value of accDescription - - /* - Property accFocus - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accFocus() const; //Returns the value of accFocus - - /* - Property accHelp - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accHelp() const; //Returns the value of accHelp - - /* - Property accKeyboardShortcut - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accKeyboardShortcut() const; //Returns the value of accKeyboardShortcut - - /* - Property accName - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accName() const; //Returns the value of accName - inline void setAccName(const QVariant& value); //Sets the value of the accName property - - /* - Property accParent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* accParent() const; //Returns the value of accParent - - /* - Property accRole - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accRole() const; //Returns the value of accRole - - /* - Property accSelection - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accSelection() const; //Returns the value of accSelection - - /* - Property accState - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accState() const; //Returns the value of accState - - /* - Property accValue - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accValue() const; //Returns the value of accValue - inline void setAccValue(const QVariant& value); //Sets the value of the accValue property - - /* - Method Delete - - For more information, see help context 3004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(); - - /* - Method FindControl - - For more information, see help context 3006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* FindControl(); - - /* - Method FindControl - - For more information, see help context 3006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* FindControl(const QVariant& Type); - - /* - Method FindControl - - For more information, see help context 3006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* FindControl(const QVariant& Type, const QVariant& Id); - - /* - Method FindControl - - For more information, see help context 3006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* FindControl(const QVariant& Type, const QVariant& Id, const QVariant& Tag); - - /* - Method FindControl - - For more information, see help context 3006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* FindControl(const QVariant& Type, const QVariant& Id, const QVariant& Tag, const QVariant& Visible); - - /* - Method FindControl - - For more information, see help context 3006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* FindControl(const QVariant& Type, const QVariant& Id, const QVariant& Tag, const QVariant& Visible, const QVariant& Recursive); - - /* - Method Reset - - For more information, see help context 3016 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reset(); - - /* - Method ShowPopup - - For more information, see help context 3017 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ShowPopup(); - - /* - Method ShowPopup - - For more information, see help context 3017 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ShowPopup(const QVariant& x); - - /* - Method ShowPopup - - For more information, see help context 3017 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ShowPopup(const QVariant& x, const QVariant& y); - - /* - Method accChild - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* accChild(const QVariant& varChild); - - /* - Method accDoDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accDoDefaultAction(); - - /* - Method accDoDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accDoDefaultAction(const QVariant& varChild); - - /* - Method accHelpTopic - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accHelpTopic(QString& pszHelpFile); - - /* - Method accHelpTopic - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accHelpTopic(QString& pszHelpFile, const QVariant& varChild); - - /* - Method accHitTest - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accHitTest(int xLeft, int yTop); - - /* - Method accLocation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight); - - /* - Method accLocation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight, const QVariant& varChild); - - /* - Method accNavigate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accNavigate(int navDir); - - /* - Method accNavigate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accNavigate(int navDir, const QVariant& varStart); - - /* - Method accSelect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accSelect(int flagsSelect); - - /* - Method accSelect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accSelect(int flagsSelect, const QVariant& varChild); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT CommandBarControls : public QAxObject -{ -public: - CommandBarControls(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 4002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 4004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 4001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Add(); - - /* - Method Add - - For more information, see help context 4001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Add(const QVariant& Type); - - /* - Method Add - - For more information, see help context 4001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Add(const QVariant& Type, const QVariant& Id); - - /* - Method Add - - For more information, see help context 4001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Add(const QVariant& Type, const QVariant& Id, const QVariant& Parameter); - - /* - Method Add - - For more information, see help context 4001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Add(const QVariant& Type, const QVariant& Id, const QVariant& Parameter, const QVariant& Before); - - /* - Method Add - - For more information, see help context 4001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Add(const QVariant& Type, const QVariant& Id, const QVariant& Parameter, const QVariant& Before, const QVariant& Temporary); - - /* - Method Item - - For more information, see help context 4003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Item(const QVariant& Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT CommandBarControl : public QAxObject -{ -public: - CommandBarControl(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property BeginGroup - - For more information, see help context 5001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool BeginGroup() const; //Returns the value of BeginGroup - inline void SetBeginGroup(bool value); //Sets the value of the BeginGroup property - - /* - Property BuiltIn - - For more information, see help context 5002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool BuiltIn() const; //Returns the value of BuiltIn - - /* - Property Caption - - For more information, see help context 5003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Caption() const; //Returns the value of Caption - inline void SetCaption(const QString& value); //Sets the value of the Caption property - - /* - Property Control - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Control() const; //Returns the value of Control - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property DescriptionText - - For more information, see help context 5006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString DescriptionText() const; //Returns the value of DescriptionText - inline void SetDescriptionText(const QString& value); //Sets the value of the DescriptionText property - - /* - Property Enabled - - For more information, see help context 5007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Enabled() const; //Returns the value of Enabled - inline void SetEnabled(bool value); //Sets the value of the Enabled property - - /* - Property Height - - For more information, see help context 5009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Height() const; //Returns the value of Height - inline void SetHeight(int value); //Sets the value of the Height property - - /* - Property HelpContextId - - For more information, see help context 5010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int HelpContextId() const; //Returns the value of HelpContextId - inline void SetHelpContextId(int value); //Sets the value of the HelpContextId property - - /* - Property HelpFile - - For more information, see help context 5011 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString HelpFile() const; //Returns the value of HelpFile - inline void SetHelpFile(const QString& value); //Sets the value of the HelpFile property - - /* - Property Id - - For more information, see help context 5012 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Id() const; //Returns the value of Id - - /* - Property Index - - For more information, see help context 5013 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Index() const; //Returns the value of Index - - /* - Property InstanceId - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int InstanceId() const; //Returns the value of InstanceId - - /* - Property IsPriorityDropped - - For more information, see help context 5029 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool IsPriorityDropped() const; //Returns the value of IsPriorityDropped - - /* - Property Left - - For more information, see help context 5015 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Left() const; //Returns the value of Left - - /* - Property OLEUsage - - For more information, see help context 5016 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoControlOLEUsage OLEUsage() const; //Returns the value of OLEUsage - inline void SetOLEUsage(Office::MsoControlOLEUsage value); //Sets the value of the OLEUsage property - - /* - Property OnAction - - For more information, see help context 5017 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString OnAction() const; //Returns the value of OnAction - inline void SetOnAction(const QString& value); //Sets the value of the OnAction property - - /* - Property Parameter - - For more information, see help context 5019 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Parameter() const; //Returns the value of Parameter - inline void SetParameter(const QString& value); //Sets the value of the Parameter property - - /* - Property Parent - - For more information, see help context 5018 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* Parent() const; //Returns the value of Parent - - /* - Property Priority - - For more information, see help context 5020 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Priority() const; //Returns the value of Priority - inline void SetPriority(int value); //Sets the value of the Priority property - - /* - Property Tag - - For more information, see help context 5023 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Tag() const; //Returns the value of Tag - inline void SetTag(const QString& value); //Sets the value of the Tag property - - /* - Property TooltipText - - For more information, see help context 5024 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString TooltipText() const; //Returns the value of TooltipText - inline void SetTooltipText(const QString& value); //Sets the value of the TooltipText property - - /* - Property Top - - For more information, see help context 5025 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Top() const; //Returns the value of Top - - /* - Property Type - - For more information, see help context 5026 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoControlType Type() const; //Returns the value of Type - - /* - Property Visible - - For more information, see help context 5027 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Visible() const; //Returns the value of Visible - inline void SetVisible(bool value); //Sets the value of the Visible property - - /* - Property Width - - For more information, see help context 5028 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Width() const; //Returns the value of Width - inline void SetWidth(int value); //Sets the value of the Width property - - /* - Property accChildCount - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accChildCount() const; //Returns the value of accChildCount - - /* - Property accDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accDefaultAction() const; //Returns the value of accDefaultAction - - /* - Property accDescription - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accDescription() const; //Returns the value of accDescription - - /* - Property accFocus - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accFocus() const; //Returns the value of accFocus - - /* - Property accHelp - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accHelp() const; //Returns the value of accHelp - - /* - Property accKeyboardShortcut - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accKeyboardShortcut() const; //Returns the value of accKeyboardShortcut - - /* - Property accName - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accName() const; //Returns the value of accName - inline void setAccName(const QVariant& value); //Sets the value of the accName property - - /* - Property accParent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* accParent() const; //Returns the value of accParent - - /* - Property accRole - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accRole() const; //Returns the value of accRole - - /* - Property accSelection - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accSelection() const; //Returns the value of accSelection - - /* - Property accState - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accState() const; //Returns the value of accState - - /* - Property accValue - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accValue() const; //Returns the value of accValue - inline void setAccValue(const QVariant& value); //Sets the value of the accValue property - - /* - Method Copy - - For more information, see help context 5004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Copy(); - - /* - Method Copy - - For more information, see help context 5004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Copy(const QVariant& Bar); - - /* - Method Copy - - For more information, see help context 5004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Copy(const QVariant& Bar, const QVariant& Before); - - /* - Method Delete - - For more information, see help context 5005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(); - - /* - Method Delete - - For more information, see help context 5005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(const QVariant& Temporary); - - /* - Method Execute - - For more information, see help context 5008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Execute(); - - /* - Method Move - - For more information, see help context 5014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Move(); - - /* - Method Move - - For more information, see help context 5014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Move(const QVariant& Bar); - - /* - Method Move - - For more information, see help context 5014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Move(const QVariant& Bar, const QVariant& Before); - - /* - Method Reserved1 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved1(); - - /* - Method Reserved2 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved2(); - - /* - Method Reserved3 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved3(); - - /* - Method Reserved4 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved4(); - - /* - Method Reserved5 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved5(); - - /* - Method Reserved6 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved6(); - - /* - Method Reserved7 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved7(); - - /* - Method Reset - - For more information, see help context 5021 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reset(); - - /* - Method SetFocus - - For more information, see help context 5022 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetFocus(); - - /* - Method accChild - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* accChild(const QVariant& varChild); - - /* - Method accDoDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accDoDefaultAction(); - - /* - Method accDoDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accDoDefaultAction(const QVariant& varChild); - - /* - Method accHelpTopic - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accHelpTopic(QString& pszHelpFile); - - /* - Method accHelpTopic - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accHelpTopic(QString& pszHelpFile, const QVariant& varChild); - - /* - Method accHitTest - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accHitTest(int xLeft, int yTop); - - /* - Method accLocation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight); - - /* - Method accLocation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight, const QVariant& varChild); - - /* - Method accNavigate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accNavigate(int navDir); - - /* - Method accNavigate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accNavigate(int navDir, const QVariant& varStart); - - /* - Method accSelect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accSelect(int flagsSelect); - - /* - Method accSelect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accSelect(int flagsSelect, const QVariant& varChild); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT _CommandBarButton : public QAxObject -{ -public: - _CommandBarButton(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property BeginGroup - - For more information, see help context 5001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool BeginGroup() const; //Returns the value of BeginGroup - inline void SetBeginGroup(bool value); //Sets the value of the BeginGroup property - - /* - Property BuiltIn - - For more information, see help context 5002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool BuiltIn() const; //Returns the value of BuiltIn - - /* - Property BuiltInFace - - For more information, see help context 6001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool BuiltInFace() const; //Returns the value of BuiltInFace - inline void SetBuiltInFace(bool value); //Sets the value of the BuiltInFace property - - /* - Property Caption - - For more information, see help context 5003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Caption() const; //Returns the value of Caption - inline void SetCaption(const QString& value); //Sets the value of the Caption property - - /* - Property Control - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Control() const; //Returns the value of Control - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property DescriptionText - - For more information, see help context 5006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString DescriptionText() const; //Returns the value of DescriptionText - inline void SetDescriptionText(const QString& value); //Sets the value of the DescriptionText property - - /* - Property Enabled - - For more information, see help context 5007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Enabled() const; //Returns the value of Enabled - inline void SetEnabled(bool value); //Sets the value of the Enabled property - - /* - Property FaceId - - For more information, see help context 6003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int FaceId() const; //Returns the value of FaceId - inline void SetFaceId(int value); //Sets the value of the FaceId property - - /* - Property Height - - For more information, see help context 5009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Height() const; //Returns the value of Height - inline void SetHeight(int value); //Sets the value of the Height property - - /* - Property HelpContextId - - For more information, see help context 5010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int HelpContextId() const; //Returns the value of HelpContextId - inline void SetHelpContextId(int value); //Sets the value of the HelpContextId property - - /* - Property HelpFile - - For more information, see help context 5011 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString HelpFile() const; //Returns the value of HelpFile - inline void SetHelpFile(const QString& value); //Sets the value of the HelpFile property - - /* - Property HyperlinkType - - For more information, see help context 6008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoCommandBarButtonHyperlinkType HyperlinkType() const; //Returns the value of HyperlinkType - inline void SetHyperlinkType(Office::MsoCommandBarButtonHyperlinkType value); //Sets the value of the HyperlinkType property - - /* - Property Id - - For more information, see help context 5012 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Id() const; //Returns the value of Id - - /* - Property Index - - For more information, see help context 5013 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Index() const; //Returns the value of Index - - /* - Property InstanceId - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int InstanceId() const; //Returns the value of InstanceId - - /* - Property IsPriorityDropped - - For more information, see help context 5029 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool IsPriorityDropped() const; //Returns the value of IsPriorityDropped - - /* - Property Left - - For more information, see help context 5015 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Left() const; //Returns the value of Left - - /* - Property Mask - - For more information, see help context 6010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QPixmap Mask() const; //Returns the value of Mask - inline void SetMask(const QPixmap& value); //Sets the value of the Mask property - - /* - Property OLEUsage - - For more information, see help context 5016 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoControlOLEUsage OLEUsage() const; //Returns the value of OLEUsage - inline void SetOLEUsage(Office::MsoControlOLEUsage value); //Sets the value of the OLEUsage property - - /* - Property OnAction - - For more information, see help context 5017 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString OnAction() const; //Returns the value of OnAction - inline void SetOnAction(const QString& value); //Sets the value of the OnAction property - - /* - Property Parameter - - For more information, see help context 5019 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Parameter() const; //Returns the value of Parameter - inline void SetParameter(const QString& value); //Sets the value of the Parameter property - - /* - Property Parent - - For more information, see help context 5018 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* Parent() const; //Returns the value of Parent - - /* - Property Picture - - For more information, see help context 6009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QPixmap Picture() const; //Returns the value of Picture - inline void SetPicture(const QPixmap& value); //Sets the value of the Picture property - - /* - Property Priority - - For more information, see help context 5020 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Priority() const; //Returns the value of Priority - inline void SetPriority(int value); //Sets the value of the Priority property - - /* - Property ShortcutText - - For more information, see help context 6005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString ShortcutText() const; //Returns the value of ShortcutText - inline void SetShortcutText(const QString& value); //Sets the value of the ShortcutText property - - /* - Property State - - For more information, see help context 6006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoButtonState State() const; //Returns the value of State - inline void SetState(Office::MsoButtonState value); //Sets the value of the State property - - /* - Property Style - - For more information, see help context 6007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoButtonStyle Style() const; //Returns the value of Style - inline void SetStyle(Office::MsoButtonStyle value); //Sets the value of the Style property - - /* - Property Tag - - For more information, see help context 5023 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Tag() const; //Returns the value of Tag - inline void SetTag(const QString& value); //Sets the value of the Tag property - - /* - Property TooltipText - - For more information, see help context 5024 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString TooltipText() const; //Returns the value of TooltipText - inline void SetTooltipText(const QString& value); //Sets the value of the TooltipText property - - /* - Property Top - - For more information, see help context 5025 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Top() const; //Returns the value of Top - - /* - Property Type - - For more information, see help context 5026 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoControlType Type() const; //Returns the value of Type - - /* - Property Visible - - For more information, see help context 5027 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Visible() const; //Returns the value of Visible - inline void SetVisible(bool value); //Sets the value of the Visible property - - /* - Property Width - - For more information, see help context 5028 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Width() const; //Returns the value of Width - inline void SetWidth(int value); //Sets the value of the Width property - - /* - Property accChildCount - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accChildCount() const; //Returns the value of accChildCount - - /* - Property accDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accDefaultAction() const; //Returns the value of accDefaultAction - - /* - Property accDescription - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accDescription() const; //Returns the value of accDescription - - /* - Property accFocus - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accFocus() const; //Returns the value of accFocus - - /* - Property accHelp - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accHelp() const; //Returns the value of accHelp - - /* - Property accKeyboardShortcut - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accKeyboardShortcut() const; //Returns the value of accKeyboardShortcut - - /* - Property accName - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accName() const; //Returns the value of accName - inline void setAccName(const QVariant& value); //Sets the value of the accName property - - /* - Property accParent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* accParent() const; //Returns the value of accParent - - /* - Property accRole - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accRole() const; //Returns the value of accRole - - /* - Property accSelection - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accSelection() const; //Returns the value of accSelection - - /* - Property accState - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accState() const; //Returns the value of accState - - /* - Property accValue - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accValue() const; //Returns the value of accValue - inline void setAccValue(const QVariant& value); //Sets the value of the accValue property - - /* - Method Copy - - For more information, see help context 5004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Copy(); - - /* - Method Copy - - For more information, see help context 5004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Copy(const QVariant& Bar); - - /* - Method Copy - - For more information, see help context 5004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Copy(const QVariant& Bar, const QVariant& Before); - - /* - Method CopyFace - - For more information, see help context 6002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void CopyFace(); - - /* - Method Delete - - For more information, see help context 5005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(); - - /* - Method Delete - - For more information, see help context 5005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(const QVariant& Temporary); - - /* - Method Execute - - For more information, see help context 5008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Execute(); - - /* - Method Move - - For more information, see help context 5014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Move(); - - /* - Method Move - - For more information, see help context 5014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Move(const QVariant& Bar); - - /* - Method Move - - For more information, see help context 5014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Move(const QVariant& Bar, const QVariant& Before); - - /* - Method PasteFace - - For more information, see help context 6004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void PasteFace(); - - /* - Method Reserved1 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved1(); - - /* - Method Reserved2 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved2(); - - /* - Method Reserved3 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved3(); - - /* - Method Reserved4 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved4(); - - /* - Method Reserved5 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved5(); - - /* - Method Reserved6 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved6(); - - /* - Method Reserved7 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved7(); - - /* - Method Reset - - For more information, see help context 5021 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reset(); - - /* - Method SetFocus - - For more information, see help context 5022 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetFocus(); - - /* - Method accChild - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* accChild(const QVariant& varChild); - - /* - Method accDoDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accDoDefaultAction(); - - /* - Method accDoDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accDoDefaultAction(const QVariant& varChild); - - /* - Method accHelpTopic - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accHelpTopic(QString& pszHelpFile); - - /* - Method accHelpTopic - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accHelpTopic(QString& pszHelpFile, const QVariant& varChild); - - /* - Method accHitTest - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accHitTest(int xLeft, int yTop); - - /* - Method accLocation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight); - - /* - Method accLocation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight, const QVariant& varChild); - - /* - Method accNavigate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accNavigate(int navDir); - - /* - Method accNavigate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accNavigate(int navDir, const QVariant& varStart); - - /* - Method accSelect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accSelect(int flagsSelect); - - /* - Method accSelect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accSelect(int flagsSelect, const QVariant& varChild); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT CommandBarPopup : public QAxObject -{ -public: - CommandBarPopup(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property BeginGroup - - For more information, see help context 5001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool BeginGroup() const; //Returns the value of BeginGroup - inline void SetBeginGroup(bool value); //Sets the value of the BeginGroup property - - /* - Property BuiltIn - - For more information, see help context 5002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool BuiltIn() const; //Returns the value of BuiltIn - - /* - Property Caption - - For more information, see help context 5003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Caption() const; //Returns the value of Caption - inline void SetCaption(const QString& value); //Sets the value of the Caption property - - /* - Property CommandBar - - For more information, see help context 7001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* CommandBar() const; //Returns the value of CommandBar - - /* - Property Control - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Control() const; //Returns the value of Control - - /* - Property Controls - - For more information, see help context 7002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControls* Controls() const; //Returns the value of Controls - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property DescriptionText - - For more information, see help context 5006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString DescriptionText() const; //Returns the value of DescriptionText - inline void SetDescriptionText(const QString& value); //Sets the value of the DescriptionText property - - /* - Property Enabled - - For more information, see help context 5007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Enabled() const; //Returns the value of Enabled - inline void SetEnabled(bool value); //Sets the value of the Enabled property - - /* - Property Height - - For more information, see help context 5009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Height() const; //Returns the value of Height - inline void SetHeight(int value); //Sets the value of the Height property - - /* - Property HelpContextId - - For more information, see help context 5010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int HelpContextId() const; //Returns the value of HelpContextId - inline void SetHelpContextId(int value); //Sets the value of the HelpContextId property - - /* - Property HelpFile - - For more information, see help context 5011 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString HelpFile() const; //Returns the value of HelpFile - inline void SetHelpFile(const QString& value); //Sets the value of the HelpFile property - - /* - Property Id - - For more information, see help context 5012 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Id() const; //Returns the value of Id - - /* - Property Index - - For more information, see help context 5013 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Index() const; //Returns the value of Index - - /* - Property InstanceId - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int InstanceId() const; //Returns the value of InstanceId - - /* - Property IsPriorityDropped - - For more information, see help context 5029 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool IsPriorityDropped() const; //Returns the value of IsPriorityDropped - - /* - Property Left - - For more information, see help context 5015 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Left() const; //Returns the value of Left - - /* - Property OLEMenuGroup - - For more information, see help context 7003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoOLEMenuGroup OLEMenuGroup() const; //Returns the value of OLEMenuGroup - inline void SetOLEMenuGroup(Office::MsoOLEMenuGroup value); //Sets the value of the OLEMenuGroup property - - /* - Property OLEUsage - - For more information, see help context 5016 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoControlOLEUsage OLEUsage() const; //Returns the value of OLEUsage - inline void SetOLEUsage(Office::MsoControlOLEUsage value); //Sets the value of the OLEUsage property - - /* - Property OnAction - - For more information, see help context 5017 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString OnAction() const; //Returns the value of OnAction - inline void SetOnAction(const QString& value); //Sets the value of the OnAction property - - /* - Property Parameter - - For more information, see help context 5019 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Parameter() const; //Returns the value of Parameter - inline void SetParameter(const QString& value); //Sets the value of the Parameter property - - /* - Property Parent - - For more information, see help context 5018 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* Parent() const; //Returns the value of Parent - - /* - Property Priority - - For more information, see help context 5020 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Priority() const; //Returns the value of Priority - inline void SetPriority(int value); //Sets the value of the Priority property - - /* - Property Tag - - For more information, see help context 5023 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Tag() const; //Returns the value of Tag - inline void SetTag(const QString& value); //Sets the value of the Tag property - - /* - Property TooltipText - - For more information, see help context 5024 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString TooltipText() const; //Returns the value of TooltipText - inline void SetTooltipText(const QString& value); //Sets the value of the TooltipText property - - /* - Property Top - - For more information, see help context 5025 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Top() const; //Returns the value of Top - - /* - Property Type - - For more information, see help context 5026 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoControlType Type() const; //Returns the value of Type - - /* - Property Visible - - For more information, see help context 5027 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Visible() const; //Returns the value of Visible - inline void SetVisible(bool value); //Sets the value of the Visible property - - /* - Property Width - - For more information, see help context 5028 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Width() const; //Returns the value of Width - inline void SetWidth(int value); //Sets the value of the Width property - - /* - Property accChildCount - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accChildCount() const; //Returns the value of accChildCount - - /* - Property accDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accDefaultAction() const; //Returns the value of accDefaultAction - - /* - Property accDescription - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accDescription() const; //Returns the value of accDescription - - /* - Property accFocus - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accFocus() const; //Returns the value of accFocus - - /* - Property accHelp - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accHelp() const; //Returns the value of accHelp - - /* - Property accKeyboardShortcut - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accKeyboardShortcut() const; //Returns the value of accKeyboardShortcut - - /* - Property accName - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accName() const; //Returns the value of accName - inline void setAccName(const QVariant& value); //Sets the value of the accName property - - /* - Property accParent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* accParent() const; //Returns the value of accParent - - /* - Property accRole - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accRole() const; //Returns the value of accRole - - /* - Property accSelection - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accSelection() const; //Returns the value of accSelection - - /* - Property accState - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accState() const; //Returns the value of accState - - /* - Property accValue - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accValue() const; //Returns the value of accValue - inline void setAccValue(const QVariant& value); //Sets the value of the accValue property - - /* - Method Copy - - For more information, see help context 5004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Copy(); - - /* - Method Copy - - For more information, see help context 5004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Copy(const QVariant& Bar); - - /* - Method Copy - - For more information, see help context 5004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Copy(const QVariant& Bar, const QVariant& Before); - - /* - Method Delete - - For more information, see help context 5005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(); - - /* - Method Delete - - For more information, see help context 5005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(const QVariant& Temporary); - - /* - Method Execute - - For more information, see help context 5008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Execute(); - - /* - Method Move - - For more information, see help context 5014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Move(); - - /* - Method Move - - For more information, see help context 5014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Move(const QVariant& Bar); - - /* - Method Move - - For more information, see help context 5014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Move(const QVariant& Bar, const QVariant& Before); - - /* - Method Reserved1 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved1(); - - /* - Method Reserved2 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved2(); - - /* - Method Reserved3 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved3(); - - /* - Method Reserved4 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved4(); - - /* - Method Reserved5 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved5(); - - /* - Method Reserved6 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved6(); - - /* - Method Reserved7 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved7(); - - /* - Method Reset - - For more information, see help context 5021 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reset(); - - /* - Method SetFocus - - For more information, see help context 5022 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetFocus(); - - /* - Method accChild - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* accChild(const QVariant& varChild); - - /* - Method accDoDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accDoDefaultAction(); - - /* - Method accDoDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accDoDefaultAction(const QVariant& varChild); - - /* - Method accHelpTopic - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accHelpTopic(QString& pszHelpFile); - - /* - Method accHelpTopic - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accHelpTopic(QString& pszHelpFile, const QVariant& varChild); - - /* - Method accHitTest - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accHitTest(int xLeft, int yTop); - - /* - Method accLocation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight); - - /* - Method accLocation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight, const QVariant& varChild); - - /* - Method accNavigate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accNavigate(int navDir); - - /* - Method accNavigate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accNavigate(int navDir, const QVariant& varStart); - - /* - Method accSelect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accSelect(int flagsSelect); - - /* - Method accSelect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accSelect(int flagsSelect, const QVariant& varChild); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT _CommandBarComboBox : public QAxObject -{ -public: - _CommandBarComboBox(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property BeginGroup - - For more information, see help context 5001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool BeginGroup() const; //Returns the value of BeginGroup - inline void SetBeginGroup(bool value); //Sets the value of the BeginGroup property - - /* - Property BuiltIn - - For more information, see help context 5002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool BuiltIn() const; //Returns the value of BuiltIn - - /* - Property Caption - - For more information, see help context 5003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Caption() const; //Returns the value of Caption - inline void SetCaption(const QString& value); //Sets the value of the Caption property - - /* - Property Control - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Control() const; //Returns the value of Control - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property DescriptionText - - For more information, see help context 5006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString DescriptionText() const; //Returns the value of DescriptionText - inline void SetDescriptionText(const QString& value); //Sets the value of the DescriptionText property - - /* - Property DropDownLines - - For more information, see help context 8003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int DropDownLines() const; //Returns the value of DropDownLines - inline void SetDropDownLines(int value); //Sets the value of the DropDownLines property - - /* - Property DropDownWidth - - For more information, see help context 8004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int DropDownWidth() const; //Returns the value of DropDownWidth - inline void SetDropDownWidth(int value); //Sets the value of the DropDownWidth property - - /* - Property Enabled - - For more information, see help context 5007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Enabled() const; //Returns the value of Enabled - inline void SetEnabled(bool value); //Sets the value of the Enabled property - - /* - Property Height - - For more information, see help context 5009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Height() const; //Returns the value of Height - inline void SetHeight(int value); //Sets the value of the Height property - - /* - Property HelpContextId - - For more information, see help context 5010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int HelpContextId() const; //Returns the value of HelpContextId - inline void SetHelpContextId(int value); //Sets the value of the HelpContextId property - - /* - Property HelpFile - - For more information, see help context 5011 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString HelpFile() const; //Returns the value of HelpFile - inline void SetHelpFile(const QString& value); //Sets the value of the HelpFile property - - /* - Property Id - - For more information, see help context 5012 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Id() const; //Returns the value of Id - - /* - Property Index - - For more information, see help context 5013 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Index() const; //Returns the value of Index - - /* - Property InstanceId - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int InstanceId() const; //Returns the value of InstanceId - - /* - Property IsPriorityDropped - - For more information, see help context 5029 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool IsPriorityDropped() const; //Returns the value of IsPriorityDropped - - /* - Property Left - - For more information, see help context 5015 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Left() const; //Returns the value of Left - - /* - Property ListCount - - For more information, see help context 8006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int ListCount() const; //Returns the value of ListCount - - /* - Property ListHeaderCount - - For more information, see help context 8007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int ListHeaderCount() const; //Returns the value of ListHeaderCount - inline void SetListHeaderCount(int value); //Sets the value of the ListHeaderCount property - - /* - Property ListIndex - - For more information, see help context 8008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int ListIndex() const; //Returns the value of ListIndex - inline void SetListIndex(int value); //Sets the value of the ListIndex property - - /* - Property OLEUsage - - For more information, see help context 5016 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoControlOLEUsage OLEUsage() const; //Returns the value of OLEUsage - inline void SetOLEUsage(Office::MsoControlOLEUsage value); //Sets the value of the OLEUsage property - - /* - Property OnAction - - For more information, see help context 5017 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString OnAction() const; //Returns the value of OnAction - inline void SetOnAction(const QString& value); //Sets the value of the OnAction property - - /* - Property Parameter - - For more information, see help context 5019 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Parameter() const; //Returns the value of Parameter - inline void SetParameter(const QString& value); //Sets the value of the Parameter property - - /* - Property Parent - - For more information, see help context 5018 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* Parent() const; //Returns the value of Parent - - /* - Property Priority - - For more information, see help context 5020 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Priority() const; //Returns the value of Priority - inline void SetPriority(int value); //Sets the value of the Priority property - - /* - Property Style - - For more information, see help context 8010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoComboStyle Style() const; //Returns the value of Style - inline void SetStyle(Office::MsoComboStyle value); //Sets the value of the Style property - - /* - Property Tag - - For more information, see help context 5023 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Tag() const; //Returns the value of Tag - inline void SetTag(const QString& value); //Sets the value of the Tag property - - /* - Property Text - - For more information, see help context 8011 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Text() const; //Returns the value of Text - inline void SetText(const QString& value); //Sets the value of the Text property - - /* - Property TooltipText - - For more information, see help context 5024 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString TooltipText() const; //Returns the value of TooltipText - inline void SetTooltipText(const QString& value); //Sets the value of the TooltipText property - - /* - Property Top - - For more information, see help context 5025 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Top() const; //Returns the value of Top - - /* - Property Type - - For more information, see help context 5026 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoControlType Type() const; //Returns the value of Type - - /* - Property Visible - - For more information, see help context 5027 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Visible() const; //Returns the value of Visible - inline void SetVisible(bool value); //Sets the value of the Visible property - - /* - Property Width - - For more information, see help context 5028 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Width() const; //Returns the value of Width - inline void SetWidth(int value); //Sets the value of the Width property - - /* - Property accChildCount - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accChildCount() const; //Returns the value of accChildCount - - /* - Property accDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accDefaultAction() const; //Returns the value of accDefaultAction - - /* - Property accDescription - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accDescription() const; //Returns the value of accDescription - - /* - Property accFocus - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accFocus() const; //Returns the value of accFocus - - /* - Property accHelp - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accHelp() const; //Returns the value of accHelp - - /* - Property accKeyboardShortcut - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accKeyboardShortcut() const; //Returns the value of accKeyboardShortcut - - /* - Property accName - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accName() const; //Returns the value of accName - inline void setAccName(const QVariant& value); //Sets the value of the accName property - - /* - Property accParent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* accParent() const; //Returns the value of accParent - - /* - Property accRole - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accRole() const; //Returns the value of accRole - - /* - Property accSelection - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accSelection() const; //Returns the value of accSelection - - /* - Property accState - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accState() const; //Returns the value of accState - - /* - Property accValue - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accValue() const; //Returns the value of accValue - inline void setAccValue(const QVariant& value); //Sets the value of the accValue property - - /* - Method AddItem - - For more information, see help context 8001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void AddItem(const QString& Text); - - /* - Method AddItem - - For more information, see help context 8001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void AddItem(const QString& Text, const QVariant& Index); - - /* - Method Clear - - For more information, see help context 8002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Clear(); - - /* - Method Copy - - For more information, see help context 5004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Copy(); - - /* - Method Copy - - For more information, see help context 5004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Copy(const QVariant& Bar); - - /* - Method Copy - - For more information, see help context 5004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Copy(const QVariant& Bar, const QVariant& Before); - - /* - Method Delete - - For more information, see help context 5005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(); - - /* - Method Delete - - For more information, see help context 5005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(const QVariant& Temporary); - - /* - Method Execute - - For more information, see help context 5008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Execute(); - - /* - Method List - - For more information, see help context 8005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString List(int Index); - - /* - Method Move - - For more information, see help context 5014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Move(); - - /* - Method Move - - For more information, see help context 5014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Move(const QVariant& Bar); - - /* - Method Move - - For more information, see help context 5014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Move(const QVariant& Bar, const QVariant& Before); - - /* - Method RemoveItem - - For more information, see help context 8009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void RemoveItem(int Index); - - /* - Method Reserved1 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved1(); - - /* - Method Reserved2 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved2(); - - /* - Method Reserved3 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved3(); - - /* - Method Reserved4 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved4(); - - /* - Method Reserved5 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved5(); - - /* - Method Reserved6 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved6(); - - /* - Method Reserved7 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved7(); - - /* - Method Reset - - For more information, see help context 5021 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reset(); - - /* - Method SetFocus - - For more information, see help context 5022 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetFocus(); - - /* - Method SetList - */ - inline int SetList(int Index, const QString& rhs); - - /* - Method accChild - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* accChild(const QVariant& varChild); - - /* - Method accDoDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accDoDefaultAction(); - - /* - Method accDoDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accDoDefaultAction(const QVariant& varChild); - - /* - Method accHelpTopic - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accHelpTopic(QString& pszHelpFile); - - /* - Method accHelpTopic - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accHelpTopic(QString& pszHelpFile, const QVariant& varChild); - - /* - Method accHitTest - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accHitTest(int xLeft, int yTop); - - /* - Method accLocation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight); - - /* - Method accLocation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight, const QVariant& varChild); - - /* - Method accNavigate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accNavigate(int navDir); - - /* - Method accNavigate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accNavigate(int navDir, const QVariant& varStart); - - /* - Method accSelect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accSelect(int flagsSelect); - - /* - Method accSelect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accSelect(int flagsSelect, const QVariant& varChild); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT _CommandBarActiveX : public QAxObject -{ -public: - _CommandBarActiveX(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property BeginGroup - - For more information, see help context 5001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool BeginGroup() const; //Returns the value of BeginGroup - inline void SetBeginGroup(bool value); //Sets the value of the BeginGroup property - - /* - Property BuiltIn - - For more information, see help context 5002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool BuiltIn() const; //Returns the value of BuiltIn - - /* - Property Caption - - For more information, see help context 5003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Caption() const; //Returns the value of Caption - inline void SetCaption(const QString& value); //Sets the value of the Caption property - - /* - Property Control - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Control() const; //Returns the value of Control - - /* - Property ControlCLSID - - For more information, see help context 9001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString ControlCLSID() const; //Returns the value of ControlCLSID - inline void SetControlCLSID(const QString& value); //Sets the value of the ControlCLSID property - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property DescriptionText - - For more information, see help context 5006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString DescriptionText() const; //Returns the value of DescriptionText - inline void SetDescriptionText(const QString& value); //Sets the value of the DescriptionText property - - /* - Property Enabled - - For more information, see help context 5007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Enabled() const; //Returns the value of Enabled - inline void SetEnabled(bool value); //Sets the value of the Enabled property - - /* - Property Height - - For more information, see help context 5009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Height() const; //Returns the value of Height - inline void SetHeight(int value); //Sets the value of the Height property - - /* - Property HelpContextId - - For more information, see help context 5010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int HelpContextId() const; //Returns the value of HelpContextId - inline void SetHelpContextId(int value); //Sets the value of the HelpContextId property - - /* - Property HelpFile - - For more information, see help context 5011 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString HelpFile() const; //Returns the value of HelpFile - inline void SetHelpFile(const QString& value); //Sets the value of the HelpFile property - - /* - Property Id - - For more information, see help context 5012 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Id() const; //Returns the value of Id - - /* - Property Index - - For more information, see help context 5013 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Index() const; //Returns the value of Index - - /* - Property InitWith - - For more information, see help context 9005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* InitWith() const; //Returns the value of InitWith - inline void SetInitWith(IUnknown* value); //Sets the value of the InitWith property - - /* - Property InstanceId - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int InstanceId() const; //Returns the value of InstanceId - - /* - Property IsPriorityDropped - - For more information, see help context 5029 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool IsPriorityDropped() const; //Returns the value of IsPriorityDropped - - /* - Property Left - - For more information, see help context 5015 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Left() const; //Returns the value of Left - - /* - Property OLEUsage - - For more information, see help context 5016 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoControlOLEUsage OLEUsage() const; //Returns the value of OLEUsage - inline void SetOLEUsage(Office::MsoControlOLEUsage value); //Sets the value of the OLEUsage property - - /* - Property OnAction - - For more information, see help context 5017 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString OnAction() const; //Returns the value of OnAction - inline void SetOnAction(const QString& value); //Sets the value of the OnAction property - - /* - Property Parameter - - For more information, see help context 5019 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Parameter() const; //Returns the value of Parameter - inline void SetParameter(const QString& value); //Sets the value of the Parameter property - - /* - Property Parent - - For more information, see help context 5018 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* Parent() const; //Returns the value of Parent - - /* - Property Priority - - For more information, see help context 5020 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Priority() const; //Returns the value of Priority - inline void SetPriority(int value); //Sets the value of the Priority property - - /* - Property Tag - - For more information, see help context 5023 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Tag() const; //Returns the value of Tag - inline void SetTag(const QString& value); //Sets the value of the Tag property - - /* - Property TooltipText - - For more information, see help context 5024 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString TooltipText() const; //Returns the value of TooltipText - inline void SetTooltipText(const QString& value); //Sets the value of the TooltipText property - - /* - Property Top - - For more information, see help context 5025 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Top() const; //Returns the value of Top - - /* - Property Type - - For more information, see help context 5026 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoControlType Type() const; //Returns the value of Type - - /* - Property Visible - - For more information, see help context 5027 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Visible() const; //Returns the value of Visible - inline void SetVisible(bool value); //Sets the value of the Visible property - - /* - Property Width - - For more information, see help context 5028 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Width() const; //Returns the value of Width - inline void SetWidth(int value); //Sets the value of the Width property - - /* - Property accChildCount - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accChildCount() const; //Returns the value of accChildCount - - /* - Property accDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accDefaultAction() const; //Returns the value of accDefaultAction - - /* - Property accDescription - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accDescription() const; //Returns the value of accDescription - - /* - Property accFocus - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accFocus() const; //Returns the value of accFocus - - /* - Property accHelp - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accHelp() const; //Returns the value of accHelp - - /* - Property accKeyboardShortcut - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accKeyboardShortcut() const; //Returns the value of accKeyboardShortcut - - /* - Property accName - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accName() const; //Returns the value of accName - inline void setAccName(const QVariant& value); //Sets the value of the accName property - - /* - Property accParent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* accParent() const; //Returns the value of accParent - - /* - Property accRole - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accRole() const; //Returns the value of accRole - - /* - Property accSelection - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accSelection() const; //Returns the value of accSelection - - /* - Property accState - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accState() const; //Returns the value of accState - - /* - Property accValue - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accValue() const; //Returns the value of accValue - inline void setAccValue(const QVariant& value); //Sets the value of the accValue property - - /* - Method Copy - - For more information, see help context 5004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Copy(); - - /* - Method Copy - - For more information, see help context 5004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Copy(const QVariant& Bar); - - /* - Method Copy - - For more information, see help context 5004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Copy(const QVariant& Bar, const QVariant& Before); - - /* - Method Delete - - For more information, see help context 5005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(); - - /* - Method Delete - - For more information, see help context 5005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(const QVariant& Temporary); - - /* - Method EnsureControl - - For more information, see help context 9004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void EnsureControl(); - - /* - Method Execute - - For more information, see help context 5008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Execute(); - - /* - Method Move - - For more information, see help context 5014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Move(); - - /* - Method Move - - For more information, see help context 5014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Move(const QVariant& Bar); - - /* - Method Move - - For more information, see help context 5014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Move(const QVariant& Bar, const QVariant& Before); - - /* - Method QueryControlInterface - - For more information, see help context 9002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* QueryControlInterface(const QString& bstrIid); - - /* - Method Reserved1 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved1(); - - /* - Method Reserved2 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved2(); - - /* - Method Reserved3 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved3(); - - /* - Method Reserved4 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved4(); - - /* - Method Reserved5 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved5(); - - /* - Method Reserved6 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved6(); - - /* - Method Reserved7 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved7(); - - /* - Method Reset - - For more information, see help context 5021 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reset(); - - /* - Method SetFocus - - For more information, see help context 5022 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetFocus(); - - /* - Method SetInnerObjectFactory - - For more information, see help context 9003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetInnerObjectFactory(IUnknown* pUnk); - - /* - Method accChild - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* accChild(const QVariant& varChild); - - /* - Method accDoDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accDoDefaultAction(); - - /* - Method accDoDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accDoDefaultAction(const QVariant& varChild); - - /* - Method accHelpTopic - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accHelpTopic(QString& pszHelpFile); - - /* - Method accHelpTopic - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accHelpTopic(QString& pszHelpFile, const QVariant& varChild); - - /* - Method accHitTest - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accHitTest(int xLeft, int yTop); - - /* - Method accLocation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight); - - /* - Method accLocation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight, const QVariant& varChild); - - /* - Method accNavigate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accNavigate(int navDir); - - /* - Method accNavigate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accNavigate(int navDir, const QVariant& varStart); - - /* - Method accSelect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accSelect(int flagsSelect); - - /* - Method accSelect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accSelect(int flagsSelect, const QVariant& varChild); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT Adjustments : public QAxObject -{ -public: - Adjustments(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Method Item - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double Item(int Index); - - /* - Method SetItem - */ - inline int SetItem(int Index, double rhs); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT CalloutFormat : public QAxObject -{ -public: - CalloutFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Accent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState Accent() const; //Returns the value of Accent - inline void SetAccent(Office::MsoTriState value); //Sets the value of the Accent property - - /* - Property Angle - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoCalloutAngleType Angle() const; //Returns the value of Angle - inline void SetAngle(Office::MsoCalloutAngleType value); //Sets the value of the Angle property - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property AutoAttach - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState AutoAttach() const; //Returns the value of AutoAttach - inline void SetAutoAttach(Office::MsoTriState value); //Sets the value of the AutoAttach property - - /* - Property AutoLength - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState AutoLength() const; //Returns the value of AutoLength - - /* - Property Border - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState Border() const; //Returns the value of Border - inline void SetBorder(Office::MsoTriState value); //Sets the value of the Border property - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Drop - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double Drop() const; //Returns the value of Drop - - /* - Property DropType - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoCalloutDropType DropType() const; //Returns the value of DropType - - /* - Property Gap - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double Gap() const; //Returns the value of Gap - inline void SetGap(double value); //Sets the value of the Gap property - - /* - Property Length - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double Length() const; //Returns the value of Length - - /* - Property Parent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Type - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoCalloutType Type() const; //Returns the value of Type - inline void SetType(Office::MsoCalloutType value); //Sets the value of the Type property - - /* - Method AutomaticLength - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void AutomaticLength(); - - /* - Method CustomDrop - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void CustomDrop(double Drop); - - /* - Method CustomLength - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void CustomLength(double Length); - - /* - Method PresetDrop - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void PresetDrop(Office::MsoCalloutDropType DropType); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT ColorFormat : public QAxObject -{ -public: - ColorFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property RGB - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int RGB() const; //Returns the value of RGB - inline void SetRGB(int value); //Sets the value of the RGB property - - /* - Property SchemeColor - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int SchemeColor() const; //Returns the value of SchemeColor - inline void SetSchemeColor(int value); //Sets the value of the SchemeColor property - - /* - Property TintAndShade - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double TintAndShade() const; //Returns the value of TintAndShade - inline void SetTintAndShade(double value); //Sets the value of the TintAndShade property - - /* - Property Type - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoColorType Type() const; //Returns the value of Type - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT ConnectorFormat : public QAxObject -{ -public: - ConnectorFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property BeginConnected - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState BeginConnected() const; //Returns the value of BeginConnected - - /* - Property BeginConnectedShape - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* BeginConnectedShape() const; //Returns the value of BeginConnectedShape - - /* - Property BeginConnectionSite - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int BeginConnectionSite() const; //Returns the value of BeginConnectionSite - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property EndConnected - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState EndConnected() const; //Returns the value of EndConnected - - /* - Property EndConnectedShape - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* EndConnectedShape() const; //Returns the value of EndConnectedShape - - /* - Property EndConnectionSite - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int EndConnectionSite() const; //Returns the value of EndConnectionSite - - /* - Property Parent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Type - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoConnectorType Type() const; //Returns the value of Type - inline void SetType(Office::MsoConnectorType value); //Sets the value of the Type property - - /* - Method BeginConnect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void BeginConnect(Office::Shape* ConnectedShape, int ConnectionSite); - - /* - Method BeginDisconnect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void BeginDisconnect(); - - /* - Method EndConnect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void EndConnect(Office::Shape* ConnectedShape, int ConnectionSite); - - /* - Method EndDisconnect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void EndDisconnect(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT FillFormat : public QAxObject -{ -public: - FillFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property BackColor - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ColorFormat* BackColor() const; //Returns the value of BackColor - inline void SetBackColor(Office::ColorFormat* value); //Sets the value of the BackColor property - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property ForeColor - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ColorFormat* ForeColor() const; //Returns the value of ForeColor - inline void SetForeColor(Office::ColorFormat* value); //Sets the value of the ForeColor property - - /* - Property GradientColorType - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoGradientColorType GradientColorType() const; //Returns the value of GradientColorType - - /* - Property GradientDegree - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double GradientDegree() const; //Returns the value of GradientDegree - - /* - Property GradientStyle - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoGradientStyle GradientStyle() const; //Returns the value of GradientStyle - - /* - Property GradientVariant - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int GradientVariant() const; //Returns the value of GradientVariant - - /* - Property Parent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Pattern - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoPatternType Pattern() const; //Returns the value of Pattern - - /* - Property PresetGradientType - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoPresetGradientType PresetGradientType() const; //Returns the value of PresetGradientType - - /* - Property PresetTexture - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoPresetTexture PresetTexture() const; //Returns the value of PresetTexture - - /* - Property TextureName - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString TextureName() const; //Returns the value of TextureName - - /* - Property TextureType - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTextureType TextureType() const; //Returns the value of TextureType - - /* - Property Transparency - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double Transparency() const; //Returns the value of Transparency - inline void SetTransparency(double value); //Sets the value of the Transparency property - - /* - Property Type - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoFillType Type() const; //Returns the value of Type - - /* - Property Visible - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState Visible() const; //Returns the value of Visible - inline void SetVisible(Office::MsoTriState value); //Sets the value of the Visible property - - /* - Method Background - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Background(); - - /* - Method OneColorGradient - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void OneColorGradient(Office::MsoGradientStyle Style, int Variant, double Degree); - - /* - Method Patterned - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Patterned(Office::MsoPatternType Pattern); - - /* - Method PresetGradient - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void PresetGradient(Office::MsoGradientStyle Style, int Variant, Office::MsoPresetGradientType PresetGradientType); - - /* - Method PresetTextured - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void PresetTextured(Office::MsoPresetTexture PresetTexture); - - /* - Method Solid - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Solid(); - - /* - Method TwoColorGradient - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void TwoColorGradient(Office::MsoGradientStyle Style, int Variant); - - /* - Method UserPicture - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void UserPicture(const QString& PictureFile); - - /* - Method UserTextured - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void UserTextured(const QString& TextureFile); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT FreeformBuilder : public QAxObject -{ -public: - FreeformBuilder(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Method AddNodes - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void AddNodes(Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1); - - /* - Method AddNodes - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void AddNodes(Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2); - - /* - Method AddNodes - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void AddNodes(Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2, double Y2); - - /* - Method AddNodes - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void AddNodes(Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2, double Y2, double X3); - - /* - Method AddNodes - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void AddNodes(Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2, double Y2, double X3, double Y3); - - /* - Method ConvertToShape - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* ConvertToShape(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT GroupShapes : public QAxObject -{ -public: - GroupShapes(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* Item(const QVariant& Index); - - /* - Method Range - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ShapeRange* Range(const QVariant& Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT LineFormat : public QAxObject -{ -public: - LineFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property BackColor - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ColorFormat* BackColor() const; //Returns the value of BackColor - inline void SetBackColor(Office::ColorFormat* value); //Sets the value of the BackColor property - - /* - Property BeginArrowheadLength - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoArrowheadLength BeginArrowheadLength() const; //Returns the value of BeginArrowheadLength - inline void SetBeginArrowheadLength(Office::MsoArrowheadLength value); //Sets the value of the BeginArrowheadLength property - - /* - Property BeginArrowheadStyle - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoArrowheadStyle BeginArrowheadStyle() const; //Returns the value of BeginArrowheadStyle - inline void SetBeginArrowheadStyle(Office::MsoArrowheadStyle value); //Sets the value of the BeginArrowheadStyle property - - /* - Property BeginArrowheadWidth - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoArrowheadWidth BeginArrowheadWidth() const; //Returns the value of BeginArrowheadWidth - inline void SetBeginArrowheadWidth(Office::MsoArrowheadWidth value); //Sets the value of the BeginArrowheadWidth property - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property DashStyle - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoLineDashStyle DashStyle() const; //Returns the value of DashStyle - inline void SetDashStyle(Office::MsoLineDashStyle value); //Sets the value of the DashStyle property - - /* - Property EndArrowheadLength - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoArrowheadLength EndArrowheadLength() const; //Returns the value of EndArrowheadLength - inline void SetEndArrowheadLength(Office::MsoArrowheadLength value); //Sets the value of the EndArrowheadLength property - - /* - Property EndArrowheadStyle - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoArrowheadStyle EndArrowheadStyle() const; //Returns the value of EndArrowheadStyle - inline void SetEndArrowheadStyle(Office::MsoArrowheadStyle value); //Sets the value of the EndArrowheadStyle property - - /* - Property EndArrowheadWidth - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoArrowheadWidth EndArrowheadWidth() const; //Returns the value of EndArrowheadWidth - inline void SetEndArrowheadWidth(Office::MsoArrowheadWidth value); //Sets the value of the EndArrowheadWidth property - - /* - Property ForeColor - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ColorFormat* ForeColor() const; //Returns the value of ForeColor - inline void SetForeColor(Office::ColorFormat* value); //Sets the value of the ForeColor property - - /* - Property InsetPen - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState InsetPen() const; //Returns the value of InsetPen - inline void SetInsetPen(Office::MsoTriState value); //Sets the value of the InsetPen property - - /* - Property Parent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Pattern - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoPatternType Pattern() const; //Returns the value of Pattern - inline void SetPattern(Office::MsoPatternType value); //Sets the value of the Pattern property - - /* - Property Style - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoLineStyle Style() const; //Returns the value of Style - inline void SetStyle(Office::MsoLineStyle value); //Sets the value of the Style property - - /* - Property Transparency - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double Transparency() const; //Returns the value of Transparency - inline void SetTransparency(double value); //Sets the value of the Transparency property - - /* - Property Visible - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState Visible() const; //Returns the value of Visible - inline void SetVisible(Office::MsoTriState value); //Sets the value of the Visible property - - /* - Property Weight - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double Weight() const; //Returns the value of Weight - inline void SetWeight(double value); //Sets the value of the Weight property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT ShapeNode : public QAxObject -{ -public: - ShapeNode(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property EditingType - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoEditingType EditingType() const; //Returns the value of EditingType - - /* - Property Parent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Points - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant Points() const; //Returns the value of Points - - /* - Property SegmentType - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoSegmentType SegmentType() const; //Returns the value of SegmentType - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT ShapeNodes : public QAxObject -{ -public: - ShapeNodes(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Delete - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(int Index); - - /* - Method Insert - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Insert(int Index, Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1); - - /* - Method Insert - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Insert(int Index, Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2); - - /* - Method Insert - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Insert(int Index, Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2, double Y2); - - /* - Method Insert - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Insert(int Index, Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2, double Y2, double X3); - - /* - Method Insert - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Insert(int Index, Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2, double Y2, double X3, double Y3); - - /* - Method Item - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ShapeNode* Item(const QVariant& Index); - - /* - Method SetEditingType - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetEditingType(int Index, Office::MsoEditingType EditingType); - - /* - Method SetPosition - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetPosition(int Index, double X1, double Y1); - - /* - Method SetSegmentType - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetSegmentType(int Index, Office::MsoSegmentType SegmentType); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT PictureFormat : public QAxObject -{ -public: - PictureFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Brightness - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double Brightness() const; //Returns the value of Brightness - inline void SetBrightness(double value); //Sets the value of the Brightness property - - /* - Property ColorType - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoPictureColorType ColorType() const; //Returns the value of ColorType - inline void SetColorType(Office::MsoPictureColorType value); //Sets the value of the ColorType property - - /* - Property Contrast - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double Contrast() const; //Returns the value of Contrast - inline void SetContrast(double value); //Sets the value of the Contrast property - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property CropBottom - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double CropBottom() const; //Returns the value of CropBottom - inline void SetCropBottom(double value); //Sets the value of the CropBottom property - - /* - Property CropLeft - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double CropLeft() const; //Returns the value of CropLeft - inline void SetCropLeft(double value); //Sets the value of the CropLeft property - - /* - Property CropRight - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double CropRight() const; //Returns the value of CropRight - inline void SetCropRight(double value); //Sets the value of the CropRight property - - /* - Property CropTop - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double CropTop() const; //Returns the value of CropTop - inline void SetCropTop(double value); //Sets the value of the CropTop property - - /* - Property Parent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property TransparencyColor - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int TransparencyColor() const; //Returns the value of TransparencyColor - inline void SetTransparencyColor(int value); //Sets the value of the TransparencyColor property - - /* - Property TransparentBackground - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState TransparentBackground() const; //Returns the value of TransparentBackground - inline void SetTransparentBackground(Office::MsoTriState value); //Sets the value of the TransparentBackground property - - /* - Method IncrementBrightness - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void IncrementBrightness(double Increment); - - /* - Method IncrementContrast - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void IncrementContrast(double Increment); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT ShadowFormat : public QAxObject -{ -public: - ShadowFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property ForeColor - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ColorFormat* ForeColor() const; //Returns the value of ForeColor - inline void SetForeColor(Office::ColorFormat* value); //Sets the value of the ForeColor property - - /* - Property Obscured - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState Obscured() const; //Returns the value of Obscured - inline void SetObscured(Office::MsoTriState value); //Sets the value of the Obscured property - - /* - Property OffsetX - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double OffsetX() const; //Returns the value of OffsetX - inline void SetOffsetX(double value); //Sets the value of the OffsetX property - - /* - Property OffsetY - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double OffsetY() const; //Returns the value of OffsetY - inline void SetOffsetY(double value); //Sets the value of the OffsetY property - - /* - Property Parent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Transparency - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double Transparency() const; //Returns the value of Transparency - inline void SetTransparency(double value); //Sets the value of the Transparency property - - /* - Property Type - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoShadowType Type() const; //Returns the value of Type - inline void SetType(Office::MsoShadowType value); //Sets the value of the Type property - - /* - Property Visible - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState Visible() const; //Returns the value of Visible - inline void SetVisible(Office::MsoTriState value); //Sets the value of the Visible property - - /* - Method IncrementOffsetX - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void IncrementOffsetX(double Increment); - - /* - Method IncrementOffsetY - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void IncrementOffsetY(double Increment); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT Script : public QAxObject -{ -public: - Script(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Extended - - For more information, see help context 218002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Extended() const; //Returns the value of Extended - inline void SetExtended(const QString& value); //Sets the value of the Extended property - - /* - Property Id - - For more information, see help context 218004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Id() const; //Returns the value of Id - inline void SetId(const QString& value); //Sets the value of the Id property - - /* - Property Language - - For more information, see help context 218006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoScriptLanguage Language() const; //Returns the value of Language - inline void SetLanguage(Office::MsoScriptLanguage value); //Sets the value of the Language property - - /* - Property Location - - For more information, see help context 218008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoScriptLocation Location() const; //Returns the value of Location - - /* - Property Parent - - For more information, see help context 218001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property ScriptText - - For more information, see help context 218011 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString ScriptText() const; //Returns the value of ScriptText - inline void SetScriptText(const QString& value); //Sets the value of the ScriptText property - - /* - Property Shape - - For more information, see help context 218010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Shape() const; //Returns the value of Shape - - /* - Method Delete - - For more information, see help context 218009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT Scripts : public QAxObject -{ -public: - Scripts(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 217002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 217001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 217003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 217005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Script* Add(); - - /* - Method Add - - For more information, see help context 217005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Script* Add(IDispatch* Anchor); - - /* - Method Add - - For more information, see help context 217005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Script* Add(IDispatch* Anchor, Office::MsoScriptLocation Location); - - /* - Method Add - - For more information, see help context 217005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Script* Add(IDispatch* Anchor, Office::MsoScriptLocation Location, Office::MsoScriptLanguage Language); - - /* - Method Add - - For more information, see help context 217005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Script* Add(IDispatch* Anchor, Office::MsoScriptLocation Location, Office::MsoScriptLanguage Language, const QString& Id); - - /* - Method Add - - For more information, see help context 217005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Script* Add(IDispatch* Anchor, Office::MsoScriptLocation Location, Office::MsoScriptLanguage Language, const QString& Id, const QString& Extended); - - /* - Method Add - - For more information, see help context 217005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Script* Add(IDispatch* Anchor, Office::MsoScriptLocation Location, Office::MsoScriptLanguage Language, const QString& Id, const QString& Extended, const QString& ScriptText); - - /* - Method Delete - - For more information, see help context 217006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(); - - /* - Method Item - - For more information, see help context 217004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Script* Item(const QVariant& Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT Shape : public QAxObject -{ -public: - Shape(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Adjustments - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Adjustments* Adjustments() const; //Returns the value of Adjustments - - /* - Property AlternativeText - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString AlternativeText() const; //Returns the value of AlternativeText - inline void SetAlternativeText(const QString& value); //Sets the value of the AlternativeText property - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property AutoShapeType - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoAutoShapeType AutoShapeType() const; //Returns the value of AutoShapeType - inline void SetAutoShapeType(Office::MsoAutoShapeType value); //Sets the value of the AutoShapeType property - - /* - Property BlackWhiteMode - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoBlackWhiteMode BlackWhiteMode() const; //Returns the value of BlackWhiteMode - inline void SetBlackWhiteMode(Office::MsoBlackWhiteMode value); //Sets the value of the BlackWhiteMode property - - /* - Property Callout - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CalloutFormat* Callout() const; //Returns the value of Callout - - /* - Property CanvasItems - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CanvasShapes* CanvasItems() const; //Returns the value of CanvasItems - - /* - Property Child - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState Child() const; //Returns the value of Child - - /* - Property ConnectionSiteCount - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int ConnectionSiteCount() const; //Returns the value of ConnectionSiteCount - - /* - Property Connector - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState Connector() const; //Returns the value of Connector - - /* - Property ConnectorFormat - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ConnectorFormat* ConnectorFormat() const; //Returns the value of ConnectorFormat - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Diagram - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::IMsoDiagram* Diagram() const; //Returns the value of Diagram - - /* - Property DiagramNode - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::DiagramNode* DiagramNode() const; //Returns the value of DiagramNode - - /* - Property Fill - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::FillFormat* Fill() const; //Returns the value of Fill - - /* - Property GroupItems - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::GroupShapes* GroupItems() const; //Returns the value of GroupItems - - /* - Property HasDiagram - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState HasDiagram() const; //Returns the value of HasDiagram - - /* - Property HasDiagramNode - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState HasDiagramNode() const; //Returns the value of HasDiagramNode - - /* - Property Height - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double Height() const; //Returns the value of Height - inline void SetHeight(double value); //Sets the value of the Height property - - /* - Property HorizontalFlip - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState HorizontalFlip() const; //Returns the value of HorizontalFlip - - /* - Property Id - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Id() const; //Returns the value of Id - - /* - Property Left - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double Left() const; //Returns the value of Left - inline void SetLeft(double value); //Sets the value of the Left property - - /* - Property Line - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::LineFormat* Line() const; //Returns the value of Line - - /* - Property LockAspectRatio - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState LockAspectRatio() const; //Returns the value of LockAspectRatio - inline void SetLockAspectRatio(Office::MsoTriState value); //Sets the value of the LockAspectRatio property - - /* - Property Name - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Name() const; //Returns the value of Name - inline void SetName(const QString& value); //Sets the value of the Name property - - /* - Property Nodes - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ShapeNodes* Nodes() const; //Returns the value of Nodes - - /* - Property Parent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property ParentGroup - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* ParentGroup() const; //Returns the value of ParentGroup - - /* - Property PictureFormat - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::PictureFormat* PictureFormat() const; //Returns the value of PictureFormat - - /* - Property RTF - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString RTF() const; //Returns the value of RTF - inline void SetRTF(const QString& value); //Sets the value of the RTF property - - /* - Property Rotation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double Rotation() const; //Returns the value of Rotation - inline void SetRotation(double value); //Sets the value of the Rotation property - - /* - Property Script - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Script* Script() const; //Returns the value of Script - - /* - Property Shadow - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ShadowFormat* Shadow() const; //Returns the value of Shadow - - /* - Property TextEffect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::TextEffectFormat* TextEffect() const; //Returns the value of TextEffect - - /* - Property TextFrame - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::TextFrame* TextFrame() const; //Returns the value of TextFrame - - /* - Property ThreeD - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ThreeDFormat* ThreeD() const; //Returns the value of ThreeD - - /* - Property Top - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double Top() const; //Returns the value of Top - inline void SetTop(double value); //Sets the value of the Top property - - /* - Property Type - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoShapeType Type() const; //Returns the value of Type - - /* - Property VerticalFlip - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState VerticalFlip() const; //Returns the value of VerticalFlip - - /* - Property Vertices - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant Vertices() const; //Returns the value of Vertices - - /* - Property Visible - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState Visible() const; //Returns the value of Visible - inline void SetVisible(Office::MsoTriState value); //Sets the value of the Visible property - - /* - Property Width - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double Width() const; //Returns the value of Width - inline void SetWidth(double value); //Sets the value of the Width property - - /* - Property ZOrderPosition - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int ZOrderPosition() const; //Returns the value of ZOrderPosition - - /* - Method Apply - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Apply(); - - /* - Method CanvasCropBottom - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void CanvasCropBottom(double Increment); - - /* - Method CanvasCropLeft - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void CanvasCropLeft(double Increment); - - /* - Method CanvasCropRight - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void CanvasCropRight(double Increment); - - /* - Method CanvasCropTop - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void CanvasCropTop(double Increment); - - /* - Method Delete - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(); - - /* - Method Duplicate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* Duplicate(); - - /* - Method Flip - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Flip(Office::MsoFlipCmd FlipCmd); - - /* - Method IncrementLeft - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void IncrementLeft(double Increment); - - /* - Method IncrementRotation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void IncrementRotation(double Increment); - - /* - Method IncrementTop - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void IncrementTop(double Increment); - - /* - Method PickUp - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void PickUp(); - - /* - Method RerouteConnections - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void RerouteConnections(); - - /* - Method ScaleHeight - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ScaleHeight(double Factor, Office::MsoTriState RelativeToOriginalSize); - - /* - Method ScaleHeight - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ScaleHeight(double Factor, Office::MsoTriState RelativeToOriginalSize, Office::MsoScaleFrom fScale); - - /* - Method ScaleWidth - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ScaleWidth(double Factor, Office::MsoTriState RelativeToOriginalSize); - - /* - Method ScaleWidth - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ScaleWidth(double Factor, Office::MsoTriState RelativeToOriginalSize, Office::MsoScaleFrom fScale); - - /* - Method Select - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Select(); - - /* - Method Select - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Select(const QVariant& Replace); - - /* - Method SetShapesDefaultProperties - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetShapesDefaultProperties(); - - /* - Method Ungroup - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ShapeRange* Ungroup(); - - /* - Method ZOrder - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ZOrder(Office::MsoZOrderCmd ZOrderCmd); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT ShapeRange : public QAxObject -{ -public: - ShapeRange(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Adjustments - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Adjustments* Adjustments() const; //Returns the value of Adjustments - - /* - Property AlternativeText - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString AlternativeText() const; //Returns the value of AlternativeText - inline void SetAlternativeText(const QString& value); //Sets the value of the AlternativeText property - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property AutoShapeType - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoAutoShapeType AutoShapeType() const; //Returns the value of AutoShapeType - inline void SetAutoShapeType(Office::MsoAutoShapeType value); //Sets the value of the AutoShapeType property - - /* - Property BlackWhiteMode - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoBlackWhiteMode BlackWhiteMode() const; //Returns the value of BlackWhiteMode - inline void SetBlackWhiteMode(Office::MsoBlackWhiteMode value); //Sets the value of the BlackWhiteMode property - - /* - Property Callout - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CalloutFormat* Callout() const; //Returns the value of Callout - - /* - Property CanvasItems - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CanvasShapes* CanvasItems() const; //Returns the value of CanvasItems - - /* - Property Child - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState Child() const; //Returns the value of Child - - /* - Property ConnectionSiteCount - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int ConnectionSiteCount() const; //Returns the value of ConnectionSiteCount - - /* - Property Connector - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState Connector() const; //Returns the value of Connector - - /* - Property ConnectorFormat - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ConnectorFormat* ConnectorFormat() const; //Returns the value of ConnectorFormat - - /* - Property Count - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Diagram - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::IMsoDiagram* Diagram() const; //Returns the value of Diagram - - /* - Property DiagramNode - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::DiagramNode* DiagramNode() const; //Returns the value of DiagramNode - - /* - Property Fill - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::FillFormat* Fill() const; //Returns the value of Fill - - /* - Property GroupItems - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::GroupShapes* GroupItems() const; //Returns the value of GroupItems - - /* - Property HasDiagram - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState HasDiagram() const; //Returns the value of HasDiagram - - /* - Property HasDiagramNode - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState HasDiagramNode() const; //Returns the value of HasDiagramNode - - /* - Property Height - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double Height() const; //Returns the value of Height - inline void SetHeight(double value); //Sets the value of the Height property - - /* - Property HorizontalFlip - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState HorizontalFlip() const; //Returns the value of HorizontalFlip - - /* - Property Id - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Id() const; //Returns the value of Id - - /* - Property Left - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double Left() const; //Returns the value of Left - inline void SetLeft(double value); //Sets the value of the Left property - - /* - Property Line - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::LineFormat* Line() const; //Returns the value of Line - - /* - Property LockAspectRatio - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState LockAspectRatio() const; //Returns the value of LockAspectRatio - inline void SetLockAspectRatio(Office::MsoTriState value); //Sets the value of the LockAspectRatio property - - /* - Property Name - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Name() const; //Returns the value of Name - inline void SetName(const QString& value); //Sets the value of the Name property - - /* - Property Nodes - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ShapeNodes* Nodes() const; //Returns the value of Nodes - - /* - Property Parent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property ParentGroup - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* ParentGroup() const; //Returns the value of ParentGroup - - /* - Property PictureFormat - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::PictureFormat* PictureFormat() const; //Returns the value of PictureFormat - - /* - Property RTF - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString RTF() const; //Returns the value of RTF - inline void SetRTF(const QString& value); //Sets the value of the RTF property - - /* - Property Rotation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double Rotation() const; //Returns the value of Rotation - inline void SetRotation(double value); //Sets the value of the Rotation property - - /* - Property Script - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Script* Script() const; //Returns the value of Script - - /* - Property Shadow - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ShadowFormat* Shadow() const; //Returns the value of Shadow - - /* - Property TextEffect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::TextEffectFormat* TextEffect() const; //Returns the value of TextEffect - - /* - Property TextFrame - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::TextFrame* TextFrame() const; //Returns the value of TextFrame - - /* - Property ThreeD - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ThreeDFormat* ThreeD() const; //Returns the value of ThreeD - - /* - Property Top - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double Top() const; //Returns the value of Top - inline void SetTop(double value); //Sets the value of the Top property - - /* - Property Type - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoShapeType Type() const; //Returns the value of Type - - /* - Property VerticalFlip - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState VerticalFlip() const; //Returns the value of VerticalFlip - - /* - Property Vertices - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant Vertices() const; //Returns the value of Vertices - - /* - Property Visible - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState Visible() const; //Returns the value of Visible - inline void SetVisible(Office::MsoTriState value); //Sets the value of the Visible property - - /* - Property Width - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double Width() const; //Returns the value of Width - inline void SetWidth(double value); //Sets the value of the Width property - - /* - Property ZOrderPosition - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int ZOrderPosition() const; //Returns the value of ZOrderPosition - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Align - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Align(Office::MsoAlignCmd AlignCmd, Office::MsoTriState RelativeTo); - - /* - Method Apply - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Apply(); - - /* - Method CanvasCropBottom - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void CanvasCropBottom(double Increment); - - /* - Method CanvasCropLeft - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void CanvasCropLeft(double Increment); - - /* - Method CanvasCropRight - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void CanvasCropRight(double Increment); - - /* - Method CanvasCropTop - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void CanvasCropTop(double Increment); - - /* - Method Delete - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(); - - /* - Method Distribute - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Distribute(Office::MsoDistributeCmd DistributeCmd, Office::MsoTriState RelativeTo); - - /* - Method Duplicate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ShapeRange* Duplicate(); - - /* - Method Flip - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Flip(Office::MsoFlipCmd FlipCmd); - - /* - Method Group - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* Group(); - - /* - Method IncrementLeft - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void IncrementLeft(double Increment); - - /* - Method IncrementRotation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void IncrementRotation(double Increment); - - /* - Method IncrementTop - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void IncrementTop(double Increment); - - /* - Method Item - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* Item(const QVariant& Index); - - /* - Method PickUp - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void PickUp(); - - /* - Method Regroup - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* Regroup(); - - /* - Method RerouteConnections - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void RerouteConnections(); - - /* - Method ScaleHeight - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ScaleHeight(double Factor, Office::MsoTriState RelativeToOriginalSize); - - /* - Method ScaleHeight - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ScaleHeight(double Factor, Office::MsoTriState RelativeToOriginalSize, Office::MsoScaleFrom fScale); - - /* - Method ScaleWidth - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ScaleWidth(double Factor, Office::MsoTriState RelativeToOriginalSize); - - /* - Method ScaleWidth - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ScaleWidth(double Factor, Office::MsoTriState RelativeToOriginalSize, Office::MsoScaleFrom fScale); - - /* - Method Select - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Select(); - - /* - Method Select - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Select(const QVariant& Replace); - - /* - Method SetShapesDefaultProperties - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetShapesDefaultProperties(); - - /* - Method Ungroup - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ShapeRange* Ungroup(); - - /* - Method ZOrder - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ZOrder(Office::MsoZOrderCmd ZOrderCmd); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT Shapes : public QAxObject -{ -public: - Shapes(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Background - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* Background() const; //Returns the value of Background - - /* - Property Count - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Default - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* Default() const; //Returns the value of Default - - /* - Property Parent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method AddCallout - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddCallout(Office::MsoCalloutType Type, double Left, double Top, double Width, double Height); - - /* - Method AddCanvas - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddCanvas(double Left, double Top, double Width, double Height); - - /* - Method AddConnector - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddConnector(Office::MsoConnectorType Type, double BeginX, double BeginY, double EndX, double EndY); - - /* - Method AddCurve - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddCurve(const QVariant& SafeArrayOfPoints); - - /* - Method AddDiagram - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddDiagram(Office::MsoDiagramType Type, double Left, double Top, double Width, double Height); - - /* - Method AddLabel - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddLabel(Office::MsoTextOrientation Orientation, double Left, double Top, double Width, double Height); - - /* - Method AddLine - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddLine(double BeginX, double BeginY, double EndX, double EndY); - - /* - Method AddPicture - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddPicture(const QString& FileName, Office::MsoTriState LinkToFile, Office::MsoTriState SaveWithDocument, double Left, double Top); - - /* - Method AddPicture - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddPicture(const QString& FileName, Office::MsoTriState LinkToFile, Office::MsoTriState SaveWithDocument, double Left, double Top, double Width); - - /* - Method AddPicture - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddPicture(const QString& FileName, Office::MsoTriState LinkToFile, Office::MsoTriState SaveWithDocument, double Left, double Top, double Width, double Height); - - /* - Method AddPolyline - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddPolyline(const QVariant& SafeArrayOfPoints); - - /* - Method AddShape - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddShape(Office::MsoAutoShapeType Type, double Left, double Top, double Width, double Height); - - /* - Method AddTextEffect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddTextEffect(Office::MsoPresetTextEffect PresetTextEffect, const QString& Text, const QString& FontName, double FontSize, Office::MsoTriState FontBold, Office::MsoTriState FontItalic, double Left, double Top); - - /* - Method AddTextbox - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddTextbox(Office::MsoTextOrientation Orientation, double Left, double Top, double Width, double Height); - - /* - Method BuildFreeform - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::FreeformBuilder* BuildFreeform(Office::MsoEditingType EditingType, double X1, double Y1); - - /* - Method Item - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* Item(const QVariant& Index); - - /* - Method Range - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ShapeRange* Range(const QVariant& Index); - - /* - Method SelectAll - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SelectAll(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT TextEffectFormat : public QAxObject -{ -public: - TextEffectFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Alignment - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTextEffectAlignment Alignment() const; //Returns the value of Alignment - inline void SetAlignment(Office::MsoTextEffectAlignment value); //Sets the value of the Alignment property - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property FontBold - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState FontBold() const; //Returns the value of FontBold - inline void SetFontBold(Office::MsoTriState value); //Sets the value of the FontBold property - - /* - Property FontItalic - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState FontItalic() const; //Returns the value of FontItalic - inline void SetFontItalic(Office::MsoTriState value); //Sets the value of the FontItalic property - - /* - Property FontName - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString FontName() const; //Returns the value of FontName - inline void SetFontName(const QString& value); //Sets the value of the FontName property - - /* - Property FontSize - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double FontSize() const; //Returns the value of FontSize - inline void SetFontSize(double value); //Sets the value of the FontSize property - - /* - Property KernedPairs - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState KernedPairs() const; //Returns the value of KernedPairs - inline void SetKernedPairs(Office::MsoTriState value); //Sets the value of the KernedPairs property - - /* - Property NormalizedHeight - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState NormalizedHeight() const; //Returns the value of NormalizedHeight - inline void SetNormalizedHeight(Office::MsoTriState value); //Sets the value of the NormalizedHeight property - - /* - Property Parent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property PresetShape - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoPresetTextEffectShape PresetShape() const; //Returns the value of PresetShape - inline void SetPresetShape(Office::MsoPresetTextEffectShape value); //Sets the value of the PresetShape property - - /* - Property PresetTextEffect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoPresetTextEffect PresetTextEffect() const; //Returns the value of PresetTextEffect - inline void SetPresetTextEffect(Office::MsoPresetTextEffect value); //Sets the value of the PresetTextEffect property - - /* - Property RotatedChars - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState RotatedChars() const; //Returns the value of RotatedChars - inline void SetRotatedChars(Office::MsoTriState value); //Sets the value of the RotatedChars property - - /* - Property Text - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Text() const; //Returns the value of Text - inline void SetText(const QString& value); //Sets the value of the Text property - - /* - Property Tracking - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double Tracking() const; //Returns the value of Tracking - inline void SetTracking(double value); //Sets the value of the Tracking property - - /* - Method ToggleVerticalText - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ToggleVerticalText(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT TextFrame : public QAxObject -{ -public: - TextFrame(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property MarginBottom - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double MarginBottom() const; //Returns the value of MarginBottom - inline void SetMarginBottom(double value); //Sets the value of the MarginBottom property - - /* - Property MarginLeft - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double MarginLeft() const; //Returns the value of MarginLeft - inline void SetMarginLeft(double value); //Sets the value of the MarginLeft property - - /* - Property MarginRight - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double MarginRight() const; //Returns the value of MarginRight - inline void SetMarginRight(double value); //Sets the value of the MarginRight property - - /* - Property MarginTop - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double MarginTop() const; //Returns the value of MarginTop - inline void SetMarginTop(double value); //Sets the value of the MarginTop property - - /* - Property Orientation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTextOrientation Orientation() const; //Returns the value of Orientation - inline void SetOrientation(Office::MsoTextOrientation value); //Sets the value of the Orientation property - - /* - Property Parent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT ThreeDFormat : public QAxObject -{ -public: - ThreeDFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Depth - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double Depth() const; //Returns the value of Depth - inline void SetDepth(double value); //Sets the value of the Depth property - - /* - Property ExtrusionColor - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ColorFormat* ExtrusionColor() const; //Returns the value of ExtrusionColor - - /* - Property ExtrusionColorType - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoExtrusionColorType ExtrusionColorType() const; //Returns the value of ExtrusionColorType - inline void SetExtrusionColorType(Office::MsoExtrusionColorType value); //Sets the value of the ExtrusionColorType property - - /* - Property Parent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Perspective - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState Perspective() const; //Returns the value of Perspective - inline void SetPerspective(Office::MsoTriState value); //Sets the value of the Perspective property - - /* - Property PresetExtrusionDirection - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoPresetExtrusionDirection PresetExtrusionDirection() const; //Returns the value of PresetExtrusionDirection - - /* - Property PresetLightingDirection - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoPresetLightingDirection PresetLightingDirection() const; //Returns the value of PresetLightingDirection - inline void SetPresetLightingDirection(Office::MsoPresetLightingDirection value); //Sets the value of the PresetLightingDirection property - - /* - Property PresetLightingSoftness - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoPresetLightingSoftness PresetLightingSoftness() const; //Returns the value of PresetLightingSoftness - inline void SetPresetLightingSoftness(Office::MsoPresetLightingSoftness value); //Sets the value of the PresetLightingSoftness property - - /* - Property PresetMaterial - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoPresetMaterial PresetMaterial() const; //Returns the value of PresetMaterial - inline void SetPresetMaterial(Office::MsoPresetMaterial value); //Sets the value of the PresetMaterial property - - /* - Property PresetThreeDFormat - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoPresetThreeDFormat PresetThreeDFormat() const; //Returns the value of PresetThreeDFormat - - /* - Property RotationX - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double RotationX() const; //Returns the value of RotationX - inline void SetRotationX(double value); //Sets the value of the RotationX property - - /* - Property RotationY - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double RotationY() const; //Returns the value of RotationY - inline void SetRotationY(double value); //Sets the value of the RotationY property - - /* - Property Visible - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState Visible() const; //Returns the value of Visible - inline void SetVisible(Office::MsoTriState value); //Sets the value of the Visible property - - /* - Method IncrementRotationX - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void IncrementRotationX(double Increment); - - /* - Method IncrementRotationY - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void IncrementRotationY(double Increment); - - /* - Method ResetRotation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ResetRotation(); - - /* - Method SetExtrusionDirection - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetExtrusionDirection(Office::MsoPresetExtrusionDirection PresetExtrusionDirection); - - /* - Method SetThreeDFormat - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetThreeDFormat(Office::MsoPresetThreeDFormat PresetThreeDFormat); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT IMsoDispCagNotifySink : public QAxObject -{ -public: - IMsoDispCagNotifySink(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Method InsertClip - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void InsertClip(IUnknown* pClipMoniker, IUnknown* pItemMoniker); - - /* - Method WindowIsClosing - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void WindowIsClosing(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT Balloon : public QAxObject -{ -public: - Balloon(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Animation - - For more information, see help context 201009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoAnimationType Animation() const; //Returns the value of Animation - inline void SetAnimation(Office::MsoAnimationType value); //Sets the value of the Animation property - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property BalloonType - - For more information, see help context 201004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoBalloonType BalloonType() const; //Returns the value of BalloonType - inline void SetBalloonType(Office::MsoBalloonType value); //Sets the value of the BalloonType property - - /* - Property Button - - For more information, see help context 201010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoButtonSetType Button() const; //Returns the value of Button - inline void SetButton(Office::MsoButtonSetType value); //Sets the value of the Button property - - /* - Property Callback - - For more information, see help context 201011 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Callback() const; //Returns the value of Callback - inline void SetCallback(const QString& value); //Sets the value of the Callback property - - /* - Property Checkboxes - - For more information, see help context 201002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Checkboxes() const; //Returns the value of Checkboxes - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Heading - - For more information, see help context 201006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Heading() const; //Returns the value of Heading - inline void SetHeading(const QString& value); //Sets the value of the Heading property - - /* - Property Icon - - For more information, see help context 201005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoIconType Icon() const; //Returns the value of Icon - inline void SetIcon(Office::MsoIconType value); //Sets the value of the Icon property - - /* - Property Labels - - For more information, see help context 201003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Labels() const; //Returns the value of Labels - - /* - Property Mode - - For more information, see help context 201008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoModeType Mode() const; //Returns the value of Mode - inline void SetMode(Office::MsoModeType value); //Sets the value of the Mode property - - /* - Property Name - - For more information, see help context 201014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Name() const; //Returns the value of Name - - /* - Property Parent - - For more information, see help context 201001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Private - - For more information, see help context 201012 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Private() const; //Returns the value of Private - inline void SetPrivate(int value); //Sets the value of the Private property - - /* - Property Text - - For more information, see help context 201007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Text() const; //Returns the value of Text - inline void SetText(const QString& value); //Sets the value of the Text property - - /* - Method Close - - For more information, see help context 201016 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Close(); - - /* - Method SetAvoidRectangle - - For more information, see help context 201013 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetAvoidRectangle(int Left, int Top, int Right, int Bottom); - - /* - Method Show - - For more information, see help context 201015 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline MsoBalloonButtonType Show(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT BalloonCheckboxes : public QAxObject -{ -public: - BalloonCheckboxes(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 202004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - inline void SetCount(int value); //Sets the value of the Count property - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Name - - For more information, see help context 202001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Name() const; //Returns the value of Name - - /* - Property Parent - - For more information, see help context 202002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 202005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 202003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Item(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT BalloonCheckbox : public QAxObject -{ -public: - BalloonCheckbox(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Checked - - For more information, see help context 203004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Checked() const; //Returns the value of Checked - inline void SetChecked(bool value); //Sets the value of the Checked property - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Item - - For more information, see help context 203001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Item() const; //Returns the value of Item - - /* - Property Name - - For more information, see help context 203002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Name() const; //Returns the value of Name - - /* - Property Parent - - For more information, see help context 203003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Text - - For more information, see help context 203005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Text() const; //Returns the value of Text - inline void SetText(const QString& value); //Sets the value of the Text property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT BalloonLabels : public QAxObject -{ -public: - BalloonLabels(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 204004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - inline void SetCount(int value); //Sets the value of the Count property - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Name - - For more information, see help context 204001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Name() const; //Returns the value of Name - - /* - Property Parent - - For more information, see help context 204002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 204005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 204003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Item(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT BalloonLabel : public QAxObject -{ -public: - BalloonLabel(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Item - - For more information, see help context 205001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Item() const; //Returns the value of Item - - /* - Property Name - - For more information, see help context 205002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Name() const; //Returns the value of Name - - /* - Property Parent - - For more information, see help context 205003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Text - - For more information, see help context 205004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Text() const; //Returns the value of Text - inline void SetText(const QString& value); //Sets the value of the Text property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT AnswerWizardFiles : public QAxObject -{ -public: - AnswerWizardFiles(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 226003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 226001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Method Add - - For more information, see help context 226004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Add(const QString& FileName); - - /* - Method Delete - - For more information, see help context 226005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(const QString& FileName); - - /* - Method Item - - For more information, see help context 226002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Item(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT AnswerWizard : public QAxObject -{ -public: - AnswerWizard(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Files - - For more information, see help context 227002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::AnswerWizardFiles* Files() const; //Returns the value of Files - - /* - Property Parent - - For more information, see help context 227001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Method ClearFileList - - For more information, see help context 227003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ClearFileList(); - - /* - Method ResetFileList - - For more information, see help context 227004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ResetFileList(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT Assistant : public QAxObject -{ -public: - Assistant(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Animation - - For more information, see help context 200013 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoAnimationType Animation() const; //Returns the value of Animation - inline void SetAnimation(Office::MsoAnimationType value); //Sets the value of the Animation property - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property AssistWithAlerts - - For more information, see help context 200017 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool AssistWithAlerts() const; //Returns the value of AssistWithAlerts - inline void SetAssistWithAlerts(bool value); //Sets the value of the AssistWithAlerts property - - /* - Property AssistWithHelp - - For more information, see help context 200015 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool AssistWithHelp() const; //Returns the value of AssistWithHelp - inline void SetAssistWithHelp(bool value); //Sets the value of the AssistWithHelp property - - /* - Property AssistWithWizards - - For more information, see help context 200016 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool AssistWithWizards() const; //Returns the value of AssistWithWizards - inline void SetAssistWithWizards(bool value); //Sets the value of the AssistWithWizards property - - /* - Property BalloonError - - For more information, see help context 200011 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoBalloonErrorType BalloonError() const; //Returns the value of BalloonError - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property FeatureTips - - For more information, see help context 200020 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool FeatureTips() const; //Returns the value of FeatureTips - inline void SetFeatureTips(bool value); //Sets the value of the FeatureTips property - - /* - Property FileName - - For more information, see help context 200028 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString FileName() const; //Returns the value of FileName - inline void SetFileName(const QString& value); //Sets the value of the FileName property - - /* - Property GuessHelp - - For more information, see help context 200025 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool GuessHelp() const; //Returns the value of GuessHelp - inline void SetGuessHelp(bool value); //Sets the value of the GuessHelp property - - /* - Property HighPriorityTips - - For more information, see help context 200023 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool HighPriorityTips() const; //Returns the value of HighPriorityTips - inline void SetHighPriorityTips(bool value); //Sets the value of the HighPriorityTips property - - /* - Property Item - - For more information, see help context 200027 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Item() const; //Returns the value of Item - - /* - Property KeyboardShortcutTips - - For more information, see help context 200022 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool KeyboardShortcutTips() const; //Returns the value of KeyboardShortcutTips - inline void SetKeyboardShortcutTips(bool value); //Sets the value of the KeyboardShortcutTips property - - /* - Property Left - - For more information, see help context 200004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Left() const; //Returns the value of Left - inline void SetLeft(int value); //Sets the value of the Left property - - /* - Property MouseTips - - For more information, see help context 200021 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool MouseTips() const; //Returns the value of MouseTips - inline void SetMouseTips(bool value); //Sets the value of the MouseTips property - - /* - Property MoveWhenInTheWay - - For more information, see help context 200018 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool MoveWhenInTheWay() const; //Returns the value of MoveWhenInTheWay - inline void SetMoveWhenInTheWay(bool value); //Sets the value of the MoveWhenInTheWay property - - /* - Property Name - - For more information, see help context 200029 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Name() const; //Returns the value of Name - - /* - Property NewBalloon - - For more information, see help context 200010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Balloon* NewBalloon() const; //Returns the value of NewBalloon - - /* - Property On - - For more information, see help context 200030 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool On() const; //Returns the value of On - inline void SetOn(bool value); //Sets the value of the On property - - /* - Property Parent - - For more information, see help context 200001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Reduced - - For more information, see help context 200014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Reduced() const; //Returns the value of Reduced - inline void SetReduced(bool value); //Sets the value of the Reduced property - - /* - Property SearchWhenProgramming - - For more information, see help context 200026 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool SearchWhenProgramming() const; //Returns the value of SearchWhenProgramming - inline void SetSearchWhenProgramming(bool value); //Sets the value of the SearchWhenProgramming property - - /* - Property Sounds - - For more information, see help context 200019 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Sounds() const; //Returns the value of Sounds - inline void SetSounds(bool value); //Sets the value of the Sounds property - - /* - Property TipOfDay - - For more information, see help context 200024 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool TipOfDay() const; //Returns the value of TipOfDay - inline void SetTipOfDay(bool value); //Sets the value of the TipOfDay property - - /* - Property Top - - For more information, see help context 200003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Top() const; //Returns the value of Top - inline void SetTop(int value); //Sets the value of the Top property - - /* - Property Visible - - For more information, see help context 200012 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Visible() const; //Returns the value of Visible - inline void SetVisible(bool value); //Sets the value of the Visible property - - /* - Method ActivateWizard - - For more information, see help context 200008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ActivateWizard(int WizardID, Office::MsoWizardActType act); - - /* - Method ActivateWizard - - For more information, see help context 200008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ActivateWizard(int WizardID, Office::MsoWizardActType act, const QVariant& Animation); - - /* - Method DoAlert - - For more information, see help context 200031 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int DoAlert(const QString& bstrAlertTitle, const QString& bstrAlertText, Office::MsoAlertButtonType alb, Office::MsoAlertIconType alc, Office::MsoAlertDefaultType ald, Office::MsoAlertCancelType alq, bool varfSysAlert); - - /* - Method EndWizard - - For more information, see help context 200007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void EndWizard(int WizardID, bool varfSuccess); - - /* - Method EndWizard - - For more information, see help context 200007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void EndWizard(int WizardID, bool varfSuccess, const QVariant& Animation); - - /* - Method Help - - For more information, see help context 200005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Help(); - - /* - Method Move - - For more information, see help context 200002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Move(int xLeft, int yTop); - - /* - Method ResetTips - - For more information, see help context 200009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ResetTips(); - - /* - Method StartWizard - - For more information, see help context 200006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int StartWizard(bool On, const QString& Callback, int PrivateX); - - /* - Method StartWizard - - For more information, see help context 200006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int StartWizard(bool On, const QString& Callback, int PrivateX, const QVariant& Animation); - - /* - Method StartWizard - - For more information, see help context 200006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int StartWizard(bool On, const QString& Callback, int PrivateX, const QVariant& Animation, const QVariant& CustomTeaser); - - /* - Method StartWizard - - For more information, see help context 200006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int StartWizard(bool On, const QString& Callback, int PrivateX, const QVariant& Animation, const QVariant& CustomTeaser, const QVariant& Top); - - /* - Method StartWizard - - For more information, see help context 200006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int StartWizard(bool On, const QString& Callback, int PrivateX, const QVariant& Animation, const QVariant& CustomTeaser, const QVariant& Top, const QVariant& Left); - - /* - Method StartWizard - - For more information, see help context 200006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int StartWizard(bool On, const QString& Callback, int PrivateX, const QVariant& Animation, const QVariant& CustomTeaser, const QVariant& Top, const QVariant& Left, const QVariant& Bottom); - - /* - Method StartWizard - - For more information, see help context 200006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int StartWizard(bool On, const QString& Callback, int PrivateX, const QVariant& Animation, const QVariant& CustomTeaser, const QVariant& Top, const QVariant& Left, const QVariant& Bottom, const QVariant& Right); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -// stub for vtable-only interface -class DocumentProperty : public QAxObject {}; - -// stub for vtable-only interface -class DocumentProperties : public QAxObject {}; - -class OFFICE_EXPORT IFoundFiles : public QAxObject -{ -public: - IFoundFiles(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Count - - For more information, see help context 211002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 211001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Item(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT IFind : public QAxObject -{ -public: - IFind(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Author - - For more information, see help context 212005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Author() const; //Returns the value of Author - inline void SetAuthor(const QString& value); //Sets the value of the Author property - - /* - Property DateCreatedFrom - - For more information, see help context 212015 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant DateCreatedFrom() const; //Returns the value of DateCreatedFrom - inline void SetDateCreatedFrom(const QVariant& value); //Sets the value of the DateCreatedFrom property - - /* - Property DateCreatedTo - - For more information, see help context 212016 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant DateCreatedTo() const; //Returns the value of DateCreatedTo - inline void SetDateCreatedTo(const QVariant& value); //Sets the value of the DateCreatedTo property - - /* - Property DateSavedFrom - - For more information, see help context 212012 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant DateSavedFrom() const; //Returns the value of DateSavedFrom - inline void SetDateSavedFrom(const QVariant& value); //Sets the value of the DateSavedFrom property - - /* - Property DateSavedTo - - For more information, see help context 212013 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant DateSavedTo() const; //Returns the value of DateSavedTo - inline void SetDateSavedTo(const QVariant& value); //Sets the value of the DateSavedTo property - - /* - Property FileType - - For more information, see help context 212027 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int FileType() const; //Returns the value of FileType - inline void SetFileType(int value); //Sets the value of the FileType property - - /* - Property Keywords - - For more information, see help context 212006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Keywords() const; //Returns the value of Keywords - inline void SetKeywords(const QString& value); //Sets the value of the Keywords property - - /* - Property ListBy - - For more information, see help context 212019 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoFileFindListBy ListBy() const; //Returns the value of ListBy - inline void SetListBy(Office::MsoFileFindListBy value); //Sets the value of the ListBy property - - /* - Property MatchCase - - For more information, see help context 212009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool MatchCase() const; //Returns the value of MatchCase - inline void SetMatchCase(bool value); //Sets the value of the MatchCase property - - /* - Property Name - - For more information, see help context 212002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Name() const; //Returns the value of Name - inline void SetName(const QString& value); //Sets the value of the Name property - - /* - Property Options - - For more information, see help context 212008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoFileFindOptions Options() const; //Returns the value of Options - inline void SetOptions(Office::MsoFileFindOptions value); //Sets the value of the Options property - - /* - Property PatternMatch - - For more information, see help context 212011 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool PatternMatch() const; //Returns the value of PatternMatch - inline void SetPatternMatch(bool value); //Sets the value of the PatternMatch property - - /* - Property Results - - For more information, see help context 212021 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::IFoundFiles* Results() const; //Returns the value of Results - - /* - Property SavedBy - - For more information, see help context 212014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString SavedBy() const; //Returns the value of SavedBy - inline void SetSavedBy(const QString& value); //Sets the value of the SavedBy property - - /* - Property SearchPath - - For more information, see help context 212001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString SearchPath() const; //Returns the value of SearchPath - inline void SetSearchPath(const QString& value); //Sets the value of the SearchPath property - - /* - Property SelectedFile - - For more information, see help context 212020 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int SelectedFile() const; //Returns the value of SelectedFile - inline void SetSelectedFile(int value); //Sets the value of the SelectedFile property - - /* - Property SortBy - - For more information, see help context 212018 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoFileFindSortBy SortBy() const; //Returns the value of SortBy - inline void SetSortBy(Office::MsoFileFindSortBy value); //Sets the value of the SortBy property - - /* - Property SubDir - - For more information, see help context 212003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool SubDir() const; //Returns the value of SubDir - inline void SetSubDir(bool value); //Sets the value of the SubDir property - - /* - Property Subject - - For more information, see help context 212007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Subject() const; //Returns the value of Subject - inline void SetSubject(const QString& value); //Sets the value of the Subject property - - /* - Property Text - - For more information, see help context 212010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Text() const; //Returns the value of Text - inline void SetText(const QString& value); //Sets the value of the Text property - - /* - Property Title - - For more information, see help context 212004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Title() const; //Returns the value of Title - inline void SetTitle(const QString& value); //Sets the value of the Title property - - /* - Property View - - For more information, see help context 212017 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoFileFindView View() const; //Returns the value of View - inline void SetView(Office::MsoFileFindView value); //Sets the value of the View property - - /* - Method Delete - - For more information, see help context 212026 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(const QString& bstrQueryName); - - /* - Method Execute - - For more information, see help context 212023 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Execute(); - - /* - Method Load - - For more information, see help context 212024 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Load(const QString& bstrQueryName); - - /* - Method Save - - For more information, see help context 212025 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Save(const QString& bstrQueryName); - - /* - Method Show - - For more information, see help context 212022 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Show(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT FoundFiles : public QAxObject -{ -public: - FoundFiles(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 213002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 213001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Item(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT PropertyTest : public QAxObject -{ -public: - PropertyTest(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Condition - - For more information, see help context 214002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoCondition Condition() const; //Returns the value of Condition - - /* - Property Connector - - For more information, see help context 214005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoConnector Connector() const; //Returns the value of Connector - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Name - - For more information, see help context 214001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Name() const; //Returns the value of Name - - /* - Property SecondValue - - For more information, see help context 214004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant SecondValue() const; //Returns the value of SecondValue - - /* - Property Value - - For more information, see help context 214003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant Value() const; //Returns the value of Value - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT PropertyTests : public QAxObject -{ -public: - PropertyTests(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 215002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 215003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Add(const QString& Name, Office::MsoCondition Condition); - - /* - Method Add - - For more information, see help context 215003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Add(const QString& Name, Office::MsoCondition Condition, const QVariant& Value); - - /* - Method Add - - For more information, see help context 215003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Add(const QString& Name, Office::MsoCondition Condition, const QVariant& Value, const QVariant& SecondValue); - - /* - Method Add - - For more information, see help context 215003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Add(const QString& Name, Office::MsoCondition Condition, const QVariant& Value, const QVariant& SecondValue, Office::MsoConnector Connector); - - /* - Method Item - - For more information, see help context 215001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::PropertyTest* Item(int Index); - - /* - Method Remove - - For more information, see help context 215004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Remove(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT FileSearch : public QAxObject -{ -public: - FileSearch(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property FileName - - For more information, see help context 216004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString FileName() const; //Returns the value of FileName - inline void SetFileName(const QString& value); //Sets the value of the FileName property - - /* - Property FileType - - For more information, see help context 216005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoFileType FileType() const; //Returns the value of FileType - inline void SetFileType(Office::MsoFileType value); //Sets the value of the FileType property - - /* - Property FileTypes - - For more information, see help context 216016 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::FileTypes* FileTypes() const; //Returns the value of FileTypes - - /* - Property FoundFiles - - For more information, see help context 216011 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::FoundFiles* FoundFiles() const; //Returns the value of FoundFiles - - /* - Property LastModified - - For more information, see help context 216006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoLastModified LastModified() const; //Returns the value of LastModified - inline void SetLastModified(Office::MsoLastModified value); //Sets the value of the LastModified property - - /* - Property LookIn - - For more information, see help context 216008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString LookIn() const; //Returns the value of LookIn - inline void SetLookIn(const QString& value); //Sets the value of the LookIn property - - /* - Property MatchAllWordForms - - For more information, see help context 216003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool MatchAllWordForms() const; //Returns the value of MatchAllWordForms - inline void SetMatchAllWordForms(bool value); //Sets the value of the MatchAllWordForms property - - /* - Property MatchTextExactly - - For more information, see help context 216002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool MatchTextExactly() const; //Returns the value of MatchTextExactly - inline void SetMatchTextExactly(bool value); //Sets the value of the MatchTextExactly property - - /* - Property PropertyTests - - For more information, see help context 216012 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::PropertyTests* PropertyTests() const; //Returns the value of PropertyTests - - /* - Property SearchFolders - - For more information, see help context 216014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SearchFolders* SearchFolders() const; //Returns the value of SearchFolders - - /* - Property SearchScopes - - For more information, see help context 216013 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SearchScopes* SearchScopes() const; //Returns the value of SearchScopes - - /* - Property SearchSubFolders - - For more information, see help context 216001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool SearchSubFolders() const; //Returns the value of SearchSubFolders - inline void SetSearchSubFolders(bool value); //Sets the value of the SearchSubFolders property - - /* - Property TextOrProperty - - For more information, see help context 216007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString TextOrProperty() const; //Returns the value of TextOrProperty - inline void SetTextOrProperty(const QString& value); //Sets the value of the TextOrProperty property - - /* - Method Execute - - For more information, see help context 216009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Execute(); - - /* - Method Execute - - For more information, see help context 216009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Execute(Office::MsoSortBy SortBy); - - /* - Method Execute - - For more information, see help context 216009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Execute(Office::MsoSortBy SortBy, Office::MsoSortOrder SortOrder); - - /* - Method Execute - - For more information, see help context 216009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Execute(Office::MsoSortBy SortBy, Office::MsoSortOrder SortOrder, bool AlwaysAccurate); - - /* - Method NewSearch - - For more information, see help context 216010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void NewSearch(); - - /* - Method RefreshScopes - - For more information, see help context 216017 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void RefreshScopes(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT COMAddIn : public QAxObject -{ -public: - COMAddIn(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Connect - - For more information, see help context 219005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Connect() const; //Returns the value of Connect - inline void SetConnect(bool value); //Sets the value of the Connect property - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Description - - For more information, see help context 219001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Description() const; //Returns the value of Description - inline void SetDescription(const QString& value); //Sets the value of the Description property - - /* - Property Guid - - For more information, see help context 219004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Guid() const; //Returns the value of Guid - - /* - Property Object - - For more information, see help context 219007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Object() const; //Returns the value of Object - inline void SetObject(IDispatch* value); //Sets the value of the Object property - - /* - Property Parent - - For more information, see help context 219009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property ProgId - - For more information, see help context 219003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString ProgId() const; //Returns the value of ProgId - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT COMAddIns : public QAxObject -{ -public: - COMAddIns(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 220002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 220005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 220003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 220001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::COMAddIn* Item(QVariant& Index); - - /* - Method SetAppModal - - For more information, see help context 220006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetAppModal(bool varfModal); - - /* - Method Update - - For more information, see help context 220004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Update(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT LanguageSettings : public QAxObject -{ -public: - LanguageSettings(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 231003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Method LanguageID - - For more information, see help context 231001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int LanguageID(Office::MsoAppLanguageID Id); - - /* - Method LanguagePreferredForEditing - - For more information, see help context 231002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool LanguagePreferredForEditing(Office::MsoLanguageID lid); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT ICommandBarsEvents : public QAxObject -{ -public: - ICommandBarsEvents(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Method OnUpdate - - For more information, see help context 228001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void OnUpdate(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -// skipping event interface _CommandBarsEvents - -class OFFICE_EXPORT ICommandBarComboBoxEvents : public QAxObject -{ -public: - ICommandBarComboBoxEvents(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Method Change - - For more information, see help context 229001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Change(Office::CommandBarComboBox* Ctrl); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -// skipping event interface _CommandBarComboBoxEvents - -class OFFICE_EXPORT ICommandBarButtonEvents : public QAxObject -{ -public: - ICommandBarButtonEvents(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Method Click - - For more information, see help context 230001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Click(Office::CommandBarButton* Ctrl, bool& CancelDefault); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -// skipping event interface _CommandBarButtonEvents - -class OFFICE_EXPORT WebPageFont : public QAxObject -{ -public: - WebPageFont(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property FixedWidthFont - - For more information, see help context 224003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString FixedWidthFont() const; //Returns the value of FixedWidthFont - inline void SetFixedWidthFont(const QString& value); //Sets the value of the FixedWidthFont property - - /* - Property FixedWidthFontSize - - For more information, see help context 224004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double FixedWidthFontSize() const; //Returns the value of FixedWidthFontSize - inline void SetFixedWidthFontSize(double value); //Sets the value of the FixedWidthFontSize property - - /* - Property ProportionalFont - - For more information, see help context 224001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString ProportionalFont() const; //Returns the value of ProportionalFont - inline void SetProportionalFont(const QString& value); //Sets the value of the ProportionalFont property - - /* - Property ProportionalFontSize - - For more information, see help context 224002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline double ProportionalFontSize() const; //Returns the value of ProportionalFontSize - inline void SetProportionalFontSize(double value); //Sets the value of the ProportionalFontSize property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT WebPageFonts : public QAxObject -{ -public: - WebPageFonts(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 225001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 225002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::WebPageFont* Item(Office::MsoCharacterSet Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT HTMLProjectItem : public QAxObject -{ -public: - HTMLProjectItem(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property IsOpen - - For more information, see help context 221002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool IsOpen() const; //Returns the value of IsOpen - - /* - Property Name - - For more information, see help context 221001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Name() const; //Returns the value of Name - - /* - Property Parent - - For more information, see help context 221008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Text - - For more information, see help context 221006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Text() const; //Returns the value of Text - inline void SetText(const QString& value); //Sets the value of the Text property - - /* - Method LoadFromFile - - For more information, see help context 221003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void LoadFromFile(const QString& FileName); - - /* - Method Open - - For more information, see help context 221004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Open(); - - /* - Method Open - - For more information, see help context 221004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Open(Office::MsoHTMLProjectOpen OpenKind); - - /* - Method SaveCopyAs - - For more information, see help context 221005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SaveCopyAs(const QString& FileName); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT HTMLProjectItems : public QAxObject -{ -public: - HTMLProjectItems(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 222002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 222004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 222003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 222001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::HTMLProjectItem* Item(QVariant& Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT HTMLProject : public QAxObject -{ -public: - HTMLProject(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property HTMLProjectItems - - For more information, see help context 223004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::HTMLProjectItems* HTMLProjectItems() const; //Returns the value of HTMLProjectItems - - /* - Property Parent - - For more information, see help context 223005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property State - - For more information, see help context 223001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoHTMLProjectState State() const; //Returns the value of State - - /* - Method Open - - For more information, see help context 223006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Open(); - - /* - Method Open - - For more information, see help context 223006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Open(Office::MsoHTMLProjectOpen OpenKind); - - /* - Method RefreshDocument - - For more information, see help context 223003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void RefreshDocument(); - - /* - Method RefreshDocument - - For more information, see help context 223003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void RefreshDocument(bool Refresh); - - /* - Method RefreshProject - - For more information, see help context 223002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void RefreshProject(); - - /* - Method RefreshProject - - For more information, see help context 223002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void RefreshProject(bool Refresh); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT MsoDebugOptions : public QAxObject -{ -public: - MsoDebugOptions(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property FeatureReports - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int FeatureReports() const; //Returns the value of FeatureReports - inline void SetFeatureReports(int value); //Sets the value of the FeatureReports property - - /* - Property OutputToDebugger - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool OutputToDebugger() const; //Returns the value of OutputToDebugger - inline void SetOutputToDebugger(bool value); //Sets the value of the OutputToDebugger property - - /* - Property OutputToFile - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool OutputToFile() const; //Returns the value of OutputToFile - inline void SetOutputToFile(bool value); //Sets the value of the OutputToFile property - - /* - Property OutputToMessageBox - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool OutputToMessageBox() const; //Returns the value of OutputToMessageBox - inline void SetOutputToMessageBox(bool value); //Sets the value of the OutputToMessageBox property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT FileDialogSelectedItems : public QAxObject -{ -public: - FileDialogSelectedItems(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 253002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 253001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 253003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Item(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT FileDialogFilter : public QAxObject -{ -public: - FileDialogFilter(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Description - - For more information, see help context 254003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Description() const; //Returns the value of Description - - /* - Property Extensions - - For more information, see help context 254002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Extensions() const; //Returns the value of Extensions - - /* - Property Parent - - For more information, see help context 254001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT FileDialogFilters : public QAxObject -{ -public: - FileDialogFilters(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 255002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 255001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 255006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::FileDialogFilter* Add(const QString& Description, const QString& Extensions); - - /* - Method Add - - For more information, see help context 255006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::FileDialogFilter* Add(const QString& Description, const QString& Extensions, const QVariant& Position); - - /* - Method Clear - - For more information, see help context 255005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Clear(); - - /* - Method Delete - - For more information, see help context 255004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(); - - /* - Method Delete - - For more information, see help context 255004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(const QVariant& filter); - - /* - Method Item - - For more information, see help context 255003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::FileDialogFilter* Item(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT FileDialog : public QAxObject -{ -public: - FileDialog(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property AllowMultiSelect - - For more information, see help context 256006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool AllowMultiSelect() const; //Returns the value of AllowMultiSelect - inline void SetAllowMultiSelect(bool value); //Sets the value of the AllowMultiSelect property - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property ButtonName - - For more information, see help context 256005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString ButtonName() const; //Returns the value of ButtonName - inline void SetButtonName(const QString& value); //Sets the value of the ButtonName property - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property DialogType - - For more information, see help context 256010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoFileDialogType DialogType() const; //Returns the value of DialogType - - /* - Property FilterIndex - - For more information, see help context 256003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int FilterIndex() const; //Returns the value of FilterIndex - inline void SetFilterIndex(int value); //Sets the value of the FilterIndex property - - /* - Property Filters - - For more information, see help context 256002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::FileDialogFilters* Filters() const; //Returns the value of Filters - - /* - Property InitialFileName - - For more information, see help context 256008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString InitialFileName() const; //Returns the value of InitialFileName - inline void SetInitialFileName(const QString& value); //Sets the value of the InitialFileName property - - /* - Property InitialView - - For more information, see help context 256007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoFileDialogView InitialView() const; //Returns the value of InitialView - inline void SetInitialView(Office::MsoFileDialogView value); //Sets the value of the InitialView property - - /* - Property Item - - For more information, see help context 256011 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Item() const; //Returns the value of Item - - /* - Property Parent - - For more information, see help context 256001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property SelectedItems - - For more information, see help context 256009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::FileDialogSelectedItems* SelectedItems() const; //Returns the value of SelectedItems - - /* - Property Title - - For more information, see help context 256004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Title() const; //Returns the value of Title - inline void SetTitle(const QString& value); //Sets the value of the Title property - - /* - Method Execute - - For more information, see help context 256013 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Execute(); - - /* - Method Show - - For more information, see help context 256012 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Show(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT SignatureSet : public QAxObject -{ -public: - SignatureSet(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 247001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 247005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 247003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Signature* Add(); - - /* - Method Commit - - For more information, see help context 247004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Commit(); - - /* - Method Item - - For more information, see help context 247002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Signature* Item(int iSig); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT Signature : public QAxObject -{ -public: - Signature(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property AttachCertificate - - For more information, see help context 248005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool AttachCertificate() const; //Returns the value of AttachCertificate - inline void SetAttachCertificate(bool value); //Sets the value of the AttachCertificate property - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property ExpireDate - - For more information, see help context 248003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant ExpireDate() const; //Returns the value of ExpireDate - - /* - Property IsCertificateExpired - - For more information, see help context 248008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool IsCertificateExpired() const; //Returns the value of IsCertificateExpired - - /* - Property IsCertificateRevoked - - For more information, see help context 248009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool IsCertificateRevoked() const; //Returns the value of IsCertificateRevoked - - /* - Property IsValid - - For more information, see help context 248004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool IsValid() const; //Returns the value of IsValid - - /* - Property Issuer - - For more information, see help context 248002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Issuer() const; //Returns the value of Issuer - - /* - Property Parent - - For more information, see help context 248007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property SignDate - - For more information, see help context 248010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant SignDate() const; //Returns the value of SignDate - - /* - Property Signer - - For more information, see help context 248001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Signer() const; //Returns the value of Signer - - /* - Method Delete - - For more information, see help context 248006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT IMsoEnvelopeVB : public QAxObject -{ -public: - IMsoEnvelopeVB(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property CommandBars - - For more information, see help context 11005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* CommandBars() const; //Returns the value of CommandBars - - /* - Property Introduction - - For more information, see help context 11001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Introduction() const; //Returns the value of Introduction - inline void SetIntroduction(const QString& value); //Sets the value of the Introduction property - - /* - Property Item - - For more information, see help context 11003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Item() const; //Returns the value of Item - - /* - Property Parent - - For more information, see help context 11004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -// skipping event interface IMsoEnvelopeVBEvents - -class OFFICE_EXPORT FileTypes : public QAxObject -{ -public: - FileTypes(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 257002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 257003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Add(Office::MsoFileType FileType); - - /* - Method Item - - For more information, see help context 257001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline MsoFileType Item(int Index); - - /* - Method Remove - - For more information, see help context 257004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Remove(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT SearchFolders : public QAxObject -{ -public: - SearchFolders(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 258002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 258003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Add(Office::ScopeFolder* ScopeFolder); - - /* - Method Item - - For more information, see help context 258001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ScopeFolder* Item(int Index); - - /* - Method Remove - - For more information, see help context 258004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Remove(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT ScopeFolders : public QAxObject -{ -public: - ScopeFolders(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 249002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 249001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ScopeFolder* Item(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT ScopeFolder : public QAxObject -{ -public: - ScopeFolder(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Name - - For more information, see help context 259001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Name() const; //Returns the value of Name - - /* - Property Path - - For more information, see help context 259002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Path() const; //Returns the value of Path - - /* - Property ScopeFolders - - For more information, see help context 259003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ScopeFolders* ScopeFolders() const; //Returns the value of ScopeFolders - - /* - Method AddToSearchFolders - - For more information, see help context 259004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void AddToSearchFolders(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT SearchScope : public QAxObject -{ -public: - SearchScope(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property ScopeFolder - - For more information, see help context 251002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ScopeFolder* ScopeFolder() const; //Returns the value of ScopeFolder - - /* - Property Type - - For more information, see help context 251001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoSearchIn Type() const; //Returns the value of Type - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT SearchScopes : public QAxObject -{ -public: - SearchScopes(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 252002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 252001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SearchScope* Item(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT IMsoDiagram : public QAxObject -{ -public: - IMsoDiagram(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property AutoFormat - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState AutoFormat() const; //Returns the value of AutoFormat - inline void SetAutoFormat(Office::MsoTriState value); //Sets the value of the AutoFormat property - - /* - Property AutoLayout - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState AutoLayout() const; //Returns the value of AutoLayout - inline void SetAutoLayout(Office::MsoTriState value); //Sets the value of the AutoLayout property - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Nodes - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::DiagramNodes* Nodes() const; //Returns the value of Nodes - - /* - Property Parent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Reverse - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoTriState Reverse() const; //Returns the value of Reverse - inline void SetReverse(Office::MsoTriState value); //Sets the value of the Reverse property - - /* - Property Type - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoDiagramType Type() const; //Returns the value of Type - - /* - Method Convert - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Convert(Office::MsoDiagramType Type); - - /* - Method FitText - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void FitText(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT DiagramNodes : public QAxObject -{ -public: - DiagramNodes(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::DiagramNode* Item(const QVariant& Index); - - /* - Method SelectAll - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SelectAll(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT DiagramNodeChildren : public QAxObject -{ -public: - DiagramNodeChildren(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property FirstChild - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::DiagramNode* FirstChild() const; //Returns the value of FirstChild - - /* - Property LastChild - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::DiagramNode* LastChild() const; //Returns the value of LastChild - - /* - Property Parent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method AddNode - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::DiagramNode* AddNode(); - - /* - Method AddNode - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::DiagramNode* AddNode(const QVariant& Index); - - /* - Method AddNode - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::DiagramNode* AddNode(const QVariant& Index, Office::MsoDiagramNodeType NodeType); - - /* - Method Item - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::DiagramNode* Item(const QVariant& Index); - - /* - Method SelectAll - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SelectAll(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT DiagramNode : public QAxObject -{ -public: - DiagramNode(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Children - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::DiagramNodeChildren* Children() const; //Returns the value of Children - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Diagram - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::IMsoDiagram* Diagram() const; //Returns the value of Diagram - - /* - Property Layout - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoOrgChartLayoutType Layout() const; //Returns the value of Layout - inline void SetLayout(Office::MsoOrgChartLayoutType value); //Sets the value of the Layout property - - /* - Property Parent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Root - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::DiagramNode* Root() const; //Returns the value of Root - - /* - Property Shape - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* Shape() const; //Returns the value of Shape - - /* - Property TextShape - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* TextShape() const; //Returns the value of TextShape - - /* - Method AddNode - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::DiagramNode* AddNode(); - - /* - Method AddNode - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::DiagramNode* AddNode(Office::MsoRelativeNodePosition Pos); - - /* - Method AddNode - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::DiagramNode* AddNode(Office::MsoRelativeNodePosition Pos, Office::MsoDiagramNodeType NodeType); - - /* - Method CloneNode - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::DiagramNode* CloneNode(bool CopyChildren, Office::DiagramNode* TargetNode); - - /* - Method CloneNode - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::DiagramNode* CloneNode(bool CopyChildren, Office::DiagramNode* TargetNode, Office::MsoRelativeNodePosition Pos); - - /* - Method Delete - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(); - - /* - Method MoveNode - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void MoveNode(Office::DiagramNode* TargetNode, Office::MsoRelativeNodePosition Pos); - - /* - Method NextNode - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::DiagramNode* NextNode(); - - /* - Method PrevNode - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::DiagramNode* PrevNode(); - - /* - Method ReplaceNode - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ReplaceNode(Office::DiagramNode* TargetNode); - - /* - Method SwapNode - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SwapNode(Office::DiagramNode* TargetNode); - - /* - Method SwapNode - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SwapNode(Office::DiagramNode* TargetNode, bool SwapChildren); - - /* - Method TransferChildren - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void TransferChildren(Office::DiagramNode* ReceivingNode); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT CanvasShapes : public QAxObject -{ -public: - CanvasShapes(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Background - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* Background() const; //Returns the value of Background - - /* - Property Count - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method AddCallout - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddCallout(Office::MsoCalloutType Type, double Left, double Top, double Width, double Height); - - /* - Method AddConnector - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddConnector(Office::MsoConnectorType Type, double BeginX, double BeginY, double EndX, double EndY); - - /* - Method AddCurve - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddCurve(const QVariant& SafeArrayOfPoints); - - /* - Method AddLabel - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddLabel(Office::MsoTextOrientation Orientation, double Left, double Top, double Width, double Height); - - /* - Method AddLine - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddLine(double BeginX, double BeginY, double EndX, double EndY); - - /* - Method AddPicture - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddPicture(const QString& FileName, Office::MsoTriState LinkToFile, Office::MsoTriState SaveWithDocument, double Left, double Top); - - /* - Method AddPicture - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddPicture(const QString& FileName, Office::MsoTriState LinkToFile, Office::MsoTriState SaveWithDocument, double Left, double Top, double Width); - - /* - Method AddPicture - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddPicture(const QString& FileName, Office::MsoTriState LinkToFile, Office::MsoTriState SaveWithDocument, double Left, double Top, double Width, double Height); - - /* - Method AddPolyline - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddPolyline(const QVariant& SafeArrayOfPoints); - - /* - Method AddShape - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddShape(Office::MsoAutoShapeType Type, double Left, double Top, double Width, double Height); - - /* - Method AddTextEffect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddTextEffect(Office::MsoPresetTextEffect PresetTextEffect, const QString& Text, const QString& FontName, double FontSize, Office::MsoTriState FontBold, Office::MsoTriState FontItalic, double Left, double Top); - - /* - Method AddTextbox - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* AddTextbox(Office::MsoTextOrientation Orientation, double Left, double Top, double Width, double Height); - - /* - Method BuildFreeform - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::FreeformBuilder* BuildFreeform(Office::MsoEditingType EditingType, double X1, double Y1); - - /* - Method Item - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::Shape* Item(const QVariant& Index); - - /* - Method Range - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::ShapeRange* Range(const QVariant& Index); - - /* - Method SelectAll - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SelectAll(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT OfficeDataSourceObject : public QAxObject -{ -public: - OfficeDataSourceObject(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Columns - - For more information, see help context 232004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Columns() const; //Returns the value of Columns - - /* - Property ConnectString - - For more information, see help context 232001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString ConnectString() const; //Returns the value of ConnectString - inline void SetConnectString(const QString& value); //Sets the value of the ConnectString property - - /* - Property DataSource - - For more information, see help context 232003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString DataSource() const; //Returns the value of DataSource - inline void SetDataSource(const QString& value); //Sets the value of the DataSource property - - /* - Property Filters - - For more information, see help context 232010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Filters() const; //Returns the value of Filters - - /* - Property RowCount - - For more information, see help context 232005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int RowCount() const; //Returns the value of RowCount - - /* - Property Table - - For more information, see help context 232002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Table() const; //Returns the value of Table - inline void SetTable(const QString& value); //Sets the value of the Table property - - /* - Method ApplyFilter - - For more information, see help context 232009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ApplyFilter(); - - /* - Method Move - - For more information, see help context 232006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Move(Office::MsoMoveRow MsoMoveRow); - - /* - Method Move - - For more information, see help context 232006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Move(Office::MsoMoveRow MsoMoveRow, int RowNbr); - - /* - Method Open - - For more information, see help context 232007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Open(); - - /* - Method Open - - For more information, see help context 232007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Open(const QString& bstrSrc); - - /* - Method Open - - For more information, see help context 232007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Open(const QString& bstrSrc, const QString& bstrConnect); - - /* - Method Open - - For more information, see help context 232007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Open(const QString& bstrSrc, const QString& bstrConnect, const QString& bstrTable); - - /* - Method Open - - For more information, see help context 232007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Open(const QString& bstrSrc, const QString& bstrConnect, const QString& bstrTable, int fOpenExclusive); - - /* - Method Open - - For more information, see help context 232007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Open(const QString& bstrSrc, const QString& bstrConnect, const QString& bstrTable, int fOpenExclusive, int fNeverPrompt); - - /* - Method SetSortOrder - - For more information, see help context 232008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetSortOrder(const QString& SortField1); - - /* - Method SetSortOrder - - For more information, see help context 232008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetSortOrder(const QString& SortField1, bool SortAscending1); - - /* - Method SetSortOrder - - For more information, see help context 232008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetSortOrder(const QString& SortField1, bool SortAscending1, const QString& SortField2); - - /* - Method SetSortOrder - - For more information, see help context 232008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetSortOrder(const QString& SortField1, bool SortAscending1, const QString& SortField2, bool SortAscending2); - - /* - Method SetSortOrder - - For more information, see help context 232008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetSortOrder(const QString& SortField1, bool SortAscending1, const QString& SortField2, bool SortAscending2, const QString& SortField3); - - /* - Method SetSortOrder - - For more information, see help context 232008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetSortOrder(const QString& SortField1, bool SortAscending1, const QString& SortField2, bool SortAscending2, const QString& SortField3, bool SortAscending3); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT ODSOColumn : public QAxObject -{ -public: - ODSOColumn(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Index - - For more information, see help context 233001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Index() const; //Returns the value of Index - - /* - Property Name - - For more information, see help context 233002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Name() const; //Returns the value of Name - - /* - Property Parent - - For more information, see help context 233003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Value - - For more information, see help context 233004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Value() const; //Returns the value of Value - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT ODSOColumns : public QAxObject -{ -public: - ODSOColumns(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 234001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 234002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Method Item - - For more information, see help context 234003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Item(const QVariant& varIndex); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT ODSOFilter : public QAxObject -{ -public: - ODSOFilter(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Column - - For more information, see help context 240003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Column() const; //Returns the value of Column - inline void SetColumn(const QString& value); //Sets the value of the Column property - - /* - Property CompareTo - - For more information, see help context 240005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString CompareTo() const; //Returns the value of CompareTo - inline void SetCompareTo(const QString& value); //Sets the value of the CompareTo property - - /* - Property Comparison - - For more information, see help context 240004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoFilterComparison Comparison() const; //Returns the value of Comparison - inline void SetComparison(Office::MsoFilterComparison value); //Sets the value of the Comparison property - - /* - Property Conjunction - - For more information, see help context 240006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoFilterConjunction Conjunction() const; //Returns the value of Conjunction - inline void SetConjunction(Office::MsoFilterConjunction value); //Sets the value of the Conjunction property - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Index - - For more information, see help context 240001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Index() const; //Returns the value of Index - - /* - Property Parent - - For more information, see help context 240002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT ODSOFilters : public QAxObject -{ -public: - ODSOFilters(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 241001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 241002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Method Add - - For more information, see help context 241004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Add(const QString& Column, Office::MsoFilterComparison Comparison, Office::MsoFilterConjunction Conjunction); - - /* - Method Add - - For more information, see help context 241004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Add(const QString& Column, Office::MsoFilterComparison Comparison, Office::MsoFilterConjunction Conjunction, const QString& bstrCompareTo); - - /* - Method Add - - For more information, see help context 241004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Add(const QString& Column, Office::MsoFilterComparison Comparison, Office::MsoFilterConjunction Conjunction, const QString& bstrCompareTo, bool DeferUpdate); - - /* - Method Delete - - For more information, see help context 241005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(int Index); - - /* - Method Delete - - For more information, see help context 241005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(int Index, bool DeferUpdate); - - /* - Method Item - - For more information, see help context 241003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Item(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT NewFile : public QAxObject -{ -public: - NewFile(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Method Add - - For more information, see help context 235001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Add(const QString& FileName); - - /* - Method Add - - For more information, see help context 235001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Add(const QString& FileName, const QVariant& Section); - - /* - Method Add - - For more information, see help context 235001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Add(const QString& FileName, const QVariant& Section, const QVariant& DisplayName); - - /* - Method Add - - For more information, see help context 235001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Add(const QString& FileName, const QVariant& Section, const QVariant& DisplayName, const QVariant& Action); - - /* - Method Remove - - For more information, see help context 235002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Remove(const QString& FileName); - - /* - Method Remove - - For more information, see help context 235002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Remove(const QString& FileName, const QVariant& Section); - - /* - Method Remove - - For more information, see help context 235002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Remove(const QString& FileName, const QVariant& Section, const QVariant& DisplayName); - - /* - Method Remove - - For more information, see help context 235002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Remove(const QString& FileName, const QVariant& Section, const QVariant& DisplayName, const QVariant& Action); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT WebComponent : public QAxObject -{ -public: - WebComponent(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property HTML - - For more information, see help context 236004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString HTML() const; //Returns the value of HTML - inline void SetHTML(const QString& value); //Sets the value of the HTML property - - /* - Property Height - - For more information, see help context 236010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Height() const; //Returns the value of Height - inline void SetHeight(int value); //Sets the value of the Height property - - /* - Property Name - - For more information, see help context 236006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Name() const; //Returns the value of Name - inline void SetName(const QString& value); //Sets the value of the Name property - - /* - Property Shape - - For more information, see help context 236001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Shape() const; //Returns the value of Shape - - /* - Property URL - - For more information, see help context 236002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString URL() const; //Returns the value of URL - inline void SetURL(const QString& value); //Sets the value of the URL property - - /* - Property Width - - For more information, see help context 236008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Width() const; //Returns the value of Width - inline void SetWidth(int value); //Sets the value of the Width property - - /* - Method Commit - - For more information, see help context 236014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Commit(); - - /* - Method Revert - - For more information, see help context 236015 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Revert(); - - /* - Method SetPlaceHolderGraphic - - For more information, see help context 236012 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetPlaceHolderGraphic(const QString& PlaceHolderGraphic); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT WebComponentWindowExternal : public QAxObject -{ -public: - WebComponentWindowExternal(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 237004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property ApplicationName - - For more information, see help context 237002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString ApplicationName() const; //Returns the value of ApplicationName - - /* - Property ApplicationVersion - - For more information, see help context 237003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int ApplicationVersion() const; //Returns the value of ApplicationVersion - - /* - Property InterfaceVersion - - For more information, see help context 237001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int InterfaceVersion() const; //Returns the value of InterfaceVersion - - /* - Property WebComponent - - For more information, see help context 237006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::WebComponent* WebComponent() const; //Returns the value of WebComponent - - /* - Method CloseWindow - - For more information, see help context 237005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void CloseWindow(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT WebComponentFormat : public QAxObject -{ -public: - WebComponentFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 237001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property HTML - - For more information, see help context 237005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString HTML() const; //Returns the value of HTML - inline void SetHTML(const QString& value); //Sets the value of the HTML property - - /* - Property Height - - For more information, see help context 237011 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Height() const; //Returns the value of Height - inline void SetHeight(int value); //Sets the value of the Height property - - /* - Property Name - - For more information, see help context 237007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Name() const; //Returns the value of Name - inline void SetName(const QString& value); //Sets the value of the Name property - - /* - Property Parent - - For more information, see help context 237002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property PreviewGraphic - - For more information, see help context 237013 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString PreviewGraphic() const; //Returns the value of PreviewGraphic - inline void SetPreviewGraphic(const QString& value); //Sets the value of the PreviewGraphic property - - /* - Property URL - - For more information, see help context 237003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString URL() const; //Returns the value of URL - inline void SetURL(const QString& value); //Sets the value of the URL property - - /* - Property Width - - For more information, see help context 237009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Width() const; //Returns the value of Width - inline void SetWidth(int value); //Sets the value of the Width property - - /* - Method LaunchPropertiesWindow - - For more information, see help context 237015 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void LaunchPropertiesWindow(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT ILicWizExternal : public QAxObject -{ -public: - ILicWizExternal(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property AnimationEnabled - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int AnimationEnabled() const; //Returns the value of AnimationEnabled - - /* - Property Context - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Context() const; //Returns the value of Context - - /* - Property CountryInfo - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString CountryInfo() const; //Returns the value of CountryInfo - - /* - Property CurrentHelpId - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int CurrentHelpId() const; //Returns the value of CurrentHelpId - inline void SetCurrentHelpId(int value); //Sets the value of the CurrentHelpId property - - /* - Property LicAgent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* LicAgent() const; //Returns the value of LicAgent - - /* - Property OfficeOnTheWebUrl - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString OfficeOnTheWebUrl() const; //Returns the value of OfficeOnTheWebUrl - - /* - Property Validator - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Validator() const; //Returns the value of Validator - - /* - Property WizardTitle - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString WizardTitle() const; //Returns the value of WizardTitle - inline void SetWizardTitle(const QString& value); //Sets the value of the WizardTitle property - - /* - Property WizardVisible - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int WizardVisible() const; //Returns the value of WizardVisible - inline void SetWizardVisible(int value); //Sets the value of the WizardVisible property - - /* - Method DepositPidKey - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int DepositPidKey(const QString& bstrKey, int fMORW); - - /* - Method DisableVORWReminder - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void DisableVORWReminder(int BPC); - - /* - Method FormatDate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString FormatDate(const QDateTime& date); - - /* - Method FormatDate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString FormatDate(const QDateTime& date, const QString& pFormat); - - /* - Method GetConnectedState - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int GetConnectedState(); - - /* - Method InternetDisconnect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void InternetDisconnect(); - - /* - Method InvokeDateTimeApplet - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void InvokeDateTimeApplet(); - - /* - Method MsoAlert - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int MsoAlert(const QString& bstrText, const QString& bstrButtons, const QString& bstrIcon); - - /* - Method OpenInDefaultBrowser - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void OpenInDefaultBrowser(const QString& bstrUrl); - - /* - Method PrintHtmlDocument - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void PrintHtmlDocument(IUnknown* punkHtmlDoc); - - /* - Method ResetPID - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ResetPID(); - - /* - Method ResignDpc - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ResignDpc(const QString& bstrProductCode); - - /* - Method SaveReceipt - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString SaveReceipt(const QString& bstrReceipt); - - /* - Method SetDialogSize - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetDialogSize(int dx, int dy); - - /* - Method ShowHelp - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ShowHelp(); - - /* - Method ShowHelp - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ShowHelp(QVariant& pvarId); - - /* - Method SortSelectOptions - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SortSelectOptions(IDispatch* pdispSelect); - - /* - Method Terminate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Terminate(); - - /* - Method VerifyClock - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int VerifyClock(int lMode); - - /* - Method WriteLog - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void WriteLog(const QString& bstrMessage); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT ILicValidator : public QAxObject -{ -public: - ILicValidator(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Products - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant Products() const; //Returns the value of Products - - /* - Property Selection - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Selection() const; //Returns the value of Selection - inline void SetSelection(int value); //Sets the value of the Selection property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT ILicAgent : public QAxObject -{ -public: - ILicAgent(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Method AsyncProcessCCRenewalLicenseRequest - - method AsyncProcessCCRenewalLicenseRequest -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void AsyncProcessCCRenewalLicenseRequest(); - - /* - Method AsyncProcessCCRenewalPriceRequest - - method AsyncProcessCCRenewalPriceRequest -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void AsyncProcessCCRenewalPriceRequest(); - - /* - Method AsyncProcessDroppedLicenseRequest - - method AsyncProcessDroppedLicenseRequest -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void AsyncProcessDroppedLicenseRequest(); - - /* - Method AsyncProcessHandshakeRequest - - method AsyncProcessHandshakeRequest -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void AsyncProcessHandshakeRequest(int bReviseCustInfo); - - /* - Method AsyncProcessNewLicenseRequest - - method AsyncProcessNewLicenseRequest -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void AsyncProcessNewLicenseRequest(); - - /* - Method AsyncProcessReissueLicenseRequest - - method AsyncProcessReissueLicenseRequest -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void AsyncProcessReissueLicenseRequest(); - - /* - Method AsyncProcessRetailRenewalLicenseRequest - - method AsyncProcessRetailRenewalLicenseRequest -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void AsyncProcessRetailRenewalLicenseRequest(); - - /* - Method AsyncProcessReviseCustInfoRequest - - method AsyncProcessReviseCustInfoRequest -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void AsyncProcessReviseCustInfoRequest(); - - /* - Method CancelAsyncProcessRequest - - method CancelAsyncProcessRequest -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void CancelAsyncProcessRequest(int bIsLicenseRequest); - - /* - Method CheckSystemClock - - method CheckSystemClock -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline uint CheckSystemClock(); - - /* - Method DepositConfirmationId - - method DepositConfirmationId -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline uint DepositConfirmationId(const QString& bstrVal); - - /* - Method DisplaySSLCert - - method DisplaySSLCert -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline uint DisplaySSLCert(); - - /* - Method GenerateInstallationId - - method GenerateInstallationId -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GenerateInstallationId(); - - /* - Method GetAddress1 - - method GetAddress1 -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetAddress1(); - - /* - Method GetAddress2 - - method GetAddress2 -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetAddress2(); - - /* - Method GetAsyncProcessReturnCode - - method GetAsyncProcessReturnCode -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline uint GetAsyncProcessReturnCode(); - - /* - Method GetBackendErrorMsg - - method GetBackendErrorMsg -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetBackendErrorMsg(); - - /* - Method GetBillingAddress1 - - method GetBillingAddress1 -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetBillingAddress1(); - - /* - Method GetBillingAddress2 - - method GetBillingAddress2 -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetBillingAddress2(); - - /* - Method GetBillingCity - - method GetBillingCity -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetBillingCity(); - - /* - Method GetBillingCountryCode - - method GetBillingCountryCode -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetBillingCountryCode(); - - /* - Method GetBillingFirstName - - method GetBillingFirstName -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetBillingFirstName(); - - /* - Method GetBillingLastName - - method GetBillingLastName -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetBillingLastName(); - - /* - Method GetBillingPhone - - method GetBillingPhone -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetBillingPhone(); - - /* - Method GetBillingState - - method GetBillingState -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetBillingState(); - - /* - Method GetBillingZip - - method GetBillingZip -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetBillingZip(); - - /* - Method GetCCRenewalExpiryDate - - method GetCCRenewalExpiryDate -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QDateTime GetCCRenewalExpiryDate(); - - /* - Method GetCity - - method GetCity -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetCity(); - - /* - Method GetCountryCode - - method GetCountryCode -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetCountryCode(); - - /* - Method GetCountryDesc - - method GetCountryDesc -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetCountryDesc(); - - /* - Method GetCreditCardCode - - method GetCreditCardCode -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetCreditCardCode(uint dwIndex); - - /* - Method GetCreditCardCount - - method GetCreditCardCount -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline uint GetCreditCardCount(); - - /* - Method GetCreditCardExpiryMonth - - method GetCreditCardExpiryMonth -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline uint GetCreditCardExpiryMonth(); - - /* - Method GetCreditCardExpiryYear - - method GetCreditCardExpiryYear -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline uint GetCreditCardExpiryYear(); - - /* - Method GetCreditCardName - - method GetCreditCardName -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetCreditCardName(uint dwIndex); - - /* - Method GetCreditCardNumber - - method GetCreditCardNumber -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetCreditCardNumber(); - - /* - Method GetCreditCardType - - method GetCreditCardType -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetCreditCardType(); - - /* - Method GetCurrencyDescription - - method GetCurrencyDescription -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetCurrencyDescription(uint dwCurrencyIndex); - - /* - Method GetCurrencyOption - - method GetCurrencyOption -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline uint GetCurrencyOption(); - - /* - Method GetCurrentExpiryDate - - method GetCurrentExpiryDate -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QDateTime GetCurrentExpiryDate(); - - /* - Method GetDisconnectOption - - method GetDisconnectOption -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int GetDisconnectOption(); - - /* - Method GetEmail - - method GetEmail -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetEmail(); - - /* - Method GetEndOfLifeHtmlText - - method GetEndOfLifeHtmlText -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetEndOfLifeHtmlText(); - - /* - Method GetExistingExpiryDate - - method GetExistingExpiryDate -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QDateTime GetExistingExpiryDate(); - - /* - Method GetFirstName - - method GetFirstName -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetFirstName(); - - /* - Method GetInvoiceText - - method GetInvoiceText -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetInvoiceText(); - - /* - Method GetIsoLanguage - - method GetIsoLanguage -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline uint GetIsoLanguage(); - - /* - Method GetLastName - - method GetLastName -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetLastName(); - - /* - Method GetMSOffer - - method GetMSOffer -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetMSOffer(); - - /* - Method GetMSUpdate - - method GetMSUpdate -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetMSUpdate(); - - /* - Method GetNewExpiryDate - - method GetNewExpiryDate -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QDateTime GetNewExpiryDate(); - - /* - Method GetOrgName - - method GetOrgName -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetOrgName(); - - /* - Method GetOtherOffer - - method GetOtherOffer -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetOtherOffer(); - - /* - Method GetPhone - - method GetPhone -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetPhone(); - - /* - Method GetPriceItemCount - - method GetPriceItemCount -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline uint GetPriceItemCount(); - - /* - Method GetPriceItemLabel - - method GetPriceItemLabel -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetPriceItemLabel(uint dwIndex); - - /* - Method GetPriceItemValue - - method GetPriceItemValue -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetPriceItemValue(uint dwCurrencyIndex, uint dwIndex); - - /* - Method GetState - - method GetState -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetState(); - - /* - Method GetVATLabel - - method GetVATLabel -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetVATLabel(const QString& bstrCountryCode); - - /* - Method GetVATNumber - - method GetVATNumber -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetVATNumber(); - - /* - Method GetZip - - method GetZip -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString GetZip(); - - /* - Method Initialize - - method Initialize -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline uint Initialize(uint dwBPC, uint dwMode, const QString& bstrLicSource); - - /* - Method IsCCRenewalCountry - - method IsCCRenewalCountry -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int IsCCRenewalCountry(const QString& bstrCountryCode); - - /* - Method IsUpgradeAvailable - - method IsUpgradeAvailable -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int IsUpgradeAvailable(); - - /* - Method SaveBillingInfo - - method SaveBillingInfo -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline uint SaveBillingInfo(int bSave); - - /* - Method SetAddress1 - - method SetAddress1 -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetAddress1(const QString& bstrNewVal); - - /* - Method SetAddress2 - - method SetAddress2 -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetAddress2(const QString& bstrNewVal); - - /* - Method SetBillingAddress1 - - method SetBillingAddress1 -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetBillingAddress1(const QString& bstrNewVal); - - /* - Method SetBillingAddress2 - - method SetBillingAddress2 -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetBillingAddress2(const QString& bstrNewVal); - - /* - Method SetBillingCity - - method SetBillingCity -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetBillingCity(const QString& bstrNewVal); - - /* - Method SetBillingCountryCode - - method SetBillingCountryCode -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetBillingCountryCode(const QString& bstrNewVal); - - /* - Method SetBillingFirstName - - method SetBillingFirstName -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetBillingFirstName(const QString& bstrNewVal); - - /* - Method SetBillingLastName - - method SetBillingLastName -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetBillingLastName(const QString& bstrNewVal); - - /* - Method SetBillingPhone - - method SetBillingPhone -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetBillingPhone(const QString& bstrNewVal); - - /* - Method SetBillingState - - method SetBillingState -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetBillingState(const QString& bstrNewVal); - - /* - Method SetBillingZip - - method SetBillingZip -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetBillingZip(const QString& bstrNewVal); - - /* - Method SetCity - - method SetCity -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetCity(const QString& bstrNewVal); - - /* - Method SetCountryCode - - method SetCountryCode -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetCountryCode(const QString& bstrNewVal); - - /* - Method SetCountryDesc - - method SetCountryDesc -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetCountryDesc(const QString& bstrNewVal); - - /* - Method SetCreditCardExpiryMonth - - method SetCreditCardExpiryMonth -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetCreditCardExpiryMonth(uint dwCCMonth); - - /* - Method SetCreditCardExpiryYear - - method SetCreditCardExpiryYear -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetCreditCardExpiryYear(uint dwCCYear); - - /* - Method SetCreditCardNumber - - method SetCreditCardNumber -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetCreditCardNumber(const QString& bstrCCNumber); - - /* - Method SetCreditCardType - - method SetCreditCardType -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetCreditCardType(const QString& bstrCCCode); - - /* - Method SetCurrencyOption - - method SetCurrencyOption -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetCurrencyOption(uint dwCurrencyOption); - - /* - Method SetDisconnectOption - - method SetDisconnectOption -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetDisconnectOption(int bNewVal); - - /* - Method SetEmail - - method SetEmail -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetEmail(const QString& bstrNewVal); - - /* - Method SetFirstName - - method SetFirstName -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetFirstName(const QString& bstrNewVal); - - /* - Method SetIsoLanguage - - method SetIsoLanguage -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetIsoLanguage(uint dwNewVal); - - /* - Method SetLastName - - method SetLastName -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetLastName(const QString& bstrNewVal); - - /* - Method SetMSOffer - - method SetMSOffer -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetMSOffer(const QString& bstrNewVal); - - /* - Method SetMSUpdate - - method SetMSUpdate -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetMSUpdate(const QString& bstrNewVal); - - /* - Method SetOrgName - - method SetOrgName -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetOrgName(const QString& bstrNewVal); - - /* - Method SetOtherOffer - - method SetOtherOffer -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetOtherOffer(const QString& bstrNewVal); - - /* - Method SetPhone - - method SetPhone -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetPhone(const QString& bstrNewVal); - - /* - Method SetState - - method SetState -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetState(const QString& bstrNewVal); - - /* - Method SetVATNumber - - method SetVATNumber -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetVATNumber(const QString& bstrVATNumber); - - /* - Method SetZip - - method SetZip -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetZip(const QString& bstrNewVal); - - /* - Method VerifyCheckDigits - - method VerifyCheckDigits -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int VerifyCheckDigits(const QString& bstrCIDIID); - - /* - Method WantUpgrade - - method WantUpgrade -For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void WantUpgrade(int bWantUpgrade); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT IMsoEServicesDialog : public QAxObject -{ -public: - IMsoEServicesDialog(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property ApplicationName - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString ApplicationName() const; //Returns the value of ApplicationName - - /* - Property ClipArt - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* ClipArt() const; //Returns the value of ClipArt - - /* - Property WebComponent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* WebComponent() const; //Returns the value of WebComponent - - /* - Method AddTrustedDomain - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void AddTrustedDomain(const QString& Domain); - - /* - Method Close - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Close(); - - /* - Method Close - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Close(bool ApplyWebComponentChanges); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT WebComponentProperties : public QAxObject -{ -public: - WebComponentProperties(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property HTML - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString HTML() const; //Returns the value of HTML - inline void SetHTML(const QString& value); //Sets the value of the HTML property - - /* - Property Height - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Height() const; //Returns the value of Height - inline void SetHeight(int value); //Sets the value of the Height property - - /* - Property Name - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Name() const; //Returns the value of Name - inline void SetName(const QString& value); //Sets the value of the Name property - - /* - Property PreviewGraphic - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString PreviewGraphic() const; //Returns the value of PreviewGraphic - inline void SetPreviewGraphic(const QString& value); //Sets the value of the PreviewGraphic property - - /* - Property PreviewHTML - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString PreviewHTML() const; //Returns the value of PreviewHTML - inline void SetPreviewHTML(const QString& value); //Sets the value of the PreviewHTML property - - /* - Property Shape - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Shape() const; //Returns the value of Shape - - /* - Property Tag - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Tag() const; //Returns the value of Tag - inline void SetTag(const QString& value); //Sets the value of the Tag property - - /* - Property URL - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString URL() const; //Returns the value of URL - inline void SetURL(const QString& value); //Sets the value of the URL property - - /* - Property Width - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Width() const; //Returns the value of Width - inline void SetWidth(int value); //Sets the value of the Width property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT SmartDocument : public QAxObject -{ -public: - SmartDocument(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property SolutionID - - For more information, see help context 262001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString SolutionID() const; //Returns the value of SolutionID - inline void SetSolutionID(const QString& value); //Sets the value of the SolutionID property - - /* - Property SolutionURL - - For more information, see help context 262002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString SolutionURL() const; //Returns the value of SolutionURL - inline void SetSolutionURL(const QString& value); //Sets the value of the SolutionURL property - - /* - Method PickSolution - - For more information, see help context 262003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void PickSolution(); - - /* - Method PickSolution - - For more information, see help context 262003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void PickSolution(bool ConsiderAllSchemas); - - /* - Method RefreshPane - - For more information, see help context 262004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void RefreshPane(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT SharedWorkspaceMember : public QAxObject -{ -public: - SharedWorkspaceMember(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property DomainName - - For more information, see help context 272001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString DomainName() const; //Returns the value of DomainName - - /* - Property Email - - For more information, see help context 272003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Email() const; //Returns the value of Email - - /* - Property Id - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Id() const; //Returns the value of Id - - /* - Property Name - - For more information, see help context 272002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Name() const; //Returns the value of Name - - /* - Property Parent - - For more information, see help context 272005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Method Delete - - For more information, see help context 272004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT SharedWorkspaceMembers : public QAxObject -{ -public: - SharedWorkspaceMembers(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 273002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property ItemCountExceeded - - For more information, see help context 273005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool ItemCountExceeded() const; //Returns the value of ItemCountExceeded - - /* - Property Parent - - For more information, see help context 273004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 273003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceMember* Add(const QString& Email, const QString& DomainName, const QString& DisplayName); - - /* - Method Add - - For more information, see help context 273003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceMember* Add(const QString& Email, const QString& DomainName, const QString& DisplayName, const QVariant& Role); - - /* - Method Item - - For more information, see help context 273001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceMember* Item(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT SharedWorkspaceTask : public QAxObject -{ -public: - SharedWorkspaceTask(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property AssignedTo - - For more information, see help context 264002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString AssignedTo() const; //Returns the value of AssignedTo - inline void SetAssignedTo(const QString& value); //Sets the value of the AssignedTo property - - /* - Property CreatedBy - - For more information, see help context 264007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString CreatedBy() const; //Returns the value of CreatedBy - - /* - Property CreatedDate - - For more information, see help context 264008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant CreatedDate() const; //Returns the value of CreatedDate - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Description - - For more information, see help context 264005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Description() const; //Returns the value of Description - inline void SetDescription(const QString& value); //Sets the value of the Description property - - /* - Property DueDate - - For more information, see help context 264006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant DueDate() const; //Returns the value of DueDate - inline void SetDueDate(const QVariant& value); //Sets the value of the DueDate property - - /* - Property ModifiedBy - - For more information, see help context 264009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString ModifiedBy() const; //Returns the value of ModifiedBy - - /* - Property ModifiedDate - - For more information, see help context 264010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant ModifiedDate() const; //Returns the value of ModifiedDate - - /* - Property Parent - - For more information, see help context 263013 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Priority - - For more information, see help context 264004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoSharedWorkspaceTaskPriority Priority() const; //Returns the value of Priority - inline void SetPriority(Office::MsoSharedWorkspaceTaskPriority value); //Sets the value of the Priority property - - /* - Property Status - - For more information, see help context 264003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoSharedWorkspaceTaskStatus Status() const; //Returns the value of Status - inline void SetStatus(Office::MsoSharedWorkspaceTaskStatus value); //Sets the value of the Status property - - /* - Property Title - - For more information, see help context 264001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Title() const; //Returns the value of Title - inline void SetTitle(const QString& value); //Sets the value of the Title property - - /* - Method Delete - - For more information, see help context 263012 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(); - - /* - Method Save - - For more information, see help context 2640011 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Save(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT SharedWorkspaceTasks : public QAxObject -{ -public: - SharedWorkspaceTasks(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 265002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property ItemCountExceeded - - For more information, see help context 265005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool ItemCountExceeded() const; //Returns the value of ItemCountExceeded - - /* - Property Parent - - For more information, see help context 265004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 265003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceTask* Add(const QString& Title); - - /* - Method Add - - For more information, see help context 265003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceTask* Add(const QString& Title, const QVariant& Status); - - /* - Method Add - - For more information, see help context 265003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceTask* Add(const QString& Title, const QVariant& Status, const QVariant& Priority); - - /* - Method Add - - For more information, see help context 265003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceTask* Add(const QString& Title, const QVariant& Status, const QVariant& Priority, const QVariant& Assignee); - - /* - Method Add - - For more information, see help context 265003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceTask* Add(const QString& Title, const QVariant& Status, const QVariant& Priority, const QVariant& Assignee, const QVariant& Description); - - /* - Method Add - - For more information, see help context 265003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceTask* Add(const QString& Title, const QVariant& Status, const QVariant& Priority, const QVariant& Assignee, const QVariant& Description, const QVariant& DueDate); - - /* - Method Item - - For more information, see help context 265001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceTask* Item(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT SharedWorkspaceFile : public QAxObject -{ -public: - SharedWorkspaceFile(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property CreatedBy - - For more information, see help context 266002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString CreatedBy() const; //Returns the value of CreatedBy - - /* - Property CreatedDate - - For more information, see help context 266003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant CreatedDate() const; //Returns the value of CreatedDate - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property ModifiedBy - - For more information, see help context 266004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString ModifiedBy() const; //Returns the value of ModifiedBy - - /* - Property ModifiedDate - - For more information, see help context 266005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant ModifiedDate() const; //Returns the value of ModifiedDate - - /* - Property Parent - - For more information, see help context 266007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property URL - - For more information, see help context 266001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString URL() const; //Returns the value of URL - - /* - Method Delete - - For more information, see help context 266006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT SharedWorkspaceFiles : public QAxObject -{ -public: - SharedWorkspaceFiles(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 267002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property ItemCountExceeded - - For more information, see help context 267005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool ItemCountExceeded() const; //Returns the value of ItemCountExceeded - - /* - Property Parent - - For more information, see help context 267004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 267003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceFile* Add(const QString& FileName); - - /* - Method Add - - For more information, see help context 267003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceFile* Add(const QString& FileName, const QVariant& ParentFolder); - - /* - Method Add - - For more information, see help context 267003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceFile* Add(const QString& FileName, const QVariant& ParentFolder, const QVariant& OverwriteIfFileAlreadyExists); - - /* - Method Add - - For more information, see help context 267003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceFile* Add(const QString& FileName, const QVariant& ParentFolder, const QVariant& OverwriteIfFileAlreadyExists, const QVariant& KeepInSync); - - /* - Method Item - - For more information, see help context 267001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceFile* Item(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT SharedWorkspaceFolder : public QAxObject -{ -public: - SharedWorkspaceFolder(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property FolderName - - For more information, see help context 268001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString FolderName() const; //Returns the value of FolderName - - /* - Property Parent - - For more information, see help context 268007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Method Delete - - For more information, see help context 268006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(); - - /* - Method Delete - - For more information, see help context 268006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(const QVariant& DeleteEventIfFolderContainsFiles); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT SharedWorkspaceFolders : public QAxObject -{ -public: - SharedWorkspaceFolders(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 269002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property ItemCountExceeded - - For more information, see help context 269005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool ItemCountExceeded() const; //Returns the value of ItemCountExceeded - - /* - Property Parent - - For more information, see help context 269004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 269003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceFolder* Add(const QString& FolderName); - - /* - Method Add - - For more information, see help context 269003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceFolder* Add(const QString& FolderName, const QVariant& ParentFolder); - - /* - Method Item - - For more information, see help context 269001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceFolder* Item(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT SharedWorkspaceLink : public QAxObject -{ -public: - SharedWorkspaceLink(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property CreatedBy - - For more information, see help context 270004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString CreatedBy() const; //Returns the value of CreatedBy - - /* - Property CreatedDate - - For more information, see help context 270005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant CreatedDate() const; //Returns the value of CreatedDate - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Description - - For more information, see help context 270002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Description() const; //Returns the value of Description - inline void SetDescription(const QString& value); //Sets the value of the Description property - - /* - Property ModifiedBy - - For more information, see help context 270006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString ModifiedBy() const; //Returns the value of ModifiedBy - - /* - Property ModifiedDate - - For more information, see help context 270007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant ModifiedDate() const; //Returns the value of ModifiedDate - - /* - Property Notes - - For more information, see help context 270003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Notes() const; //Returns the value of Notes - inline void SetNotes(const QString& value); //Sets the value of the Notes property - - /* - Property Parent - - For more information, see help context 270010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property URL - - For more information, see help context 270001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString URL() const; //Returns the value of URL - inline void SetURL(const QString& value); //Sets the value of the URL property - - /* - Method Delete - - For more information, see help context 270009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(); - - /* - Method Save - - For more information, see help context 270008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Save(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT SharedWorkspaceLinks : public QAxObject -{ -public: - SharedWorkspaceLinks(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 271002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property ItemCountExceeded - - For more information, see help context 271005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool ItemCountExceeded() const; //Returns the value of ItemCountExceeded - - /* - Property Parent - - For more information, see help context 271004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 271003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceLink* Add(const QString& URL); - - /* - Method Add - - For more information, see help context 271003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceLink* Add(const QString& URL, const QVariant& Description); - - /* - Method Add - - For more information, see help context 271003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceLink* Add(const QString& URL, const QVariant& Description, const QVariant& Notes); - - /* - Method Item - - For more information, see help context 271001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceLink* Item(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT SharedWorkspace : public QAxObject -{ -public: - SharedWorkspace(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Connected - - For more information, see help context 276012 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Connected() const; //Returns the value of Connected - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Files - - For more information, see help context 276004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceFiles* Files() const; //Returns the value of Files - - /* - Property Folders - - For more information, see help context 276005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceFolders* Folders() const; //Returns the value of Folders - - /* - Property LastRefreshed - - For more information, see help context 276013 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant LastRefreshed() const; //Returns the value of LastRefreshed - - /* - Property Links - - For more information, see help context 276006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceLinks* Links() const; //Returns the value of Links - - /* - Property Members - - For more information, see help context 276002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceMembers* Members() const; //Returns the value of Members - - /* - Property Name - - For more information, see help context 276001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Name() const; //Returns the value of Name - inline void SetName(const QString& value); //Sets the value of the Name property - - /* - Property Parent - - For more information, see help context 276010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property SourceURL - - For more information, see help context 276014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString SourceURL() const; //Returns the value of SourceURL - inline void SetSourceURL(const QString& value); //Sets the value of the SourceURL property - - /* - Property Tasks - - For more information, see help context 276003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::SharedWorkspaceTasks* Tasks() const; //Returns the value of Tasks - - /* - Property URL - - For more information, see help context 276011 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString URL() const; //Returns the value of URL - - /* - Method CreateNew - - For more information, see help context 276008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void CreateNew(); - - /* - Method CreateNew - - For more information, see help context 276008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void CreateNew(const QVariant& URL); - - /* - Method CreateNew - - For more information, see help context 276008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void CreateNew(const QVariant& URL, const QVariant& Name); - - /* - Method Delete - - For more information, see help context 276009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(); - - /* - Method Disconnect - - For more information, see help context 276016 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Disconnect(); - - /* - Method Refresh - - For more information, see help context 276007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Refresh(); - - /* - Method RemoveDocument - - For more information, see help context 276015 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void RemoveDocument(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT Sync : public QAxObject -{ -public: - Sync(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property ErrorType - - For more information, see help context 277005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoSyncErrorType ErrorType() const; //Returns the value of ErrorType - - /* - Property LastSyncTime - - For more information, see help context 277003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant LastSyncTime() const; //Returns the value of LastSyncTime - - /* - Property Parent - - For more information, see help context 277015 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Status - - For more information, see help context 277001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoSyncStatusType Status() const; //Returns the value of Status - - /* - Property WorkspaceLastChangedBy - - For more information, see help context 277002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString WorkspaceLastChangedBy() const; //Returns the value of WorkspaceLastChangedBy - - /* - Method GetUpdate - - For more information, see help context 277007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void GetUpdate(); - - /* - Method OpenVersion - - For more information, see help context 277009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void OpenVersion(Office::MsoSyncVersionType SyncVersionType); - - /* - Method PutUpdate - - For more information, see help context 277008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void PutUpdate(); - - /* - Method ResolveConflict - - For more information, see help context 277010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ResolveConflict(Office::MsoSyncConflictResolutionType SyncConflictResolution); - - /* - Method Unsuspend - - For more information, see help context 277011 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Unsuspend(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT DocumentLibraryVersion : public QAxObject -{ -public: - DocumentLibraryVersion(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Comments - - For more information, see help context 277021 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Comments() const; //Returns the value of Comments - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Index - - For more information, see help context 277018 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Index() const; //Returns the value of Index - - /* - Property Modified - - For more information, see help context 277017 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant Modified() const; //Returns the value of Modified - - /* - Property ModifiedBy - - For more information, see help context 277020 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString ModifiedBy() const; //Returns the value of ModifiedBy - - /* - Property Parent - - For more information, see help context 277019 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Method Delete - - For more information, see help context 277022 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(); - - /* - Method Open - - For more information, see help context 277023 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Open(); - - /* - Method Restore - - For more information, see help context 277024 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Restore(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT DocumentLibraryVersions : public QAxObject -{ -public: - DocumentLibraryVersions(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 277028 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property IsVersioningEnabled - - For more information, see help context 277030 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool IsVersioningEnabled() const; //Returns the value of IsVersioningEnabled - - /* - Property Parent - - For more information, see help context 277029 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 277027 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::DocumentLibraryVersion* Item(int lIndex); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT UserPermission : public QAxObject -{ -public: - UserPermission(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property ExpirationDate - - For more information, see help context 260003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant ExpirationDate() const; //Returns the value of ExpirationDate - inline void SetExpirationDate(const QVariant& value); //Sets the value of the ExpirationDate property - - /* - Property Parent - - For more information, see help context 260004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Permission - - For more information, see help context 260002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Permission() const; //Returns the value of Permission - inline void SetPermission(int value); //Sets the value of the Permission property - - /* - Property UserId - - For more information, see help context 260001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString UserId() const; //Returns the value of UserId - - /* - Method Remove - - For more information, see help context 260005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Remove(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT Permission : public QAxObject -{ -public: - Permission(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 261002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property DocumentAuthor - - For more information, see help context 261013 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString DocumentAuthor() const; //Returns the value of DocumentAuthor - inline void SetDocumentAuthor(const QString& value); //Sets the value of the DocumentAuthor property - - /* - Property EnableTrustedBrowser - - For more information, see help context 261003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool EnableTrustedBrowser() const; //Returns the value of EnableTrustedBrowser - inline void SetEnableTrustedBrowser(bool value); //Sets the value of the EnableTrustedBrowser property - - /* - Property Enabled - - For more information, see help context 261008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Enabled() const; //Returns the value of Enabled - inline void SetEnabled(bool value); //Sets the value of the Enabled property - - /* - Property Parent - - For more information, see help context 261006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property PermissionFromPolicy - - For more information, see help context 261014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool PermissionFromPolicy() const; //Returns the value of PermissionFromPolicy - - /* - Property PolicyDescription - - For more information, see help context 261011 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString PolicyDescription() const; //Returns the value of PolicyDescription - - /* - Property PolicyName - - For more information, see help context 261010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString PolicyName() const; //Returns the value of PolicyName - - /* - Property RequestPermissionURL - - For more information, see help context 261009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString RequestPermissionURL() const; //Returns the value of RequestPermissionURL - inline void SetRequestPermissionURL(const QString& value); //Sets the value of the RequestPermissionURL property - - /* - Property StoreLicenses - - For more information, see help context 261012 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool StoreLicenses() const; //Returns the value of StoreLicenses - inline void SetStoreLicenses(bool value); //Sets the value of the StoreLicenses property - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 261004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::UserPermission* Add(const QString& UserId); - - /* - Method Add - - For more information, see help context 261004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::UserPermission* Add(const QString& UserId, const QVariant& Permission); - - /* - Method Add - - For more information, see help context 261004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::UserPermission* Add(const QString& UserId, const QVariant& Permission, const QVariant& ExpirationDate); - - /* - Method ApplyPolicy - - For more information, see help context 261005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ApplyPolicy(const QString& FileName); - - /* - Method Item - - For more information, see help context 261001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::UserPermission* Item(const QVariant& Index); - - /* - Method RemoveAll - - For more information, see help context 261007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void RemoveAll(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -// Actual coclasses -class OFFICE_EXPORT CommandBars : public QAxObject -{ -public: - CommandBars(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - CommandBars(_CommandBars *iface) - : QAxObject() - { - initializeFrom(iface); - delete iface; - } - - /* - Property ActionControl - - For more information, see help context 2001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* ActionControl() const; //Returns the value of ActionControl - - /* - Property ActiveMenuBar - - For more information, see help context 2002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* ActiveMenuBar() const; //Returns the value of ActiveMenuBar - - /* - Property AdaptiveMenus - - For more information, see help context 2013 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool AdaptiveMenus() const; //Returns the value of AdaptiveMenus - inline void SetAdaptiveMenus(bool value); //Sets the value of the AdaptiveMenus property - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 2004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property DisableAskAQuestionDropdown - - For more information, see help context 2017 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool DisableAskAQuestionDropdown() const; //Returns the value of DisableAskAQuestionDropdown - inline void SetDisableAskAQuestionDropdown(bool value); //Sets the value of the DisableAskAQuestionDropdown property - - /* - Property DisableCustomize - - For more information, see help context 2016 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool DisableCustomize() const; //Returns the value of DisableCustomize - inline void SetDisableCustomize(bool value); //Sets the value of the DisableCustomize property - - /* - Property DisplayFonts - - For more information, see help context 2015 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool DisplayFonts() const; //Returns the value of DisplayFonts - inline void SetDisplayFonts(bool value); //Sets the value of the DisplayFonts property - - /* - Property DisplayKeysInTooltips - - For more information, see help context 2006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool DisplayKeysInTooltips() const; //Returns the value of DisplayKeysInTooltips - inline void SetDisplayKeysInTooltips(bool value); //Sets the value of the DisplayKeysInTooltips property - - /* - Property DisplayTooltips - - For more information, see help context 2005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool DisplayTooltips() const; //Returns the value of DisplayTooltips - inline void SetDisplayTooltips(bool value); //Sets the value of the DisplayTooltips property - - /* - Property LargeButtons - - For more information, see help context 2009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool LargeButtons() const; //Returns the value of LargeButtons - inline void SetLargeButtons(bool value); //Sets the value of the LargeButtons property - - /* - Property MenuAnimationStyle - - For more information, see help context 2010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoMenuAnimation MenuAnimationStyle() const; //Returns the value of MenuAnimationStyle - inline void SetMenuAnimationStyle(Office::MsoMenuAnimation value); //Sets the value of the MenuAnimationStyle property - - /* - Property Parent - - For more information, see help context 2011 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 2003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* Add(); - - /* - Method Add - - For more information, see help context 2003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* Add(const QVariant& Name); - - /* - Method Add - - For more information, see help context 2003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* Add(const QVariant& Name, const QVariant& Position); - - /* - Method Add - - For more information, see help context 2003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* Add(const QVariant& Name, const QVariant& Position, const QVariant& MenuBar); - - /* - Method Add - - For more information, see help context 2003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* Add(const QVariant& Name, const QVariant& Position, const QVariant& MenuBar, const QVariant& Temporary); - - /* - Method AddEx - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* AddEx(); - - /* - Method AddEx - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* AddEx(const QVariant& TbidOrName); - - /* - Method AddEx - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* AddEx(const QVariant& TbidOrName, const QVariant& Position); - - /* - Method AddEx - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* AddEx(const QVariant& TbidOrName, const QVariant& Position, const QVariant& MenuBar); - - /* - Method AddEx - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* AddEx(const QVariant& TbidOrName, const QVariant& Position, const QVariant& MenuBar, const QVariant& Temporary); - - /* - Method AddEx - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* AddEx(const QVariant& TbidOrName, const QVariant& Position, const QVariant& MenuBar, const QVariant& Temporary, const QVariant& TbtrProtection); - - /* - Method FindControl - - For more information, see help context 2007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* FindControl(); - - /* - Method FindControl - - For more information, see help context 2007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* FindControl(const QVariant& Type); - - /* - Method FindControl - - For more information, see help context 2007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* FindControl(const QVariant& Type, const QVariant& Id); - - /* - Method FindControl - - For more information, see help context 2007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* FindControl(const QVariant& Type, const QVariant& Id, const QVariant& Tag); - - /* - Method FindControl - - For more information, see help context 2007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* FindControl(const QVariant& Type, const QVariant& Id, const QVariant& Tag, const QVariant& Visible); - - /* - Method FindControls - - For more information, see help context 2014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControls* FindControls(); - - /* - Method FindControls - - For more information, see help context 2014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControls* FindControls(const QVariant& Type); - - /* - Method FindControls - - For more information, see help context 2014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControls* FindControls(const QVariant& Type, const QVariant& Id); - - /* - Method FindControls - - For more information, see help context 2014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControls* FindControls(const QVariant& Type, const QVariant& Id, const QVariant& Tag); - - /* - Method FindControls - - For more information, see help context 2014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControls* FindControls(const QVariant& Type, const QVariant& Id, const QVariant& Tag, const QVariant& Visible); - - /* - Method IdsString - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int IdsString(int ids, QString& pbstrName); - - /* - Method Item - - For more information, see help context 2008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* Item(const QVariant& Index); - - /* - Method ReleaseFocus - - For more information, see help context 2012 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void ReleaseFocus(); - - /* - Method TmcGetName - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int TmcGetName(int tmc, QString& pbstrName); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT CommandBarComboBox : public QAxObject -{ -public: - CommandBarComboBox(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - CommandBarComboBox(_CommandBarComboBox *iface) - : QAxObject() - { - initializeFrom(iface); - delete iface; - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property BeginGroup - - For more information, see help context 5001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool BeginGroup() const; //Returns the value of BeginGroup - inline void SetBeginGroup(bool value); //Sets the value of the BeginGroup property - - /* - Property BuiltIn - - For more information, see help context 5002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool BuiltIn() const; //Returns the value of BuiltIn - - /* - Property Caption - - For more information, see help context 5003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Caption() const; //Returns the value of Caption - inline void SetCaption(const QString& value); //Sets the value of the Caption property - - /* - Property Control - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Control() const; //Returns the value of Control - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property DescriptionText - - For more information, see help context 5006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString DescriptionText() const; //Returns the value of DescriptionText - inline void SetDescriptionText(const QString& value); //Sets the value of the DescriptionText property - - /* - Property DropDownLines - - For more information, see help context 8003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int DropDownLines() const; //Returns the value of DropDownLines - inline void SetDropDownLines(int value); //Sets the value of the DropDownLines property - - /* - Property DropDownWidth - - For more information, see help context 8004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int DropDownWidth() const; //Returns the value of DropDownWidth - inline void SetDropDownWidth(int value); //Sets the value of the DropDownWidth property - - /* - Property Enabled - - For more information, see help context 5007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Enabled() const; //Returns the value of Enabled - inline void SetEnabled(bool value); //Sets the value of the Enabled property - - /* - Property Height - - For more information, see help context 5009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Height() const; //Returns the value of Height - inline void SetHeight(int value); //Sets the value of the Height property - - /* - Property HelpContextId - - For more information, see help context 5010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int HelpContextId() const; //Returns the value of HelpContextId - inline void SetHelpContextId(int value); //Sets the value of the HelpContextId property - - /* - Property HelpFile - - For more information, see help context 5011 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString HelpFile() const; //Returns the value of HelpFile - inline void SetHelpFile(const QString& value); //Sets the value of the HelpFile property - - /* - Property Id - - For more information, see help context 5012 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Id() const; //Returns the value of Id - - /* - Property Index - - For more information, see help context 5013 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Index() const; //Returns the value of Index - - /* - Property InstanceId - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int InstanceId() const; //Returns the value of InstanceId - - /* - Property IsPriorityDropped - - For more information, see help context 5029 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool IsPriorityDropped() const; //Returns the value of IsPriorityDropped - - /* - Property Left - - For more information, see help context 5015 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Left() const; //Returns the value of Left - - /* - Property ListCount - - For more information, see help context 8006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int ListCount() const; //Returns the value of ListCount - - /* - Property ListHeaderCount - - For more information, see help context 8007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int ListHeaderCount() const; //Returns the value of ListHeaderCount - inline void SetListHeaderCount(int value); //Sets the value of the ListHeaderCount property - - /* - Property ListIndex - - For more information, see help context 8008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int ListIndex() const; //Returns the value of ListIndex - inline void SetListIndex(int value); //Sets the value of the ListIndex property - - /* - Property OLEUsage - - For more information, see help context 5016 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoControlOLEUsage OLEUsage() const; //Returns the value of OLEUsage - inline void SetOLEUsage(Office::MsoControlOLEUsage value); //Sets the value of the OLEUsage property - - /* - Property OnAction - - For more information, see help context 5017 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString OnAction() const; //Returns the value of OnAction - inline void SetOnAction(const QString& value); //Sets the value of the OnAction property - - /* - Property Parameter - - For more information, see help context 5019 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Parameter() const; //Returns the value of Parameter - inline void SetParameter(const QString& value); //Sets the value of the Parameter property - - /* - Property Parent - - For more information, see help context 5018 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* Parent() const; //Returns the value of Parent - - /* - Property Priority - - For more information, see help context 5020 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Priority() const; //Returns the value of Priority - inline void SetPriority(int value); //Sets the value of the Priority property - - /* - Property Style - - For more information, see help context 8010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoComboStyle Style() const; //Returns the value of Style - inline void SetStyle(Office::MsoComboStyle value); //Sets the value of the Style property - - /* - Property Tag - - For more information, see help context 5023 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Tag() const; //Returns the value of Tag - inline void SetTag(const QString& value); //Sets the value of the Tag property - - /* - Property Text - - For more information, see help context 8011 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Text() const; //Returns the value of Text - inline void SetText(const QString& value); //Sets the value of the Text property - - /* - Property TooltipText - - For more information, see help context 5024 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString TooltipText() const; //Returns the value of TooltipText - inline void SetTooltipText(const QString& value); //Sets the value of the TooltipText property - - /* - Property Top - - For more information, see help context 5025 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Top() const; //Returns the value of Top - - /* - Property Type - - For more information, see help context 5026 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoControlType Type() const; //Returns the value of Type - - /* - Property Visible - - For more information, see help context 5027 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Visible() const; //Returns the value of Visible - inline void SetVisible(bool value); //Sets the value of the Visible property - - /* - Property Width - - For more information, see help context 5028 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Width() const; //Returns the value of Width - inline void SetWidth(int value); //Sets the value of the Width property - - /* - Property accChildCount - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accChildCount() const; //Returns the value of accChildCount - - /* - Property accDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accDefaultAction() const; //Returns the value of accDefaultAction - - /* - Property accDescription - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accDescription() const; //Returns the value of accDescription - - /* - Property accFocus - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accFocus() const; //Returns the value of accFocus - - /* - Property accHelp - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accHelp() const; //Returns the value of accHelp - - /* - Property accKeyboardShortcut - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accKeyboardShortcut() const; //Returns the value of accKeyboardShortcut - - /* - Property accName - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accName() const; //Returns the value of accName - inline void setAccName(const QVariant& value); //Sets the value of the accName property - - /* - Property accParent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* accParent() const; //Returns the value of accParent - - /* - Property accRole - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accRole() const; //Returns the value of accRole - - /* - Property accSelection - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accSelection() const; //Returns the value of accSelection - - /* - Property accState - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accState() const; //Returns the value of accState - - /* - Property accValue - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accValue() const; //Returns the value of accValue - inline void setAccValue(const QVariant& value); //Sets the value of the accValue property - - /* - Method AddItem - - For more information, see help context 8001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void AddItem(const QString& Text); - - /* - Method AddItem - - For more information, see help context 8001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void AddItem(const QString& Text, const QVariant& Index); - - /* - Method Clear - - For more information, see help context 8002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Clear(); - - /* - Method Copy - - For more information, see help context 5004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Copy(); - - /* - Method Copy - - For more information, see help context 5004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Copy(const QVariant& Bar); - - /* - Method Copy - - For more information, see help context 5004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Copy(const QVariant& Bar, const QVariant& Before); - - /* - Method Delete - - For more information, see help context 5005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(); - - /* - Method Delete - - For more information, see help context 5005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(const QVariant& Temporary); - - /* - Method Execute - - For more information, see help context 5008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Execute(); - - /* - Method List - - For more information, see help context 8005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString List(int Index); - - /* - Method Move - - For more information, see help context 5014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Move(); - - /* - Method Move - - For more information, see help context 5014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Move(const QVariant& Bar); - - /* - Method Move - - For more information, see help context 5014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Move(const QVariant& Bar, const QVariant& Before); - - /* - Method RemoveItem - - For more information, see help context 8009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void RemoveItem(int Index); - - /* - Method Reserved1 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved1(); - - /* - Method Reserved2 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved2(); - - /* - Method Reserved3 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved3(); - - /* - Method Reserved4 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved4(); - - /* - Method Reserved5 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved5(); - - /* - Method Reserved6 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved6(); - - /* - Method Reserved7 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved7(); - - /* - Method Reset - - For more information, see help context 5021 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reset(); - - /* - Method SetFocus - - For more information, see help context 5022 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetFocus(); - - /* - Method SetList - */ - inline int SetList(int Index, const QString& rhs); - - /* - Method accChild - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* accChild(const QVariant& varChild); - - /* - Method accDoDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accDoDefaultAction(); - - /* - Method accDoDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accDoDefaultAction(const QVariant& varChild); - - /* - Method accHelpTopic - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accHelpTopic(QString& pszHelpFile); - - /* - Method accHelpTopic - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accHelpTopic(QString& pszHelpFile, const QVariant& varChild); - - /* - Method accHitTest - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accHitTest(int xLeft, int yTop); - - /* - Method accLocation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight); - - /* - Method accLocation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight, const QVariant& varChild); - - /* - Method accNavigate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accNavigate(int navDir); - - /* - Method accNavigate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accNavigate(int navDir, const QVariant& varStart); - - /* - Method accSelect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accSelect(int flagsSelect); - - /* - Method accSelect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accSelect(int flagsSelect, const QVariant& varChild); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT CommandBarButton : public QAxObject -{ -public: - CommandBarButton(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property BeginGroup - - For more information, see help context 5001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool BeginGroup() const; //Returns the value of BeginGroup - inline void SetBeginGroup(bool value); //Sets the value of the BeginGroup property - - /* - Property BuiltIn - - For more information, see help context 5002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool BuiltIn() const; //Returns the value of BuiltIn - - /* - Property BuiltInFace - - For more information, see help context 6001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool BuiltInFace() const; //Returns the value of BuiltInFace - inline void SetBuiltInFace(bool value); //Sets the value of the BuiltInFace property - - /* - Property Caption - - For more information, see help context 5003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Caption() const; //Returns the value of Caption - inline void SetCaption(const QString& value); //Sets the value of the Caption property - - /* - Property Control - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Control() const; //Returns the value of Control - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property DescriptionText - - For more information, see help context 5006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString DescriptionText() const; //Returns the value of DescriptionText - inline void SetDescriptionText(const QString& value); //Sets the value of the DescriptionText property - - /* - Property Enabled - - For more information, see help context 5007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Enabled() const; //Returns the value of Enabled - inline void SetEnabled(bool value); //Sets the value of the Enabled property - - /* - Property FaceId - - For more information, see help context 6003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int FaceId() const; //Returns the value of FaceId - inline void SetFaceId(int value); //Sets the value of the FaceId property - - /* - Property Height - - For more information, see help context 5009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Height() const; //Returns the value of Height - inline void SetHeight(int value); //Sets the value of the Height property - - /* - Property HelpContextId - - For more information, see help context 5010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int HelpContextId() const; //Returns the value of HelpContextId - inline void SetHelpContextId(int value); //Sets the value of the HelpContextId property - - /* - Property HelpFile - - For more information, see help context 5011 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString HelpFile() const; //Returns the value of HelpFile - inline void SetHelpFile(const QString& value); //Sets the value of the HelpFile property - - /* - Property HyperlinkType - - For more information, see help context 6008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoCommandBarButtonHyperlinkType HyperlinkType() const; //Returns the value of HyperlinkType - inline void SetHyperlinkType(Office::MsoCommandBarButtonHyperlinkType value); //Sets the value of the HyperlinkType property - - /* - Property Id - - For more information, see help context 5012 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Id() const; //Returns the value of Id - - /* - Property Index - - For more information, see help context 5013 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Index() const; //Returns the value of Index - - /* - Property InstanceId - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int InstanceId() const; //Returns the value of InstanceId - - /* - Property IsPriorityDropped - - For more information, see help context 5029 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool IsPriorityDropped() const; //Returns the value of IsPriorityDropped - - /* - Property Left - - For more information, see help context 5015 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Left() const; //Returns the value of Left - - /* - Property Mask - - For more information, see help context 6010 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QPixmap Mask() const; //Returns the value of Mask - inline void SetMask(const QPixmap& value); //Sets the value of the Mask property - - /* - Property OLEUsage - - For more information, see help context 5016 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoControlOLEUsage OLEUsage() const; //Returns the value of OLEUsage - inline void SetOLEUsage(Office::MsoControlOLEUsage value); //Sets the value of the OLEUsage property - - /* - Property OnAction - - For more information, see help context 5017 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString OnAction() const; //Returns the value of OnAction - inline void SetOnAction(const QString& value); //Sets the value of the OnAction property - - /* - Property Parameter - - For more information, see help context 5019 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Parameter() const; //Returns the value of Parameter - inline void SetParameter(const QString& value); //Sets the value of the Parameter property - - /* - Property Parent - - For more information, see help context 5018 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBar* Parent() const; //Returns the value of Parent - - /* - Property Picture - - For more information, see help context 6009 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QPixmap Picture() const; //Returns the value of Picture - inline void SetPicture(const QPixmap& value); //Sets the value of the Picture property - - /* - Property Priority - - For more information, see help context 5020 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Priority() const; //Returns the value of Priority - inline void SetPriority(int value); //Sets the value of the Priority property - - /* - Property ShortcutText - - For more information, see help context 6005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString ShortcutText() const; //Returns the value of ShortcutText - inline void SetShortcutText(const QString& value); //Sets the value of the ShortcutText property - - /* - Property State - - For more information, see help context 6006 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoButtonState State() const; //Returns the value of State - inline void SetState(Office::MsoButtonState value); //Sets the value of the State property - - /* - Property Style - - For more information, see help context 6007 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoButtonStyle Style() const; //Returns the value of Style - inline void SetStyle(Office::MsoButtonStyle value); //Sets the value of the Style property - - /* - Property Tag - - For more information, see help context 5023 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Tag() const; //Returns the value of Tag - inline void SetTag(const QString& value); //Sets the value of the Tag property - - /* - Property TooltipText - - For more information, see help context 5024 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString TooltipText() const; //Returns the value of TooltipText - inline void SetTooltipText(const QString& value); //Sets the value of the TooltipText property - - /* - Property Top - - For more information, see help context 5025 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Top() const; //Returns the value of Top - - /* - Property Type - - For more information, see help context 5026 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::MsoControlType Type() const; //Returns the value of Type - - /* - Property Visible - - For more information, see help context 5027 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline bool Visible() const; //Returns the value of Visible - inline void SetVisible(bool value); //Sets the value of the Visible property - - /* - Property Width - - For more information, see help context 5028 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int Width() const; //Returns the value of Width - inline void SetWidth(int value); //Sets the value of the Width property - - /* - Property accChildCount - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accChildCount() const; //Returns the value of accChildCount - - /* - Property accDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accDefaultAction() const; //Returns the value of accDefaultAction - - /* - Property accDescription - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accDescription() const; //Returns the value of accDescription - - /* - Property accFocus - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accFocus() const; //Returns the value of accFocus - - /* - Property accHelp - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accHelp() const; //Returns the value of accHelp - - /* - Property accKeyboardShortcut - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString accKeyboardShortcut() const; //Returns the value of accKeyboardShortcut - - /* - Property accName - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accName() const; //Returns the value of accName - inline void setAccName(const QVariant& value); //Sets the value of the accName property - - /* - Property accParent - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* accParent() const; //Returns the value of accParent - - /* - Property accRole - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accRole() const; //Returns the value of accRole - - /* - Property accSelection - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accSelection() const; //Returns the value of accSelection - - /* - Property accState - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accState() const; //Returns the value of accState - - /* - Property accValue - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accValue() const; //Returns the value of accValue - inline void setAccValue(const QVariant& value); //Sets the value of the accValue property - - /* - Method Copy - - For more information, see help context 5004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Copy(); - - /* - Method Copy - - For more information, see help context 5004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Copy(const QVariant& Bar); - - /* - Method Copy - - For more information, see help context 5004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Copy(const QVariant& Bar, const QVariant& Before); - - /* - Method CopyFace - - For more information, see help context 6002 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void CopyFace(); - - /* - Method Delete - - For more information, see help context 5005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(); - - /* - Method Delete - - For more information, see help context 5005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Delete(const QVariant& Temporary); - - /* - Method Execute - - For more information, see help context 5008 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Execute(); - - /* - Method Move - - For more information, see help context 5014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Move(); - - /* - Method Move - - For more information, see help context 5014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Move(const QVariant& Bar); - - /* - Method Move - - For more information, see help context 5014 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline Office::CommandBarControl* Move(const QVariant& Bar, const QVariant& Before); - - /* - Method PasteFace - - For more information, see help context 6004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void PasteFace(); - - /* - Method Reserved1 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved1(); - - /* - Method Reserved2 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved2(); - - /* - Method Reserved3 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved3(); - - /* - Method Reserved4 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved4(); - - /* - Method Reserved5 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved5(); - - /* - Method Reserved6 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved6(); - - /* - Method Reserved7 - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reserved7(); - - /* - Method Reset - - For more information, see help context 5021 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void Reset(); - - /* - Method SetFocus - - For more information, see help context 5022 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void SetFocus(); - - /* - Method accChild - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* accChild(const QVariant& varChild); - - /* - Method accDoDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accDoDefaultAction(); - - /* - Method accDoDefaultAction - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accDoDefaultAction(const QVariant& varChild); - - /* - Method accHelpTopic - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accHelpTopic(QString& pszHelpFile); - - /* - Method accHelpTopic - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline int accHelpTopic(QString& pszHelpFile, const QVariant& varChild); - - /* - Method accHitTest - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accHitTest(int xLeft, int yTop); - - /* - Method accLocation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight); - - /* - Method accLocation - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight, const QVariant& varChild); - - /* - Method accNavigate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accNavigate(int navDir); - - /* - Method accNavigate - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QVariant accNavigate(int navDir, const QVariant& varStart); - - /* - Method accSelect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accSelect(int flagsSelect); - - /* - Method accSelect - - For more information, see help context 0 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline void accSelect(int flagsSelect, const QVariant& varChild); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class OFFICE_EXPORT MsoEnvelope : public QAxObject -{ -public: - MsoEnvelope(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property CommandBars - - For more information, see help context 11005 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* CommandBars() const; //Returns the value of CommandBars - - /* - Property Introduction - - For more information, see help context 11001 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline QString Introduction() const; //Returns the value of Introduction - inline void SetIntroduction(const QString& value); //Sets the value of the Introduction property - - /* - Property Item - - For more information, see help context 11003 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Item() const; //Returns the value of Item - - /* - Property Parent - - For more information, see help context 11004 in c:\Program Files\Common Files\Microsoft Shared\OFFICE11\vbaof11.chm. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -// member function implementation -#ifndef QAX_DUMPCPP_OFFICE_NOINLINES -inline int IAccessible::accChildCount() const -{ - QVariant qax_result = property("accChildCount"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString IAccessible::accDefaultAction() const -{ - QVariant qax_result = property("accDefaultAction"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString IAccessible::accDescription() const -{ - QVariant qax_result = property("accDescription"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant IAccessible::accFocus() const -{ - QVariant qax_result = property("accFocus"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QString IAccessible::accHelp() const -{ - QVariant qax_result = property("accHelp"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString IAccessible::accKeyboardShortcut() const -{ - QVariant qax_result = property("accKeyboardShortcut"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant IAccessible::accName() const -{ - QVariant qax_result = property("accName"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void IAccessible::setAccName(const QVariant& value){ setProperty("accName", QVariant(value)); } - -inline IDispatch* IAccessible::accParent() const -{ - QVariant qax_result = property("accParent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QVariant IAccessible::accRole() const -{ - QVariant qax_result = property("accRole"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant IAccessible::accSelection() const -{ - QVariant qax_result = property("accSelection"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant IAccessible::accState() const -{ - QVariant qax_result = property("accState"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant IAccessible::accValue() const -{ - QVariant qax_result = property("accValue"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void IAccessible::setAccValue(const QVariant& value){ setProperty("accValue", QVariant(value)); } - -inline IDispatch* IAccessible::accChild(const QVariant& varChild) -{ - IDispatch* qax_result = 0; - void *_a[] = {(void*)&qax_result, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline void IAccessible::accDoDefaultAction() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void IAccessible::accDoDefaultAction(const QVariant& varChild) -{ - void *_a[] = {0, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline int IAccessible::accHelpTopic(QString& pszHelpFile) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&pszHelpFile}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); - return qax_result; -} - -inline int IAccessible::accHelpTopic(QString& pszHelpFile, const QVariant& varChild) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&pszHelpFile, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); - return qax_result; -} - -inline QVariant IAccessible::accHitTest(int xLeft, int yTop) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&xLeft, (void*)&yTop}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); - return qax_result; -} - -inline void IAccessible::accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight) -{ - void *_a[] = {0, (void*)&pxLeft, (void*)&pyTop, (void*)&pcxWidth, (void*)&pcyHeight}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); -} - -inline void IAccessible::accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight, const QVariant& varChild) -{ - void *_a[] = {0, (void*)&pxLeft, (void*)&pyTop, (void*)&pcxWidth, (void*)&pcyHeight, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); -} - -inline QVariant IAccessible::accNavigate(int navDir) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&navDir}; - qt_metacall(QMetaObject::InvokeMetaMethod, 25, _a); - return qax_result; -} - -inline QVariant IAccessible::accNavigate(int navDir, const QVariant& varStart) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&navDir, (void*)&varStart}; - qt_metacall(QMetaObject::InvokeMetaMethod, 26, _a); - return qax_result; -} - -inline void IAccessible::accSelect(int flagsSelect) -{ - void *_a[] = {0, (void*)&flagsSelect}; - qt_metacall(QMetaObject::InvokeMetaMethod, 29, _a); -} - -inline void IAccessible::accSelect(int flagsSelect, const QVariant& varChild) -{ - void *_a[] = {0, (void*)&flagsSelect, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 30, _a); -} - - -inline IDispatch* _IMsoDispObj::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int _IMsoDispObj::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - - -inline IDispatch* _IMsoOleAccDispObj::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int _IMsoOleAccDispObj::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int _IMsoOleAccDispObj::accChildCount() const -{ - QVariant qax_result = property("accChildCount"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString _IMsoOleAccDispObj::accDefaultAction() const -{ - QVariant qax_result = property("accDefaultAction"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString _IMsoOleAccDispObj::accDescription() const -{ - QVariant qax_result = property("accDescription"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant _IMsoOleAccDispObj::accFocus() const -{ - QVariant qax_result = property("accFocus"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QString _IMsoOleAccDispObj::accHelp() const -{ - QVariant qax_result = property("accHelp"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString _IMsoOleAccDispObj::accKeyboardShortcut() const -{ - QVariant qax_result = property("accKeyboardShortcut"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant _IMsoOleAccDispObj::accName() const -{ - QVariant qax_result = property("accName"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void _IMsoOleAccDispObj::setAccName(const QVariant& value){ setProperty("accName", QVariant(value)); } - -inline IDispatch* _IMsoOleAccDispObj::accParent() const -{ - QVariant qax_result = property("accParent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QVariant _IMsoOleAccDispObj::accRole() const -{ - QVariant qax_result = property("accRole"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant _IMsoOleAccDispObj::accSelection() const -{ - QVariant qax_result = property("accSelection"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant _IMsoOleAccDispObj::accState() const -{ - QVariant qax_result = property("accState"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant _IMsoOleAccDispObj::accValue() const -{ - QVariant qax_result = property("accValue"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void _IMsoOleAccDispObj::setAccValue(const QVariant& value){ setProperty("accValue", QVariant(value)); } - -inline IDispatch* _IMsoOleAccDispObj::accChild(const QVariant& varChild) -{ - IDispatch* qax_result = 0; - void *_a[] = {(void*)&qax_result, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline void _IMsoOleAccDispObj::accDoDefaultAction() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void _IMsoOleAccDispObj::accDoDefaultAction(const QVariant& varChild) -{ - void *_a[] = {0, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline int _IMsoOleAccDispObj::accHelpTopic(QString& pszHelpFile) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&pszHelpFile}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); - return qax_result; -} - -inline int _IMsoOleAccDispObj::accHelpTopic(QString& pszHelpFile, const QVariant& varChild) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&pszHelpFile, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); - return qax_result; -} - -inline QVariant _IMsoOleAccDispObj::accHitTest(int xLeft, int yTop) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&xLeft, (void*)&yTop}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); - return qax_result; -} - -inline void _IMsoOleAccDispObj::accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight) -{ - void *_a[] = {0, (void*)&pxLeft, (void*)&pyTop, (void*)&pcxWidth, (void*)&pcyHeight}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); -} - -inline void _IMsoOleAccDispObj::accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight, const QVariant& varChild) -{ - void *_a[] = {0, (void*)&pxLeft, (void*)&pyTop, (void*)&pcxWidth, (void*)&pcyHeight, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); -} - -inline QVariant _IMsoOleAccDispObj::accNavigate(int navDir) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&navDir}; - qt_metacall(QMetaObject::InvokeMetaMethod, 25, _a); - return qax_result; -} - -inline QVariant _IMsoOleAccDispObj::accNavigate(int navDir, const QVariant& varStart) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&navDir, (void*)&varStart}; - qt_metacall(QMetaObject::InvokeMetaMethod, 26, _a); - return qax_result; -} - -inline void _IMsoOleAccDispObj::accSelect(int flagsSelect) -{ - void *_a[] = {0, (void*)&flagsSelect}; - qt_metacall(QMetaObject::InvokeMetaMethod, 29, _a); -} - -inline void _IMsoOleAccDispObj::accSelect(int flagsSelect, const QVariant& varChild) -{ - void *_a[] = {0, (void*)&flagsSelect, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 30, _a); -} - - -inline Office::CommandBarControl* _CommandBars::ActionControl() const -{ - Office::CommandBarControl* qax_pointer = 0; - qRegisterMetaType("CommandBarControl*", &qax_pointer); - qRegisterMetaType("CommandBarControl", qax_pointer); - QVariant qax_result = property("ActionControl"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::CommandBarControl**)qax_result.constData(); -} - -inline Office::CommandBar* _CommandBars::ActiveMenuBar() const -{ - Office::CommandBar* qax_pointer = 0; - qRegisterMetaType("CommandBar*", &qax_pointer); - qRegisterMetaType("CommandBar", qax_pointer); - QVariant qax_result = property("ActiveMenuBar"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::CommandBar**)qax_result.constData(); -} - -inline bool _CommandBars::AdaptiveMenus() const -{ - QVariant qax_result = property("AdaptiveMenus"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void _CommandBars::SetAdaptiveMenus(bool value){ setProperty("AdaptiveMenus", QVariant(value)); } - -inline IDispatch* _CommandBars::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int _CommandBars::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int _CommandBars::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline bool _CommandBars::DisableAskAQuestionDropdown() const -{ - QVariant qax_result = property("DisableAskAQuestionDropdown"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void _CommandBars::SetDisableAskAQuestionDropdown(bool value){ setProperty("DisableAskAQuestionDropdown", QVariant(value)); } - -inline bool _CommandBars::DisableCustomize() const -{ - QVariant qax_result = property("DisableCustomize"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void _CommandBars::SetDisableCustomize(bool value){ setProperty("DisableCustomize", QVariant(value)); } - -inline bool _CommandBars::DisplayFonts() const -{ - QVariant qax_result = property("DisplayFonts"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void _CommandBars::SetDisplayFonts(bool value){ setProperty("DisplayFonts", QVariant(value)); } - -inline bool _CommandBars::DisplayKeysInTooltips() const -{ - QVariant qax_result = property("DisplayKeysInTooltips"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void _CommandBars::SetDisplayKeysInTooltips(bool value){ setProperty("DisplayKeysInTooltips", QVariant(value)); } - -inline bool _CommandBars::DisplayTooltips() const -{ - QVariant qax_result = property("DisplayTooltips"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void _CommandBars::SetDisplayTooltips(bool value){ setProperty("DisplayTooltips", QVariant(value)); } - -inline bool _CommandBars::LargeButtons() const -{ - QVariant qax_result = property("LargeButtons"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void _CommandBars::SetLargeButtons(bool value){ setProperty("LargeButtons", QVariant(value)); } - -inline Office::MsoMenuAnimation _CommandBars::MenuAnimationStyle() const -{ - QVariant qax_result = property("MenuAnimationStyle"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoMenuAnimation*)qax_result.constData(); -} -inline void _CommandBars::SetMenuAnimationStyle(Office::MsoMenuAnimation value){ setProperty("MenuAnimationStyle", QVariant(value)); } - -inline IDispatch* _CommandBars::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* _CommandBars::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::CommandBar* _CommandBars::Add() -{ - Office::CommandBar* qax_result = 0; - qRegisterMetaType("CommandBar*", &qax_result); - qRegisterMetaType("CommandBar", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline Office::CommandBar* _CommandBars::Add(const QVariant& Name) -{ - Office::CommandBar* qax_result = 0; - qRegisterMetaType("CommandBar*", &qax_result); - qRegisterMetaType("CommandBar", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Name}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline Office::CommandBar* _CommandBars::Add(const QVariant& Name, const QVariant& Position) -{ - Office::CommandBar* qax_result = 0; - qRegisterMetaType("CommandBar*", &qax_result); - qRegisterMetaType("CommandBar", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Name, (void*)&Position}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline Office::CommandBar* _CommandBars::Add(const QVariant& Name, const QVariant& Position, const QVariant& MenuBar) -{ - Office::CommandBar* qax_result = 0; - qRegisterMetaType("CommandBar*", &qax_result); - qRegisterMetaType("CommandBar", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Name, (void*)&Position, (void*)&MenuBar}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - -inline Office::CommandBar* _CommandBars::Add(const QVariant& Name, const QVariant& Position, const QVariant& MenuBar, const QVariant& Temporary) -{ - Office::CommandBar* qax_result = 0; - qRegisterMetaType("CommandBar*", &qax_result); - qRegisterMetaType("CommandBar", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Name, (void*)&Position, (void*)&MenuBar, (void*)&Temporary}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline Office::CommandBar* _CommandBars::AddEx() -{ - Office::CommandBar* qax_result = 0; - qRegisterMetaType("CommandBar*", &qax_result); - qRegisterMetaType("CommandBar", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); - return qax_result; -} - -inline Office::CommandBar* _CommandBars::AddEx(const QVariant& TbidOrName) -{ - Office::CommandBar* qax_result = 0; - qRegisterMetaType("CommandBar*", &qax_result); - qRegisterMetaType("CommandBar", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&TbidOrName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); - return qax_result; -} - -inline Office::CommandBar* _CommandBars::AddEx(const QVariant& TbidOrName, const QVariant& Position) -{ - Office::CommandBar* qax_result = 0; - qRegisterMetaType("CommandBar*", &qax_result); - qRegisterMetaType("CommandBar", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&TbidOrName, (void*)&Position}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); - return qax_result; -} - -inline Office::CommandBar* _CommandBars::AddEx(const QVariant& TbidOrName, const QVariant& Position, const QVariant& MenuBar) -{ - Office::CommandBar* qax_result = 0; - qRegisterMetaType("CommandBar*", &qax_result); - qRegisterMetaType("CommandBar", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&TbidOrName, (void*)&Position, (void*)&MenuBar}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); - return qax_result; -} - -inline Office::CommandBar* _CommandBars::AddEx(const QVariant& TbidOrName, const QVariant& Position, const QVariant& MenuBar, const QVariant& Temporary) -{ - Office::CommandBar* qax_result = 0; - qRegisterMetaType("CommandBar*", &qax_result); - qRegisterMetaType("CommandBar", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&TbidOrName, (void*)&Position, (void*)&MenuBar, (void*)&Temporary}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); - return qax_result; -} - -inline Office::CommandBar* _CommandBars::AddEx(const QVariant& TbidOrName, const QVariant& Position, const QVariant& MenuBar, const QVariant& Temporary, const QVariant& TbtrProtection) -{ - Office::CommandBar* qax_result = 0; - qRegisterMetaType("CommandBar*", &qax_result); - qRegisterMetaType("CommandBar", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&TbidOrName, (void*)&Position, (void*)&MenuBar, (void*)&Temporary, (void*)&TbtrProtection}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); - return qax_result; -} - -inline Office::CommandBarControl* _CommandBars::FindControl() -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); - return qax_result; -} - -inline Office::CommandBarControl* _CommandBars::FindControl(const QVariant& Type) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); - return qax_result; -} - -inline Office::CommandBarControl* _CommandBars::FindControl(const QVariant& Type, const QVariant& Id) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Id}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); - return qax_result; -} - -inline Office::CommandBarControl* _CommandBars::FindControl(const QVariant& Type, const QVariant& Id, const QVariant& Tag) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Id, (void*)&Tag}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); - return qax_result; -} - -inline Office::CommandBarControl* _CommandBars::FindControl(const QVariant& Type, const QVariant& Id, const QVariant& Tag, const QVariant& Visible) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Id, (void*)&Tag, (void*)&Visible}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); - return qax_result; -} - -inline Office::CommandBarControls* _CommandBars::FindControls() -{ - Office::CommandBarControls* qax_result = 0; - qRegisterMetaType("CommandBarControls*", &qax_result); - qRegisterMetaType("CommandBarControls", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 23, _a); - return qax_result; -} - -inline Office::CommandBarControls* _CommandBars::FindControls(const QVariant& Type) -{ - Office::CommandBarControls* qax_result = 0; - qRegisterMetaType("CommandBarControls*", &qax_result); - qRegisterMetaType("CommandBarControls", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type}; - qt_metacall(QMetaObject::InvokeMetaMethod, 24, _a); - return qax_result; -} - -inline Office::CommandBarControls* _CommandBars::FindControls(const QVariant& Type, const QVariant& Id) -{ - Office::CommandBarControls* qax_result = 0; - qRegisterMetaType("CommandBarControls*", &qax_result); - qRegisterMetaType("CommandBarControls", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Id}; - qt_metacall(QMetaObject::InvokeMetaMethod, 25, _a); - return qax_result; -} - -inline Office::CommandBarControls* _CommandBars::FindControls(const QVariant& Type, const QVariant& Id, const QVariant& Tag) -{ - Office::CommandBarControls* qax_result = 0; - qRegisterMetaType("CommandBarControls*", &qax_result); - qRegisterMetaType("CommandBarControls", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Id, (void*)&Tag}; - qt_metacall(QMetaObject::InvokeMetaMethod, 26, _a); - return qax_result; -} - -inline Office::CommandBarControls* _CommandBars::FindControls(const QVariant& Type, const QVariant& Id, const QVariant& Tag, const QVariant& Visible) -{ - Office::CommandBarControls* qax_result = 0; - qRegisterMetaType("CommandBarControls*", &qax_result); - qRegisterMetaType("CommandBarControls", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Id, (void*)&Tag, (void*)&Visible}; - qt_metacall(QMetaObject::InvokeMetaMethod, 27, _a); - return qax_result; -} - -inline int _CommandBars::IdsString(int ids, QString& pbstrName) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&ids, (void*)&pbstrName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 28, _a); - return qax_result; -} - -inline Office::CommandBar* _CommandBars::Item(const QVariant& Index) -{ - Office::CommandBar* qax_result = 0; - qRegisterMetaType("CommandBar*", &qax_result); - qRegisterMetaType("CommandBar", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 29, _a); - return qax_result; -} - -inline void _CommandBars::ReleaseFocus() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 30, _a); -} - -inline int _CommandBars::TmcGetName(int tmc, QString& pbstrName) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&tmc, (void*)&pbstrName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 39, _a); - return qax_result; -} - - -inline bool CommandBar::AdaptiveMenu() const -{ - QVariant qax_result = property("AdaptiveMenu"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void CommandBar::SetAdaptiveMenu(bool value){ setProperty("AdaptiveMenu", QVariant(value)); } - -inline IDispatch* CommandBar::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline bool CommandBar::BuiltIn() const -{ - QVariant qax_result = property("BuiltIn"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline QString CommandBar::Context() const -{ - QVariant qax_result = property("Context"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBar::SetContext(const QString& value){ setProperty("Context", QVariant(value)); } - -inline Office::CommandBarControls* CommandBar::Controls() const -{ - Office::CommandBarControls* qax_pointer = 0; - qRegisterMetaType("CommandBarControls*", &qax_pointer); - qRegisterMetaType("CommandBarControls", qax_pointer); - QVariant qax_result = property("Controls"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::CommandBarControls**)qax_result.constData(); -} - -inline int CommandBar::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline bool CommandBar::Enabled() const -{ - QVariant qax_result = property("Enabled"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void CommandBar::SetEnabled(bool value){ setProperty("Enabled", QVariant(value)); } - -inline int CommandBar::Height() const -{ - QVariant qax_result = property("Height"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBar::SetHeight(int value){ setProperty("Height", QVariant(value)); } - -inline int CommandBar::Id() const -{ - QVariant qax_result = property("Id"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int CommandBar::Index() const -{ - QVariant qax_result = property("Index"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int CommandBar::InstanceId() const -{ - QVariant qax_result = property("InstanceId"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int CommandBar::Left() const -{ - QVariant qax_result = property("Left"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBar::SetLeft(int value){ setProperty("Left", QVariant(value)); } - -inline QString CommandBar::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBar::SetName(const QString& value){ setProperty("Name", QVariant(value)); } - -inline QString CommandBar::NameLocal() const -{ - QVariant qax_result = property("NameLocal"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBar::SetNameLocal(const QString& value){ setProperty("NameLocal", QVariant(value)); } - -inline IDispatch* CommandBar::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoBarPosition CommandBar::Position() const -{ - QVariant qax_result = property("Position"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoBarPosition*)qax_result.constData(); -} -inline void CommandBar::SetPosition(Office::MsoBarPosition value){ setProperty("Position", QVariant(value)); } - -inline Office::MsoBarProtection CommandBar::Protection() const -{ - QVariant qax_result = property("Protection"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoBarProtection*)qax_result.constData(); -} -inline void CommandBar::SetProtection(Office::MsoBarProtection value){ setProperty("Protection", QVariant(value)); } - -inline int CommandBar::RowIndex() const -{ - QVariant qax_result = property("RowIndex"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBar::SetRowIndex(int value){ setProperty("RowIndex", QVariant(value)); } - -inline int CommandBar::Top() const -{ - QVariant qax_result = property("Top"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBar::SetTop(int value){ setProperty("Top", QVariant(value)); } - -inline Office::MsoBarType CommandBar::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoBarType*)qax_result.constData(); -} - -inline bool CommandBar::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void CommandBar::SetVisible(bool value){ setProperty("Visible", QVariant(value)); } - -inline int CommandBar::Width() const -{ - QVariant qax_result = property("Width"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBar::SetWidth(int value){ setProperty("Width", QVariant(value)); } - -inline int CommandBar::accChildCount() const -{ - QVariant qax_result = property("accChildCount"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString CommandBar::accDefaultAction() const -{ - QVariant qax_result = property("accDefaultAction"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString CommandBar::accDescription() const -{ - QVariant qax_result = property("accDescription"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant CommandBar::accFocus() const -{ - QVariant qax_result = property("accFocus"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QString CommandBar::accHelp() const -{ - QVariant qax_result = property("accHelp"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString CommandBar::accKeyboardShortcut() const -{ - QVariant qax_result = property("accKeyboardShortcut"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant CommandBar::accName() const -{ - QVariant qax_result = property("accName"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void CommandBar::setAccName(const QVariant& value){ setProperty("accName", QVariant(value)); } - -inline IDispatch* CommandBar::accParent() const -{ - QVariant qax_result = property("accParent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QVariant CommandBar::accRole() const -{ - QVariant qax_result = property("accRole"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant CommandBar::accSelection() const -{ - QVariant qax_result = property("accSelection"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant CommandBar::accState() const -{ - QVariant qax_result = property("accState"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant CommandBar::accValue() const -{ - QVariant qax_result = property("accValue"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void CommandBar::setAccValue(const QVariant& value){ setProperty("accValue", QVariant(value)); } - -inline void CommandBar::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline Office::CommandBarControl* CommandBar::FindControl() -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBar::FindControl(const QVariant& Type) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBar::FindControl(const QVariant& Type, const QVariant& Id) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Id}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBar::FindControl(const QVariant& Type, const QVariant& Id, const QVariant& Tag) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Id, (void*)&Tag}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBar::FindControl(const QVariant& Type, const QVariant& Id, const QVariant& Tag, const QVariant& Visible) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Id, (void*)&Tag, (void*)&Visible}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBar::FindControl(const QVariant& Type, const QVariant& Id, const QVariant& Tag, const QVariant& Visible, const QVariant& Recursive) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Id, (void*)&Tag, (void*)&Visible, (void*)&Recursive}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); - return qax_result; -} - -inline void CommandBar::Reset() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); -} - -inline void CommandBar::ShowPopup() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 28, _a); -} - -inline void CommandBar::ShowPopup(const QVariant& x) -{ - void *_a[] = {0, (void*)&x}; - qt_metacall(QMetaObject::InvokeMetaMethod, 29, _a); -} - -inline void CommandBar::ShowPopup(const QVariant& x, const QVariant& y) -{ - void *_a[] = {0, (void*)&x, (void*)&y}; - qt_metacall(QMetaObject::InvokeMetaMethod, 30, _a); -} - -inline IDispatch* CommandBar::accChild(const QVariant& varChild) -{ - IDispatch* qax_result = 0; - void *_a[] = {(void*)&qax_result, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 31, _a); - return qax_result; -} - -inline void CommandBar::accDoDefaultAction() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 36, _a); -} - -inline void CommandBar::accDoDefaultAction(const QVariant& varChild) -{ - void *_a[] = {0, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 37, _a); -} - -inline int CommandBar::accHelpTopic(QString& pszHelpFile) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&pszHelpFile}; - qt_metacall(QMetaObject::InvokeMetaMethod, 40, _a); - return qax_result; -} - -inline int CommandBar::accHelpTopic(QString& pszHelpFile, const QVariant& varChild) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&pszHelpFile, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 41, _a); - return qax_result; -} - -inline QVariant CommandBar::accHitTest(int xLeft, int yTop) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&xLeft, (void*)&yTop}; - qt_metacall(QMetaObject::InvokeMetaMethod, 42, _a); - return qax_result; -} - -inline void CommandBar::accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight) -{ - void *_a[] = {0, (void*)&pxLeft, (void*)&pyTop, (void*)&pcxWidth, (void*)&pcyHeight}; - qt_metacall(QMetaObject::InvokeMetaMethod, 45, _a); -} - -inline void CommandBar::accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight, const QVariant& varChild) -{ - void *_a[] = {0, (void*)&pxLeft, (void*)&pyTop, (void*)&pcxWidth, (void*)&pcyHeight, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 46, _a); -} - -inline QVariant CommandBar::accNavigate(int navDir) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&navDir}; - qt_metacall(QMetaObject::InvokeMetaMethod, 49, _a); - return qax_result; -} - -inline QVariant CommandBar::accNavigate(int navDir, const QVariant& varStart) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&navDir, (void*)&varStart}; - qt_metacall(QMetaObject::InvokeMetaMethod, 50, _a); - return qax_result; -} - -inline void CommandBar::accSelect(int flagsSelect) -{ - void *_a[] = {0, (void*)&flagsSelect}; - qt_metacall(QMetaObject::InvokeMetaMethod, 53, _a); -} - -inline void CommandBar::accSelect(int flagsSelect, const QVariant& varChild) -{ - void *_a[] = {0, (void*)&flagsSelect, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 54, _a); -} - - -inline IDispatch* CommandBarControls::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int CommandBarControls::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int CommandBarControls::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::CommandBar* CommandBarControls::Parent() const -{ - Office::CommandBar* qax_pointer = 0; - qRegisterMetaType("CommandBar*", &qax_pointer); - qRegisterMetaType("CommandBar", qax_pointer); - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::CommandBar**)qax_result.constData(); -} - -inline IUnknown* CommandBarControls::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::CommandBarControl* CommandBarControls::Add() -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBarControls::Add(const QVariant& Type) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBarControls::Add(const QVariant& Type, const QVariant& Id) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Id}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBarControls::Add(const QVariant& Type, const QVariant& Id, const QVariant& Parameter) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Id, (void*)&Parameter}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBarControls::Add(const QVariant& Type, const QVariant& Id, const QVariant& Parameter, const QVariant& Before) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Id, (void*)&Parameter, (void*)&Before}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBarControls::Add(const QVariant& Type, const QVariant& Id, const QVariant& Parameter, const QVariant& Before, const QVariant& Temporary) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Id, (void*)&Parameter, (void*)&Before, (void*)&Temporary}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBarControls::Item(const QVariant& Index) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); - return qax_result; -} - - -inline IDispatch* CommandBarControl::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline bool CommandBarControl::BeginGroup() const -{ - QVariant qax_result = property("BeginGroup"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void CommandBarControl::SetBeginGroup(bool value){ setProperty("BeginGroup", QVariant(value)); } - -inline bool CommandBarControl::BuiltIn() const -{ - QVariant qax_result = property("BuiltIn"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline QString CommandBarControl::Caption() const -{ - QVariant qax_result = property("Caption"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarControl::SetCaption(const QString& value){ setProperty("Caption", QVariant(value)); } - -inline IDispatch* CommandBarControl::Control() const -{ - QVariant qax_result = property("Control"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int CommandBarControl::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString CommandBarControl::DescriptionText() const -{ - QVariant qax_result = property("DescriptionText"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarControl::SetDescriptionText(const QString& value){ setProperty("DescriptionText", QVariant(value)); } - -inline bool CommandBarControl::Enabled() const -{ - QVariant qax_result = property("Enabled"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void CommandBarControl::SetEnabled(bool value){ setProperty("Enabled", QVariant(value)); } - -inline int CommandBarControl::Height() const -{ - QVariant qax_result = property("Height"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBarControl::SetHeight(int value){ setProperty("Height", QVariant(value)); } - -inline int CommandBarControl::HelpContextId() const -{ - QVariant qax_result = property("HelpContextId"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBarControl::SetHelpContextId(int value){ setProperty("HelpContextId", QVariant(value)); } - -inline QString CommandBarControl::HelpFile() const -{ - QVariant qax_result = property("HelpFile"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarControl::SetHelpFile(const QString& value){ setProperty("HelpFile", QVariant(value)); } - -inline int CommandBarControl::Id() const -{ - QVariant qax_result = property("Id"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int CommandBarControl::Index() const -{ - QVariant qax_result = property("Index"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int CommandBarControl::InstanceId() const -{ - QVariant qax_result = property("InstanceId"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline bool CommandBarControl::IsPriorityDropped() const -{ - QVariant qax_result = property("IsPriorityDropped"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline int CommandBarControl::Left() const -{ - QVariant qax_result = property("Left"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoControlOLEUsage CommandBarControl::OLEUsage() const -{ - QVariant qax_result = property("OLEUsage"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoControlOLEUsage*)qax_result.constData(); -} -inline void CommandBarControl::SetOLEUsage(Office::MsoControlOLEUsage value){ setProperty("OLEUsage", QVariant(value)); } - -inline QString CommandBarControl::OnAction() const -{ - QVariant qax_result = property("OnAction"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarControl::SetOnAction(const QString& value){ setProperty("OnAction", QVariant(value)); } - -inline QString CommandBarControl::Parameter() const -{ - QVariant qax_result = property("Parameter"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarControl::SetParameter(const QString& value){ setProperty("Parameter", QVariant(value)); } - -inline Office::CommandBar* CommandBarControl::Parent() const -{ - Office::CommandBar* qax_pointer = 0; - qRegisterMetaType("CommandBar*", &qax_pointer); - qRegisterMetaType("CommandBar", qax_pointer); - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::CommandBar**)qax_result.constData(); -} - -inline int CommandBarControl::Priority() const -{ - QVariant qax_result = property("Priority"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBarControl::SetPriority(int value){ setProperty("Priority", QVariant(value)); } - -inline QString CommandBarControl::Tag() const -{ - QVariant qax_result = property("Tag"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarControl::SetTag(const QString& value){ setProperty("Tag", QVariant(value)); } - -inline QString CommandBarControl::TooltipText() const -{ - QVariant qax_result = property("TooltipText"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarControl::SetTooltipText(const QString& value){ setProperty("TooltipText", QVariant(value)); } - -inline int CommandBarControl::Top() const -{ - QVariant qax_result = property("Top"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoControlType CommandBarControl::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoControlType*)qax_result.constData(); -} - -inline bool CommandBarControl::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void CommandBarControl::SetVisible(bool value){ setProperty("Visible", QVariant(value)); } - -inline int CommandBarControl::Width() const -{ - QVariant qax_result = property("Width"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBarControl::SetWidth(int value){ setProperty("Width", QVariant(value)); } - -inline int CommandBarControl::accChildCount() const -{ - QVariant qax_result = property("accChildCount"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString CommandBarControl::accDefaultAction() const -{ - QVariant qax_result = property("accDefaultAction"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString CommandBarControl::accDescription() const -{ - QVariant qax_result = property("accDescription"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant CommandBarControl::accFocus() const -{ - QVariant qax_result = property("accFocus"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QString CommandBarControl::accHelp() const -{ - QVariant qax_result = property("accHelp"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString CommandBarControl::accKeyboardShortcut() const -{ - QVariant qax_result = property("accKeyboardShortcut"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant CommandBarControl::accName() const -{ - QVariant qax_result = property("accName"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void CommandBarControl::setAccName(const QVariant& value){ setProperty("accName", QVariant(value)); } - -inline IDispatch* CommandBarControl::accParent() const -{ - QVariant qax_result = property("accParent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QVariant CommandBarControl::accRole() const -{ - QVariant qax_result = property("accRole"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant CommandBarControl::accSelection() const -{ - QVariant qax_result = property("accSelection"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant CommandBarControl::accState() const -{ - QVariant qax_result = property("accState"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant CommandBarControl::accValue() const -{ - QVariant qax_result = property("accValue"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void CommandBarControl::setAccValue(const QVariant& value){ setProperty("accValue", QVariant(value)); } - -inline Office::CommandBarControl* CommandBarControl::Copy() -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBarControl::Copy(const QVariant& Bar) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBarControl::Copy(const QVariant& Bar, const QVariant& Before) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar, (void*)&Before}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline void CommandBarControl::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void CommandBarControl::Delete(const QVariant& Temporary) -{ - void *_a[] = {0, (void*)&Temporary}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline void CommandBarControl::Execute() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline Office::CommandBarControl* CommandBarControl::Move() -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBarControl::Move(const QVariant& Bar) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBarControl::Move(const QVariant& Bar, const QVariant& Before) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar, (void*)&Before}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); - return qax_result; -} - -inline void CommandBarControl::Reserved1() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); -} - -inline void CommandBarControl::Reserved2() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); -} - -inline void CommandBarControl::Reserved3() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); -} - -inline void CommandBarControl::Reserved4() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); -} - -inline void CommandBarControl::Reserved5() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); -} - -inline void CommandBarControl::Reserved6() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); -} - -inline void CommandBarControl::Reserved7() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); -} - -inline void CommandBarControl::Reset() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 23, _a); -} - -inline void CommandBarControl::SetFocus() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 28, _a); -} - -inline IDispatch* CommandBarControl::accChild(const QVariant& varChild) -{ - IDispatch* qax_result = 0; - void *_a[] = {(void*)&qax_result, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 40, _a); - return qax_result; -} - -inline void CommandBarControl::accDoDefaultAction() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 45, _a); -} - -inline void CommandBarControl::accDoDefaultAction(const QVariant& varChild) -{ - void *_a[] = {0, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 46, _a); -} - -inline int CommandBarControl::accHelpTopic(QString& pszHelpFile) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&pszHelpFile}; - qt_metacall(QMetaObject::InvokeMetaMethod, 49, _a); - return qax_result; -} - -inline int CommandBarControl::accHelpTopic(QString& pszHelpFile, const QVariant& varChild) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&pszHelpFile, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 50, _a); - return qax_result; -} - -inline QVariant CommandBarControl::accHitTest(int xLeft, int yTop) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&xLeft, (void*)&yTop}; - qt_metacall(QMetaObject::InvokeMetaMethod, 51, _a); - return qax_result; -} - -inline void CommandBarControl::accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight) -{ - void *_a[] = {0, (void*)&pxLeft, (void*)&pyTop, (void*)&pcxWidth, (void*)&pcyHeight}; - qt_metacall(QMetaObject::InvokeMetaMethod, 54, _a); -} - -inline void CommandBarControl::accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight, const QVariant& varChild) -{ - void *_a[] = {0, (void*)&pxLeft, (void*)&pyTop, (void*)&pcxWidth, (void*)&pcyHeight, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 55, _a); -} - -inline QVariant CommandBarControl::accNavigate(int navDir) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&navDir}; - qt_metacall(QMetaObject::InvokeMetaMethod, 58, _a); - return qax_result; -} - -inline QVariant CommandBarControl::accNavigate(int navDir, const QVariant& varStart) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&navDir, (void*)&varStart}; - qt_metacall(QMetaObject::InvokeMetaMethod, 59, _a); - return qax_result; -} - -inline void CommandBarControl::accSelect(int flagsSelect) -{ - void *_a[] = {0, (void*)&flagsSelect}; - qt_metacall(QMetaObject::InvokeMetaMethod, 62, _a); -} - -inline void CommandBarControl::accSelect(int flagsSelect, const QVariant& varChild) -{ - void *_a[] = {0, (void*)&flagsSelect, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 63, _a); -} - - -inline IDispatch* _CommandBarButton::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline bool _CommandBarButton::BeginGroup() const -{ - QVariant qax_result = property("BeginGroup"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void _CommandBarButton::SetBeginGroup(bool value){ setProperty("BeginGroup", QVariant(value)); } - -inline bool _CommandBarButton::BuiltIn() const -{ - QVariant qax_result = property("BuiltIn"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline bool _CommandBarButton::BuiltInFace() const -{ - QVariant qax_result = property("BuiltInFace"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void _CommandBarButton::SetBuiltInFace(bool value){ setProperty("BuiltInFace", QVariant(value)); } - -inline QString _CommandBarButton::Caption() const -{ - QVariant qax_result = property("Caption"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _CommandBarButton::SetCaption(const QString& value){ setProperty("Caption", QVariant(value)); } - -inline IDispatch* _CommandBarButton::Control() const -{ - QVariant qax_result = property("Control"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int _CommandBarButton::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString _CommandBarButton::DescriptionText() const -{ - QVariant qax_result = property("DescriptionText"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _CommandBarButton::SetDescriptionText(const QString& value){ setProperty("DescriptionText", QVariant(value)); } - -inline bool _CommandBarButton::Enabled() const -{ - QVariant qax_result = property("Enabled"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void _CommandBarButton::SetEnabled(bool value){ setProperty("Enabled", QVariant(value)); } - -inline int _CommandBarButton::FaceId() const -{ - QVariant qax_result = property("FaceId"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void _CommandBarButton::SetFaceId(int value){ setProperty("FaceId", QVariant(value)); } - -inline int _CommandBarButton::Height() const -{ - QVariant qax_result = property("Height"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void _CommandBarButton::SetHeight(int value){ setProperty("Height", QVariant(value)); } - -inline int _CommandBarButton::HelpContextId() const -{ - QVariant qax_result = property("HelpContextId"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void _CommandBarButton::SetHelpContextId(int value){ setProperty("HelpContextId", QVariant(value)); } - -inline QString _CommandBarButton::HelpFile() const -{ - QVariant qax_result = property("HelpFile"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _CommandBarButton::SetHelpFile(const QString& value){ setProperty("HelpFile", QVariant(value)); } - -inline Office::MsoCommandBarButtonHyperlinkType _CommandBarButton::HyperlinkType() const -{ - QVariant qax_result = property("HyperlinkType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoCommandBarButtonHyperlinkType*)qax_result.constData(); -} -inline void _CommandBarButton::SetHyperlinkType(Office::MsoCommandBarButtonHyperlinkType value){ setProperty("HyperlinkType", QVariant(value)); } - -inline int _CommandBarButton::Id() const -{ - QVariant qax_result = property("Id"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int _CommandBarButton::Index() const -{ - QVariant qax_result = property("Index"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int _CommandBarButton::InstanceId() const -{ - QVariant qax_result = property("InstanceId"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline bool _CommandBarButton::IsPriorityDropped() const -{ - QVariant qax_result = property("IsPriorityDropped"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline int _CommandBarButton::Left() const -{ - QVariant qax_result = property("Left"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QPixmap _CommandBarButton::Mask() const -{ - QVariant qax_result = property("Mask"); - Q_ASSERT(qax_result.isValid()); - return *(QPixmap*)qax_result.constData(); -} -inline void _CommandBarButton::SetMask(const QPixmap& value){ setProperty("Mask", QVariant(value)); } - -inline Office::MsoControlOLEUsage _CommandBarButton::OLEUsage() const -{ - QVariant qax_result = property("OLEUsage"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoControlOLEUsage*)qax_result.constData(); -} -inline void _CommandBarButton::SetOLEUsage(Office::MsoControlOLEUsage value){ setProperty("OLEUsage", QVariant(value)); } - -inline QString _CommandBarButton::OnAction() const -{ - QVariant qax_result = property("OnAction"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _CommandBarButton::SetOnAction(const QString& value){ setProperty("OnAction", QVariant(value)); } - -inline QString _CommandBarButton::Parameter() const -{ - QVariant qax_result = property("Parameter"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _CommandBarButton::SetParameter(const QString& value){ setProperty("Parameter", QVariant(value)); } - -inline Office::CommandBar* _CommandBarButton::Parent() const -{ - Office::CommandBar* qax_pointer = 0; - qRegisterMetaType("CommandBar*", &qax_pointer); - qRegisterMetaType("CommandBar", qax_pointer); - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::CommandBar**)qax_result.constData(); -} - -inline QPixmap _CommandBarButton::Picture() const -{ - QVariant qax_result = property("Picture"); - Q_ASSERT(qax_result.isValid()); - return *(QPixmap*)qax_result.constData(); -} -inline void _CommandBarButton::SetPicture(const QPixmap& value){ setProperty("Picture", QVariant(value)); } - -inline int _CommandBarButton::Priority() const -{ - QVariant qax_result = property("Priority"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void _CommandBarButton::SetPriority(int value){ setProperty("Priority", QVariant(value)); } - -inline QString _CommandBarButton::ShortcutText() const -{ - QVariant qax_result = property("ShortcutText"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _CommandBarButton::SetShortcutText(const QString& value){ setProperty("ShortcutText", QVariant(value)); } - -inline Office::MsoButtonState _CommandBarButton::State() const -{ - QVariant qax_result = property("State"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoButtonState*)qax_result.constData(); -} -inline void _CommandBarButton::SetState(Office::MsoButtonState value){ setProperty("State", QVariant(value)); } - -inline Office::MsoButtonStyle _CommandBarButton::Style() const -{ - QVariant qax_result = property("Style"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoButtonStyle*)qax_result.constData(); -} -inline void _CommandBarButton::SetStyle(Office::MsoButtonStyle value){ setProperty("Style", QVariant(value)); } - -inline QString _CommandBarButton::Tag() const -{ - QVariant qax_result = property("Tag"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _CommandBarButton::SetTag(const QString& value){ setProperty("Tag", QVariant(value)); } - -inline QString _CommandBarButton::TooltipText() const -{ - QVariant qax_result = property("TooltipText"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _CommandBarButton::SetTooltipText(const QString& value){ setProperty("TooltipText", QVariant(value)); } - -inline int _CommandBarButton::Top() const -{ - QVariant qax_result = property("Top"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoControlType _CommandBarButton::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoControlType*)qax_result.constData(); -} - -inline bool _CommandBarButton::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void _CommandBarButton::SetVisible(bool value){ setProperty("Visible", QVariant(value)); } - -inline int _CommandBarButton::Width() const -{ - QVariant qax_result = property("Width"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void _CommandBarButton::SetWidth(int value){ setProperty("Width", QVariant(value)); } - -inline int _CommandBarButton::accChildCount() const -{ - QVariant qax_result = property("accChildCount"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString _CommandBarButton::accDefaultAction() const -{ - QVariant qax_result = property("accDefaultAction"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString _CommandBarButton::accDescription() const -{ - QVariant qax_result = property("accDescription"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant _CommandBarButton::accFocus() const -{ - QVariant qax_result = property("accFocus"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QString _CommandBarButton::accHelp() const -{ - QVariant qax_result = property("accHelp"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString _CommandBarButton::accKeyboardShortcut() const -{ - QVariant qax_result = property("accKeyboardShortcut"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant _CommandBarButton::accName() const -{ - QVariant qax_result = property("accName"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void _CommandBarButton::setAccName(const QVariant& value){ setProperty("accName", QVariant(value)); } - -inline IDispatch* _CommandBarButton::accParent() const -{ - QVariant qax_result = property("accParent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QVariant _CommandBarButton::accRole() const -{ - QVariant qax_result = property("accRole"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant _CommandBarButton::accSelection() const -{ - QVariant qax_result = property("accSelection"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant _CommandBarButton::accState() const -{ - QVariant qax_result = property("accState"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant _CommandBarButton::accValue() const -{ - QVariant qax_result = property("accValue"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void _CommandBarButton::setAccValue(const QVariant& value){ setProperty("accValue", QVariant(value)); } - -inline Office::CommandBarControl* _CommandBarButton::Copy() -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline Office::CommandBarControl* _CommandBarButton::Copy(const QVariant& Bar) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline Office::CommandBarControl* _CommandBarButton::Copy(const QVariant& Bar, const QVariant& Before) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar, (void*)&Before}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline void _CommandBarButton::CopyFace() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void _CommandBarButton::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline void _CommandBarButton::Delete(const QVariant& Temporary) -{ - void *_a[] = {0, (void*)&Temporary}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void _CommandBarButton::Execute() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline Office::CommandBarControl* _CommandBarButton::Move() -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); - return qax_result; -} - -inline Office::CommandBarControl* _CommandBarButton::Move(const QVariant& Bar) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); - return qax_result; -} - -inline Office::CommandBarControl* _CommandBarButton::Move(const QVariant& Bar, const QVariant& Before) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar, (void*)&Before}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); - return qax_result; -} - -inline void _CommandBarButton::PasteFace() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); -} - -inline void _CommandBarButton::Reserved1() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); -} - -inline void _CommandBarButton::Reserved2() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); -} - -inline void _CommandBarButton::Reserved3() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); -} - -inline void _CommandBarButton::Reserved4() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); -} - -inline void _CommandBarButton::Reserved5() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); -} - -inline void _CommandBarButton::Reserved6() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 23, _a); -} - -inline void _CommandBarButton::Reserved7() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 24, _a); -} - -inline void _CommandBarButton::Reset() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 25, _a); -} - -inline void _CommandBarButton::SetFocus() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 32, _a); -} - -inline IDispatch* _CommandBarButton::accChild(const QVariant& varChild) -{ - IDispatch* qax_result = 0; - void *_a[] = {(void*)&qax_result, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 50, _a); - return qax_result; -} - -inline void _CommandBarButton::accDoDefaultAction() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 55, _a); -} - -inline void _CommandBarButton::accDoDefaultAction(const QVariant& varChild) -{ - void *_a[] = {0, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 56, _a); -} - -inline int _CommandBarButton::accHelpTopic(QString& pszHelpFile) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&pszHelpFile}; - qt_metacall(QMetaObject::InvokeMetaMethod, 59, _a); - return qax_result; -} - -inline int _CommandBarButton::accHelpTopic(QString& pszHelpFile, const QVariant& varChild) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&pszHelpFile, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 60, _a); - return qax_result; -} - -inline QVariant _CommandBarButton::accHitTest(int xLeft, int yTop) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&xLeft, (void*)&yTop}; - qt_metacall(QMetaObject::InvokeMetaMethod, 61, _a); - return qax_result; -} - -inline void _CommandBarButton::accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight) -{ - void *_a[] = {0, (void*)&pxLeft, (void*)&pyTop, (void*)&pcxWidth, (void*)&pcyHeight}; - qt_metacall(QMetaObject::InvokeMetaMethod, 64, _a); -} - -inline void _CommandBarButton::accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight, const QVariant& varChild) -{ - void *_a[] = {0, (void*)&pxLeft, (void*)&pyTop, (void*)&pcxWidth, (void*)&pcyHeight, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 65, _a); -} - -inline QVariant _CommandBarButton::accNavigate(int navDir) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&navDir}; - qt_metacall(QMetaObject::InvokeMetaMethod, 68, _a); - return qax_result; -} - -inline QVariant _CommandBarButton::accNavigate(int navDir, const QVariant& varStart) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&navDir, (void*)&varStart}; - qt_metacall(QMetaObject::InvokeMetaMethod, 69, _a); - return qax_result; -} - -inline void _CommandBarButton::accSelect(int flagsSelect) -{ - void *_a[] = {0, (void*)&flagsSelect}; - qt_metacall(QMetaObject::InvokeMetaMethod, 72, _a); -} - -inline void _CommandBarButton::accSelect(int flagsSelect, const QVariant& varChild) -{ - void *_a[] = {0, (void*)&flagsSelect, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 73, _a); -} - - -inline IDispatch* CommandBarPopup::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline bool CommandBarPopup::BeginGroup() const -{ - QVariant qax_result = property("BeginGroup"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void CommandBarPopup::SetBeginGroup(bool value){ setProperty("BeginGroup", QVariant(value)); } - -inline bool CommandBarPopup::BuiltIn() const -{ - QVariant qax_result = property("BuiltIn"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline QString CommandBarPopup::Caption() const -{ - QVariant qax_result = property("Caption"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarPopup::SetCaption(const QString& value){ setProperty("Caption", QVariant(value)); } - -inline Office::CommandBar* CommandBarPopup::CommandBar() const -{ - Office::CommandBar* qax_pointer = 0; - qRegisterMetaType("CommandBar*", &qax_pointer); - qRegisterMetaType("CommandBar", qax_pointer); - QVariant qax_result = property("CommandBar"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::CommandBar**)qax_result.constData(); -} - -inline IDispatch* CommandBarPopup::Control() const -{ - QVariant qax_result = property("Control"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::CommandBarControls* CommandBarPopup::Controls() const -{ - Office::CommandBarControls* qax_pointer = 0; - qRegisterMetaType("CommandBarControls*", &qax_pointer); - qRegisterMetaType("CommandBarControls", qax_pointer); - QVariant qax_result = property("Controls"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::CommandBarControls**)qax_result.constData(); -} - -inline int CommandBarPopup::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString CommandBarPopup::DescriptionText() const -{ - QVariant qax_result = property("DescriptionText"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarPopup::SetDescriptionText(const QString& value){ setProperty("DescriptionText", QVariant(value)); } - -inline bool CommandBarPopup::Enabled() const -{ - QVariant qax_result = property("Enabled"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void CommandBarPopup::SetEnabled(bool value){ setProperty("Enabled", QVariant(value)); } - -inline int CommandBarPopup::Height() const -{ - QVariant qax_result = property("Height"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBarPopup::SetHeight(int value){ setProperty("Height", QVariant(value)); } - -inline int CommandBarPopup::HelpContextId() const -{ - QVariant qax_result = property("HelpContextId"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBarPopup::SetHelpContextId(int value){ setProperty("HelpContextId", QVariant(value)); } - -inline QString CommandBarPopup::HelpFile() const -{ - QVariant qax_result = property("HelpFile"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarPopup::SetHelpFile(const QString& value){ setProperty("HelpFile", QVariant(value)); } - -inline int CommandBarPopup::Id() const -{ - QVariant qax_result = property("Id"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int CommandBarPopup::Index() const -{ - QVariant qax_result = property("Index"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int CommandBarPopup::InstanceId() const -{ - QVariant qax_result = property("InstanceId"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline bool CommandBarPopup::IsPriorityDropped() const -{ - QVariant qax_result = property("IsPriorityDropped"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline int CommandBarPopup::Left() const -{ - QVariant qax_result = property("Left"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoOLEMenuGroup CommandBarPopup::OLEMenuGroup() const -{ - QVariant qax_result = property("OLEMenuGroup"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoOLEMenuGroup*)qax_result.constData(); -} -inline void CommandBarPopup::SetOLEMenuGroup(Office::MsoOLEMenuGroup value){ setProperty("OLEMenuGroup", QVariant(value)); } - -inline Office::MsoControlOLEUsage CommandBarPopup::OLEUsage() const -{ - QVariant qax_result = property("OLEUsage"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoControlOLEUsage*)qax_result.constData(); -} -inline void CommandBarPopup::SetOLEUsage(Office::MsoControlOLEUsage value){ setProperty("OLEUsage", QVariant(value)); } - -inline QString CommandBarPopup::OnAction() const -{ - QVariant qax_result = property("OnAction"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarPopup::SetOnAction(const QString& value){ setProperty("OnAction", QVariant(value)); } - -inline QString CommandBarPopup::Parameter() const -{ - QVariant qax_result = property("Parameter"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarPopup::SetParameter(const QString& value){ setProperty("Parameter", QVariant(value)); } - -inline Office::CommandBar* CommandBarPopup::Parent() const -{ - Office::CommandBar* qax_pointer = 0; - qRegisterMetaType("CommandBar*", &qax_pointer); - qRegisterMetaType("CommandBar", qax_pointer); - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::CommandBar**)qax_result.constData(); -} - -inline int CommandBarPopup::Priority() const -{ - QVariant qax_result = property("Priority"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBarPopup::SetPriority(int value){ setProperty("Priority", QVariant(value)); } - -inline QString CommandBarPopup::Tag() const -{ - QVariant qax_result = property("Tag"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarPopup::SetTag(const QString& value){ setProperty("Tag", QVariant(value)); } - -inline QString CommandBarPopup::TooltipText() const -{ - QVariant qax_result = property("TooltipText"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarPopup::SetTooltipText(const QString& value){ setProperty("TooltipText", QVariant(value)); } - -inline int CommandBarPopup::Top() const -{ - QVariant qax_result = property("Top"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoControlType CommandBarPopup::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoControlType*)qax_result.constData(); -} - -inline bool CommandBarPopup::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void CommandBarPopup::SetVisible(bool value){ setProperty("Visible", QVariant(value)); } - -inline int CommandBarPopup::Width() const -{ - QVariant qax_result = property("Width"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBarPopup::SetWidth(int value){ setProperty("Width", QVariant(value)); } - -inline int CommandBarPopup::accChildCount() const -{ - QVariant qax_result = property("accChildCount"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString CommandBarPopup::accDefaultAction() const -{ - QVariant qax_result = property("accDefaultAction"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString CommandBarPopup::accDescription() const -{ - QVariant qax_result = property("accDescription"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant CommandBarPopup::accFocus() const -{ - QVariant qax_result = property("accFocus"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QString CommandBarPopup::accHelp() const -{ - QVariant qax_result = property("accHelp"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString CommandBarPopup::accKeyboardShortcut() const -{ - QVariant qax_result = property("accKeyboardShortcut"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant CommandBarPopup::accName() const -{ - QVariant qax_result = property("accName"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void CommandBarPopup::setAccName(const QVariant& value){ setProperty("accName", QVariant(value)); } - -inline IDispatch* CommandBarPopup::accParent() const -{ - QVariant qax_result = property("accParent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QVariant CommandBarPopup::accRole() const -{ - QVariant qax_result = property("accRole"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant CommandBarPopup::accSelection() const -{ - QVariant qax_result = property("accSelection"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant CommandBarPopup::accState() const -{ - QVariant qax_result = property("accState"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant CommandBarPopup::accValue() const -{ - QVariant qax_result = property("accValue"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void CommandBarPopup::setAccValue(const QVariant& value){ setProperty("accValue", QVariant(value)); } - -inline Office::CommandBarControl* CommandBarPopup::Copy() -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBarPopup::Copy(const QVariant& Bar) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBarPopup::Copy(const QVariant& Bar, const QVariant& Before) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar, (void*)&Before}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline void CommandBarPopup::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void CommandBarPopup::Delete(const QVariant& Temporary) -{ - void *_a[] = {0, (void*)&Temporary}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline void CommandBarPopup::Execute() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline Office::CommandBarControl* CommandBarPopup::Move() -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBarPopup::Move(const QVariant& Bar) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBarPopup::Move(const QVariant& Bar, const QVariant& Before) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar, (void*)&Before}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); - return qax_result; -} - -inline void CommandBarPopup::Reserved1() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); -} - -inline void CommandBarPopup::Reserved2() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); -} - -inline void CommandBarPopup::Reserved3() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); -} - -inline void CommandBarPopup::Reserved4() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); -} - -inline void CommandBarPopup::Reserved5() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); -} - -inline void CommandBarPopup::Reserved6() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); -} - -inline void CommandBarPopup::Reserved7() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); -} - -inline void CommandBarPopup::Reset() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 23, _a); -} - -inline void CommandBarPopup::SetFocus() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 28, _a); -} - -inline IDispatch* CommandBarPopup::accChild(const QVariant& varChild) -{ - IDispatch* qax_result = 0; - void *_a[] = {(void*)&qax_result, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 41, _a); - return qax_result; -} - -inline void CommandBarPopup::accDoDefaultAction() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 46, _a); -} - -inline void CommandBarPopup::accDoDefaultAction(const QVariant& varChild) -{ - void *_a[] = {0, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 47, _a); -} - -inline int CommandBarPopup::accHelpTopic(QString& pszHelpFile) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&pszHelpFile}; - qt_metacall(QMetaObject::InvokeMetaMethod, 50, _a); - return qax_result; -} - -inline int CommandBarPopup::accHelpTopic(QString& pszHelpFile, const QVariant& varChild) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&pszHelpFile, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 51, _a); - return qax_result; -} - -inline QVariant CommandBarPopup::accHitTest(int xLeft, int yTop) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&xLeft, (void*)&yTop}; - qt_metacall(QMetaObject::InvokeMetaMethod, 52, _a); - return qax_result; -} - -inline void CommandBarPopup::accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight) -{ - void *_a[] = {0, (void*)&pxLeft, (void*)&pyTop, (void*)&pcxWidth, (void*)&pcyHeight}; - qt_metacall(QMetaObject::InvokeMetaMethod, 55, _a); -} - -inline void CommandBarPopup::accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight, const QVariant& varChild) -{ - void *_a[] = {0, (void*)&pxLeft, (void*)&pyTop, (void*)&pcxWidth, (void*)&pcyHeight, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 56, _a); -} - -inline QVariant CommandBarPopup::accNavigate(int navDir) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&navDir}; - qt_metacall(QMetaObject::InvokeMetaMethod, 59, _a); - return qax_result; -} - -inline QVariant CommandBarPopup::accNavigate(int navDir, const QVariant& varStart) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&navDir, (void*)&varStart}; - qt_metacall(QMetaObject::InvokeMetaMethod, 60, _a); - return qax_result; -} - -inline void CommandBarPopup::accSelect(int flagsSelect) -{ - void *_a[] = {0, (void*)&flagsSelect}; - qt_metacall(QMetaObject::InvokeMetaMethod, 63, _a); -} - -inline void CommandBarPopup::accSelect(int flagsSelect, const QVariant& varChild) -{ - void *_a[] = {0, (void*)&flagsSelect, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 64, _a); -} - - -inline IDispatch* _CommandBarComboBox::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline bool _CommandBarComboBox::BeginGroup() const -{ - QVariant qax_result = property("BeginGroup"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void _CommandBarComboBox::SetBeginGroup(bool value){ setProperty("BeginGroup", QVariant(value)); } - -inline bool _CommandBarComboBox::BuiltIn() const -{ - QVariant qax_result = property("BuiltIn"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline QString _CommandBarComboBox::Caption() const -{ - QVariant qax_result = property("Caption"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _CommandBarComboBox::SetCaption(const QString& value){ setProperty("Caption", QVariant(value)); } - -inline IDispatch* _CommandBarComboBox::Control() const -{ - QVariant qax_result = property("Control"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int _CommandBarComboBox::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString _CommandBarComboBox::DescriptionText() const -{ - QVariant qax_result = property("DescriptionText"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _CommandBarComboBox::SetDescriptionText(const QString& value){ setProperty("DescriptionText", QVariant(value)); } - -inline int _CommandBarComboBox::DropDownLines() const -{ - QVariant qax_result = property("DropDownLines"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void _CommandBarComboBox::SetDropDownLines(int value){ setProperty("DropDownLines", QVariant(value)); } - -inline int _CommandBarComboBox::DropDownWidth() const -{ - QVariant qax_result = property("DropDownWidth"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void _CommandBarComboBox::SetDropDownWidth(int value){ setProperty("DropDownWidth", QVariant(value)); } - -inline bool _CommandBarComboBox::Enabled() const -{ - QVariant qax_result = property("Enabled"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void _CommandBarComboBox::SetEnabled(bool value){ setProperty("Enabled", QVariant(value)); } - -inline int _CommandBarComboBox::Height() const -{ - QVariant qax_result = property("Height"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void _CommandBarComboBox::SetHeight(int value){ setProperty("Height", QVariant(value)); } - -inline int _CommandBarComboBox::HelpContextId() const -{ - QVariant qax_result = property("HelpContextId"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void _CommandBarComboBox::SetHelpContextId(int value){ setProperty("HelpContextId", QVariant(value)); } - -inline QString _CommandBarComboBox::HelpFile() const -{ - QVariant qax_result = property("HelpFile"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _CommandBarComboBox::SetHelpFile(const QString& value){ setProperty("HelpFile", QVariant(value)); } - -inline int _CommandBarComboBox::Id() const -{ - QVariant qax_result = property("Id"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int _CommandBarComboBox::Index() const -{ - QVariant qax_result = property("Index"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int _CommandBarComboBox::InstanceId() const -{ - QVariant qax_result = property("InstanceId"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline bool _CommandBarComboBox::IsPriorityDropped() const -{ - QVariant qax_result = property("IsPriorityDropped"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline int _CommandBarComboBox::Left() const -{ - QVariant qax_result = property("Left"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int _CommandBarComboBox::ListCount() const -{ - QVariant qax_result = property("ListCount"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int _CommandBarComboBox::ListHeaderCount() const -{ - QVariant qax_result = property("ListHeaderCount"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void _CommandBarComboBox::SetListHeaderCount(int value){ setProperty("ListHeaderCount", QVariant(value)); } - -inline int _CommandBarComboBox::ListIndex() const -{ - QVariant qax_result = property("ListIndex"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void _CommandBarComboBox::SetListIndex(int value){ setProperty("ListIndex", QVariant(value)); } - -inline Office::MsoControlOLEUsage _CommandBarComboBox::OLEUsage() const -{ - QVariant qax_result = property("OLEUsage"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoControlOLEUsage*)qax_result.constData(); -} -inline void _CommandBarComboBox::SetOLEUsage(Office::MsoControlOLEUsage value){ setProperty("OLEUsage", QVariant(value)); } - -inline QString _CommandBarComboBox::OnAction() const -{ - QVariant qax_result = property("OnAction"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _CommandBarComboBox::SetOnAction(const QString& value){ setProperty("OnAction", QVariant(value)); } - -inline QString _CommandBarComboBox::Parameter() const -{ - QVariant qax_result = property("Parameter"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _CommandBarComboBox::SetParameter(const QString& value){ setProperty("Parameter", QVariant(value)); } - -inline Office::CommandBar* _CommandBarComboBox::Parent() const -{ - Office::CommandBar* qax_pointer = 0; - qRegisterMetaType("CommandBar*", &qax_pointer); - qRegisterMetaType("CommandBar", qax_pointer); - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::CommandBar**)qax_result.constData(); -} - -inline int _CommandBarComboBox::Priority() const -{ - QVariant qax_result = property("Priority"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void _CommandBarComboBox::SetPriority(int value){ setProperty("Priority", QVariant(value)); } - -inline Office::MsoComboStyle _CommandBarComboBox::Style() const -{ - QVariant qax_result = property("Style"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoComboStyle*)qax_result.constData(); -} -inline void _CommandBarComboBox::SetStyle(Office::MsoComboStyle value){ setProperty("Style", QVariant(value)); } - -inline QString _CommandBarComboBox::Tag() const -{ - QVariant qax_result = property("Tag"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _CommandBarComboBox::SetTag(const QString& value){ setProperty("Tag", QVariant(value)); } - -inline QString _CommandBarComboBox::Text() const -{ - QVariant qax_result = property("Text"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _CommandBarComboBox::SetText(const QString& value){ setProperty("Text", QVariant(value)); } - -inline QString _CommandBarComboBox::TooltipText() const -{ - QVariant qax_result = property("TooltipText"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _CommandBarComboBox::SetTooltipText(const QString& value){ setProperty("TooltipText", QVariant(value)); } - -inline int _CommandBarComboBox::Top() const -{ - QVariant qax_result = property("Top"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoControlType _CommandBarComboBox::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoControlType*)qax_result.constData(); -} - -inline bool _CommandBarComboBox::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void _CommandBarComboBox::SetVisible(bool value){ setProperty("Visible", QVariant(value)); } - -inline int _CommandBarComboBox::Width() const -{ - QVariant qax_result = property("Width"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void _CommandBarComboBox::SetWidth(int value){ setProperty("Width", QVariant(value)); } - -inline int _CommandBarComboBox::accChildCount() const -{ - QVariant qax_result = property("accChildCount"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString _CommandBarComboBox::accDefaultAction() const -{ - QVariant qax_result = property("accDefaultAction"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString _CommandBarComboBox::accDescription() const -{ - QVariant qax_result = property("accDescription"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant _CommandBarComboBox::accFocus() const -{ - QVariant qax_result = property("accFocus"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QString _CommandBarComboBox::accHelp() const -{ - QVariant qax_result = property("accHelp"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString _CommandBarComboBox::accKeyboardShortcut() const -{ - QVariant qax_result = property("accKeyboardShortcut"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant _CommandBarComboBox::accName() const -{ - QVariant qax_result = property("accName"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void _CommandBarComboBox::setAccName(const QVariant& value){ setProperty("accName", QVariant(value)); } - -inline IDispatch* _CommandBarComboBox::accParent() const -{ - QVariant qax_result = property("accParent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QVariant _CommandBarComboBox::accRole() const -{ - QVariant qax_result = property("accRole"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant _CommandBarComboBox::accSelection() const -{ - QVariant qax_result = property("accSelection"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant _CommandBarComboBox::accState() const -{ - QVariant qax_result = property("accState"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant _CommandBarComboBox::accValue() const -{ - QVariant qax_result = property("accValue"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void _CommandBarComboBox::setAccValue(const QVariant& value){ setProperty("accValue", QVariant(value)); } - -inline void _CommandBarComboBox::AddItem(const QString& Text) -{ - void *_a[] = {0, (void*)&Text}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void _CommandBarComboBox::AddItem(const QString& Text, const QVariant& Index) -{ - void *_a[] = {0, (void*)&Text, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void _CommandBarComboBox::Clear() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline Office::CommandBarControl* _CommandBarComboBox::Copy() -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - -inline Office::CommandBarControl* _CommandBarComboBox::Copy(const QVariant& Bar) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline Office::CommandBarControl* _CommandBarComboBox::Copy(const QVariant& Bar, const QVariant& Before) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar, (void*)&Before}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); - return qax_result; -} - -inline void _CommandBarComboBox::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline void _CommandBarComboBox::Delete(const QVariant& Temporary) -{ - void *_a[] = {0, (void*)&Temporary}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); -} - -inline void _CommandBarComboBox::Execute() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); -} - -inline QString _CommandBarComboBox::List(int Index) -{ - QString qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); - return qax_result; -} - -inline Office::CommandBarControl* _CommandBarComboBox::Move() -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); - return qax_result; -} - -inline Office::CommandBarControl* _CommandBarComboBox::Move(const QVariant& Bar) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); - return qax_result; -} - -inline Office::CommandBarControl* _CommandBarComboBox::Move(const QVariant& Bar, const QVariant& Before) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar, (void*)&Before}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); - return qax_result; -} - -inline void _CommandBarComboBox::RemoveItem(int Index) -{ - void *_a[] = {0, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); -} - -inline void _CommandBarComboBox::Reserved1() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); -} - -inline void _CommandBarComboBox::Reserved2() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); -} - -inline void _CommandBarComboBox::Reserved3() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 23, _a); -} - -inline void _CommandBarComboBox::Reserved4() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 24, _a); -} - -inline void _CommandBarComboBox::Reserved5() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 25, _a); -} - -inline void _CommandBarComboBox::Reserved6() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 26, _a); -} - -inline void _CommandBarComboBox::Reserved7() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 27, _a); -} - -inline void _CommandBarComboBox::Reset() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 28, _a); -} - -inline void _CommandBarComboBox::SetFocus() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 35, _a); -} - -inline int _CommandBarComboBox::SetList(int Index, const QString& rhs) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index, (void*)&rhs}; - qt_metacall(QMetaObject::InvokeMetaMethod, 39, _a); - return qax_result; -} - -inline IDispatch* _CommandBarComboBox::accChild(const QVariant& varChild) -{ - IDispatch* qax_result = 0; - void *_a[] = {(void*)&qax_result, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 52, _a); - return qax_result; -} - -inline void _CommandBarComboBox::accDoDefaultAction() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 57, _a); -} - -inline void _CommandBarComboBox::accDoDefaultAction(const QVariant& varChild) -{ - void *_a[] = {0, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 58, _a); -} - -inline int _CommandBarComboBox::accHelpTopic(QString& pszHelpFile) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&pszHelpFile}; - qt_metacall(QMetaObject::InvokeMetaMethod, 61, _a); - return qax_result; -} - -inline int _CommandBarComboBox::accHelpTopic(QString& pszHelpFile, const QVariant& varChild) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&pszHelpFile, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 62, _a); - return qax_result; -} - -inline QVariant _CommandBarComboBox::accHitTest(int xLeft, int yTop) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&xLeft, (void*)&yTop}; - qt_metacall(QMetaObject::InvokeMetaMethod, 63, _a); - return qax_result; -} - -inline void _CommandBarComboBox::accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight) -{ - void *_a[] = {0, (void*)&pxLeft, (void*)&pyTop, (void*)&pcxWidth, (void*)&pcyHeight}; - qt_metacall(QMetaObject::InvokeMetaMethod, 66, _a); -} - -inline void _CommandBarComboBox::accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight, const QVariant& varChild) -{ - void *_a[] = {0, (void*)&pxLeft, (void*)&pyTop, (void*)&pcxWidth, (void*)&pcyHeight, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 67, _a); -} - -inline QVariant _CommandBarComboBox::accNavigate(int navDir) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&navDir}; - qt_metacall(QMetaObject::InvokeMetaMethod, 70, _a); - return qax_result; -} - -inline QVariant _CommandBarComboBox::accNavigate(int navDir, const QVariant& varStart) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&navDir, (void*)&varStart}; - qt_metacall(QMetaObject::InvokeMetaMethod, 71, _a); - return qax_result; -} - -inline void _CommandBarComboBox::accSelect(int flagsSelect) -{ - void *_a[] = {0, (void*)&flagsSelect}; - qt_metacall(QMetaObject::InvokeMetaMethod, 74, _a); -} - -inline void _CommandBarComboBox::accSelect(int flagsSelect, const QVariant& varChild) -{ - void *_a[] = {0, (void*)&flagsSelect, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 75, _a); -} - - -inline IDispatch* _CommandBarActiveX::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline bool _CommandBarActiveX::BeginGroup() const -{ - QVariant qax_result = property("BeginGroup"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void _CommandBarActiveX::SetBeginGroup(bool value){ setProperty("BeginGroup", QVariant(value)); } - -inline bool _CommandBarActiveX::BuiltIn() const -{ - QVariant qax_result = property("BuiltIn"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline QString _CommandBarActiveX::Caption() const -{ - QVariant qax_result = property("Caption"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _CommandBarActiveX::SetCaption(const QString& value){ setProperty("Caption", QVariant(value)); } - -inline IDispatch* _CommandBarActiveX::Control() const -{ - QVariant qax_result = property("Control"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString _CommandBarActiveX::ControlCLSID() const -{ - QVariant qax_result = property("ControlCLSID"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _CommandBarActiveX::SetControlCLSID(const QString& value){ setProperty("ControlCLSID", QVariant(value)); } - -inline int _CommandBarActiveX::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString _CommandBarActiveX::DescriptionText() const -{ - QVariant qax_result = property("DescriptionText"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _CommandBarActiveX::SetDescriptionText(const QString& value){ setProperty("DescriptionText", QVariant(value)); } - -inline bool _CommandBarActiveX::Enabled() const -{ - QVariant qax_result = property("Enabled"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void _CommandBarActiveX::SetEnabled(bool value){ setProperty("Enabled", QVariant(value)); } - -inline int _CommandBarActiveX::Height() const -{ - QVariant qax_result = property("Height"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void _CommandBarActiveX::SetHeight(int value){ setProperty("Height", QVariant(value)); } - -inline int _CommandBarActiveX::HelpContextId() const -{ - QVariant qax_result = property("HelpContextId"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void _CommandBarActiveX::SetHelpContextId(int value){ setProperty("HelpContextId", QVariant(value)); } - -inline QString _CommandBarActiveX::HelpFile() const -{ - QVariant qax_result = property("HelpFile"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _CommandBarActiveX::SetHelpFile(const QString& value){ setProperty("HelpFile", QVariant(value)); } - -inline int _CommandBarActiveX::Id() const -{ - QVariant qax_result = property("Id"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int _CommandBarActiveX::Index() const -{ - QVariant qax_result = property("Index"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IUnknown* _CommandBarActiveX::InitWith() const -{ - QVariant qax_result = property("InitWith"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} -inline void _CommandBarActiveX::SetInitWith(IUnknown* value){ - int typeId = qRegisterMetaType("IUnknown*", &value); - setProperty("InitWith", QVariant(typeId, &value)); -} - -inline int _CommandBarActiveX::InstanceId() const -{ - QVariant qax_result = property("InstanceId"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline bool _CommandBarActiveX::IsPriorityDropped() const -{ - QVariant qax_result = property("IsPriorityDropped"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline int _CommandBarActiveX::Left() const -{ - QVariant qax_result = property("Left"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoControlOLEUsage _CommandBarActiveX::OLEUsage() const -{ - QVariant qax_result = property("OLEUsage"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoControlOLEUsage*)qax_result.constData(); -} -inline void _CommandBarActiveX::SetOLEUsage(Office::MsoControlOLEUsage value){ setProperty("OLEUsage", QVariant(value)); } - -inline QString _CommandBarActiveX::OnAction() const -{ - QVariant qax_result = property("OnAction"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _CommandBarActiveX::SetOnAction(const QString& value){ setProperty("OnAction", QVariant(value)); } - -inline QString _CommandBarActiveX::Parameter() const -{ - QVariant qax_result = property("Parameter"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _CommandBarActiveX::SetParameter(const QString& value){ setProperty("Parameter", QVariant(value)); } - -inline Office::CommandBar* _CommandBarActiveX::Parent() const -{ - Office::CommandBar* qax_pointer = 0; - qRegisterMetaType("CommandBar*", &qax_pointer); - qRegisterMetaType("CommandBar", qax_pointer); - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::CommandBar**)qax_result.constData(); -} - -inline int _CommandBarActiveX::Priority() const -{ - QVariant qax_result = property("Priority"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void _CommandBarActiveX::SetPriority(int value){ setProperty("Priority", QVariant(value)); } - -inline QString _CommandBarActiveX::Tag() const -{ - QVariant qax_result = property("Tag"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _CommandBarActiveX::SetTag(const QString& value){ setProperty("Tag", QVariant(value)); } - -inline QString _CommandBarActiveX::TooltipText() const -{ - QVariant qax_result = property("TooltipText"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _CommandBarActiveX::SetTooltipText(const QString& value){ setProperty("TooltipText", QVariant(value)); } - -inline int _CommandBarActiveX::Top() const -{ - QVariant qax_result = property("Top"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoControlType _CommandBarActiveX::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoControlType*)qax_result.constData(); -} - -inline bool _CommandBarActiveX::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void _CommandBarActiveX::SetVisible(bool value){ setProperty("Visible", QVariant(value)); } - -inline int _CommandBarActiveX::Width() const -{ - QVariant qax_result = property("Width"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void _CommandBarActiveX::SetWidth(int value){ setProperty("Width", QVariant(value)); } - -inline int _CommandBarActiveX::accChildCount() const -{ - QVariant qax_result = property("accChildCount"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString _CommandBarActiveX::accDefaultAction() const -{ - QVariant qax_result = property("accDefaultAction"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString _CommandBarActiveX::accDescription() const -{ - QVariant qax_result = property("accDescription"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant _CommandBarActiveX::accFocus() const -{ - QVariant qax_result = property("accFocus"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QString _CommandBarActiveX::accHelp() const -{ - QVariant qax_result = property("accHelp"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString _CommandBarActiveX::accKeyboardShortcut() const -{ - QVariant qax_result = property("accKeyboardShortcut"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant _CommandBarActiveX::accName() const -{ - QVariant qax_result = property("accName"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void _CommandBarActiveX::setAccName(const QVariant& value){ setProperty("accName", QVariant(value)); } - -inline IDispatch* _CommandBarActiveX::accParent() const -{ - QVariant qax_result = property("accParent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QVariant _CommandBarActiveX::accRole() const -{ - QVariant qax_result = property("accRole"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant _CommandBarActiveX::accSelection() const -{ - QVariant qax_result = property("accSelection"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant _CommandBarActiveX::accState() const -{ - QVariant qax_result = property("accState"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant _CommandBarActiveX::accValue() const -{ - QVariant qax_result = property("accValue"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void _CommandBarActiveX::setAccValue(const QVariant& value){ setProperty("accValue", QVariant(value)); } - -inline Office::CommandBarControl* _CommandBarActiveX::Copy() -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline Office::CommandBarControl* _CommandBarActiveX::Copy(const QVariant& Bar) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline Office::CommandBarControl* _CommandBarActiveX::Copy(const QVariant& Bar, const QVariant& Before) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar, (void*)&Before}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline void _CommandBarActiveX::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void _CommandBarActiveX::Delete(const QVariant& Temporary) -{ - void *_a[] = {0, (void*)&Temporary}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline void _CommandBarActiveX::EnsureControl() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void _CommandBarActiveX::Execute() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline Office::CommandBarControl* _CommandBarActiveX::Move() -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); - return qax_result; -} - -inline Office::CommandBarControl* _CommandBarActiveX::Move(const QVariant& Bar) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); - return qax_result; -} - -inline Office::CommandBarControl* _CommandBarActiveX::Move(const QVariant& Bar, const QVariant& Before) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar, (void*)&Before}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); - return qax_result; -} - -inline IUnknown* _CommandBarActiveX::QueryControlInterface(const QString& bstrIid) -{ - IUnknown* qax_result = 0; - void *_a[] = {(void*)&qax_result, (void*)&bstrIid}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); - return qax_result; -} - -inline void _CommandBarActiveX::Reserved1() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); -} - -inline void _CommandBarActiveX::Reserved2() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); -} - -inline void _CommandBarActiveX::Reserved3() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); -} - -inline void _CommandBarActiveX::Reserved4() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); -} - -inline void _CommandBarActiveX::Reserved5() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); -} - -inline void _CommandBarActiveX::Reserved6() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 23, _a); -} - -inline void _CommandBarActiveX::Reserved7() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 24, _a); -} - -inline void _CommandBarActiveX::Reset() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 25, _a); -} - -inline void _CommandBarActiveX::SetFocus() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 31, _a); -} - -inline void _CommandBarActiveX::SetInnerObjectFactory(IUnknown* pUnk) -{ - void *_a[] = {0, (void*)&pUnk}; - qt_metacall(QMetaObject::InvokeMetaMethod, 36, _a); -} - -inline IDispatch* _CommandBarActiveX::accChild(const QVariant& varChild) -{ - IDispatch* qax_result = 0; - void *_a[] = {(void*)&qax_result, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 45, _a); - return qax_result; -} - -inline void _CommandBarActiveX::accDoDefaultAction() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 50, _a); -} - -inline void _CommandBarActiveX::accDoDefaultAction(const QVariant& varChild) -{ - void *_a[] = {0, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 51, _a); -} - -inline int _CommandBarActiveX::accHelpTopic(QString& pszHelpFile) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&pszHelpFile}; - qt_metacall(QMetaObject::InvokeMetaMethod, 54, _a); - return qax_result; -} - -inline int _CommandBarActiveX::accHelpTopic(QString& pszHelpFile, const QVariant& varChild) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&pszHelpFile, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 55, _a); - return qax_result; -} - -inline QVariant _CommandBarActiveX::accHitTest(int xLeft, int yTop) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&xLeft, (void*)&yTop}; - qt_metacall(QMetaObject::InvokeMetaMethod, 56, _a); - return qax_result; -} - -inline void _CommandBarActiveX::accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight) -{ - void *_a[] = {0, (void*)&pxLeft, (void*)&pyTop, (void*)&pcxWidth, (void*)&pcyHeight}; - qt_metacall(QMetaObject::InvokeMetaMethod, 59, _a); -} - -inline void _CommandBarActiveX::accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight, const QVariant& varChild) -{ - void *_a[] = {0, (void*)&pxLeft, (void*)&pyTop, (void*)&pcxWidth, (void*)&pcyHeight, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 60, _a); -} - -inline QVariant _CommandBarActiveX::accNavigate(int navDir) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&navDir}; - qt_metacall(QMetaObject::InvokeMetaMethod, 63, _a); - return qax_result; -} - -inline QVariant _CommandBarActiveX::accNavigate(int navDir, const QVariant& varStart) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&navDir, (void*)&varStart}; - qt_metacall(QMetaObject::InvokeMetaMethod, 64, _a); - return qax_result; -} - -inline void _CommandBarActiveX::accSelect(int flagsSelect) -{ - void *_a[] = {0, (void*)&flagsSelect}; - qt_metacall(QMetaObject::InvokeMetaMethod, 67, _a); -} - -inline void _CommandBarActiveX::accSelect(int flagsSelect, const QVariant& varChild) -{ - void *_a[] = {0, (void*)&flagsSelect, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 68, _a); -} - - -inline IDispatch* Adjustments::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int Adjustments::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int Adjustments::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* Adjustments::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline double Adjustments::Item(int Index) -{ - double qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline int Adjustments::SetItem(int Index, double rhs) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index, (void*)&rhs}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - - -inline Office::MsoTriState CalloutFormat::Accent() const -{ - QVariant qax_result = property("Accent"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void CalloutFormat::SetAccent(Office::MsoTriState value){ setProperty("Accent", QVariant(value)); } - -inline Office::MsoCalloutAngleType CalloutFormat::Angle() const -{ - QVariant qax_result = property("Angle"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoCalloutAngleType*)qax_result.constData(); -} -inline void CalloutFormat::SetAngle(Office::MsoCalloutAngleType value){ setProperty("Angle", QVariant(value)); } - -inline IDispatch* CalloutFormat::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoTriState CalloutFormat::AutoAttach() const -{ - QVariant qax_result = property("AutoAttach"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void CalloutFormat::SetAutoAttach(Office::MsoTriState value){ setProperty("AutoAttach", QVariant(value)); } - -inline Office::MsoTriState CalloutFormat::AutoLength() const -{ - QVariant qax_result = property("AutoLength"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline Office::MsoTriState CalloutFormat::Border() const -{ - QVariant qax_result = property("Border"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void CalloutFormat::SetBorder(Office::MsoTriState value){ setProperty("Border", QVariant(value)); } - -inline int CalloutFormat::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline double CalloutFormat::Drop() const -{ - QVariant qax_result = property("Drop"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} - -inline Office::MsoCalloutDropType CalloutFormat::DropType() const -{ - QVariant qax_result = property("DropType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoCalloutDropType*)qax_result.constData(); -} - -inline double CalloutFormat::Gap() const -{ - QVariant qax_result = property("Gap"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void CalloutFormat::SetGap(double value){ setProperty("Gap", QVariant(value)); } - -inline double CalloutFormat::Length() const -{ - QVariant qax_result = property("Length"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} - -inline IDispatch* CalloutFormat::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoCalloutType CalloutFormat::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoCalloutType*)qax_result.constData(); -} -inline void CalloutFormat::SetType(Office::MsoCalloutType value){ setProperty("Type", QVariant(value)); } - -inline void CalloutFormat::AutomaticLength() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void CalloutFormat::CustomDrop(double Drop) -{ - void *_a[] = {0, (void*)&Drop}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void CalloutFormat::CustomLength(double Length) -{ - void *_a[] = {0, (void*)&Length}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void CalloutFormat::PresetDrop(Office::MsoCalloutDropType DropType) -{ - void *_a[] = {0, (void*)&DropType}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - - -inline IDispatch* ColorFormat::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int ColorFormat::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* ColorFormat::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int ColorFormat::RGB() const -{ - QVariant qax_result = property("RGB"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void ColorFormat::SetRGB(int value){ setProperty("RGB", QVariant(value)); } - -inline int ColorFormat::SchemeColor() const -{ - QVariant qax_result = property("SchemeColor"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void ColorFormat::SetSchemeColor(int value){ setProperty("SchemeColor", QVariant(value)); } - -inline double ColorFormat::TintAndShade() const -{ - QVariant qax_result = property("TintAndShade"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ColorFormat::SetTintAndShade(double value){ setProperty("TintAndShade", QVariant(value)); } - -inline Office::MsoColorType ColorFormat::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoColorType*)qax_result.constData(); -} - - -inline IDispatch* ConnectorFormat::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoTriState ConnectorFormat::BeginConnected() const -{ - QVariant qax_result = property("BeginConnected"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline Office::Shape* ConnectorFormat::BeginConnectedShape() const -{ - Office::Shape* qax_pointer = 0; - qRegisterMetaType("Shape*", &qax_pointer); - qRegisterMetaType("Shape", qax_pointer); - QVariant qax_result = property("BeginConnectedShape"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::Shape**)qax_result.constData(); -} - -inline int ConnectorFormat::BeginConnectionSite() const -{ - QVariant qax_result = property("BeginConnectionSite"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int ConnectorFormat::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoTriState ConnectorFormat::EndConnected() const -{ - QVariant qax_result = property("EndConnected"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline Office::Shape* ConnectorFormat::EndConnectedShape() const -{ - Office::Shape* qax_pointer = 0; - qRegisterMetaType("Shape*", &qax_pointer); - qRegisterMetaType("Shape", qax_pointer); - QVariant qax_result = property("EndConnectedShape"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::Shape**)qax_result.constData(); -} - -inline int ConnectorFormat::EndConnectionSite() const -{ - QVariant qax_result = property("EndConnectionSite"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* ConnectorFormat::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoConnectorType ConnectorFormat::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoConnectorType*)qax_result.constData(); -} -inline void ConnectorFormat::SetType(Office::MsoConnectorType value){ setProperty("Type", QVariant(value)); } - -inline void ConnectorFormat::BeginConnect(Office::Shape* ConnectedShape, int ConnectionSite) -{ - void *_a[] = {0, (void*)&ConnectedShape, (void*)&ConnectionSite}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void ConnectorFormat::BeginDisconnect() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void ConnectorFormat::EndConnect(Office::Shape* ConnectedShape, int ConnectionSite) -{ - void *_a[] = {0, (void*)&ConnectedShape, (void*)&ConnectionSite}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void ConnectorFormat::EndDisconnect() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - - -inline IDispatch* FillFormat::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::ColorFormat* FillFormat::BackColor() const -{ - Office::ColorFormat* qax_pointer = 0; - qRegisterMetaType("ColorFormat*", &qax_pointer); - qRegisterMetaType("ColorFormat", qax_pointer); - QVariant qax_result = property("BackColor"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::ColorFormat**)qax_result.constData(); -} -inline void FillFormat::SetBackColor(Office::ColorFormat* value){ - int typeId = qRegisterMetaType("Office::ColorFormat*", &value); - setProperty("BackColor", QVariant(typeId, &value)); -} - -inline int FillFormat::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::ColorFormat* FillFormat::ForeColor() const -{ - Office::ColorFormat* qax_pointer = 0; - qRegisterMetaType("ColorFormat*", &qax_pointer); - qRegisterMetaType("ColorFormat", qax_pointer); - QVariant qax_result = property("ForeColor"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::ColorFormat**)qax_result.constData(); -} -inline void FillFormat::SetForeColor(Office::ColorFormat* value){ - int typeId = qRegisterMetaType("Office::ColorFormat*", &value); - setProperty("ForeColor", QVariant(typeId, &value)); -} - -inline Office::MsoGradientColorType FillFormat::GradientColorType() const -{ - QVariant qax_result = property("GradientColorType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoGradientColorType*)qax_result.constData(); -} - -inline double FillFormat::GradientDegree() const -{ - QVariant qax_result = property("GradientDegree"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} - -inline Office::MsoGradientStyle FillFormat::GradientStyle() const -{ - QVariant qax_result = property("GradientStyle"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoGradientStyle*)qax_result.constData(); -} - -inline int FillFormat::GradientVariant() const -{ - QVariant qax_result = property("GradientVariant"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* FillFormat::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoPatternType FillFormat::Pattern() const -{ - QVariant qax_result = property("Pattern"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoPatternType*)qax_result.constData(); -} - -inline Office::MsoPresetGradientType FillFormat::PresetGradientType() const -{ - QVariant qax_result = property("PresetGradientType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoPresetGradientType*)qax_result.constData(); -} - -inline Office::MsoPresetTexture FillFormat::PresetTexture() const -{ - QVariant qax_result = property("PresetTexture"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoPresetTexture*)qax_result.constData(); -} - -inline QString FillFormat::TextureName() const -{ - QVariant qax_result = property("TextureName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline Office::MsoTextureType FillFormat::TextureType() const -{ - QVariant qax_result = property("TextureType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTextureType*)qax_result.constData(); -} - -inline double FillFormat::Transparency() const -{ - QVariant qax_result = property("Transparency"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void FillFormat::SetTransparency(double value){ setProperty("Transparency", QVariant(value)); } - -inline Office::MsoFillType FillFormat::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoFillType*)qax_result.constData(); -} - -inline Office::MsoTriState FillFormat::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void FillFormat::SetVisible(Office::MsoTriState value){ setProperty("Visible", QVariant(value)); } - -inline void FillFormat::Background() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void FillFormat::OneColorGradient(Office::MsoGradientStyle Style, int Variant, double Degree) -{ - void *_a[] = {0, (void*)&Style, (void*)&Variant, (void*)&Degree}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void FillFormat::Patterned(Office::MsoPatternType Pattern) -{ - void *_a[] = {0, (void*)&Pattern}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void FillFormat::PresetGradient(Office::MsoGradientStyle Style, int Variant, Office::MsoPresetGradientType PresetGradientType) -{ - void *_a[] = {0, (void*)&Style, (void*)&Variant, (void*)&PresetGradientType}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void FillFormat::PresetTextured(Office::MsoPresetTexture PresetTexture) -{ - void *_a[] = {0, (void*)&PresetTexture}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline void FillFormat::Solid() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); -} - -inline void FillFormat::TwoColorGradient(Office::MsoGradientStyle Style, int Variant) -{ - void *_a[] = {0, (void*)&Style, (void*)&Variant}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); -} - -inline void FillFormat::UserPicture(const QString& PictureFile) -{ - void *_a[] = {0, (void*)&PictureFile}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); -} - -inline void FillFormat::UserTextured(const QString& TextureFile) -{ - void *_a[] = {0, (void*)&TextureFile}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); -} - - -inline IDispatch* FreeformBuilder::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int FreeformBuilder::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* FreeformBuilder::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline void FreeformBuilder::AddNodes(Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1) -{ - void *_a[] = {0, (void*)&SegmentType, (void*)&EditingType, (void*)&X1, (void*)&Y1}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void FreeformBuilder::AddNodes(Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2) -{ - void *_a[] = {0, (void*)&SegmentType, (void*)&EditingType, (void*)&X1, (void*)&Y1, (void*)&X2}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void FreeformBuilder::AddNodes(Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2, double Y2) -{ - void *_a[] = {0, (void*)&SegmentType, (void*)&EditingType, (void*)&X1, (void*)&Y1, (void*)&X2, (void*)&Y2}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void FreeformBuilder::AddNodes(Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2, double Y2, double X3) -{ - void *_a[] = {0, (void*)&SegmentType, (void*)&EditingType, (void*)&X1, (void*)&Y1, (void*)&X2, (void*)&Y2, (void*)&X3}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void FreeformBuilder::AddNodes(Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2, double Y2, double X3, double Y3) -{ - void *_a[] = {0, (void*)&SegmentType, (void*)&EditingType, (void*)&X1, (void*)&Y1, (void*)&X2, (void*)&Y2, (void*)&X3, (void*)&Y3}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline Office::Shape* FreeformBuilder::ConvertToShape() -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); - return qax_result; -} - - -inline IDispatch* GroupShapes::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int GroupShapes::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int GroupShapes::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* GroupShapes::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* GroupShapes::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::Shape* GroupShapes::Item(const QVariant& Index) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline Office::ShapeRange* GroupShapes::Range(const QVariant& Index) -{ - Office::ShapeRange* qax_result = 0; - qRegisterMetaType("ShapeRange*", &qax_result); - qRegisterMetaType("ShapeRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - - -inline IDispatch* LineFormat::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::ColorFormat* LineFormat::BackColor() const -{ - Office::ColorFormat* qax_pointer = 0; - qRegisterMetaType("ColorFormat*", &qax_pointer); - qRegisterMetaType("ColorFormat", qax_pointer); - QVariant qax_result = property("BackColor"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::ColorFormat**)qax_result.constData(); -} -inline void LineFormat::SetBackColor(Office::ColorFormat* value){ - int typeId = qRegisterMetaType("Office::ColorFormat*", &value); - setProperty("BackColor", QVariant(typeId, &value)); -} - -inline Office::MsoArrowheadLength LineFormat::BeginArrowheadLength() const -{ - QVariant qax_result = property("BeginArrowheadLength"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoArrowheadLength*)qax_result.constData(); -} -inline void LineFormat::SetBeginArrowheadLength(Office::MsoArrowheadLength value){ setProperty("BeginArrowheadLength", QVariant(value)); } - -inline Office::MsoArrowheadStyle LineFormat::BeginArrowheadStyle() const -{ - QVariant qax_result = property("BeginArrowheadStyle"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoArrowheadStyle*)qax_result.constData(); -} -inline void LineFormat::SetBeginArrowheadStyle(Office::MsoArrowheadStyle value){ setProperty("BeginArrowheadStyle", QVariant(value)); } - -inline Office::MsoArrowheadWidth LineFormat::BeginArrowheadWidth() const -{ - QVariant qax_result = property("BeginArrowheadWidth"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoArrowheadWidth*)qax_result.constData(); -} -inline void LineFormat::SetBeginArrowheadWidth(Office::MsoArrowheadWidth value){ setProperty("BeginArrowheadWidth", QVariant(value)); } - -inline int LineFormat::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoLineDashStyle LineFormat::DashStyle() const -{ - QVariant qax_result = property("DashStyle"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoLineDashStyle*)qax_result.constData(); -} -inline void LineFormat::SetDashStyle(Office::MsoLineDashStyle value){ setProperty("DashStyle", QVariant(value)); } - -inline Office::MsoArrowheadLength LineFormat::EndArrowheadLength() const -{ - QVariant qax_result = property("EndArrowheadLength"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoArrowheadLength*)qax_result.constData(); -} -inline void LineFormat::SetEndArrowheadLength(Office::MsoArrowheadLength value){ setProperty("EndArrowheadLength", QVariant(value)); } - -inline Office::MsoArrowheadStyle LineFormat::EndArrowheadStyle() const -{ - QVariant qax_result = property("EndArrowheadStyle"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoArrowheadStyle*)qax_result.constData(); -} -inline void LineFormat::SetEndArrowheadStyle(Office::MsoArrowheadStyle value){ setProperty("EndArrowheadStyle", QVariant(value)); } - -inline Office::MsoArrowheadWidth LineFormat::EndArrowheadWidth() const -{ - QVariant qax_result = property("EndArrowheadWidth"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoArrowheadWidth*)qax_result.constData(); -} -inline void LineFormat::SetEndArrowheadWidth(Office::MsoArrowheadWidth value){ setProperty("EndArrowheadWidth", QVariant(value)); } - -inline Office::ColorFormat* LineFormat::ForeColor() const -{ - Office::ColorFormat* qax_pointer = 0; - qRegisterMetaType("ColorFormat*", &qax_pointer); - qRegisterMetaType("ColorFormat", qax_pointer); - QVariant qax_result = property("ForeColor"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::ColorFormat**)qax_result.constData(); -} -inline void LineFormat::SetForeColor(Office::ColorFormat* value){ - int typeId = qRegisterMetaType("Office::ColorFormat*", &value); - setProperty("ForeColor", QVariant(typeId, &value)); -} - -inline Office::MsoTriState LineFormat::InsetPen() const -{ - QVariant qax_result = property("InsetPen"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void LineFormat::SetInsetPen(Office::MsoTriState value){ setProperty("InsetPen", QVariant(value)); } - -inline IDispatch* LineFormat::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoPatternType LineFormat::Pattern() const -{ - QVariant qax_result = property("Pattern"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoPatternType*)qax_result.constData(); -} -inline void LineFormat::SetPattern(Office::MsoPatternType value){ setProperty("Pattern", QVariant(value)); } - -inline Office::MsoLineStyle LineFormat::Style() const -{ - QVariant qax_result = property("Style"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoLineStyle*)qax_result.constData(); -} -inline void LineFormat::SetStyle(Office::MsoLineStyle value){ setProperty("Style", QVariant(value)); } - -inline double LineFormat::Transparency() const -{ - QVariant qax_result = property("Transparency"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void LineFormat::SetTransparency(double value){ setProperty("Transparency", QVariant(value)); } - -inline Office::MsoTriState LineFormat::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void LineFormat::SetVisible(Office::MsoTriState value){ setProperty("Visible", QVariant(value)); } - -inline double LineFormat::Weight() const -{ - QVariant qax_result = property("Weight"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void LineFormat::SetWeight(double value){ setProperty("Weight", QVariant(value)); } - - -inline IDispatch* ShapeNode::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int ShapeNode::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoEditingType ShapeNode::EditingType() const -{ - QVariant qax_result = property("EditingType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoEditingType*)qax_result.constData(); -} - -inline IDispatch* ShapeNode::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QVariant ShapeNode::Points() const -{ - QVariant qax_result = property("Points"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline Office::MsoSegmentType ShapeNode::SegmentType() const -{ - QVariant qax_result = property("SegmentType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoSegmentType*)qax_result.constData(); -} - - -inline IDispatch* ShapeNodes::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int ShapeNodes::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int ShapeNodes::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* ShapeNodes::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* ShapeNodes::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline void ShapeNodes::Delete(int Index) -{ - void *_a[] = {0, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void ShapeNodes::Insert(int Index, Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1) -{ - void *_a[] = {0, (void*)&Index, (void*)&SegmentType, (void*)&EditingType, (void*)&X1, (void*)&Y1}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void ShapeNodes::Insert(int Index, Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2) -{ - void *_a[] = {0, (void*)&Index, (void*)&SegmentType, (void*)&EditingType, (void*)&X1, (void*)&Y1, (void*)&X2}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void ShapeNodes::Insert(int Index, Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2, double Y2) -{ - void *_a[] = {0, (void*)&Index, (void*)&SegmentType, (void*)&EditingType, (void*)&X1, (void*)&Y1, (void*)&X2, (void*)&Y2}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void ShapeNodes::Insert(int Index, Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2, double Y2, double X3) -{ - void *_a[] = {0, (void*)&Index, (void*)&SegmentType, (void*)&EditingType, (void*)&X1, (void*)&Y1, (void*)&X2, (void*)&Y2, (void*)&X3}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline void ShapeNodes::Insert(int Index, Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2, double Y2, double X3, double Y3) -{ - void *_a[] = {0, (void*)&Index, (void*)&SegmentType, (void*)&EditingType, (void*)&X1, (void*)&Y1, (void*)&X2, (void*)&Y2, (void*)&X3, (void*)&Y3}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline Office::ShapeNode* ShapeNodes::Item(const QVariant& Index) -{ - Office::ShapeNode* qax_result = 0; - qRegisterMetaType("ShapeNode*", &qax_result); - qRegisterMetaType("ShapeNode", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); - return qax_result; -} - -inline void ShapeNodes::SetEditingType(int Index, Office::MsoEditingType EditingType) -{ - void *_a[] = {0, (void*)&Index, (void*)&EditingType}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); -} - -inline void ShapeNodes::SetPosition(int Index, double X1, double Y1) -{ - void *_a[] = {0, (void*)&Index, (void*)&X1, (void*)&Y1}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); -} - -inline void ShapeNodes::SetSegmentType(int Index, Office::MsoSegmentType SegmentType) -{ - void *_a[] = {0, (void*)&Index, (void*)&SegmentType}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); -} - - -inline IDispatch* PictureFormat::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline double PictureFormat::Brightness() const -{ - QVariant qax_result = property("Brightness"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void PictureFormat::SetBrightness(double value){ setProperty("Brightness", QVariant(value)); } - -inline Office::MsoPictureColorType PictureFormat::ColorType() const -{ - QVariant qax_result = property("ColorType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoPictureColorType*)qax_result.constData(); -} -inline void PictureFormat::SetColorType(Office::MsoPictureColorType value){ setProperty("ColorType", QVariant(value)); } - -inline double PictureFormat::Contrast() const -{ - QVariant qax_result = property("Contrast"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void PictureFormat::SetContrast(double value){ setProperty("Contrast", QVariant(value)); } - -inline int PictureFormat::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline double PictureFormat::CropBottom() const -{ - QVariant qax_result = property("CropBottom"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void PictureFormat::SetCropBottom(double value){ setProperty("CropBottom", QVariant(value)); } - -inline double PictureFormat::CropLeft() const -{ - QVariant qax_result = property("CropLeft"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void PictureFormat::SetCropLeft(double value){ setProperty("CropLeft", QVariant(value)); } - -inline double PictureFormat::CropRight() const -{ - QVariant qax_result = property("CropRight"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void PictureFormat::SetCropRight(double value){ setProperty("CropRight", QVariant(value)); } - -inline double PictureFormat::CropTop() const -{ - QVariant qax_result = property("CropTop"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void PictureFormat::SetCropTop(double value){ setProperty("CropTop", QVariant(value)); } - -inline IDispatch* PictureFormat::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int PictureFormat::TransparencyColor() const -{ - QVariant qax_result = property("TransparencyColor"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void PictureFormat::SetTransparencyColor(int value){ setProperty("TransparencyColor", QVariant(value)); } - -inline Office::MsoTriState PictureFormat::TransparentBackground() const -{ - QVariant qax_result = property("TransparentBackground"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void PictureFormat::SetTransparentBackground(Office::MsoTriState value){ setProperty("TransparentBackground", QVariant(value)); } - -inline void PictureFormat::IncrementBrightness(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void PictureFormat::IncrementContrast(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - - -inline IDispatch* ShadowFormat::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int ShadowFormat::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::ColorFormat* ShadowFormat::ForeColor() const -{ - Office::ColorFormat* qax_pointer = 0; - qRegisterMetaType("ColorFormat*", &qax_pointer); - qRegisterMetaType("ColorFormat", qax_pointer); - QVariant qax_result = property("ForeColor"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::ColorFormat**)qax_result.constData(); -} -inline void ShadowFormat::SetForeColor(Office::ColorFormat* value){ - int typeId = qRegisterMetaType("Office::ColorFormat*", &value); - setProperty("ForeColor", QVariant(typeId, &value)); -} - -inline Office::MsoTriState ShadowFormat::Obscured() const -{ - QVariant qax_result = property("Obscured"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void ShadowFormat::SetObscured(Office::MsoTriState value){ setProperty("Obscured", QVariant(value)); } - -inline double ShadowFormat::OffsetX() const -{ - QVariant qax_result = property("OffsetX"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ShadowFormat::SetOffsetX(double value){ setProperty("OffsetX", QVariant(value)); } - -inline double ShadowFormat::OffsetY() const -{ - QVariant qax_result = property("OffsetY"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ShadowFormat::SetOffsetY(double value){ setProperty("OffsetY", QVariant(value)); } - -inline IDispatch* ShadowFormat::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline double ShadowFormat::Transparency() const -{ - QVariant qax_result = property("Transparency"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ShadowFormat::SetTransparency(double value){ setProperty("Transparency", QVariant(value)); } - -inline Office::MsoShadowType ShadowFormat::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoShadowType*)qax_result.constData(); -} -inline void ShadowFormat::SetType(Office::MsoShadowType value){ setProperty("Type", QVariant(value)); } - -inline Office::MsoTriState ShadowFormat::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void ShadowFormat::SetVisible(Office::MsoTriState value){ setProperty("Visible", QVariant(value)); } - -inline void ShadowFormat::IncrementOffsetX(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void ShadowFormat::IncrementOffsetY(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - - -inline IDispatch* Script::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int Script::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString Script::Extended() const -{ - QVariant qax_result = property("Extended"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Script::SetExtended(const QString& value){ setProperty("Extended", QVariant(value)); } - -inline QString Script::Id() const -{ - QVariant qax_result = property("Id"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Script::SetId(const QString& value){ setProperty("Id", QVariant(value)); } - -inline Office::MsoScriptLanguage Script::Language() const -{ - QVariant qax_result = property("Language"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoScriptLanguage*)qax_result.constData(); -} -inline void Script::SetLanguage(Office::MsoScriptLanguage value){ setProperty("Language", QVariant(value)); } - -inline Office::MsoScriptLocation Script::Location() const -{ - QVariant qax_result = property("Location"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoScriptLocation*)qax_result.constData(); -} - -inline IDispatch* Script::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString Script::ScriptText() const -{ - QVariant qax_result = property("ScriptText"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Script::SetScriptText(const QString& value){ setProperty("ScriptText", QVariant(value)); } - -inline IDispatch* Script::Shape() const -{ - QVariant qax_result = property("Shape"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline void Script::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline IDispatch* Scripts::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int Scripts::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int Scripts::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* Scripts::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* Scripts::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::Script* Scripts::Add() -{ - Office::Script* qax_result = 0; - qRegisterMetaType("Script*", &qax_result); - qRegisterMetaType("Script", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline Office::Script* Scripts::Add(IDispatch* Anchor) -{ - Office::Script* qax_result = 0; - qRegisterMetaType("Script*", &qax_result); - qRegisterMetaType("Script", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Anchor}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline Office::Script* Scripts::Add(IDispatch* Anchor, Office::MsoScriptLocation Location) -{ - Office::Script* qax_result = 0; - qRegisterMetaType("Script*", &qax_result); - qRegisterMetaType("Script", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Anchor, (void*)&Location}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline Office::Script* Scripts::Add(IDispatch* Anchor, Office::MsoScriptLocation Location, Office::MsoScriptLanguage Language) -{ - Office::Script* qax_result = 0; - qRegisterMetaType("Script*", &qax_result); - qRegisterMetaType("Script", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Anchor, (void*)&Location, (void*)&Language}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - -inline Office::Script* Scripts::Add(IDispatch* Anchor, Office::MsoScriptLocation Location, Office::MsoScriptLanguage Language, const QString& Id) -{ - Office::Script* qax_result = 0; - qRegisterMetaType("Script*", &qax_result); - qRegisterMetaType("Script", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Anchor, (void*)&Location, (void*)&Language, (void*)&Id}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline Office::Script* Scripts::Add(IDispatch* Anchor, Office::MsoScriptLocation Location, Office::MsoScriptLanguage Language, const QString& Id, const QString& Extended) -{ - Office::Script* qax_result = 0; - qRegisterMetaType("Script*", &qax_result); - qRegisterMetaType("Script", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Anchor, (void*)&Location, (void*)&Language, (void*)&Id, (void*)&Extended}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); - return qax_result; -} - -inline Office::Script* Scripts::Add(IDispatch* Anchor, Office::MsoScriptLocation Location, Office::MsoScriptLanguage Language, const QString& Id, const QString& Extended, const QString& ScriptText) -{ - Office::Script* qax_result = 0; - qRegisterMetaType("Script*", &qax_result); - qRegisterMetaType("Script", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Anchor, (void*)&Location, (void*)&Language, (void*)&Id, (void*)&Extended, (void*)&ScriptText}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); - return qax_result; -} - -inline void Scripts::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); -} - -inline Office::Script* Scripts::Item(const QVariant& Index) -{ - Office::Script* qax_result = 0; - qRegisterMetaType("Script*", &qax_result); - qRegisterMetaType("Script", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); - return qax_result; -} - - -inline Office::Adjustments* Shape::Adjustments() const -{ - Office::Adjustments* qax_pointer = 0; - qRegisterMetaType("Adjustments*", &qax_pointer); - qRegisterMetaType("Adjustments", qax_pointer); - QVariant qax_result = property("Adjustments"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::Adjustments**)qax_result.constData(); -} - -inline QString Shape::AlternativeText() const -{ - QVariant qax_result = property("AlternativeText"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Shape::SetAlternativeText(const QString& value){ setProperty("AlternativeText", QVariant(value)); } - -inline IDispatch* Shape::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoAutoShapeType Shape::AutoShapeType() const -{ - QVariant qax_result = property("AutoShapeType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoAutoShapeType*)qax_result.constData(); -} -inline void Shape::SetAutoShapeType(Office::MsoAutoShapeType value){ setProperty("AutoShapeType", QVariant(value)); } - -inline Office::MsoBlackWhiteMode Shape::BlackWhiteMode() const -{ - QVariant qax_result = property("BlackWhiteMode"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoBlackWhiteMode*)qax_result.constData(); -} -inline void Shape::SetBlackWhiteMode(Office::MsoBlackWhiteMode value){ setProperty("BlackWhiteMode", QVariant(value)); } - -inline Office::CalloutFormat* Shape::Callout() const -{ - Office::CalloutFormat* qax_pointer = 0; - qRegisterMetaType("CalloutFormat*", &qax_pointer); - qRegisterMetaType("CalloutFormat", qax_pointer); - QVariant qax_result = property("Callout"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::CalloutFormat**)qax_result.constData(); -} - -inline Office::CanvasShapes* Shape::CanvasItems() const -{ - Office::CanvasShapes* qax_pointer = 0; - qRegisterMetaType("CanvasShapes*", &qax_pointer); - qRegisterMetaType("CanvasShapes", qax_pointer); - QVariant qax_result = property("CanvasItems"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::CanvasShapes**)qax_result.constData(); -} - -inline Office::MsoTriState Shape::Child() const -{ - QVariant qax_result = property("Child"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline int Shape::ConnectionSiteCount() const -{ - QVariant qax_result = property("ConnectionSiteCount"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoTriState Shape::Connector() const -{ - QVariant qax_result = property("Connector"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline Office::ConnectorFormat* Shape::ConnectorFormat() const -{ - Office::ConnectorFormat* qax_pointer = 0; - qRegisterMetaType("ConnectorFormat*", &qax_pointer); - qRegisterMetaType("ConnectorFormat", qax_pointer); - QVariant qax_result = property("ConnectorFormat"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::ConnectorFormat**)qax_result.constData(); -} - -inline int Shape::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::IMsoDiagram* Shape::Diagram() const -{ - Office::IMsoDiagram* qax_pointer = 0; - qRegisterMetaType("IMsoDiagram*", &qax_pointer); - qRegisterMetaType("IMsoDiagram", qax_pointer); - QVariant qax_result = property("Diagram"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::IMsoDiagram**)qax_result.constData(); -} - -inline Office::DiagramNode* Shape::DiagramNode() const -{ - Office::DiagramNode* qax_pointer = 0; - qRegisterMetaType("DiagramNode*", &qax_pointer); - qRegisterMetaType("DiagramNode", qax_pointer); - QVariant qax_result = property("DiagramNode"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::DiagramNode**)qax_result.constData(); -} - -inline Office::FillFormat* Shape::Fill() const -{ - Office::FillFormat* qax_pointer = 0; - qRegisterMetaType("FillFormat*", &qax_pointer); - qRegisterMetaType("FillFormat", qax_pointer); - QVariant qax_result = property("Fill"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::FillFormat**)qax_result.constData(); -} - -inline Office::GroupShapes* Shape::GroupItems() const -{ - Office::GroupShapes* qax_pointer = 0; - qRegisterMetaType("GroupShapes*", &qax_pointer); - qRegisterMetaType("GroupShapes", qax_pointer); - QVariant qax_result = property("GroupItems"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::GroupShapes**)qax_result.constData(); -} - -inline Office::MsoTriState Shape::HasDiagram() const -{ - QVariant qax_result = property("HasDiagram"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline Office::MsoTriState Shape::HasDiagramNode() const -{ - QVariant qax_result = property("HasDiagramNode"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline double Shape::Height() const -{ - QVariant qax_result = property("Height"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Shape::SetHeight(double value){ setProperty("Height", QVariant(value)); } - -inline Office::MsoTriState Shape::HorizontalFlip() const -{ - QVariant qax_result = property("HorizontalFlip"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline int Shape::Id() const -{ - QVariant qax_result = property("Id"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline double Shape::Left() const -{ - QVariant qax_result = property("Left"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Shape::SetLeft(double value){ setProperty("Left", QVariant(value)); } - -inline Office::LineFormat* Shape::Line() const -{ - Office::LineFormat* qax_pointer = 0; - qRegisterMetaType("LineFormat*", &qax_pointer); - qRegisterMetaType("LineFormat", qax_pointer); - QVariant qax_result = property("Line"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::LineFormat**)qax_result.constData(); -} - -inline Office::MsoTriState Shape::LockAspectRatio() const -{ - QVariant qax_result = property("LockAspectRatio"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Shape::SetLockAspectRatio(Office::MsoTriState value){ setProperty("LockAspectRatio", QVariant(value)); } - -inline QString Shape::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Shape::SetName(const QString& value){ setProperty("Name", QVariant(value)); } - -inline Office::ShapeNodes* Shape::Nodes() const -{ - Office::ShapeNodes* qax_pointer = 0; - qRegisterMetaType("ShapeNodes*", &qax_pointer); - qRegisterMetaType("ShapeNodes", qax_pointer); - QVariant qax_result = property("Nodes"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::ShapeNodes**)qax_result.constData(); -} - -inline IDispatch* Shape::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::Shape* Shape::ParentGroup() const -{ - Office::Shape* qax_pointer = 0; - qRegisterMetaType("Shape*", &qax_pointer); - qRegisterMetaType("Shape", qax_pointer); - QVariant qax_result = property("ParentGroup"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::Shape**)qax_result.constData(); -} - -inline Office::PictureFormat* Shape::PictureFormat() const -{ - Office::PictureFormat* qax_pointer = 0; - qRegisterMetaType("PictureFormat*", &qax_pointer); - qRegisterMetaType("PictureFormat", qax_pointer); - QVariant qax_result = property("PictureFormat"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::PictureFormat**)qax_result.constData(); -} - -inline QString Shape::RTF() const -{ - QVariant qax_result = property("RTF"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Shape::SetRTF(const QString& value){ setProperty("RTF", QVariant(value)); } - -inline double Shape::Rotation() const -{ - QVariant qax_result = property("Rotation"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Shape::SetRotation(double value){ setProperty("Rotation", QVariant(value)); } - -inline Office::Script* Shape::Script() const -{ - Office::Script* qax_pointer = 0; - qRegisterMetaType("Script*", &qax_pointer); - qRegisterMetaType("Script", qax_pointer); - QVariant qax_result = property("Script"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::Script**)qax_result.constData(); -} - -inline Office::ShadowFormat* Shape::Shadow() const -{ - Office::ShadowFormat* qax_pointer = 0; - qRegisterMetaType("ShadowFormat*", &qax_pointer); - qRegisterMetaType("ShadowFormat", qax_pointer); - QVariant qax_result = property("Shadow"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::ShadowFormat**)qax_result.constData(); -} - -inline Office::TextEffectFormat* Shape::TextEffect() const -{ - Office::TextEffectFormat* qax_pointer = 0; - qRegisterMetaType("TextEffectFormat*", &qax_pointer); - qRegisterMetaType("TextEffectFormat", qax_pointer); - QVariant qax_result = property("TextEffect"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::TextEffectFormat**)qax_result.constData(); -} - -inline Office::TextFrame* Shape::TextFrame() const -{ - Office::TextFrame* qax_pointer = 0; - qRegisterMetaType("TextFrame*", &qax_pointer); - qRegisterMetaType("TextFrame", qax_pointer); - QVariant qax_result = property("TextFrame"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::TextFrame**)qax_result.constData(); -} - -inline Office::ThreeDFormat* Shape::ThreeD() const -{ - Office::ThreeDFormat* qax_pointer = 0; - qRegisterMetaType("ThreeDFormat*", &qax_pointer); - qRegisterMetaType("ThreeDFormat", qax_pointer); - QVariant qax_result = property("ThreeD"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::ThreeDFormat**)qax_result.constData(); -} - -inline double Shape::Top() const -{ - QVariant qax_result = property("Top"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Shape::SetTop(double value){ setProperty("Top", QVariant(value)); } - -inline Office::MsoShapeType Shape::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoShapeType*)qax_result.constData(); -} - -inline Office::MsoTriState Shape::VerticalFlip() const -{ - QVariant qax_result = property("VerticalFlip"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline QVariant Shape::Vertices() const -{ - QVariant qax_result = property("Vertices"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline Office::MsoTriState Shape::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Shape::SetVisible(Office::MsoTriState value){ setProperty("Visible", QVariant(value)); } - -inline double Shape::Width() const -{ - QVariant qax_result = property("Width"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Shape::SetWidth(double value){ setProperty("Width", QVariant(value)); } - -inline int Shape::ZOrderPosition() const -{ - QVariant qax_result = property("ZOrderPosition"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline void Shape::Apply() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void Shape::CanvasCropBottom(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void Shape::CanvasCropLeft(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void Shape::CanvasCropRight(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void Shape::CanvasCropTop(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline void Shape::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline Office::Shape* Shape::Duplicate() -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); - return qax_result; -} - -inline void Shape::Flip(Office::MsoFlipCmd FlipCmd) -{ - void *_a[] = {0, (void*)&FlipCmd}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); -} - -inline void Shape::IncrementLeft(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); -} - -inline void Shape::IncrementRotation(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); -} - -inline void Shape::IncrementTop(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); -} - -inline void Shape::PickUp() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); -} - -inline void Shape::RerouteConnections() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); -} - -inline void Shape::ScaleHeight(double Factor, Office::MsoTriState RelativeToOriginalSize) -{ - void *_a[] = {0, (void*)&Factor, (void*)&RelativeToOriginalSize}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); -} - -inline void Shape::ScaleHeight(double Factor, Office::MsoTriState RelativeToOriginalSize, Office::MsoScaleFrom fScale) -{ - void *_a[] = {0, (void*)&Factor, (void*)&RelativeToOriginalSize, (void*)&fScale}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); -} - -inline void Shape::ScaleWidth(double Factor, Office::MsoTriState RelativeToOriginalSize) -{ - void *_a[] = {0, (void*)&Factor, (void*)&RelativeToOriginalSize}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); -} - -inline void Shape::ScaleWidth(double Factor, Office::MsoTriState RelativeToOriginalSize, Office::MsoScaleFrom fScale) -{ - void *_a[] = {0, (void*)&Factor, (void*)&RelativeToOriginalSize, (void*)&fScale}; - qt_metacall(QMetaObject::InvokeMetaMethod, 23, _a); -} - -inline void Shape::Select() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 24, _a); -} - -inline void Shape::Select(const QVariant& Replace) -{ - void *_a[] = {0, (void*)&Replace}; - qt_metacall(QMetaObject::InvokeMetaMethod, 25, _a); -} - -inline void Shape::SetShapesDefaultProperties() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 35, _a); -} - -inline Office::ShapeRange* Shape::Ungroup() -{ - Office::ShapeRange* qax_result = 0; - qRegisterMetaType("ShapeRange*", &qax_result); - qRegisterMetaType("ShapeRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 39, _a); - return qax_result; -} - -inline void Shape::ZOrder(Office::MsoZOrderCmd ZOrderCmd) -{ - void *_a[] = {0, (void*)&ZOrderCmd}; - qt_metacall(QMetaObject::InvokeMetaMethod, 40, _a); -} - - -inline Office::Adjustments* ShapeRange::Adjustments() const -{ - Office::Adjustments* qax_pointer = 0; - qRegisterMetaType("Adjustments*", &qax_pointer); - qRegisterMetaType("Adjustments", qax_pointer); - QVariant qax_result = property("Adjustments"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::Adjustments**)qax_result.constData(); -} - -inline QString ShapeRange::AlternativeText() const -{ - QVariant qax_result = property("AlternativeText"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void ShapeRange::SetAlternativeText(const QString& value){ setProperty("AlternativeText", QVariant(value)); } - -inline IDispatch* ShapeRange::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoAutoShapeType ShapeRange::AutoShapeType() const -{ - QVariant qax_result = property("AutoShapeType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoAutoShapeType*)qax_result.constData(); -} -inline void ShapeRange::SetAutoShapeType(Office::MsoAutoShapeType value){ setProperty("AutoShapeType", QVariant(value)); } - -inline Office::MsoBlackWhiteMode ShapeRange::BlackWhiteMode() const -{ - QVariant qax_result = property("BlackWhiteMode"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoBlackWhiteMode*)qax_result.constData(); -} -inline void ShapeRange::SetBlackWhiteMode(Office::MsoBlackWhiteMode value){ setProperty("BlackWhiteMode", QVariant(value)); } - -inline Office::CalloutFormat* ShapeRange::Callout() const -{ - Office::CalloutFormat* qax_pointer = 0; - qRegisterMetaType("CalloutFormat*", &qax_pointer); - qRegisterMetaType("CalloutFormat", qax_pointer); - QVariant qax_result = property("Callout"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::CalloutFormat**)qax_result.constData(); -} - -inline Office::CanvasShapes* ShapeRange::CanvasItems() const -{ - Office::CanvasShapes* qax_pointer = 0; - qRegisterMetaType("CanvasShapes*", &qax_pointer); - qRegisterMetaType("CanvasShapes", qax_pointer); - QVariant qax_result = property("CanvasItems"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::CanvasShapes**)qax_result.constData(); -} - -inline Office::MsoTriState ShapeRange::Child() const -{ - QVariant qax_result = property("Child"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline int ShapeRange::ConnectionSiteCount() const -{ - QVariant qax_result = property("ConnectionSiteCount"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoTriState ShapeRange::Connector() const -{ - QVariant qax_result = property("Connector"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline Office::ConnectorFormat* ShapeRange::ConnectorFormat() const -{ - Office::ConnectorFormat* qax_pointer = 0; - qRegisterMetaType("ConnectorFormat*", &qax_pointer); - qRegisterMetaType("ConnectorFormat", qax_pointer); - QVariant qax_result = property("ConnectorFormat"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::ConnectorFormat**)qax_result.constData(); -} - -inline int ShapeRange::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int ShapeRange::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::IMsoDiagram* ShapeRange::Diagram() const -{ - Office::IMsoDiagram* qax_pointer = 0; - qRegisterMetaType("IMsoDiagram*", &qax_pointer); - qRegisterMetaType("IMsoDiagram", qax_pointer); - QVariant qax_result = property("Diagram"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::IMsoDiagram**)qax_result.constData(); -} - -inline Office::DiagramNode* ShapeRange::DiagramNode() const -{ - Office::DiagramNode* qax_pointer = 0; - qRegisterMetaType("DiagramNode*", &qax_pointer); - qRegisterMetaType("DiagramNode", qax_pointer); - QVariant qax_result = property("DiagramNode"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::DiagramNode**)qax_result.constData(); -} - -inline Office::FillFormat* ShapeRange::Fill() const -{ - Office::FillFormat* qax_pointer = 0; - qRegisterMetaType("FillFormat*", &qax_pointer); - qRegisterMetaType("FillFormat", qax_pointer); - QVariant qax_result = property("Fill"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::FillFormat**)qax_result.constData(); -} - -inline Office::GroupShapes* ShapeRange::GroupItems() const -{ - Office::GroupShapes* qax_pointer = 0; - qRegisterMetaType("GroupShapes*", &qax_pointer); - qRegisterMetaType("GroupShapes", qax_pointer); - QVariant qax_result = property("GroupItems"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::GroupShapes**)qax_result.constData(); -} - -inline Office::MsoTriState ShapeRange::HasDiagram() const -{ - QVariant qax_result = property("HasDiagram"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline Office::MsoTriState ShapeRange::HasDiagramNode() const -{ - QVariant qax_result = property("HasDiagramNode"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline double ShapeRange::Height() const -{ - QVariant qax_result = property("Height"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ShapeRange::SetHeight(double value){ setProperty("Height", QVariant(value)); } - -inline Office::MsoTriState ShapeRange::HorizontalFlip() const -{ - QVariant qax_result = property("HorizontalFlip"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline int ShapeRange::Id() const -{ - QVariant qax_result = property("Id"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline double ShapeRange::Left() const -{ - QVariant qax_result = property("Left"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ShapeRange::SetLeft(double value){ setProperty("Left", QVariant(value)); } - -inline Office::LineFormat* ShapeRange::Line() const -{ - Office::LineFormat* qax_pointer = 0; - qRegisterMetaType("LineFormat*", &qax_pointer); - qRegisterMetaType("LineFormat", qax_pointer); - QVariant qax_result = property("Line"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::LineFormat**)qax_result.constData(); -} - -inline Office::MsoTriState ShapeRange::LockAspectRatio() const -{ - QVariant qax_result = property("LockAspectRatio"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void ShapeRange::SetLockAspectRatio(Office::MsoTriState value){ setProperty("LockAspectRatio", QVariant(value)); } - -inline QString ShapeRange::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void ShapeRange::SetName(const QString& value){ setProperty("Name", QVariant(value)); } - -inline Office::ShapeNodes* ShapeRange::Nodes() const -{ - Office::ShapeNodes* qax_pointer = 0; - qRegisterMetaType("ShapeNodes*", &qax_pointer); - qRegisterMetaType("ShapeNodes", qax_pointer); - QVariant qax_result = property("Nodes"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::ShapeNodes**)qax_result.constData(); -} - -inline IDispatch* ShapeRange::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::Shape* ShapeRange::ParentGroup() const -{ - Office::Shape* qax_pointer = 0; - qRegisterMetaType("Shape*", &qax_pointer); - qRegisterMetaType("Shape", qax_pointer); - QVariant qax_result = property("ParentGroup"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::Shape**)qax_result.constData(); -} - -inline Office::PictureFormat* ShapeRange::PictureFormat() const -{ - Office::PictureFormat* qax_pointer = 0; - qRegisterMetaType("PictureFormat*", &qax_pointer); - qRegisterMetaType("PictureFormat", qax_pointer); - QVariant qax_result = property("PictureFormat"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::PictureFormat**)qax_result.constData(); -} - -inline QString ShapeRange::RTF() const -{ - QVariant qax_result = property("RTF"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void ShapeRange::SetRTF(const QString& value){ setProperty("RTF", QVariant(value)); } - -inline double ShapeRange::Rotation() const -{ - QVariant qax_result = property("Rotation"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ShapeRange::SetRotation(double value){ setProperty("Rotation", QVariant(value)); } - -inline Office::Script* ShapeRange::Script() const -{ - Office::Script* qax_pointer = 0; - qRegisterMetaType("Script*", &qax_pointer); - qRegisterMetaType("Script", qax_pointer); - QVariant qax_result = property("Script"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::Script**)qax_result.constData(); -} - -inline Office::ShadowFormat* ShapeRange::Shadow() const -{ - Office::ShadowFormat* qax_pointer = 0; - qRegisterMetaType("ShadowFormat*", &qax_pointer); - qRegisterMetaType("ShadowFormat", qax_pointer); - QVariant qax_result = property("Shadow"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::ShadowFormat**)qax_result.constData(); -} - -inline Office::TextEffectFormat* ShapeRange::TextEffect() const -{ - Office::TextEffectFormat* qax_pointer = 0; - qRegisterMetaType("TextEffectFormat*", &qax_pointer); - qRegisterMetaType("TextEffectFormat", qax_pointer); - QVariant qax_result = property("TextEffect"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::TextEffectFormat**)qax_result.constData(); -} - -inline Office::TextFrame* ShapeRange::TextFrame() const -{ - Office::TextFrame* qax_pointer = 0; - qRegisterMetaType("TextFrame*", &qax_pointer); - qRegisterMetaType("TextFrame", qax_pointer); - QVariant qax_result = property("TextFrame"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::TextFrame**)qax_result.constData(); -} - -inline Office::ThreeDFormat* ShapeRange::ThreeD() const -{ - Office::ThreeDFormat* qax_pointer = 0; - qRegisterMetaType("ThreeDFormat*", &qax_pointer); - qRegisterMetaType("ThreeDFormat", qax_pointer); - QVariant qax_result = property("ThreeD"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::ThreeDFormat**)qax_result.constData(); -} - -inline double ShapeRange::Top() const -{ - QVariant qax_result = property("Top"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ShapeRange::SetTop(double value){ setProperty("Top", QVariant(value)); } - -inline Office::MsoShapeType ShapeRange::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoShapeType*)qax_result.constData(); -} - -inline Office::MsoTriState ShapeRange::VerticalFlip() const -{ - QVariant qax_result = property("VerticalFlip"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline QVariant ShapeRange::Vertices() const -{ - QVariant qax_result = property("Vertices"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline Office::MsoTriState ShapeRange::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void ShapeRange::SetVisible(Office::MsoTriState value){ setProperty("Visible", QVariant(value)); } - -inline double ShapeRange::Width() const -{ - QVariant qax_result = property("Width"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ShapeRange::SetWidth(double value){ setProperty("Width", QVariant(value)); } - -inline int ShapeRange::ZOrderPosition() const -{ - QVariant qax_result = property("ZOrderPosition"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IUnknown* ShapeRange::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline void ShapeRange::Align(Office::MsoAlignCmd AlignCmd, Office::MsoTriState RelativeTo) -{ - void *_a[] = {0, (void*)&AlignCmd, (void*)&RelativeTo}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void ShapeRange::Apply() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void ShapeRange::CanvasCropBottom(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void ShapeRange::CanvasCropLeft(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void ShapeRange::CanvasCropRight(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline void ShapeRange::CanvasCropTop(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void ShapeRange::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline void ShapeRange::Distribute(Office::MsoDistributeCmd DistributeCmd, Office::MsoTriState RelativeTo) -{ - void *_a[] = {0, (void*)&DistributeCmd, (void*)&RelativeTo}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); -} - -inline Office::ShapeRange* ShapeRange::Duplicate() -{ - Office::ShapeRange* qax_result = 0; - qRegisterMetaType("ShapeRange*", &qax_result); - qRegisterMetaType("ShapeRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); - return qax_result; -} - -inline void ShapeRange::Flip(Office::MsoFlipCmd FlipCmd) -{ - void *_a[] = {0, (void*)&FlipCmd}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); -} - -inline Office::Shape* ShapeRange::Group() -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); - return qax_result; -} - -inline void ShapeRange::IncrementLeft(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); -} - -inline void ShapeRange::IncrementRotation(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); -} - -inline void ShapeRange::IncrementTop(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); -} - -inline Office::Shape* ShapeRange::Item(const QVariant& Index) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); - return qax_result; -} - -inline void ShapeRange::PickUp() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); -} - -inline Office::Shape* ShapeRange::Regroup() -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 23, _a); - return qax_result; -} - -inline void ShapeRange::RerouteConnections() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 24, _a); -} - -inline void ShapeRange::ScaleHeight(double Factor, Office::MsoTriState RelativeToOriginalSize) -{ - void *_a[] = {0, (void*)&Factor, (void*)&RelativeToOriginalSize}; - qt_metacall(QMetaObject::InvokeMetaMethod, 25, _a); -} - -inline void ShapeRange::ScaleHeight(double Factor, Office::MsoTriState RelativeToOriginalSize, Office::MsoScaleFrom fScale) -{ - void *_a[] = {0, (void*)&Factor, (void*)&RelativeToOriginalSize, (void*)&fScale}; - qt_metacall(QMetaObject::InvokeMetaMethod, 26, _a); -} - -inline void ShapeRange::ScaleWidth(double Factor, Office::MsoTriState RelativeToOriginalSize) -{ - void *_a[] = {0, (void*)&Factor, (void*)&RelativeToOriginalSize}; - qt_metacall(QMetaObject::InvokeMetaMethod, 27, _a); -} - -inline void ShapeRange::ScaleWidth(double Factor, Office::MsoTriState RelativeToOriginalSize, Office::MsoScaleFrom fScale) -{ - void *_a[] = {0, (void*)&Factor, (void*)&RelativeToOriginalSize, (void*)&fScale}; - qt_metacall(QMetaObject::InvokeMetaMethod, 28, _a); -} - -inline void ShapeRange::Select() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 29, _a); -} - -inline void ShapeRange::Select(const QVariant& Replace) -{ - void *_a[] = {0, (void*)&Replace}; - qt_metacall(QMetaObject::InvokeMetaMethod, 30, _a); -} - -inline void ShapeRange::SetShapesDefaultProperties() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 40, _a); -} - -inline Office::ShapeRange* ShapeRange::Ungroup() -{ - Office::ShapeRange* qax_result = 0; - qRegisterMetaType("ShapeRange*", &qax_result); - qRegisterMetaType("ShapeRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 44, _a); - return qax_result; -} - -inline void ShapeRange::ZOrder(Office::MsoZOrderCmd ZOrderCmd) -{ - void *_a[] = {0, (void*)&ZOrderCmd}; - qt_metacall(QMetaObject::InvokeMetaMethod, 45, _a); -} - - -inline IDispatch* Shapes::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::Shape* Shapes::Background() const -{ - Office::Shape* qax_pointer = 0; - qRegisterMetaType("Shape*", &qax_pointer); - qRegisterMetaType("Shape", qax_pointer); - QVariant qax_result = property("Background"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::Shape**)qax_result.constData(); -} - -inline int Shapes::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int Shapes::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::Shape* Shapes::Default() const -{ - Office::Shape* qax_pointer = 0; - qRegisterMetaType("Shape*", &qax_pointer); - qRegisterMetaType("Shape", qax_pointer); - QVariant qax_result = property("Default"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::Shape**)qax_result.constData(); -} - -inline IDispatch* Shapes::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* Shapes::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::Shape* Shapes::AddCallout(Office::MsoCalloutType Type, double Left, double Top, double Width, double Height) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline Office::Shape* Shapes::AddCanvas(double Left, double Top, double Width, double Height) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline Office::Shape* Shapes::AddConnector(Office::MsoConnectorType Type, double BeginX, double BeginY, double EndX, double EndY) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&BeginX, (void*)&BeginY, (void*)&EndX, (void*)&EndY}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline Office::Shape* Shapes::AddCurve(const QVariant& SafeArrayOfPoints) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&SafeArrayOfPoints}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - -inline Office::Shape* Shapes::AddDiagram(Office::MsoDiagramType Type, double Left, double Top, double Width, double Height) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline Office::Shape* Shapes::AddLabel(Office::MsoTextOrientation Orientation, double Left, double Top, double Width, double Height) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Orientation, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); - return qax_result; -} - -inline Office::Shape* Shapes::AddLine(double BeginX, double BeginY, double EndX, double EndY) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&BeginX, (void*)&BeginY, (void*)&EndX, (void*)&EndY}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); - return qax_result; -} - -inline Office::Shape* Shapes::AddPicture(const QString& FileName, Office::MsoTriState LinkToFile, Office::MsoTriState SaveWithDocument, double Left, double Top) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&LinkToFile, (void*)&SaveWithDocument, (void*)&Left, (void*)&Top}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); - return qax_result; -} - -inline Office::Shape* Shapes::AddPicture(const QString& FileName, Office::MsoTriState LinkToFile, Office::MsoTriState SaveWithDocument, double Left, double Top, double Width) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&LinkToFile, (void*)&SaveWithDocument, (void*)&Left, (void*)&Top, (void*)&Width}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); - return qax_result; -} - -inline Office::Shape* Shapes::AddPicture(const QString& FileName, Office::MsoTriState LinkToFile, Office::MsoTriState SaveWithDocument, double Left, double Top, double Width, double Height) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&LinkToFile, (void*)&SaveWithDocument, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); - return qax_result; -} - -inline Office::Shape* Shapes::AddPolyline(const QVariant& SafeArrayOfPoints) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&SafeArrayOfPoints}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); - return qax_result; -} - -inline Office::Shape* Shapes::AddShape(Office::MsoAutoShapeType Type, double Left, double Top, double Width, double Height) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); - return qax_result; -} - -inline Office::Shape* Shapes::AddTextEffect(Office::MsoPresetTextEffect PresetTextEffect, const QString& Text, const QString& FontName, double FontSize, Office::MsoTriState FontBold, Office::MsoTriState FontItalic, double Left, double Top) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&PresetTextEffect, (void*)&Text, (void*)&FontName, (void*)&FontSize, (void*)&FontBold, (void*)&FontItalic, (void*)&Left, (void*)&Top}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); - return qax_result; -} - -inline Office::Shape* Shapes::AddTextbox(Office::MsoTextOrientation Orientation, double Left, double Top, double Width, double Height) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Orientation, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); - return qax_result; -} - -inline Office::FreeformBuilder* Shapes::BuildFreeform(Office::MsoEditingType EditingType, double X1, double Y1) -{ - Office::FreeformBuilder* qax_result = 0; - qRegisterMetaType("FreeformBuilder*", &qax_result); - qRegisterMetaType("FreeformBuilder", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&EditingType, (void*)&X1, (void*)&Y1}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); - return qax_result; -} - -inline Office::Shape* Shapes::Item(const QVariant& Index) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); - return qax_result; -} - -inline Office::ShapeRange* Shapes::Range(const QVariant& Index) -{ - Office::ShapeRange* qax_result = 0; - qRegisterMetaType("ShapeRange*", &qax_result); - qRegisterMetaType("ShapeRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 23, _a); - return qax_result; -} - -inline void Shapes::SelectAll() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 24, _a); -} - - -inline Office::MsoTextEffectAlignment TextEffectFormat::Alignment() const -{ - QVariant qax_result = property("Alignment"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTextEffectAlignment*)qax_result.constData(); -} -inline void TextEffectFormat::SetAlignment(Office::MsoTextEffectAlignment value){ setProperty("Alignment", QVariant(value)); } - -inline IDispatch* TextEffectFormat::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int TextEffectFormat::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoTriState TextEffectFormat::FontBold() const -{ - QVariant qax_result = property("FontBold"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void TextEffectFormat::SetFontBold(Office::MsoTriState value){ setProperty("FontBold", QVariant(value)); } - -inline Office::MsoTriState TextEffectFormat::FontItalic() const -{ - QVariant qax_result = property("FontItalic"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void TextEffectFormat::SetFontItalic(Office::MsoTriState value){ setProperty("FontItalic", QVariant(value)); } - -inline QString TextEffectFormat::FontName() const -{ - QVariant qax_result = property("FontName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void TextEffectFormat::SetFontName(const QString& value){ setProperty("FontName", QVariant(value)); } - -inline double TextEffectFormat::FontSize() const -{ - QVariant qax_result = property("FontSize"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void TextEffectFormat::SetFontSize(double value){ setProperty("FontSize", QVariant(value)); } - -inline Office::MsoTriState TextEffectFormat::KernedPairs() const -{ - QVariant qax_result = property("KernedPairs"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void TextEffectFormat::SetKernedPairs(Office::MsoTriState value){ setProperty("KernedPairs", QVariant(value)); } - -inline Office::MsoTriState TextEffectFormat::NormalizedHeight() const -{ - QVariant qax_result = property("NormalizedHeight"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void TextEffectFormat::SetNormalizedHeight(Office::MsoTriState value){ setProperty("NormalizedHeight", QVariant(value)); } - -inline IDispatch* TextEffectFormat::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoPresetTextEffectShape TextEffectFormat::PresetShape() const -{ - QVariant qax_result = property("PresetShape"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoPresetTextEffectShape*)qax_result.constData(); -} -inline void TextEffectFormat::SetPresetShape(Office::MsoPresetTextEffectShape value){ setProperty("PresetShape", QVariant(value)); } - -inline Office::MsoPresetTextEffect TextEffectFormat::PresetTextEffect() const -{ - QVariant qax_result = property("PresetTextEffect"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoPresetTextEffect*)qax_result.constData(); -} -inline void TextEffectFormat::SetPresetTextEffect(Office::MsoPresetTextEffect value){ setProperty("PresetTextEffect", QVariant(value)); } - -inline Office::MsoTriState TextEffectFormat::RotatedChars() const -{ - QVariant qax_result = property("RotatedChars"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void TextEffectFormat::SetRotatedChars(Office::MsoTriState value){ setProperty("RotatedChars", QVariant(value)); } - -inline QString TextEffectFormat::Text() const -{ - QVariant qax_result = property("Text"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void TextEffectFormat::SetText(const QString& value){ setProperty("Text", QVariant(value)); } - -inline double TextEffectFormat::Tracking() const -{ - QVariant qax_result = property("Tracking"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void TextEffectFormat::SetTracking(double value){ setProperty("Tracking", QVariant(value)); } - -inline void TextEffectFormat::ToggleVerticalText() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); -} - - -inline IDispatch* TextFrame::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int TextFrame::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline double TextFrame::MarginBottom() const -{ - QVariant qax_result = property("MarginBottom"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void TextFrame::SetMarginBottom(double value){ setProperty("MarginBottom", QVariant(value)); } - -inline double TextFrame::MarginLeft() const -{ - QVariant qax_result = property("MarginLeft"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void TextFrame::SetMarginLeft(double value){ setProperty("MarginLeft", QVariant(value)); } - -inline double TextFrame::MarginRight() const -{ - QVariant qax_result = property("MarginRight"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void TextFrame::SetMarginRight(double value){ setProperty("MarginRight", QVariant(value)); } - -inline double TextFrame::MarginTop() const -{ - QVariant qax_result = property("MarginTop"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void TextFrame::SetMarginTop(double value){ setProperty("MarginTop", QVariant(value)); } - -inline Office::MsoTextOrientation TextFrame::Orientation() const -{ - QVariant qax_result = property("Orientation"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTextOrientation*)qax_result.constData(); -} -inline void TextFrame::SetOrientation(Office::MsoTextOrientation value){ setProperty("Orientation", QVariant(value)); } - -inline IDispatch* TextFrame::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - - -inline IDispatch* ThreeDFormat::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int ThreeDFormat::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline double ThreeDFormat::Depth() const -{ - QVariant qax_result = property("Depth"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ThreeDFormat::SetDepth(double value){ setProperty("Depth", QVariant(value)); } - -inline Office::ColorFormat* ThreeDFormat::ExtrusionColor() const -{ - Office::ColorFormat* qax_pointer = 0; - qRegisterMetaType("ColorFormat*", &qax_pointer); - qRegisterMetaType("ColorFormat", qax_pointer); - QVariant qax_result = property("ExtrusionColor"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::ColorFormat**)qax_result.constData(); -} - -inline Office::MsoExtrusionColorType ThreeDFormat::ExtrusionColorType() const -{ - QVariant qax_result = property("ExtrusionColorType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoExtrusionColorType*)qax_result.constData(); -} -inline void ThreeDFormat::SetExtrusionColorType(Office::MsoExtrusionColorType value){ setProperty("ExtrusionColorType", QVariant(value)); } - -inline IDispatch* ThreeDFormat::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoTriState ThreeDFormat::Perspective() const -{ - QVariant qax_result = property("Perspective"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void ThreeDFormat::SetPerspective(Office::MsoTriState value){ setProperty("Perspective", QVariant(value)); } - -inline Office::MsoPresetExtrusionDirection ThreeDFormat::PresetExtrusionDirection() const -{ - QVariant qax_result = property("PresetExtrusionDirection"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoPresetExtrusionDirection*)qax_result.constData(); -} - -inline Office::MsoPresetLightingDirection ThreeDFormat::PresetLightingDirection() const -{ - QVariant qax_result = property("PresetLightingDirection"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoPresetLightingDirection*)qax_result.constData(); -} -inline void ThreeDFormat::SetPresetLightingDirection(Office::MsoPresetLightingDirection value){ setProperty("PresetLightingDirection", QVariant(value)); } - -inline Office::MsoPresetLightingSoftness ThreeDFormat::PresetLightingSoftness() const -{ - QVariant qax_result = property("PresetLightingSoftness"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoPresetLightingSoftness*)qax_result.constData(); -} -inline void ThreeDFormat::SetPresetLightingSoftness(Office::MsoPresetLightingSoftness value){ setProperty("PresetLightingSoftness", QVariant(value)); } - -inline Office::MsoPresetMaterial ThreeDFormat::PresetMaterial() const -{ - QVariant qax_result = property("PresetMaterial"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoPresetMaterial*)qax_result.constData(); -} -inline void ThreeDFormat::SetPresetMaterial(Office::MsoPresetMaterial value){ setProperty("PresetMaterial", QVariant(value)); } - -inline Office::MsoPresetThreeDFormat ThreeDFormat::PresetThreeDFormat() const -{ - QVariant qax_result = property("PresetThreeDFormat"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoPresetThreeDFormat*)qax_result.constData(); -} - -inline double ThreeDFormat::RotationX() const -{ - QVariant qax_result = property("RotationX"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ThreeDFormat::SetRotationX(double value){ setProperty("RotationX", QVariant(value)); } - -inline double ThreeDFormat::RotationY() const -{ - QVariant qax_result = property("RotationY"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ThreeDFormat::SetRotationY(double value){ setProperty("RotationY", QVariant(value)); } - -inline Office::MsoTriState ThreeDFormat::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void ThreeDFormat::SetVisible(Office::MsoTriState value){ setProperty("Visible", QVariant(value)); } - -inline void ThreeDFormat::IncrementRotationX(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void ThreeDFormat::IncrementRotationY(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void ThreeDFormat::ResetRotation() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void ThreeDFormat::SetExtrusionDirection(Office::MsoPresetExtrusionDirection PresetExtrusionDirection) -{ - void *_a[] = {0, (void*)&PresetExtrusionDirection}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void ThreeDFormat::SetThreeDFormat(Office::MsoPresetThreeDFormat PresetThreeDFormat) -{ - void *_a[] = {0, (void*)&PresetThreeDFormat}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); -} - - -inline void IMsoDispCagNotifySink::InsertClip(IUnknown* pClipMoniker, IUnknown* pItemMoniker) -{ - void *_a[] = {0, (void*)&pClipMoniker, (void*)&pItemMoniker}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void IMsoDispCagNotifySink::WindowIsClosing() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - - -inline Office::MsoAnimationType Balloon::Animation() const -{ - QVariant qax_result = property("Animation"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoAnimationType*)qax_result.constData(); -} -inline void Balloon::SetAnimation(Office::MsoAnimationType value){ setProperty("Animation", QVariant(value)); } - -inline IDispatch* Balloon::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoBalloonType Balloon::BalloonType() const -{ - QVariant qax_result = property("BalloonType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoBalloonType*)qax_result.constData(); -} -inline void Balloon::SetBalloonType(Office::MsoBalloonType value){ setProperty("BalloonType", QVariant(value)); } - -inline Office::MsoButtonSetType Balloon::Button() const -{ - QVariant qax_result = property("Button"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoButtonSetType*)qax_result.constData(); -} -inline void Balloon::SetButton(Office::MsoButtonSetType value){ setProperty("Button", QVariant(value)); } - -inline QString Balloon::Callback() const -{ - QVariant qax_result = property("Callback"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Balloon::SetCallback(const QString& value){ setProperty("Callback", QVariant(value)); } - -inline IDispatch* Balloon::Checkboxes() const -{ - QVariant qax_result = property("Checkboxes"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int Balloon::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString Balloon::Heading() const -{ - QVariant qax_result = property("Heading"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Balloon::SetHeading(const QString& value){ setProperty("Heading", QVariant(value)); } - -inline Office::MsoIconType Balloon::Icon() const -{ - QVariant qax_result = property("Icon"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoIconType*)qax_result.constData(); -} -inline void Balloon::SetIcon(Office::MsoIconType value){ setProperty("Icon", QVariant(value)); } - -inline IDispatch* Balloon::Labels() const -{ - QVariant qax_result = property("Labels"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoModeType Balloon::Mode() const -{ - QVariant qax_result = property("Mode"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoModeType*)qax_result.constData(); -} -inline void Balloon::SetMode(Office::MsoModeType value){ setProperty("Mode", QVariant(value)); } - -inline QString Balloon::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline IDispatch* Balloon::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int Balloon::Private() const -{ - QVariant qax_result = property("Private"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void Balloon::SetPrivate(int value){ setProperty("Private", QVariant(value)); } - -inline QString Balloon::Text() const -{ - QVariant qax_result = property("Text"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Balloon::SetText(const QString& value){ setProperty("Text", QVariant(value)); } - -inline void Balloon::Close() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void Balloon::SetAvoidRectangle(int Left, int Top, int Right, int Bottom) -{ - void *_a[] = {0, (void*)&Left, (void*)&Top, (void*)&Right, (void*)&Bottom}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline MsoBalloonButtonType Balloon::Show() -{ - MsoBalloonButtonType qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); - return qax_result; -} - - -inline IDispatch* BalloonCheckboxes::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int BalloonCheckboxes::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void BalloonCheckboxes::SetCount(int value){ setProperty("Count", QVariant(value)); } - -inline int BalloonCheckboxes::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString BalloonCheckboxes::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline IDispatch* BalloonCheckboxes::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* BalloonCheckboxes::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline IDispatch* BalloonCheckboxes::Item(int Index) -{ - IDispatch* qax_result = 0; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - - -inline IDispatch* BalloonCheckbox::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline bool BalloonCheckbox::Checked() const -{ - QVariant qax_result = property("Checked"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void BalloonCheckbox::SetChecked(bool value){ setProperty("Checked", QVariant(value)); } - -inline int BalloonCheckbox::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString BalloonCheckbox::Item() const -{ - QVariant qax_result = property("Item"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString BalloonCheckbox::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline IDispatch* BalloonCheckbox::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString BalloonCheckbox::Text() const -{ - QVariant qax_result = property("Text"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void BalloonCheckbox::SetText(const QString& value){ setProperty("Text", QVariant(value)); } - - -inline IDispatch* BalloonLabels::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int BalloonLabels::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void BalloonLabels::SetCount(int value){ setProperty("Count", QVariant(value)); } - -inline int BalloonLabels::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString BalloonLabels::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline IDispatch* BalloonLabels::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* BalloonLabels::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline IDispatch* BalloonLabels::Item(int Index) -{ - IDispatch* qax_result = 0; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - - -inline IDispatch* BalloonLabel::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int BalloonLabel::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString BalloonLabel::Item() const -{ - QVariant qax_result = property("Item"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString BalloonLabel::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline IDispatch* BalloonLabel::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString BalloonLabel::Text() const -{ - QVariant qax_result = property("Text"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void BalloonLabel::SetText(const QString& value){ setProperty("Text", QVariant(value)); } - - -inline IDispatch* AnswerWizardFiles::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int AnswerWizardFiles::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int AnswerWizardFiles::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* AnswerWizardFiles::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline void AnswerWizardFiles::Add(const QString& FileName) -{ - void *_a[] = {0, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void AnswerWizardFiles::Delete(const QString& FileName) -{ - void *_a[] = {0, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline QString AnswerWizardFiles::Item(int Index) -{ - QString qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - - -inline IDispatch* AnswerWizard::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int AnswerWizard::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::AnswerWizardFiles* AnswerWizard::Files() const -{ - Office::AnswerWizardFiles* qax_pointer = 0; - qRegisterMetaType("AnswerWizardFiles*", &qax_pointer); - qRegisterMetaType("AnswerWizardFiles", qax_pointer); - QVariant qax_result = property("Files"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::AnswerWizardFiles**)qax_result.constData(); -} - -inline IDispatch* AnswerWizard::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline void AnswerWizard::ClearFileList() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void AnswerWizard::ResetFileList() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - - -inline Office::MsoAnimationType Assistant::Animation() const -{ - QVariant qax_result = property("Animation"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoAnimationType*)qax_result.constData(); -} -inline void Assistant::SetAnimation(Office::MsoAnimationType value){ setProperty("Animation", QVariant(value)); } - -inline IDispatch* Assistant::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline bool Assistant::AssistWithAlerts() const -{ - QVariant qax_result = property("AssistWithAlerts"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void Assistant::SetAssistWithAlerts(bool value){ setProperty("AssistWithAlerts", QVariant(value)); } - -inline bool Assistant::AssistWithHelp() const -{ - QVariant qax_result = property("AssistWithHelp"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void Assistant::SetAssistWithHelp(bool value){ setProperty("AssistWithHelp", QVariant(value)); } - -inline bool Assistant::AssistWithWizards() const -{ - QVariant qax_result = property("AssistWithWizards"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void Assistant::SetAssistWithWizards(bool value){ setProperty("AssistWithWizards", QVariant(value)); } - -inline Office::MsoBalloonErrorType Assistant::BalloonError() const -{ - QVariant qax_result = property("BalloonError"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoBalloonErrorType*)qax_result.constData(); -} - -inline int Assistant::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline bool Assistant::FeatureTips() const -{ - QVariant qax_result = property("FeatureTips"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void Assistant::SetFeatureTips(bool value){ setProperty("FeatureTips", QVariant(value)); } - -inline QString Assistant::FileName() const -{ - QVariant qax_result = property("FileName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Assistant::SetFileName(const QString& value){ setProperty("FileName", QVariant(value)); } - -inline bool Assistant::GuessHelp() const -{ - QVariant qax_result = property("GuessHelp"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void Assistant::SetGuessHelp(bool value){ setProperty("GuessHelp", QVariant(value)); } - -inline bool Assistant::HighPriorityTips() const -{ - QVariant qax_result = property("HighPriorityTips"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void Assistant::SetHighPriorityTips(bool value){ setProperty("HighPriorityTips", QVariant(value)); } - -inline QString Assistant::Item() const -{ - QVariant qax_result = property("Item"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline bool Assistant::KeyboardShortcutTips() const -{ - QVariant qax_result = property("KeyboardShortcutTips"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void Assistant::SetKeyboardShortcutTips(bool value){ setProperty("KeyboardShortcutTips", QVariant(value)); } - -inline int Assistant::Left() const -{ - QVariant qax_result = property("Left"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void Assistant::SetLeft(int value){ setProperty("Left", QVariant(value)); } - -inline bool Assistant::MouseTips() const -{ - QVariant qax_result = property("MouseTips"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void Assistant::SetMouseTips(bool value){ setProperty("MouseTips", QVariant(value)); } - -inline bool Assistant::MoveWhenInTheWay() const -{ - QVariant qax_result = property("MoveWhenInTheWay"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void Assistant::SetMoveWhenInTheWay(bool value){ setProperty("MoveWhenInTheWay", QVariant(value)); } - -inline QString Assistant::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline Office::Balloon* Assistant::NewBalloon() const -{ - Office::Balloon* qax_pointer = 0; - qRegisterMetaType("Balloon*", &qax_pointer); - qRegisterMetaType("Balloon", qax_pointer); - QVariant qax_result = property("NewBalloon"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::Balloon**)qax_result.constData(); -} - -inline bool Assistant::On() const -{ - QVariant qax_result = property("On"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void Assistant::SetOn(bool value){ setProperty("On", QVariant(value)); } - -inline IDispatch* Assistant::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline bool Assistant::Reduced() const -{ - QVariant qax_result = property("Reduced"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void Assistant::SetReduced(bool value){ setProperty("Reduced", QVariant(value)); } - -inline bool Assistant::SearchWhenProgramming() const -{ - QVariant qax_result = property("SearchWhenProgramming"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void Assistant::SetSearchWhenProgramming(bool value){ setProperty("SearchWhenProgramming", QVariant(value)); } - -inline bool Assistant::Sounds() const -{ - QVariant qax_result = property("Sounds"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void Assistant::SetSounds(bool value){ setProperty("Sounds", QVariant(value)); } - -inline bool Assistant::TipOfDay() const -{ - QVariant qax_result = property("TipOfDay"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void Assistant::SetTipOfDay(bool value){ setProperty("TipOfDay", QVariant(value)); } - -inline int Assistant::Top() const -{ - QVariant qax_result = property("Top"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void Assistant::SetTop(int value){ setProperty("Top", QVariant(value)); } - -inline bool Assistant::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void Assistant::SetVisible(bool value){ setProperty("Visible", QVariant(value)); } - -inline void Assistant::ActivateWizard(int WizardID, Office::MsoWizardActType act) -{ - void *_a[] = {0, (void*)&WizardID, (void*)&act}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void Assistant::ActivateWizard(int WizardID, Office::MsoWizardActType act, const QVariant& Animation) -{ - void *_a[] = {0, (void*)&WizardID, (void*)&act, (void*)&Animation}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline int Assistant::DoAlert(const QString& bstrAlertTitle, const QString& bstrAlertText, Office::MsoAlertButtonType alb, Office::MsoAlertIconType alc, Office::MsoAlertDefaultType ald, Office::MsoAlertCancelType alq, bool varfSysAlert) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&bstrAlertTitle, (void*)&bstrAlertText, (void*)&alb, (void*)&alc, (void*)&ald, (void*)&alq, (void*)&varfSysAlert}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline void Assistant::EndWizard(int WizardID, bool varfSuccess) -{ - void *_a[] = {0, (void*)&WizardID, (void*)&varfSuccess}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void Assistant::EndWizard(int WizardID, bool varfSuccess, const QVariant& Animation) -{ - void *_a[] = {0, (void*)&WizardID, (void*)&varfSuccess, (void*)&Animation}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline void Assistant::Help() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void Assistant::Move(int xLeft, int yTop) -{ - void *_a[] = {0, (void*)&xLeft, (void*)&yTop}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline void Assistant::ResetTips() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); -} - -inline int Assistant::StartWizard(bool On, const QString& Callback, int PrivateX) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&On, (void*)&Callback, (void*)&PrivateX}; - qt_metacall(QMetaObject::InvokeMetaMethod, 34, _a); - return qax_result; -} - -inline int Assistant::StartWizard(bool On, const QString& Callback, int PrivateX, const QVariant& Animation) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&On, (void*)&Callback, (void*)&PrivateX, (void*)&Animation}; - qt_metacall(QMetaObject::InvokeMetaMethod, 35, _a); - return qax_result; -} - -inline int Assistant::StartWizard(bool On, const QString& Callback, int PrivateX, const QVariant& Animation, const QVariant& CustomTeaser) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&On, (void*)&Callback, (void*)&PrivateX, (void*)&Animation, (void*)&CustomTeaser}; - qt_metacall(QMetaObject::InvokeMetaMethod, 36, _a); - return qax_result; -} - -inline int Assistant::StartWizard(bool On, const QString& Callback, int PrivateX, const QVariant& Animation, const QVariant& CustomTeaser, const QVariant& Top) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&On, (void*)&Callback, (void*)&PrivateX, (void*)&Animation, (void*)&CustomTeaser, (void*)&Top}; - qt_metacall(QMetaObject::InvokeMetaMethod, 37, _a); - return qax_result; -} - -inline int Assistant::StartWizard(bool On, const QString& Callback, int PrivateX, const QVariant& Animation, const QVariant& CustomTeaser, const QVariant& Top, const QVariant& Left) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&On, (void*)&Callback, (void*)&PrivateX, (void*)&Animation, (void*)&CustomTeaser, (void*)&Top, (void*)&Left}; - qt_metacall(QMetaObject::InvokeMetaMethod, 38, _a); - return qax_result; -} - -inline int Assistant::StartWizard(bool On, const QString& Callback, int PrivateX, const QVariant& Animation, const QVariant& CustomTeaser, const QVariant& Top, const QVariant& Left, const QVariant& Bottom) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&On, (void*)&Callback, (void*)&PrivateX, (void*)&Animation, (void*)&CustomTeaser, (void*)&Top, (void*)&Left, (void*)&Bottom}; - qt_metacall(QMetaObject::InvokeMetaMethod, 39, _a); - return qax_result; -} - -inline int Assistant::StartWizard(bool On, const QString& Callback, int PrivateX, const QVariant& Animation, const QVariant& CustomTeaser, const QVariant& Top, const QVariant& Left, const QVariant& Bottom, const QVariant& Right) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&On, (void*)&Callback, (void*)&PrivateX, (void*)&Animation, (void*)&CustomTeaser, (void*)&Top, (void*)&Left, (void*)&Bottom, (void*)&Right}; - qt_metacall(QMetaObject::InvokeMetaMethod, 40, _a); - return qax_result; -} - - -inline int IFoundFiles::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IUnknown* IFoundFiles::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline QString IFoundFiles::Item(int Index) -{ - QString qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - - -inline QString IFind::Author() const -{ - QVariant qax_result = property("Author"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void IFind::SetAuthor(const QString& value){ setProperty("Author", QVariant(value)); } - -inline QVariant IFind::DateCreatedFrom() const -{ - QVariant qax_result = property("DateCreatedFrom"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void IFind::SetDateCreatedFrom(const QVariant& value){ setProperty("DateCreatedFrom", QVariant(value)); } - -inline QVariant IFind::DateCreatedTo() const -{ - QVariant qax_result = property("DateCreatedTo"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void IFind::SetDateCreatedTo(const QVariant& value){ setProperty("DateCreatedTo", QVariant(value)); } - -inline QVariant IFind::DateSavedFrom() const -{ - QVariant qax_result = property("DateSavedFrom"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void IFind::SetDateSavedFrom(const QVariant& value){ setProperty("DateSavedFrom", QVariant(value)); } - -inline QVariant IFind::DateSavedTo() const -{ - QVariant qax_result = property("DateSavedTo"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void IFind::SetDateSavedTo(const QVariant& value){ setProperty("DateSavedTo", QVariant(value)); } - -inline int IFind::FileType() const -{ - QVariant qax_result = property("FileType"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void IFind::SetFileType(int value){ setProperty("FileType", QVariant(value)); } - -inline QString IFind::Keywords() const -{ - QVariant qax_result = property("Keywords"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void IFind::SetKeywords(const QString& value){ setProperty("Keywords", QVariant(value)); } - -inline Office::MsoFileFindListBy IFind::ListBy() const -{ - QVariant qax_result = property("ListBy"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoFileFindListBy*)qax_result.constData(); -} -inline void IFind::SetListBy(Office::MsoFileFindListBy value){ setProperty("ListBy", QVariant(value)); } - -inline bool IFind::MatchCase() const -{ - QVariant qax_result = property("MatchCase"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void IFind::SetMatchCase(bool value){ setProperty("MatchCase", QVariant(value)); } - -inline QString IFind::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void IFind::SetName(const QString& value){ setProperty("Name", QVariant(value)); } - -inline Office::MsoFileFindOptions IFind::Options() const -{ - QVariant qax_result = property("Options"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoFileFindOptions*)qax_result.constData(); -} -inline void IFind::SetOptions(Office::MsoFileFindOptions value){ setProperty("Options", QVariant(value)); } - -inline bool IFind::PatternMatch() const -{ - QVariant qax_result = property("PatternMatch"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void IFind::SetPatternMatch(bool value){ setProperty("PatternMatch", QVariant(value)); } - -inline Office::IFoundFiles* IFind::Results() const -{ - Office::IFoundFiles* qax_pointer = 0; - qRegisterMetaType("IFoundFiles*", &qax_pointer); - qRegisterMetaType("IFoundFiles", qax_pointer); - QVariant qax_result = property("Results"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::IFoundFiles**)qax_result.constData(); -} - -inline QString IFind::SavedBy() const -{ - QVariant qax_result = property("SavedBy"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void IFind::SetSavedBy(const QString& value){ setProperty("SavedBy", QVariant(value)); } - -inline QString IFind::SearchPath() const -{ - QVariant qax_result = property("SearchPath"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void IFind::SetSearchPath(const QString& value){ setProperty("SearchPath", QVariant(value)); } - -inline int IFind::SelectedFile() const -{ - QVariant qax_result = property("SelectedFile"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void IFind::SetSelectedFile(int value){ setProperty("SelectedFile", QVariant(value)); } - -inline Office::MsoFileFindSortBy IFind::SortBy() const -{ - QVariant qax_result = property("SortBy"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoFileFindSortBy*)qax_result.constData(); -} -inline void IFind::SetSortBy(Office::MsoFileFindSortBy value){ setProperty("SortBy", QVariant(value)); } - -inline bool IFind::SubDir() const -{ - QVariant qax_result = property("SubDir"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void IFind::SetSubDir(bool value){ setProperty("SubDir", QVariant(value)); } - -inline QString IFind::Subject() const -{ - QVariant qax_result = property("Subject"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void IFind::SetSubject(const QString& value){ setProperty("Subject", QVariant(value)); } - -inline QString IFind::Text() const -{ - QVariant qax_result = property("Text"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void IFind::SetText(const QString& value){ setProperty("Text", QVariant(value)); } - -inline QString IFind::Title() const -{ - QVariant qax_result = property("Title"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void IFind::SetTitle(const QString& value){ setProperty("Title", QVariant(value)); } - -inline Office::MsoFileFindView IFind::View() const -{ - QVariant qax_result = property("View"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoFileFindView*)qax_result.constData(); -} -inline void IFind::SetView(Office::MsoFileFindView value){ setProperty("View", QVariant(value)); } - -inline void IFind::Delete(const QString& bstrQueryName) -{ - void *_a[] = {0, (void*)&bstrQueryName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void IFind::Execute() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void IFind::Load(const QString& bstrQueryName) -{ - void *_a[] = {0, (void*)&bstrQueryName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void IFind::Save(const QString& bstrQueryName) -{ - void *_a[] = {0, (void*)&bstrQueryName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline int IFind::Show() -{ - int qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 32, _a); - return qax_result; -} - - -inline IDispatch* FoundFiles::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int FoundFiles::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int FoundFiles::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IUnknown* FoundFiles::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline QString FoundFiles::Item(int Index) -{ - QString qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - - -inline IDispatch* PropertyTest::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoCondition PropertyTest::Condition() const -{ - QVariant qax_result = property("Condition"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoCondition*)qax_result.constData(); -} - -inline Office::MsoConnector PropertyTest::Connector() const -{ - QVariant qax_result = property("Connector"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoConnector*)qax_result.constData(); -} - -inline int PropertyTest::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString PropertyTest::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant PropertyTest::SecondValue() const -{ - QVariant qax_result = property("SecondValue"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant PropertyTest::Value() const -{ - QVariant qax_result = property("Value"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - - -inline IDispatch* PropertyTests::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int PropertyTests::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int PropertyTests::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IUnknown* PropertyTests::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline void PropertyTests::Add(const QString& Name, Office::MsoCondition Condition) -{ - void *_a[] = {0, (void*)&Name, (void*)&Condition}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void PropertyTests::Add(const QString& Name, Office::MsoCondition Condition, const QVariant& Value) -{ - void *_a[] = {0, (void*)&Name, (void*)&Condition, (void*)&Value}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void PropertyTests::Add(const QString& Name, Office::MsoCondition Condition, const QVariant& Value, const QVariant& SecondValue) -{ - void *_a[] = {0, (void*)&Name, (void*)&Condition, (void*)&Value, (void*)&SecondValue}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void PropertyTests::Add(const QString& Name, Office::MsoCondition Condition, const QVariant& Value, const QVariant& SecondValue, Office::MsoConnector Connector) -{ - void *_a[] = {0, (void*)&Name, (void*)&Condition, (void*)&Value, (void*)&SecondValue, (void*)&Connector}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline Office::PropertyTest* PropertyTests::Item(int Index) -{ - Office::PropertyTest* qax_result = 0; - qRegisterMetaType("PropertyTest*", &qax_result); - qRegisterMetaType("PropertyTest", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline void PropertyTests::Remove(int Index) -{ - void *_a[] = {0, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - - -inline IDispatch* FileSearch::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int FileSearch::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString FileSearch::FileName() const -{ - QVariant qax_result = property("FileName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void FileSearch::SetFileName(const QString& value){ setProperty("FileName", QVariant(value)); } - -inline Office::MsoFileType FileSearch::FileType() const -{ - QVariant qax_result = property("FileType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoFileType*)qax_result.constData(); -} -inline void FileSearch::SetFileType(Office::MsoFileType value){ setProperty("FileType", QVariant(value)); } - -inline Office::FileTypes* FileSearch::FileTypes() const -{ - Office::FileTypes* qax_pointer = 0; - qRegisterMetaType("FileTypes*", &qax_pointer); - qRegisterMetaType("FileTypes", qax_pointer); - QVariant qax_result = property("FileTypes"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::FileTypes**)qax_result.constData(); -} - -inline Office::FoundFiles* FileSearch::FoundFiles() const -{ - Office::FoundFiles* qax_pointer = 0; - qRegisterMetaType("FoundFiles*", &qax_pointer); - qRegisterMetaType("FoundFiles", qax_pointer); - QVariant qax_result = property("FoundFiles"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::FoundFiles**)qax_result.constData(); -} - -inline Office::MsoLastModified FileSearch::LastModified() const -{ - QVariant qax_result = property("LastModified"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoLastModified*)qax_result.constData(); -} -inline void FileSearch::SetLastModified(Office::MsoLastModified value){ setProperty("LastModified", QVariant(value)); } - -inline QString FileSearch::LookIn() const -{ - QVariant qax_result = property("LookIn"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void FileSearch::SetLookIn(const QString& value){ setProperty("LookIn", QVariant(value)); } - -inline bool FileSearch::MatchAllWordForms() const -{ - QVariant qax_result = property("MatchAllWordForms"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void FileSearch::SetMatchAllWordForms(bool value){ setProperty("MatchAllWordForms", QVariant(value)); } - -inline bool FileSearch::MatchTextExactly() const -{ - QVariant qax_result = property("MatchTextExactly"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void FileSearch::SetMatchTextExactly(bool value){ setProperty("MatchTextExactly", QVariant(value)); } - -inline Office::PropertyTests* FileSearch::PropertyTests() const -{ - Office::PropertyTests* qax_pointer = 0; - qRegisterMetaType("PropertyTests*", &qax_pointer); - qRegisterMetaType("PropertyTests", qax_pointer); - QVariant qax_result = property("PropertyTests"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::PropertyTests**)qax_result.constData(); -} - -inline Office::SearchFolders* FileSearch::SearchFolders() const -{ - Office::SearchFolders* qax_pointer = 0; - qRegisterMetaType("SearchFolders*", &qax_pointer); - qRegisterMetaType("SearchFolders", qax_pointer); - QVariant qax_result = property("SearchFolders"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::SearchFolders**)qax_result.constData(); -} - -inline Office::SearchScopes* FileSearch::SearchScopes() const -{ - Office::SearchScopes* qax_pointer = 0; - qRegisterMetaType("SearchScopes*", &qax_pointer); - qRegisterMetaType("SearchScopes", qax_pointer); - QVariant qax_result = property("SearchScopes"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::SearchScopes**)qax_result.constData(); -} - -inline bool FileSearch::SearchSubFolders() const -{ - QVariant qax_result = property("SearchSubFolders"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void FileSearch::SetSearchSubFolders(bool value){ setProperty("SearchSubFolders", QVariant(value)); } - -inline QString FileSearch::TextOrProperty() const -{ - QVariant qax_result = property("TextOrProperty"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void FileSearch::SetTextOrProperty(const QString& value){ setProperty("TextOrProperty", QVariant(value)); } - -inline int FileSearch::Execute() -{ - int qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline int FileSearch::Execute(Office::MsoSortBy SortBy) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&SortBy}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline int FileSearch::Execute(Office::MsoSortBy SortBy, Office::MsoSortOrder SortOrder) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&SortBy, (void*)&SortOrder}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline int FileSearch::Execute(Office::MsoSortBy SortBy, Office::MsoSortOrder SortOrder, bool AlwaysAccurate) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&SortBy, (void*)&SortOrder, (void*)&AlwaysAccurate}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - -inline void FileSearch::NewSearch() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline void FileSearch::RefreshScopes() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - - -inline IDispatch* COMAddIn::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline bool COMAddIn::Connect() const -{ - QVariant qax_result = property("Connect"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void COMAddIn::SetConnect(bool value){ setProperty("Connect", QVariant(value)); } - -inline int COMAddIn::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString COMAddIn::Description() const -{ - QVariant qax_result = property("Description"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void COMAddIn::SetDescription(const QString& value){ setProperty("Description", QVariant(value)); } - -inline QString COMAddIn::Guid() const -{ - QVariant qax_result = property("Guid"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline IDispatch* COMAddIn::Object() const -{ - QVariant qax_result = property("Object"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} -inline void COMAddIn::SetObject(IDispatch* value){ - int typeId = qRegisterMetaType("IDispatch*", &value); - setProperty("Object", QVariant(typeId, &value)); -} - -inline IDispatch* COMAddIn::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString COMAddIn::ProgId() const -{ - QVariant qax_result = property("ProgId"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - - -inline IDispatch* COMAddIns::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int COMAddIns::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int COMAddIns::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* COMAddIns::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* COMAddIns::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::COMAddIn* COMAddIns::Item(QVariant& Index) -{ - Office::COMAddIn* qax_result = 0; - qRegisterMetaType("COMAddIn*", &qax_result); - qRegisterMetaType("COMAddIn", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline void COMAddIns::SetAppModal(bool varfModal) -{ - void *_a[] = {0, (void*)&varfModal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void COMAddIns::Update() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - - -inline IDispatch* LanguageSettings::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int LanguageSettings::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* LanguageSettings::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int LanguageSettings::LanguageID(Office::MsoAppLanguageID Id) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Id}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline bool LanguageSettings::LanguagePreferredForEditing(Office::MsoLanguageID lid) -{ - bool qax_result; - void *_a[] = {(void*)&qax_result, (void*)&lid}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - - -inline void ICommandBarsEvents::OnUpdate() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline Office::CommandBarControl* CommandBars::ActionControl() const -{ - Office::CommandBarControl* qax_pointer = 0; - qRegisterMetaType("CommandBarControl*", &qax_pointer); - qRegisterMetaType("CommandBarControl", qax_pointer); - QVariant qax_result = property("ActionControl"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::CommandBarControl**)qax_result.constData(); -} - -inline Office::CommandBar* CommandBars::ActiveMenuBar() const -{ - Office::CommandBar* qax_pointer = 0; - qRegisterMetaType("CommandBar*", &qax_pointer); - qRegisterMetaType("CommandBar", qax_pointer); - QVariant qax_result = property("ActiveMenuBar"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::CommandBar**)qax_result.constData(); -} - -inline bool CommandBars::AdaptiveMenus() const -{ - QVariant qax_result = property("AdaptiveMenus"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void CommandBars::SetAdaptiveMenus(bool value){ setProperty("AdaptiveMenus", QVariant(value)); } - -inline IDispatch* CommandBars::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int CommandBars::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int CommandBars::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline bool CommandBars::DisableAskAQuestionDropdown() const -{ - QVariant qax_result = property("DisableAskAQuestionDropdown"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void CommandBars::SetDisableAskAQuestionDropdown(bool value){ setProperty("DisableAskAQuestionDropdown", QVariant(value)); } - -inline bool CommandBars::DisableCustomize() const -{ - QVariant qax_result = property("DisableCustomize"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void CommandBars::SetDisableCustomize(bool value){ setProperty("DisableCustomize", QVariant(value)); } - -inline bool CommandBars::DisplayFonts() const -{ - QVariant qax_result = property("DisplayFonts"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void CommandBars::SetDisplayFonts(bool value){ setProperty("DisplayFonts", QVariant(value)); } - -inline bool CommandBars::DisplayKeysInTooltips() const -{ - QVariant qax_result = property("DisplayKeysInTooltips"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void CommandBars::SetDisplayKeysInTooltips(bool value){ setProperty("DisplayKeysInTooltips", QVariant(value)); } - -inline bool CommandBars::DisplayTooltips() const -{ - QVariant qax_result = property("DisplayTooltips"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void CommandBars::SetDisplayTooltips(bool value){ setProperty("DisplayTooltips", QVariant(value)); } - -inline bool CommandBars::LargeButtons() const -{ - QVariant qax_result = property("LargeButtons"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void CommandBars::SetLargeButtons(bool value){ setProperty("LargeButtons", QVariant(value)); } - -inline Office::MsoMenuAnimation CommandBars::MenuAnimationStyle() const -{ - QVariant qax_result = property("MenuAnimationStyle"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoMenuAnimation*)qax_result.constData(); -} -inline void CommandBars::SetMenuAnimationStyle(Office::MsoMenuAnimation value){ setProperty("MenuAnimationStyle", QVariant(value)); } - -inline IDispatch* CommandBars::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* CommandBars::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::CommandBar* CommandBars::Add() -{ - Office::CommandBar* qax_result = 0; - qRegisterMetaType("CommandBar*", &qax_result); - qRegisterMetaType("CommandBar", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); - return qax_result; -} - -inline Office::CommandBar* CommandBars::Add(const QVariant& Name) -{ - Office::CommandBar* qax_result = 0; - qRegisterMetaType("CommandBar*", &qax_result); - qRegisterMetaType("CommandBar", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Name}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); - return qax_result; -} - -inline Office::CommandBar* CommandBars::Add(const QVariant& Name, const QVariant& Position) -{ - Office::CommandBar* qax_result = 0; - qRegisterMetaType("CommandBar*", &qax_result); - qRegisterMetaType("CommandBar", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Name, (void*)&Position}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); - return qax_result; -} - -inline Office::CommandBar* CommandBars::Add(const QVariant& Name, const QVariant& Position, const QVariant& MenuBar) -{ - Office::CommandBar* qax_result = 0; - qRegisterMetaType("CommandBar*", &qax_result); - qRegisterMetaType("CommandBar", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Name, (void*)&Position, (void*)&MenuBar}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); - return qax_result; -} - -inline Office::CommandBar* CommandBars::Add(const QVariant& Name, const QVariant& Position, const QVariant& MenuBar, const QVariant& Temporary) -{ - Office::CommandBar* qax_result = 0; - qRegisterMetaType("CommandBar*", &qax_result); - qRegisterMetaType("CommandBar", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Name, (void*)&Position, (void*)&MenuBar, (void*)&Temporary}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); - return qax_result; -} - -inline Office::CommandBar* CommandBars::AddEx() -{ - Office::CommandBar* qax_result = 0; - qRegisterMetaType("CommandBar*", &qax_result); - qRegisterMetaType("CommandBar", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); - return qax_result; -} - -inline Office::CommandBar* CommandBars::AddEx(const QVariant& TbidOrName) -{ - Office::CommandBar* qax_result = 0; - qRegisterMetaType("CommandBar*", &qax_result); - qRegisterMetaType("CommandBar", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&TbidOrName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); - return qax_result; -} - -inline Office::CommandBar* CommandBars::AddEx(const QVariant& TbidOrName, const QVariant& Position) -{ - Office::CommandBar* qax_result = 0; - qRegisterMetaType("CommandBar*", &qax_result); - qRegisterMetaType("CommandBar", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&TbidOrName, (void*)&Position}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); - return qax_result; -} - -inline Office::CommandBar* CommandBars::AddEx(const QVariant& TbidOrName, const QVariant& Position, const QVariant& MenuBar) -{ - Office::CommandBar* qax_result = 0; - qRegisterMetaType("CommandBar*", &qax_result); - qRegisterMetaType("CommandBar", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&TbidOrName, (void*)&Position, (void*)&MenuBar}; - qt_metacall(QMetaObject::InvokeMetaMethod, 23, _a); - return qax_result; -} - -inline Office::CommandBar* CommandBars::AddEx(const QVariant& TbidOrName, const QVariant& Position, const QVariant& MenuBar, const QVariant& Temporary) -{ - Office::CommandBar* qax_result = 0; - qRegisterMetaType("CommandBar*", &qax_result); - qRegisterMetaType("CommandBar", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&TbidOrName, (void*)&Position, (void*)&MenuBar, (void*)&Temporary}; - qt_metacall(QMetaObject::InvokeMetaMethod, 24, _a); - return qax_result; -} - -inline Office::CommandBar* CommandBars::AddEx(const QVariant& TbidOrName, const QVariant& Position, const QVariant& MenuBar, const QVariant& Temporary, const QVariant& TbtrProtection) -{ - Office::CommandBar* qax_result = 0; - qRegisterMetaType("CommandBar*", &qax_result); - qRegisterMetaType("CommandBar", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&TbidOrName, (void*)&Position, (void*)&MenuBar, (void*)&Temporary, (void*)&TbtrProtection}; - qt_metacall(QMetaObject::InvokeMetaMethod, 25, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBars::FindControl() -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 26, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBars::FindControl(const QVariant& Type) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type}; - qt_metacall(QMetaObject::InvokeMetaMethod, 27, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBars::FindControl(const QVariant& Type, const QVariant& Id) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Id}; - qt_metacall(QMetaObject::InvokeMetaMethod, 28, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBars::FindControl(const QVariant& Type, const QVariant& Id, const QVariant& Tag) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Id, (void*)&Tag}; - qt_metacall(QMetaObject::InvokeMetaMethod, 29, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBars::FindControl(const QVariant& Type, const QVariant& Id, const QVariant& Tag, const QVariant& Visible) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Id, (void*)&Tag, (void*)&Visible}; - qt_metacall(QMetaObject::InvokeMetaMethod, 30, _a); - return qax_result; -} - -inline Office::CommandBarControls* CommandBars::FindControls() -{ - Office::CommandBarControls* qax_result = 0; - qRegisterMetaType("CommandBarControls*", &qax_result); - qRegisterMetaType("CommandBarControls", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 31, _a); - return qax_result; -} - -inline Office::CommandBarControls* CommandBars::FindControls(const QVariant& Type) -{ - Office::CommandBarControls* qax_result = 0; - qRegisterMetaType("CommandBarControls*", &qax_result); - qRegisterMetaType("CommandBarControls", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type}; - qt_metacall(QMetaObject::InvokeMetaMethod, 32, _a); - return qax_result; -} - -inline Office::CommandBarControls* CommandBars::FindControls(const QVariant& Type, const QVariant& Id) -{ - Office::CommandBarControls* qax_result = 0; - qRegisterMetaType("CommandBarControls*", &qax_result); - qRegisterMetaType("CommandBarControls", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Id}; - qt_metacall(QMetaObject::InvokeMetaMethod, 33, _a); - return qax_result; -} - -inline Office::CommandBarControls* CommandBars::FindControls(const QVariant& Type, const QVariant& Id, const QVariant& Tag) -{ - Office::CommandBarControls* qax_result = 0; - qRegisterMetaType("CommandBarControls*", &qax_result); - qRegisterMetaType("CommandBarControls", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Id, (void*)&Tag}; - qt_metacall(QMetaObject::InvokeMetaMethod, 34, _a); - return qax_result; -} - -inline Office::CommandBarControls* CommandBars::FindControls(const QVariant& Type, const QVariant& Id, const QVariant& Tag, const QVariant& Visible) -{ - Office::CommandBarControls* qax_result = 0; - qRegisterMetaType("CommandBarControls*", &qax_result); - qRegisterMetaType("CommandBarControls", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Id, (void*)&Tag, (void*)&Visible}; - qt_metacall(QMetaObject::InvokeMetaMethod, 35, _a); - return qax_result; -} - -inline int CommandBars::IdsString(int ids, QString& pbstrName) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&ids, (void*)&pbstrName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 36, _a); - return qax_result; -} - -inline Office::CommandBar* CommandBars::Item(const QVariant& Index) -{ - Office::CommandBar* qax_result = 0; - qRegisterMetaType("CommandBar*", &qax_result); - qRegisterMetaType("CommandBar", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 37, _a); - return qax_result; -} - -inline void CommandBars::ReleaseFocus() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 38, _a); -} - -inline int CommandBars::TmcGetName(int tmc, QString& pbstrName) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&tmc, (void*)&pbstrName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 47, _a); - return qax_result; -} - - -inline void ICommandBarComboBoxEvents::Change(Office::CommandBarComboBox* Ctrl) -{ - void *_a[] = {0, (void*)&Ctrl}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline IDispatch* CommandBarComboBox::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline bool CommandBarComboBox::BeginGroup() const -{ - QVariant qax_result = property("BeginGroup"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void CommandBarComboBox::SetBeginGroup(bool value){ setProperty("BeginGroup", QVariant(value)); } - -inline bool CommandBarComboBox::BuiltIn() const -{ - QVariant qax_result = property("BuiltIn"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline QString CommandBarComboBox::Caption() const -{ - QVariant qax_result = property("Caption"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarComboBox::SetCaption(const QString& value){ setProperty("Caption", QVariant(value)); } - -inline IDispatch* CommandBarComboBox::Control() const -{ - QVariant qax_result = property("Control"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int CommandBarComboBox::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString CommandBarComboBox::DescriptionText() const -{ - QVariant qax_result = property("DescriptionText"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarComboBox::SetDescriptionText(const QString& value){ setProperty("DescriptionText", QVariant(value)); } - -inline int CommandBarComboBox::DropDownLines() const -{ - QVariant qax_result = property("DropDownLines"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBarComboBox::SetDropDownLines(int value){ setProperty("DropDownLines", QVariant(value)); } - -inline int CommandBarComboBox::DropDownWidth() const -{ - QVariant qax_result = property("DropDownWidth"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBarComboBox::SetDropDownWidth(int value){ setProperty("DropDownWidth", QVariant(value)); } - -inline bool CommandBarComboBox::Enabled() const -{ - QVariant qax_result = property("Enabled"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void CommandBarComboBox::SetEnabled(bool value){ setProperty("Enabled", QVariant(value)); } - -inline int CommandBarComboBox::Height() const -{ - QVariant qax_result = property("Height"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBarComboBox::SetHeight(int value){ setProperty("Height", QVariant(value)); } - -inline int CommandBarComboBox::HelpContextId() const -{ - QVariant qax_result = property("HelpContextId"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBarComboBox::SetHelpContextId(int value){ setProperty("HelpContextId", QVariant(value)); } - -inline QString CommandBarComboBox::HelpFile() const -{ - QVariant qax_result = property("HelpFile"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarComboBox::SetHelpFile(const QString& value){ setProperty("HelpFile", QVariant(value)); } - -inline int CommandBarComboBox::Id() const -{ - QVariant qax_result = property("Id"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int CommandBarComboBox::Index() const -{ - QVariant qax_result = property("Index"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int CommandBarComboBox::InstanceId() const -{ - QVariant qax_result = property("InstanceId"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline bool CommandBarComboBox::IsPriorityDropped() const -{ - QVariant qax_result = property("IsPriorityDropped"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline int CommandBarComboBox::Left() const -{ - QVariant qax_result = property("Left"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int CommandBarComboBox::ListCount() const -{ - QVariant qax_result = property("ListCount"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int CommandBarComboBox::ListHeaderCount() const -{ - QVariant qax_result = property("ListHeaderCount"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBarComboBox::SetListHeaderCount(int value){ setProperty("ListHeaderCount", QVariant(value)); } - -inline int CommandBarComboBox::ListIndex() const -{ - QVariant qax_result = property("ListIndex"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBarComboBox::SetListIndex(int value){ setProperty("ListIndex", QVariant(value)); } - -inline Office::MsoControlOLEUsage CommandBarComboBox::OLEUsage() const -{ - QVariant qax_result = property("OLEUsage"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoControlOLEUsage*)qax_result.constData(); -} -inline void CommandBarComboBox::SetOLEUsage(Office::MsoControlOLEUsage value){ setProperty("OLEUsage", QVariant(value)); } - -inline QString CommandBarComboBox::OnAction() const -{ - QVariant qax_result = property("OnAction"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarComboBox::SetOnAction(const QString& value){ setProperty("OnAction", QVariant(value)); } - -inline QString CommandBarComboBox::Parameter() const -{ - QVariant qax_result = property("Parameter"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarComboBox::SetParameter(const QString& value){ setProperty("Parameter", QVariant(value)); } - -inline Office::CommandBar* CommandBarComboBox::Parent() const -{ - Office::CommandBar* qax_pointer = 0; - qRegisterMetaType("CommandBar*", &qax_pointer); - qRegisterMetaType("CommandBar", qax_pointer); - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::CommandBar**)qax_result.constData(); -} - -inline int CommandBarComboBox::Priority() const -{ - QVariant qax_result = property("Priority"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBarComboBox::SetPriority(int value){ setProperty("Priority", QVariant(value)); } - -inline Office::MsoComboStyle CommandBarComboBox::Style() const -{ - QVariant qax_result = property("Style"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoComboStyle*)qax_result.constData(); -} -inline void CommandBarComboBox::SetStyle(Office::MsoComboStyle value){ setProperty("Style", QVariant(value)); } - -inline QString CommandBarComboBox::Tag() const -{ - QVariant qax_result = property("Tag"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarComboBox::SetTag(const QString& value){ setProperty("Tag", QVariant(value)); } - -inline QString CommandBarComboBox::Text() const -{ - QVariant qax_result = property("Text"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarComboBox::SetText(const QString& value){ setProperty("Text", QVariant(value)); } - -inline QString CommandBarComboBox::TooltipText() const -{ - QVariant qax_result = property("TooltipText"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarComboBox::SetTooltipText(const QString& value){ setProperty("TooltipText", QVariant(value)); } - -inline int CommandBarComboBox::Top() const -{ - QVariant qax_result = property("Top"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoControlType CommandBarComboBox::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoControlType*)qax_result.constData(); -} - -inline bool CommandBarComboBox::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void CommandBarComboBox::SetVisible(bool value){ setProperty("Visible", QVariant(value)); } - -inline int CommandBarComboBox::Width() const -{ - QVariant qax_result = property("Width"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBarComboBox::SetWidth(int value){ setProperty("Width", QVariant(value)); } - -inline int CommandBarComboBox::accChildCount() const -{ - QVariant qax_result = property("accChildCount"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString CommandBarComboBox::accDefaultAction() const -{ - QVariant qax_result = property("accDefaultAction"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString CommandBarComboBox::accDescription() const -{ - QVariant qax_result = property("accDescription"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant CommandBarComboBox::accFocus() const -{ - QVariant qax_result = property("accFocus"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QString CommandBarComboBox::accHelp() const -{ - QVariant qax_result = property("accHelp"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString CommandBarComboBox::accKeyboardShortcut() const -{ - QVariant qax_result = property("accKeyboardShortcut"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant CommandBarComboBox::accName() const -{ - QVariant qax_result = property("accName"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void CommandBarComboBox::setAccName(const QVariant& value){ setProperty("accName", QVariant(value)); } - -inline IDispatch* CommandBarComboBox::accParent() const -{ - QVariant qax_result = property("accParent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QVariant CommandBarComboBox::accRole() const -{ - QVariant qax_result = property("accRole"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant CommandBarComboBox::accSelection() const -{ - QVariant qax_result = property("accSelection"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant CommandBarComboBox::accState() const -{ - QVariant qax_result = property("accState"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant CommandBarComboBox::accValue() const -{ - QVariant qax_result = property("accValue"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void CommandBarComboBox::setAccValue(const QVariant& value){ setProperty("accValue", QVariant(value)); } - -inline void CommandBarComboBox::AddItem(const QString& Text) -{ - void *_a[] = {0, (void*)&Text}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); -} - -inline void CommandBarComboBox::AddItem(const QString& Text, const QVariant& Index) -{ - void *_a[] = {0, (void*)&Text, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); -} - -inline void CommandBarComboBox::Clear() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); -} - -inline Office::CommandBarControl* CommandBarComboBox::Copy() -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBarComboBox::Copy(const QVariant& Bar) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBarComboBox::Copy(const QVariant& Bar, const QVariant& Before) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar, (void*)&Before}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); - return qax_result; -} - -inline void CommandBarComboBox::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); -} - -inline void CommandBarComboBox::Delete(const QVariant& Temporary) -{ - void *_a[] = {0, (void*)&Temporary}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); -} - -inline void CommandBarComboBox::Execute() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 23, _a); -} - -inline QString CommandBarComboBox::List(int Index) -{ - QString qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 24, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBarComboBox::Move() -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 25, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBarComboBox::Move(const QVariant& Bar) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar}; - qt_metacall(QMetaObject::InvokeMetaMethod, 26, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBarComboBox::Move(const QVariant& Bar, const QVariant& Before) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar, (void*)&Before}; - qt_metacall(QMetaObject::InvokeMetaMethod, 27, _a); - return qax_result; -} - -inline void CommandBarComboBox::RemoveItem(int Index) -{ - void *_a[] = {0, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 28, _a); -} - -inline void CommandBarComboBox::Reserved1() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 29, _a); -} - -inline void CommandBarComboBox::Reserved2() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 30, _a); -} - -inline void CommandBarComboBox::Reserved3() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 31, _a); -} - -inline void CommandBarComboBox::Reserved4() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 32, _a); -} - -inline void CommandBarComboBox::Reserved5() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 33, _a); -} - -inline void CommandBarComboBox::Reserved6() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 34, _a); -} - -inline void CommandBarComboBox::Reserved7() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 35, _a); -} - -inline void CommandBarComboBox::Reset() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 36, _a); -} - -inline void CommandBarComboBox::SetFocus() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 43, _a); -} - -inline int CommandBarComboBox::SetList(int Index, const QString& rhs) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index, (void*)&rhs}; - qt_metacall(QMetaObject::InvokeMetaMethod, 47, _a); - return qax_result; -} - -inline IDispatch* CommandBarComboBox::accChild(const QVariant& varChild) -{ - IDispatch* qax_result = 0; - void *_a[] = {(void*)&qax_result, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 60, _a); - return qax_result; -} - -inline void CommandBarComboBox::accDoDefaultAction() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 65, _a); -} - -inline void CommandBarComboBox::accDoDefaultAction(const QVariant& varChild) -{ - void *_a[] = {0, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 66, _a); -} - -inline int CommandBarComboBox::accHelpTopic(QString& pszHelpFile) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&pszHelpFile}; - qt_metacall(QMetaObject::InvokeMetaMethod, 69, _a); - return qax_result; -} - -inline int CommandBarComboBox::accHelpTopic(QString& pszHelpFile, const QVariant& varChild) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&pszHelpFile, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 70, _a); - return qax_result; -} - -inline QVariant CommandBarComboBox::accHitTest(int xLeft, int yTop) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&xLeft, (void*)&yTop}; - qt_metacall(QMetaObject::InvokeMetaMethod, 71, _a); - return qax_result; -} - -inline void CommandBarComboBox::accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight) -{ - void *_a[] = {0, (void*)&pxLeft, (void*)&pyTop, (void*)&pcxWidth, (void*)&pcyHeight}; - qt_metacall(QMetaObject::InvokeMetaMethod, 74, _a); -} - -inline void CommandBarComboBox::accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight, const QVariant& varChild) -{ - void *_a[] = {0, (void*)&pxLeft, (void*)&pyTop, (void*)&pcxWidth, (void*)&pcyHeight, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 75, _a); -} - -inline QVariant CommandBarComboBox::accNavigate(int navDir) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&navDir}; - qt_metacall(QMetaObject::InvokeMetaMethod, 78, _a); - return qax_result; -} - -inline QVariant CommandBarComboBox::accNavigate(int navDir, const QVariant& varStart) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&navDir, (void*)&varStart}; - qt_metacall(QMetaObject::InvokeMetaMethod, 79, _a); - return qax_result; -} - -inline void CommandBarComboBox::accSelect(int flagsSelect) -{ - void *_a[] = {0, (void*)&flagsSelect}; - qt_metacall(QMetaObject::InvokeMetaMethod, 82, _a); -} - -inline void CommandBarComboBox::accSelect(int flagsSelect, const QVariant& varChild) -{ - void *_a[] = {0, (void*)&flagsSelect, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 83, _a); -} - - -inline void ICommandBarButtonEvents::Click(Office::CommandBarButton* Ctrl, bool& CancelDefault) -{ - void *_a[] = {0, (void*)&Ctrl, (void*)&CancelDefault}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline IDispatch* CommandBarButton::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline bool CommandBarButton::BeginGroup() const -{ - QVariant qax_result = property("BeginGroup"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void CommandBarButton::SetBeginGroup(bool value){ setProperty("BeginGroup", QVariant(value)); } - -inline bool CommandBarButton::BuiltIn() const -{ - QVariant qax_result = property("BuiltIn"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline bool CommandBarButton::BuiltInFace() const -{ - QVariant qax_result = property("BuiltInFace"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void CommandBarButton::SetBuiltInFace(bool value){ setProperty("BuiltInFace", QVariant(value)); } - -inline QString CommandBarButton::Caption() const -{ - QVariant qax_result = property("Caption"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarButton::SetCaption(const QString& value){ setProperty("Caption", QVariant(value)); } - -inline IDispatch* CommandBarButton::Control() const -{ - QVariant qax_result = property("Control"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int CommandBarButton::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString CommandBarButton::DescriptionText() const -{ - QVariant qax_result = property("DescriptionText"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarButton::SetDescriptionText(const QString& value){ setProperty("DescriptionText", QVariant(value)); } - -inline bool CommandBarButton::Enabled() const -{ - QVariant qax_result = property("Enabled"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void CommandBarButton::SetEnabled(bool value){ setProperty("Enabled", QVariant(value)); } - -inline int CommandBarButton::FaceId() const -{ - QVariant qax_result = property("FaceId"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBarButton::SetFaceId(int value){ setProperty("FaceId", QVariant(value)); } - -inline int CommandBarButton::Height() const -{ - QVariant qax_result = property("Height"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBarButton::SetHeight(int value){ setProperty("Height", QVariant(value)); } - -inline int CommandBarButton::HelpContextId() const -{ - QVariant qax_result = property("HelpContextId"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBarButton::SetHelpContextId(int value){ setProperty("HelpContextId", QVariant(value)); } - -inline QString CommandBarButton::HelpFile() const -{ - QVariant qax_result = property("HelpFile"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarButton::SetHelpFile(const QString& value){ setProperty("HelpFile", QVariant(value)); } - -inline Office::MsoCommandBarButtonHyperlinkType CommandBarButton::HyperlinkType() const -{ - QVariant qax_result = property("HyperlinkType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoCommandBarButtonHyperlinkType*)qax_result.constData(); -} -inline void CommandBarButton::SetHyperlinkType(Office::MsoCommandBarButtonHyperlinkType value){ setProperty("HyperlinkType", QVariant(value)); } - -inline int CommandBarButton::Id() const -{ - QVariant qax_result = property("Id"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int CommandBarButton::Index() const -{ - QVariant qax_result = property("Index"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int CommandBarButton::InstanceId() const -{ - QVariant qax_result = property("InstanceId"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline bool CommandBarButton::IsPriorityDropped() const -{ - QVariant qax_result = property("IsPriorityDropped"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline int CommandBarButton::Left() const -{ - QVariant qax_result = property("Left"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QPixmap CommandBarButton::Mask() const -{ - QVariant qax_result = property("Mask"); - Q_ASSERT(qax_result.isValid()); - return *(QPixmap*)qax_result.constData(); -} -inline void CommandBarButton::SetMask(const QPixmap& value){ setProperty("Mask", QVariant(value)); } - -inline Office::MsoControlOLEUsage CommandBarButton::OLEUsage() const -{ - QVariant qax_result = property("OLEUsage"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoControlOLEUsage*)qax_result.constData(); -} -inline void CommandBarButton::SetOLEUsage(Office::MsoControlOLEUsage value){ setProperty("OLEUsage", QVariant(value)); } - -inline QString CommandBarButton::OnAction() const -{ - QVariant qax_result = property("OnAction"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarButton::SetOnAction(const QString& value){ setProperty("OnAction", QVariant(value)); } - -inline QString CommandBarButton::Parameter() const -{ - QVariant qax_result = property("Parameter"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarButton::SetParameter(const QString& value){ setProperty("Parameter", QVariant(value)); } - -inline Office::CommandBar* CommandBarButton::Parent() const -{ - Office::CommandBar* qax_pointer = 0; - qRegisterMetaType("CommandBar*", &qax_pointer); - qRegisterMetaType("CommandBar", qax_pointer); - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::CommandBar**)qax_result.constData(); -} - -inline QPixmap CommandBarButton::Picture() const -{ - QVariant qax_result = property("Picture"); - Q_ASSERT(qax_result.isValid()); - return *(QPixmap*)qax_result.constData(); -} -inline void CommandBarButton::SetPicture(const QPixmap& value){ setProperty("Picture", QVariant(value)); } - -inline int CommandBarButton::Priority() const -{ - QVariant qax_result = property("Priority"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBarButton::SetPriority(int value){ setProperty("Priority", QVariant(value)); } - -inline QString CommandBarButton::ShortcutText() const -{ - QVariant qax_result = property("ShortcutText"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarButton::SetShortcutText(const QString& value){ setProperty("ShortcutText", QVariant(value)); } - -inline Office::MsoButtonState CommandBarButton::State() const -{ - QVariant qax_result = property("State"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoButtonState*)qax_result.constData(); -} -inline void CommandBarButton::SetState(Office::MsoButtonState value){ setProperty("State", QVariant(value)); } - -inline Office::MsoButtonStyle CommandBarButton::Style() const -{ - QVariant qax_result = property("Style"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoButtonStyle*)qax_result.constData(); -} -inline void CommandBarButton::SetStyle(Office::MsoButtonStyle value){ setProperty("Style", QVariant(value)); } - -inline QString CommandBarButton::Tag() const -{ - QVariant qax_result = property("Tag"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarButton::SetTag(const QString& value){ setProperty("Tag", QVariant(value)); } - -inline QString CommandBarButton::TooltipText() const -{ - QVariant qax_result = property("TooltipText"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandBarButton::SetTooltipText(const QString& value){ setProperty("TooltipText", QVariant(value)); } - -inline int CommandBarButton::Top() const -{ - QVariant qax_result = property("Top"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoControlType CommandBarButton::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoControlType*)qax_result.constData(); -} - -inline bool CommandBarButton::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void CommandBarButton::SetVisible(bool value){ setProperty("Visible", QVariant(value)); } - -inline int CommandBarButton::Width() const -{ - QVariant qax_result = property("Width"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void CommandBarButton::SetWidth(int value){ setProperty("Width", QVariant(value)); } - -inline int CommandBarButton::accChildCount() const -{ - QVariant qax_result = property("accChildCount"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString CommandBarButton::accDefaultAction() const -{ - QVariant qax_result = property("accDefaultAction"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString CommandBarButton::accDescription() const -{ - QVariant qax_result = property("accDescription"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant CommandBarButton::accFocus() const -{ - QVariant qax_result = property("accFocus"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QString CommandBarButton::accHelp() const -{ - QVariant qax_result = property("accHelp"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString CommandBarButton::accKeyboardShortcut() const -{ - QVariant qax_result = property("accKeyboardShortcut"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant CommandBarButton::accName() const -{ - QVariant qax_result = property("accName"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void CommandBarButton::setAccName(const QVariant& value){ setProperty("accName", QVariant(value)); } - -inline IDispatch* CommandBarButton::accParent() const -{ - QVariant qax_result = property("accParent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QVariant CommandBarButton::accRole() const -{ - QVariant qax_result = property("accRole"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant CommandBarButton::accSelection() const -{ - QVariant qax_result = property("accSelection"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant CommandBarButton::accState() const -{ - QVariant qax_result = property("accState"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QVariant CommandBarButton::accValue() const -{ - QVariant qax_result = property("accValue"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void CommandBarButton::setAccValue(const QVariant& value){ setProperty("accValue", QVariant(value)); } - -inline Office::CommandBarControl* CommandBarButton::Copy() -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBarButton::Copy(const QVariant& Bar) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBarButton::Copy(const QVariant& Bar, const QVariant& Before) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar, (void*)&Before}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); - return qax_result; -} - -inline void CommandBarButton::CopyFace() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); -} - -inline void CommandBarButton::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); -} - -inline void CommandBarButton::Delete(const QVariant& Temporary) -{ - void *_a[] = {0, (void*)&Temporary}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); -} - -inline void CommandBarButton::Execute() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); -} - -inline Office::CommandBarControl* CommandBarButton::Move() -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBarButton::Move(const QVariant& Bar) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar}; - qt_metacall(QMetaObject::InvokeMetaMethod, 23, _a); - return qax_result; -} - -inline Office::CommandBarControl* CommandBarButton::Move(const QVariant& Bar, const QVariant& Before) -{ - Office::CommandBarControl* qax_result = 0; - qRegisterMetaType("CommandBarControl*", &qax_result); - qRegisterMetaType("CommandBarControl", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Bar, (void*)&Before}; - qt_metacall(QMetaObject::InvokeMetaMethod, 24, _a); - return qax_result; -} - -inline void CommandBarButton::PasteFace() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 25, _a); -} - -inline void CommandBarButton::Reserved1() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 26, _a); -} - -inline void CommandBarButton::Reserved2() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 27, _a); -} - -inline void CommandBarButton::Reserved3() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 28, _a); -} - -inline void CommandBarButton::Reserved4() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 29, _a); -} - -inline void CommandBarButton::Reserved5() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 30, _a); -} - -inline void CommandBarButton::Reserved6() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 31, _a); -} - -inline void CommandBarButton::Reserved7() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 32, _a); -} - -inline void CommandBarButton::Reset() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 33, _a); -} - -inline void CommandBarButton::SetFocus() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 40, _a); -} - -inline IDispatch* CommandBarButton::accChild(const QVariant& varChild) -{ - IDispatch* qax_result = 0; - void *_a[] = {(void*)&qax_result, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 58, _a); - return qax_result; -} - -inline void CommandBarButton::accDoDefaultAction() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 63, _a); -} - -inline void CommandBarButton::accDoDefaultAction(const QVariant& varChild) -{ - void *_a[] = {0, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 64, _a); -} - -inline int CommandBarButton::accHelpTopic(QString& pszHelpFile) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&pszHelpFile}; - qt_metacall(QMetaObject::InvokeMetaMethod, 67, _a); - return qax_result; -} - -inline int CommandBarButton::accHelpTopic(QString& pszHelpFile, const QVariant& varChild) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&pszHelpFile, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 68, _a); - return qax_result; -} - -inline QVariant CommandBarButton::accHitTest(int xLeft, int yTop) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&xLeft, (void*)&yTop}; - qt_metacall(QMetaObject::InvokeMetaMethod, 69, _a); - return qax_result; -} - -inline void CommandBarButton::accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight) -{ - void *_a[] = {0, (void*)&pxLeft, (void*)&pyTop, (void*)&pcxWidth, (void*)&pcyHeight}; - qt_metacall(QMetaObject::InvokeMetaMethod, 72, _a); -} - -inline void CommandBarButton::accLocation(int& pxLeft, int& pyTop, int& pcxWidth, int& pcyHeight, const QVariant& varChild) -{ - void *_a[] = {0, (void*)&pxLeft, (void*)&pyTop, (void*)&pcxWidth, (void*)&pcyHeight, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 73, _a); -} - -inline QVariant CommandBarButton::accNavigate(int navDir) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&navDir}; - qt_metacall(QMetaObject::InvokeMetaMethod, 76, _a); - return qax_result; -} - -inline QVariant CommandBarButton::accNavigate(int navDir, const QVariant& varStart) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&navDir, (void*)&varStart}; - qt_metacall(QMetaObject::InvokeMetaMethod, 77, _a); - return qax_result; -} - -inline void CommandBarButton::accSelect(int flagsSelect) -{ - void *_a[] = {0, (void*)&flagsSelect}; - qt_metacall(QMetaObject::InvokeMetaMethod, 80, _a); -} - -inline void CommandBarButton::accSelect(int flagsSelect, const QVariant& varChild) -{ - void *_a[] = {0, (void*)&flagsSelect, (void*)&varChild}; - qt_metacall(QMetaObject::InvokeMetaMethod, 81, _a); -} - - -inline IDispatch* WebPageFont::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int WebPageFont::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString WebPageFont::FixedWidthFont() const -{ - QVariant qax_result = property("FixedWidthFont"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void WebPageFont::SetFixedWidthFont(const QString& value){ setProperty("FixedWidthFont", QVariant(value)); } - -inline double WebPageFont::FixedWidthFontSize() const -{ - QVariant qax_result = property("FixedWidthFontSize"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void WebPageFont::SetFixedWidthFontSize(double value){ setProperty("FixedWidthFontSize", QVariant(value)); } - -inline QString WebPageFont::ProportionalFont() const -{ - QVariant qax_result = property("ProportionalFont"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void WebPageFont::SetProportionalFont(const QString& value){ setProperty("ProportionalFont", QVariant(value)); } - -inline double WebPageFont::ProportionalFontSize() const -{ - QVariant qax_result = property("ProportionalFontSize"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void WebPageFont::SetProportionalFontSize(double value){ setProperty("ProportionalFontSize", QVariant(value)); } - - -inline IDispatch* WebPageFonts::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int WebPageFonts::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int WebPageFonts::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IUnknown* WebPageFonts::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::WebPageFont* WebPageFonts::Item(Office::MsoCharacterSet Index) -{ - Office::WebPageFont* qax_result = 0; - qRegisterMetaType("WebPageFont*", &qax_result); - qRegisterMetaType("WebPageFont", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - - -inline IDispatch* HTMLProjectItem::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int HTMLProjectItem::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline bool HTMLProjectItem::IsOpen() const -{ - QVariant qax_result = property("IsOpen"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline QString HTMLProjectItem::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline IDispatch* HTMLProjectItem::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString HTMLProjectItem::Text() const -{ - QVariant qax_result = property("Text"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void HTMLProjectItem::SetText(const QString& value){ setProperty("Text", QVariant(value)); } - -inline void HTMLProjectItem::LoadFromFile(const QString& FileName) -{ - void *_a[] = {0, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void HTMLProjectItem::Open() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void HTMLProjectItem::Open(Office::MsoHTMLProjectOpen OpenKind) -{ - void *_a[] = {0, (void*)&OpenKind}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void HTMLProjectItem::SaveCopyAs(const QString& FileName) -{ - void *_a[] = {0, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - - -inline IDispatch* HTMLProjectItems::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int HTMLProjectItems::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int HTMLProjectItems::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* HTMLProjectItems::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* HTMLProjectItems::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::HTMLProjectItem* HTMLProjectItems::Item(QVariant& Index) -{ - Office::HTMLProjectItem* qax_result = 0; - qRegisterMetaType("HTMLProjectItem*", &qax_result); - qRegisterMetaType("HTMLProjectItem", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - - -inline IDispatch* HTMLProject::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int HTMLProject::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::HTMLProjectItems* HTMLProject::HTMLProjectItems() const -{ - Office::HTMLProjectItems* qax_pointer = 0; - qRegisterMetaType("HTMLProjectItems*", &qax_pointer); - qRegisterMetaType("HTMLProjectItems", qax_pointer); - QVariant qax_result = property("HTMLProjectItems"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::HTMLProjectItems**)qax_result.constData(); -} - -inline IDispatch* HTMLProject::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoHTMLProjectState HTMLProject::State() const -{ - QVariant qax_result = property("State"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoHTMLProjectState*)qax_result.constData(); -} - -inline void HTMLProject::Open() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void HTMLProject::Open(Office::MsoHTMLProjectOpen OpenKind) -{ - void *_a[] = {0, (void*)&OpenKind}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void HTMLProject::RefreshDocument() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void HTMLProject::RefreshDocument(bool Refresh) -{ - void *_a[] = {0, (void*)&Refresh}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void HTMLProject::RefreshProject() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline void HTMLProject::RefreshProject(bool Refresh) -{ - void *_a[] = {0, (void*)&Refresh}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - - -inline IDispatch* MsoDebugOptions::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int MsoDebugOptions::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int MsoDebugOptions::FeatureReports() const -{ - QVariant qax_result = property("FeatureReports"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void MsoDebugOptions::SetFeatureReports(int value){ setProperty("FeatureReports", QVariant(value)); } - -inline bool MsoDebugOptions::OutputToDebugger() const -{ - QVariant qax_result = property("OutputToDebugger"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void MsoDebugOptions::SetOutputToDebugger(bool value){ setProperty("OutputToDebugger", QVariant(value)); } - -inline bool MsoDebugOptions::OutputToFile() const -{ - QVariant qax_result = property("OutputToFile"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void MsoDebugOptions::SetOutputToFile(bool value){ setProperty("OutputToFile", QVariant(value)); } - -inline bool MsoDebugOptions::OutputToMessageBox() const -{ - QVariant qax_result = property("OutputToMessageBox"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void MsoDebugOptions::SetOutputToMessageBox(bool value){ setProperty("OutputToMessageBox", QVariant(value)); } - - -inline IDispatch* FileDialogSelectedItems::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int FileDialogSelectedItems::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int FileDialogSelectedItems::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* FileDialogSelectedItems::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* FileDialogSelectedItems::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline QString FileDialogSelectedItems::Item(int Index) -{ - QString qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - - -inline IDispatch* FileDialogFilter::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int FileDialogFilter::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString FileDialogFilter::Description() const -{ - QVariant qax_result = property("Description"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString FileDialogFilter::Extensions() const -{ - QVariant qax_result = property("Extensions"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline IDispatch* FileDialogFilter::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - - -inline IDispatch* FileDialogFilters::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int FileDialogFilters::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int FileDialogFilters::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* FileDialogFilters::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* FileDialogFilters::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::FileDialogFilter* FileDialogFilters::Add(const QString& Description, const QString& Extensions) -{ - Office::FileDialogFilter* qax_result = 0; - qRegisterMetaType("FileDialogFilter*", &qax_result); - qRegisterMetaType("FileDialogFilter", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Description, (void*)&Extensions}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline Office::FileDialogFilter* FileDialogFilters::Add(const QString& Description, const QString& Extensions, const QVariant& Position) -{ - Office::FileDialogFilter* qax_result = 0; - qRegisterMetaType("FileDialogFilter*", &qax_result); - qRegisterMetaType("FileDialogFilter", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Description, (void*)&Extensions, (void*)&Position}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline void FileDialogFilters::Clear() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void FileDialogFilters::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void FileDialogFilters::Delete(const QVariant& filter) -{ - void *_a[] = {0, (void*)&filter}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline Office::FileDialogFilter* FileDialogFilters::Item(int Index) -{ - Office::FileDialogFilter* qax_result = 0; - qRegisterMetaType("FileDialogFilter*", &qax_result); - qRegisterMetaType("FileDialogFilter", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); - return qax_result; -} - - -inline bool FileDialog::AllowMultiSelect() const -{ - QVariant qax_result = property("AllowMultiSelect"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void FileDialog::SetAllowMultiSelect(bool value){ setProperty("AllowMultiSelect", QVariant(value)); } - -inline IDispatch* FileDialog::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString FileDialog::ButtonName() const -{ - QVariant qax_result = property("ButtonName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void FileDialog::SetButtonName(const QString& value){ setProperty("ButtonName", QVariant(value)); } - -inline int FileDialog::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoFileDialogType FileDialog::DialogType() const -{ - QVariant qax_result = property("DialogType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoFileDialogType*)qax_result.constData(); -} - -inline int FileDialog::FilterIndex() const -{ - QVariant qax_result = property("FilterIndex"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void FileDialog::SetFilterIndex(int value){ setProperty("FilterIndex", QVariant(value)); } - -inline Office::FileDialogFilters* FileDialog::Filters() const -{ - Office::FileDialogFilters* qax_pointer = 0; - qRegisterMetaType("FileDialogFilters*", &qax_pointer); - qRegisterMetaType("FileDialogFilters", qax_pointer); - QVariant qax_result = property("Filters"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::FileDialogFilters**)qax_result.constData(); -} - -inline QString FileDialog::InitialFileName() const -{ - QVariant qax_result = property("InitialFileName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void FileDialog::SetInitialFileName(const QString& value){ setProperty("InitialFileName", QVariant(value)); } - -inline Office::MsoFileDialogView FileDialog::InitialView() const -{ - QVariant qax_result = property("InitialView"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoFileDialogView*)qax_result.constData(); -} -inline void FileDialog::SetInitialView(Office::MsoFileDialogView value){ setProperty("InitialView", QVariant(value)); } - -inline QString FileDialog::Item() const -{ - QVariant qax_result = property("Item"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline IDispatch* FileDialog::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::FileDialogSelectedItems* FileDialog::SelectedItems() const -{ - Office::FileDialogSelectedItems* qax_pointer = 0; - qRegisterMetaType("FileDialogSelectedItems*", &qax_pointer); - qRegisterMetaType("FileDialogSelectedItems", qax_pointer); - QVariant qax_result = property("SelectedItems"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::FileDialogSelectedItems**)qax_result.constData(); -} - -inline QString FileDialog::Title() const -{ - QVariant qax_result = property("Title"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void FileDialog::SetTitle(const QString& value){ setProperty("Title", QVariant(value)); } - -inline void FileDialog::Execute() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline int FileDialog::Show() -{ - int qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); - return qax_result; -} - - -inline IDispatch* SignatureSet::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int SignatureSet::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int SignatureSet::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* SignatureSet::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* SignatureSet::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::Signature* SignatureSet::Add() -{ - Office::Signature* qax_result = 0; - qRegisterMetaType("Signature*", &qax_result); - qRegisterMetaType("Signature", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline void SignatureSet::Commit() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline Office::Signature* SignatureSet::Item(int iSig) -{ - Office::Signature* qax_result = 0; - qRegisterMetaType("Signature*", &qax_result); - qRegisterMetaType("Signature", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&iSig}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - - -inline IDispatch* Signature::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline bool Signature::AttachCertificate() const -{ - QVariant qax_result = property("AttachCertificate"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void Signature::SetAttachCertificate(bool value){ setProperty("AttachCertificate", QVariant(value)); } - -inline int Signature::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QVariant Signature::ExpireDate() const -{ - QVariant qax_result = property("ExpireDate"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline bool Signature::IsCertificateExpired() const -{ - QVariant qax_result = property("IsCertificateExpired"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline bool Signature::IsCertificateRevoked() const -{ - QVariant qax_result = property("IsCertificateRevoked"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline bool Signature::IsValid() const -{ - QVariant qax_result = property("IsValid"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline QString Signature::Issuer() const -{ - QVariant qax_result = property("Issuer"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline IDispatch* Signature::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QVariant Signature::SignDate() const -{ - QVariant qax_result = property("SignDate"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QString Signature::Signer() const -{ - QVariant qax_result = property("Signer"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline void Signature::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline IDispatch* IMsoEnvelopeVB::CommandBars() const -{ - QVariant qax_result = property("CommandBars"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString IMsoEnvelopeVB::Introduction() const -{ - QVariant qax_result = property("Introduction"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void IMsoEnvelopeVB::SetIntroduction(const QString& value){ setProperty("Introduction", QVariant(value)); } - -inline IDispatch* IMsoEnvelopeVB::Item() const -{ - QVariant qax_result = property("Item"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IDispatch* IMsoEnvelopeVB::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - - -inline IDispatch* MsoEnvelope::CommandBars() const -{ - QVariant qax_result = property("CommandBars"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString MsoEnvelope::Introduction() const -{ - QVariant qax_result = property("Introduction"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void MsoEnvelope::SetIntroduction(const QString& value){ setProperty("Introduction", QVariant(value)); } - -inline IDispatch* MsoEnvelope::Item() const -{ - QVariant qax_result = property("Item"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IDispatch* MsoEnvelope::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - - -inline IDispatch* FileTypes::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int FileTypes::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int FileTypes::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IUnknown* FileTypes::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline void FileTypes::Add(Office::MsoFileType FileType) -{ - void *_a[] = {0, (void*)&FileType}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline MsoFileType FileTypes::Item(int Index) -{ - MsoFileType qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline void FileTypes::Remove(int Index) -{ - void *_a[] = {0, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - - -inline IDispatch* SearchFolders::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int SearchFolders::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int SearchFolders::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IUnknown* SearchFolders::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline void SearchFolders::Add(Office::ScopeFolder* ScopeFolder) -{ - void *_a[] = {0, (void*)&ScopeFolder}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline Office::ScopeFolder* SearchFolders::Item(int Index) -{ - Office::ScopeFolder* qax_result = 0; - qRegisterMetaType("ScopeFolder*", &qax_result); - qRegisterMetaType("ScopeFolder", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline void SearchFolders::Remove(int Index) -{ - void *_a[] = {0, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - - -inline IDispatch* ScopeFolders::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int ScopeFolders::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int ScopeFolders::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IUnknown* ScopeFolders::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::ScopeFolder* ScopeFolders::Item(int Index) -{ - Office::ScopeFolder* qax_result = 0; - qRegisterMetaType("ScopeFolder*", &qax_result); - qRegisterMetaType("ScopeFolder", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - - -inline IDispatch* ScopeFolder::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int ScopeFolder::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString ScopeFolder::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString ScopeFolder::Path() const -{ - QVariant qax_result = property("Path"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline Office::ScopeFolders* ScopeFolder::ScopeFolders() const -{ - Office::ScopeFolders* qax_pointer = 0; - qRegisterMetaType("ScopeFolders*", &qax_pointer); - qRegisterMetaType("ScopeFolders", qax_pointer); - QVariant qax_result = property("ScopeFolders"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::ScopeFolders**)qax_result.constData(); -} - -inline void ScopeFolder::AddToSearchFolders() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline IDispatch* SearchScope::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int SearchScope::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::ScopeFolder* SearchScope::ScopeFolder() const -{ - Office::ScopeFolder* qax_pointer = 0; - qRegisterMetaType("ScopeFolder*", &qax_pointer); - qRegisterMetaType("ScopeFolder", qax_pointer); - QVariant qax_result = property("ScopeFolder"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::ScopeFolder**)qax_result.constData(); -} - -inline Office::MsoSearchIn SearchScope::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoSearchIn*)qax_result.constData(); -} - - -inline IDispatch* SearchScopes::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int SearchScopes::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int SearchScopes::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IUnknown* SearchScopes::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::SearchScope* SearchScopes::Item(int Index) -{ - Office::SearchScope* qax_result = 0; - qRegisterMetaType("SearchScope*", &qax_result); - qRegisterMetaType("SearchScope", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - - -inline IDispatch* IMsoDiagram::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoTriState IMsoDiagram::AutoFormat() const -{ - QVariant qax_result = property("AutoFormat"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void IMsoDiagram::SetAutoFormat(Office::MsoTriState value){ setProperty("AutoFormat", QVariant(value)); } - -inline Office::MsoTriState IMsoDiagram::AutoLayout() const -{ - QVariant qax_result = property("AutoLayout"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void IMsoDiagram::SetAutoLayout(Office::MsoTriState value){ setProperty("AutoLayout", QVariant(value)); } - -inline int IMsoDiagram::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::DiagramNodes* IMsoDiagram::Nodes() const -{ - Office::DiagramNodes* qax_pointer = 0; - qRegisterMetaType("DiagramNodes*", &qax_pointer); - qRegisterMetaType("DiagramNodes", qax_pointer); - QVariant qax_result = property("Nodes"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::DiagramNodes**)qax_result.constData(); -} - -inline IDispatch* IMsoDiagram::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoTriState IMsoDiagram::Reverse() const -{ - QVariant qax_result = property("Reverse"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void IMsoDiagram::SetReverse(Office::MsoTriState value){ setProperty("Reverse", QVariant(value)); } - -inline Office::MsoDiagramType IMsoDiagram::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoDiagramType*)qax_result.constData(); -} - -inline void IMsoDiagram::Convert(Office::MsoDiagramType Type) -{ - void *_a[] = {0, (void*)&Type}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void IMsoDiagram::FitText() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - - -inline IDispatch* DiagramNodes::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int DiagramNodes::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int DiagramNodes::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* DiagramNodes::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* DiagramNodes::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::DiagramNode* DiagramNodes::Item(const QVariant& Index) -{ - Office::DiagramNode* qax_result = 0; - qRegisterMetaType("DiagramNode*", &qax_result); - qRegisterMetaType("DiagramNode", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline void DiagramNodes::SelectAll() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - - -inline IDispatch* DiagramNodeChildren::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int DiagramNodeChildren::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int DiagramNodeChildren::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::DiagramNode* DiagramNodeChildren::FirstChild() const -{ - Office::DiagramNode* qax_pointer = 0; - qRegisterMetaType("DiagramNode*", &qax_pointer); - qRegisterMetaType("DiagramNode", qax_pointer); - QVariant qax_result = property("FirstChild"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::DiagramNode**)qax_result.constData(); -} - -inline Office::DiagramNode* DiagramNodeChildren::LastChild() const -{ - Office::DiagramNode* qax_pointer = 0; - qRegisterMetaType("DiagramNode*", &qax_pointer); - qRegisterMetaType("DiagramNode", qax_pointer); - QVariant qax_result = property("LastChild"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::DiagramNode**)qax_result.constData(); -} - -inline IDispatch* DiagramNodeChildren::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* DiagramNodeChildren::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::DiagramNode* DiagramNodeChildren::AddNode() -{ - Office::DiagramNode* qax_result = 0; - qRegisterMetaType("DiagramNode*", &qax_result); - qRegisterMetaType("DiagramNode", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline Office::DiagramNode* DiagramNodeChildren::AddNode(const QVariant& Index) -{ - Office::DiagramNode* qax_result = 0; - qRegisterMetaType("DiagramNode*", &qax_result); - qRegisterMetaType("DiagramNode", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline Office::DiagramNode* DiagramNodeChildren::AddNode(const QVariant& Index, Office::MsoDiagramNodeType NodeType) -{ - Office::DiagramNode* qax_result = 0; - qRegisterMetaType("DiagramNode*", &qax_result); - qRegisterMetaType("DiagramNode", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index, (void*)&NodeType}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline Office::DiagramNode* DiagramNodeChildren::Item(const QVariant& Index) -{ - Office::DiagramNode* qax_result = 0; - qRegisterMetaType("DiagramNode*", &qax_result); - qRegisterMetaType("DiagramNode", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - -inline void DiagramNodeChildren::SelectAll() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - - -inline IDispatch* DiagramNode::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::DiagramNodeChildren* DiagramNode::Children() const -{ - Office::DiagramNodeChildren* qax_pointer = 0; - qRegisterMetaType("DiagramNodeChildren*", &qax_pointer); - qRegisterMetaType("DiagramNodeChildren", qax_pointer); - QVariant qax_result = property("Children"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::DiagramNodeChildren**)qax_result.constData(); -} - -inline int DiagramNode::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::IMsoDiagram* DiagramNode::Diagram() const -{ - Office::IMsoDiagram* qax_pointer = 0; - qRegisterMetaType("IMsoDiagram*", &qax_pointer); - qRegisterMetaType("IMsoDiagram", qax_pointer); - QVariant qax_result = property("Diagram"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::IMsoDiagram**)qax_result.constData(); -} - -inline Office::MsoOrgChartLayoutType DiagramNode::Layout() const -{ - QVariant qax_result = property("Layout"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoOrgChartLayoutType*)qax_result.constData(); -} -inline void DiagramNode::SetLayout(Office::MsoOrgChartLayoutType value){ setProperty("Layout", QVariant(value)); } - -inline IDispatch* DiagramNode::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::DiagramNode* DiagramNode::Root() const -{ - Office::DiagramNode* qax_pointer = 0; - qRegisterMetaType("DiagramNode*", &qax_pointer); - qRegisterMetaType("DiagramNode", qax_pointer); - QVariant qax_result = property("Root"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::DiagramNode**)qax_result.constData(); -} - -inline Office::Shape* DiagramNode::Shape() const -{ - Office::Shape* qax_pointer = 0; - qRegisterMetaType("Shape*", &qax_pointer); - qRegisterMetaType("Shape", qax_pointer); - QVariant qax_result = property("Shape"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::Shape**)qax_result.constData(); -} - -inline Office::Shape* DiagramNode::TextShape() const -{ - Office::Shape* qax_pointer = 0; - qRegisterMetaType("Shape*", &qax_pointer); - qRegisterMetaType("Shape", qax_pointer); - QVariant qax_result = property("TextShape"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::Shape**)qax_result.constData(); -} - -inline Office::DiagramNode* DiagramNode::AddNode() -{ - Office::DiagramNode* qax_result = 0; - qRegisterMetaType("DiagramNode*", &qax_result); - qRegisterMetaType("DiagramNode", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline Office::DiagramNode* DiagramNode::AddNode(Office::MsoRelativeNodePosition Pos) -{ - Office::DiagramNode* qax_result = 0; - qRegisterMetaType("DiagramNode*", &qax_result); - qRegisterMetaType("DiagramNode", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Pos}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline Office::DiagramNode* DiagramNode::AddNode(Office::MsoRelativeNodePosition Pos, Office::MsoDiagramNodeType NodeType) -{ - Office::DiagramNode* qax_result = 0; - qRegisterMetaType("DiagramNode*", &qax_result); - qRegisterMetaType("DiagramNode", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Pos, (void*)&NodeType}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline Office::DiagramNode* DiagramNode::CloneNode(bool CopyChildren, Office::DiagramNode* TargetNode) -{ - Office::DiagramNode* qax_result = 0; - qRegisterMetaType("DiagramNode*", &qax_result); - qRegisterMetaType("DiagramNode", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&CopyChildren, (void*)&TargetNode}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - -inline Office::DiagramNode* DiagramNode::CloneNode(bool CopyChildren, Office::DiagramNode* TargetNode, Office::MsoRelativeNodePosition Pos) -{ - Office::DiagramNode* qax_result = 0; - qRegisterMetaType("DiagramNode*", &qax_result); - qRegisterMetaType("DiagramNode", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&CopyChildren, (void*)&TargetNode, (void*)&Pos}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline void DiagramNode::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void DiagramNode::MoveNode(Office::DiagramNode* TargetNode, Office::MsoRelativeNodePosition Pos) -{ - void *_a[] = {0, (void*)&TargetNode, (void*)&Pos}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline Office::DiagramNode* DiagramNode::NextNode() -{ - Office::DiagramNode* qax_result = 0; - qRegisterMetaType("DiagramNode*", &qax_result); - qRegisterMetaType("DiagramNode", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); - return qax_result; -} - -inline Office::DiagramNode* DiagramNode::PrevNode() -{ - Office::DiagramNode* qax_result = 0; - qRegisterMetaType("DiagramNode*", &qax_result); - qRegisterMetaType("DiagramNode", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); - return qax_result; -} - -inline void DiagramNode::ReplaceNode(Office::DiagramNode* TargetNode) -{ - void *_a[] = {0, (void*)&TargetNode}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); -} - -inline void DiagramNode::SwapNode(Office::DiagramNode* TargetNode) -{ - void *_a[] = {0, (void*)&TargetNode}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); -} - -inline void DiagramNode::SwapNode(Office::DiagramNode* TargetNode, bool SwapChildren) -{ - void *_a[] = {0, (void*)&TargetNode, (void*)&SwapChildren}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); -} - -inline void DiagramNode::TransferChildren(Office::DiagramNode* ReceivingNode) -{ - void *_a[] = {0, (void*)&ReceivingNode}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); -} - - -inline IDispatch* CanvasShapes::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::Shape* CanvasShapes::Background() const -{ - Office::Shape* qax_pointer = 0; - qRegisterMetaType("Shape*", &qax_pointer); - qRegisterMetaType("Shape", qax_pointer); - QVariant qax_result = property("Background"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::Shape**)qax_result.constData(); -} - -inline int CanvasShapes::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int CanvasShapes::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* CanvasShapes::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* CanvasShapes::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::Shape* CanvasShapes::AddCallout(Office::MsoCalloutType Type, double Left, double Top, double Width, double Height) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline Office::Shape* CanvasShapes::AddConnector(Office::MsoConnectorType Type, double BeginX, double BeginY, double EndX, double EndY) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&BeginX, (void*)&BeginY, (void*)&EndX, (void*)&EndY}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline Office::Shape* CanvasShapes::AddCurve(const QVariant& SafeArrayOfPoints) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&SafeArrayOfPoints}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline Office::Shape* CanvasShapes::AddLabel(Office::MsoTextOrientation Orientation, double Left, double Top, double Width, double Height) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Orientation, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - -inline Office::Shape* CanvasShapes::AddLine(double BeginX, double BeginY, double EndX, double EndY) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&BeginX, (void*)&BeginY, (void*)&EndX, (void*)&EndY}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline Office::Shape* CanvasShapes::AddPicture(const QString& FileName, Office::MsoTriState LinkToFile, Office::MsoTriState SaveWithDocument, double Left, double Top) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&LinkToFile, (void*)&SaveWithDocument, (void*)&Left, (void*)&Top}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); - return qax_result; -} - -inline Office::Shape* CanvasShapes::AddPicture(const QString& FileName, Office::MsoTriState LinkToFile, Office::MsoTriState SaveWithDocument, double Left, double Top, double Width) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&LinkToFile, (void*)&SaveWithDocument, (void*)&Left, (void*)&Top, (void*)&Width}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); - return qax_result; -} - -inline Office::Shape* CanvasShapes::AddPicture(const QString& FileName, Office::MsoTriState LinkToFile, Office::MsoTriState SaveWithDocument, double Left, double Top, double Width, double Height) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&LinkToFile, (void*)&SaveWithDocument, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); - return qax_result; -} - -inline Office::Shape* CanvasShapes::AddPolyline(const QVariant& SafeArrayOfPoints) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&SafeArrayOfPoints}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); - return qax_result; -} - -inline Office::Shape* CanvasShapes::AddShape(Office::MsoAutoShapeType Type, double Left, double Top, double Width, double Height) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); - return qax_result; -} - -inline Office::Shape* CanvasShapes::AddTextEffect(Office::MsoPresetTextEffect PresetTextEffect, const QString& Text, const QString& FontName, double FontSize, Office::MsoTriState FontBold, Office::MsoTriState FontItalic, double Left, double Top) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&PresetTextEffect, (void*)&Text, (void*)&FontName, (void*)&FontSize, (void*)&FontBold, (void*)&FontItalic, (void*)&Left, (void*)&Top}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); - return qax_result; -} - -inline Office::Shape* CanvasShapes::AddTextbox(Office::MsoTextOrientation Orientation, double Left, double Top, double Width, double Height) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Orientation, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); - return qax_result; -} - -inline Office::FreeformBuilder* CanvasShapes::BuildFreeform(Office::MsoEditingType EditingType, double X1, double Y1) -{ - Office::FreeformBuilder* qax_result = 0; - qRegisterMetaType("FreeformBuilder*", &qax_result); - qRegisterMetaType("FreeformBuilder", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&EditingType, (void*)&X1, (void*)&Y1}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); - return qax_result; -} - -inline Office::Shape* CanvasShapes::Item(const QVariant& Index) -{ - Office::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); - return qax_result; -} - -inline Office::ShapeRange* CanvasShapes::Range(const QVariant& Index) -{ - Office::ShapeRange* qax_result = 0; - qRegisterMetaType("ShapeRange*", &qax_result); - qRegisterMetaType("ShapeRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); - return qax_result; -} - -inline void CanvasShapes::SelectAll() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); -} - - -inline IDispatch* OfficeDataSourceObject::Columns() const -{ - QVariant qax_result = property("Columns"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString OfficeDataSourceObject::ConnectString() const -{ - QVariant qax_result = property("ConnectString"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void OfficeDataSourceObject::SetConnectString(const QString& value){ setProperty("ConnectString", QVariant(value)); } - -inline QString OfficeDataSourceObject::DataSource() const -{ - QVariant qax_result = property("DataSource"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void OfficeDataSourceObject::SetDataSource(const QString& value){ setProperty("DataSource", QVariant(value)); } - -inline IDispatch* OfficeDataSourceObject::Filters() const -{ - QVariant qax_result = property("Filters"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int OfficeDataSourceObject::RowCount() const -{ - QVariant qax_result = property("RowCount"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString OfficeDataSourceObject::Table() const -{ - QVariant qax_result = property("Table"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void OfficeDataSourceObject::SetTable(const QString& value){ setProperty("Table", QVariant(value)); } - -inline void OfficeDataSourceObject::ApplyFilter() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline int OfficeDataSourceObject::Move(Office::MsoMoveRow MsoMoveRow) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&MsoMoveRow}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline int OfficeDataSourceObject::Move(Office::MsoMoveRow MsoMoveRow, int RowNbr) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&MsoMoveRow, (void*)&RowNbr}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline void OfficeDataSourceObject::Open() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void OfficeDataSourceObject::Open(const QString& bstrSrc) -{ - void *_a[] = {0, (void*)&bstrSrc}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline void OfficeDataSourceObject::Open(const QString& bstrSrc, const QString& bstrConnect) -{ - void *_a[] = {0, (void*)&bstrSrc, (void*)&bstrConnect}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void OfficeDataSourceObject::Open(const QString& bstrSrc, const QString& bstrConnect, const QString& bstrTable) -{ - void *_a[] = {0, (void*)&bstrSrc, (void*)&bstrConnect, (void*)&bstrTable}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline void OfficeDataSourceObject::Open(const QString& bstrSrc, const QString& bstrConnect, const QString& bstrTable, int fOpenExclusive) -{ - void *_a[] = {0, (void*)&bstrSrc, (void*)&bstrConnect, (void*)&bstrTable, (void*)&fOpenExclusive}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); -} - -inline void OfficeDataSourceObject::Open(const QString& bstrSrc, const QString& bstrConnect, const QString& bstrTable, int fOpenExclusive, int fNeverPrompt) -{ - void *_a[] = {0, (void*)&bstrSrc, (void*)&bstrConnect, (void*)&bstrTable, (void*)&fOpenExclusive, (void*)&fNeverPrompt}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); -} - -inline void OfficeDataSourceObject::SetSortOrder(const QString& SortField1) -{ - void *_a[] = {0, (void*)&SortField1}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); -} - -inline void OfficeDataSourceObject::SetSortOrder(const QString& SortField1, bool SortAscending1) -{ - void *_a[] = {0, (void*)&SortField1, (void*)&SortAscending1}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); -} - -inline void OfficeDataSourceObject::SetSortOrder(const QString& SortField1, bool SortAscending1, const QString& SortField2) -{ - void *_a[] = {0, (void*)&SortField1, (void*)&SortAscending1, (void*)&SortField2}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); -} - -inline void OfficeDataSourceObject::SetSortOrder(const QString& SortField1, bool SortAscending1, const QString& SortField2, bool SortAscending2) -{ - void *_a[] = {0, (void*)&SortField1, (void*)&SortAscending1, (void*)&SortField2, (void*)&SortAscending2}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); -} - -inline void OfficeDataSourceObject::SetSortOrder(const QString& SortField1, bool SortAscending1, const QString& SortField2, bool SortAscending2, const QString& SortField3) -{ - void *_a[] = {0, (void*)&SortField1, (void*)&SortAscending1, (void*)&SortField2, (void*)&SortAscending2, (void*)&SortField3}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); -} - -inline void OfficeDataSourceObject::SetSortOrder(const QString& SortField1, bool SortAscending1, const QString& SortField2, bool SortAscending2, const QString& SortField3, bool SortAscending3) -{ - void *_a[] = {0, (void*)&SortField1, (void*)&SortAscending1, (void*)&SortField2, (void*)&SortAscending2, (void*)&SortField3, (void*)&SortAscending3}; - qt_metacall(QMetaObject::InvokeMetaMethod, 23, _a); -} - - -inline IDispatch* ODSOColumn::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int ODSOColumn::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int ODSOColumn::Index() const -{ - QVariant qax_result = property("Index"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString ODSOColumn::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline IDispatch* ODSOColumn::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString ODSOColumn::Value() const -{ - QVariant qax_result = property("Value"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - - -inline IDispatch* ODSOColumns::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int ODSOColumns::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int ODSOColumns::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* ODSOColumns::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IDispatch* ODSOColumns::Item(const QVariant& varIndex) -{ - IDispatch* qax_result = 0; - void *_a[] = {(void*)&qax_result, (void*)&varIndex}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - - -inline IDispatch* ODSOFilter::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString ODSOFilter::Column() const -{ - QVariant qax_result = property("Column"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void ODSOFilter::SetColumn(const QString& value){ setProperty("Column", QVariant(value)); } - -inline QString ODSOFilter::CompareTo() const -{ - QVariant qax_result = property("CompareTo"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void ODSOFilter::SetCompareTo(const QString& value){ setProperty("CompareTo", QVariant(value)); } - -inline Office::MsoFilterComparison ODSOFilter::Comparison() const -{ - QVariant qax_result = property("Comparison"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoFilterComparison*)qax_result.constData(); -} -inline void ODSOFilter::SetComparison(Office::MsoFilterComparison value){ setProperty("Comparison", QVariant(value)); } - -inline Office::MsoFilterConjunction ODSOFilter::Conjunction() const -{ - QVariant qax_result = property("Conjunction"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoFilterConjunction*)qax_result.constData(); -} -inline void ODSOFilter::SetConjunction(Office::MsoFilterConjunction value){ setProperty("Conjunction", QVariant(value)); } - -inline int ODSOFilter::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int ODSOFilter::Index() const -{ - QVariant qax_result = property("Index"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* ODSOFilter::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - - -inline IDispatch* ODSOFilters::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int ODSOFilters::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int ODSOFilters::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* ODSOFilters::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline void ODSOFilters::Add(const QString& Column, Office::MsoFilterComparison Comparison, Office::MsoFilterConjunction Conjunction) -{ - void *_a[] = {0, (void*)&Column, (void*)&Comparison, (void*)&Conjunction}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void ODSOFilters::Add(const QString& Column, Office::MsoFilterComparison Comparison, Office::MsoFilterConjunction Conjunction, const QString& bstrCompareTo) -{ - void *_a[] = {0, (void*)&Column, (void*)&Comparison, (void*)&Conjunction, (void*)&bstrCompareTo}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void ODSOFilters::Add(const QString& Column, Office::MsoFilterComparison Comparison, Office::MsoFilterConjunction Conjunction, const QString& bstrCompareTo, bool DeferUpdate) -{ - void *_a[] = {0, (void*)&Column, (void*)&Comparison, (void*)&Conjunction, (void*)&bstrCompareTo, (void*)&DeferUpdate}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void ODSOFilters::Delete(int Index) -{ - void *_a[] = {0, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void ODSOFilters::Delete(int Index, bool DeferUpdate) -{ - void *_a[] = {0, (void*)&Index, (void*)&DeferUpdate}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline IDispatch* ODSOFilters::Item(int Index) -{ - IDispatch* qax_result = 0; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); - return qax_result; -} - - -inline IDispatch* NewFile::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int NewFile::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline bool NewFile::Add(const QString& FileName) -{ - bool qax_result; - void *_a[] = {(void*)&qax_result, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline bool NewFile::Add(const QString& FileName, const QVariant& Section) -{ - bool qax_result; - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&Section}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline bool NewFile::Add(const QString& FileName, const QVariant& Section, const QVariant& DisplayName) -{ - bool qax_result; - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&Section, (void*)&DisplayName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline bool NewFile::Add(const QString& FileName, const QVariant& Section, const QVariant& DisplayName, const QVariant& Action) -{ - bool qax_result; - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&Section, (void*)&DisplayName, (void*)&Action}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - -inline bool NewFile::Remove(const QString& FileName) -{ - bool qax_result; - void *_a[] = {(void*)&qax_result, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline bool NewFile::Remove(const QString& FileName, const QVariant& Section) -{ - bool qax_result; - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&Section}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); - return qax_result; -} - -inline bool NewFile::Remove(const QString& FileName, const QVariant& Section, const QVariant& DisplayName) -{ - bool qax_result; - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&Section, (void*)&DisplayName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); - return qax_result; -} - -inline bool NewFile::Remove(const QString& FileName, const QVariant& Section, const QVariant& DisplayName, const QVariant& Action) -{ - bool qax_result; - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&Section, (void*)&DisplayName, (void*)&Action}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); - return qax_result; -} - - -inline QString WebComponent::HTML() const -{ - QVariant qax_result = property("HTML"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void WebComponent::SetHTML(const QString& value){ setProperty("HTML", QVariant(value)); } - -inline int WebComponent::Height() const -{ - QVariant qax_result = property("Height"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void WebComponent::SetHeight(int value){ setProperty("Height", QVariant(value)); } - -inline QString WebComponent::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void WebComponent::SetName(const QString& value){ setProperty("Name", QVariant(value)); } - -inline IDispatch* WebComponent::Shape() const -{ - QVariant qax_result = property("Shape"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString WebComponent::URL() const -{ - QVariant qax_result = property("URL"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void WebComponent::SetURL(const QString& value){ setProperty("URL", QVariant(value)); } - -inline int WebComponent::Width() const -{ - QVariant qax_result = property("Width"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void WebComponent::SetWidth(int value){ setProperty("Width", QVariant(value)); } - -inline void WebComponent::Commit() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void WebComponent::Revert() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void WebComponent::SetPlaceHolderGraphic(const QString& PlaceHolderGraphic) -{ - void *_a[] = {0, (void*)&PlaceHolderGraphic}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - - -inline IDispatch* WebComponentWindowExternal::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString WebComponentWindowExternal::ApplicationName() const -{ - QVariant qax_result = property("ApplicationName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline int WebComponentWindowExternal::ApplicationVersion() const -{ - QVariant qax_result = property("ApplicationVersion"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int WebComponentWindowExternal::InterfaceVersion() const -{ - QVariant qax_result = property("InterfaceVersion"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::WebComponent* WebComponentWindowExternal::WebComponent() const -{ - Office::WebComponent* qax_pointer = 0; - qRegisterMetaType("WebComponent*", &qax_pointer); - qRegisterMetaType("WebComponent", qax_pointer); - QVariant qax_result = property("WebComponent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::WebComponent**)qax_result.constData(); -} - -inline void WebComponentWindowExternal::CloseWindow() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline IDispatch* WebComponentFormat::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString WebComponentFormat::HTML() const -{ - QVariant qax_result = property("HTML"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void WebComponentFormat::SetHTML(const QString& value){ setProperty("HTML", QVariant(value)); } - -inline int WebComponentFormat::Height() const -{ - QVariant qax_result = property("Height"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void WebComponentFormat::SetHeight(int value){ setProperty("Height", QVariant(value)); } - -inline QString WebComponentFormat::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void WebComponentFormat::SetName(const QString& value){ setProperty("Name", QVariant(value)); } - -inline IDispatch* WebComponentFormat::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString WebComponentFormat::PreviewGraphic() const -{ - QVariant qax_result = property("PreviewGraphic"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void WebComponentFormat::SetPreviewGraphic(const QString& value){ setProperty("PreviewGraphic", QVariant(value)); } - -inline QString WebComponentFormat::URL() const -{ - QVariant qax_result = property("URL"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void WebComponentFormat::SetURL(const QString& value){ setProperty("URL", QVariant(value)); } - -inline int WebComponentFormat::Width() const -{ - QVariant qax_result = property("Width"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void WebComponentFormat::SetWidth(int value){ setProperty("Width", QVariant(value)); } - -inline void WebComponentFormat::LaunchPropertiesWindow() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline int ILicWizExternal::AnimationEnabled() const -{ - QVariant qax_result = property("AnimationEnabled"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int ILicWizExternal::Context() const -{ - QVariant qax_result = property("Context"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString ILicWizExternal::CountryInfo() const -{ - QVariant qax_result = property("CountryInfo"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline int ILicWizExternal::CurrentHelpId() const -{ - QVariant qax_result = property("CurrentHelpId"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void ILicWizExternal::SetCurrentHelpId(int value){ setProperty("CurrentHelpId", QVariant(value)); } - -inline IDispatch* ILicWizExternal::LicAgent() const -{ - QVariant qax_result = property("LicAgent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString ILicWizExternal::OfficeOnTheWebUrl() const -{ - QVariant qax_result = property("OfficeOnTheWebUrl"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline IDispatch* ILicWizExternal::Validator() const -{ - QVariant qax_result = property("Validator"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString ILicWizExternal::WizardTitle() const -{ - QVariant qax_result = property("WizardTitle"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void ILicWizExternal::SetWizardTitle(const QString& value){ setProperty("WizardTitle", QVariant(value)); } - -inline int ILicWizExternal::WizardVisible() const -{ - QVariant qax_result = property("WizardVisible"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void ILicWizExternal::SetWizardVisible(int value){ setProperty("WizardVisible", QVariant(value)); } - -inline int ILicWizExternal::DepositPidKey(const QString& bstrKey, int fMORW) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&bstrKey, (void*)&fMORW}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline void ILicWizExternal::DisableVORWReminder(int BPC) -{ - void *_a[] = {0, (void*)&BPC}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline QString ILicWizExternal::FormatDate(const QDateTime& date) -{ - QString qax_result; - void *_a[] = {(void*)&qax_result, (void*)&date}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline QString ILicWizExternal::FormatDate(const QDateTime& date, const QString& pFormat) -{ - QString qax_result; - void *_a[] = {(void*)&qax_result, (void*)&date, (void*)&pFormat}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - -inline int ILicWizExternal::GetConnectedState() -{ - int qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline void ILicWizExternal::InternetDisconnect() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void ILicWizExternal::InvokeDateTimeApplet() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline int ILicWizExternal::MsoAlert(const QString& bstrText, const QString& bstrButtons, const QString& bstrIcon) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&bstrText, (void*)&bstrButtons, (void*)&bstrIcon}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); - return qax_result; -} - -inline void ILicWizExternal::OpenInDefaultBrowser(const QString& bstrUrl) -{ - void *_a[] = {0, (void*)&bstrUrl}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); -} - -inline void ILicWizExternal::PrintHtmlDocument(IUnknown* punkHtmlDoc) -{ - void *_a[] = {0, (void*)&punkHtmlDoc}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); -} - -inline void ILicWizExternal::ResetPID() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); -} - -inline void ILicWizExternal::ResignDpc(const QString& bstrProductCode) -{ - void *_a[] = {0, (void*)&bstrProductCode}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); -} - -inline QString ILicWizExternal::SaveReceipt(const QString& bstrReceipt) -{ - QString qax_result; - void *_a[] = {(void*)&qax_result, (void*)&bstrReceipt}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); - return qax_result; -} - -inline void ILicWizExternal::SetDialogSize(int dx, int dy) -{ - void *_a[] = {0, (void*)&dx, (void*)&dy}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); -} - -inline void ILicWizExternal::ShowHelp() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 24, _a); -} - -inline void ILicWizExternal::ShowHelp(QVariant& pvarId) -{ - void *_a[] = {0, (void*)&pvarId}; - qt_metacall(QMetaObject::InvokeMetaMethod, 25, _a); -} - -inline void ILicWizExternal::SortSelectOptions(IDispatch* pdispSelect) -{ - void *_a[] = {0, (void*)&pdispSelect}; - qt_metacall(QMetaObject::InvokeMetaMethod, 26, _a); -} - -inline void ILicWizExternal::Terminate() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 27, _a); -} - -inline int ILicWizExternal::VerifyClock(int lMode) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&lMode}; - qt_metacall(QMetaObject::InvokeMetaMethod, 28, _a); - return qax_result; -} - -inline void ILicWizExternal::WriteLog(const QString& bstrMessage) -{ - void *_a[] = {0, (void*)&bstrMessage}; - qt_metacall(QMetaObject::InvokeMetaMethod, 29, _a); -} - - -inline QVariant ILicValidator::Products() const -{ - QVariant qax_result = property("Products"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline int ILicValidator::Selection() const -{ - QVariant qax_result = property("Selection"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void ILicValidator::SetSelection(int value){ setProperty("Selection", QVariant(value)); } - - -inline void ILicAgent::AsyncProcessCCRenewalLicenseRequest() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void ILicAgent::AsyncProcessCCRenewalPriceRequest() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void ILicAgent::AsyncProcessDroppedLicenseRequest() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void ILicAgent::AsyncProcessHandshakeRequest(int bReviseCustInfo) -{ - void *_a[] = {0, (void*)&bReviseCustInfo}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void ILicAgent::AsyncProcessNewLicenseRequest() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline void ILicAgent::AsyncProcessReissueLicenseRequest() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void ILicAgent::AsyncProcessRetailRenewalLicenseRequest() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline void ILicAgent::AsyncProcessReviseCustInfoRequest() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); -} - -inline void ILicAgent::CancelAsyncProcessRequest(int bIsLicenseRequest) -{ - void *_a[] = {0, (void*)&bIsLicenseRequest}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); -} - -inline uint ILicAgent::CheckSystemClock() -{ - uint qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); - return qax_result; -} - -inline uint ILicAgent::DepositConfirmationId(const QString& bstrVal) -{ - uint qax_result; - void *_a[] = {(void*)&qax_result, (void*)&bstrVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); - return qax_result; -} - -inline uint ILicAgent::DisplaySSLCert() -{ - uint qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); - return qax_result; -} - -inline QString ILicAgent::GenerateInstallationId() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); - return qax_result; -} - -inline QString ILicAgent::GetAddress1() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); - return qax_result; -} - -inline QString ILicAgent::GetAddress2() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); - return qax_result; -} - -inline uint ILicAgent::GetAsyncProcessReturnCode() -{ - uint qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); - return qax_result; -} - -inline QString ILicAgent::GetBackendErrorMsg() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 23, _a); - return qax_result; -} - -inline QString ILicAgent::GetBillingAddress1() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 24, _a); - return qax_result; -} - -inline QString ILicAgent::GetBillingAddress2() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 25, _a); - return qax_result; -} - -inline QString ILicAgent::GetBillingCity() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 26, _a); - return qax_result; -} - -inline QString ILicAgent::GetBillingCountryCode() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 27, _a); - return qax_result; -} - -inline QString ILicAgent::GetBillingFirstName() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 28, _a); - return qax_result; -} - -inline QString ILicAgent::GetBillingLastName() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 29, _a); - return qax_result; -} - -inline QString ILicAgent::GetBillingPhone() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 30, _a); - return qax_result; -} - -inline QString ILicAgent::GetBillingState() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 31, _a); - return qax_result; -} - -inline QString ILicAgent::GetBillingZip() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 32, _a); - return qax_result; -} - -inline QDateTime ILicAgent::GetCCRenewalExpiryDate() -{ - QDateTime qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 33, _a); - return qax_result; -} - -inline QString ILicAgent::GetCity() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 34, _a); - return qax_result; -} - -inline QString ILicAgent::GetCountryCode() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 35, _a); - return qax_result; -} - -inline QString ILicAgent::GetCountryDesc() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 36, _a); - return qax_result; -} - -inline QString ILicAgent::GetCreditCardCode(uint dwIndex) -{ - QString qax_result; - void *_a[] = {(void*)&qax_result, (void*)&dwIndex}; - qt_metacall(QMetaObject::InvokeMetaMethod, 37, _a); - return qax_result; -} - -inline uint ILicAgent::GetCreditCardCount() -{ - uint qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 38, _a); - return qax_result; -} - -inline uint ILicAgent::GetCreditCardExpiryMonth() -{ - uint qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 39, _a); - return qax_result; -} - -inline uint ILicAgent::GetCreditCardExpiryYear() -{ - uint qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 40, _a); - return qax_result; -} - -inline QString ILicAgent::GetCreditCardName(uint dwIndex) -{ - QString qax_result; - void *_a[] = {(void*)&qax_result, (void*)&dwIndex}; - qt_metacall(QMetaObject::InvokeMetaMethod, 41, _a); - return qax_result; -} - -inline QString ILicAgent::GetCreditCardNumber() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 42, _a); - return qax_result; -} - -inline QString ILicAgent::GetCreditCardType() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 43, _a); - return qax_result; -} - -inline QString ILicAgent::GetCurrencyDescription(uint dwCurrencyIndex) -{ - QString qax_result; - void *_a[] = {(void*)&qax_result, (void*)&dwCurrencyIndex}; - qt_metacall(QMetaObject::InvokeMetaMethod, 44, _a); - return qax_result; -} - -inline uint ILicAgent::GetCurrencyOption() -{ - uint qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 45, _a); - return qax_result; -} - -inline QDateTime ILicAgent::GetCurrentExpiryDate() -{ - QDateTime qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 46, _a); - return qax_result; -} - -inline int ILicAgent::GetDisconnectOption() -{ - int qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 47, _a); - return qax_result; -} - -inline QString ILicAgent::GetEmail() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 48, _a); - return qax_result; -} - -inline QString ILicAgent::GetEndOfLifeHtmlText() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 49, _a); - return qax_result; -} - -inline QDateTime ILicAgent::GetExistingExpiryDate() -{ - QDateTime qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 50, _a); - return qax_result; -} - -inline QString ILicAgent::GetFirstName() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 51, _a); - return qax_result; -} - -inline QString ILicAgent::GetInvoiceText() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 52, _a); - return qax_result; -} - -inline uint ILicAgent::GetIsoLanguage() -{ - uint qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 53, _a); - return qax_result; -} - -inline QString ILicAgent::GetLastName() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 54, _a); - return qax_result; -} - -inline QString ILicAgent::GetMSOffer() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 55, _a); - return qax_result; -} - -inline QString ILicAgent::GetMSUpdate() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 56, _a); - return qax_result; -} - -inline QDateTime ILicAgent::GetNewExpiryDate() -{ - QDateTime qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 57, _a); - return qax_result; -} - -inline QString ILicAgent::GetOrgName() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 58, _a); - return qax_result; -} - -inline QString ILicAgent::GetOtherOffer() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 59, _a); - return qax_result; -} - -inline QString ILicAgent::GetPhone() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 60, _a); - return qax_result; -} - -inline uint ILicAgent::GetPriceItemCount() -{ - uint qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 61, _a); - return qax_result; -} - -inline QString ILicAgent::GetPriceItemLabel(uint dwIndex) -{ - QString qax_result; - void *_a[] = {(void*)&qax_result, (void*)&dwIndex}; - qt_metacall(QMetaObject::InvokeMetaMethod, 62, _a); - return qax_result; -} - -inline QString ILicAgent::GetPriceItemValue(uint dwCurrencyIndex, uint dwIndex) -{ - QString qax_result; - void *_a[] = {(void*)&qax_result, (void*)&dwCurrencyIndex, (void*)&dwIndex}; - qt_metacall(QMetaObject::InvokeMetaMethod, 63, _a); - return qax_result; -} - -inline QString ILicAgent::GetState() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 64, _a); - return qax_result; -} - -inline QString ILicAgent::GetVATLabel(const QString& bstrCountryCode) -{ - QString qax_result; - void *_a[] = {(void*)&qax_result, (void*)&bstrCountryCode}; - qt_metacall(QMetaObject::InvokeMetaMethod, 65, _a); - return qax_result; -} - -inline QString ILicAgent::GetVATNumber() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 66, _a); - return qax_result; -} - -inline QString ILicAgent::GetZip() -{ - QString qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 67, _a); - return qax_result; -} - -inline uint ILicAgent::Initialize(uint dwBPC, uint dwMode, const QString& bstrLicSource) -{ - uint qax_result; - void *_a[] = {(void*)&qax_result, (void*)&dwBPC, (void*)&dwMode, (void*)&bstrLicSource}; - qt_metacall(QMetaObject::InvokeMetaMethod, 68, _a); - return qax_result; -} - -inline int ILicAgent::IsCCRenewalCountry(const QString& bstrCountryCode) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&bstrCountryCode}; - qt_metacall(QMetaObject::InvokeMetaMethod, 69, _a); - return qax_result; -} - -inline int ILicAgent::IsUpgradeAvailable() -{ - int qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 70, _a); - return qax_result; -} - -inline uint ILicAgent::SaveBillingInfo(int bSave) -{ - uint qax_result; - void *_a[] = {(void*)&qax_result, (void*)&bSave}; - qt_metacall(QMetaObject::InvokeMetaMethod, 71, _a); - return qax_result; -} - -inline void ILicAgent::SetAddress1(const QString& bstrNewVal) -{ - void *_a[] = {0, (void*)&bstrNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 72, _a); -} - -inline void ILicAgent::SetAddress2(const QString& bstrNewVal) -{ - void *_a[] = {0, (void*)&bstrNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 73, _a); -} - -inline void ILicAgent::SetBillingAddress1(const QString& bstrNewVal) -{ - void *_a[] = {0, (void*)&bstrNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 74, _a); -} - -inline void ILicAgent::SetBillingAddress2(const QString& bstrNewVal) -{ - void *_a[] = {0, (void*)&bstrNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 75, _a); -} - -inline void ILicAgent::SetBillingCity(const QString& bstrNewVal) -{ - void *_a[] = {0, (void*)&bstrNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 76, _a); -} - -inline void ILicAgent::SetBillingCountryCode(const QString& bstrNewVal) -{ - void *_a[] = {0, (void*)&bstrNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 77, _a); -} - -inline void ILicAgent::SetBillingFirstName(const QString& bstrNewVal) -{ - void *_a[] = {0, (void*)&bstrNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 78, _a); -} - -inline void ILicAgent::SetBillingLastName(const QString& bstrNewVal) -{ - void *_a[] = {0, (void*)&bstrNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 79, _a); -} - -inline void ILicAgent::SetBillingPhone(const QString& bstrNewVal) -{ - void *_a[] = {0, (void*)&bstrNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 80, _a); -} - -inline void ILicAgent::SetBillingState(const QString& bstrNewVal) -{ - void *_a[] = {0, (void*)&bstrNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 81, _a); -} - -inline void ILicAgent::SetBillingZip(const QString& bstrNewVal) -{ - void *_a[] = {0, (void*)&bstrNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 82, _a); -} - -inline void ILicAgent::SetCity(const QString& bstrNewVal) -{ - void *_a[] = {0, (void*)&bstrNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 83, _a); -} - -inline void ILicAgent::SetCountryCode(const QString& bstrNewVal) -{ - void *_a[] = {0, (void*)&bstrNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 84, _a); -} - -inline void ILicAgent::SetCountryDesc(const QString& bstrNewVal) -{ - void *_a[] = {0, (void*)&bstrNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 85, _a); -} - -inline void ILicAgent::SetCreditCardExpiryMonth(uint dwCCMonth) -{ - void *_a[] = {0, (void*)&dwCCMonth}; - qt_metacall(QMetaObject::InvokeMetaMethod, 86, _a); -} - -inline void ILicAgent::SetCreditCardExpiryYear(uint dwCCYear) -{ - void *_a[] = {0, (void*)&dwCCYear}; - qt_metacall(QMetaObject::InvokeMetaMethod, 87, _a); -} - -inline void ILicAgent::SetCreditCardNumber(const QString& bstrCCNumber) -{ - void *_a[] = {0, (void*)&bstrCCNumber}; - qt_metacall(QMetaObject::InvokeMetaMethod, 88, _a); -} - -inline void ILicAgent::SetCreditCardType(const QString& bstrCCCode) -{ - void *_a[] = {0, (void*)&bstrCCCode}; - qt_metacall(QMetaObject::InvokeMetaMethod, 89, _a); -} - -inline void ILicAgent::SetCurrencyOption(uint dwCurrencyOption) -{ - void *_a[] = {0, (void*)&dwCurrencyOption}; - qt_metacall(QMetaObject::InvokeMetaMethod, 90, _a); -} - -inline void ILicAgent::SetDisconnectOption(int bNewVal) -{ - void *_a[] = {0, (void*)&bNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 91, _a); -} - -inline void ILicAgent::SetEmail(const QString& bstrNewVal) -{ - void *_a[] = {0, (void*)&bstrNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 92, _a); -} - -inline void ILicAgent::SetFirstName(const QString& bstrNewVal) -{ - void *_a[] = {0, (void*)&bstrNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 93, _a); -} - -inline void ILicAgent::SetIsoLanguage(uint dwNewVal) -{ - void *_a[] = {0, (void*)&dwNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 94, _a); -} - -inline void ILicAgent::SetLastName(const QString& bstrNewVal) -{ - void *_a[] = {0, (void*)&bstrNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 95, _a); -} - -inline void ILicAgent::SetMSOffer(const QString& bstrNewVal) -{ - void *_a[] = {0, (void*)&bstrNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 96, _a); -} - -inline void ILicAgent::SetMSUpdate(const QString& bstrNewVal) -{ - void *_a[] = {0, (void*)&bstrNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 97, _a); -} - -inline void ILicAgent::SetOrgName(const QString& bstrNewVal) -{ - void *_a[] = {0, (void*)&bstrNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 98, _a); -} - -inline void ILicAgent::SetOtherOffer(const QString& bstrNewVal) -{ - void *_a[] = {0, (void*)&bstrNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 99, _a); -} - -inline void ILicAgent::SetPhone(const QString& bstrNewVal) -{ - void *_a[] = {0, (void*)&bstrNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 100, _a); -} - -inline void ILicAgent::SetState(const QString& bstrNewVal) -{ - void *_a[] = {0, (void*)&bstrNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 101, _a); -} - -inline void ILicAgent::SetVATNumber(const QString& bstrVATNumber) -{ - void *_a[] = {0, (void*)&bstrVATNumber}; - qt_metacall(QMetaObject::InvokeMetaMethod, 102, _a); -} - -inline void ILicAgent::SetZip(const QString& bstrNewVal) -{ - void *_a[] = {0, (void*)&bstrNewVal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 103, _a); -} - -inline int ILicAgent::VerifyCheckDigits(const QString& bstrCIDIID) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&bstrCIDIID}; - qt_metacall(QMetaObject::InvokeMetaMethod, 104, _a); - return qax_result; -} - -inline void ILicAgent::WantUpgrade(int bWantUpgrade) -{ - void *_a[] = {0, (void*)&bWantUpgrade}; - qt_metacall(QMetaObject::InvokeMetaMethod, 105, _a); -} - - -inline IDispatch* IMsoEServicesDialog::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString IMsoEServicesDialog::ApplicationName() const -{ - QVariant qax_result = property("ApplicationName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline IDispatch* IMsoEServicesDialog::ClipArt() const -{ - QVariant qax_result = property("ClipArt"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IDispatch* IMsoEServicesDialog::WebComponent() const -{ - QVariant qax_result = property("WebComponent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline void IMsoEServicesDialog::AddTrustedDomain(const QString& Domain) -{ - void *_a[] = {0, (void*)&Domain}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void IMsoEServicesDialog::Close() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void IMsoEServicesDialog::Close(bool ApplyWebComponentChanges) -{ - void *_a[] = {0, (void*)&ApplyWebComponentChanges}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - - -inline QString WebComponentProperties::HTML() const -{ - QVariant qax_result = property("HTML"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void WebComponentProperties::SetHTML(const QString& value){ setProperty("HTML", QVariant(value)); } - -inline int WebComponentProperties::Height() const -{ - QVariant qax_result = property("Height"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void WebComponentProperties::SetHeight(int value){ setProperty("Height", QVariant(value)); } - -inline QString WebComponentProperties::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void WebComponentProperties::SetName(const QString& value){ setProperty("Name", QVariant(value)); } - -inline QString WebComponentProperties::PreviewGraphic() const -{ - QVariant qax_result = property("PreviewGraphic"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void WebComponentProperties::SetPreviewGraphic(const QString& value){ setProperty("PreviewGraphic", QVariant(value)); } - -inline QString WebComponentProperties::PreviewHTML() const -{ - QVariant qax_result = property("PreviewHTML"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void WebComponentProperties::SetPreviewHTML(const QString& value){ setProperty("PreviewHTML", QVariant(value)); } - -inline IDispatch* WebComponentProperties::Shape() const -{ - QVariant qax_result = property("Shape"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString WebComponentProperties::Tag() const -{ - QVariant qax_result = property("Tag"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void WebComponentProperties::SetTag(const QString& value){ setProperty("Tag", QVariant(value)); } - -inline QString WebComponentProperties::URL() const -{ - QVariant qax_result = property("URL"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void WebComponentProperties::SetURL(const QString& value){ setProperty("URL", QVariant(value)); } - -inline int WebComponentProperties::Width() const -{ - QVariant qax_result = property("Width"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void WebComponentProperties::SetWidth(int value){ setProperty("Width", QVariant(value)); } - - -inline IDispatch* SmartDocument::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int SmartDocument::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString SmartDocument::SolutionID() const -{ - QVariant qax_result = property("SolutionID"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void SmartDocument::SetSolutionID(const QString& value){ setProperty("SolutionID", QVariant(value)); } - -inline QString SmartDocument::SolutionURL() const -{ - QVariant qax_result = property("SolutionURL"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void SmartDocument::SetSolutionURL(const QString& value){ setProperty("SolutionURL", QVariant(value)); } - -inline void SmartDocument::PickSolution() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void SmartDocument::PickSolution(bool ConsiderAllSchemas) -{ - void *_a[] = {0, (void*)&ConsiderAllSchemas}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void SmartDocument::RefreshPane() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - - -inline IDispatch* SharedWorkspaceMember::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int SharedWorkspaceMember::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString SharedWorkspaceMember::DomainName() const -{ - QVariant qax_result = property("DomainName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString SharedWorkspaceMember::Email() const -{ - QVariant qax_result = property("Email"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString SharedWorkspaceMember::Id() const -{ - QVariant qax_result = property("Id"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString SharedWorkspaceMember::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline IDispatch* SharedWorkspaceMember::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline void SharedWorkspaceMember::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline IDispatch* SharedWorkspaceMembers::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int SharedWorkspaceMembers::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int SharedWorkspaceMembers::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline bool SharedWorkspaceMembers::ItemCountExceeded() const -{ - QVariant qax_result = property("ItemCountExceeded"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline IDispatch* SharedWorkspaceMembers::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* SharedWorkspaceMembers::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::SharedWorkspaceMember* SharedWorkspaceMembers::Add(const QString& Email, const QString& DomainName, const QString& DisplayName) -{ - Office::SharedWorkspaceMember* qax_result = 0; - qRegisterMetaType("SharedWorkspaceMember*", &qax_result); - qRegisterMetaType("SharedWorkspaceMember", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Email, (void*)&DomainName, (void*)&DisplayName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline Office::SharedWorkspaceMember* SharedWorkspaceMembers::Add(const QString& Email, const QString& DomainName, const QString& DisplayName, const QVariant& Role) -{ - Office::SharedWorkspaceMember* qax_result = 0; - qRegisterMetaType("SharedWorkspaceMember*", &qax_result); - qRegisterMetaType("SharedWorkspaceMember", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Email, (void*)&DomainName, (void*)&DisplayName, (void*)&Role}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline Office::SharedWorkspaceMember* SharedWorkspaceMembers::Item(int Index) -{ - Office::SharedWorkspaceMember* qax_result = 0; - qRegisterMetaType("SharedWorkspaceMember*", &qax_result); - qRegisterMetaType("SharedWorkspaceMember", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - - -inline IDispatch* SharedWorkspaceTask::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString SharedWorkspaceTask::AssignedTo() const -{ - QVariant qax_result = property("AssignedTo"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void SharedWorkspaceTask::SetAssignedTo(const QString& value){ setProperty("AssignedTo", QVariant(value)); } - -inline QString SharedWorkspaceTask::CreatedBy() const -{ - QVariant qax_result = property("CreatedBy"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant SharedWorkspaceTask::CreatedDate() const -{ - QVariant qax_result = property("CreatedDate"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline int SharedWorkspaceTask::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString SharedWorkspaceTask::Description() const -{ - QVariant qax_result = property("Description"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void SharedWorkspaceTask::SetDescription(const QString& value){ setProperty("Description", QVariant(value)); } - -inline QVariant SharedWorkspaceTask::DueDate() const -{ - QVariant qax_result = property("DueDate"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void SharedWorkspaceTask::SetDueDate(const QVariant& value){ setProperty("DueDate", QVariant(value)); } - -inline QString SharedWorkspaceTask::ModifiedBy() const -{ - QVariant qax_result = property("ModifiedBy"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant SharedWorkspaceTask::ModifiedDate() const -{ - QVariant qax_result = property("ModifiedDate"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline IDispatch* SharedWorkspaceTask::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoSharedWorkspaceTaskPriority SharedWorkspaceTask::Priority() const -{ - QVariant qax_result = property("Priority"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoSharedWorkspaceTaskPriority*)qax_result.constData(); -} -inline void SharedWorkspaceTask::SetPriority(Office::MsoSharedWorkspaceTaskPriority value){ setProperty("Priority", QVariant(value)); } - -inline Office::MsoSharedWorkspaceTaskStatus SharedWorkspaceTask::Status() const -{ - QVariant qax_result = property("Status"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoSharedWorkspaceTaskStatus*)qax_result.constData(); -} -inline void SharedWorkspaceTask::SetStatus(Office::MsoSharedWorkspaceTaskStatus value){ setProperty("Status", QVariant(value)); } - -inline QString SharedWorkspaceTask::Title() const -{ - QVariant qax_result = property("Title"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void SharedWorkspaceTask::SetTitle(const QString& value){ setProperty("Title", QVariant(value)); } - -inline void SharedWorkspaceTask::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void SharedWorkspaceTask::Save() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - - -inline IDispatch* SharedWorkspaceTasks::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int SharedWorkspaceTasks::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int SharedWorkspaceTasks::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline bool SharedWorkspaceTasks::ItemCountExceeded() const -{ - QVariant qax_result = property("ItemCountExceeded"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline IDispatch* SharedWorkspaceTasks::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* SharedWorkspaceTasks::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::SharedWorkspaceTask* SharedWorkspaceTasks::Add(const QString& Title) -{ - Office::SharedWorkspaceTask* qax_result = 0; - qRegisterMetaType("SharedWorkspaceTask*", &qax_result); - qRegisterMetaType("SharedWorkspaceTask", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Title}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline Office::SharedWorkspaceTask* SharedWorkspaceTasks::Add(const QString& Title, const QVariant& Status) -{ - Office::SharedWorkspaceTask* qax_result = 0; - qRegisterMetaType("SharedWorkspaceTask*", &qax_result); - qRegisterMetaType("SharedWorkspaceTask", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Title, (void*)&Status}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline Office::SharedWorkspaceTask* SharedWorkspaceTasks::Add(const QString& Title, const QVariant& Status, const QVariant& Priority) -{ - Office::SharedWorkspaceTask* qax_result = 0; - qRegisterMetaType("SharedWorkspaceTask*", &qax_result); - qRegisterMetaType("SharedWorkspaceTask", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Title, (void*)&Status, (void*)&Priority}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline Office::SharedWorkspaceTask* SharedWorkspaceTasks::Add(const QString& Title, const QVariant& Status, const QVariant& Priority, const QVariant& Assignee) -{ - Office::SharedWorkspaceTask* qax_result = 0; - qRegisterMetaType("SharedWorkspaceTask*", &qax_result); - qRegisterMetaType("SharedWorkspaceTask", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Title, (void*)&Status, (void*)&Priority, (void*)&Assignee}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - -inline Office::SharedWorkspaceTask* SharedWorkspaceTasks::Add(const QString& Title, const QVariant& Status, const QVariant& Priority, const QVariant& Assignee, const QVariant& Description) -{ - Office::SharedWorkspaceTask* qax_result = 0; - qRegisterMetaType("SharedWorkspaceTask*", &qax_result); - qRegisterMetaType("SharedWorkspaceTask", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Title, (void*)&Status, (void*)&Priority, (void*)&Assignee, (void*)&Description}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline Office::SharedWorkspaceTask* SharedWorkspaceTasks::Add(const QString& Title, const QVariant& Status, const QVariant& Priority, const QVariant& Assignee, const QVariant& Description, const QVariant& DueDate) -{ - Office::SharedWorkspaceTask* qax_result = 0; - qRegisterMetaType("SharedWorkspaceTask*", &qax_result); - qRegisterMetaType("SharedWorkspaceTask", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Title, (void*)&Status, (void*)&Priority, (void*)&Assignee, (void*)&Description, (void*)&DueDate}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); - return qax_result; -} - -inline Office::SharedWorkspaceTask* SharedWorkspaceTasks::Item(int Index) -{ - Office::SharedWorkspaceTask* qax_result = 0; - qRegisterMetaType("SharedWorkspaceTask*", &qax_result); - qRegisterMetaType("SharedWorkspaceTask", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); - return qax_result; -} - - -inline IDispatch* SharedWorkspaceFile::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString SharedWorkspaceFile::CreatedBy() const -{ - QVariant qax_result = property("CreatedBy"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant SharedWorkspaceFile::CreatedDate() const -{ - QVariant qax_result = property("CreatedDate"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline int SharedWorkspaceFile::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString SharedWorkspaceFile::ModifiedBy() const -{ - QVariant qax_result = property("ModifiedBy"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant SharedWorkspaceFile::ModifiedDate() const -{ - QVariant qax_result = property("ModifiedDate"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline IDispatch* SharedWorkspaceFile::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString SharedWorkspaceFile::URL() const -{ - QVariant qax_result = property("URL"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline void SharedWorkspaceFile::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline IDispatch* SharedWorkspaceFiles::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int SharedWorkspaceFiles::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int SharedWorkspaceFiles::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline bool SharedWorkspaceFiles::ItemCountExceeded() const -{ - QVariant qax_result = property("ItemCountExceeded"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline IDispatch* SharedWorkspaceFiles::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* SharedWorkspaceFiles::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::SharedWorkspaceFile* SharedWorkspaceFiles::Add(const QString& FileName) -{ - Office::SharedWorkspaceFile* qax_result = 0; - qRegisterMetaType("SharedWorkspaceFile*", &qax_result); - qRegisterMetaType("SharedWorkspaceFile", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline Office::SharedWorkspaceFile* SharedWorkspaceFiles::Add(const QString& FileName, const QVariant& ParentFolder) -{ - Office::SharedWorkspaceFile* qax_result = 0; - qRegisterMetaType("SharedWorkspaceFile*", &qax_result); - qRegisterMetaType("SharedWorkspaceFile", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&ParentFolder}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline Office::SharedWorkspaceFile* SharedWorkspaceFiles::Add(const QString& FileName, const QVariant& ParentFolder, const QVariant& OverwriteIfFileAlreadyExists) -{ - Office::SharedWorkspaceFile* qax_result = 0; - qRegisterMetaType("SharedWorkspaceFile*", &qax_result); - qRegisterMetaType("SharedWorkspaceFile", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&ParentFolder, (void*)&OverwriteIfFileAlreadyExists}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline Office::SharedWorkspaceFile* SharedWorkspaceFiles::Add(const QString& FileName, const QVariant& ParentFolder, const QVariant& OverwriteIfFileAlreadyExists, const QVariant& KeepInSync) -{ - Office::SharedWorkspaceFile* qax_result = 0; - qRegisterMetaType("SharedWorkspaceFile*", &qax_result); - qRegisterMetaType("SharedWorkspaceFile", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&ParentFolder, (void*)&OverwriteIfFileAlreadyExists, (void*)&KeepInSync}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - -inline Office::SharedWorkspaceFile* SharedWorkspaceFiles::Item(int Index) -{ - Office::SharedWorkspaceFile* qax_result = 0; - qRegisterMetaType("SharedWorkspaceFile*", &qax_result); - qRegisterMetaType("SharedWorkspaceFile", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - - -inline IDispatch* SharedWorkspaceFolder::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int SharedWorkspaceFolder::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString SharedWorkspaceFolder::FolderName() const -{ - QVariant qax_result = property("FolderName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline IDispatch* SharedWorkspaceFolder::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline void SharedWorkspaceFolder::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void SharedWorkspaceFolder::Delete(const QVariant& DeleteEventIfFolderContainsFiles) -{ - void *_a[] = {0, (void*)&DeleteEventIfFolderContainsFiles}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - - -inline IDispatch* SharedWorkspaceFolders::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int SharedWorkspaceFolders::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int SharedWorkspaceFolders::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline bool SharedWorkspaceFolders::ItemCountExceeded() const -{ - QVariant qax_result = property("ItemCountExceeded"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline IDispatch* SharedWorkspaceFolders::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* SharedWorkspaceFolders::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::SharedWorkspaceFolder* SharedWorkspaceFolders::Add(const QString& FolderName) -{ - Office::SharedWorkspaceFolder* qax_result = 0; - qRegisterMetaType("SharedWorkspaceFolder*", &qax_result); - qRegisterMetaType("SharedWorkspaceFolder", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FolderName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline Office::SharedWorkspaceFolder* SharedWorkspaceFolders::Add(const QString& FolderName, const QVariant& ParentFolder) -{ - Office::SharedWorkspaceFolder* qax_result = 0; - qRegisterMetaType("SharedWorkspaceFolder*", &qax_result); - qRegisterMetaType("SharedWorkspaceFolder", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FolderName, (void*)&ParentFolder}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline Office::SharedWorkspaceFolder* SharedWorkspaceFolders::Item(int Index) -{ - Office::SharedWorkspaceFolder* qax_result = 0; - qRegisterMetaType("SharedWorkspaceFolder*", &qax_result); - qRegisterMetaType("SharedWorkspaceFolder", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - - -inline IDispatch* SharedWorkspaceLink::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString SharedWorkspaceLink::CreatedBy() const -{ - QVariant qax_result = property("CreatedBy"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant SharedWorkspaceLink::CreatedDate() const -{ - QVariant qax_result = property("CreatedDate"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline int SharedWorkspaceLink::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString SharedWorkspaceLink::Description() const -{ - QVariant qax_result = property("Description"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void SharedWorkspaceLink::SetDescription(const QString& value){ setProperty("Description", QVariant(value)); } - -inline QString SharedWorkspaceLink::ModifiedBy() const -{ - QVariant qax_result = property("ModifiedBy"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QVariant SharedWorkspaceLink::ModifiedDate() const -{ - QVariant qax_result = property("ModifiedDate"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QString SharedWorkspaceLink::Notes() const -{ - QVariant qax_result = property("Notes"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void SharedWorkspaceLink::SetNotes(const QString& value){ setProperty("Notes", QVariant(value)); } - -inline IDispatch* SharedWorkspaceLink::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString SharedWorkspaceLink::URL() const -{ - QVariant qax_result = property("URL"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void SharedWorkspaceLink::SetURL(const QString& value){ setProperty("URL", QVariant(value)); } - -inline void SharedWorkspaceLink::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void SharedWorkspaceLink::Save() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - - -inline IDispatch* SharedWorkspaceLinks::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int SharedWorkspaceLinks::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int SharedWorkspaceLinks::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline bool SharedWorkspaceLinks::ItemCountExceeded() const -{ - QVariant qax_result = property("ItemCountExceeded"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline IDispatch* SharedWorkspaceLinks::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* SharedWorkspaceLinks::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::SharedWorkspaceLink* SharedWorkspaceLinks::Add(const QString& URL) -{ - Office::SharedWorkspaceLink* qax_result = 0; - qRegisterMetaType("SharedWorkspaceLink*", &qax_result); - qRegisterMetaType("SharedWorkspaceLink", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&URL}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline Office::SharedWorkspaceLink* SharedWorkspaceLinks::Add(const QString& URL, const QVariant& Description) -{ - Office::SharedWorkspaceLink* qax_result = 0; - qRegisterMetaType("SharedWorkspaceLink*", &qax_result); - qRegisterMetaType("SharedWorkspaceLink", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&URL, (void*)&Description}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline Office::SharedWorkspaceLink* SharedWorkspaceLinks::Add(const QString& URL, const QVariant& Description, const QVariant& Notes) -{ - Office::SharedWorkspaceLink* qax_result = 0; - qRegisterMetaType("SharedWorkspaceLink*", &qax_result); - qRegisterMetaType("SharedWorkspaceLink", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&URL, (void*)&Description, (void*)&Notes}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline Office::SharedWorkspaceLink* SharedWorkspaceLinks::Item(int Index) -{ - Office::SharedWorkspaceLink* qax_result = 0; - qRegisterMetaType("SharedWorkspaceLink*", &qax_result); - qRegisterMetaType("SharedWorkspaceLink", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - - -inline IDispatch* SharedWorkspace::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline bool SharedWorkspace::Connected() const -{ - QVariant qax_result = property("Connected"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline int SharedWorkspace::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::SharedWorkspaceFiles* SharedWorkspace::Files() const -{ - Office::SharedWorkspaceFiles* qax_pointer = 0; - qRegisterMetaType("SharedWorkspaceFiles*", &qax_pointer); - qRegisterMetaType("SharedWorkspaceFiles", qax_pointer); - QVariant qax_result = property("Files"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::SharedWorkspaceFiles**)qax_result.constData(); -} - -inline Office::SharedWorkspaceFolders* SharedWorkspace::Folders() const -{ - Office::SharedWorkspaceFolders* qax_pointer = 0; - qRegisterMetaType("SharedWorkspaceFolders*", &qax_pointer); - qRegisterMetaType("SharedWorkspaceFolders", qax_pointer); - QVariant qax_result = property("Folders"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::SharedWorkspaceFolders**)qax_result.constData(); -} - -inline QVariant SharedWorkspace::LastRefreshed() const -{ - QVariant qax_result = property("LastRefreshed"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline Office::SharedWorkspaceLinks* SharedWorkspace::Links() const -{ - Office::SharedWorkspaceLinks* qax_pointer = 0; - qRegisterMetaType("SharedWorkspaceLinks*", &qax_pointer); - qRegisterMetaType("SharedWorkspaceLinks", qax_pointer); - QVariant qax_result = property("Links"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::SharedWorkspaceLinks**)qax_result.constData(); -} - -inline Office::SharedWorkspaceMembers* SharedWorkspace::Members() const -{ - Office::SharedWorkspaceMembers* qax_pointer = 0; - qRegisterMetaType("SharedWorkspaceMembers*", &qax_pointer); - qRegisterMetaType("SharedWorkspaceMembers", qax_pointer); - QVariant qax_result = property("Members"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::SharedWorkspaceMembers**)qax_result.constData(); -} - -inline QString SharedWorkspace::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void SharedWorkspace::SetName(const QString& value){ setProperty("Name", QVariant(value)); } - -inline IDispatch* SharedWorkspace::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString SharedWorkspace::SourceURL() const -{ - QVariant qax_result = property("SourceURL"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void SharedWorkspace::SetSourceURL(const QString& value){ setProperty("SourceURL", QVariant(value)); } - -inline Office::SharedWorkspaceTasks* SharedWorkspace::Tasks() const -{ - Office::SharedWorkspaceTasks* qax_pointer = 0; - qRegisterMetaType("SharedWorkspaceTasks*", &qax_pointer); - qRegisterMetaType("SharedWorkspaceTasks", qax_pointer); - QVariant qax_result = property("Tasks"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(Office::SharedWorkspaceTasks**)qax_result.constData(); -} - -inline QString SharedWorkspace::URL() const -{ - QVariant qax_result = property("URL"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline void SharedWorkspace::CreateNew() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void SharedWorkspace::CreateNew(const QVariant& URL) -{ - void *_a[] = {0, (void*)&URL}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void SharedWorkspace::CreateNew(const QVariant& URL, const QVariant& Name) -{ - void *_a[] = {0, (void*)&URL, (void*)&Name}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void SharedWorkspace::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void SharedWorkspace::Disconnect() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline void SharedWorkspace::Refresh() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void SharedWorkspace::RemoveDocument() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - - -inline IDispatch* Sync::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int Sync::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoSyncErrorType Sync::ErrorType() const -{ - QVariant qax_result = property("ErrorType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoSyncErrorType*)qax_result.constData(); -} - -inline QVariant Sync::LastSyncTime() const -{ - QVariant qax_result = property("LastSyncTime"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline IDispatch* Sync::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoSyncStatusType Sync::Status() const -{ - QVariant qax_result = property("Status"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoSyncStatusType*)qax_result.constData(); -} - -inline QString Sync::WorkspaceLastChangedBy() const -{ - QVariant qax_result = property("WorkspaceLastChangedBy"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline void Sync::GetUpdate() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void Sync::OpenVersion(Office::MsoSyncVersionType SyncVersionType) -{ - void *_a[] = {0, (void*)&SyncVersionType}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void Sync::PutUpdate() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void Sync::ResolveConflict(Office::MsoSyncConflictResolutionType SyncConflictResolution) -{ - void *_a[] = {0, (void*)&SyncConflictResolution}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void Sync::Unsuspend() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - - -inline IDispatch* DocumentLibraryVersion::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString DocumentLibraryVersion::Comments() const -{ - QVariant qax_result = property("Comments"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline int DocumentLibraryVersion::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int DocumentLibraryVersion::Index() const -{ - QVariant qax_result = property("Index"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QVariant DocumentLibraryVersion::Modified() const -{ - QVariant qax_result = property("Modified"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline QString DocumentLibraryVersion::ModifiedBy() const -{ - QVariant qax_result = property("ModifiedBy"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline IDispatch* DocumentLibraryVersion::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline void DocumentLibraryVersion::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline IDispatch* DocumentLibraryVersion::Open() -{ - IDispatch* qax_result = 0; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline IDispatch* DocumentLibraryVersion::Restore() -{ - IDispatch* qax_result = 0; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - - -inline IDispatch* DocumentLibraryVersions::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int DocumentLibraryVersions::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int DocumentLibraryVersions::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline bool DocumentLibraryVersions::IsVersioningEnabled() const -{ - QVariant qax_result = property("IsVersioningEnabled"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline IDispatch* DocumentLibraryVersions::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* DocumentLibraryVersions::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::DocumentLibraryVersion* DocumentLibraryVersions::Item(int lIndex) -{ - Office::DocumentLibraryVersion* qax_result = 0; - qRegisterMetaType("DocumentLibraryVersion*", &qax_result); - qRegisterMetaType("DocumentLibraryVersion", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&lIndex}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - - -inline IDispatch* UserPermission::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int UserPermission::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QVariant UserPermission::ExpirationDate() const -{ - QVariant qax_result = property("ExpirationDate"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void UserPermission::SetExpirationDate(const QVariant& value){ setProperty("ExpirationDate", QVariant(value)); } - -inline IDispatch* UserPermission::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int UserPermission::Permission() const -{ - QVariant qax_result = property("Permission"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void UserPermission::SetPermission(int value){ setProperty("Permission", QVariant(value)); } - -inline QString UserPermission::UserId() const -{ - QVariant qax_result = property("UserId"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline void UserPermission::Remove() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline IDispatch* Permission::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int Permission::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int Permission::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString Permission::DocumentAuthor() const -{ - QVariant qax_result = property("DocumentAuthor"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Permission::SetDocumentAuthor(const QString& value){ setProperty("DocumentAuthor", QVariant(value)); } - -inline bool Permission::EnableTrustedBrowser() const -{ - QVariant qax_result = property("EnableTrustedBrowser"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void Permission::SetEnableTrustedBrowser(bool value){ setProperty("EnableTrustedBrowser", QVariant(value)); } - -inline bool Permission::Enabled() const -{ - QVariant qax_result = property("Enabled"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void Permission::SetEnabled(bool value){ setProperty("Enabled", QVariant(value)); } - -inline IDispatch* Permission::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline bool Permission::PermissionFromPolicy() const -{ - QVariant qax_result = property("PermissionFromPolicy"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline QString Permission::PolicyDescription() const -{ - QVariant qax_result = property("PolicyDescription"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString Permission::PolicyName() const -{ - QVariant qax_result = property("PolicyName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString Permission::RequestPermissionURL() const -{ - QVariant qax_result = property("RequestPermissionURL"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Permission::SetRequestPermissionURL(const QString& value){ setProperty("RequestPermissionURL", QVariant(value)); } - -inline bool Permission::StoreLicenses() const -{ - QVariant qax_result = property("StoreLicenses"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void Permission::SetStoreLicenses(bool value){ setProperty("StoreLicenses", QVariant(value)); } - -inline IUnknown* Permission::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::UserPermission* Permission::Add(const QString& UserId) -{ - Office::UserPermission* qax_result = 0; - qRegisterMetaType("UserPermission*", &qax_result); - qRegisterMetaType("UserPermission", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&UserId}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline Office::UserPermission* Permission::Add(const QString& UserId, const QVariant& Permission) -{ - Office::UserPermission* qax_result = 0; - qRegisterMetaType("UserPermission*", &qax_result); - qRegisterMetaType("UserPermission", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&UserId, (void*)&Permission}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline Office::UserPermission* Permission::Add(const QString& UserId, const QVariant& Permission, const QVariant& ExpirationDate) -{ - Office::UserPermission* qax_result = 0; - qRegisterMetaType("UserPermission*", &qax_result); - qRegisterMetaType("UserPermission", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&UserId, (void*)&Permission, (void*)&ExpirationDate}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline void Permission::ApplyPolicy(const QString& FileName) -{ - void *_a[] = {0, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline Office::UserPermission* Permission::Item(const QVariant& Index) -{ - Office::UserPermission* qax_result = 0; - qRegisterMetaType("UserPermission*", &qax_result); - qRegisterMetaType("UserPermission", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline void Permission::RemoveAll() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - - - -#endif - -} - -template<> -inline void *qMetaTypeConstructHelper(const Office::IAccessible *t) -{ Q_ASSERT(!t); return new Office::IAccessible; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::_IMsoDispObj *t) -{ Q_ASSERT(!t); return new Office::_IMsoDispObj; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::_IMsoOleAccDispObj *t) -{ Q_ASSERT(!t); return new Office::_IMsoOleAccDispObj; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::_CommandBars *t) -{ Q_ASSERT(!t); return new Office::_CommandBars; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::CommandBar *t) -{ Q_ASSERT(!t); return new Office::CommandBar; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::CommandBarControls *t) -{ Q_ASSERT(!t); return new Office::CommandBarControls; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::CommandBarControl *t) -{ Q_ASSERT(!t); return new Office::CommandBarControl; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::_CommandBarButton *t) -{ Q_ASSERT(!t); return new Office::_CommandBarButton; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::CommandBarPopup *t) -{ Q_ASSERT(!t); return new Office::CommandBarPopup; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::_CommandBarComboBox *t) -{ Q_ASSERT(!t); return new Office::_CommandBarComboBox; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::_CommandBarActiveX *t) -{ Q_ASSERT(!t); return new Office::_CommandBarActiveX; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::Adjustments *t) -{ Q_ASSERT(!t); return new Office::Adjustments; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::CalloutFormat *t) -{ Q_ASSERT(!t); return new Office::CalloutFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::ColorFormat *t) -{ Q_ASSERT(!t); return new Office::ColorFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::ConnectorFormat *t) -{ Q_ASSERT(!t); return new Office::ConnectorFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::FillFormat *t) -{ Q_ASSERT(!t); return new Office::FillFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::FreeformBuilder *t) -{ Q_ASSERT(!t); return new Office::FreeformBuilder; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::GroupShapes *t) -{ Q_ASSERT(!t); return new Office::GroupShapes; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::LineFormat *t) -{ Q_ASSERT(!t); return new Office::LineFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::ShapeNode *t) -{ Q_ASSERT(!t); return new Office::ShapeNode; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::ShapeNodes *t) -{ Q_ASSERT(!t); return new Office::ShapeNodes; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::PictureFormat *t) -{ Q_ASSERT(!t); return new Office::PictureFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::ShadowFormat *t) -{ Q_ASSERT(!t); return new Office::ShadowFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::Script *t) -{ Q_ASSERT(!t); return new Office::Script; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::Scripts *t) -{ Q_ASSERT(!t); return new Office::Scripts; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::Shape *t) -{ Q_ASSERT(!t); return new Office::Shape; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::ShapeRange *t) -{ Q_ASSERT(!t); return new Office::ShapeRange; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::Shapes *t) -{ Q_ASSERT(!t); return new Office::Shapes; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::TextEffectFormat *t) -{ Q_ASSERT(!t); return new Office::TextEffectFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::TextFrame *t) -{ Q_ASSERT(!t); return new Office::TextFrame; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::ThreeDFormat *t) -{ Q_ASSERT(!t); return new Office::ThreeDFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::IMsoDispCagNotifySink *t) -{ Q_ASSERT(!t); return new Office::IMsoDispCagNotifySink; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::Balloon *t) -{ Q_ASSERT(!t); return new Office::Balloon; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::BalloonCheckboxes *t) -{ Q_ASSERT(!t); return new Office::BalloonCheckboxes; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::BalloonCheckbox *t) -{ Q_ASSERT(!t); return new Office::BalloonCheckbox; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::BalloonLabels *t) -{ Q_ASSERT(!t); return new Office::BalloonLabels; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::BalloonLabel *t) -{ Q_ASSERT(!t); return new Office::BalloonLabel; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::AnswerWizardFiles *t) -{ Q_ASSERT(!t); return new Office::AnswerWizardFiles; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::AnswerWizard *t) -{ Q_ASSERT(!t); return new Office::AnswerWizard; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::Assistant *t) -{ Q_ASSERT(!t); return new Office::Assistant; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::IFoundFiles *t) -{ Q_ASSERT(!t); return new Office::IFoundFiles; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::IFind *t) -{ Q_ASSERT(!t); return new Office::IFind; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::FoundFiles *t) -{ Q_ASSERT(!t); return new Office::FoundFiles; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::PropertyTest *t) -{ Q_ASSERT(!t); return new Office::PropertyTest; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::PropertyTests *t) -{ Q_ASSERT(!t); return new Office::PropertyTests; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::FileSearch *t) -{ Q_ASSERT(!t); return new Office::FileSearch; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::COMAddIn *t) -{ Q_ASSERT(!t); return new Office::COMAddIn; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::COMAddIns *t) -{ Q_ASSERT(!t); return new Office::COMAddIns; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::LanguageSettings *t) -{ Q_ASSERT(!t); return new Office::LanguageSettings; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::ICommandBarsEvents *t) -{ Q_ASSERT(!t); return new Office::ICommandBarsEvents; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::CommandBars *t) -{ Q_ASSERT(!t); return new Office::CommandBars; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::ICommandBarComboBoxEvents *t) -{ Q_ASSERT(!t); return new Office::ICommandBarComboBoxEvents; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::CommandBarComboBox *t) -{ Q_ASSERT(!t); return new Office::CommandBarComboBox; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::ICommandBarButtonEvents *t) -{ Q_ASSERT(!t); return new Office::ICommandBarButtonEvents; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::CommandBarButton *t) -{ Q_ASSERT(!t); return new Office::CommandBarButton; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::WebPageFont *t) -{ Q_ASSERT(!t); return new Office::WebPageFont; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::WebPageFonts *t) -{ Q_ASSERT(!t); return new Office::WebPageFonts; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::HTMLProjectItem *t) -{ Q_ASSERT(!t); return new Office::HTMLProjectItem; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::HTMLProjectItems *t) -{ Q_ASSERT(!t); return new Office::HTMLProjectItems; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::HTMLProject *t) -{ Q_ASSERT(!t); return new Office::HTMLProject; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::MsoDebugOptions *t) -{ Q_ASSERT(!t); return new Office::MsoDebugOptions; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::FileDialogSelectedItems *t) -{ Q_ASSERT(!t); return new Office::FileDialogSelectedItems; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::FileDialogFilter *t) -{ Q_ASSERT(!t); return new Office::FileDialogFilter; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::FileDialogFilters *t) -{ Q_ASSERT(!t); return new Office::FileDialogFilters; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::FileDialog *t) -{ Q_ASSERT(!t); return new Office::FileDialog; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::SignatureSet *t) -{ Q_ASSERT(!t); return new Office::SignatureSet; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::Signature *t) -{ Q_ASSERT(!t); return new Office::Signature; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::IMsoEnvelopeVB *t) -{ Q_ASSERT(!t); return new Office::IMsoEnvelopeVB; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::MsoEnvelope *t) -{ Q_ASSERT(!t); return new Office::MsoEnvelope; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::FileTypes *t) -{ Q_ASSERT(!t); return new Office::FileTypes; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::SearchFolders *t) -{ Q_ASSERT(!t); return new Office::SearchFolders; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::ScopeFolders *t) -{ Q_ASSERT(!t); return new Office::ScopeFolders; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::ScopeFolder *t) -{ Q_ASSERT(!t); return new Office::ScopeFolder; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::SearchScope *t) -{ Q_ASSERT(!t); return new Office::SearchScope; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::SearchScopes *t) -{ Q_ASSERT(!t); return new Office::SearchScopes; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::IMsoDiagram *t) -{ Q_ASSERT(!t); return new Office::IMsoDiagram; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::DiagramNodes *t) -{ Q_ASSERT(!t); return new Office::DiagramNodes; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::DiagramNodeChildren *t) -{ Q_ASSERT(!t); return new Office::DiagramNodeChildren; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::DiagramNode *t) -{ Q_ASSERT(!t); return new Office::DiagramNode; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::CanvasShapes *t) -{ Q_ASSERT(!t); return new Office::CanvasShapes; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::OfficeDataSourceObject *t) -{ Q_ASSERT(!t); return new Office::OfficeDataSourceObject; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::ODSOColumn *t) -{ Q_ASSERT(!t); return new Office::ODSOColumn; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::ODSOColumns *t) -{ Q_ASSERT(!t); return new Office::ODSOColumns; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::ODSOFilter *t) -{ Q_ASSERT(!t); return new Office::ODSOFilter; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::ODSOFilters *t) -{ Q_ASSERT(!t); return new Office::ODSOFilters; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::NewFile *t) -{ Q_ASSERT(!t); return new Office::NewFile; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::WebComponent *t) -{ Q_ASSERT(!t); return new Office::WebComponent; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::WebComponentWindowExternal *t) -{ Q_ASSERT(!t); return new Office::WebComponentWindowExternal; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::WebComponentFormat *t) -{ Q_ASSERT(!t); return new Office::WebComponentFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::ILicWizExternal *t) -{ Q_ASSERT(!t); return new Office::ILicWizExternal; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::ILicValidator *t) -{ Q_ASSERT(!t); return new Office::ILicValidator; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::ILicAgent *t) -{ Q_ASSERT(!t); return new Office::ILicAgent; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::IMsoEServicesDialog *t) -{ Q_ASSERT(!t); return new Office::IMsoEServicesDialog; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::WebComponentProperties *t) -{ Q_ASSERT(!t); return new Office::WebComponentProperties; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::SmartDocument *t) -{ Q_ASSERT(!t); return new Office::SmartDocument; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::SharedWorkspaceMember *t) -{ Q_ASSERT(!t); return new Office::SharedWorkspaceMember; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::SharedWorkspaceMembers *t) -{ Q_ASSERT(!t); return new Office::SharedWorkspaceMembers; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::SharedWorkspaceTask *t) -{ Q_ASSERT(!t); return new Office::SharedWorkspaceTask; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::SharedWorkspaceTasks *t) -{ Q_ASSERT(!t); return new Office::SharedWorkspaceTasks; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::SharedWorkspaceFile *t) -{ Q_ASSERT(!t); return new Office::SharedWorkspaceFile; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::SharedWorkspaceFiles *t) -{ Q_ASSERT(!t); return new Office::SharedWorkspaceFiles; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::SharedWorkspaceFolder *t) -{ Q_ASSERT(!t); return new Office::SharedWorkspaceFolder; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::SharedWorkspaceFolders *t) -{ Q_ASSERT(!t); return new Office::SharedWorkspaceFolders; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::SharedWorkspaceLink *t) -{ Q_ASSERT(!t); return new Office::SharedWorkspaceLink; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::SharedWorkspaceLinks *t) -{ Q_ASSERT(!t); return new Office::SharedWorkspaceLinks; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::SharedWorkspace *t) -{ Q_ASSERT(!t); return new Office::SharedWorkspace; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::Sync *t) -{ Q_ASSERT(!t); return new Office::Sync; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::DocumentLibraryVersion *t) -{ Q_ASSERT(!t); return new Office::DocumentLibraryVersion; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::DocumentLibraryVersions *t) -{ Q_ASSERT(!t); return new Office::DocumentLibraryVersions; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::UserPermission *t) -{ Q_ASSERT(!t); return new Office::UserPermission; } - -template<> -inline void *qMetaTypeConstructHelper(const Office::Permission *t) -{ Q_ASSERT(!t); return new Office::Permission; } - -#endif - diff --git a/thirdparty/microsoft/ppt/include/msppt.h b/thirdparty/microsoft/ppt/include/msppt.h deleted file mode 100644 index d93f05c0..00000000 --- a/thirdparty/microsoft/ppt/include/msppt.h +++ /dev/null @@ -1,34781 +0,0 @@ -/**************************************************************************** -** -** Namespace PowerPoint generated by dumpcpp from type library -** c:\Program Files\Microsoft Office\OFFICE11\msppt.olb -** -****************************************************************************/ - -#ifndef QAX_DUMPCPP_POWERPOINT_H -#define QAX_DUMPCPP_POWERPOINT_H - -// Define this symbol to __declspec(dllexport) or __declspec(dllimport) -#ifndef POWERPOINT_EXPORT -#define POWERPOINT_EXPORT -#endif - -#include -#include -#include -#include - -struct IDispatch; - - -// Referenced namespace -namespace Office { - class CommandBars; - class Assistant; - class FileSearch; - class IFind; - enum MsoTriState; - class AnswerWizard; - class COMAddIns; - class LanguageSettings; - class MsoDebugOptions; - enum MsoFeatureInstall; - class FileDialog; - enum MsoFileDialogType; - enum MsoAutomationSecurity; - class NewFile; - enum MsoColorType; - enum MsoExtraInfoMethod; - enum MsoFarEastLineBreakLanguageID; - enum MsoLanguageID; - class HTMLProject; - enum MsoEncoding; - class SignatureSet; - class Permission; - class SharedWorkspace; - class Sync; - class DocumentLibraryVersions; - enum MsoHyperlinkType; - enum MsoOrientation; - class Scripts; - enum MsoCalloutType; - enum MsoConnectorType; - enum MsoTextOrientation; - enum MsoAutoShapeType; - enum MsoPresetTextEffect; - enum MsoEditingType; - enum MsoDiagramType; - enum MsoSegmentType; - enum MsoFlipCmd; - enum MsoScaleFrom; - enum MsoZOrderCmd; - enum MsoBlackWhiteMode; - enum MsoShapeType; - class Script; - enum MsoAlignCmd; - enum MsoDistributeCmd; - enum MsoPictureColorType; - enum MsoGradientStyle; - enum MsoPatternType; - enum MsoPresetGradientType; - enum MsoPresetTexture; - enum MsoGradientColorType; - enum MsoTextureType; - enum MsoFillType; - enum MsoArrowheadLength; - enum MsoArrowheadStyle; - enum MsoArrowheadWidth; - enum MsoLineDashStyle; - enum MsoLineStyle; - enum MsoShadowType; - enum MsoTextEffectAlignment; - enum MsoPresetTextEffectShape; - enum MsoPresetThreeDFormat; - enum MsoPresetExtrusionDirection; - enum MsoExtrusionColorType; - enum MsoPresetLightingDirection; - enum MsoPresetLightingSoftness; - enum MsoPresetMaterial; - enum MsoHorizontalAnchor; - enum MsoVerticalAnchor; - enum MsoCalloutDropType; - enum MsoCalloutAngleType; - enum MsoScreenSize; - class WebPageFonts; - enum MsoTargetBrowser; - enum MsoRelativeNodePosition; - enum MsoDiagramNodeType; - enum MsoOrgChartLayoutType; -} - -namespace VBIDE { - class VBE; - class VBProject; -} - - -namespace PowerPoint { - - enum MsoAnimAccumulate { - msoAnimAccumulateNone = 1, - msoAnimAccumulateAlways = 2 - }; - - enum MsoAnimAdditive { - msoAnimAdditiveAddBase = 1, - msoAnimAdditiveAddSum = 2 - }; - - enum MsoAnimAfterEffect { - msoAnimAfterEffectMixed = -1, - msoAnimAfterEffectNone = 0, - msoAnimAfterEffectDim = 1, - msoAnimAfterEffectHide = 2, - msoAnimAfterEffectHideOnNextClick= 3 - }; - - enum MsoAnimCommandType { - msoAnimCommandTypeEvent = 0, - msoAnimCommandTypeCall = 1, - msoAnimCommandTypeVerb = 2 - }; - - enum MsoAnimDirection { - msoAnimDirectionNone = 0, - msoAnimDirectionUp = 1, - msoAnimDirectionRight = 2, - msoAnimDirectionDown = 3, - msoAnimDirectionLeft = 4, - msoAnimDirectionOrdinalMask= 5, - msoAnimDirectionUpLeft = 6, - msoAnimDirectionUpRight = 7, - msoAnimDirectionDownRight= 8, - msoAnimDirectionDownLeft= 9, - msoAnimDirectionTop = 10, - msoAnimDirectionBottom = 11, - msoAnimDirectionTopLeft = 12, - msoAnimDirectionTopRight= 13, - msoAnimDirectionBottomRight= 14, - msoAnimDirectionBottomLeft= 15, - msoAnimDirectionHorizontal= 16, - msoAnimDirectionVertical= 17, - msoAnimDirectionAcross = 18, - msoAnimDirectionIn = 19, - msoAnimDirectionOut = 20, - msoAnimDirectionClockwise= 21, - msoAnimDirectionCounterclockwise= 22, - msoAnimDirectionHorizontalIn= 23, - msoAnimDirectionHorizontalOut= 24, - msoAnimDirectionVerticalIn= 25, - msoAnimDirectionVerticalOut= 26, - msoAnimDirectionSlightly= 27, - msoAnimDirectionCenter = 28, - msoAnimDirectionInSlightly= 29, - msoAnimDirectionInCenter= 30, - msoAnimDirectionInBottom= 31, - msoAnimDirectionOutSlightly= 32, - msoAnimDirectionOutCenter= 33, - msoAnimDirectionOutBottom= 34, - msoAnimDirectionFontBold= 35, - msoAnimDirectionFontItalic= 36, - msoAnimDirectionFontUnderline= 37, - msoAnimDirectionFontStrikethrough= 38, - msoAnimDirectionFontShadow= 39, - msoAnimDirectionFontAllCaps= 40, - msoAnimDirectionInstant = 41, - msoAnimDirectionGradual = 42, - msoAnimDirectionCycleClockwise= 43, - msoAnimDirectionCycleCounterclockwise= 44 - }; - - enum MsoAnimEffect { - msoAnimEffectCustom = 0, - msoAnimEffectAppear = 1, - msoAnimEffectFly = 2, - msoAnimEffectBlinds = 3, - msoAnimEffectBox = 4, - msoAnimEffectCheckerboard= 5, - msoAnimEffectCircle = 6, - msoAnimEffectCrawl = 7, - msoAnimEffectDiamond = 8, - msoAnimEffectDissolve = 9, - msoAnimEffectFade = 10, - msoAnimEffectFlashOnce = 11, - msoAnimEffectPeek = 12, - msoAnimEffectPlus = 13, - msoAnimEffectRandomBars = 14, - msoAnimEffectSpiral = 15, - msoAnimEffectSplit = 16, - msoAnimEffectStretch = 17, - msoAnimEffectStrips = 18, - msoAnimEffectSwivel = 19, - msoAnimEffectWedge = 20, - msoAnimEffectWheel = 21, - msoAnimEffectWipe = 22, - msoAnimEffectZoom = 23, - msoAnimEffectRandomEffects= 24, - msoAnimEffectBoomerang = 25, - msoAnimEffectBounce = 26, - msoAnimEffectColorReveal= 27, - msoAnimEffectCredits = 28, - msoAnimEffectEaseIn = 29, - msoAnimEffectFloat = 30, - msoAnimEffectGrowAndTurn= 31, - msoAnimEffectLightSpeed = 32, - msoAnimEffectPinwheel = 33, - msoAnimEffectRiseUp = 34, - msoAnimEffectSwish = 35, - msoAnimEffectThinLine = 36, - msoAnimEffectUnfold = 37, - msoAnimEffectWhip = 38, - msoAnimEffectAscend = 39, - msoAnimEffectCenterRevolve= 40, - msoAnimEffectFadedSwivel= 41, - msoAnimEffectDescend = 42, - msoAnimEffectSling = 43, - msoAnimEffectSpinner = 44, - msoAnimEffectStretchy = 45, - msoAnimEffectZip = 46, - msoAnimEffectArcUp = 47, - msoAnimEffectFadedZoom = 48, - msoAnimEffectGlide = 49, - msoAnimEffectExpand = 50, - msoAnimEffectFlip = 51, - msoAnimEffectShimmer = 52, - msoAnimEffectFold = 53, - msoAnimEffectChangeFillColor= 54, - msoAnimEffectChangeFont = 55, - msoAnimEffectChangeFontColor= 56, - msoAnimEffectChangeFontSize= 57, - msoAnimEffectChangeFontStyle= 58, - msoAnimEffectGrowShrink = 59, - msoAnimEffectChangeLineColor= 60, - msoAnimEffectSpin = 61, - msoAnimEffectTransparency= 62, - msoAnimEffectBoldFlash = 63, - msoAnimEffectBlast = 64, - msoAnimEffectBoldReveal = 65, - msoAnimEffectBrushOnColor= 66, - msoAnimEffectBrushOnUnderline= 67, - msoAnimEffectColorBlend = 68, - msoAnimEffectColorWave = 69, - msoAnimEffectComplementaryColor= 70, - msoAnimEffectComplementaryColor2= 71, - msoAnimEffectContrastingColor= 72, - msoAnimEffectDarken = 73, - msoAnimEffectDesaturate = 74, - msoAnimEffectFlashBulb = 75, - msoAnimEffectFlicker = 76, - msoAnimEffectGrowWithColor= 77, - msoAnimEffectLighten = 78, - msoAnimEffectStyleEmphasis= 79, - msoAnimEffectTeeter = 80, - msoAnimEffectVerticalGrow= 81, - msoAnimEffectWave = 82, - msoAnimEffectMediaPlay = 83, - msoAnimEffectMediaPause = 84, - msoAnimEffectMediaStop = 85, - msoAnimEffectPathCircle = 86, - msoAnimEffectPathRightTriangle= 87, - msoAnimEffectPathDiamond= 88, - msoAnimEffectPathHexagon= 89, - msoAnimEffectPath5PointStar= 90, - msoAnimEffectPathCrescentMoon= 91, - msoAnimEffectPathSquare = 92, - msoAnimEffectPathTrapezoid= 93, - msoAnimEffectPathHeart = 94, - msoAnimEffectPathOctagon= 95, - msoAnimEffectPath6PointStar= 96, - msoAnimEffectPathFootball= 97, - msoAnimEffectPathEqualTriangle= 98, - msoAnimEffectPathParallelogram= 99, - msoAnimEffectPathPentagon= 100, - msoAnimEffectPath4PointStar= 101, - msoAnimEffectPath8PointStar= 102, - msoAnimEffectPathTeardrop= 103, - msoAnimEffectPathPointyStar= 104, - msoAnimEffectPathCurvedSquare= 105, - msoAnimEffectPathCurvedX= 106, - msoAnimEffectPathVerticalFigure8= 107, - msoAnimEffectPathCurvyStar= 108, - msoAnimEffectPathLoopdeLoop= 109, - msoAnimEffectPathBuzzsaw= 110, - msoAnimEffectPathHorizontalFigure8= 111, - msoAnimEffectPathPeanut = 112, - msoAnimEffectPathFigure8Four= 113, - msoAnimEffectPathNeutron= 114, - msoAnimEffectPathSwoosh = 115, - msoAnimEffectPathBean = 116, - msoAnimEffectPathPlus = 117, - msoAnimEffectPathInvertedTriangle= 118, - msoAnimEffectPathInvertedSquare= 119, - msoAnimEffectPathLeft = 120, - msoAnimEffectPathTurnRight= 121, - msoAnimEffectPathArcDown= 122, - msoAnimEffectPathZigzag = 123, - msoAnimEffectPathSCurve2= 124, - msoAnimEffectPathSineWave= 125, - msoAnimEffectPathBounceLeft= 126, - msoAnimEffectPathDown = 127, - msoAnimEffectPathTurnUp = 128, - msoAnimEffectPathArcUp = 129, - msoAnimEffectPathHeartbeat= 130, - msoAnimEffectPathSpiralRight= 131, - msoAnimEffectPathWave = 132, - msoAnimEffectPathCurvyLeft= 133, - msoAnimEffectPathDiagonalDownRight= 134, - msoAnimEffectPathTurnDown= 135, - msoAnimEffectPathArcLeft= 136, - msoAnimEffectPathFunnel = 137, - msoAnimEffectPathSpring = 138, - msoAnimEffectPathBounceRight= 139, - msoAnimEffectPathSpiralLeft= 140, - msoAnimEffectPathDiagonalUpRight= 141, - msoAnimEffectPathTurnUpRight= 142, - msoAnimEffectPathArcRight= 143, - msoAnimEffectPathSCurve1= 144, - msoAnimEffectPathDecayingWave= 145, - msoAnimEffectPathCurvyRight= 146, - msoAnimEffectPathStairsDown= 147, - msoAnimEffectPathUp = 148, - msoAnimEffectPathRight = 149 - }; - - enum MsoAnimEffectAfter { - msoAnimEffectAfterFreeze= 1, - msoAnimEffectAfterRemove= 2, - msoAnimEffectAfterHold = 3, - msoAnimEffectAfterTransition= 4 - }; - - enum MsoAnimEffectRestart { - msoAnimEffectRestartAlways= 1, - msoAnimEffectRestartWhenOff= 2, - msoAnimEffectRestartNever= 3 - }; - - enum MsoAnimFilterEffectSubtype { - msoAnimFilterEffectSubtypeNone= 0, - msoAnimFilterEffectSubtypeInVertical= 1, - msoAnimFilterEffectSubtypeOutVertical= 2, - msoAnimFilterEffectSubtypeInHorizontal= 3, - msoAnimFilterEffectSubtypeOutHorizontal= 4, - msoAnimFilterEffectSubtypeHorizontal= 5, - msoAnimFilterEffectSubtypeVertical= 6, - msoAnimFilterEffectSubtypeIn= 7, - msoAnimFilterEffectSubtypeOut= 8, - msoAnimFilterEffectSubtypeAcross= 9, - msoAnimFilterEffectSubtypeFromLeft= 10, - msoAnimFilterEffectSubtypeFromRight= 11, - msoAnimFilterEffectSubtypeFromTop= 12, - msoAnimFilterEffectSubtypeFromBottom= 13, - msoAnimFilterEffectSubtypeDownLeft= 14, - msoAnimFilterEffectSubtypeUpLeft= 15, - msoAnimFilterEffectSubtypeDownRight= 16, - msoAnimFilterEffectSubtypeUpRight= 17, - msoAnimFilterEffectSubtypeSpokes1= 18, - msoAnimFilterEffectSubtypeSpokes2= 19, - msoAnimFilterEffectSubtypeSpokes3= 20, - msoAnimFilterEffectSubtypeSpokes4= 21, - msoAnimFilterEffectSubtypeSpokes8= 22, - msoAnimFilterEffectSubtypeLeft= 23, - msoAnimFilterEffectSubtypeRight= 24, - msoAnimFilterEffectSubtypeDown= 25, - msoAnimFilterEffectSubtypeUp= 26 - }; - - enum MsoAnimFilterEffectType { - msoAnimFilterEffectTypeNone= 0, - msoAnimFilterEffectTypeBarn= 1, - msoAnimFilterEffectTypeBlinds= 2, - msoAnimFilterEffectTypeBox= 3, - msoAnimFilterEffectTypeCheckerboard= 4, - msoAnimFilterEffectTypeCircle= 5, - msoAnimFilterEffectTypeDiamond= 6, - msoAnimFilterEffectTypeDissolve= 7, - msoAnimFilterEffectTypeFade= 8, - msoAnimFilterEffectTypeImage= 9, - msoAnimFilterEffectTypePixelate= 10, - msoAnimFilterEffectTypePlus= 11, - msoAnimFilterEffectTypeRandomBar= 12, - msoAnimFilterEffectTypeSlide= 13, - msoAnimFilterEffectTypeStretch= 14, - msoAnimFilterEffectTypeStrips= 15, - msoAnimFilterEffectTypeWedge= 16, - msoAnimFilterEffectTypeWheel= 17, - msoAnimFilterEffectTypeWipe= 18 - }; - - enum MsoAnimProperty { - msoAnimNone = 0, - msoAnimX = 1, - msoAnimY = 2, - msoAnimWidth = 3, - msoAnimHeight = 4, - msoAnimOpacity = 5, - msoAnimRotation = 6, - msoAnimColor = 7, - msoAnimVisibility = 8, - msoAnimTextFontBold = 100, - msoAnimTextFontColor = 101, - msoAnimTextFontEmboss = 102, - msoAnimTextFontItalic = 103, - msoAnimTextFontName = 104, - msoAnimTextFontShadow = 105, - msoAnimTextFontSize = 106, - msoAnimTextFontSubscript= 107, - msoAnimTextFontSuperscript= 108, - msoAnimTextFontUnderline= 109, - msoAnimTextFontStrikeThrough= 110, - msoAnimTextBulletCharacter= 111, - msoAnimTextBulletFontName= 112, - msoAnimTextBulletNumber = 113, - msoAnimTextBulletColor = 114, - msoAnimTextBulletRelativeSize= 115, - msoAnimTextBulletStyle = 116, - msoAnimTextBulletType = 117, - msoAnimShapePictureContrast= 1000, - msoAnimShapePictureBrightness= 1001, - msoAnimShapePictureGamma= 1002, - msoAnimShapePictureGrayscale= 1003, - msoAnimShapeFillOn = 1004, - msoAnimShapeFillColor = 1005, - msoAnimShapeFillOpacity = 1006, - msoAnimShapeFillBackColor= 1007, - msoAnimShapeLineOn = 1008, - msoAnimShapeLineColor = 1009, - msoAnimShapeShadowOn = 1010, - msoAnimShapeShadowType = 1011, - msoAnimShapeShadowColor = 1012, - msoAnimShapeShadowOpacity= 1013, - msoAnimShapeShadowOffsetX= 1014, - msoAnimShapeShadowOffsetY= 1015 - }; - - enum MsoAnimTextUnitEffect { - msoAnimTextUnitEffectMixed= -1, - msoAnimTextUnitEffectByParagraph= 0, - msoAnimTextUnitEffectByCharacter= 1, - msoAnimTextUnitEffectByWord= 2 - }; - - enum MsoAnimTriggerType { - msoAnimTriggerMixed = -1, - msoAnimTriggerNone = 0, - msoAnimTriggerOnPageClick= 1, - msoAnimTriggerWithPrevious= 2, - msoAnimTriggerAfterPrevious= 3, - msoAnimTriggerOnShapeClick= 4 - }; - - enum MsoAnimType { - msoAnimTypeMixed = -2, - msoAnimTypeNone = 0, - msoAnimTypeMotion = 1, - msoAnimTypeColor = 2, - msoAnimTypeScale = 3, - msoAnimTypeRotation = 4, - msoAnimTypeProperty = 5, - msoAnimTypeCommand = 6, - msoAnimTypeFilter = 7, - msoAnimTypeSet = 8 - }; - - enum MsoAnimateByLevel { - msoAnimateLevelMixed = -1, - msoAnimateLevelNone = 0, - msoAnimateTextByAllLevels= 1, - msoAnimateTextByFirstLevel= 2, - msoAnimateTextBySecondLevel= 3, - msoAnimateTextByThirdLevel= 4, - msoAnimateTextByFourthLevel= 5, - msoAnimateTextByFifthLevel= 6, - msoAnimateChartAllAtOnce= 7, - msoAnimateChartByCategory= 8, - msoAnimateChartByCategoryElements= 9, - msoAnimateChartBySeries = 10, - msoAnimateChartBySeriesElements= 11, - msoAnimateDiagramAllAtOnce= 12, - msoAnimateDiagramDepthByNode= 13, - msoAnimateDiagramDepthByBranch= 14, - msoAnimateDiagramBreadthByNode= 15, - msoAnimateDiagramBreadthByLevel= 16, - msoAnimateDiagramClockwise= 17, - msoAnimateDiagramClockwiseIn= 18, - msoAnimateDiagramClockwiseOut= 19, - msoAnimateDiagramCounterClockwise= 20, - msoAnimateDiagramCounterClockwiseIn= 21, - msoAnimateDiagramCounterClockwiseOut= 22, - msoAnimateDiagramInByRing= 23, - msoAnimateDiagramOutByRing= 24, - msoAnimateDiagramUp = 25, - msoAnimateDiagramDown = 26 - }; - - enum PpActionType { - ppActionMixed = -2, - ppActionNone = 0, - ppActionNextSlide = 1, - ppActionPreviousSlide = 2, - ppActionFirstSlide = 3, - ppActionLastSlide = 4, - ppActionLastSlideViewed = 5, - ppActionEndShow = 6, - ppActionHyperlink = 7, - ppActionRunMacro = 8, - ppActionRunProgram = 9, - ppActionNamedSlideShow = 10, - ppActionOLEVerb = 11, - ppActionPlay = 12 - }; - - enum PpAdvanceMode { - ppAdvanceModeMixed = -2, - ppAdvanceOnClick = 1, - ppAdvanceOnTime = 2 - }; - - enum PpAfterEffect { - ppAfterEffectMixed = -2, - ppAfterEffectNothing = 0, - ppAfterEffectHide = 1, - ppAfterEffectDim = 2, - ppAfterEffectHideOnClick= 3 - }; - - enum PpAlertLevel { - ppAlertsNone = 1, - ppAlertsAll = 2 - }; - - enum PpArrangeStyle { - ppArrangeTiled = 1, - ppArrangeCascade = 2 - }; - - enum PpAutoSize { - ppAutoSizeMixed = -2, - ppAutoSizeNone = 0, - ppAutoSizeShapeToFitText= 1 - }; - - enum PpBaselineAlignment { - ppBaselineAlignMixed = -2, - ppBaselineAlignBaseline = 1, - ppBaselineAlignTop = 2, - ppBaselineAlignCenter = 3, - ppBaselineAlignFarEast50= 4 - }; - - enum PpBorderType { - ppBorderTop = 1, - ppBorderLeft = 2, - ppBorderBottom = 3, - ppBorderRight = 4, - ppBorderDiagonalDown = 5, - ppBorderDiagonalUp = 6 - }; - - enum PpBulletType { - ppBulletMixed = -2, - ppBulletNone = 0, - ppBulletUnnumbered = 1, - ppBulletNumbered = 2, - ppBulletPicture = 3 - }; - - enum PpChangeCase { - ppCaseSentence = 1, - ppCaseLower = 2, - ppCaseUpper = 3, - ppCaseTitle = 4, - ppCaseToggle = 5 - }; - - enum PpChartUnitEffect { - ppAnimateChartMixed = -2, - ppAnimateBySeries = 1, - ppAnimateByCategory = 2, - ppAnimateBySeriesElements= 3, - ppAnimateByCategoryElements= 4, - ppAnimateChartAllAtOnce = 5 - }; - - enum PpColorSchemeIndex { - ppSchemeColorMixed = -2, - ppNotSchemeColor = 0, - ppBackground = 1, - ppForeground = 2, - ppShadow = 3, - ppTitle = 4, - ppFill = 5, - ppAccent1 = 6, - ppAccent2 = 7, - ppAccent3 = 8 - }; - - enum PpDateTimeFormat { - ppDateTimeFormatMixed = -2, - ppDateTimeMdyy = 1, - ppDateTimeddddMMMMddyyyy= 2, - ppDateTimedMMMMyyyy = 3, - ppDateTimeMMMMdyyyy = 4, - ppDateTimedMMMyy = 5, - ppDateTimeMMMMyy = 6, - ppDateTimeMMyy = 7, - ppDateTimeMMddyyHmm = 8, - ppDateTimeMMddyyhmmAMPM = 9, - ppDateTimeHmm = 10, - ppDateTimeHmmss = 11, - ppDateTimehmmAMPM = 12, - ppDateTimehmmssAMPM = 13, - ppDateTimeFigureOut = 14 - }; - - enum PpDirection { - ppDirectionMixed = -2, - ppDirectionLeftToRight = 1, - ppDirectionRightToLeft = 2 - }; - - enum PpEntryEffect { - ppEffectMixed = -2, - ppEffectNone = 0, - ppEffectCut = 257, - ppEffectCutThroughBlack = 258, - ppEffectRandom = 513, - ppEffectBlindsHorizontal= 769, - ppEffectBlindsVertical = 770, - ppEffectCheckerboardAcross= 1025, - ppEffectCheckerboardDown= 1026, - ppEffectCoverLeft = 1281, - ppEffectCoverUp = 1282, - ppEffectCoverRight = 1283, - ppEffectCoverDown = 1284, - ppEffectCoverLeftUp = 1285, - ppEffectCoverRightUp = 1286, - ppEffectCoverLeftDown = 1287, - ppEffectCoverRightDown = 1288, - ppEffectDissolve = 1537, - ppEffectFade = 1793, - ppEffectUncoverLeft = 2049, - ppEffectUncoverUp = 2050, - ppEffectUncoverRight = 2051, - ppEffectUncoverDown = 2052, - ppEffectUncoverLeftUp = 2053, - ppEffectUncoverRightUp = 2054, - ppEffectUncoverLeftDown = 2055, - ppEffectUncoverRightDown= 2056, - ppEffectRandomBarsHorizontal= 2305, - ppEffectRandomBarsVertical= 2306, - ppEffectStripsUpLeft = 2561, - ppEffectStripsUpRight = 2562, - ppEffectStripsDownLeft = 2563, - ppEffectStripsDownRight = 2564, - ppEffectStripsLeftUp = 2565, - ppEffectStripsRightUp = 2566, - ppEffectStripsLeftDown = 2567, - ppEffectStripsRightDown = 2568, - ppEffectWipeLeft = 2817, - ppEffectWipeUp = 2818, - ppEffectWipeRight = 2819, - ppEffectWipeDown = 2820, - ppEffectBoxOut = 3073, - ppEffectBoxIn = 3074, - ppEffectFlyFromLeft = 3329, - ppEffectFlyFromTop = 3330, - ppEffectFlyFromRight = 3331, - ppEffectFlyFromBottom = 3332, - ppEffectFlyFromTopLeft = 3333, - ppEffectFlyFromTopRight = 3334, - ppEffectFlyFromBottomLeft= 3335, - ppEffectFlyFromBottomRight= 3336, - ppEffectPeekFromLeft = 3337, - ppEffectPeekFromDown = 3338, - ppEffectPeekFromRight = 3339, - ppEffectPeekFromUp = 3340, - ppEffectCrawlFromLeft = 3341, - ppEffectCrawlFromUp = 3342, - ppEffectCrawlFromRight = 3343, - ppEffectCrawlFromDown = 3344, - ppEffectZoomIn = 3345, - ppEffectZoomInSlightly = 3346, - ppEffectZoomOut = 3347, - ppEffectZoomOutSlightly = 3348, - ppEffectZoomCenter = 3349, - ppEffectZoomBottom = 3350, - ppEffectStretchAcross = 3351, - ppEffectStretchLeft = 3352, - ppEffectStretchUp = 3353, - ppEffectStretchRight = 3354, - ppEffectStretchDown = 3355, - ppEffectSwivel = 3356, - ppEffectSpiral = 3357, - ppEffectSplitHorizontalOut= 3585, - ppEffectSplitHorizontalIn= 3586, - ppEffectSplitVerticalOut= 3587, - ppEffectSplitVerticalIn = 3588, - ppEffectFlashOnceFast = 3841, - ppEffectFlashOnceMedium = 3842, - ppEffectFlashOnceSlow = 3843, - ppEffectAppear = 3844, - ppEffectCircleOut = 3845, - ppEffectDiamondOut = 3846, - ppEffectCombHorizontal = 3847, - ppEffectCombVertical = 3848, - ppEffectFadeSmoothly = 3849, - ppEffectNewsflash = 3850, - ppEffectPlusOut = 3851, - ppEffectPushDown = 3852, - ppEffectPushLeft = 3853, - ppEffectPushRight = 3854, - ppEffectPushUp = 3855, - ppEffectWedge = 3856, - ppEffectWheel1Spoke = 3857, - ppEffectWheel2Spokes = 3858, - ppEffectWheel3Spokes = 3859, - ppEffectWheel4Spokes = 3860, - ppEffectWheel8Spokes = 3861 - }; - - enum PpExportMode { - ppRelativeToSlide = 1, - ppClipRelativeToSlide = 2, - ppScaleToFit = 3, - ppScaleXY = 4 - }; - - enum PpFarEastLineBreakLevel { - ppFarEastLineBreakLevelNormal= 1, - ppFarEastLineBreakLevelStrict= 2, - ppFarEastLineBreakLevelCustom= 3 - }; - - enum PpFileDialogType { - ppFileDialogOpen = 1, - ppFileDialogSave = 2 - }; - - enum PpFollowColors { - ppFollowColorsMixed = -2, - ppFollowColorsNone = 0, - ppFollowColorsScheme = 1, - ppFollowColorsTextAndBackground= 2 - }; - - enum PpFrameColors { - ppFrameColorsBrowserColors= 1, - ppFrameColorsPresentationSchemeTextColor= 2, - ppFrameColorsPresentationSchemeAccentColor= 3, - ppFrameColorsWhiteTextOnBlack= 4, - ppFrameColorsBlackTextOnWhite= 5 - }; - - enum PpHTMLVersion { - ppHTMLv3 = 1, - ppHTMLv4 = 2, - ppHTMLDual = 3, - ppHTMLAutodetect = 4 - }; - - enum PpIndentControl { - ppIndentControlMixed = -2, - ppIndentReplaceAttr = 1, - ppIndentKeepAttr = 2 - }; - - enum PpMediaType { - ppMediaTypeMixed = -2, - ppMediaTypeOther = 1, - ppMediaTypeSound = 2, - ppMediaTypeMovie = 3 - }; - - enum PpMouseActivation { - ppMouseClick = 1, - ppMouseOver = 2 - }; - - enum PpNumberedBulletStyle { - ppBulletStyleMixed = -2, - ppBulletAlphaLCPeriod = 0, - ppBulletAlphaUCPeriod = 1, - ppBulletArabicParenRight= 2, - ppBulletArabicPeriod = 3, - ppBulletRomanLCParenBoth= 4, - ppBulletRomanLCParenRight= 5, - ppBulletRomanLCPeriod = 6, - ppBulletRomanUCPeriod = 7, - ppBulletAlphaLCParenBoth= 8, - ppBulletAlphaLCParenRight= 9, - ppBulletAlphaUCParenBoth= 10, - ppBulletAlphaUCParenRight= 11, - ppBulletArabicParenBoth = 12, - ppBulletArabicPlain = 13, - ppBulletRomanUCParenBoth= 14, - ppBulletRomanUCParenRight= 15, - ppBulletSimpChinPlain = 16, - ppBulletSimpChinPeriod = 17, - ppBulletCircleNumDBPlain= 18, - ppBulletCircleNumWDWhitePlain= 19, - ppBulletCircleNumWDBlackPlain= 20, - ppBulletTradChinPlain = 21, - ppBulletTradChinPeriod = 22, - ppBulletArabicAlphaDash = 23, - ppBulletArabicAbjadDash = 24, - ppBulletHebrewAlphaDash = 25, - ppBulletKanjiKoreanPlain= 26, - ppBulletKanjiKoreanPeriod= 27, - ppBulletArabicDBPlain = 28, - ppBulletArabicDBPeriod = 29, - ppBulletThaiAlphaPeriod = 30, - ppBulletThaiAlphaParenRight= 31, - ppBulletThaiAlphaParenBoth= 32, - ppBulletThaiNumPeriod = 33, - ppBulletThaiNumParenRight= 34, - ppBulletThaiNumParenBoth= 35, - ppBulletHindiAlphaPeriod= 36, - ppBulletHindiNumPeriod = 37, - ppBulletKanjiSimpChinDBPeriod= 38, - ppBulletHindiNumParenRight= 39, - ppBulletHindiAlpha1Period= 40 - }; - - enum PpParagraphAlignment { - ppAlignmentMixed = -2, - ppAlignLeft = 1, - ppAlignCenter = 2, - ppAlignRight = 3, - ppAlignJustify = 4, - ppAlignDistribute = 5, - ppAlignThaiDistribute = 6, - ppAlignJustifyLow = 7 - }; - - enum PpPasteDataType { - ppPasteDefault = 0, - ppPasteBitmap = 1, - ppPasteEnhancedMetafile = 2, - ppPasteMetafilePicture = 3, - ppPasteGIF = 4, - ppPasteJPG = 5, - ppPastePNG = 6, - ppPasteText = 7, - ppPasteHTML = 8, - ppPasteRTF = 9, - ppPasteOLEObject = 10, - ppPasteShape = 11 - }; - - enum PpPlaceholderType { - ppPlaceholderMixed = -2, - ppPlaceholderTitle = 1, - ppPlaceholderBody = 2, - ppPlaceholderCenterTitle= 3, - ppPlaceholderSubtitle = 4, - ppPlaceholderVerticalTitle= 5, - ppPlaceholderVerticalBody= 6, - ppPlaceholderObject = 7, - ppPlaceholderChart = 8, - ppPlaceholderBitmap = 9, - ppPlaceholderMediaClip = 10, - ppPlaceholderOrgChart = 11, - ppPlaceholderTable = 12, - ppPlaceholderSlideNumber= 13, - ppPlaceholderHeader = 14, - ppPlaceholderFooter = 15, - ppPlaceholderDate = 16 - }; - - enum PpPrintColorType { - ppPrintColor = 1, - ppPrintBlackAndWhite = 2, - ppPrintPureBlackAndWhite= 3 - }; - - enum PpPrintHandoutOrder { - ppPrintHandoutVerticalFirst= 1, - ppPrintHandoutHorizontalFirst= 2 - }; - - enum PpPrintOutputType { - ppPrintOutputSlides = 1, - ppPrintOutputTwoSlideHandouts= 2, - ppPrintOutputThreeSlideHandouts= 3, - ppPrintOutputSixSlideHandouts= 4, - ppPrintOutputNotesPages = 5, - ppPrintOutputOutline = 6, - ppPrintOutputBuildSlides= 7, - ppPrintOutputFourSlideHandouts= 8, - ppPrintOutputNineSlideHandouts= 9, - ppPrintOutputOneSlideHandouts= 10 - }; - - enum PpPrintRangeType { - ppPrintAll = 1, - ppPrintSelection = 2, - ppPrintCurrent = 3, - ppPrintSlideRange = 4, - ppPrintNamedSlideShow = 5 - }; - - enum PpPublishSourceType { - ppPublishAll = 1, - ppPublishSlideRange = 2, - ppPublishNamedSlideShow = 3 - }; - - enum PpRevisionInfo { - ppRevisionInfoNone = 0, - ppRevisionInfoBaseline = 1, - ppRevisionInfoMerged = 2 - }; - - enum PpSaveAsFileType { - ppSaveAsPresentation = 1, - ppSaveAsPowerPoint7 = 2, - ppSaveAsPowerPoint4 = 3, - ppSaveAsPowerPoint3 = 4, - ppSaveAsTemplate = 5, - ppSaveAsRTF = 6, - ppSaveAsShow = 7, - ppSaveAsAddIn = 8, - ppSaveAsPowerPoint4FarEast= 10, - ppSaveAsDefault = 11, - ppSaveAsHTML = 12, - ppSaveAsHTMLv3 = 13, - ppSaveAsHTMLDual = 14, - ppSaveAsMetaFile = 15, - ppSaveAsGIF = 16, - ppSaveAsJPG = 17, - ppSaveAsPNG = 18, - ppSaveAsBMP = 19, - ppSaveAsWebArchive = 20, - ppSaveAsTIF = 21, - ppSaveAsPresForReview = 22, - ppSaveAsEMF = 23 - }; - - enum PpSelectionType { - ppSelectionNone = 0, - ppSelectionSlides = 1, - ppSelectionShapes = 2, - ppSelectionText = 3 - }; - - enum PpShapeFormat { - ppShapeFormatGIF = 0, - ppShapeFormatJPG = 1, - ppShapeFormatPNG = 2, - ppShapeFormatBMP = 3, - ppShapeFormatWMF = 4, - ppShapeFormatEMF = 5 - }; - - enum PpSlideLayout { - ppLayoutMixed = -2, - ppLayoutTitle = 1, - ppLayoutText = 2, - ppLayoutTwoColumnText = 3, - ppLayoutTable = 4, - ppLayoutTextAndChart = 5, - ppLayoutChartAndText = 6, - ppLayoutOrgchart = 7, - ppLayoutChart = 8, - ppLayoutTextAndClipart = 9, - ppLayoutClipartAndText = 10, - ppLayoutTitleOnly = 11, - ppLayoutBlank = 12, - ppLayoutTextAndObject = 13, - ppLayoutObjectAndText = 14, - ppLayoutLargeObject = 15, - ppLayoutObject = 16, - ppLayoutTextAndMediaClip= 17, - ppLayoutMediaClipAndText= 18, - ppLayoutObjectOverText = 19, - ppLayoutTextOverObject = 20, - ppLayoutTextAndTwoObjects= 21, - ppLayoutTwoObjectsAndText= 22, - ppLayoutTwoObjectsOverText= 23, - ppLayoutFourObjects = 24, - ppLayoutVerticalText = 25, - ppLayoutClipArtAndVerticalText= 26, - ppLayoutVerticalTitleAndText= 27, - ppLayoutVerticalTitleAndTextOverChart= 28, - ppLayoutTwoObjects = 29, - ppLayoutObjectAndTwoObjects= 30, - ppLayoutTwoObjectsAndObject= 31 - }; - - enum PpSlideShowAdvanceMode { - ppSlideShowManualAdvance= 1, - ppSlideShowUseSlideTimings= 2, - ppSlideShowRehearseNewTimings= 3 - }; - - enum PpSlideShowPointerType { - ppSlideShowPointerNone = 0, - ppSlideShowPointerArrow = 1, - ppSlideShowPointerPen = 2, - ppSlideShowPointerAlwaysHidden= 3, - ppSlideShowPointerAutoArrow= 4, - ppSlideShowPointerEraser= 5 - }; - - enum PpSlideShowRangeType { - ppShowAll = 1, - ppShowSlideRange = 2, - ppShowNamedSlideShow = 3 - }; - - enum PpSlideShowState { - ppSlideShowRunning = 1, - ppSlideShowPaused = 2, - ppSlideShowBlackScreen = 3, - ppSlideShowWhiteScreen = 4, - ppSlideShowDone = 5 - }; - - enum PpSlideShowType { - ppShowTypeSpeaker = 1, - ppShowTypeWindow = 2, - ppShowTypeKiosk = 3 - }; - - enum PpSlideSizeType { - ppSlideSizeOnScreen = 1, - ppSlideSizeLetterPaper = 2, - ppSlideSizeA4Paper = 3, - ppSlideSize35MM = 4, - ppSlideSizeOverhead = 5, - ppSlideSizeBanner = 6, - ppSlideSizeCustom = 7, - ppSlideSizeLedgerPaper = 8, - ppSlideSizeA3Paper = 9, - ppSlideSizeB4ISOPaper = 10, - ppSlideSizeB5ISOPaper = 11, - ppSlideSizeB4JISPaper = 12, - ppSlideSizeB5JISPaper = 13, - ppSlideSizeHagakiCard = 14 - }; - - enum PpSoundEffectType { - ppSoundEffectsMixed = -2, - ppSoundNone = 0, - ppSoundStopPrevious = 1, - ppSoundFile = 2 - }; - - enum PpSoundFormatType { - ppSoundFormatMixed = -2, - ppSoundFormatNone = 0, - ppSoundFormatWAV = 1, - ppSoundFormatMIDI = 2, - ppSoundFormatCDAudio = 3 - }; - - enum PpTabStopType { - ppTabStopMixed = -2, - ppTabStopLeft = 1, - ppTabStopCenter = 2, - ppTabStopRight = 3, - ppTabStopDecimal = 4 - }; - - enum PpTextLevelEffect { - ppAnimateLevelMixed = -2, - ppAnimateLevelNone = 0, - ppAnimateByFirstLevel = 1, - ppAnimateBySecondLevel = 2, - ppAnimateByThirdLevel = 3, - ppAnimateByFourthLevel = 4, - ppAnimateByFifthLevel = 5, - ppAnimateByAllLevels = 16 - }; - - enum PpTextStyleType { - ppDefaultStyle = 1, - ppTitleStyle = 2, - ppBodyStyle = 3 - }; - - enum PpTextUnitEffect { - ppAnimateUnitMixed = -2, - ppAnimateByParagraph = 0, - ppAnimateByWord = 1, - ppAnimateByCharacter = 2 - }; - - enum PpTransitionSpeed { - ppTransitionSpeedMixed = -2, - ppTransitionSpeedSlow = 1, - ppTransitionSpeedMedium = 2, - ppTransitionSpeedFast = 3 - }; - - enum PpUpdateOption { - ppUpdateOptionMixed = -2, - ppUpdateOptionManual = 1, - ppUpdateOptionAutomatic = 2 - }; - - enum PpViewType { - ppViewSlide = 1, - ppViewSlideMaster = 2, - ppViewNotesPage = 3, - ppViewHandoutMaster = 4, - ppViewNotesMaster = 5, - ppViewOutline = 6, - ppViewSlideSorter = 7, - ppViewTitleMaster = 8, - ppViewNormal = 9, - ppViewPrintPreview = 10, - ppViewThumbnails = 11, - ppViewMasterThumbnails = 12 - }; - - enum PpWindowState { - ppWindowNormal = 1, - ppWindowMinimized = 2, - ppWindowMaximized = 3 - }; - -// forward declarations - enum PpWindowState; - enum PpArrangeStyle; - enum PpViewType; - enum PpColorSchemeIndex; - enum PpSlideSizeType; - enum PpSaveAsFileType; - enum PpTextStyleType; - enum PpSlideLayout; - enum PpEntryEffect; - enum PpTextLevelEffect; - enum PpTextUnitEffect; - enum PpChartUnitEffect; - enum PpAfterEffect; - enum PpAdvanceMode; - enum PpSoundEffectType; - enum PpFollowColors; - enum PpUpdateOption; - enum PpParagraphAlignment; - enum PpBaselineAlignment; - enum PpTabStopType; - enum PpIndentControl; - enum PpChangeCase; - enum PpSlideShowPointerType; - enum PpSlideShowState; - enum PpSlideShowAdvanceMode; - enum PpFileDialogType; - enum PpPrintOutputType; - enum PpPrintHandoutOrder; - enum PpPrintColorType; - enum PpSelectionType; - enum PpDirection; - enum PpDateTimeFormat; - enum PpTransitionSpeed; - enum PpMouseActivation; - enum PpActionType; - enum PpPlaceholderType; - enum PpSlideShowType; - enum PpPrintRangeType; - enum PpAutoSize; - enum PpMediaType; - enum PpSoundFormatType; - enum PpFarEastLineBreakLevel; - enum PpSlideShowRangeType; - enum PpFrameColors; - class PresEvents; - class SldEvents; - class MouseTracker; - class MouseDownHandler; - class OCXExtenderEvents; - enum PpBorderType; - enum PpHTMLVersion; - enum PpPublishSourceType; - enum PpBulletType; - enum PpNumberedBulletStyle; - enum PpShapeFormat; - enum PpExportMode; - class EApplication; - class MasterEvents; - enum PpPasteDataType; - enum MsoAnimEffect; - enum MsoAnimateByLevel; - enum MsoAnimTriggerType; - enum MsoAnimAfterEffect; - enum MsoAnimTextUnitEffect; - enum MsoAnimEffectRestart; - enum MsoAnimEffectAfter; - enum MsoAnimDirection; - enum MsoAnimType; - enum MsoAnimAdditive; - enum MsoAnimAccumulate; - enum MsoAnimProperty; - enum PpAlertLevel; - enum PpRevisionInfo; - enum MsoAnimCommandType; - enum MsoAnimFilterEffectType; - enum MsoAnimFilterEffectSubtype; - enum PpWindowState; - enum PpArrangeStyle; - enum PpViewType; - enum PpColorSchemeIndex; - enum PpSlideSizeType; - enum PpSaveAsFileType; - enum PpTextStyleType; - enum PpSlideLayout; - enum PpEntryEffect; - enum PpTextLevelEffect; - enum PpTextUnitEffect; - enum PpChartUnitEffect; - enum PpAfterEffect; - enum PpAdvanceMode; - enum PpSoundEffectType; - enum PpFollowColors; - enum PpUpdateOption; - enum PpParagraphAlignment; - enum PpBaselineAlignment; - enum PpTabStopType; - enum PpIndentControl; - enum PpChangeCase; - enum PpSlideShowPointerType; - enum PpSlideShowState; - enum PpSlideShowAdvanceMode; - enum PpFileDialogType; - enum PpPrintOutputType; - enum PpPrintHandoutOrder; - enum PpPrintColorType; - enum PpSelectionType; - enum PpDirection; - enum PpDateTimeFormat; - enum PpTransitionSpeed; - enum PpMouseActivation; - enum PpActionType; - enum PpPlaceholderType; - enum PpSlideShowType; - enum PpPrintRangeType; - enum PpAutoSize; - enum PpMediaType; - enum PpSoundFormatType; - enum PpFarEastLineBreakLevel; - enum PpSlideShowRangeType; - enum PpFrameColors; - class Presentations; - class DocumentWindows; - class DocumentWindow; - class Presentation; - class SlideShowWindows; - class AddIns; - class DefaultWebOptions; - class AutoCorrect; - class Options; - class Application; - class SlideShowView; - class SlideRange; - class ShapeRange; - class TextRange; - class SlideShowWindow; - class Selection; - class View; - class Pane; - class Panes; - class PrintOptions; - class Slide; - class ColorFormat; - class MouseTracker; - class NamedSlideShows; - class NamedSlideShow; - class PrintRanges; - class PrintRange; - class AddIn; - class PresEvents; - class _Master; - class Slides; - class PageSetup; - class ColorSchemes; - class ExtraColors; - class SlideShowSettings; - class Fonts; - class Tags; - class Shape; - class PublishObjects; - class WebOptions; - class Designs; - class Hyperlink; - class Font; - class Shapes; - class HeadersFooters; - class SlideShowTransition; - class ColorScheme; - class Hyperlinks; - class Comments; - class Design; - class TimeLine; - class TextStyles; - class SldEvents; - class RGBColor; - class SoundEffect; - class HeaderFooter; - class FreeformBuilder; - class Placeholders; - class Adjustments; - class CalloutFormat; - class ConnectorFormat; - class FillFormat; - class GroupShapes; - class LineFormat; - class ShapeNodes; - class PictureFormat; - class ShadowFormat; - class TextEffectFormat; - class TextFrame; - class ThreeDFormat; - class OLEFormat; - class LinkFormat; - class PlaceholderFormat; - class AnimationSettings; - class ActionSettings; - class SoundFormat; - class Table; - class Diagram; - class DiagramNode; - class CanvasShapes; - class Ruler; - class ShapeNode; - class ObjectVerbs; - class PlaySettings; - class ActionSetting; - class ParagraphFormat; - class TabStops; - class RulerLevels; - class RulerLevel; - class TabStop; - class BulletFormat; - class TextStyle; - class TextStyleLevels; - class TextStyleLevel; - class MouseDownHandler; - class OCXExtenderEvents; - enum PpBorderType; - enum PpHTMLVersion; - enum PpPublishSourceType; - enum PpBulletType; - enum PpNumberedBulletStyle; - enum PpShapeFormat; - enum PpExportMode; - class EApplication; - class Columns; - class Rows; - class Cell; - class Column; - class CellRange; - class Row; - class Borders; - class PublishObject; - class MasterEvents; - enum PpPasteDataType; - class Comment; - class DiagramNodeChildren; - class DiagramNodes; - class Sequence; - class Sequences; - enum MsoAnimEffect; - enum MsoAnimateByLevel; - enum MsoAnimTriggerType; - enum MsoAnimAfterEffect; - enum MsoAnimTextUnitEffect; - class Effect; - enum MsoAnimEffectRestart; - enum MsoAnimEffectAfter; - class Timing; - class EffectParameters; - class AnimationBehaviors; - class EffectInformation; - enum MsoAnimDirection; - enum MsoAnimType; - class AnimationBehavior; - enum MsoAnimAdditive; - enum MsoAnimAccumulate; - class MotionEffect; - class ColorEffect; - class ScaleEffect; - class RotationEffect; - class PropertyEffect; - class CommandEffect; - class FilterEffect; - class SetEffect; - enum MsoAnimProperty; - class AnimationPoints; - class AnimationPoint; - enum PpAlertLevel; - enum PpRevisionInfo; - enum MsoAnimCommandType; - enum MsoAnimFilterEffectType; - enum MsoAnimFilterEffectSubtype; - -class POWERPOINT_EXPORT Collection : public QAxObject -{ -public: - Collection(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT _Application : public QAxObject -{ -public: - _Application(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Active - - For more information, see help context 502033 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Active() const; //Returns the value of Active - - /* - Property ActivePresentation - - For more information, see help context 502005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Presentation* ActivePresentation() const; //Returns the value of ActivePresentation - - /* - Property ActivePrinter - - For more information, see help context 502017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString ActivePrinter() const; //Returns the value of ActivePrinter - - /* - Property ActiveWindow - - For more information, see help context 502004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DocumentWindow* ActiveWindow() const; //Returns the value of ActiveWindow - - /* - Property AddIns - - For more information, see help context 502019 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::AddIns* AddIns() const; //Returns the value of AddIns - - /* - Property AnswerWizard - - For more information, see help context 502035 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::AnswerWizard* AnswerWizard() const; //Returns the value of AnswerWizard - - /* - Property Assistant - - For more information, see help context 502011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::Assistant* Assistant() const; //Returns the value of Assistant - - /* - Property AutoCorrect - - For more information, see help context 502053 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::AutoCorrect* AutoCorrect() const; //Returns the value of AutoCorrect - - /* - Property AutomationSecurity - - For more information, see help context 502048 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoAutomationSecurity AutomationSecurity() const; //Returns the value of AutomationSecurity - inline void SetAutomationSecurity(Office::MsoAutomationSecurity value); //Sets the value of the AutomationSecurity property - - /* - Property Build - - For more information, see help context 502014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Build() const; //Returns the value of Build - - /* - Property COMAddIns - - For more information, see help context 502036 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::COMAddIns* COMAddIns() const; //Returns the value of COMAddIns - - /* - Property Caption - - For more information, see help context 502010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Caption() const; //Returns the value of Caption - inline void SetCaption(const QString& value); //Sets the value of the Caption property - - /* - Property CommandBars - - For more information, see help context 502007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::CommandBars* CommandBars() const; //Returns the value of CommandBars - - /* - Property Creator - - For more information, see help context 502018 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property DefaultWebOptions - - For more information, see help context 502038 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DefaultWebOptions* DefaultWebOptions() const; //Returns the value of DefaultWebOptions - - /* - Property Dialogs - - For more information, see help context 502003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* Dialogs() const; //Returns the value of Dialogs - - /* - Property DisplayAlerts - - For more information, see help context 502050 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpAlertLevel DisplayAlerts() const; //Returns the value of DisplayAlerts - inline void SetDisplayAlerts(PowerPoint::PpAlertLevel value); //Sets the value of the DisplayAlerts property - - /* - Property DisplayGridLines - - For more information, see help context 502047 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState DisplayGridLines() const; //Returns the value of DisplayGridLines - inline void SetDisplayGridLines(Office::MsoTriState value); //Sets the value of the DisplayGridLines property - - /* - Property FeatureInstall - - For more information, see help context 502043 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoFeatureInstall FeatureInstall() const; //Returns the value of FeatureInstall - inline void SetFeatureInstall(Office::MsoFeatureInstall value); //Sets the value of the FeatureInstall property - - /* - Property FileFind - - For more information, see help context 502013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::IFind* FileFind() const; //Returns the value of FileFind - - /* - Property FileSearch - - For more information, see help context 502012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::FileSearch* FileSearch() const; //Returns the value of FileSearch - - /* - Property HWND - - For more information, see help context 502032 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int HWND() const; //Returns the value of HWND - - /* - Property Height - - For more information, see help context 502029 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Height() const; //Returns the value of Height - inline void SetHeight(double value); //Sets the value of the Height property - - /* - Property LanguageSettings - - For more information, see help context 502039 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::LanguageSettings* LanguageSettings() const; //Returns the value of LanguageSettings - - /* - Property Left - - For more information, see help context 502026 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Left() const; //Returns the value of Left - inline void SetLeft(double value); //Sets the value of the Left property - - /* - Property Marker - - For more information, see help context 502042 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* Marker() const; //Returns the value of Marker - - /* - Property MsoDebugOptions - - For more information, see help context 502040 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoDebugOptions* MsoDebugOptions() const; //Returns the value of MsoDebugOptions - - /* - Property Name - - For more information, see help context 502009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Name() const; //Returns the value of Name - - /* - Property NewPresentation - - For more information, see help context 502049 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::NewFile* NewPresentation() const; //Returns the value of NewPresentation - - /* - Property OperatingSystem - - For more information, see help context 502016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString OperatingSystem() const; //Returns the value of OperatingSystem - - /* - Property Options - - For more information, see help context 502054 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Options* Options() const; //Returns the value of Options - - /* - Property Path - - For more information, see help context 502008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Path() const; //Returns the value of Path - - /* - Property Presentations - - For more information, see help context 502001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Presentations* Presentations() const; //Returns the value of Presentations - - /* - Property ProductCode - - For more information, see help context 502037 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString ProductCode() const; //Returns the value of ProductCode - - /* - Property ShowStartupDialog - - For more information, see help context 502051 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState ShowStartupDialog() const; //Returns the value of ShowStartupDialog - inline void SetShowStartupDialog(Office::MsoTriState value); //Sets the value of the ShowStartupDialog property - - /* - Property ShowWindowsInTaskbar - - For more information, see help context 502041 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState ShowWindowsInTaskbar() const; //Returns the value of ShowWindowsInTaskbar - inline void SetShowWindowsInTaskbar(Office::MsoTriState value); //Sets the value of the ShowWindowsInTaskbar property - - /* - Property SlideShowWindows - - For more information, see help context 502006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideShowWindows* SlideShowWindows() const; //Returns the value of SlideShowWindows - - /* - Property Top - - For more information, see help context 502027 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Top() const; //Returns the value of Top - inline void SetTop(double value); //Sets the value of the Top property - - /* - Property VBE - - For more information, see help context 502020 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline VBIDE::VBE* VBE() const; //Returns the value of VBE - - /* - Property Version - - For more information, see help context 502015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Version() const; //Returns the value of Version - - /* - Property Visible - - For more information, see help context 502031 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Visible() const; //Returns the value of Visible - inline void SetVisible(Office::MsoTriState value); //Sets the value of the Visible property - - /* - Property Width - - For more information, see help context 502028 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Width() const; //Returns the value of Width - inline void SetWidth(double value); //Sets the value of the Width property - - /* - Property WindowState - - For more information, see help context 502030 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpWindowState WindowState() const; //Returns the value of WindowState - inline void SetWindowState(PowerPoint::PpWindowState value); //Sets the value of the WindowState property - - /* - Property Windows - - For more information, see help context 502002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DocumentWindows* Windows() const; //Returns the value of Windows - - /* - Method Activate - - For more information, see help context 502034 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Activate(); - - /* - Method FileDialog - - For more information, see help context 502046 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::FileDialog* FileDialog(Office::MsoFileDialogType Type); - - /* - Method GetOptionFlag - - For more information, see help context 502044 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline bool GetOptionFlag(int Option); - - /* - Method GetOptionFlag - - For more information, see help context 502044 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline bool GetOptionFlag(int Option, bool Persist); - - /* - Method Help - - For more information, see help context 502021 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Help(); - - /* - Method Help - - For more information, see help context 502021 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Help(const QString& HelpFile); - - /* - Method Help - - For more information, see help context 502021 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Help(const QString& HelpFile, int ContextID); - - /* - Method LaunchSpelling - - For more information, see help context 502025 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void LaunchSpelling(PowerPoint::DocumentWindow* pWindow); - - /* - Method PPFileDialog - - For more information, see help context 502024 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* PPFileDialog(PowerPoint::PpFileDialogType Type); - - /* - Method Quit - - For more information, see help context 502022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Quit(); - - /* - Method Run - - For more information, see help context 502023 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant Run(const QString& MacroName, QVariantList& safeArrayOfParams); - - /* - Method SetOptionFlag - - For more information, see help context 502045 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SetOptionFlag(int Option, bool State); - - /* - Method SetOptionFlag - - For more information, see help context 502045 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SetOptionFlag(int Option, bool State, bool Persist); - - /* - Method SetPerfMarker - - For more information, see help context 502052 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SetPerfMarker(int Marker); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT _Global : public QAxObject -{ -public: - _Global(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property ActivePresentation - - For more information, see help context 503001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Presentation* ActivePresentation() const; //Returns the value of ActivePresentation - - /* - Property ActiveWindow - - For more information, see help context 503002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DocumentWindow* ActiveWindow() const; //Returns the value of ActiveWindow - - /* - Property AddIns - - For more information, see help context 503003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::AddIns* AddIns() const; //Returns the value of AddIns - - /* - Property AnswerWizard - - For more information, see help context 503011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::AnswerWizard* AnswerWizard() const; //Returns the value of AnswerWizard - - /* - Property Application - - For more information, see help context 503004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Assistant - - For more information, see help context 503005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::Assistant* Assistant() const; //Returns the value of Assistant - - /* - Property CommandBars - - For more information, see help context 503010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::CommandBars* CommandBars() const; //Returns the value of CommandBars - - /* - Property Dialogs - - For more information, see help context 503006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* Dialogs() const; //Returns the value of Dialogs - - /* - Property Presentations - - For more information, see help context 503007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Presentations* Presentations() const; //Returns the value of Presentations - - /* - Property SlideShowWindows - - For more information, see help context 503008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideShowWindows* SlideShowWindows() const; //Returns the value of SlideShowWindows - - /* - Property Windows - - For more information, see help context 503009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DocumentWindows* Windows() const; //Returns the value of Windows - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT ColorFormat : public QAxObject -{ -public: - ColorFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 506001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property RGB - - For more information, see help context 506002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int RGB() const; //Returns the value of RGB - inline void SetRGB(int value); //Sets the value of the RGB property - - /* - Property SchemeColor - - For more information, see help context 506004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpColorSchemeIndex SchemeColor() const; //Returns the value of SchemeColor - inline void SetSchemeColor(PowerPoint::PpColorSchemeIndex value); //Sets the value of the SchemeColor property - - /* - Property TintAndShade - - For more information, see help context 506005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double TintAndShade() const; //Returns the value of TintAndShade - inline void SetTintAndShade(double value); //Sets the value of the TintAndShade property - - /* - Property Type - - For more information, see help context 506003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoColorType Type() const; //Returns the value of Type - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT SlideShowWindow : public QAxObject -{ -public: - SlideShowWindow(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Active - - For more information, see help context 507011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Active() const; //Returns the value of Active - - /* - Property Application - - For more information, see help context 507001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property HWND - - For more information, see help context 507010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int HWND() const; //Returns the value of HWND - - /* - Property Height - - For more information, see help context 507009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Height() const; //Returns the value of Height - inline void SetHeight(double value); //Sets the value of the Height property - - /* - Property IsFullScreen - - For more information, see help context 507005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState IsFullScreen() const; //Returns the value of IsFullScreen - - /* - Property Left - - For more information, see help context 507006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Left() const; //Returns the value of Left - inline void SetLeft(double value); //Sets the value of the Left property - - /* - Property Parent - - For more information, see help context 507002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Presentation - - For more information, see help context 507004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Presentation* Presentation() const; //Returns the value of Presentation - - /* - Property Top - - For more information, see help context 507007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Top() const; //Returns the value of Top - inline void SetTop(double value); //Sets the value of the Top property - - /* - Property View - - For more information, see help context 507003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideShowView* View() const; //Returns the value of View - - /* - Property Width - - For more information, see help context 507008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Width() const; //Returns the value of Width - inline void SetWidth(double value); //Sets the value of the Width property - - /* - Method Activate - - For more information, see help context 507012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Activate(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Selection : public QAxObject -{ -public: - Selection(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 508001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property ChildShapeRange - - For more information, see help context 508011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeRange* ChildShapeRange() const; //Returns the value of ChildShapeRange - - /* - Property HasChildShapeRange - - For more information, see help context 508012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline bool HasChildShapeRange() const; //Returns the value of HasChildShapeRange - - /* - Property Parent - - For more information, see help context 508002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property ShapeRange - - For more information, see help context 508009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeRange* ShapeRange() const; //Returns the value of ShapeRange - - /* - Property SlideRange - - For more information, see help context 508008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideRange* SlideRange() const; //Returns the value of SlideRange - - /* - Property TextRange - - For more information, see help context 508010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* TextRange() const; //Returns the value of TextRange - - /* - Property Type - - For more information, see help context 508007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpSelectionType Type() const; //Returns the value of Type - - /* - Method Copy - - For more information, see help context 508004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Copy(); - - /* - Method Cut - - For more information, see help context 508003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Cut(); - - /* - Method Delete - - For more information, see help context 508005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Delete(); - - /* - Method Unselect - - For more information, see help context 508006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Unselect(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT DocumentWindows : public QAxObject -{ -public: - DocumentWindows(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 509001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 509002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Arrange - - For more information, see help context 509004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Arrange(); - - /* - Method Arrange - - For more information, see help context 509004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Arrange(PowerPoint::PpArrangeStyle arrangeStyle); - - /* - Method Item - - For more information, see help context 509003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DocumentWindow* Item(int Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT SlideShowWindows : public QAxObject -{ -public: - SlideShowWindows(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 510001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 510002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 510003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideShowWindow* Item(int Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT DocumentWindow : public QAxObject -{ -public: - DocumentWindow(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Active - - For more information, see help context 511008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Active() const; //Returns the value of Active - - /* - Property ActivePane - - For more information, see help context 511022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Pane* ActivePane() const; //Returns the value of ActivePane - - /* - Property Application - - For more information, see help context 511001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property BlackAndWhite - - For more information, see help context 511007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState BlackAndWhite() const; //Returns the value of BlackAndWhite - inline void SetBlackAndWhite(Office::MsoTriState value); //Sets the value of the BlackAndWhite property - - /* - Property Caption - - For more information, see help context 511010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Caption() const; //Returns the value of Caption - - /* - Property HWND - - For more information, see help context 511021 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int HWND() const; //Returns the value of HWND - - /* - Property Height - - For more information, see help context 511014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Height() const; //Returns the value of Height - inline void SetHeight(double value); //Sets the value of the Height property - - /* - Property Left - - For more information, see help context 511011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Left() const; //Returns the value of Left - inline void SetLeft(double value); //Sets the value of the Left property - - /* - Property Panes - - For more information, see help context 511023 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Panes* Panes() const; //Returns the value of Panes - - /* - Property Parent - - For more information, see help context 511002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Presentation - - For more information, see help context 511005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Presentation* Presentation() const; //Returns the value of Presentation - - /* - Property Selection - - For more information, see help context 511003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Selection* Selection() const; //Returns the value of Selection - - /* - Property SplitHorizontal - - For more information, see help context 511025 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int SplitHorizontal() const; //Returns the value of SplitHorizontal - inline void SetSplitHorizontal(int value); //Sets the value of the SplitHorizontal property - - /* - Property SplitVertical - - For more information, see help context 511024 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int SplitVertical() const; //Returns the value of SplitVertical - inline void SetSplitVertical(int value); //Sets the value of the SplitVertical property - - /* - Property Top - - For more information, see help context 511012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Top() const; //Returns the value of Top - inline void SetTop(double value); //Sets the value of the Top property - - /* - Property View - - For more information, see help context 511004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::View* View() const; //Returns the value of View - - /* - Property ViewType - - For more information, see help context 511006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpViewType ViewType() const; //Returns the value of ViewType - inline void SetViewType(PowerPoint::PpViewType value); //Sets the value of the ViewType property - - /* - Property Width - - For more information, see help context 511013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Width() const; //Returns the value of Width - inline void SetWidth(double value); //Sets the value of the Width property - - /* - Property WindowState - - For more information, see help context 511009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpWindowState WindowState() const; //Returns the value of WindowState - inline void SetWindowState(PowerPoint::PpWindowState value); //Sets the value of the WindowState property - - /* - Method Activate - - For more information, see help context 511016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Activate(); - - /* - Method Close - - For more information, see help context 511020 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Close(); - - /* - Method FitToPage - - For more information, see help context 511015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void FitToPage(); - - /* - Method LargeScroll - - For more information, see help context 511017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void LargeScroll(); - - /* - Method LargeScroll - - For more information, see help context 511017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void LargeScroll(int Down); - - /* - Method LargeScroll - - For more information, see help context 511017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void LargeScroll(int Down, int Up); - - /* - Method LargeScroll - - For more information, see help context 511017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void LargeScroll(int Down, int Up, int ToRight); - - /* - Method LargeScroll - - For more information, see help context 511017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void LargeScroll(int Down, int Up, int ToRight, int ToLeft); - - /* - Method NewWindow - - For more information, see help context 511019 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DocumentWindow* NewWindow(); - - /* - Method PointsToScreenPixelsX - - For more information, see help context 511027 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int PointsToScreenPixelsX(double Points); - - /* - Method PointsToScreenPixelsY - - For more information, see help context 511028 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int PointsToScreenPixelsY(double Points); - - /* - Method RangeFromPoint - - For more information, see help context 511026 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* RangeFromPoint(int X, int Y); - - /* - Method ScrollIntoView - - For more information, see help context 511029 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ScrollIntoView(double Left, double Top, double Width, double Height); - - /* - Method ScrollIntoView - - For more information, see help context 511029 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ScrollIntoView(double Left, double Top, double Width, double Height, Office::MsoTriState Start); - - /* - Method SmallScroll - - For more information, see help context 511018 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SmallScroll(); - - /* - Method SmallScroll - - For more information, see help context 511018 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SmallScroll(int Down); - - /* - Method SmallScroll - - For more information, see help context 511018 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SmallScroll(int Down, int Up); - - /* - Method SmallScroll - - For more information, see help context 511018 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SmallScroll(int Down, int Up, int ToRight); - - /* - Method SmallScroll - - For more information, see help context 511018 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SmallScroll(int Down, int Up, int ToRight, int ToLeft); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT View : public QAxObject -{ -public: - View(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 512001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property DisplaySlideMiniature - - For more information, see help context 512008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState DisplaySlideMiniature() const; //Returns the value of DisplaySlideMiniature - inline void SetDisplaySlideMiniature(Office::MsoTriState value); //Sets the value of the DisplaySlideMiniature property - - /* - Property Parent - - For more information, see help context 512002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property PrintOptions - - For more information, see help context 512011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PrintOptions* PrintOptions() const; //Returns the value of PrintOptions - - /* - Property Slide - - For more information, see help context 512006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Slide() const; //Returns the value of Slide - inline void SetSlide(IDispatch* value); //Sets the value of the Slide property - - /* - Property Type - - For more information, see help context 512003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpViewType Type() const; //Returns the value of Type - - /* - Property Zoom - - For more information, see help context 512004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Zoom() const; //Returns the value of Zoom - inline void SetZoom(int value); //Sets the value of the Zoom property - - /* - Property ZoomToFit - - For more information, see help context 512009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState ZoomToFit() const; //Returns the value of ZoomToFit - inline void SetZoomToFit(Office::MsoTriState value); //Sets the value of the ZoomToFit property - - /* - Method GotoSlide - - For more information, see help context 512007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void GotoSlide(int Index); - - /* - Method Paste - - For more information, see help context 512005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Paste(); - - /* - Method PasteSpecial - - For more information, see help context 512010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PasteSpecial(); - - /* - Method PasteSpecial - - For more information, see help context 512010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PasteSpecial(PowerPoint::PpPasteDataType DataType); - - /* - Method PasteSpecial - - For more information, see help context 512010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon); - - /* - Method PasteSpecial - - For more information, see help context 512010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon, const QString& IconFileName); - - /* - Method PasteSpecial - - For more information, see help context 512010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon, const QString& IconFileName, int IconIndex); - - /* - Method PasteSpecial - - For more information, see help context 512010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon, const QString& IconFileName, int IconIndex, const QString& IconLabel); - - /* - Method PasteSpecial - - For more information, see help context 512010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon, const QString& IconFileName, int IconIndex, const QString& IconLabel, Office::MsoTriState Link); - - /* - Method PrintOut - - For more information, see help context 512012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PrintOut(); - - /* - Method PrintOut - - For more information, see help context 512012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PrintOut(int From); - - /* - Method PrintOut - - For more information, see help context 512012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PrintOut(int From, int To); - - /* - Method PrintOut - - For more information, see help context 512012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PrintOut(int From, int To, const QString& PrintToFile); - - /* - Method PrintOut - - For more information, see help context 512012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PrintOut(int From, int To, const QString& PrintToFile, int Copies); - - /* - Method PrintOut - - For more information, see help context 512012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PrintOut(int From, int To, const QString& PrintToFile, int Copies, Office::MsoTriState Collate); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT SlideShowView : public QAxObject -{ -public: - SlideShowView(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property AcceleratorsEnabled - - For more information, see help context 513007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState AcceleratorsEnabled() const; //Returns the value of AcceleratorsEnabled - inline void SetAcceleratorsEnabled(Office::MsoTriState value); //Sets the value of the AcceleratorsEnabled property - - /* - Property AdvanceMode - - For more information, see help context 513011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpSlideShowAdvanceMode AdvanceMode() const; //Returns the value of AdvanceMode - - /* - Property Application - - For more information, see help context 513001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property CurrentShowPosition - - For more information, see help context 513027 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int CurrentShowPosition() const; //Returns the value of CurrentShowPosition - - /* - Property IsNamedShow - - For more information, see help context 513013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState IsNamedShow() const; //Returns the value of IsNamedShow - - /* - Property LastSlideViewed - - For more information, see help context 513010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Slide* LastSlideViewed() const; //Returns the value of LastSlideViewed - - /* - Property Parent - - For more information, see help context 513002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property PointerColor - - For more information, see help context 513012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorFormat* PointerColor() const; //Returns the value of PointerColor - - /* - Property PointerType - - For more information, see help context 513005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpSlideShowPointerType PointerType() const; //Returns the value of PointerType - inline void SetPointerType(PowerPoint::PpSlideShowPointerType value); //Sets the value of the PointerType property - - /* - Property PresentationElapsedTime - - For more information, see help context 513008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double PresentationElapsedTime() const; //Returns the value of PresentationElapsedTime - - /* - Property Slide - - For more information, see help context 513004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Slide* Slide() const; //Returns the value of Slide - - /* - Property SlideElapsedTime - - For more information, see help context 513009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double SlideElapsedTime() const; //Returns the value of SlideElapsedTime - inline void SetSlideElapsedTime(double value); //Sets the value of the SlideElapsedTime property - - /* - Property SlideShowName - - For more information, see help context 513014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString SlideShowName() const; //Returns the value of SlideShowName - - /* - Property State - - For more information, see help context 513006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpSlideShowState State() const; //Returns the value of State - inline void SetState(PowerPoint::PpSlideShowState value); //Sets the value of the State property - - /* - Property Zoom - - For more information, see help context 513003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Zoom() const; //Returns the value of Zoom - - /* - Method DrawLine - - For more information, see help context 513015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void DrawLine(double BeginX, double BeginY, double EndX, double EndY); - - /* - Method EndNamedShow - - For more information, see help context 513023 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void EndNamedShow(); - - /* - Method EraseDrawing - - For more information, see help context 513016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void EraseDrawing(); - - /* - Method Exit - - For more information, see help context 513025 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Exit(); - - /* - Method First - - For more information, see help context 513017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void First(); - - /* - Method GotoNamedShow - - For more information, see help context 513022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void GotoNamedShow(const QString& SlideShowName); - - /* - Method GotoSlide - - For more information, see help context 513021 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void GotoSlide(int Index); - - /* - Method GotoSlide - - For more information, see help context 513021 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void GotoSlide(int Index, Office::MsoTriState ResetSlide); - - /* - Method InstallTracker - - For more information, see help context 513026 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void InstallTracker(PowerPoint::MouseTracker* pTracker, Office::MsoTriState Presenter); - - /* - Method Last - - For more information, see help context 513018 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Last(); - - /* - Method Next - - For more information, see help context 513019 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Next(); - - /* - Method Previous - - For more information, see help context 513020 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Previous(); - - /* - Method ResetSlideTime - - For more information, see help context 513024 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ResetSlideTime(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT SlideShowSettings : public QAxObject -{ -public: - SlideShowSettings(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property AdvanceMode - - For more information, see help context 514007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpSlideShowAdvanceMode AdvanceMode() const; //Returns the value of AdvanceMode - inline void SetAdvanceMode(PowerPoint::PpSlideShowAdvanceMode value); //Sets the value of the AdvanceMode property - - /* - Property Application - - For more information, see help context 514001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property EndingSlide - - For more information, see help context 514006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int EndingSlide() const; //Returns the value of EndingSlide - inline void SetEndingSlide(int value); //Sets the value of the EndingSlide property - - /* - Property LoopUntilStopped - - For more information, see help context 514009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState LoopUntilStopped() const; //Returns the value of LoopUntilStopped - inline void SetLoopUntilStopped(Office::MsoTriState value); //Sets the value of the LoopUntilStopped property - - /* - Property NamedSlideShows - - For more information, see help context 514004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::NamedSlideShows* NamedSlideShows() const; //Returns the value of NamedSlideShows - - /* - Property Parent - - For more information, see help context 514002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property PointerColor - - For more information, see help context 514003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorFormat* PointerColor() const; //Returns the value of PointerColor - - /* - Property RangeType - - For more information, see help context 514014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpSlideShowRangeType RangeType() const; //Returns the value of RangeType - inline void SetRangeType(PowerPoint::PpSlideShowRangeType value); //Sets the value of the RangeType property - - /* - Property ShowScrollbar - - For more information, see help context 514015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState ShowScrollbar() const; //Returns the value of ShowScrollbar - inline void SetShowScrollbar(Office::MsoTriState value); //Sets the value of the ShowScrollbar property - - /* - Property ShowType - - For more information, see help context 514010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpSlideShowType ShowType() const; //Returns the value of ShowType - inline void SetShowType(PowerPoint::PpSlideShowType value); //Sets the value of the ShowType property - - /* - Property ShowWithAnimation - - For more information, see help context 514012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState ShowWithAnimation() const; //Returns the value of ShowWithAnimation - inline void SetShowWithAnimation(Office::MsoTriState value); //Sets the value of the ShowWithAnimation property - - /* - Property ShowWithNarration - - For more information, see help context 514011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState ShowWithNarration() const; //Returns the value of ShowWithNarration - inline void SetShowWithNarration(Office::MsoTriState value); //Sets the value of the ShowWithNarration property - - /* - Property SlideShowName - - For more information, see help context 514013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString SlideShowName() const; //Returns the value of SlideShowName - inline void SetSlideShowName(const QString& value); //Sets the value of the SlideShowName property - - /* - Property StartingSlide - - For more information, see help context 514005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int StartingSlide() const; //Returns the value of StartingSlide - inline void SetStartingSlide(int value); //Sets the value of the StartingSlide property - - /* - Method Run - - For more information, see help context 514008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideShowWindow* Run(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT NamedSlideShows : public QAxObject -{ -public: - NamedSlideShows(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 515001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 515002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 515004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::NamedSlideShow* Add(const QString& Name, const QVariant& safeArrayOfSlideIDs); - - /* - Method Item - - For more information, see help context 515003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::NamedSlideShow* Item(const QVariant& Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT NamedSlideShow : public QAxObject -{ -public: - NamedSlideShow(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 516001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 516006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Name - - For more information, see help context 516003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Name() const; //Returns the value of Name - - /* - Property Parent - - For more information, see help context 516002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property SlideIDs - - For more information, see help context 516005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant SlideIDs() const; //Returns the value of SlideIDs - - /* - Method Delete - - For more information, see help context 516004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Delete(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT PrintOptions : public QAxObject -{ -public: - PrintOptions(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property ActivePrinter - - For more information, see help context 517015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString ActivePrinter() const; //Returns the value of ActivePrinter - inline void SetActivePrinter(const QString& value); //Sets the value of the ActivePrinter property - - /* - Property Application - - For more information, see help context 517001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Collate - - For more information, see help context 517003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Collate() const; //Returns the value of Collate - inline void SetCollate(Office::MsoTriState value); //Sets the value of the Collate property - - /* - Property FitToPage - - For more information, see help context 517004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState FitToPage() const; //Returns the value of FitToPage - inline void SetFitToPage(Office::MsoTriState value); //Sets the value of the FitToPage property - - /* - Property FrameSlides - - For more information, see help context 517005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState FrameSlides() const; //Returns the value of FrameSlides - inline void SetFrameSlides(Office::MsoTriState value); //Sets the value of the FrameSlides property - - /* - Property HandoutOrder - - For more information, see help context 517016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpPrintHandoutOrder HandoutOrder() const; //Returns the value of HandoutOrder - inline void SetHandoutOrder(PowerPoint::PpPrintHandoutOrder value); //Sets the value of the HandoutOrder property - - /* - Property NumberOfCopies - - For more information, see help context 517006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int NumberOfCopies() const; //Returns the value of NumberOfCopies - inline void SetNumberOfCopies(int value); //Sets the value of the NumberOfCopies property - - /* - Property OutputType - - For more information, see help context 517007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpPrintOutputType OutputType() const; //Returns the value of OutputType - inline void SetOutputType(PowerPoint::PpPrintOutputType value); //Sets the value of the OutputType property - - /* - Property Parent - - For more information, see help context 517008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property PrintColorType - - For more information, see help context 517002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpPrintColorType PrintColorType() const; //Returns the value of PrintColorType - inline void SetPrintColorType(PowerPoint::PpPrintColorType value); //Sets the value of the PrintColorType property - - /* - Property PrintComments - - For more information, see help context 517017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState PrintComments() const; //Returns the value of PrintComments - inline void SetPrintComments(Office::MsoTriState value); //Sets the value of the PrintComments property - - /* - Property PrintFontsAsGraphics - - For more information, see help context 517013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState PrintFontsAsGraphics() const; //Returns the value of PrintFontsAsGraphics - inline void SetPrintFontsAsGraphics(Office::MsoTriState value); //Sets the value of the PrintFontsAsGraphics property - - /* - Property PrintHiddenSlides - - For more information, see help context 517009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState PrintHiddenSlides() const; //Returns the value of PrintHiddenSlides - inline void SetPrintHiddenSlides(Office::MsoTriState value); //Sets the value of the PrintHiddenSlides property - - /* - Property PrintInBackground - - For more information, see help context 517010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState PrintInBackground() const; //Returns the value of PrintInBackground - inline void SetPrintInBackground(Office::MsoTriState value); //Sets the value of the PrintInBackground property - - /* - Property RangeType - - For more information, see help context 517011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpPrintRangeType RangeType() const; //Returns the value of RangeType - inline void SetRangeType(PowerPoint::PpPrintRangeType value); //Sets the value of the RangeType property - - /* - Property Ranges - - For more information, see help context 517012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PrintRanges* Ranges() const; //Returns the value of Ranges - - /* - Property SlideShowName - - For more information, see help context 517014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString SlideShowName() const; //Returns the value of SlideShowName - inline void SetSlideShowName(const QString& value); //Sets the value of the SlideShowName property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT PrintRanges : public QAxObject -{ -public: - PrintRanges(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 518002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 518005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 518001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PrintRange* Add(int Start, int End); - - /* - Method ClearAll - - For more information, see help context 518003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ClearAll(); - - /* - Method Item - - For more information, see help context 518004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PrintRange* Item(int Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT PrintRange : public QAxObject -{ -public: - PrintRange(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 519001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property End - - For more information, see help context 519004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int End() const; //Returns the value of End - - /* - Property Parent - - For more information, see help context 519002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Start - - For more information, see help context 519003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Start() const; //Returns the value of Start - - /* - Method Delete - - For more information, see help context 519005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Delete(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT AddIns : public QAxObject -{ -public: - AddIns(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 520001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 520002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 520004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::AddIn* Add(const QString& FileName); - - /* - Method Item - - For more information, see help context 520003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::AddIn* Item(QVariant& Index); - - /* - Method Remove - - For more information, see help context 520005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Remove(QVariant& Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT AddIn : public QAxObject -{ -public: - AddIn(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 521001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property AutoLoad - - For more information, see help context 521007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState AutoLoad() const; //Returns the value of AutoLoad - inline void SetAutoLoad(Office::MsoTriState value); //Sets the value of the AutoLoad property - - /* - Property DisplayAlerts - - For more information, see help context 521009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState DisplayAlerts() const; //Returns the value of DisplayAlerts - inline void SetDisplayAlerts(Office::MsoTriState value); //Sets the value of the DisplayAlerts property - - /* - Property FullName - - For more information, see help context 521003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString FullName() const; //Returns the value of FullName - - /* - Property Loaded - - For more information, see help context 521008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Loaded() const; //Returns the value of Loaded - inline void SetLoaded(Office::MsoTriState value); //Sets the value of the Loaded property - - /* - Property Name - - For more information, see help context 521004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Name() const; //Returns the value of Name - - /* - Property Parent - - For more information, see help context 521002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Path - - For more information, see help context 521005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Path() const; //Returns the value of Path - - /* - Property Registered - - For more information, see help context 521006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Registered() const; //Returns the value of Registered - inline void SetRegistered(Office::MsoTriState value); //Sets the value of the Registered property - - /* - Property RegisteredInHKLM - - For more information, see help context 521010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState RegisteredInHKLM() const; //Returns the value of RegisteredInHKLM - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Presentations : public QAxObject -{ -public: - Presentations(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 522001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 522002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 522004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Presentation* Add(); - - /* - Method Add - - For more information, see help context 522004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Presentation* Add(Office::MsoTriState WithWindow); - - /* - Method CanCheckOut - - For more information, see help context 522008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline bool CanCheckOut(const QString& FileName); - - /* - Method CheckOut - - For more information, see help context 522007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void CheckOut(const QString& FileName); - - /* - Method Item - - For more information, see help context 522003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Presentation* Item(const QVariant& Index); - - /* - Method Open - - For more information, see help context 522006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Presentation* Open(const QString& FileName); - - /* - Method Open - - For more information, see help context 522006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Presentation* Open(const QString& FileName, Office::MsoTriState ReadOnly); - - /* - Method Open - - For more information, see help context 522006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Presentation* Open(const QString& FileName, Office::MsoTriState ReadOnly, Office::MsoTriState Untitled); - - /* - Method Open - - For more information, see help context 522006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Presentation* Open(const QString& FileName, Office::MsoTriState ReadOnly, Office::MsoTriState Untitled, Office::MsoTriState WithWindow); - - /* - Method OpenOld - - For more information, see help context 522005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Presentation* OpenOld(const QString& FileName); - - /* - Method OpenOld - - For more information, see help context 522005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Presentation* OpenOld(const QString& FileName, Office::MsoTriState ReadOnly); - - /* - Method OpenOld - - For more information, see help context 522005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Presentation* OpenOld(const QString& FileName, Office::MsoTriState ReadOnly, Office::MsoTriState Untitled); - - /* - Method OpenOld - - For more information, see help context 522005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Presentation* OpenOld(const QString& FileName, Office::MsoTriState ReadOnly, Office::MsoTriState Untitled, Office::MsoTriState WithWindow); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -// stub for vtable-only interface -class PresEvents : public QAxObject {}; - -class POWERPOINT_EXPORT Hyperlinks : public QAxObject -{ -public: - Hyperlinks(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 525001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 525002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 525003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Hyperlink* Item(int Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Hyperlink : public QAxObject -{ -public: - Hyperlink(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Address - - For more information, see help context 526004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Address() const; //Returns the value of Address - inline void SetAddress(const QString& value); //Sets the value of the Address property - - /* - Property Application - - For more information, see help context 526001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property EmailSubject - - For more information, see help context 526007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString EmailSubject() const; //Returns the value of EmailSubject - inline void SetEmailSubject(const QString& value); //Sets the value of the EmailSubject property - - /* - Property Parent - - For more information, see help context 526002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property ScreenTip - - For more information, see help context 526008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString ScreenTip() const; //Returns the value of ScreenTip - inline void SetScreenTip(const QString& value); //Sets the value of the ScreenTip property - - /* - Property ShowAndReturn - - For more information, see help context 526010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState ShowAndReturn() const; //Returns the value of ShowAndReturn - inline void SetShowAndReturn(Office::MsoTriState value); //Sets the value of the ShowAndReturn property - - /* - Property SubAddress - - For more information, see help context 526005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString SubAddress() const; //Returns the value of SubAddress - inline void SetSubAddress(const QString& value); //Sets the value of the SubAddress property - - /* - Property TextToDisplay - - For more information, see help context 526009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString TextToDisplay() const; //Returns the value of TextToDisplay - inline void SetTextToDisplay(const QString& value); //Sets the value of the TextToDisplay property - - /* - Property Type - - For more information, see help context 526003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoHyperlinkType Type() const; //Returns the value of Type - - /* - Method AddToFavorites - - For more information, see help context 526006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void AddToFavorites(); - - /* - Method CreateNewDocument - - For more information, see help context 526012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void CreateNewDocument(const QString& FileName, Office::MsoTriState EditNow, Office::MsoTriState Overwrite); - - /* - Method Delete - - For more information, see help context 526013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Delete(); - - /* - Method Follow - - For more information, see help context 526011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Follow(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT PageSetup : public QAxObject -{ -public: - PageSetup(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 527001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property FirstSlideNumber - - For more information, see help context 527003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int FirstSlideNumber() const; //Returns the value of FirstSlideNumber - inline void SetFirstSlideNumber(int value); //Sets the value of the FirstSlideNumber property - - /* - Property NotesOrientation - - For more information, see help context 527007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoOrientation NotesOrientation() const; //Returns the value of NotesOrientation - inline void SetNotesOrientation(Office::MsoOrientation value); //Sets the value of the NotesOrientation property - - /* - Property Parent - - For more information, see help context 527002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property SlideHeight - - For more information, see help context 527004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double SlideHeight() const; //Returns the value of SlideHeight - inline void SetSlideHeight(double value); //Sets the value of the SlideHeight property - - /* - Property SlideOrientation - - For more information, see help context 527008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoOrientation SlideOrientation() const; //Returns the value of SlideOrientation - inline void SetSlideOrientation(Office::MsoOrientation value); //Sets the value of the SlideOrientation property - - /* - Property SlideSize - - For more information, see help context 527006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpSlideSizeType SlideSize() const; //Returns the value of SlideSize - inline void SetSlideSize(PowerPoint::PpSlideSizeType value); //Sets the value of the SlideSize property - - /* - Property SlideWidth - - For more information, see help context 527005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double SlideWidth() const; //Returns the value of SlideWidth - inline void SetSlideWidth(double value); //Sets the value of the SlideWidth property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Fonts : public QAxObject -{ -public: - Fonts(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 528001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 528002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 528003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Font* Item(const QVariant& Index); - - /* - Method Replace - - For more information, see help context 528004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Replace(const QString& Original, const QString& Replacement); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT ExtraColors : public QAxObject -{ -public: - ExtraColors(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 529001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 529002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 529004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Add(int Type); - - /* - Method Item - - For more information, see help context 529003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Item(int Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Slides : public QAxObject -{ -public: - Slides(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 530001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 530002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 530005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Slide* Add(int Index, PowerPoint::PpSlideLayout Layout); - - /* - Method FindBySlideID - - For more information, see help context 530004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Slide* FindBySlideID(int SlideID); - - /* - Method InsertFromFile - - For more information, see help context 530006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int InsertFromFile(const QString& FileName, int Index); - - /* - Method InsertFromFile - - For more information, see help context 530006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int InsertFromFile(const QString& FileName, int Index, int SlideStart); - - /* - Method InsertFromFile - - For more information, see help context 530006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int InsertFromFile(const QString& FileName, int Index, int SlideStart, int SlideEnd); - - /* - Method Item - - For more information, see help context 530003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Slide* Item(const QVariant& Index); - - /* - Method Paste - - For more information, see help context 530008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideRange* Paste(); - - /* - Method Paste - - For more information, see help context 530008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideRange* Paste(int Index); - - /* - Method Range - - For more information, see help context 530007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideRange* Range(); - - /* - Method Range - - For more information, see help context 530007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideRange* Range(const QVariant& Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT _Slide : public QAxObject -{ -public: - _Slide(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 531001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Background - - For more information, see help context 531007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeRange* Background() const; //Returns the value of Background - - /* - Property ColorScheme - - For more information, see help context 531006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorScheme* ColorScheme() const; //Returns the value of ColorScheme - inline void SetColorScheme(PowerPoint::ColorScheme* value); //Sets the value of the ColorScheme property - - /* - Property Comments - - For more information, see help context 531028 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Comments* Comments() const; //Returns the value of Comments - - /* - Property Design - - For more information, see help context 531029 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Design* Design() const; //Returns the value of Design - inline void SetDesign(PowerPoint::Design* value); //Sets the value of the Design property - - /* - Property DisplayMasterShapes - - For more information, see help context 531020 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState DisplayMasterShapes() const; //Returns the value of DisplayMasterShapes - inline void SetDisplayMasterShapes(Office::MsoTriState value); //Sets the value of the DisplayMasterShapes property - - /* - Property FollowMasterBackground - - For more information, see help context 531021 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState FollowMasterBackground() const; //Returns the value of FollowMasterBackground - inline void SetFollowMasterBackground(Office::MsoTriState value); //Sets the value of the FollowMasterBackground property - - /* - Property HeadersFooters - - For more information, see help context 531004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::HeadersFooters* HeadersFooters() const; //Returns the value of HeadersFooters - - /* - Property Hyperlinks - - For more information, see help context 531024 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Hyperlinks* Hyperlinks() const; //Returns the value of Hyperlinks - - /* - Property Layout - - For more information, see help context 531014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpSlideLayout Layout() const; //Returns the value of Layout - inline void SetLayout(PowerPoint::PpSlideLayout value); //Sets the value of the Layout property - - /* - Property Master - - For more information, see help context 531023 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::_Master* Master() const; //Returns the value of Master - - /* - Property Name - - For more information, see help context 531008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Name() const; //Returns the value of Name - inline void SetName(const QString& value); //Sets the value of the Name property - - /* - Property NotesPage - - For more information, see help context 531022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideRange* NotesPage() const; //Returns the value of NotesPage - - /* - Property Parent - - For more information, see help context 531002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property PrintSteps - - For more information, see help context 531010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int PrintSteps() const; //Returns the value of PrintSteps - - /* - Property Scripts - - For more information, see help context 531026 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::Scripts* Scripts() const; //Returns the value of Scripts - - /* - Property Shapes - - For more information, see help context 531003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shapes* Shapes() const; //Returns the value of Shapes - - /* - Property SlideID - - For more information, see help context 531009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int SlideID() const; //Returns the value of SlideID - - /* - Property SlideIndex - - For more information, see help context 531018 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int SlideIndex() const; //Returns the value of SlideIndex - - /* - Property SlideNumber - - For more information, see help context 531019 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int SlideNumber() const; //Returns the value of SlideNumber - - /* - Property SlideShowTransition - - For more information, see help context 531005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideShowTransition* SlideShowTransition() const; //Returns the value of SlideShowTransition - - /* - Property Tags - - For more information, see help context 531017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Tags* Tags() const; //Returns the value of Tags - - /* - Property TimeLine - - For more information, see help context 531031 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TimeLine* TimeLine() const; //Returns the value of TimeLine - - /* - Method ApplyTemplate - - For more information, see help context 531032 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ApplyTemplate(const QString& FileName); - - /* - Method Copy - - For more information, see help context 531013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Copy(); - - /* - Method Cut - - For more information, see help context 531012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Cut(); - - /* - Method Delete - - For more information, see help context 531016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Delete(); - - /* - Method Duplicate - - For more information, see help context 531015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideRange* Duplicate(); - - /* - Method Export - - For more information, see help context 531025 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Export(const QString& FileName, const QString& FilterName); - - /* - Method Export - - For more information, see help context 531025 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Export(const QString& FileName, const QString& FilterName, int ScaleWidth); - - /* - Method Export - - For more information, see help context 531025 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Export(const QString& FileName, const QString& FilterName, int ScaleWidth, int ScaleHeight); - - /* - Method MoveTo - - For more information, see help context 531030 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void MoveTo(int toPos); - - /* - Method Select - - For more information, see help context 531011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Select(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT SlideRange : public QAxObject -{ -public: - SlideRange(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 532001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Background - - For more information, see help context 532007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeRange* Background() const; //Returns the value of Background - - /* - Property ColorScheme - - For more information, see help context 532006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorScheme* ColorScheme() const; //Returns the value of ColorScheme - inline void SetColorScheme(PowerPoint::ColorScheme* value); //Sets the value of the ColorScheme property - - /* - Property Comments - - For more information, see help context 532032 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Comments* Comments() const; //Returns the value of Comments - - /* - Property Count - - For more information, see help context 532029 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Design - - For more information, see help context 532033 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Design* Design() const; //Returns the value of Design - inline void SetDesign(PowerPoint::Design* value); //Sets the value of the Design property - - /* - Property DisplayMasterShapes - - For more information, see help context 532020 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState DisplayMasterShapes() const; //Returns the value of DisplayMasterShapes - inline void SetDisplayMasterShapes(Office::MsoTriState value); //Sets the value of the DisplayMasterShapes property - - /* - Property FollowMasterBackground - - For more information, see help context 532021 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState FollowMasterBackground() const; //Returns the value of FollowMasterBackground - inline void SetFollowMasterBackground(Office::MsoTriState value); //Sets the value of the FollowMasterBackground property - - /* - Property HeadersFooters - - For more information, see help context 532004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::HeadersFooters* HeadersFooters() const; //Returns the value of HeadersFooters - - /* - Property Hyperlinks - - For more information, see help context 532024 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Hyperlinks* Hyperlinks() const; //Returns the value of Hyperlinks - - /* - Property Layout - - For more information, see help context 532014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpSlideLayout Layout() const; //Returns the value of Layout - inline void SetLayout(PowerPoint::PpSlideLayout value); //Sets the value of the Layout property - - /* - Property Master - - For more information, see help context 532023 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::_Master* Master() const; //Returns the value of Master - - /* - Property Name - - For more information, see help context 532008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Name() const; //Returns the value of Name - inline void SetName(const QString& value); //Sets the value of the Name property - - /* - Property NotesPage - - For more information, see help context 532022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideRange* NotesPage() const; //Returns the value of NotesPage - - /* - Property Parent - - For more information, see help context 532002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property PrintSteps - - For more information, see help context 532010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int PrintSteps() const; //Returns the value of PrintSteps - - /* - Property Scripts - - For more information, see help context 532030 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::Scripts* Scripts() const; //Returns the value of Scripts - - /* - Property Shapes - - For more information, see help context 532003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shapes* Shapes() const; //Returns the value of Shapes - - /* - Property SlideID - - For more information, see help context 532009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int SlideID() const; //Returns the value of SlideID - - /* - Property SlideIndex - - For more information, see help context 532018 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int SlideIndex() const; //Returns the value of SlideIndex - - /* - Property SlideNumber - - For more information, see help context 532019 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int SlideNumber() const; //Returns the value of SlideNumber - - /* - Property SlideShowTransition - - For more information, see help context 532005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideShowTransition* SlideShowTransition() const; //Returns the value of SlideShowTransition - - /* - Property Tags - - For more information, see help context 532017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Tags* Tags() const; //Returns the value of Tags - - /* - Property TimeLine - - For more information, see help context 532035 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TimeLine* TimeLine() const; //Returns the value of TimeLine - - /* - Property _NewEnum - - For more information, see help context 532027 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method ApplyTemplate - - For more information, see help context 532036 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ApplyTemplate(const QString& FileName); - - /* - Method Copy - - For more information, see help context 532013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Copy(); - - /* - Method Cut - - For more information, see help context 532012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Cut(); - - /* - Method Delete - - For more information, see help context 532016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Delete(); - - /* - Method Duplicate - - For more information, see help context 532015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideRange* Duplicate(); - - /* - Method Export - - For more information, see help context 532025 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Export(const QString& FileName, const QString& FilterName); - - /* - Method Export - - For more information, see help context 532025 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Export(const QString& FileName, const QString& FilterName, int ScaleWidth); - - /* - Method Export - - For more information, see help context 532025 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Export(const QString& FileName, const QString& FilterName, int ScaleWidth, int ScaleHeight); - - /* - Method Item - - For more information, see help context 532026 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Slide* Item(const QVariant& Index); - - /* - Method MoveTo - - For more information, see help context 532034 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void MoveTo(int toPos); - - /* - Method Select - - For more information, see help context 532011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Select(); - - /* - Method _Index - - For more information, see help context 532028 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT _Master : public QAxObject -{ -public: - _Master(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 533001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Background - - For more information, see help context 533006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeRange* Background() const; //Returns the value of Background - - /* - Property ColorScheme - - For more information, see help context 533005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorScheme* ColorScheme() const; //Returns the value of ColorScheme - inline void SetColorScheme(PowerPoint::ColorScheme* value); //Sets the value of the ColorScheme property - - /* - Property Design - - For more information, see help context 533014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Design* Design() const; //Returns the value of Design - - /* - Property HeadersFooters - - For more information, see help context 533004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::HeadersFooters* HeadersFooters() const; //Returns the value of HeadersFooters - - /* - Property Height - - For more information, see help context 533009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Height() const; //Returns the value of Height - - /* - Property Hyperlinks - - For more information, see help context 533012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Hyperlinks* Hyperlinks() const; //Returns the value of Hyperlinks - - /* - Property Name - - For more information, see help context 533007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Name() const; //Returns the value of Name - inline void SetName(const QString& value); //Sets the value of the Name property - - /* - Property Parent - - For more information, see help context 533002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Scripts - - For more information, see help context 533013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::Scripts* Scripts() const; //Returns the value of Scripts - - /* - Property Shapes - - For more information, see help context 533003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shapes* Shapes() const; //Returns the value of Shapes - - /* - Property SlideShowTransition - - For more information, see help context 533016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideShowTransition* SlideShowTransition() const; //Returns the value of SlideShowTransition - - /* - Property TextStyles - - For more information, see help context 533011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextStyles* TextStyles() const; //Returns the value of TextStyles - - /* - Property TimeLine - - For more information, see help context 533015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TimeLine* TimeLine() const; //Returns the value of TimeLine - - /* - Property Width - - For more information, see help context 533010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Width() const; //Returns the value of Width - - /* - Method Delete - - For more information, see help context 533008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Delete(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -// stub for vtable-only interface -class SldEvents : public QAxObject {}; - -class POWERPOINT_EXPORT ColorSchemes : public QAxObject -{ -public: - ColorSchemes(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 536001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 536002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 536004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorScheme* Add(); - - /* - Method Add - - For more information, see help context 536004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorScheme* Add(PowerPoint::ColorScheme* Scheme); - - /* - Method Item - - For more information, see help context 536003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorScheme* Item(int Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT ColorScheme : public QAxObject -{ -public: - ColorScheme(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 537001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 537002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Colors - - For more information, see help context 537003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::RGBColor* Colors(PowerPoint::PpColorSchemeIndex SchemeColor); - - /* - Method Delete - - For more information, see help context 537004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Delete(); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT RGBColor : public QAxObject -{ -public: - RGBColor(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 538001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Parent - - For more information, see help context 538002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property RGB - - For more information, see help context 538003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int RGB() const; //Returns the value of RGB - inline void SetRGB(int value); //Sets the value of the RGB property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT SlideShowTransition : public QAxObject -{ -public: - SlideShowTransition(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property AdvanceOnClick - - For more information, see help context 539003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState AdvanceOnClick() const; //Returns the value of AdvanceOnClick - inline void SetAdvanceOnClick(Office::MsoTriState value); //Sets the value of the AdvanceOnClick property - - /* - Property AdvanceOnTime - - For more information, see help context 539004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState AdvanceOnTime() const; //Returns the value of AdvanceOnTime - inline void SetAdvanceOnTime(Office::MsoTriState value); //Sets the value of the AdvanceOnTime property - - /* - Property AdvanceTime - - For more information, see help context 539005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double AdvanceTime() const; //Returns the value of AdvanceTime - inline void SetAdvanceTime(double value); //Sets the value of the AdvanceTime property - - /* - Property Application - - For more information, see help context 539001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property EntryEffect - - For more information, see help context 539006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpEntryEffect EntryEffect() const; //Returns the value of EntryEffect - inline void SetEntryEffect(PowerPoint::PpEntryEffect value); //Sets the value of the EntryEffect property - - /* - Property Hidden - - For more information, see help context 539007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Hidden() const; //Returns the value of Hidden - inline void SetHidden(Office::MsoTriState value); //Sets the value of the Hidden property - - /* - Property LoopSoundUntilNext - - For more information, see help context 539008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState LoopSoundUntilNext() const; //Returns the value of LoopSoundUntilNext - inline void SetLoopSoundUntilNext(Office::MsoTriState value); //Sets the value of the LoopSoundUntilNext property - - /* - Property Parent - - For more information, see help context 539002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property SoundEffect - - For more information, see help context 539009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SoundEffect* SoundEffect() const; //Returns the value of SoundEffect - - /* - Property Speed - - For more information, see help context 539010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpTransitionSpeed Speed() const; //Returns the value of Speed - inline void SetSpeed(PowerPoint::PpTransitionSpeed value); //Sets the value of the Speed property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT SoundEffect : public QAxObject -{ -public: - SoundEffect(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 540001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Name - - For more information, see help context 540003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Name() const; //Returns the value of Name - inline void SetName(const QString& value); //Sets the value of the Name property - - /* - Property Parent - - For more information, see help context 540002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Type - - For more information, see help context 540004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpSoundEffectType Type() const; //Returns the value of Type - inline void SetType(PowerPoint::PpSoundEffectType value); //Sets the value of the Type property - - /* - Method ImportFromFile - - For more information, see help context 540005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ImportFromFile(const QString& FileName); - - /* - Method Play - - For more information, see help context 540006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Play(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT SoundFormat : public QAxObject -{ -public: - SoundFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property SourceFullName - - For more information, see help context 541005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString SourceFullName() const; //Returns the value of SourceFullName - - /* - Property Type - - For more information, see help context 541004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpSoundFormatType Type() const; //Returns the value of Type - - /* - Method Export - - For more information, see help context 541003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PpSoundFormatType Export(const QString& FileName); - - /* - Method Import - - For more information, see help context 541002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Import(const QString& FileName); - - /* - Method Play - - For more information, see help context 541001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Play(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT HeadersFooters : public QAxObject -{ -public: - HeadersFooters(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 542001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property DateAndTime - - For more information, see help context 542003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::HeaderFooter* DateAndTime() const; //Returns the value of DateAndTime - - /* - Property DisplayOnTitleSlide - - For more information, see help context 542007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState DisplayOnTitleSlide() const; //Returns the value of DisplayOnTitleSlide - inline void SetDisplayOnTitleSlide(Office::MsoTriState value); //Sets the value of the DisplayOnTitleSlide property - - /* - Property Footer - - For more information, see help context 542006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::HeaderFooter* Footer() const; //Returns the value of Footer - - /* - Property Header - - For more information, see help context 542005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::HeaderFooter* Header() const; //Returns the value of Header - - /* - Property Parent - - For more information, see help context 542002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property SlideNumber - - For more information, see help context 542004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::HeaderFooter* SlideNumber() const; //Returns the value of SlideNumber - - /* - Method Clear - - For more information, see help context 542008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Clear(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Shapes : public QAxObject -{ -public: - Shapes(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 543002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property HasTitle - - For more information, see help context 543018 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState HasTitle() const; //Returns the value of HasTitle - - /* - Property Parent - - For more information, see help context 543001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Placeholders - - For more information, see help context 543021 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Placeholders* Placeholders() const; //Returns the value of Placeholders - - /* - Property Title - - For more information, see help context 543020 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* Title() const; //Returns the value of Title - - /* - Property _NewEnum - - For more information, see help context 543004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method AddCallout - - For more information, see help context 543005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddCallout(Office::MsoCalloutType Type, double Left, double Top, double Width, double Height); - - /* - Method AddCanvas - - For more information, see help context 543030 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddCanvas(double Left, double Top, double Width, double Height); - - /* - Method AddComment - - For more information, see help context 543023 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddComment(); - - /* - Method AddComment - - For more information, see help context 543023 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddComment(double Left); - - /* - Method AddComment - - For more information, see help context 543023 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddComment(double Left, double Top); - - /* - Method AddComment - - For more information, see help context 543023 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddComment(double Left, double Top, double Width); - - /* - Method AddComment - - For more information, see help context 543023 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddComment(double Left, double Top, double Width, double Height); - - /* - Method AddConnector - - For more information, see help context 543006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddConnector(Office::MsoConnectorType Type, double BeginX, double BeginY, double EndX, double EndY); - - /* - Method AddCurve - - For more information, see help context 543007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddCurve(const QVariant& SafeArrayOfPoints); - - /* - Method AddDiagram - - For more information, see help context 543029 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddDiagram(Office::MsoDiagramType Type, double Left, double Top, double Width, double Height); - - /* - Method AddLabel - - For more information, see help context 543008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddLabel(Office::MsoTextOrientation Orientation, double Left, double Top, double Width, double Height); - - /* - Method AddLine - - For more information, see help context 543009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddLine(double BeginX, double BeginY, double EndX, double EndY); - - /* - Method AddMediaObject - - For more information, see help context 543025 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddMediaObject(const QString& FileName); - - /* - Method AddMediaObject - - For more information, see help context 543025 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddMediaObject(const QString& FileName, double Left); - - /* - Method AddMediaObject - - For more information, see help context 543025 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddMediaObject(const QString& FileName, double Left, double Top); - - /* - Method AddMediaObject - - For more information, see help context 543025 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddMediaObject(const QString& FileName, double Left, double Top, double Width); - - /* - Method AddMediaObject - - For more information, see help context 543025 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddMediaObject(const QString& FileName, double Left, double Top, double Width, double Height); - - /* - Method AddOLEObject - - For more information, see help context 543022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddOLEObject(); - - /* - Method AddOLEObject - - For more information, see help context 543022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddOLEObject(double Left); - - /* - Method AddOLEObject - - For more information, see help context 543022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddOLEObject(double Left, double Top); - - /* - Method AddOLEObject - - For more information, see help context 543022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddOLEObject(double Left, double Top, double Width); - - /* - Method AddOLEObject - - For more information, see help context 543022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddOLEObject(double Left, double Top, double Width, double Height); - - /* - Method AddOLEObject - - For more information, see help context 543022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddOLEObject(double Left, double Top, double Width, double Height, const QString& ClassName); - - /* - Method AddOLEObject - - For more information, see help context 543022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddOLEObject(double Left, double Top, double Width, double Height, const QString& ClassName, const QString& FileName); - - /* - Method AddOLEObject - - For more information, see help context 543022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddOLEObject(double Left, double Top, double Width, double Height, const QString& ClassName, const QString& FileName, Office::MsoTriState DisplayAsIcon); - - /* - Method AddOLEObject - - For more information, see help context 543022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddOLEObject(double Left, double Top, double Width, double Height, const QString& ClassName, const QString& FileName, Office::MsoTriState DisplayAsIcon, const QString& IconFileName); - - /* - Method AddOLEObject - - For more information, see help context 543022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddOLEObject(double Left, double Top, double Width, double Height, const QString& ClassName, const QString& FileName, Office::MsoTriState DisplayAsIcon, const QString& IconFileName, int IconIndex); - - /* - Method AddOLEObject - - For more information, see help context 543022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddOLEObject(double Left, double Top, double Width, double Height, const QString& ClassName, const QString& FileName, Office::MsoTriState DisplayAsIcon, const QString& IconFileName, int IconIndex, const QString& IconLabel); - - /* - Method AddOLEObject - - For more information, see help context 543022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddOLEObject(double Left, double Top, double Width, double Height, const QString& ClassName, const QString& FileName, Office::MsoTriState DisplayAsIcon, const QString& IconFileName, int IconIndex, const QString& IconLabel, Office::MsoTriState Link); - - /* - Method AddPicture - - For more information, see help context 543010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddPicture(const QString& FileName, Office::MsoTriState LinkToFile, Office::MsoTriState SaveWithDocument, double Left, double Top); - - /* - Method AddPicture - - For more information, see help context 543010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddPicture(const QString& FileName, Office::MsoTriState LinkToFile, Office::MsoTriState SaveWithDocument, double Left, double Top, double Width); - - /* - Method AddPicture - - For more information, see help context 543010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddPicture(const QString& FileName, Office::MsoTriState LinkToFile, Office::MsoTriState SaveWithDocument, double Left, double Top, double Width, double Height); - - /* - Method AddPlaceholder - - For more information, see help context 543024 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddPlaceholder(PowerPoint::PpPlaceholderType Type); - - /* - Method AddPlaceholder - - For more information, see help context 543024 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddPlaceholder(PowerPoint::PpPlaceholderType Type, double Left); - - /* - Method AddPlaceholder - - For more information, see help context 543024 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddPlaceholder(PowerPoint::PpPlaceholderType Type, double Left, double Top); - - /* - Method AddPlaceholder - - For more information, see help context 543024 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddPlaceholder(PowerPoint::PpPlaceholderType Type, double Left, double Top, double Width); - - /* - Method AddPlaceholder - - For more information, see help context 543024 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddPlaceholder(PowerPoint::PpPlaceholderType Type, double Left, double Top, double Width, double Height); - - /* - Method AddPolyline - - For more information, see help context 543011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddPolyline(const QVariant& SafeArrayOfPoints); - - /* - Method AddShape - - For more information, see help context 543012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddShape(Office::MsoAutoShapeType Type, double Left, double Top, double Width, double Height); - - /* - Method AddTable - - For more information, see help context 543027 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddTable(int NumRows, int NumColumns); - - /* - Method AddTable - - For more information, see help context 543027 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddTable(int NumRows, int NumColumns, double Left); - - /* - Method AddTable - - For more information, see help context 543027 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddTable(int NumRows, int NumColumns, double Left, double Top); - - /* - Method AddTable - - For more information, see help context 543027 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddTable(int NumRows, int NumColumns, double Left, double Top, double Width); - - /* - Method AddTable - - For more information, see help context 543027 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddTable(int NumRows, int NumColumns, double Left, double Top, double Width, double Height); - - /* - Method AddTextEffect - - For more information, see help context 543013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddTextEffect(Office::MsoPresetTextEffect PresetTextEffect, const QString& Text, const QString& FontName, double FontSize, Office::MsoTriState FontBold, Office::MsoTriState FontItalic, double Left, double Top); - - /* - Method AddTextbox - - For more information, see help context 543014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddTextbox(Office::MsoTextOrientation Orientation, double Left, double Top, double Width, double Height); - - /* - Method AddTitle - - For more information, see help context 543019 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddTitle(); - - /* - Method BuildFreeform - - For more information, see help context 543015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::FreeformBuilder* BuildFreeform(Office::MsoEditingType EditingType, double X1, double Y1); - - /* - Method Item - - For more information, see help context 543003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* Item(const QVariant& Index); - - /* - Method Paste - - For more information, see help context 543026 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeRange* Paste(); - - /* - Method PasteSpecial - - For more information, see help context 543028 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeRange* PasteSpecial(); - - /* - Method PasteSpecial - - For more information, see help context 543028 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeRange* PasteSpecial(PowerPoint::PpPasteDataType DataType); - - /* - Method PasteSpecial - - For more information, see help context 543028 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeRange* PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon); - - /* - Method PasteSpecial - - For more information, see help context 543028 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeRange* PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon, const QString& IconFileName); - - /* - Method PasteSpecial - - For more information, see help context 543028 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeRange* PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon, const QString& IconFileName, int IconIndex); - - /* - Method PasteSpecial - - For more information, see help context 543028 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeRange* PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon, const QString& IconFileName, int IconIndex, const QString& IconLabel); - - /* - Method PasteSpecial - - For more information, see help context 543028 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeRange* PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon, const QString& IconFileName, int IconIndex, const QString& IconLabel, Office::MsoTriState Link); - - /* - Method Range - - For more information, see help context 543017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeRange* Range(); - - /* - Method Range - - For more information, see help context 543017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeRange* Range(const QVariant& Index); - - /* - Method SelectAll - - For more information, see help context 543016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SelectAll(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Placeholders : public QAxObject -{ -public: - Placeholders(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 544001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 544002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 544003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* Item(int Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT PlaceholderFormat : public QAxObject -{ -public: - PlaceholderFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 545001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Parent - - For more information, see help context 545002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Type - - For more information, see help context 545003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpPlaceholderType Type() const; //Returns the value of Type - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT FreeformBuilder : public QAxObject -{ -public: - FreeformBuilder(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 546001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Method AddNodes - - For more information, see help context 546002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void AddNodes(Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1); - - /* - Method AddNodes - - For more information, see help context 546002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void AddNodes(Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2); - - /* - Method AddNodes - - For more information, see help context 546002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void AddNodes(Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2, double Y2); - - /* - Method AddNodes - - For more information, see help context 546002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void AddNodes(Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2, double Y2, double X3); - - /* - Method AddNodes - - For more information, see help context 546002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void AddNodes(Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2, double Y2, double X3, double Y3); - - /* - Method ConvertToShape - - For more information, see help context 546003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* ConvertToShape(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Shape : public QAxObject -{ -public: - Shape(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property ActionSettings - - For more information, see help context 547048 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ActionSettings* ActionSettings() const; //Returns the value of ActionSettings - - /* - Property Adjustments - - For more information, see help context 547015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Adjustments* Adjustments() const; //Returns the value of Adjustments - - /* - Property AlternativeText - - For more information, see help context 547058 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString AlternativeText() const; //Returns the value of AlternativeText - inline void SetAlternativeText(const QString& value); //Sets the value of the AlternativeText property - - /* - Property AnimationSettings - - For more information, see help context 547047 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::AnimationSettings* AnimationSettings() const; //Returns the value of AnimationSettings - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property AutoShapeType - - For more information, see help context 547016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoAutoShapeType AutoShapeType() const; //Returns the value of AutoShapeType - inline void SetAutoShapeType(Office::MsoAutoShapeType value); //Sets the value of the AutoShapeType property - - /* - Property BlackWhiteMode - - For more information, see help context 547017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoBlackWhiteMode BlackWhiteMode() const; //Returns the value of BlackWhiteMode - inline void SetBlackWhiteMode(Office::MsoBlackWhiteMode value); //Sets the value of the BlackWhiteMode property - - /* - Property Callout - - For more information, see help context 547018 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::CalloutFormat* Callout() const; //Returns the value of Callout - - /* - Property CanvasItems - - For more information, see help context 547068 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::CanvasShapes* CanvasItems() const; //Returns the value of CanvasItems - - /* - Property Child - - For more information, see help context 547066 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Child() const; //Returns the value of Child - - /* - Property ConnectionSiteCount - - For more information, see help context 547019 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int ConnectionSiteCount() const; //Returns the value of ConnectionSiteCount - - /* - Property Connector - - For more information, see help context 547020 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Connector() const; //Returns the value of Connector - - /* - Property ConnectorFormat - - For more information, see help context 547021 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ConnectorFormat* ConnectorFormat() const; //Returns the value of ConnectorFormat - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Diagram - - For more information, see help context 547063 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Diagram* Diagram() const; //Returns the value of Diagram - - /* - Property DiagramNode - - For more information, see help context 547065 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DiagramNode* DiagramNode() const; //Returns the value of DiagramNode - - /* - Property Fill - - For more information, see help context 547022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::FillFormat* Fill() const; //Returns the value of Fill - - /* - Property GroupItems - - For more information, see help context 547023 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::GroupShapes* GroupItems() const; //Returns the value of GroupItems - - /* - Property HasDiagram - - For more information, see help context 547062 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState HasDiagram() const; //Returns the value of HasDiagram - - /* - Property HasDiagramNode - - For more information, see help context 547064 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState HasDiagramNode() const; //Returns the value of HasDiagramNode - - /* - Property HasTable - - For more information, see help context 547059 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState HasTable() const; //Returns the value of HasTable - - /* - Property HasTextFrame - - For more information, see help context 547055 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState HasTextFrame() const; //Returns the value of HasTextFrame - - /* - Property Height - - For more information, see help context 547024 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Height() const; //Returns the value of Height - inline void SetHeight(double value); //Sets the value of the Height property - - /* - Property HorizontalFlip - - For more information, see help context 547025 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState HorizontalFlip() const; //Returns the value of HorizontalFlip - - /* - Property Id - - For more information, see help context 547069 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Id() const; //Returns the value of Id - - /* - Property Left - - For more information, see help context 547026 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Left() const; //Returns the value of Left - inline void SetLeft(double value); //Sets the value of the Left property - - /* - Property Line - - For more information, see help context 547027 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::LineFormat* Line() const; //Returns the value of Line - - /* - Property LinkFormat - - For more information, see help context 547045 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::LinkFormat* LinkFormat() const; //Returns the value of LinkFormat - - /* - Property LockAspectRatio - - For more information, see help context 547028 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState LockAspectRatio() const; //Returns the value of LockAspectRatio - inline void SetLockAspectRatio(Office::MsoTriState value); //Sets the value of the LockAspectRatio property - - /* - Property MediaType - - For more information, see help context 547054 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpMediaType MediaType() const; //Returns the value of MediaType - - /* - Property Name - - For more information, see help context 547029 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Name() const; //Returns the value of Name - inline void SetName(const QString& value); //Sets the value of the Name property - - /* - Property Nodes - - For more information, see help context 547030 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeNodes* Nodes() const; //Returns the value of Nodes - - /* - Property OLEFormat - - For more information, see help context 547044 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::OLEFormat* OLEFormat() const; //Returns the value of OLEFormat - - /* - Property Parent - - For more information, see help context 547001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property ParentGroup - - For more information, see help context 547067 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* ParentGroup() const; //Returns the value of ParentGroup - - /* - Property PictureFormat - - For more information, see help context 547032 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PictureFormat* PictureFormat() const; //Returns the value of PictureFormat - - /* - Property PlaceholderFormat - - For more information, see help context 547046 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PlaceholderFormat* PlaceholderFormat() const; //Returns the value of PlaceholderFormat - - /* - Property RTF - - For more information, see help context 547074 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString RTF() const; //Returns the value of RTF - inline void SetRTF(const QString& value); //Sets the value of the RTF property - - /* - Property Rotation - - For more information, see help context 547031 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Rotation() const; //Returns the value of Rotation - inline void SetRotation(double value); //Sets the value of the Rotation property - - /* - Property Script - - For more information, see help context 547057 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::Script* Script() const; //Returns the value of Script - - /* - Property Shadow - - For more information, see help context 547033 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShadowFormat* Shadow() const; //Returns the value of Shadow - - /* - Property SoundFormat - - For more information, see help context 547056 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SoundFormat* SoundFormat() const; //Returns the value of SoundFormat - - /* - Property Table - - For more information, see help context 547060 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Table* Table() const; //Returns the value of Table - - /* - Property Tags - - For more information, see help context 547049 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Tags* Tags() const; //Returns the value of Tags - - /* - Property TextEffect - - For more information, see help context 547034 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextEffectFormat* TextEffect() const; //Returns the value of TextEffect - - /* - Property TextFrame - - For more information, see help context 547035 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextFrame* TextFrame() const; //Returns the value of TextFrame - - /* - Property ThreeD - - For more information, see help context 547036 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ThreeDFormat* ThreeD() const; //Returns the value of ThreeD - - /* - Property Top - - For more information, see help context 547037 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Top() const; //Returns the value of Top - inline void SetTop(double value); //Sets the value of the Top property - - /* - Property Type - - For more information, see help context 547038 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoShapeType Type() const; //Returns the value of Type - - /* - Property VerticalFlip - - For more information, see help context 547039 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState VerticalFlip() const; //Returns the value of VerticalFlip - - /* - Property Vertices - - For more information, see help context 547040 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant Vertices() const; //Returns the value of Vertices - - /* - Property Visible - - For more information, see help context 547041 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Visible() const; //Returns the value of Visible - inline void SetVisible(Office::MsoTriState value); //Sets the value of the Visible property - - /* - Property Width - - For more information, see help context 547042 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Width() const; //Returns the value of Width - inline void SetWidth(double value); //Sets the value of the Width property - - /* - Property ZOrderPosition - - For more information, see help context 547043 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int ZOrderPosition() const; //Returns the value of ZOrderPosition - - /* - Method Apply - - For more information, see help context 547002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Apply(); - - /* - Method CanvasCropBottom - - For more information, see help context 547073 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void CanvasCropBottom(double Increment); - - /* - Method CanvasCropLeft - - For more information, see help context 547070 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void CanvasCropLeft(double Increment); - - /* - Method CanvasCropRight - - For more information, see help context 547072 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void CanvasCropRight(double Increment); - - /* - Method CanvasCropTop - - For more information, see help context 547071 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void CanvasCropTop(double Increment); - - /* - Method Copy - - For more information, see help context 547051 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Copy(); - - /* - Method Cut - - For more information, see help context 547050 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Cut(); - - /* - Method Delete - - For more information, see help context 547003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Delete(); - - /* - Method Duplicate - - For more information, see help context 547053 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeRange* Duplicate(); - - /* - Method Export - - For more information, see help context 547061 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Export(const QString& PathName, PowerPoint::PpShapeFormat Filter); - - /* - Method Export - - For more information, see help context 547061 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Export(const QString& PathName, PowerPoint::PpShapeFormat Filter, int ScaleWidth); - - /* - Method Export - - For more information, see help context 547061 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Export(const QString& PathName, PowerPoint::PpShapeFormat Filter, int ScaleWidth, int ScaleHeight); - - /* - Method Export - - For more information, see help context 547061 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Export(const QString& PathName, PowerPoint::PpShapeFormat Filter, int ScaleWidth, int ScaleHeight, PowerPoint::PpExportMode ExportMode); - - /* - Method Flip - - For more information, see help context 547004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Flip(Office::MsoFlipCmd FlipCmd); - - /* - Method IncrementLeft - - For more information, see help context 547005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void IncrementLeft(double Increment); - - /* - Method IncrementRotation - - For more information, see help context 547006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void IncrementRotation(double Increment); - - /* - Method IncrementTop - - For more information, see help context 547007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void IncrementTop(double Increment); - - /* - Method PickUp - - For more information, see help context 547008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PickUp(); - - /* - Method RerouteConnections - - For more information, see help context 547009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void RerouteConnections(); - - /* - Method ScaleHeight - - For more information, see help context 547010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ScaleHeight(double Factor, Office::MsoTriState RelativeToOriginalSize); - - /* - Method ScaleHeight - - For more information, see help context 547010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ScaleHeight(double Factor, Office::MsoTriState RelativeToOriginalSize, Office::MsoScaleFrom fScale); - - /* - Method ScaleWidth - - For more information, see help context 547011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ScaleWidth(double Factor, Office::MsoTriState RelativeToOriginalSize); - - /* - Method ScaleWidth - - For more information, see help context 547011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ScaleWidth(double Factor, Office::MsoTriState RelativeToOriginalSize, Office::MsoScaleFrom fScale); - - /* - Method Select - - For more information, see help context 547052 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Select(); - - /* - Method Select - - For more information, see help context 547052 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Select(Office::MsoTriState Replace); - - /* - Method SetShapesDefaultProperties - - For more information, see help context 547012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SetShapesDefaultProperties(); - - /* - Method Ungroup - - For more information, see help context 547013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeRange* Ungroup(); - - /* - Method ZOrder - - For more information, see help context 547014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ZOrder(Office::MsoZOrderCmd ZOrderCmd); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT ShapeRange : public QAxObject -{ -public: - ShapeRange(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property ActionSettings - - For more information, see help context 548048 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ActionSettings* ActionSettings() const; //Returns the value of ActionSettings - - /* - Property Adjustments - - For more information, see help context 548015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Adjustments* Adjustments() const; //Returns the value of Adjustments - - /* - Property AlternativeText - - For more information, see help context 548067 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString AlternativeText() const; //Returns the value of AlternativeText - inline void SetAlternativeText(const QString& value); //Sets the value of the AlternativeText property - - /* - Property AnimationSettings - - For more information, see help context 548047 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::AnimationSettings* AnimationSettings() const; //Returns the value of AnimationSettings - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property AutoShapeType - - For more information, see help context 548016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoAutoShapeType AutoShapeType() const; //Returns the value of AutoShapeType - inline void SetAutoShapeType(Office::MsoAutoShapeType value); //Sets the value of the AutoShapeType property - - /* - Property BlackWhiteMode - - For more information, see help context 548017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoBlackWhiteMode BlackWhiteMode() const; //Returns the value of BlackWhiteMode - inline void SetBlackWhiteMode(Office::MsoBlackWhiteMode value); //Sets the value of the BlackWhiteMode property - - /* - Property Callout - - For more information, see help context 548018 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::CalloutFormat* Callout() const; //Returns the value of Callout - - /* - Property CanvasItems - - For more information, see help context 548077 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::CanvasShapes* CanvasItems() const; //Returns the value of CanvasItems - - /* - Property Child - - For more information, see help context 548075 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Child() const; //Returns the value of Child - - /* - Property ConnectionSiteCount - - For more information, see help context 548019 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int ConnectionSiteCount() const; //Returns the value of ConnectionSiteCount - - /* - Property Connector - - For more information, see help context 548020 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Connector() const; //Returns the value of Connector - - /* - Property ConnectorFormat - - For more information, see help context 548021 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ConnectorFormat* ConnectorFormat() const; //Returns the value of ConnectorFormat - - /* - Property Count - - For more information, see help context 548060 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Diagram - - For more information, see help context 548072 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Diagram* Diagram() const; //Returns the value of Diagram - - /* - Property DiagramNode - - For more information, see help context 548074 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DiagramNode* DiagramNode() const; //Returns the value of DiagramNode - - /* - Property Fill - - For more information, see help context 548022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::FillFormat* Fill() const; //Returns the value of Fill - - /* - Property GroupItems - - For more information, see help context 548023 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::GroupShapes* GroupItems() const; //Returns the value of GroupItems - - /* - Property HasDiagram - - For more information, see help context 548071 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState HasDiagram() const; //Returns the value of HasDiagram - - /* - Property HasDiagramNode - - For more information, see help context 548073 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState HasDiagramNode() const; //Returns the value of HasDiagramNode - - /* - Property HasTable - - For more information, see help context 548068 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState HasTable() const; //Returns the value of HasTable - - /* - Property HasTextFrame - - For more information, see help context 548055 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState HasTextFrame() const; //Returns the value of HasTextFrame - - /* - Property Height - - For more information, see help context 548024 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Height() const; //Returns the value of Height - inline void SetHeight(double value); //Sets the value of the Height property - - /* - Property HorizontalFlip - - For more information, see help context 548025 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState HorizontalFlip() const; //Returns the value of HorizontalFlip - - /* - Property Id - - For more information, see help context 548078 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Id() const; //Returns the value of Id - - /* - Property Left - - For more information, see help context 548026 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Left() const; //Returns the value of Left - inline void SetLeft(double value); //Sets the value of the Left property - - /* - Property Line - - For more information, see help context 548027 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::LineFormat* Line() const; //Returns the value of Line - - /* - Property LinkFormat - - For more information, see help context 548045 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::LinkFormat* LinkFormat() const; //Returns the value of LinkFormat - - /* - Property LockAspectRatio - - For more information, see help context 548028 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState LockAspectRatio() const; //Returns the value of LockAspectRatio - inline void SetLockAspectRatio(Office::MsoTriState value); //Sets the value of the LockAspectRatio property - - /* - Property MediaType - - For more information, see help context 548054 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpMediaType MediaType() const; //Returns the value of MediaType - - /* - Property Name - - For more information, see help context 548029 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Name() const; //Returns the value of Name - inline void SetName(const QString& value); //Sets the value of the Name property - - /* - Property Nodes - - For more information, see help context 548030 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeNodes* Nodes() const; //Returns the value of Nodes - - /* - Property OLEFormat - - For more information, see help context 548044 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::OLEFormat* OLEFormat() const; //Returns the value of OLEFormat - - /* - Property Parent - - For more information, see help context 548001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property ParentGroup - - For more information, see help context 548076 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* ParentGroup() const; //Returns the value of ParentGroup - - /* - Property PictureFormat - - For more information, see help context 548032 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PictureFormat* PictureFormat() const; //Returns the value of PictureFormat - - /* - Property PlaceholderFormat - - For more information, see help context 548046 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PlaceholderFormat* PlaceholderFormat() const; //Returns the value of PlaceholderFormat - - /* - Property RTF - - For more information, see help context 548083 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString RTF() const; //Returns the value of RTF - inline void SetRTF(const QString& value); //Sets the value of the RTF property - - /* - Property Rotation - - For more information, see help context 548031 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Rotation() const; //Returns the value of Rotation - inline void SetRotation(double value); //Sets the value of the Rotation property - - /* - Property Script - - For more information, see help context 548066 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::Script* Script() const; //Returns the value of Script - - /* - Property Shadow - - For more information, see help context 548033 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShadowFormat* Shadow() const; //Returns the value of Shadow - - /* - Property SoundFormat - - For more information, see help context 548056 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SoundFormat* SoundFormat() const; //Returns the value of SoundFormat - - /* - Property Table - - For more information, see help context 548069 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Table* Table() const; //Returns the value of Table - - /* - Property Tags - - For more information, see help context 548049 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Tags* Tags() const; //Returns the value of Tags - - /* - Property TextEffect - - For more information, see help context 548034 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextEffectFormat* TextEffect() const; //Returns the value of TextEffect - - /* - Property TextFrame - - For more information, see help context 548035 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextFrame* TextFrame() const; //Returns the value of TextFrame - - /* - Property ThreeD - - For more information, see help context 548036 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ThreeDFormat* ThreeD() const; //Returns the value of ThreeD - - /* - Property Top - - For more information, see help context 548037 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Top() const; //Returns the value of Top - inline void SetTop(double value); //Sets the value of the Top property - - /* - Property Type - - For more information, see help context 548038 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoShapeType Type() const; //Returns the value of Type - - /* - Property VerticalFlip - - For more information, see help context 548039 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState VerticalFlip() const; //Returns the value of VerticalFlip - - /* - Property Vertices - - For more information, see help context 548040 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant Vertices() const; //Returns the value of Vertices - - /* - Property Visible - - For more information, see help context 548041 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Visible() const; //Returns the value of Visible - inline void SetVisible(Office::MsoTriState value); //Sets the value of the Visible property - - /* - Property Width - - For more information, see help context 548042 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Width() const; //Returns the value of Width - inline void SetWidth(double value); //Sets the value of the Width property - - /* - Property ZOrderPosition - - For more information, see help context 548043 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int ZOrderPosition() const; //Returns the value of ZOrderPosition - - /* - Property _NewEnum - - For more information, see help context 548058 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Align - - For more information, see help context 548063 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Align(Office::MsoAlignCmd AlignCmd, Office::MsoTriState RelativeTo); - - /* - Method Apply - - For more information, see help context 548002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Apply(); - - /* - Method CanvasCropBottom - - For more information, see help context 548082 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void CanvasCropBottom(double Increment); - - /* - Method CanvasCropLeft - - For more information, see help context 548079 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void CanvasCropLeft(double Increment); - - /* - Method CanvasCropRight - - For more information, see help context 548081 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void CanvasCropRight(double Increment); - - /* - Method CanvasCropTop - - For more information, see help context 548080 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void CanvasCropTop(double Increment); - - /* - Method Copy - - For more information, see help context 548051 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Copy(); - - /* - Method Cut - - For more information, see help context 548050 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Cut(); - - /* - Method Delete - - For more information, see help context 548003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Delete(); - - /* - Method Distribute - - For more information, see help context 548064 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Distribute(Office::MsoDistributeCmd DistributeCmd, Office::MsoTriState RelativeTo); - - /* - Method Duplicate - - For more information, see help context 548053 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeRange* Duplicate(); - - /* - Method Export - - For more information, see help context 548070 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Export(const QString& PathName, PowerPoint::PpShapeFormat Filter); - - /* - Method Export - - For more information, see help context 548070 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Export(const QString& PathName, PowerPoint::PpShapeFormat Filter, int ScaleWidth); - - /* - Method Export - - For more information, see help context 548070 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Export(const QString& PathName, PowerPoint::PpShapeFormat Filter, int ScaleWidth, int ScaleHeight); - - /* - Method Export - - For more information, see help context 548070 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Export(const QString& PathName, PowerPoint::PpShapeFormat Filter, int ScaleWidth, int ScaleHeight, PowerPoint::PpExportMode ExportMode); - - /* - Method Flip - - For more information, see help context 548004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Flip(Office::MsoFlipCmd FlipCmd); - - /* - Method GetPolygonalRepresentation - - For more information, see help context 548065 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void GetPolygonalRepresentation(uint maxPointsInBuffer, double& pPoints, uint& numPointsInPolygon, Office::MsoTriState*& IsOpen); - - /* - Method Group - - For more information, see help context 548061 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* Group(); - - /* - Method IncrementLeft - - For more information, see help context 548005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void IncrementLeft(double Increment); - - /* - Method IncrementRotation - - For more information, see help context 548006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void IncrementRotation(double Increment); - - /* - Method IncrementTop - - For more information, see help context 548007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void IncrementTop(double Increment); - - /* - Method Item - - For more information, see help context 548057 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* Item(const QVariant& Index); - - /* - Method PickUp - - For more information, see help context 548008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PickUp(); - - /* - Method Regroup - - For more information, see help context 548062 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* Regroup(); - - /* - Method RerouteConnections - - For more information, see help context 548009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void RerouteConnections(); - - /* - Method ScaleHeight - - For more information, see help context 548010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ScaleHeight(double Factor, Office::MsoTriState RelativeToOriginalSize); - - /* - Method ScaleHeight - - For more information, see help context 548010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ScaleHeight(double Factor, Office::MsoTriState RelativeToOriginalSize, Office::MsoScaleFrom fScale); - - /* - Method ScaleWidth - - For more information, see help context 548011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ScaleWidth(double Factor, Office::MsoTriState RelativeToOriginalSize); - - /* - Method ScaleWidth - - For more information, see help context 548011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ScaleWidth(double Factor, Office::MsoTriState RelativeToOriginalSize, Office::MsoScaleFrom fScale); - - /* - Method Select - - For more information, see help context 548052 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Select(); - - /* - Method Select - - For more information, see help context 548052 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Select(Office::MsoTriState Replace); - - /* - Method SetShapesDefaultProperties - - For more information, see help context 548012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SetShapesDefaultProperties(); - - /* - Method Ungroup - - For more information, see help context 548013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeRange* Ungroup(); - - /* - Method ZOrder - - For more information, see help context 548014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ZOrder(Office::MsoZOrderCmd ZOrderCmd); - - /* - Method _Index - - For more information, see help context 548059 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT GroupShapes : public QAxObject -{ -public: - GroupShapes(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 549002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 549001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 549004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 549003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* Item(const QVariant& Index); - - /* - Method Range - - For more information, see help context 549005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeRange* Range(const QVariant& Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Adjustments : public QAxObject -{ -public: - Adjustments(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 550002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 550001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Method Item - - For more information, see help context 550003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Item(int Index); - - /* - Method SetItem - */ - inline int SetItem(int Index, double rhs); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT PictureFormat : public QAxObject -{ -public: - PictureFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Brightness - - For more information, see help context 551004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Brightness() const; //Returns the value of Brightness - inline void SetBrightness(double value); //Sets the value of the Brightness property - - /* - Property ColorType - - For more information, see help context 551005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoPictureColorType ColorType() const; //Returns the value of ColorType - inline void SetColorType(Office::MsoPictureColorType value); //Sets the value of the ColorType property - - /* - Property Contrast - - For more information, see help context 551006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Contrast() const; //Returns the value of Contrast - inline void SetContrast(double value); //Sets the value of the Contrast property - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property CropBottom - - For more information, see help context 551007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double CropBottom() const; //Returns the value of CropBottom - inline void SetCropBottom(double value); //Sets the value of the CropBottom property - - /* - Property CropLeft - - For more information, see help context 551008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double CropLeft() const; //Returns the value of CropLeft - inline void SetCropLeft(double value); //Sets the value of the CropLeft property - - /* - Property CropRight - - For more information, see help context 551009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double CropRight() const; //Returns the value of CropRight - inline void SetCropRight(double value); //Sets the value of the CropRight property - - /* - Property CropTop - - For more information, see help context 551010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double CropTop() const; //Returns the value of CropTop - inline void SetCropTop(double value); //Sets the value of the CropTop property - - /* - Property Parent - - For more information, see help context 551001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property TransparencyColor - - For more information, see help context 551011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int TransparencyColor() const; //Returns the value of TransparencyColor - inline void SetTransparencyColor(int value); //Sets the value of the TransparencyColor property - - /* - Property TransparentBackground - - For more information, see help context 551012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState TransparentBackground() const; //Returns the value of TransparentBackground - inline void SetTransparentBackground(Office::MsoTriState value); //Sets the value of the TransparentBackground property - - /* - Method IncrementBrightness - - For more information, see help context 551002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void IncrementBrightness(double Increment); - - /* - Method IncrementContrast - - For more information, see help context 551003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void IncrementContrast(double Increment); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT FillFormat : public QAxObject -{ -public: - FillFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property BackColor - - For more information, see help context 552011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorFormat* BackColor() const; //Returns the value of BackColor - inline void SetBackColor(PowerPoint::ColorFormat* value); //Sets the value of the BackColor property - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property ForeColor - - For more information, see help context 552012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorFormat* ForeColor() const; //Returns the value of ForeColor - inline void SetForeColor(PowerPoint::ColorFormat* value); //Sets the value of the ForeColor property - - /* - Property GradientColorType - - For more information, see help context 552013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoGradientColorType GradientColorType() const; //Returns the value of GradientColorType - - /* - Property GradientDegree - - For more information, see help context 552014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double GradientDegree() const; //Returns the value of GradientDegree - - /* - Property GradientStyle - - For more information, see help context 552015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoGradientStyle GradientStyle() const; //Returns the value of GradientStyle - - /* - Property GradientVariant - - For more information, see help context 552016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int GradientVariant() const; //Returns the value of GradientVariant - - /* - Property Parent - - For more information, see help context 552001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Pattern - - For more information, see help context 552017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoPatternType Pattern() const; //Returns the value of Pattern - - /* - Property PresetGradientType - - For more information, see help context 552018 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoPresetGradientType PresetGradientType() const; //Returns the value of PresetGradientType - - /* - Property PresetTexture - - For more information, see help context 552019 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoPresetTexture PresetTexture() const; //Returns the value of PresetTexture - - /* - Property TextureName - - For more information, see help context 552020 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString TextureName() const; //Returns the value of TextureName - - /* - Property TextureType - - For more information, see help context 552021 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTextureType TextureType() const; //Returns the value of TextureType - - /* - Property Transparency - - For more information, see help context 552022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Transparency() const; //Returns the value of Transparency - inline void SetTransparency(double value); //Sets the value of the Transparency property - - /* - Property Type - - For more information, see help context 552023 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoFillType Type() const; //Returns the value of Type - - /* - Property Visible - - For more information, see help context 552024 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Visible() const; //Returns the value of Visible - inline void SetVisible(Office::MsoTriState value); //Sets the value of the Visible property - - /* - Method Background - - For more information, see help context 552002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Background(); - - /* - Method OneColorGradient - - For more information, see help context 552003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void OneColorGradient(Office::MsoGradientStyle Style, int Variant, double Degree); - - /* - Method Patterned - - For more information, see help context 552004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Patterned(Office::MsoPatternType Pattern); - - /* - Method PresetGradient - - For more information, see help context 552005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PresetGradient(Office::MsoGradientStyle Style, int Variant, Office::MsoPresetGradientType PresetGradientType); - - /* - Method PresetTextured - - For more information, see help context 552006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PresetTextured(Office::MsoPresetTexture PresetTexture); - - /* - Method Solid - - For more information, see help context 552007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Solid(); - - /* - Method TwoColorGradient - - For more information, see help context 552008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void TwoColorGradient(Office::MsoGradientStyle Style, int Variant); - - /* - Method UserPicture - - For more information, see help context 552009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void UserPicture(const QString& PictureFile); - - /* - Method UserTextured - - For more information, see help context 552010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void UserTextured(const QString& TextureFile); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT LineFormat : public QAxObject -{ -public: - LineFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property BackColor - - For more information, see help context 553002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorFormat* BackColor() const; //Returns the value of BackColor - inline void SetBackColor(PowerPoint::ColorFormat* value); //Sets the value of the BackColor property - - /* - Property BeginArrowheadLength - - For more information, see help context 553003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoArrowheadLength BeginArrowheadLength() const; //Returns the value of BeginArrowheadLength - inline void SetBeginArrowheadLength(Office::MsoArrowheadLength value); //Sets the value of the BeginArrowheadLength property - - /* - Property BeginArrowheadStyle - - For more information, see help context 553004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoArrowheadStyle BeginArrowheadStyle() const; //Returns the value of BeginArrowheadStyle - inline void SetBeginArrowheadStyle(Office::MsoArrowheadStyle value); //Sets the value of the BeginArrowheadStyle property - - /* - Property BeginArrowheadWidth - - For more information, see help context 553005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoArrowheadWidth BeginArrowheadWidth() const; //Returns the value of BeginArrowheadWidth - inline void SetBeginArrowheadWidth(Office::MsoArrowheadWidth value); //Sets the value of the BeginArrowheadWidth property - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property DashStyle - - For more information, see help context 553006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoLineDashStyle DashStyle() const; //Returns the value of DashStyle - inline void SetDashStyle(Office::MsoLineDashStyle value); //Sets the value of the DashStyle property - - /* - Property EndArrowheadLength - - For more information, see help context 553007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoArrowheadLength EndArrowheadLength() const; //Returns the value of EndArrowheadLength - inline void SetEndArrowheadLength(Office::MsoArrowheadLength value); //Sets the value of the EndArrowheadLength property - - /* - Property EndArrowheadStyle - - For more information, see help context 553008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoArrowheadStyle EndArrowheadStyle() const; //Returns the value of EndArrowheadStyle - inline void SetEndArrowheadStyle(Office::MsoArrowheadStyle value); //Sets the value of the EndArrowheadStyle property - - /* - Property EndArrowheadWidth - - For more information, see help context 553009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoArrowheadWidth EndArrowheadWidth() const; //Returns the value of EndArrowheadWidth - inline void SetEndArrowheadWidth(Office::MsoArrowheadWidth value); //Sets the value of the EndArrowheadWidth property - - /* - Property ForeColor - - For more information, see help context 553010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorFormat* ForeColor() const; //Returns the value of ForeColor - inline void SetForeColor(PowerPoint::ColorFormat* value); //Sets the value of the ForeColor property - - /* - Property InsetPen - - For more information, see help context 553016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState InsetPen() const; //Returns the value of InsetPen - inline void SetInsetPen(Office::MsoTriState value); //Sets the value of the InsetPen property - - /* - Property Parent - - For more information, see help context 553001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Pattern - - For more information, see help context 553011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoPatternType Pattern() const; //Returns the value of Pattern - inline void SetPattern(Office::MsoPatternType value); //Sets the value of the Pattern property - - /* - Property Style - - For more information, see help context 553012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoLineStyle Style() const; //Returns the value of Style - inline void SetStyle(Office::MsoLineStyle value); //Sets the value of the Style property - - /* - Property Transparency - - For more information, see help context 553013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Transparency() const; //Returns the value of Transparency - inline void SetTransparency(double value); //Sets the value of the Transparency property - - /* - Property Visible - - For more information, see help context 553014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Visible() const; //Returns the value of Visible - inline void SetVisible(Office::MsoTriState value); //Sets the value of the Visible property - - /* - Property Weight - - For more information, see help context 553015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Weight() const; //Returns the value of Weight - inline void SetWeight(double value); //Sets the value of the Weight property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT ShadowFormat : public QAxObject -{ -public: - ShadowFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property ForeColor - - For more information, see help context 554004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorFormat* ForeColor() const; //Returns the value of ForeColor - inline void SetForeColor(PowerPoint::ColorFormat* value); //Sets the value of the ForeColor property - - /* - Property Obscured - - For more information, see help context 554005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Obscured() const; //Returns the value of Obscured - inline void SetObscured(Office::MsoTriState value); //Sets the value of the Obscured property - - /* - Property OffsetX - - For more information, see help context 554006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double OffsetX() const; //Returns the value of OffsetX - inline void SetOffsetX(double value); //Sets the value of the OffsetX property - - /* - Property OffsetY - - For more information, see help context 554007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double OffsetY() const; //Returns the value of OffsetY - inline void SetOffsetY(double value); //Sets the value of the OffsetY property - - /* - Property Parent - - For more information, see help context 554001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Transparency - - For more information, see help context 554008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Transparency() const; //Returns the value of Transparency - inline void SetTransparency(double value); //Sets the value of the Transparency property - - /* - Property Type - - For more information, see help context 554009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoShadowType Type() const; //Returns the value of Type - inline void SetType(Office::MsoShadowType value); //Sets the value of the Type property - - /* - Property Visible - - For more information, see help context 554010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Visible() const; //Returns the value of Visible - inline void SetVisible(Office::MsoTriState value); //Sets the value of the Visible property - - /* - Method IncrementOffsetX - - For more information, see help context 554002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void IncrementOffsetX(double Increment); - - /* - Method IncrementOffsetY - - For more information, see help context 554003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void IncrementOffsetY(double Increment); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT ConnectorFormat : public QAxObject -{ -public: - ConnectorFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property BeginConnected - - For more information, see help context 555006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState BeginConnected() const; //Returns the value of BeginConnected - - /* - Property BeginConnectedShape - - For more information, see help context 555007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* BeginConnectedShape() const; //Returns the value of BeginConnectedShape - - /* - Property BeginConnectionSite - - For more information, see help context 555008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int BeginConnectionSite() const; //Returns the value of BeginConnectionSite - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property EndConnected - - For more information, see help context 555009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState EndConnected() const; //Returns the value of EndConnected - - /* - Property EndConnectedShape - - For more information, see help context 555010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* EndConnectedShape() const; //Returns the value of EndConnectedShape - - /* - Property EndConnectionSite - - For more information, see help context 555011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int EndConnectionSite() const; //Returns the value of EndConnectionSite - - /* - Property Parent - - For more information, see help context 555001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Type - - For more information, see help context 555012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoConnectorType Type() const; //Returns the value of Type - inline void SetType(Office::MsoConnectorType value); //Sets the value of the Type property - - /* - Method BeginConnect - - For more information, see help context 555002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void BeginConnect(PowerPoint::Shape* ConnectedShape, int ConnectionSite); - - /* - Method BeginDisconnect - - For more information, see help context 555003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void BeginDisconnect(); - - /* - Method EndConnect - - For more information, see help context 555004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void EndConnect(PowerPoint::Shape* ConnectedShape, int ConnectionSite); - - /* - Method EndDisconnect - - For more information, see help context 555005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void EndDisconnect(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT TextEffectFormat : public QAxObject -{ -public: - TextEffectFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Alignment - - For more information, see help context 556003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTextEffectAlignment Alignment() const; //Returns the value of Alignment - inline void SetAlignment(Office::MsoTextEffectAlignment value); //Sets the value of the Alignment property - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property FontBold - - For more information, see help context 556004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState FontBold() const; //Returns the value of FontBold - inline void SetFontBold(Office::MsoTriState value); //Sets the value of the FontBold property - - /* - Property FontItalic - - For more information, see help context 556005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState FontItalic() const; //Returns the value of FontItalic - inline void SetFontItalic(Office::MsoTriState value); //Sets the value of the FontItalic property - - /* - Property FontName - - For more information, see help context 556006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString FontName() const; //Returns the value of FontName - inline void SetFontName(const QString& value); //Sets the value of the FontName property - - /* - Property FontSize - - For more information, see help context 556007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double FontSize() const; //Returns the value of FontSize - inline void SetFontSize(double value); //Sets the value of the FontSize property - - /* - Property KernedPairs - - For more information, see help context 556008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState KernedPairs() const; //Returns the value of KernedPairs - inline void SetKernedPairs(Office::MsoTriState value); //Sets the value of the KernedPairs property - - /* - Property NormalizedHeight - - For more information, see help context 556009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState NormalizedHeight() const; //Returns the value of NormalizedHeight - inline void SetNormalizedHeight(Office::MsoTriState value); //Sets the value of the NormalizedHeight property - - /* - Property Parent - - For more information, see help context 556001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property PresetShape - - For more information, see help context 556010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoPresetTextEffectShape PresetShape() const; //Returns the value of PresetShape - inline void SetPresetShape(Office::MsoPresetTextEffectShape value); //Sets the value of the PresetShape property - - /* - Property PresetTextEffect - - For more information, see help context 556011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoPresetTextEffect PresetTextEffect() const; //Returns the value of PresetTextEffect - inline void SetPresetTextEffect(Office::MsoPresetTextEffect value); //Sets the value of the PresetTextEffect property - - /* - Property RotatedChars - - For more information, see help context 556012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState RotatedChars() const; //Returns the value of RotatedChars - inline void SetRotatedChars(Office::MsoTriState value); //Sets the value of the RotatedChars property - - /* - Property Text - - For more information, see help context 556013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Text() const; //Returns the value of Text - inline void SetText(const QString& value); //Sets the value of the Text property - - /* - Property Tracking - - For more information, see help context 556014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Tracking() const; //Returns the value of Tracking - inline void SetTracking(double value); //Sets the value of the Tracking property - - /* - Method ToggleVerticalText - - For more information, see help context 556002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ToggleVerticalText(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT ThreeDFormat : public QAxObject -{ -public: - ThreeDFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Depth - - For more information, see help context 557007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Depth() const; //Returns the value of Depth - inline void SetDepth(double value); //Sets the value of the Depth property - - /* - Property ExtrusionColor - - For more information, see help context 557008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorFormat* ExtrusionColor() const; //Returns the value of ExtrusionColor - - /* - Property ExtrusionColorType - - For more information, see help context 557009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoExtrusionColorType ExtrusionColorType() const; //Returns the value of ExtrusionColorType - inline void SetExtrusionColorType(Office::MsoExtrusionColorType value); //Sets the value of the ExtrusionColorType property - - /* - Property Parent - - For more information, see help context 557001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Perspective - - For more information, see help context 557010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Perspective() const; //Returns the value of Perspective - inline void SetPerspective(Office::MsoTriState value); //Sets the value of the Perspective property - - /* - Property PresetExtrusionDirection - - For more information, see help context 557011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoPresetExtrusionDirection PresetExtrusionDirection() const; //Returns the value of PresetExtrusionDirection - - /* - Property PresetLightingDirection - - For more information, see help context 557012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoPresetLightingDirection PresetLightingDirection() const; //Returns the value of PresetLightingDirection - inline void SetPresetLightingDirection(Office::MsoPresetLightingDirection value); //Sets the value of the PresetLightingDirection property - - /* - Property PresetLightingSoftness - - For more information, see help context 557013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoPresetLightingSoftness PresetLightingSoftness() const; //Returns the value of PresetLightingSoftness - inline void SetPresetLightingSoftness(Office::MsoPresetLightingSoftness value); //Sets the value of the PresetLightingSoftness property - - /* - Property PresetMaterial - - For more information, see help context 557014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoPresetMaterial PresetMaterial() const; //Returns the value of PresetMaterial - inline void SetPresetMaterial(Office::MsoPresetMaterial value); //Sets the value of the PresetMaterial property - - /* - Property PresetThreeDFormat - - For more information, see help context 557015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoPresetThreeDFormat PresetThreeDFormat() const; //Returns the value of PresetThreeDFormat - - /* - Property RotationX - - For more information, see help context 557016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double RotationX() const; //Returns the value of RotationX - inline void SetRotationX(double value); //Sets the value of the RotationX property - - /* - Property RotationY - - For more information, see help context 557017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double RotationY() const; //Returns the value of RotationY - inline void SetRotationY(double value); //Sets the value of the RotationY property - - /* - Property Visible - - For more information, see help context 557018 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Visible() const; //Returns the value of Visible - inline void SetVisible(Office::MsoTriState value); //Sets the value of the Visible property - - /* - Method IncrementRotationX - - For more information, see help context 557002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void IncrementRotationX(double Increment); - - /* - Method IncrementRotationY - - For more information, see help context 557003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void IncrementRotationY(double Increment); - - /* - Method ResetRotation - - For more information, see help context 557004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ResetRotation(); - - /* - Method SetExtrusionDirection - - For more information, see help context 557006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SetExtrusionDirection(Office::MsoPresetExtrusionDirection PresetExtrusionDirection); - - /* - Method SetThreeDFormat - - For more information, see help context 557005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SetThreeDFormat(Office::MsoPresetThreeDFormat PresetThreeDFormat); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT TextFrame : public QAxObject -{ -public: - TextFrame(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property AutoSize - - For more information, see help context 558012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpAutoSize AutoSize() const; //Returns the value of AutoSize - inline void SetAutoSize(PowerPoint::PpAutoSize value); //Sets the value of the AutoSize property - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property HasText - - For more information, see help context 558007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState HasText() const; //Returns the value of HasText - - /* - Property HorizontalAnchor - - For more information, see help context 558010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoHorizontalAnchor HorizontalAnchor() const; //Returns the value of HorizontalAnchor - inline void SetHorizontalAnchor(Office::MsoHorizontalAnchor value); //Sets the value of the HorizontalAnchor property - - /* - Property MarginBottom - - For more information, see help context 558002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double MarginBottom() const; //Returns the value of MarginBottom - inline void SetMarginBottom(double value); //Sets the value of the MarginBottom property - - /* - Property MarginLeft - - For more information, see help context 558003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double MarginLeft() const; //Returns the value of MarginLeft - inline void SetMarginLeft(double value); //Sets the value of the MarginLeft property - - /* - Property MarginRight - - For more information, see help context 558004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double MarginRight() const; //Returns the value of MarginRight - inline void SetMarginRight(double value); //Sets the value of the MarginRight property - - /* - Property MarginTop - - For more information, see help context 558005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double MarginTop() const; //Returns the value of MarginTop - inline void SetMarginTop(double value); //Sets the value of the MarginTop property - - /* - Property Orientation - - For more information, see help context 558006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTextOrientation Orientation() const; //Returns the value of Orientation - inline void SetOrientation(Office::MsoTextOrientation value); //Sets the value of the Orientation property - - /* - Property Parent - - For more information, see help context 558001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Ruler - - For more information, see help context 558009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Ruler* Ruler() const; //Returns the value of Ruler - - /* - Property TextRange - - For more information, see help context 558008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* TextRange() const; //Returns the value of TextRange - - /* - Property VerticalAnchor - - For more information, see help context 558011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoVerticalAnchor VerticalAnchor() const; //Returns the value of VerticalAnchor - inline void SetVerticalAnchor(Office::MsoVerticalAnchor value); //Sets the value of the VerticalAnchor property - - /* - Property WordWrap - - For more information, see help context 558013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState WordWrap() const; //Returns the value of WordWrap - inline void SetWordWrap(Office::MsoTriState value); //Sets the value of the WordWrap property - - /* - Method DeleteText - - For more information, see help context 558014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void DeleteText(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT CalloutFormat : public QAxObject -{ -public: - CalloutFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Accent - - For more information, see help context 559006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Accent() const; //Returns the value of Accent - inline void SetAccent(Office::MsoTriState value); //Sets the value of the Accent property - - /* - Property Angle - - For more information, see help context 559007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoCalloutAngleType Angle() const; //Returns the value of Angle - inline void SetAngle(Office::MsoCalloutAngleType value); //Sets the value of the Angle property - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property AutoAttach - - For more information, see help context 559008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState AutoAttach() const; //Returns the value of AutoAttach - inline void SetAutoAttach(Office::MsoTriState value); //Sets the value of the AutoAttach property - - /* - Property AutoLength - - For more information, see help context 559009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState AutoLength() const; //Returns the value of AutoLength - - /* - Property Border - - For more information, see help context 559010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Border() const; //Returns the value of Border - inline void SetBorder(Office::MsoTriState value); //Sets the value of the Border property - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Drop - - For more information, see help context 559011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Drop() const; //Returns the value of Drop - - /* - Property DropType - - For more information, see help context 559012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoCalloutDropType DropType() const; //Returns the value of DropType - - /* - Property Gap - - For more information, see help context 559013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Gap() const; //Returns the value of Gap - inline void SetGap(double value); //Sets the value of the Gap property - - /* - Property Length - - For more information, see help context 559014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Length() const; //Returns the value of Length - - /* - Property Parent - - For more information, see help context 559001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Type - - For more information, see help context 559015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoCalloutType Type() const; //Returns the value of Type - inline void SetType(Office::MsoCalloutType value); //Sets the value of the Type property - - /* - Method AutomaticLength - - For more information, see help context 559002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void AutomaticLength(); - - /* - Method CustomDrop - - For more information, see help context 559003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void CustomDrop(double Drop); - - /* - Method CustomLength - - For more information, see help context 559004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void CustomLength(double Length); - - /* - Method PresetDrop - - For more information, see help context 559005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PresetDrop(Office::MsoCalloutDropType DropType); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT ShapeNodes : public QAxObject -{ -public: - ShapeNodes(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 560002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 560001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 560004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Delete - - For more information, see help context 560005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Delete(int Index); - - /* - Method Insert - - For more information, see help context 560006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Insert(int Index, Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1); - - /* - Method Insert - - For more information, see help context 560006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Insert(int Index, Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2); - - /* - Method Insert - - For more information, see help context 560006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Insert(int Index, Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2, double Y2); - - /* - Method Insert - - For more information, see help context 560006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Insert(int Index, Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2, double Y2, double X3); - - /* - Method Insert - - For more information, see help context 560006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Insert(int Index, Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2, double Y2, double X3, double Y3); - - /* - Method Item - - For more information, see help context 560003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeNode* Item(const QVariant& Index); - - /* - Method SetEditingType - - For more information, see help context 560007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SetEditingType(int Index, Office::MsoEditingType EditingType); - - /* - Method SetPosition - - For more information, see help context 560008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SetPosition(int Index, double X1, double Y1); - - /* - Method SetSegmentType - - For more information, see help context 560009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SetSegmentType(int Index, Office::MsoSegmentType SegmentType); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT ShapeNode : public QAxObject -{ -public: - ShapeNode(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property EditingType - - For more information, see help context 561002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoEditingType EditingType() const; //Returns the value of EditingType - - /* - Property Parent - - For more information, see help context 561001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Points - - For more information, see help context 561003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant Points() const; //Returns the value of Points - - /* - Property SegmentType - - For more information, see help context 561004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoSegmentType SegmentType() const; //Returns the value of SegmentType - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT OLEFormat : public QAxObject -{ -public: - OLEFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 562001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property FollowColors - - For more information, see help context 562006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpFollowColors FollowColors() const; //Returns the value of FollowColors - inline void SetFollowColors(PowerPoint::PpFollowColors value); //Sets the value of the FollowColors property - - /* - Property Object - - For more information, see help context 562004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Object() const; //Returns the value of Object - - /* - Property ObjectVerbs - - For more information, see help context 562003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ObjectVerbs* ObjectVerbs() const; //Returns the value of ObjectVerbs - - /* - Property Parent - - For more information, see help context 562002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property ProgID - - For more information, see help context 562005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString ProgID() const; //Returns the value of ProgID - - /* - Method Activate - - For more information, see help context 562008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Activate(); - - /* - Method DoVerb - - For more information, see help context 562007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void DoVerb(); - - /* - Method DoVerb - - For more information, see help context 562007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void DoVerb(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT LinkFormat : public QAxObject -{ -public: - LinkFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 563001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property AutoUpdate - - For more information, see help context 563004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpUpdateOption AutoUpdate() const; //Returns the value of AutoUpdate - inline void SetAutoUpdate(PowerPoint::PpUpdateOption value); //Sets the value of the AutoUpdate property - - /* - Property Parent - - For more information, see help context 563002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property SourceFullName - - For more information, see help context 563003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString SourceFullName() const; //Returns the value of SourceFullName - inline void SetSourceFullName(const QString& value); //Sets the value of the SourceFullName property - - /* - Method Update - - For more information, see help context 563005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Update(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT ObjectVerbs : public QAxObject -{ -public: - ObjectVerbs(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 564001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 564002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 564003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Item(int Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT AnimationSettings : public QAxObject -{ -public: - AnimationSettings(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property AdvanceMode - - For more information, see help context 565008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpAdvanceMode AdvanceMode() const; //Returns the value of AdvanceMode - inline void SetAdvanceMode(PowerPoint::PpAdvanceMode value); //Sets the value of the AdvanceMode property - - /* - Property AdvanceTime - - For more information, see help context 565009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double AdvanceTime() const; //Returns the value of AdvanceTime - inline void SetAdvanceTime(double value); //Sets the value of the AdvanceTime property - - /* - Property AfterEffect - - For more information, see help context 565006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpAfterEffect AfterEffect() const; //Returns the value of AfterEffect - inline void SetAfterEffect(PowerPoint::PpAfterEffect value); //Sets the value of the AfterEffect property - - /* - Property Animate - - For more information, see help context 565013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Animate() const; //Returns the value of Animate - inline void SetAnimate(Office::MsoTriState value); //Sets the value of the Animate property - - /* - Property AnimateBackground - - For more information, see help context 565014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState AnimateBackground() const; //Returns the value of AnimateBackground - inline void SetAnimateBackground(Office::MsoTriState value); //Sets the value of the AnimateBackground property - - /* - Property AnimateTextInReverse - - For more information, see help context 565015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState AnimateTextInReverse() const; //Returns the value of AnimateTextInReverse - inline void SetAnimateTextInReverse(Office::MsoTriState value); //Sets the value of the AnimateTextInReverse property - - /* - Property AnimationOrder - - For more information, see help context 565007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int AnimationOrder() const; //Returns the value of AnimationOrder - inline void SetAnimationOrder(int value); //Sets the value of the AnimationOrder property - - /* - Property Application - - For more information, see help context 565001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property ChartUnitEffect - - For more information, see help context 565016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpChartUnitEffect ChartUnitEffect() const; //Returns the value of ChartUnitEffect - inline void SetChartUnitEffect(PowerPoint::PpChartUnitEffect value); //Sets the value of the ChartUnitEffect property - - /* - Property DimColor - - For more information, see help context 565003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorFormat* DimColor() const; //Returns the value of DimColor - - /* - Property EntryEffect - - For more information, see help context 565005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpEntryEffect EntryEffect() const; //Returns the value of EntryEffect - inline void SetEntryEffect(PowerPoint::PpEntryEffect value); //Sets the value of the EntryEffect property - - /* - Property Parent - - For more information, see help context 565002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property PlaySettings - - For more information, see help context 565010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PlaySettings* PlaySettings() const; //Returns the value of PlaySettings - - /* - Property SoundEffect - - For more information, see help context 565004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SoundEffect* SoundEffect() const; //Returns the value of SoundEffect - - /* - Property TextLevelEffect - - For more information, see help context 565011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpTextLevelEffect TextLevelEffect() const; //Returns the value of TextLevelEffect - inline void SetTextLevelEffect(PowerPoint::PpTextLevelEffect value); //Sets the value of the TextLevelEffect property - - /* - Property TextUnitEffect - - For more information, see help context 565012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpTextUnitEffect TextUnitEffect() const; //Returns the value of TextUnitEffect - inline void SetTextUnitEffect(PowerPoint::PpTextUnitEffect value); //Sets the value of the TextUnitEffect property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT ActionSettings : public QAxObject -{ -public: - ActionSettings(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 566001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 566002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 566003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ActionSetting* Item(PowerPoint::PpMouseActivation Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT ActionSetting : public QAxObject -{ -public: - ActionSetting(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Action - - For more information, see help context 567003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpActionType Action() const; //Returns the value of Action - inline void SetAction(PowerPoint::PpActionType value); //Sets the value of the Action property - - /* - Property ActionVerb - - For more information, see help context 567004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString ActionVerb() const; //Returns the value of ActionVerb - inline void SetActionVerb(const QString& value); //Sets the value of the ActionVerb property - - /* - Property AnimateAction - - For more information, see help context 567005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState AnimateAction() const; //Returns the value of AnimateAction - inline void SetAnimateAction(Office::MsoTriState value); //Sets the value of the AnimateAction property - - /* - Property Application - - For more information, see help context 567001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Hyperlink - - For more information, see help context 567008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Hyperlink* Hyperlink() const; //Returns the value of Hyperlink - - /* - Property Parent - - For more information, see help context 567002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Run - - For more information, see help context 567006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Run() const; //Returns the value of Run - inline void SetRun(const QString& value); //Sets the value of the Run property - - /* - Property ShowAndReturn - - For more information, see help context 567010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState ShowAndReturn() const; //Returns the value of ShowAndReturn - inline void SetShowAndReturn(Office::MsoTriState value); //Sets the value of the ShowAndReturn property - - /* - Property SlideShowName - - For more information, see help context 567007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString SlideShowName() const; //Returns the value of SlideShowName - inline void SetSlideShowName(const QString& value); //Sets the value of the SlideShowName property - - /* - Property SoundEffect - - For more information, see help context 567009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SoundEffect* SoundEffect() const; //Returns the value of SoundEffect - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT PlaySettings : public QAxObject -{ -public: - PlaySettings(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property ActionVerb - - For more information, see help context 568003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString ActionVerb() const; //Returns the value of ActionVerb - inline void SetActionVerb(const QString& value); //Sets the value of the ActionVerb property - - /* - Property Application - - For more information, see help context 568001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property HideWhileNotPlaying - - For more information, see help context 568004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState HideWhileNotPlaying() const; //Returns the value of HideWhileNotPlaying - inline void SetHideWhileNotPlaying(Office::MsoTriState value); //Sets the value of the HideWhileNotPlaying property - - /* - Property LoopUntilStopped - - For more information, see help context 568005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState LoopUntilStopped() const; //Returns the value of LoopUntilStopped - inline void SetLoopUntilStopped(Office::MsoTriState value); //Sets the value of the LoopUntilStopped property - - /* - Property Parent - - For more information, see help context 568002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property PauseAnimation - - For more information, see help context 568008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState PauseAnimation() const; //Returns the value of PauseAnimation - inline void SetPauseAnimation(Office::MsoTriState value); //Sets the value of the PauseAnimation property - - /* - Property PlayOnEntry - - For more information, see help context 568006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState PlayOnEntry() const; //Returns the value of PlayOnEntry - inline void SetPlayOnEntry(Office::MsoTriState value); //Sets the value of the PlayOnEntry property - - /* - Property RewindMovie - - For more information, see help context 568007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState RewindMovie() const; //Returns the value of RewindMovie - inline void SetRewindMovie(Office::MsoTriState value); //Sets the value of the RewindMovie property - - /* - Property StopAfterSlides - - For more information, see help context 568009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int StopAfterSlides() const; //Returns the value of StopAfterSlides - inline void SetStopAfterSlides(int value); //Sets the value of the StopAfterSlides property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT TextRange : public QAxObject -{ -public: - TextRange(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property ActionSettings - - For more information, see help context 569003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ActionSettings* ActionSettings() const; //Returns the value of ActionSettings - - /* - Property Application - - For more information, see help context 569001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property BoundHeight - - For more information, see help context 569009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double BoundHeight() const; //Returns the value of BoundHeight - - /* - Property BoundLeft - - For more information, see help context 569006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double BoundLeft() const; //Returns the value of BoundLeft - - /* - Property BoundTop - - For more information, see help context 569007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double BoundTop() const; //Returns the value of BoundTop - - /* - Property BoundWidth - - For more information, see help context 569008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double BoundWidth() const; //Returns the value of BoundWidth - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Font - - For more information, see help context 569023 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Font* Font() const; //Returns the value of Font - - /* - Property IndentLevel - - For more information, see help context 569025 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int IndentLevel() const; //Returns the value of IndentLevel - inline void SetIndentLevel(int value); //Sets the value of the IndentLevel property - - /* - Property LanguageID - - For more information, see help context 569037 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoLanguageID LanguageID() const; //Returns the value of LanguageID - inline void SetLanguageID(Office::MsoLanguageID value); //Sets the value of the LanguageID property - - /* - Property Length - - For more information, see help context 569005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Length() const; //Returns the value of Length - - /* - Property ParagraphFormat - - For more information, see help context 569024 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ParagraphFormat* ParagraphFormat() const; //Returns the value of ParagraphFormat - - /* - Property Parent - - For more information, see help context 569002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Start - - For more information, see help context 569004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Start() const; //Returns the value of Start - - /* - Property Text - - For more information, see help context 569017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Text() const; //Returns the value of Text - inline void SetText(const QString& value); //Sets the value of the Text property - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method AddPeriods - - For more information, see help context 569032 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void AddPeriods(); - - /* - Method ChangeCase - - For more information, see help context 569031 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ChangeCase(PowerPoint::PpChangeCase Type); - - /* - Method Characters - - For more information, see help context 569013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Characters(); - - /* - Method Characters - - For more information, see help context 569013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Characters(int Start); - - /* - Method Characters - - For more information, see help context 569013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Characters(int Start, int Length); - - /* - Method Copy - - For more information, see help context 569028 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Copy(); - - /* - Method Cut - - For more information, see help context 569027 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Cut(); - - /* - Method Delete - - For more information, see help context 569029 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Delete(); - - /* - Method Find - - For more information, see help context 569034 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Find(const QString& FindWhat); - - /* - Method Find - - For more information, see help context 569034 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Find(const QString& FindWhat, int After); - - /* - Method Find - - For more information, see help context 569034 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Find(const QString& FindWhat, int After, Office::MsoTriState MatchCase); - - /* - Method Find - - For more information, see help context 569034 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Find(const QString& FindWhat, int After, Office::MsoTriState MatchCase, Office::MsoTriState WholeWords); - - /* - Method InsertAfter - - For more information, see help context 569018 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* InsertAfter(); - - /* - Method InsertAfter - - For more information, see help context 569018 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* InsertAfter(const QString& NewText); - - /* - Method InsertBefore - - For more information, see help context 569019 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* InsertBefore(); - - /* - Method InsertBefore - - For more information, see help context 569019 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* InsertBefore(const QString& NewText); - - /* - Method InsertDateTime - - For more information, see help context 569020 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* InsertDateTime(PowerPoint::PpDateTimeFormat DateTimeFormat); - - /* - Method InsertDateTime - - For more information, see help context 569020 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* InsertDateTime(PowerPoint::PpDateTimeFormat DateTimeFormat, Office::MsoTriState InsertAsField); - - /* - Method InsertSlideNumber - - For more information, see help context 569021 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* InsertSlideNumber(); - - /* - Method InsertSymbol - - For more information, see help context 569022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* InsertSymbol(const QString& FontName, int CharNumber); - - /* - Method InsertSymbol - - For more information, see help context 569022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* InsertSymbol(const QString& FontName, int CharNumber, Office::MsoTriState Unicode); - - /* - Method Lines - - For more information, see help context 569014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Lines(); - - /* - Method Lines - - For more information, see help context 569014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Lines(int Start); - - /* - Method Lines - - For more information, see help context 569014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Lines(int Start, int Length); - - /* - Method LtrRun - - For more information, see help context 569039 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void LtrRun(); - - /* - Method Paragraphs - - For more information, see help context 569010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Paragraphs(); - - /* - Method Paragraphs - - For more information, see help context 569010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Paragraphs(int Start); - - /* - Method Paragraphs - - For more information, see help context 569010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Paragraphs(int Start, int Length); - - /* - Method Paste - - For more information, see help context 569030 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Paste(); - - /* - Method PasteSpecial - - For more information, see help context 569040 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* PasteSpecial(); - - /* - Method PasteSpecial - - For more information, see help context 569040 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* PasteSpecial(PowerPoint::PpPasteDataType DataType); - - /* - Method PasteSpecial - - For more information, see help context 569040 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon); - - /* - Method PasteSpecial - - For more information, see help context 569040 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon, const QString& IconFileName); - - /* - Method PasteSpecial - - For more information, see help context 569040 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon, const QString& IconFileName, int IconIndex); - - /* - Method PasteSpecial - - For more information, see help context 569040 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon, const QString& IconFileName, int IconIndex, const QString& IconLabel); - - /* - Method PasteSpecial - - For more information, see help context 569040 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon, const QString& IconFileName, int IconIndex, const QString& IconLabel, Office::MsoTriState Link); - - /* - Method RemovePeriods - - For more information, see help context 569033 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void RemovePeriods(); - - /* - Method Replace - - For more information, see help context 569035 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Replace(const QString& FindWhat, const QString& ReplaceWhat); - - /* - Method Replace - - For more information, see help context 569035 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Replace(const QString& FindWhat, const QString& ReplaceWhat, int After); - - /* - Method Replace - - For more information, see help context 569035 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Replace(const QString& FindWhat, const QString& ReplaceWhat, int After, Office::MsoTriState MatchCase); - - /* - Method Replace - - For more information, see help context 569035 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Replace(const QString& FindWhat, const QString& ReplaceWhat, int After, Office::MsoTriState MatchCase, Office::MsoTriState WholeWords); - - /* - Method RotatedBounds - - For more information, see help context 569036 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void RotatedBounds(double& X1, double& Y1, double& X2, double& Y2, double& X3, double& Y3, double& x4, double& y4); - - /* - Method RtlRun - - For more information, see help context 569038 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void RtlRun(); - - /* - Method Runs - - For more information, see help context 569015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Runs(); - - /* - Method Runs - - For more information, see help context 569015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Runs(int Start); - - /* - Method Runs - - For more information, see help context 569015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Runs(int Start, int Length); - - /* - Method Select - - For more information, see help context 569026 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Select(); - - /* - Method Sentences - - For more information, see help context 569011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Sentences(); - - /* - Method Sentences - - For more information, see help context 569011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Sentences(int Start); - - /* - Method Sentences - - For more information, see help context 569011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Sentences(int Start, int Length); - - /* - Method TrimText - - For more information, see help context 569016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* TrimText(); - - /* - Method Words - - For more information, see help context 569012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Words(); - - /* - Method Words - - For more information, see help context 569012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Words(int Start); - - /* - Method Words - - For more information, see help context 569012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextRange* Words(int Start, int Length); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Ruler : public QAxObject -{ -public: - Ruler(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 570001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Levels - - For more information, see help context 570004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::RulerLevels* Levels() const; //Returns the value of Levels - - /* - Property Parent - - For more information, see help context 570002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property TabStops - - For more information, see help context 570003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TabStops* TabStops() const; //Returns the value of TabStops - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT RulerLevels : public QAxObject -{ -public: - RulerLevels(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 571001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 571002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 571003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::RulerLevel* Item(int Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT RulerLevel : public QAxObject -{ -public: - RulerLevel(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 572001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property FirstMargin - - For more information, see help context 572003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double FirstMargin() const; //Returns the value of FirstMargin - inline void SetFirstMargin(double value); //Sets the value of the FirstMargin property - - /* - Property LeftMargin - - For more information, see help context 572004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double LeftMargin() const; //Returns the value of LeftMargin - inline void SetLeftMargin(double value); //Sets the value of the LeftMargin property - - /* - Property Parent - - For more information, see help context 572002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT TabStops : public QAxObject -{ -public: - TabStops(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 573001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property DefaultSpacing - - For more information, see help context 573004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double DefaultSpacing() const; //Returns the value of DefaultSpacing - inline void SetDefaultSpacing(double value); //Sets the value of the DefaultSpacing property - - /* - Property Parent - - For more information, see help context 573002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 573005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TabStop* Add(PowerPoint::PpTabStopType Type, double Position); - - /* - Method Item - - For more information, see help context 573003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TabStop* Item(int Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT TabStop : public QAxObject -{ -public: - TabStop(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 574001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Parent - - For more information, see help context 574002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Position - - For more information, see help context 574004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Position() const; //Returns the value of Position - inline void SetPosition(double value); //Sets the value of the Position property - - /* - Property Type - - For more information, see help context 574003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpTabStopType Type() const; //Returns the value of Type - inline void SetType(PowerPoint::PpTabStopType value); //Sets the value of the Type property - - /* - Method Clear - - For more information, see help context 574005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Clear(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Font : public QAxObject -{ -public: - Font(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 575001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property AutoRotateNumbers - - For more information, see help context 575018 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState AutoRotateNumbers() const; //Returns the value of AutoRotateNumbers - inline void SetAutoRotateNumbers(Office::MsoTriState value); //Sets the value of the AutoRotateNumbers property - - /* - Property BaselineOffset - - For more information, see help context 575011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double BaselineOffset() const; //Returns the value of BaselineOffset - inline void SetBaselineOffset(double value); //Sets the value of the BaselineOffset property - - /* - Property Bold - - For more information, see help context 575004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Bold() const; //Returns the value of Bold - inline void SetBold(Office::MsoTriState value); //Sets the value of the Bold property - - /* - Property Color - - For more information, see help context 575003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorFormat* Color() const; //Returns the value of Color - - /* - Property Embeddable - - For more information, see help context 575013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Embeddable() const; //Returns the value of Embeddable - - /* - Property Embedded - - For more information, see help context 575012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Embedded() const; //Returns the value of Embedded - - /* - Property Emboss - - For more information, see help context 575007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Emboss() const; //Returns the value of Emboss - inline void SetEmboss(Office::MsoTriState value); //Sets the value of the Emboss property - - /* - Property Italic - - For more information, see help context 575005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Italic() const; //Returns the value of Italic - inline void SetItalic(Office::MsoTriState value); //Sets the value of the Italic property - - /* - Property Name - - For more information, see help context 575015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Name() const; //Returns the value of Name - inline void SetName(const QString& value); //Sets the value of the Name property - - /* - Property NameAscii - - For more information, see help context 575017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString NameAscii() const; //Returns the value of NameAscii - inline void SetNameAscii(const QString& value); //Sets the value of the NameAscii property - - /* - Property NameComplexScript - - For more information, see help context 575020 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString NameComplexScript() const; //Returns the value of NameComplexScript - inline void SetNameComplexScript(const QString& value); //Sets the value of the NameComplexScript property - - /* - Property NameFarEast - - For more information, see help context 575016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString NameFarEast() const; //Returns the value of NameFarEast - inline void SetNameFarEast(const QString& value); //Sets the value of the NameFarEast property - - /* - Property NameOther - - For more information, see help context 575019 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString NameOther() const; //Returns the value of NameOther - inline void SetNameOther(const QString& value); //Sets the value of the NameOther property - - /* - Property Parent - - For more information, see help context 575002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Shadow - - For more information, see help context 575006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Shadow() const; //Returns the value of Shadow - inline void SetShadow(Office::MsoTriState value); //Sets the value of the Shadow property - - /* - Property Size - - For more information, see help context 575014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Size() const; //Returns the value of Size - inline void SetSize(double value); //Sets the value of the Size property - - /* - Property Subscript - - For more information, see help context 575009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Subscript() const; //Returns the value of Subscript - inline void SetSubscript(Office::MsoTriState value); //Sets the value of the Subscript property - - /* - Property Superscript - - For more information, see help context 575010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Superscript() const; //Returns the value of Superscript - inline void SetSuperscript(Office::MsoTriState value); //Sets the value of the Superscript property - - /* - Property Underline - - For more information, see help context 575008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Underline() const; //Returns the value of Underline - inline void SetUnderline(Office::MsoTriState value); //Sets the value of the Underline property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT ParagraphFormat : public QAxObject -{ -public: - ParagraphFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Alignment - - For more information, see help context 576003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpParagraphAlignment Alignment() const; //Returns the value of Alignment - inline void SetAlignment(PowerPoint::PpParagraphAlignment value); //Sets the value of the Alignment property - - /* - Property Application - - For more information, see help context 576001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property BaseLineAlignment - - For more information, see help context 576011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpBaselineAlignment BaseLineAlignment() const; //Returns the value of BaseLineAlignment - inline void SetBaseLineAlignment(PowerPoint::PpBaselineAlignment value); //Sets the value of the BaseLineAlignment property - - /* - Property Bullet - - For more information, see help context 576004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::BulletFormat* Bullet() const; //Returns the value of Bullet - - /* - Property FarEastLineBreakControl - - For more information, see help context 576012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState FarEastLineBreakControl() const; //Returns the value of FarEastLineBreakControl - inline void SetFarEastLineBreakControl(Office::MsoTriState value); //Sets the value of the FarEastLineBreakControl property - - /* - Property HangingPunctuation - - For more information, see help context 576014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState HangingPunctuation() const; //Returns the value of HangingPunctuation - inline void SetHangingPunctuation(Office::MsoTriState value); //Sets the value of the HangingPunctuation property - - /* - Property LineRuleAfter - - For more information, see help context 576006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState LineRuleAfter() const; //Returns the value of LineRuleAfter - inline void SetLineRuleAfter(Office::MsoTriState value); //Sets the value of the LineRuleAfter property - - /* - Property LineRuleBefore - - For more information, see help context 576005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState LineRuleBefore() const; //Returns the value of LineRuleBefore - inline void SetLineRuleBefore(Office::MsoTriState value); //Sets the value of the LineRuleBefore property - - /* - Property LineRuleWithin - - For more information, see help context 576007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState LineRuleWithin() const; //Returns the value of LineRuleWithin - inline void SetLineRuleWithin(Office::MsoTriState value); //Sets the value of the LineRuleWithin property - - /* - Property Parent - - For more information, see help context 576002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property SpaceAfter - - For more information, see help context 576009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double SpaceAfter() const; //Returns the value of SpaceAfter - inline void SetSpaceAfter(double value); //Sets the value of the SpaceAfter property - - /* - Property SpaceBefore - - For more information, see help context 576008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double SpaceBefore() const; //Returns the value of SpaceBefore - inline void SetSpaceBefore(double value); //Sets the value of the SpaceBefore property - - /* - Property SpaceWithin - - For more information, see help context 576010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double SpaceWithin() const; //Returns the value of SpaceWithin - inline void SetSpaceWithin(double value); //Sets the value of the SpaceWithin property - - /* - Property TextDirection - - For more information, see help context 576015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpDirection TextDirection() const; //Returns the value of TextDirection - inline void SetTextDirection(PowerPoint::PpDirection value); //Sets the value of the TextDirection property - - /* - Property WordWrap - - For more information, see help context 576013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState WordWrap() const; //Returns the value of WordWrap - inline void SetWordWrap(Office::MsoTriState value); //Sets the value of the WordWrap property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT BulletFormat : public QAxObject -{ -public: - BulletFormat(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 577001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Character - - For more information, see help context 577004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Character() const; //Returns the value of Character - inline void SetCharacter(int value); //Sets the value of the Character property - - /* - Property Font - - For more information, see help context 577008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Font* Font() const; //Returns the value of Font - - /* - Property Number - - For more information, see help context 577013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Number() const; //Returns the value of Number - - /* - Property Parent - - For more information, see help context 577002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property RelativeSize - - For more information, see help context 577005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double RelativeSize() const; //Returns the value of RelativeSize - inline void SetRelativeSize(double value); //Sets the value of the RelativeSize property - - /* - Property StartValue - - For more information, see help context 577011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int StartValue() const; //Returns the value of StartValue - inline void SetStartValue(int value); //Sets the value of the StartValue property - - /* - Property Style - - For more information, see help context 577010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpNumberedBulletStyle Style() const; //Returns the value of Style - inline void SetStyle(PowerPoint::PpNumberedBulletStyle value); //Sets the value of the Style property - - /* - Property Type - - For more information, see help context 577009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpBulletType Type() const; //Returns the value of Type - inline void SetType(PowerPoint::PpBulletType value); //Sets the value of the Type property - - /* - Property UseTextColor - - For more information, see help context 577006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState UseTextColor() const; //Returns the value of UseTextColor - inline void SetUseTextColor(Office::MsoTriState value); //Sets the value of the UseTextColor property - - /* - Property UseTextFont - - For more information, see help context 577007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState UseTextFont() const; //Returns the value of UseTextFont - inline void SetUseTextFont(Office::MsoTriState value); //Sets the value of the UseTextFont property - - /* - Property Visible - - For more information, see help context 577003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Visible() const; //Returns the value of Visible - inline void SetVisible(Office::MsoTriState value); //Sets the value of the Visible property - - /* - Method Picture - - For more information, see help context 577012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Picture(const QString& Picture); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT TextStyles : public QAxObject -{ -public: - TextStyles(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 578001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 578002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 578003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextStyle* Item(PowerPoint::PpTextStyleType Type); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT TextStyle : public QAxObject -{ -public: - TextStyle(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 579001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Levels - - For more information, see help context 579005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextStyleLevels* Levels() const; //Returns the value of Levels - - /* - Property Parent - - For more information, see help context 579002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Ruler - - For more information, see help context 579003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Ruler* Ruler() const; //Returns the value of Ruler - - /* - Property TextFrame - - For more information, see help context 579004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextFrame* TextFrame() const; //Returns the value of TextFrame - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT TextStyleLevels : public QAxObject -{ -public: - TextStyleLevels(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 580001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 580002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 580003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextStyleLevel* Item(int Level); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT TextStyleLevel : public QAxObject -{ -public: - TextStyleLevel(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 581001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Font - - For more information, see help context 581004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Font* Font() const; //Returns the value of Font - - /* - Property ParagraphFormat - - For more information, see help context 581003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ParagraphFormat* ParagraphFormat() const; //Returns the value of ParagraphFormat - - /* - Property Parent - - For more information, see help context 581002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT HeaderFooter : public QAxObject -{ -public: - HeaderFooter(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 582001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Format - - For more information, see help context 582006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpDateTimeFormat Format() const; //Returns the value of Format - inline void SetFormat(PowerPoint::PpDateTimeFormat value); //Sets the value of the Format property - - /* - Property Parent - - For more information, see help context 582002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Text - - For more information, see help context 582004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Text() const; //Returns the value of Text - inline void SetText(const QString& value); //Sets the value of the Text property - - /* - Property UseFormat - - For more information, see help context 582005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState UseFormat() const; //Returns the value of UseFormat - inline void SetUseFormat(Office::MsoTriState value); //Sets the value of the UseFormat property - - /* - Property Visible - - For more information, see help context 582003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Visible() const; //Returns the value of Visible - inline void SetVisible(Office::MsoTriState value); //Sets the value of the Visible property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT _Presentation : public QAxObject -{ -public: - _Presentation(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 583001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property BuiltInDocumentProperties - - For more information, see help context 583020 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* BuiltInDocumentProperties() const; //Returns the value of BuiltInDocumentProperties - - /* - Property ColorSchemes - - For more information, see help context 583013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorSchemes* ColorSchemes() const; //Returns the value of ColorSchemes - - /* - Property CommandBars - - For more information, see help context 583051 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::CommandBars* CommandBars() const; //Returns the value of CommandBars - - /* - Property Container - - For more information, see help context 583041 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Container() const; //Returns the value of Container - - /* - Property CustomDocumentProperties - - For more information, see help context 583021 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* CustomDocumentProperties() const; //Returns the value of CustomDocumentProperties - - /* - Property DefaultLanguageID - - For more information, see help context 583050 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoLanguageID DefaultLanguageID() const; //Returns the value of DefaultLanguageID - inline void SetDefaultLanguageID(Office::MsoLanguageID value); //Sets the value of the DefaultLanguageID property - - /* - Property DefaultShape - - For more information, see help context 583019 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* DefaultShape() const; //Returns the value of DefaultShape - - /* - Property Designs - - For more information, see help context 583063 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Designs* Designs() const; //Returns the value of Designs - - /* - Property DisplayComments - - For more information, see help context 583042 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState DisplayComments() const; //Returns the value of DisplayComments - inline void SetDisplayComments(Office::MsoTriState value); //Sets the value of the DisplayComments property - - /* - Property DocumentLibraryVersions - - For more information, see help context 583086 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::DocumentLibraryVersions* DocumentLibraryVersions() const; //Returns the value of DocumentLibraryVersions - - /* - Property EnvelopeVisible - - For more information, see help context 583057 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState EnvelopeVisible() const; //Returns the value of EnvelopeVisible - inline void SetEnvelopeVisible(Office::MsoTriState value); //Sets the value of the EnvelopeVisible property - - /* - Property ExtraColors - - For more information, see help context 583014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ExtraColors* ExtraColors() const; //Returns the value of ExtraColors - - /* - Property FarEastLineBreakLanguage - - For more information, see help context 583048 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoFarEastLineBreakLanguageID FarEastLineBreakLanguage() const; //Returns the value of FarEastLineBreakLanguage - inline void SetFarEastLineBreakLanguage(Office::MsoFarEastLineBreakLanguageID value); //Sets the value of the FarEastLineBreakLanguage property - - /* - Property FarEastLineBreakLevel - - For more information, see help context 583043 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpFarEastLineBreakLevel FarEastLineBreakLevel() const; //Returns the value of FarEastLineBreakLevel - inline void SetFarEastLineBreakLevel(PowerPoint::PpFarEastLineBreakLevel value); //Sets the value of the FarEastLineBreakLevel property - - /* - Property Fonts - - For more information, see help context 583016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Fonts* Fonts() const; //Returns the value of Fonts - - /* - Property FullName - - For more information, see help context 583024 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString FullName() const; //Returns the value of FullName - - /* - Property GridDistance - - For more information, see help context 583062 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double GridDistance() const; //Returns the value of GridDistance - inline void SetGridDistance(double value); //Sets the value of the GridDistance property - - /* - Property HTMLProject - - For more information, see help context 583054 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::HTMLProject* HTMLProject() const; //Returns the value of HTMLProject - - /* - Property HandoutMaster - - For more information, see help context 583010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::_Master* HandoutMaster() const; //Returns the value of HandoutMaster - - /* - Property HasRevisionInfo - - For more information, see help context 583072 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpRevisionInfo HasRevisionInfo() const; //Returns the value of HasRevisionInfo - - /* - Property HasTitleMaster - - For more information, see help context 583005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState HasTitleMaster() const; //Returns the value of HasTitleMaster - - /* - Property LayoutDirection - - For more information, see help context 583028 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpDirection LayoutDirection() const; //Returns the value of LayoutDirection - inline void SetLayoutDirection(PowerPoint::PpDirection value); //Sets the value of the LayoutDirection property - - /* - Property Name - - For more information, see help context 583025 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Name() const; //Returns the value of Name - - /* - Property NoLineBreakAfter - - For more information, see help context 583045 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString NoLineBreakAfter() const; //Returns the value of NoLineBreakAfter - inline void SetNoLineBreakAfter(const QString& value); //Sets the value of the NoLineBreakAfter property - - /* - Property NoLineBreakBefore - - For more information, see help context 583044 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString NoLineBreakBefore() const; //Returns the value of NoLineBreakBefore - inline void SetNoLineBreakBefore(const QString& value); //Sets the value of the NoLineBreakBefore property - - /* - Property NotesMaster - - For more information, see help context 583009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::_Master* NotesMaster() const; //Returns the value of NotesMaster - - /* - Property PageSetup - - For more information, see help context 583012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PageSetup* PageSetup() const; //Returns the value of PageSetup - - /* - Property Parent - - For more information, see help context 583002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Password - - For more information, see help context 583080 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Password() const; //Returns the value of Password - inline void SetPassword(const QString& value); //Sets the value of the Password property - - /* - Property PasswordEncryptionAlgorithm - - For more information, see help context 583076 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString PasswordEncryptionAlgorithm() const; //Returns the value of PasswordEncryptionAlgorithm - - /* - Property PasswordEncryptionFileProperties - - For more information, see help context 583078 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline bool PasswordEncryptionFileProperties() const; //Returns the value of PasswordEncryptionFileProperties - - /* - Property PasswordEncryptionKeyLength - - For more information, see help context 583077 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int PasswordEncryptionKeyLength() const; //Returns the value of PasswordEncryptionKeyLength - - /* - Property PasswordEncryptionProvider - - For more information, see help context 583075 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString PasswordEncryptionProvider() const; //Returns the value of PasswordEncryptionProvider - - /* - Property Path - - For more information, see help context 583026 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Path() const; //Returns the value of Path - - /* - Property Permission - - For more information, see help context 583082 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::Permission* Permission() const; //Returns the value of Permission - - /* - Property PrintOptions - - For more information, see help context 583033 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PrintOptions* PrintOptions() const; //Returns the value of PrintOptions - - /* - Property PublishObjects - - For more information, see help context 583052 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PublishObjects* PublishObjects() const; //Returns the value of PublishObjects - - /* - Property ReadOnly - - For more information, see help context 583023 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState ReadOnly() const; //Returns the value of ReadOnly - - /* - Property RemovePersonalInformation - - For more information, see help context 583068 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState RemovePersonalInformation() const; //Returns the value of RemovePersonalInformation - inline void SetRemovePersonalInformation(Office::MsoTriState value); //Sets the value of the RemovePersonalInformation property - - /* - Property Saved - - For more information, see help context 583027 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Saved() const; //Returns the value of Saved - inline void SetSaved(Office::MsoTriState value); //Sets the value of the Saved property - - /* - Property SharedWorkspace - - For more information, see help context 583083 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::SharedWorkspace* SharedWorkspace() const; //Returns the value of SharedWorkspace - - /* - Property Signatures - - For more information, see help context 583067 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::SignatureSet* Signatures() const; //Returns the value of Signatures - - /* - Property SlideMaster - - For more information, see help context 583003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::_Master* SlideMaster() const; //Returns the value of SlideMaster - - /* - Property SlideShowSettings - - For more information, see help context 583015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideShowSettings* SlideShowSettings() const; //Returns the value of SlideShowSettings - - /* - Property SlideShowWindow - - For more information, see help context 583047 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideShowWindow* SlideShowWindow() const; //Returns the value of SlideShowWindow - - /* - Property Slides - - For more information, see help context 583011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Slides* Slides() const; //Returns the value of Slides - - /* - Property SnapToGrid - - For more information, see help context 583061 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState SnapToGrid() const; //Returns the value of SnapToGrid - inline void SetSnapToGrid(Office::MsoTriState value); //Sets the value of the SnapToGrid property - - /* - Property Sync - - For more information, see help context 583084 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::Sync* Sync() const; //Returns the value of Sync - - /* - Property Tags - - For more information, see help context 583018 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Tags* Tags() const; //Returns the value of Tags - - /* - Property TemplateName - - For more information, see help context 583008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString TemplateName() const; //Returns the value of TemplateName - - /* - Property TitleMaster - - For more information, see help context 583004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::_Master* TitleMaster() const; //Returns the value of TitleMaster - - /* - Property VBASigned - - For more information, see help context 583059 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState VBASigned() const; //Returns the value of VBASigned - - /* - Property VBProject - - For more information, see help context 583022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline VBIDE::VBProject* VBProject() const; //Returns the value of VBProject - - /* - Property WebOptions - - For more information, see help context 583053 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::WebOptions* WebOptions() const; //Returns the value of WebOptions - - /* - Property Windows - - For more information, see help context 583017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DocumentWindows* Windows() const; //Returns the value of Windows - - /* - Property WritePassword - - For more information, see help context 583081 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString WritePassword() const; //Returns the value of WritePassword - inline void SetWritePassword(const QString& value); //Sets the value of the WritePassword property - - /* - Method AddBaseline - - For more information, see help context 583073 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void AddBaseline(); - - /* - Method AddBaseline - - For more information, see help context 583073 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void AddBaseline(const QString& FileName); - - /* - Method AddTitleMaster - - For more information, see help context 583006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::_Master* AddTitleMaster(); - - /* - Method AddToFavorites - - For more information, see help context 583031 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void AddToFavorites(); - - /* - Method ApplyTemplate - - For more information, see help context 583007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ApplyTemplate(const QString& FileName); - - /* - Method CanCheckIn - - For more information, see help context 583066 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline bool CanCheckIn(); - - /* - Method CheckIn - - For more information, see help context 583065 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void CheckIn(); - - /* - Method CheckIn - - For more information, see help context 583065 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void CheckIn(bool SaveChanges); - - /* - Method CheckIn - - For more information, see help context 583065 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void CheckIn(bool SaveChanges, const QVariant& Comments); - - /* - Method CheckIn - - For more information, see help context 583065 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void CheckIn(bool SaveChanges, const QVariant& Comments, const QVariant& MakePublic); - - /* - Method Close - - For more information, see help context 583039 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Close(); - - /* - Method EndReview - - For more information, see help context 583071 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void EndReview(); - - /* - Method Export - - For more information, see help context 583038 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Export(const QString& Path, const QString& FilterName); - - /* - Method Export - - For more information, see help context 583038 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Export(const QString& Path, const QString& FilterName, int ScaleWidth); - - /* - Method Export - - For more information, see help context 583038 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Export(const QString& Path, const QString& FilterName, int ScaleWidth, int ScaleHeight); - - /* - Method FollowHyperlink - - For more information, see help context 583030 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void FollowHyperlink(const QString& Address); - - /* - Method FollowHyperlink - - For more information, see help context 583030 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void FollowHyperlink(const QString& Address, const QString& SubAddress); - - /* - Method FollowHyperlink - - For more information, see help context 583030 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void FollowHyperlink(const QString& Address, const QString& SubAddress, bool NewWindow); - - /* - Method FollowHyperlink - - For more information, see help context 583030 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void FollowHyperlink(const QString& Address, const QString& SubAddress, bool NewWindow, bool AddHistory); - - /* - Method FollowHyperlink - - For more information, see help context 583030 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void FollowHyperlink(const QString& Address, const QString& SubAddress, bool NewWindow, bool AddHistory, const QString& ExtraInfo); - - /* - Method FollowHyperlink - - For more information, see help context 583030 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void FollowHyperlink(const QString& Address, const QString& SubAddress, bool NewWindow, bool AddHistory, const QString& ExtraInfo, Office::MsoExtraInfoMethod Method); - - /* - Method FollowHyperlink - - For more information, see help context 583030 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void FollowHyperlink(const QString& Address, const QString& SubAddress, bool NewWindow, bool AddHistory, const QString& ExtraInfo, Office::MsoExtraInfoMethod Method, const QString& HeaderInfo); - - /* - Method MakeIntoTemplate - - For more information, see help context 583056 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void MakeIntoTemplate(Office::MsoTriState IsDesignTemplate); - - /* - Method Merge - - For more information, see help context 583064 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Merge(const QString& Path); - - /* - Method NewWindow - - For more information, see help context 583029 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DocumentWindow* NewWindow(); - - /* - Method PrintOut - - For more information, see help context 583034 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PrintOut(); - - /* - Method PrintOut - - For more information, see help context 583034 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PrintOut(int From); - - /* - Method PrintOut - - For more information, see help context 583034 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PrintOut(int From, int To); - - /* - Method PrintOut - - For more information, see help context 583034 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PrintOut(int From, int To, const QString& PrintToFile); - - /* - Method PrintOut - - For more information, see help context 583034 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PrintOut(int From, int To, const QString& PrintToFile, int Copies); - - /* - Method PrintOut - - For more information, see help context 583034 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PrintOut(int From, int To, const QString& PrintToFile, int Copies, Office::MsoTriState Collate); - - /* - Method ReloadAs - - For more information, see help context 583055 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ReloadAs(Office::MsoEncoding cp); - - /* - Method RemoveBaseline - - For more information, see help context 583074 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void RemoveBaseline(); - - /* - Method ReplyWithChanges - - For more information, see help context 583070 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ReplyWithChanges(); - - /* - Method ReplyWithChanges - - For more information, see help context 583070 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ReplyWithChanges(bool ShowMessage); - - /* - Method Save - - For more information, see help context 583035 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Save(); - - /* - Method SaveAs - - For more information, see help context 583036 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SaveAs(const QString& FileName); - - /* - Method SaveAs - - For more information, see help context 583036 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SaveAs(const QString& FileName, PowerPoint::PpSaveAsFileType FileFormat); - - /* - Method SaveAs - - For more information, see help context 583036 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SaveAs(const QString& FileName, PowerPoint::PpSaveAsFileType FileFormat, Office::MsoTriState EmbedTrueTypeFonts); - - /* - Method SaveCopyAs - - For more information, see help context 583037 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SaveCopyAs(const QString& FileName); - - /* - Method SaveCopyAs - - For more information, see help context 583037 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SaveCopyAs(const QString& FileName, PowerPoint::PpSaveAsFileType FileFormat); - - /* - Method SaveCopyAs - - For more information, see help context 583037 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SaveCopyAs(const QString& FileName, PowerPoint::PpSaveAsFileType FileFormat, Office::MsoTriState EmbedTrueTypeFonts); - - /* - Method SendFaxOverInternet - - For more information, see help context 583085 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SendFaxOverInternet(); - - /* - Method SendFaxOverInternet - - For more information, see help context 583085 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SendFaxOverInternet(const QString& Recipients); - - /* - Method SendFaxOverInternet - - For more information, see help context 583085 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SendFaxOverInternet(const QString& Recipients, const QString& Subject); - - /* - Method SendFaxOverInternet - - For more information, see help context 583085 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SendFaxOverInternet(const QString& Recipients, const QString& Subject, bool ShowMessage); - - /* - Method SendForReview - - For more information, see help context 583069 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SendForReview(); - - /* - Method SendForReview - - For more information, see help context 583069 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SendForReview(const QString& Recipients); - - /* - Method SendForReview - - For more information, see help context 583069 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SendForReview(const QString& Recipients, const QString& Subject); - - /* - Method SendForReview - - For more information, see help context 583069 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SendForReview(const QString& Recipients, const QString& Subject, bool ShowMessage); - - /* - Method SendForReview - - For more information, see help context 583069 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SendForReview(const QString& Recipients, const QString& Subject, bool ShowMessage, const QVariant& IncludeAttachment); - - /* - Method SetPasswordEncryptionOptions - - For more information, see help context 583079 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SetPasswordEncryptionOptions(const QString& PasswordEncryptionProvider, const QString& PasswordEncryptionAlgorithm, int PasswordEncryptionKeyLength, bool PasswordEncryptionFileProperties); - - /* - Method SetUndoText - - For more information, see help context 583040 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SetUndoText(const QString& Text); - - /* - Method Unused - - For more information, see help context 583032 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Unused(); - - /* - Method UpdateLinks - - For more information, see help context 583046 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void UpdateLinks(); - - /* - Method WebPagePreview - - For more information, see help context 583049 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void WebPagePreview(); - - /* - Method sblt - - For more information, see help context 583058 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void sblt(const QString& s); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Tags : public QAxObject -{ -public: - Tags(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 611001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 611002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 611004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Add(const QString& Name, const QString& Value); - - /* - Method AddBinary - - For more information, see help context 611006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void AddBinary(const QString& Name, const QString& FilePath); - - /* - Method BinaryValue - - For more information, see help context 611007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int BinaryValue(const QString& Name); - - /* - Method Delete - - For more information, see help context 611005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Delete(const QString& Name); - - /* - Method Item - - For more information, see help context 611003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Item(const QString& Name); - - /* - Method Name - - For more information, see help context 611008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Name(int Index); - - /* - Method Value - - For more information, see help context 611009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Value(int Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -// stub for vtable-only interface -class MouseTracker : public QAxObject {}; - -// stub for vtable-only interface -class MouseDownHandler : public QAxObject {}; - -class POWERPOINT_EXPORT OCXExtender : public QAxObject -{ -public: - OCXExtender(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property AltHTML - - For more information, see help context 618002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString AltHTML() const; //Returns the value of AltHTML - inline void SetAltHTML(const QString& value); //Sets the value of the AltHTML property - - /* - Property Height - - For more information, see help context 618002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Height() const; //Returns the value of Height - inline void SetHeight(double value); //Sets the value of the Height property - - /* - Property Left - - For more information, see help context 618002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Left() const; //Returns the value of Left - inline void SetLeft(double value); //Sets the value of the Left property - - /* - Property Name - - For more information, see help context 618003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Name() const; //Returns the value of Name - inline void SetName(const QString& value); //Sets the value of the Name property - - /* - Property Top - - For more information, see help context 618002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Top() const; //Returns the value of Top - inline void SetTop(double value); //Sets the value of the Top property - - /* - Property Visible - - For more information, see help context 618001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline bool Visible() const; //Returns the value of Visible - inline void SetVisible(bool value); //Sets the value of the Visible property - - /* - Property Width - - For more information, see help context 618002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Width() const; //Returns the value of Width - inline void SetWidth(double value); //Sets the value of the Width property - - /* - Property ZOrderPosition - - For more information, see help context 618002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int ZOrderPosition() const; //Returns the value of ZOrderPosition - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -// stub for vtable-only interface -class OCXExtenderEvents : public QAxObject {}; - -// stub for vtable-only interface -class EApplication : public QAxObject {}; - -class POWERPOINT_EXPORT Table : public QAxObject -{ -public: - Table(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 622001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Columns - - For more information, see help context 622003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Columns* Columns() const; //Returns the value of Columns - - /* - Property Parent - - For more information, see help context 622002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Rows - - For more information, see help context 622004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Rows* Rows() const; //Returns the value of Rows - - /* - Property TableDirection - - For more information, see help context 622006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpDirection TableDirection() const; //Returns the value of TableDirection - inline void SetTableDirection(PowerPoint::PpDirection value); //Sets the value of the TableDirection property - - /* - Method Cell - - For more information, see help context 622005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Cell* Cell(int Row, int Column); - - /* - Method MergeBorders - - For more information, see help context 622007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void MergeBorders(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Columns : public QAxObject -{ -public: - Columns(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 623001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 623002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 623004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Column* Add(); - - /* - Method Add - - For more information, see help context 623004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Column* Add(int BeforeColumn); - - /* - Method Item - - For more information, see help context 623003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Column* Item(int Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Column : public QAxObject -{ -public: - Column(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 624001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Cells - - For more information, see help context 624003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::CellRange* Cells() const; //Returns the value of Cells - - /* - Property Parent - - For more information, see help context 624002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Width - - For more information, see help context 624006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Width() const; //Returns the value of Width - inline void SetWidth(double value); //Sets the value of the Width property - - /* - Method Delete - - For more information, see help context 624005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Delete(); - - /* - Method Select - - For more information, see help context 624004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Select(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Rows : public QAxObject -{ -public: - Rows(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 625001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 625002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 625004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Row* Add(); - - /* - Method Add - - For more information, see help context 625004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Row* Add(int BeforeRow); - - /* - Method Item - - For more information, see help context 625003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Row* Item(int Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Row : public QAxObject -{ -public: - Row(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 626001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Cells - - For more information, see help context 626003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::CellRange* Cells() const; //Returns the value of Cells - - /* - Property Height - - For more information, see help context 626006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Height() const; //Returns the value of Height - inline void SetHeight(double value); //Sets the value of the Height property - - /* - Property Parent - - For more information, see help context 626002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Method Delete - - For more information, see help context 626005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Delete(); - - /* - Method Select - - For more information, see help context 626004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Select(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT CellRange : public QAxObject -{ -public: - CellRange(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 627001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Borders - - For more information, see help context 627004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Borders* Borders() const; //Returns the value of Borders - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 627002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 627003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Cell* Item(int Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Cell : public QAxObject -{ -public: - Cell(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 628001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Borders - - For more information, see help context 628004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Borders* Borders() const; //Returns the value of Borders - - /* - Property Parent - - For more information, see help context 628002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Selected - - For more information, see help context 628008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline bool Selected() const; //Returns the value of Selected - - /* - Property Shape - - For more information, see help context 628003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* Shape() const; //Returns the value of Shape - - /* - Method Merge - - For more information, see help context 628005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Merge(PowerPoint::Cell* MergeTo); - - /* - Method Select - - For more information, see help context 628007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Select(); - - /* - Method Split - - For more information, see help context 628006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Split(int NumRows, int NumColumns); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Borders : public QAxObject -{ -public: - Borders(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 629001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 629002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 629003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::LineFormat* Item(PowerPoint::PpBorderType BorderType); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Panes : public QAxObject -{ -public: - Panes(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 630001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 630003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 630002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Pane* Item(int Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Pane : public QAxObject -{ -public: - Pane(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Active - - For more information, see help context 631003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Active() const; //Returns the value of Active - - /* - Property Application - - For more information, see help context 631004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Parent - - For more information, see help context 631001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property ViewType - - For more information, see help context 631005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpViewType ViewType() const; //Returns the value of ViewType - - /* - Method Activate - - For more information, see help context 631002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Activate(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT DefaultWebOptions : public QAxObject -{ -public: - DefaultWebOptions(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property AllowPNG - - For more information, see help context 632008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState AllowPNG() const; //Returns the value of AllowPNG - inline void SetAllowPNG(Office::MsoTriState value); //Sets the value of the AllowPNG property - - /* - Property AlwaysSaveInDefaultEncoding - - For more information, see help context 632013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState AlwaysSaveInDefaultEncoding() const; //Returns the value of AlwaysSaveInDefaultEncoding - inline void SetAlwaysSaveInDefaultEncoding(Office::MsoTriState value); //Sets the value of the AlwaysSaveInDefaultEncoding property - - /* - Property CheckIfOfficeIsHTMLEditor - - For more information, see help context 632012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState CheckIfOfficeIsHTMLEditor() const; //Returns the value of CheckIfOfficeIsHTMLEditor - inline void SetCheckIfOfficeIsHTMLEditor(Office::MsoTriState value); //Sets the value of the CheckIfOfficeIsHTMLEditor property - - /* - Property Encoding - - For more information, see help context 632010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoEncoding Encoding() const; //Returns the value of Encoding - inline void SetEncoding(Office::MsoEncoding value); //Sets the value of the Encoding property - - /* - Property FolderSuffix - - For more information, see help context 632015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString FolderSuffix() const; //Returns the value of FolderSuffix - - /* - Property Fonts - - For more information, see help context 632014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::WebPageFonts* Fonts() const; //Returns the value of Fonts - - /* - Property FrameColors - - For more information, see help context 632002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpFrameColors FrameColors() const; //Returns the value of FrameColors - inline void SetFrameColors(PowerPoint::PpFrameColors value); //Sets the value of the FrameColors property - - /* - Property HTMLVersion - - For more information, see help context 632018 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpHTMLVersion HTMLVersion() const; //Returns the value of HTMLVersion - inline void SetHTMLVersion(PowerPoint::PpHTMLVersion value); //Sets the value of the HTMLVersion property - - /* - Property IncludeNavigation - - For more information, see help context 632001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState IncludeNavigation() const; //Returns the value of IncludeNavigation - inline void SetIncludeNavigation(Office::MsoTriState value); //Sets the value of the IncludeNavigation property - - /* - Property OrganizeInFolder - - For more information, see help context 632005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState OrganizeInFolder() const; //Returns the value of OrganizeInFolder - inline void SetOrganizeInFolder(Office::MsoTriState value); //Sets the value of the OrganizeInFolder property - - /* - Property RelyOnVML - - For more information, see help context 632007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState RelyOnVML() const; //Returns the value of RelyOnVML - inline void SetRelyOnVML(Office::MsoTriState value); //Sets the value of the RelyOnVML property - - /* - Property ResizeGraphics - - For more information, see help context 632003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState ResizeGraphics() const; //Returns the value of ResizeGraphics - inline void SetResizeGraphics(Office::MsoTriState value); //Sets the value of the ResizeGraphics property - - /* - Property SaveNewWebPagesAsWebArchives - - For more information, see help context 632017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState SaveNewWebPagesAsWebArchives() const; //Returns the value of SaveNewWebPagesAsWebArchives - inline void SetSaveNewWebPagesAsWebArchives(Office::MsoTriState value); //Sets the value of the SaveNewWebPagesAsWebArchives property - - /* - Property ScreenSize - - For more information, see help context 632009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoScreenSize ScreenSize() const; //Returns the value of ScreenSize - inline void SetScreenSize(Office::MsoScreenSize value); //Sets the value of the ScreenSize property - - /* - Property ShowSlideAnimation - - For more information, see help context 632004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState ShowSlideAnimation() const; //Returns the value of ShowSlideAnimation - inline void SetShowSlideAnimation(Office::MsoTriState value); //Sets the value of the ShowSlideAnimation property - - /* - Property TargetBrowser - - For more information, see help context 632016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTargetBrowser TargetBrowser() const; //Returns the value of TargetBrowser - inline void SetTargetBrowser(Office::MsoTargetBrowser value); //Sets the value of the TargetBrowser property - - /* - Property UpdateLinksOnSave - - For more information, see help context 632011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState UpdateLinksOnSave() const; //Returns the value of UpdateLinksOnSave - inline void SetUpdateLinksOnSave(Office::MsoTriState value); //Sets the value of the UpdateLinksOnSave property - - /* - Property UseLongFileNames - - For more information, see help context 632006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState UseLongFileNames() const; //Returns the value of UseLongFileNames - inline void SetUseLongFileNames(Office::MsoTriState value); //Sets the value of the UseLongFileNames property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT WebOptions : public QAxObject -{ -public: - WebOptions(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property AllowPNG - - For more information, see help context 633008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState AllowPNG() const; //Returns the value of AllowPNG - inline void SetAllowPNG(Office::MsoTriState value); //Sets the value of the AllowPNG property - - /* - Property Encoding - - For more information, see help context 633010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoEncoding Encoding() const; //Returns the value of Encoding - inline void SetEncoding(Office::MsoEncoding value); //Sets the value of the Encoding property - - /* - Property FolderSuffix - - For more information, see help context 633011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString FolderSuffix() const; //Returns the value of FolderSuffix - - /* - Property FrameColors - - For more information, see help context 633002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpFrameColors FrameColors() const; //Returns the value of FrameColors - inline void SetFrameColors(PowerPoint::PpFrameColors value); //Sets the value of the FrameColors property - - /* - Property HTMLVersion - - For more information, see help context 633014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpHTMLVersion HTMLVersion() const; //Returns the value of HTMLVersion - inline void SetHTMLVersion(PowerPoint::PpHTMLVersion value); //Sets the value of the HTMLVersion property - - /* - Property IncludeNavigation - - For more information, see help context 633001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState IncludeNavigation() const; //Returns the value of IncludeNavigation - inline void SetIncludeNavigation(Office::MsoTriState value); //Sets the value of the IncludeNavigation property - - /* - Property OrganizeInFolder - - For more information, see help context 633005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState OrganizeInFolder() const; //Returns the value of OrganizeInFolder - inline void SetOrganizeInFolder(Office::MsoTriState value); //Sets the value of the OrganizeInFolder property - - /* - Property RelyOnVML - - For more information, see help context 633007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState RelyOnVML() const; //Returns the value of RelyOnVML - inline void SetRelyOnVML(Office::MsoTriState value); //Sets the value of the RelyOnVML property - - /* - Property ResizeGraphics - - For more information, see help context 633003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState ResizeGraphics() const; //Returns the value of ResizeGraphics - inline void SetResizeGraphics(Office::MsoTriState value); //Sets the value of the ResizeGraphics property - - /* - Property ScreenSize - - For more information, see help context 633009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoScreenSize ScreenSize() const; //Returns the value of ScreenSize - inline void SetScreenSize(Office::MsoScreenSize value); //Sets the value of the ScreenSize property - - /* - Property ShowSlideAnimation - - For more information, see help context 633004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState ShowSlideAnimation() const; //Returns the value of ShowSlideAnimation - inline void SetShowSlideAnimation(Office::MsoTriState value); //Sets the value of the ShowSlideAnimation property - - /* - Property TargetBrowser - - For more information, see help context 633013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTargetBrowser TargetBrowser() const; //Returns the value of TargetBrowser - inline void SetTargetBrowser(Office::MsoTargetBrowser value); //Sets the value of the TargetBrowser property - - /* - Property UseLongFileNames - - For more information, see help context 633006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState UseLongFileNames() const; //Returns the value of UseLongFileNames - inline void SetUseLongFileNames(Office::MsoTriState value); //Sets the value of the UseLongFileNames property - - /* - Method UseDefaultFolderSuffix - - For more information, see help context 633012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void UseDefaultFolderSuffix(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT PublishObjects : public QAxObject -{ -public: - PublishObjects(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 634001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 634002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 634003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PublishObject* Item(int Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT PublishObject : public QAxObject -{ -public: - PublishObject(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 635001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property FileName - - For more information, see help context 635009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString FileName() const; //Returns the value of FileName - inline void SetFileName(const QString& value); //Sets the value of the FileName property - - /* - Property HTMLVersion - - For more information, see help context 635003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpHTMLVersion HTMLVersion() const; //Returns the value of HTMLVersion - inline void SetHTMLVersion(PowerPoint::PpHTMLVersion value); //Sets the value of the HTMLVersion property - - /* - Property Parent - - For more information, see help context 635002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property RangeEnd - - For more information, see help context 635006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int RangeEnd() const; //Returns the value of RangeEnd - inline void SetRangeEnd(int value); //Sets the value of the RangeEnd property - - /* - Property RangeStart - - For more information, see help context 635005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int RangeStart() const; //Returns the value of RangeStart - inline void SetRangeStart(int value); //Sets the value of the RangeStart property - - /* - Property SlideShowName - - For more information, see help context 635007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString SlideShowName() const; //Returns the value of SlideShowName - inline void SetSlideShowName(const QString& value); //Sets the value of the SlideShowName property - - /* - Property SourceType - - For more information, see help context 635004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpPublishSourceType SourceType() const; //Returns the value of SourceType - inline void SetSourceType(PowerPoint::PpPublishSourceType value); //Sets the value of the SourceType property - - /* - Property SpeakerNotes - - For more information, see help context 635008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState SpeakerNotes() const; //Returns the value of SpeakerNotes - inline void SetSpeakerNotes(Office::MsoTriState value); //Sets the value of the SpeakerNotes property - - /* - Method Publish - - For more information, see help context 635010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Publish(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -// stub for vtable-only interface -class MasterEvents : public QAxObject {}; - -class POWERPOINT_EXPORT _PowerRex : public QAxObject -{ -public: - _PowerRex(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Method OnAsfEncoderEvent - - For more information, see help context 639001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void OnAsfEncoderEvent(const QVariant& erorCode, const QVariant& bstrErrorDesc); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Comments : public QAxObject -{ -public: - Comments(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 641001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 641002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 641004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Comment* Add(double Left, double Top, const QString& Author, const QString& AuthorInitials, const QString& Text); - - /* - Method Item - - For more information, see help context 641003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Comment* Item(int Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Comment : public QAxObject -{ -public: - Comment(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 642001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Author - - For more information, see help context 642003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Author() const; //Returns the value of Author - - /* - Property AuthorIndex - - For more information, see help context 642007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int AuthorIndex() const; //Returns the value of AuthorIndex - - /* - Property AuthorInitials - - For more information, see help context 642004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString AuthorInitials() const; //Returns the value of AuthorInitials - - /* - Property DateTime - - For more information, see help context 642006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QDateTime DateTime() const; //Returns the value of DateTime - - /* - Property Left - - For more information, see help context 642008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Left() const; //Returns the value of Left - - /* - Property Parent - - For more information, see help context 642002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Text - - For more information, see help context 642005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Text() const; //Returns the value of Text - - /* - Property Top - - For more information, see help context 642009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Top() const; //Returns the value of Top - - /* - Method Delete - - For more information, see help context 642010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Delete(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Designs : public QAxObject -{ -public: - Designs(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 643001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 643002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 643004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Design* Add(const QString& designName); - - /* - Method Add - - For more information, see help context 643004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Design* Add(const QString& designName, int Index); - - /* - Method Clone - - For more information, see help context 643006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Design* Clone(PowerPoint::Design* pOriginal); - - /* - Method Clone - - For more information, see help context 643006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Design* Clone(PowerPoint::Design* pOriginal, int Index); - - /* - Method Item - - For more information, see help context 643003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Design* Item(const QVariant& Index); - - /* - Method Load - - For more information, see help context 643005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Design* Load(const QString& TemplateName); - - /* - Method Load - - For more information, see help context 643005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Design* Load(const QString& TemplateName, int Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Design : public QAxObject -{ -public: - Design(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 644001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property HasTitleMaster - - For more information, see help context 644005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState HasTitleMaster() const; //Returns the value of HasTitleMaster - - /* - Property Index - - For more information, see help context 644007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Index() const; //Returns the value of Index - - /* - Property Name - - For more information, see help context 644008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Name() const; //Returns the value of Name - inline void SetName(const QString& value); //Sets the value of the Name property - - /* - Property Parent - - For more information, see help context 644002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Preserved - - For more information, see help context 644009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Preserved() const; //Returns the value of Preserved - inline void SetPreserved(Office::MsoTriState value); //Sets the value of the Preserved property - - /* - Property SlideMaster - - For more information, see help context 644003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::_Master* SlideMaster() const; //Returns the value of SlideMaster - - /* - Property TitleMaster - - For more information, see help context 644004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::_Master* TitleMaster() const; //Returns the value of TitleMaster - - /* - Method AddTitleMaster - - For more information, see help context 644006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::_Master* AddTitleMaster(); - - /* - Method Delete - - For more information, see help context 644011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Delete(); - - /* - Method MoveTo - - For more information, see help context 644010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void MoveTo(int toPos); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT DiagramNode : public QAxObject -{ -public: - DiagramNode(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Children - - For more information, see help context 645011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DiagramNodeChildren* Children() const; //Returns the value of Children - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Diagram - - For more information, see help context 645014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Diagram* Diagram() const; //Returns the value of Diagram - - /* - Property Layout - - For more information, see help context 645015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoOrgChartLayoutType Layout() const; //Returns the value of Layout - inline void SetLayout(Office::MsoOrgChartLayoutType value); //Sets the value of the Layout property - - /* - Property Parent - - For more information, see help context 645010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Root - - For more information, see help context 645013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DiagramNode* Root() const; //Returns the value of Root - - /* - Property Shape - - For more information, see help context 645012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* Shape() const; //Returns the value of Shape - - /* - Property TextShape - - For more information, see help context 645016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* TextShape() const; //Returns the value of TextShape - - /* - Method AddNode - - For more information, see help context 645001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DiagramNode* AddNode(); - - /* - Method AddNode - - For more information, see help context 645001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DiagramNode* AddNode(Office::MsoRelativeNodePosition Pos); - - /* - Method AddNode - - For more information, see help context 645001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DiagramNode* AddNode(Office::MsoRelativeNodePosition Pos, Office::MsoDiagramNodeType NodeType); - - /* - Method CloneNode - - For more information, see help context 645006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DiagramNode* CloneNode(bool CopyChildren, PowerPoint::DiagramNode* TargetNode); - - /* - Method CloneNode - - For more information, see help context 645006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DiagramNode* CloneNode(bool CopyChildren, PowerPoint::DiagramNode* TargetNode, Office::MsoRelativeNodePosition Pos); - - /* - Method Delete - - For more information, see help context 645002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Delete(); - - /* - Method MoveNode - - For more information, see help context 645003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void MoveNode(PowerPoint::DiagramNode* TargetNode, Office::MsoRelativeNodePosition Pos); - - /* - Method NextNode - - For more information, see help context 645008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DiagramNode* NextNode(); - - /* - Method PrevNode - - For more information, see help context 645009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DiagramNode* PrevNode(); - - /* - Method ReplaceNode - - For more information, see help context 645004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ReplaceNode(PowerPoint::DiagramNode* TargetNode); - - /* - Method SwapNode - - For more information, see help context 645005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SwapNode(PowerPoint::DiagramNode* TargetNode); - - /* - Method SwapNode - - For more information, see help context 645005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SwapNode(PowerPoint::DiagramNode* TargetNode, bool SwapChildren); - - /* - Method TransferChildren - - For more information, see help context 645007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void TransferChildren(PowerPoint::DiagramNode* ReceivingNode); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT DiagramNodeChildren : public QAxObject -{ -public: - DiagramNodeChildren(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 646006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property FirstChild - - For more information, see help context 646007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DiagramNode* FirstChild() const; //Returns the value of FirstChild - - /* - Property LastChild - - For more information, see help context 646008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DiagramNode* LastChild() const; //Returns the value of LastChild - - /* - Property Parent - - For more information, see help context 646005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 646001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method AddNode - - For more information, see help context 646003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DiagramNode* AddNode(); - - /* - Method AddNode - - For more information, see help context 646003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DiagramNode* AddNode(const QVariant& Index); - - /* - Method AddNode - - For more information, see help context 646003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DiagramNode* AddNode(const QVariant& Index, Office::MsoDiagramNodeType NodeType); - - /* - Method Item - - For more information, see help context 646002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DiagramNode* Item(const QVariant& Index); - - /* - Method SelectAll - - For more information, see help context 646004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SelectAll(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT DiagramNodes : public QAxObject -{ -public: - DiagramNodes(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 647005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 647004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 647001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Item - - For more information, see help context 647002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DiagramNode* Item(const QVariant& Index); - - /* - Method SelectAll - - For more information, see help context 647003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SelectAll(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Diagram : public QAxObject -{ -public: - Diagram(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property AutoFormat - - For more information, see help context 648006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState AutoFormat() const; //Returns the value of AutoFormat - inline void SetAutoFormat(Office::MsoTriState value); //Sets the value of the AutoFormat property - - /* - Property AutoLayout - - For more information, see help context 648004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState AutoLayout() const; //Returns the value of AutoLayout - inline void SetAutoLayout(Office::MsoTriState value); //Sets the value of the AutoLayout property - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Nodes - - For more information, see help context 648002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DiagramNodes* Nodes() const; //Returns the value of Nodes - - /* - Property Parent - - For more information, see help context 648001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Reverse - - For more information, see help context 648005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Reverse() const; //Returns the value of Reverse - inline void SetReverse(Office::MsoTriState value); //Sets the value of the Reverse property - - /* - Property Type - - For more information, see help context 648003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoDiagramType Type() const; //Returns the value of Type - - /* - Method Convert - - For more information, see help context 648007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Convert(Office::MsoDiagramType Type); - - /* - Method FitText - - For more information, see help context 648008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void FitText(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT TimeLine : public QAxObject -{ -public: - TimeLine(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 649001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property InteractiveSequences - - For more information, see help context 649004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Sequences* InteractiveSequences() const; //Returns the value of InteractiveSequences - - /* - Property MainSequence - - For more information, see help context 649003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Sequence* MainSequence() const; //Returns the value of MainSequence - - /* - Property Parent - - For more information, see help context 649002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Sequences : public QAxObject -{ -public: - Sequences(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 650001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 650002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 650004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Sequence* Add(); - - /* - Method Add - - For more information, see help context 650004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Sequence* Add(int Index); - - /* - Method Item - - For more information, see help context 650003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Sequence* Item(int Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Sequence : public QAxObject -{ -public: - Sequence(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 651001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 651002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method AddEffect - - For more information, see help context 651004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Effect* AddEffect(PowerPoint::Shape* Shape, PowerPoint::MsoAnimEffect effectId); - - /* - Method AddEffect - - For more information, see help context 651004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Effect* AddEffect(PowerPoint::Shape* Shape, PowerPoint::MsoAnimEffect effectId, PowerPoint::MsoAnimateByLevel Level); - - /* - Method AddEffect - - For more information, see help context 651004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Effect* AddEffect(PowerPoint::Shape* Shape, PowerPoint::MsoAnimEffect effectId, PowerPoint::MsoAnimateByLevel Level, PowerPoint::MsoAnimTriggerType trigger); - - /* - Method AddEffect - - For more information, see help context 651004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Effect* AddEffect(PowerPoint::Shape* Shape, PowerPoint::MsoAnimEffect effectId, PowerPoint::MsoAnimateByLevel Level, PowerPoint::MsoAnimTriggerType trigger, int Index); - - /* - Method Clone - - For more information, see help context 651005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Effect* Clone(PowerPoint::Effect* Effect); - - /* - Method Clone - - For more information, see help context 651005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Effect* Clone(PowerPoint::Effect* Effect, int Index); - - /* - Method ConvertToAfterEffect - - For more information, see help context 651009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Effect* ConvertToAfterEffect(PowerPoint::Effect* Effect, PowerPoint::MsoAnimAfterEffect After); - - /* - Method ConvertToAfterEffect - - For more information, see help context 651009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Effect* ConvertToAfterEffect(PowerPoint::Effect* Effect, PowerPoint::MsoAnimAfterEffect After, int DimColor); - - /* - Method ConvertToAfterEffect - - For more information, see help context 651009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Effect* ConvertToAfterEffect(PowerPoint::Effect* Effect, PowerPoint::MsoAnimAfterEffect After, int DimColor, PowerPoint::PpColorSchemeIndex DimSchemeColor); - - /* - Method ConvertToAnimateBackground - - For more information, see help context 651010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Effect* ConvertToAnimateBackground(PowerPoint::Effect* Effect, Office::MsoTriState AnimateBackground); - - /* - Method ConvertToAnimateInReverse - - For more information, see help context 651011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Effect* ConvertToAnimateInReverse(PowerPoint::Effect* Effect, Office::MsoTriState animateInReverse); - - /* - Method ConvertToBuildLevel - - For more information, see help context 651008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Effect* ConvertToBuildLevel(PowerPoint::Effect* Effect, PowerPoint::MsoAnimateByLevel Level); - - /* - Method ConvertToTextUnitEffect - - For more information, see help context 651012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Effect* ConvertToTextUnitEffect(PowerPoint::Effect* Effect, PowerPoint::MsoAnimTextUnitEffect unitEffect); - - /* - Method FindFirstAnimationFor - - For more information, see help context 651006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Effect* FindFirstAnimationFor(PowerPoint::Shape* Shape); - - /* - Method FindFirstAnimationForClick - - For more information, see help context 651007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Effect* FindFirstAnimationForClick(int click); - - /* - Method Item - - For more information, see help context 651003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Effect* Item(int Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Effect : public QAxObject -{ -public: - Effect(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 652001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Behaviors - - For more information, see help context 652017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::AnimationBehaviors* Behaviors() const; //Returns the value of Behaviors - - /* - Property DisplayName - - For more information, see help context 652015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString DisplayName() const; //Returns the value of DisplayName - - /* - Property EffectInformation - - For more information, see help context 652018 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::EffectInformation* EffectInformation() const; //Returns the value of EffectInformation - - /* - Property EffectParameters - - For more information, see help context 652011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::EffectParameters* EffectParameters() const; //Returns the value of EffectParameters - - /* - Property EffectType - - For more information, see help context 652010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::MsoAnimEffect EffectType() const; //Returns the value of EffectType - inline void SetEffectType(PowerPoint::MsoAnimEffect value); //Sets the value of the EffectType property - - /* - Property Exit - - For more information, see help context 652016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Exit() const; //Returns the value of Exit - inline void SetExit(Office::MsoTriState value); //Sets the value of the Exit property - - /* - Property Index - - For more information, see help context 652008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Index() const; //Returns the value of Index - - /* - Property Paragraph - - For more information, see help context 652014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Paragraph() const; //Returns the value of Paragraph - inline void SetParagraph(int value); //Sets the value of the Paragraph property - - /* - Property Parent - - For more information, see help context 652002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Shape - - For more information, see help context 652003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* Shape() const; //Returns the value of Shape - inline void SetShape(PowerPoint::Shape* value); //Sets the value of the Shape property - - /* - Property TextRangeLength - - For more information, see help context 652013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int TextRangeLength() const; //Returns the value of TextRangeLength - - /* - Property TextRangeStart - - For more information, see help context 652012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int TextRangeStart() const; //Returns the value of TextRangeStart - - /* - Property Timing - - For more information, see help context 652009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Timing* Timing() const; //Returns the value of Timing - - /* - Method Delete - - For more information, see help context 652007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Delete(); - - /* - Method MoveAfter - - For more information, see help context 652006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void MoveAfter(PowerPoint::Effect* Effect); - - /* - Method MoveBefore - - For more information, see help context 652005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void MoveBefore(PowerPoint::Effect* Effect); - - /* - Method MoveTo - - For more information, see help context 652004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void MoveTo(int toPos); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Timing : public QAxObject -{ -public: - Timing(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Accelerate - - For more information, see help context 653010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Accelerate() const; //Returns the value of Accelerate - inline void SetAccelerate(double value); //Sets the value of the Accelerate property - - /* - Property Application - - For more information, see help context 653001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property AutoReverse - - For more information, see help context 653012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState AutoReverse() const; //Returns the value of AutoReverse - inline void SetAutoReverse(Office::MsoTriState value); //Sets the value of the AutoReverse property - - /* - Property Decelerate - - For more information, see help context 653011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Decelerate() const; //Returns the value of Decelerate - inline void SetDecelerate(double value); //Sets the value of the Decelerate property - - /* - Property Duration - - For more information, see help context 653003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Duration() const; //Returns the value of Duration - inline void SetDuration(double value); //Sets the value of the Duration property - - /* - Property Parent - - For more information, see help context 653002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property RepeatCount - - For more information, see help context 653007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int RepeatCount() const; //Returns the value of RepeatCount - inline void SetRepeatCount(int value); //Sets the value of the RepeatCount property - - /* - Property RepeatDuration - - For more information, see help context 653008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double RepeatDuration() const; //Returns the value of RepeatDuration - inline void SetRepeatDuration(double value); //Sets the value of the RepeatDuration property - - /* - Property Restart - - For more information, see help context 653016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::MsoAnimEffectRestart Restart() const; //Returns the value of Restart - inline void SetRestart(PowerPoint::MsoAnimEffectRestart value); //Sets the value of the Restart property - - /* - Property RewindAtEnd - - For more information, see help context 653015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState RewindAtEnd() const; //Returns the value of RewindAtEnd - inline void SetRewindAtEnd(Office::MsoTriState value); //Sets the value of the RewindAtEnd property - - /* - Property SmoothEnd - - For more information, see help context 653014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState SmoothEnd() const; //Returns the value of SmoothEnd - inline void SetSmoothEnd(Office::MsoTriState value); //Sets the value of the SmoothEnd property - - /* - Property SmoothStart - - For more information, see help context 653013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState SmoothStart() const; //Returns the value of SmoothStart - inline void SetSmoothStart(Office::MsoTriState value); //Sets the value of the SmoothStart property - - /* - Property Speed - - For more information, see help context 653009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Speed() const; //Returns the value of Speed - inline void SetSpeed(double value); //Sets the value of the Speed property - - /* - Property TriggerDelayTime - - For more information, see help context 653005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double TriggerDelayTime() const; //Returns the value of TriggerDelayTime - inline void SetTriggerDelayTime(double value); //Sets the value of the TriggerDelayTime property - - /* - Property TriggerShape - - For more information, see help context 653006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* TriggerShape() const; //Returns the value of TriggerShape - inline void SetTriggerShape(PowerPoint::Shape* value); //Sets the value of the TriggerShape property - - /* - Property TriggerType - - For more information, see help context 653004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::MsoAnimTriggerType TriggerType() const; //Returns the value of TriggerType - inline void SetTriggerType(PowerPoint::MsoAnimTriggerType value); //Sets the value of the TriggerType property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT EffectParameters : public QAxObject -{ -public: - EffectParameters(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Amount - - For more information, see help context 654004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Amount() const; //Returns the value of Amount - inline void SetAmount(double value); //Sets the value of the Amount property - - /* - Property Application - - For more information, see help context 654001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Color2 - - For more information, see help context 654006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorFormat* Color2() const; //Returns the value of Color2 - - /* - Property Direction - - For more information, see help context 654003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::MsoAnimDirection Direction() const; //Returns the value of Direction - inline void SetDirection(PowerPoint::MsoAnimDirection value); //Sets the value of the Direction property - - /* - Property FontName - - For more information, see help context 654008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString FontName() const; //Returns the value of FontName - inline void SetFontName(const QString& value); //Sets the value of the FontName property - - /* - Property Parent - - For more information, see help context 654002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Relative - - For more information, see help context 654007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Relative() const; //Returns the value of Relative - inline void SetRelative(Office::MsoTriState value); //Sets the value of the Relative property - - /* - Property Size - - For more information, see help context 654005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Size() const; //Returns the value of Size - inline void SetSize(double value); //Sets the value of the Size property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT EffectInformation : public QAxObject -{ -public: - EffectInformation(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property AfterEffect - - For more information, see help context 655003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::MsoAnimAfterEffect AfterEffect() const; //Returns the value of AfterEffect - - /* - Property AnimateBackground - - For more information, see help context 655004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState AnimateBackground() const; //Returns the value of AnimateBackground - - /* - Property AnimateTextInReverse - - For more information, see help context 655005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState AnimateTextInReverse() const; //Returns the value of AnimateTextInReverse - - /* - Property Application - - For more information, see help context 655001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property BuildByLevelEffect - - For more information, see help context 655006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::MsoAnimateByLevel BuildByLevelEffect() const; //Returns the value of BuildByLevelEffect - - /* - Property Dim - - For more information, see help context 655007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorFormat* Dim() const; //Returns the value of Dim - - /* - Property Parent - - For more information, see help context 655002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property PlaySettings - - For more information, see help context 655008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PlaySettings* PlaySettings() const; //Returns the value of PlaySettings - - /* - Property SoundEffect - - For more information, see help context 655009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SoundEffect* SoundEffect() const; //Returns the value of SoundEffect - - /* - Property TextUnitEffect - - For more information, see help context 655010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::MsoAnimTextUnitEffect TextUnitEffect() const; //Returns the value of TextUnitEffect - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT AnimationBehaviors : public QAxObject -{ -public: - AnimationBehaviors(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 656001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 656002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 656004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::AnimationBehavior* Add(PowerPoint::MsoAnimType Type); - - /* - Method Add - - For more information, see help context 656004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::AnimationBehavior* Add(PowerPoint::MsoAnimType Type, int Index); - - /* - Method Item - - For more information, see help context 656003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::AnimationBehavior* Item(int Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT AnimationBehavior : public QAxObject -{ -public: - AnimationBehavior(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Accumulate - - For more information, see help context 657004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::MsoAnimAccumulate Accumulate() const; //Returns the value of Accumulate - inline void SetAccumulate(PowerPoint::MsoAnimAccumulate value); //Sets the value of the Accumulate property - - /* - Property Additive - - For more information, see help context 657003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::MsoAnimAdditive Additive() const; //Returns the value of Additive - inline void SetAdditive(PowerPoint::MsoAnimAdditive value); //Sets the value of the Additive property - - /* - Property Application - - For more information, see help context 657001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property ColorEffect - - For more information, see help context 657007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorEffect* ColorEffect() const; //Returns the value of ColorEffect - - /* - Property CommandEffect - - For more information, see help context 657013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::CommandEffect* CommandEffect() const; //Returns the value of CommandEffect - - /* - Property FilterEffect - - For more information, see help context 657014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::FilterEffect* FilterEffect() const; //Returns the value of FilterEffect - - /* - Property MotionEffect - - For more information, see help context 657006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::MotionEffect* MotionEffect() const; //Returns the value of MotionEffect - - /* - Property Parent - - For more information, see help context 657002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property PropertyEffect - - For more information, see help context 657010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PropertyEffect* PropertyEffect() const; //Returns the value of PropertyEffect - - /* - Property RotationEffect - - For more information, see help context 657009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::RotationEffect* RotationEffect() const; //Returns the value of RotationEffect - - /* - Property ScaleEffect - - For more information, see help context 657008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ScaleEffect* ScaleEffect() const; //Returns the value of ScaleEffect - - /* - Property SetEffect - - For more information, see help context 657015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SetEffect* SetEffect() const; //Returns the value of SetEffect - - /* - Property Timing - - For more information, see help context 657011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Timing* Timing() const; //Returns the value of Timing - - /* - Property Type - - For more information, see help context 657005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::MsoAnimType Type() const; //Returns the value of Type - inline void SetType(PowerPoint::MsoAnimType value); //Sets the value of the Type property - - /* - Method Delete - - For more information, see help context 657012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Delete(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT MotionEffect : public QAxObject -{ -public: - MotionEffect(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 658001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property ByX - - For more information, see help context 658003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double ByX() const; //Returns the value of ByX - inline void SetByX(double value); //Sets the value of the ByX property - - /* - Property ByY - - For more information, see help context 658004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double ByY() const; //Returns the value of ByY - inline void SetByY(double value); //Sets the value of the ByY property - - /* - Property FromX - - For more information, see help context 658005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double FromX() const; //Returns the value of FromX - inline void SetFromX(double value); //Sets the value of the FromX property - - /* - Property FromY - - For more information, see help context 658006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double FromY() const; //Returns the value of FromY - inline void SetFromY(double value); //Sets the value of the FromY property - - /* - Property Parent - - For more information, see help context 658002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Path - - For more information, see help context 658009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Path() const; //Returns the value of Path - inline void SetPath(const QString& value); //Sets the value of the Path property - - /* - Property ToX - - For more information, see help context 658007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double ToX() const; //Returns the value of ToX - inline void SetToX(double value); //Sets the value of the ToX property - - /* - Property ToY - - For more information, see help context 658008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double ToY() const; //Returns the value of ToY - inline void SetToY(double value); //Sets the value of the ToY property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT ColorEffect : public QAxObject -{ -public: - ColorEffect(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 659001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property By - - For more information, see help context 659003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorFormat* By() const; //Returns the value of By - - /* - Property From - - For more information, see help context 659004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorFormat* From() const; //Returns the value of From - - /* - Property Parent - - For more information, see help context 659002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property To - - For more information, see help context 659005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorFormat* To() const; //Returns the value of To - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT ScaleEffect : public QAxObject -{ -public: - ScaleEffect(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 660001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property ByX - - For more information, see help context 660003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double ByX() const; //Returns the value of ByX - inline void SetByX(double value); //Sets the value of the ByX property - - /* - Property ByY - - For more information, see help context 660004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double ByY() const; //Returns the value of ByY - inline void SetByY(double value); //Sets the value of the ByY property - - /* - Property FromX - - For more information, see help context 660005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double FromX() const; //Returns the value of FromX - inline void SetFromX(double value); //Sets the value of the FromX property - - /* - Property FromY - - For more information, see help context 660006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double FromY() const; //Returns the value of FromY - inline void SetFromY(double value); //Sets the value of the FromY property - - /* - Property Parent - - For more information, see help context 660002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property ToX - - For more information, see help context 660007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double ToX() const; //Returns the value of ToX - inline void SetToX(double value); //Sets the value of the ToX property - - /* - Property ToY - - For more information, see help context 660008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double ToY() const; //Returns the value of ToY - inline void SetToY(double value); //Sets the value of the ToY property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT RotationEffect : public QAxObject -{ -public: - RotationEffect(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 661001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property By - - For more information, see help context 661003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double By() const; //Returns the value of By - inline void SetBy(double value); //Sets the value of the By property - - /* - Property From - - For more information, see help context 661004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double From() const; //Returns the value of From - inline void SetFrom(double value); //Sets the value of the From property - - /* - Property Parent - - For more information, see help context 661002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property To - - For more information, see help context 661005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double To() const; //Returns the value of To - inline void SetTo(double value); //Sets the value of the To property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT PropertyEffect : public QAxObject -{ -public: - PropertyEffect(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 662001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property From - - For more information, see help context 662005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant From() const; //Returns the value of From - inline void SetFrom(const QVariant& value); //Sets the value of the From property - - /* - Property Parent - - For more information, see help context 662002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Points - - For more information, see help context 662004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::AnimationPoints* Points() const; //Returns the value of Points - - /* - Property Property - - For more information, see help context 662003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::MsoAnimProperty Property() const; //Returns the value of Property - inline void SetProperty(PowerPoint::MsoAnimProperty value); //Sets the value of the Property property - - /* - Property To - - For more information, see help context 662006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant To() const; //Returns the value of To - inline void SetTo(const QVariant& value); //Sets the value of the To property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT AnimationPoints : public QAxObject -{ -public: - AnimationPoints(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 663001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Count - - For more information, see help context 501003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Parent - - For more information, see help context 663002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Smooth - - For more information, see help context 663005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Smooth() const; //Returns the value of Smooth - inline void SetSmooth(Office::MsoTriState value); //Sets the value of the Smooth property - - /* - Property _NewEnum - - For more information, see help context 501001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method Add - - For more information, see help context 663004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::AnimationPoint* Add(); - - /* - Method Add - - For more information, see help context 663004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::AnimationPoint* Add(int Index); - - /* - Method Item - - For more information, see help context 663003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::AnimationPoint* Item(int Index); - - /* - Method _Index - - For more information, see help context 501002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant _Index(int Index); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT AnimationPoint : public QAxObject -{ -public: - AnimationPoint(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 664001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Formula - - For more information, see help context 664006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Formula() const; //Returns the value of Formula - inline void SetFormula(const QString& value); //Sets the value of the Formula property - - /* - Property Parent - - For more information, see help context 664002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Time - - For more information, see help context 664004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Time() const; //Returns the value of Time - inline void SetTime(double value); //Sets the value of the Time property - - /* - Property Value - - For more information, see help context 664005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant Value() const; //Returns the value of Value - inline void SetValue(const QVariant& value); //Sets the value of the Value property - - /* - Method Delete - - For more information, see help context 664003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Delete(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT CanvasShapes : public QAxObject -{ -public: - CanvasShapes(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 1001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Application() const; //Returns the value of Application - - /* - Property Background - - For more information, see help context 665018 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* Background() const; //Returns the value of Background - - /* - Property Count - - For more information, see help context 665002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Count() const; //Returns the value of Count - - /* - Property Creator - - For more information, see help context 1002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property Parent - - For more information, see help context 665001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property _NewEnum - - For more information, see help context 665004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* _NewEnum() const; //Returns the value of _NewEnum - - /* - Method AddCallout - - For more information, see help context 665005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddCallout(Office::MsoCalloutType Type, double Left, double Top, double Width, double Height); - - /* - Method AddConnector - - For more information, see help context 665006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddConnector(Office::MsoConnectorType Type, double BeginX, double BeginY, double EndX, double EndY); - - /* - Method AddCurve - - For more information, see help context 665007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddCurve(const QVariant& SafeArrayOfPoints); - - /* - Method AddLabel - - For more information, see help context 665008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddLabel(Office::MsoTextOrientation Orientation, double Left, double Top, double Width, double Height); - - /* - Method AddLine - - For more information, see help context 665009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddLine(double BeginX, double BeginY, double EndX, double EndY); - - /* - Method AddPicture - - For more information, see help context 665010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddPicture(const QString& FileName, Office::MsoTriState LinkToFile, Office::MsoTriState SaveWithDocument, double Left, double Top); - - /* - Method AddPicture - - For more information, see help context 665010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddPicture(const QString& FileName, Office::MsoTriState LinkToFile, Office::MsoTriState SaveWithDocument, double Left, double Top, double Width); - - /* - Method AddPicture - - For more information, see help context 665010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddPicture(const QString& FileName, Office::MsoTriState LinkToFile, Office::MsoTriState SaveWithDocument, double Left, double Top, double Width, double Height); - - /* - Method AddPolyline - - For more information, see help context 665011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddPolyline(const QVariant& SafeArrayOfPoints); - - /* - Method AddShape - - For more information, see help context 665012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddShape(Office::MsoAutoShapeType Type, double Left, double Top, double Width, double Height); - - /* - Method AddTextEffect - - For more information, see help context 665013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddTextEffect(Office::MsoPresetTextEffect PresetTextEffect, const QString& Text, const QString& FontName, double FontSize, Office::MsoTriState FontBold, Office::MsoTriState FontItalic, double Left, double Top); - - /* - Method AddTextbox - - For more information, see help context 665014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* AddTextbox(Office::MsoTextOrientation Orientation, double Left, double Top, double Width, double Height); - - /* - Method BuildFreeform - - For more information, see help context 665015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::FreeformBuilder* BuildFreeform(Office::MsoEditingType EditingType, double X1, double Y1); - - /* - Method Item - - For more information, see help context 665003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* Item(const QVariant& Index); - - /* - Method Range - - For more information, see help context 665016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeRange* Range(const QVariant& Index); - - /* - Method SelectAll - - For more information, see help context 665017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SelectAll(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT AutoCorrect : public QAxObject -{ -public: - AutoCorrect(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property DisplayAutoCorrectOptions - - For more information, see help context 666001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline bool DisplayAutoCorrectOptions() const; //Returns the value of DisplayAutoCorrectOptions - inline void SetDisplayAutoCorrectOptions(bool value); //Sets the value of the DisplayAutoCorrectOptions property - - /* - Property DisplayAutoLayoutOptions - - For more information, see help context 666002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline bool DisplayAutoLayoutOptions() const; //Returns the value of DisplayAutoLayoutOptions - inline void SetDisplayAutoLayoutOptions(bool value); //Sets the value of the DisplayAutoLayoutOptions property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Options : public QAxObject -{ -public: - Options(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property DisplayPasteOptions - - For more information, see help context 667001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState DisplayPasteOptions() const; //Returns the value of DisplayPasteOptions - inline void SetDisplayPasteOptions(Office::MsoTriState value); //Sets the value of the DisplayPasteOptions property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT CommandEffect : public QAxObject -{ -public: - CommandEffect(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 668001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Command - - For more information, see help context 668004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Command() const; //Returns the value of Command - inline void SetCommand(const QString& value); //Sets the value of the Command property - - /* - Property Parent - - For more information, see help context 668002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Type - - For more information, see help context 668003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::MsoAnimCommandType Type() const; //Returns the value of Type - inline void SetType(PowerPoint::MsoAnimCommandType value); //Sets the value of the Type property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT FilterEffect : public QAxObject -{ -public: - FilterEffect(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 669001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Parent - - For more information, see help context 669002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Reveal - - For more information, see help context 669005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Reveal() const; //Returns the value of Reveal - inline void SetReveal(Office::MsoTriState value); //Sets the value of the Reveal property - - /* - Property Subtype - - For more information, see help context 669004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::MsoAnimFilterEffectSubtype Subtype() const; //Returns the value of Subtype - inline void SetSubtype(PowerPoint::MsoAnimFilterEffectSubtype value); //Sets the value of the Subtype property - - /* - Property Type - - For more information, see help context 669003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::MsoAnimFilterEffectType Type() const; //Returns the value of Type - inline void SetType(PowerPoint::MsoAnimFilterEffectType value); //Sets the value of the Type property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT SetEffect : public QAxObject -{ -public: - SetEffect(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 670001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Parent - - For more information, see help context 670002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Property - - For more information, see help context 670003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::MsoAnimProperty Property() const; //Returns the value of Property - inline void SetProperty(PowerPoint::MsoAnimProperty value); //Sets the value of the Property property - - /* - Property To - - For more information, see help context 670004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant To() const; //Returns the value of To - inline void SetTo(const QVariant& value); //Sets the value of the To property - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -// Actual coclasses -class POWERPOINT_EXPORT Application : public QAxObject -{ -public: - Application(QObject *parent = 0) - : QAxObject(parent) - { - setControl("{91493441-5a91-11cf-8700-00aa0060263b}"); - } - - Application(_Application *iface) - : QAxObject() - { - initializeFrom(iface); - delete iface; - } - - /* - Property Active - - For more information, see help context 502033 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Active() const; //Returns the value of Active - - /* - Property ActivePresentation - - For more information, see help context 502005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Presentation* ActivePresentation() const; //Returns the value of ActivePresentation - - /* - Property ActivePrinter - - For more information, see help context 502017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString ActivePrinter() const; //Returns the value of ActivePrinter - - /* - Property ActiveWindow - - For more information, see help context 502004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DocumentWindow* ActiveWindow() const; //Returns the value of ActiveWindow - - /* - Property AddIns - - For more information, see help context 502019 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::AddIns* AddIns() const; //Returns the value of AddIns - - /* - Property AnswerWizard - - For more information, see help context 502035 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::AnswerWizard* AnswerWizard() const; //Returns the value of AnswerWizard - - /* - Property Assistant - - For more information, see help context 502011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::Assistant* Assistant() const; //Returns the value of Assistant - - /* - Property AutoCorrect - - For more information, see help context 502053 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::AutoCorrect* AutoCorrect() const; //Returns the value of AutoCorrect - - /* - Property AutomationSecurity - - For more information, see help context 502048 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoAutomationSecurity AutomationSecurity() const; //Returns the value of AutomationSecurity - inline void SetAutomationSecurity(Office::MsoAutomationSecurity value); //Sets the value of the AutomationSecurity property - - /* - Property Build - - For more information, see help context 502014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Build() const; //Returns the value of Build - - /* - Property COMAddIns - - For more information, see help context 502036 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::COMAddIns* COMAddIns() const; //Returns the value of COMAddIns - - /* - Property Caption - - For more information, see help context 502010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Caption() const; //Returns the value of Caption - inline void SetCaption(const QString& value); //Sets the value of the Caption property - - /* - Property CommandBars - - For more information, see help context 502007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::CommandBars* CommandBars() const; //Returns the value of CommandBars - - /* - Property Creator - - For more information, see help context 502018 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int Creator() const; //Returns the value of Creator - - /* - Property DefaultWebOptions - - For more information, see help context 502038 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DefaultWebOptions* DefaultWebOptions() const; //Returns the value of DefaultWebOptions - - /* - Property Dialogs - - For more information, see help context 502003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* Dialogs() const; //Returns the value of Dialogs - - /* - Property DisplayAlerts - - For more information, see help context 502050 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpAlertLevel DisplayAlerts() const; //Returns the value of DisplayAlerts - inline void SetDisplayAlerts(PowerPoint::PpAlertLevel value); //Sets the value of the DisplayAlerts property - - /* - Property DisplayGridLines - - For more information, see help context 502047 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState DisplayGridLines() const; //Returns the value of DisplayGridLines - inline void SetDisplayGridLines(Office::MsoTriState value); //Sets the value of the DisplayGridLines property - - /* - Property FeatureInstall - - For more information, see help context 502043 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoFeatureInstall FeatureInstall() const; //Returns the value of FeatureInstall - inline void SetFeatureInstall(Office::MsoFeatureInstall value); //Sets the value of the FeatureInstall property - - /* - Property FileFind - - For more information, see help context 502013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::IFind* FileFind() const; //Returns the value of FileFind - - /* - Property FileSearch - - For more information, see help context 502012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::FileSearch* FileSearch() const; //Returns the value of FileSearch - - /* - Property HWND - - For more information, see help context 502032 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int HWND() const; //Returns the value of HWND - - /* - Property Height - - For more information, see help context 502029 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Height() const; //Returns the value of Height - inline void SetHeight(double value); //Sets the value of the Height property - - /* - Property LanguageSettings - - For more information, see help context 502039 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::LanguageSettings* LanguageSettings() const; //Returns the value of LanguageSettings - - /* - Property Left - - For more information, see help context 502026 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Left() const; //Returns the value of Left - inline void SetLeft(double value); //Sets the value of the Left property - - /* - Property Marker - - For more information, see help context 502042 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* Marker() const; //Returns the value of Marker - - /* - Property MsoDebugOptions - - For more information, see help context 502040 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoDebugOptions* MsoDebugOptions() const; //Returns the value of MsoDebugOptions - - /* - Property Name - - For more information, see help context 502009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Name() const; //Returns the value of Name - - /* - Property NewPresentation - - For more information, see help context 502049 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::NewFile* NewPresentation() const; //Returns the value of NewPresentation - - /* - Property OperatingSystem - - For more information, see help context 502016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString OperatingSystem() const; //Returns the value of OperatingSystem - - /* - Property Options - - For more information, see help context 502054 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Options* Options() const; //Returns the value of Options - - /* - Property Path - - For more information, see help context 502008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Path() const; //Returns the value of Path - - /* - Property Presentations - - For more information, see help context 502001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Presentations* Presentations() const; //Returns the value of Presentations - - /* - Property ProductCode - - For more information, see help context 502037 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString ProductCode() const; //Returns the value of ProductCode - - /* - Property ShowStartupDialog - - For more information, see help context 502051 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState ShowStartupDialog() const; //Returns the value of ShowStartupDialog - inline void SetShowStartupDialog(Office::MsoTriState value); //Sets the value of the ShowStartupDialog property - - /* - Property ShowWindowsInTaskbar - - For more information, see help context 502041 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState ShowWindowsInTaskbar() const; //Returns the value of ShowWindowsInTaskbar - inline void SetShowWindowsInTaskbar(Office::MsoTriState value); //Sets the value of the ShowWindowsInTaskbar property - - /* - Property SlideShowWindows - - For more information, see help context 502006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideShowWindows* SlideShowWindows() const; //Returns the value of SlideShowWindows - - /* - Property Top - - For more information, see help context 502027 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Top() const; //Returns the value of Top - inline void SetTop(double value); //Sets the value of the Top property - - /* - Property VBE - - For more information, see help context 502020 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline VBIDE::VBE* VBE() const; //Returns the value of VBE - - /* - Property Version - - For more information, see help context 502015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Version() const; //Returns the value of Version - - /* - Property Visible - - For more information, see help context 502031 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Visible() const; //Returns the value of Visible - inline void SetVisible(Office::MsoTriState value); //Sets the value of the Visible property - - /* - Property Width - - For more information, see help context 502028 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Width() const; //Returns the value of Width - inline void SetWidth(double value); //Sets the value of the Width property - - /* - Property WindowState - - For more information, see help context 502030 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpWindowState WindowState() const; //Returns the value of WindowState - inline void SetWindowState(PowerPoint::PpWindowState value); //Sets the value of the WindowState property - - /* - Property Windows - - For more information, see help context 502002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DocumentWindows* Windows() const; //Returns the value of Windows - - /* - Method Activate - - For more information, see help context 502034 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Activate(); - - /* - Method FileDialog - - For more information, see help context 502046 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::FileDialog* FileDialog(Office::MsoFileDialogType Type); - - /* - Method GetOptionFlag - - For more information, see help context 502044 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline bool GetOptionFlag(int Option); - - /* - Method GetOptionFlag - - For more information, see help context 502044 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline bool GetOptionFlag(int Option, bool Persist); - - /* - Method Help - - For more information, see help context 502021 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Help(); - - /* - Method Help - - For more information, see help context 502021 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Help(const QString& HelpFile); - - /* - Method Help - - For more information, see help context 502021 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Help(const QString& HelpFile, int ContextID); - - /* - Method LaunchSpelling - - For more information, see help context 502025 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void LaunchSpelling(PowerPoint::DocumentWindow* pWindow); - - /* - Method PPFileDialog - - For more information, see help context 502024 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* PPFileDialog(PowerPoint::PpFileDialogType Type); - - /* - Method Quit - - For more information, see help context 502022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Quit(); - - /* - Method Run - - For more information, see help context 502023 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QVariant Run(const QString& MacroName, QVariantList& safeArrayOfParams); - - /* - Method SetOptionFlag - - For more information, see help context 502045 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SetOptionFlag(int Option, bool State); - - /* - Method SetOptionFlag - - For more information, see help context 502045 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SetOptionFlag(int Option, bool State, bool Persist); - - /* - Method SetPerfMarker - - For more information, see help context 502052 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SetPerfMarker(int Marker); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Global : public QAxObject -{ -public: - Global(QObject *parent = 0) - : QAxObject(parent) - { - setControl("{91493443-5a91-11cf-8700-00aa0060263b}"); - } - - /* - Property ActivePresentation - - For more information, see help context 503001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Presentation* ActivePresentation() const; //Returns the value of ActivePresentation - - /* - Property ActiveWindow - - For more information, see help context 503002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DocumentWindow* ActiveWindow() const; //Returns the value of ActiveWindow - - /* - Property AddIns - - For more information, see help context 503003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::AddIns* AddIns() const; //Returns the value of AddIns - - /* - Property AnswerWizard - - For more information, see help context 503011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::AnswerWizard* AnswerWizard() const; //Returns the value of AnswerWizard - - /* - Property Application - - For more information, see help context 503004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Assistant - - For more information, see help context 503005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::Assistant* Assistant() const; //Returns the value of Assistant - - /* - Property CommandBars - - For more information, see help context 503010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::CommandBars* CommandBars() const; //Returns the value of CommandBars - - /* - Property Dialogs - - For more information, see help context 503006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IUnknown* Dialogs() const; //Returns the value of Dialogs - - /* - Property Presentations - - For more information, see help context 503007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Presentations* Presentations() const; //Returns the value of Presentations - - /* - Property SlideShowWindows - - For more information, see help context 503008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideShowWindows* SlideShowWindows() const; //Returns the value of SlideShowWindows - - /* - Property Windows - - For more information, see help context 503009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DocumentWindows* Windows() const; //Returns the value of Windows - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Presentation : public QAxObject -{ -public: - Presentation(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - /* - Property Application - - For more information, see help context 583001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property BuiltInDocumentProperties - - For more information, see help context 583020 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* BuiltInDocumentProperties() const; //Returns the value of BuiltInDocumentProperties - - /* - Property ColorSchemes - - For more information, see help context 583013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorSchemes* ColorSchemes() const; //Returns the value of ColorSchemes - - /* - Property CommandBars - - For more information, see help context 583051 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::CommandBars* CommandBars() const; //Returns the value of CommandBars - - /* - Property Container - - For more information, see help context 583041 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Container() const; //Returns the value of Container - - /* - Property CustomDocumentProperties - - For more information, see help context 583021 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* CustomDocumentProperties() const; //Returns the value of CustomDocumentProperties - - /* - Property DefaultLanguageID - - For more information, see help context 583050 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoLanguageID DefaultLanguageID() const; //Returns the value of DefaultLanguageID - inline void SetDefaultLanguageID(Office::MsoLanguageID value); //Sets the value of the DefaultLanguageID property - - /* - Property DefaultShape - - For more information, see help context 583019 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shape* DefaultShape() const; //Returns the value of DefaultShape - - /* - Property Designs - - For more information, see help context 583063 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Designs* Designs() const; //Returns the value of Designs - - /* - Property DisplayComments - - For more information, see help context 583042 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState DisplayComments() const; //Returns the value of DisplayComments - inline void SetDisplayComments(Office::MsoTriState value); //Sets the value of the DisplayComments property - - /* - Property DocumentLibraryVersions - - For more information, see help context 583086 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::DocumentLibraryVersions* DocumentLibraryVersions() const; //Returns the value of DocumentLibraryVersions - - /* - Property EnvelopeVisible - - For more information, see help context 583057 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState EnvelopeVisible() const; //Returns the value of EnvelopeVisible - inline void SetEnvelopeVisible(Office::MsoTriState value); //Sets the value of the EnvelopeVisible property - - /* - Property ExtraColors - - For more information, see help context 583014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ExtraColors* ExtraColors() const; //Returns the value of ExtraColors - - /* - Property FarEastLineBreakLanguage - - For more information, see help context 583048 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoFarEastLineBreakLanguageID FarEastLineBreakLanguage() const; //Returns the value of FarEastLineBreakLanguage - inline void SetFarEastLineBreakLanguage(Office::MsoFarEastLineBreakLanguageID value); //Sets the value of the FarEastLineBreakLanguage property - - /* - Property FarEastLineBreakLevel - - For more information, see help context 583043 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpFarEastLineBreakLevel FarEastLineBreakLevel() const; //Returns the value of FarEastLineBreakLevel - inline void SetFarEastLineBreakLevel(PowerPoint::PpFarEastLineBreakLevel value); //Sets the value of the FarEastLineBreakLevel property - - /* - Property Fonts - - For more information, see help context 583016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Fonts* Fonts() const; //Returns the value of Fonts - - /* - Property FullName - - For more information, see help context 583024 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString FullName() const; //Returns the value of FullName - - /* - Property GridDistance - - For more information, see help context 583062 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double GridDistance() const; //Returns the value of GridDistance - inline void SetGridDistance(double value); //Sets the value of the GridDistance property - - /* - Property HTMLProject - - For more information, see help context 583054 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::HTMLProject* HTMLProject() const; //Returns the value of HTMLProject - - /* - Property HandoutMaster - - For more information, see help context 583010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::_Master* HandoutMaster() const; //Returns the value of HandoutMaster - - /* - Property HasRevisionInfo - - For more information, see help context 583072 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpRevisionInfo HasRevisionInfo() const; //Returns the value of HasRevisionInfo - - /* - Property HasTitleMaster - - For more information, see help context 583005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState HasTitleMaster() const; //Returns the value of HasTitleMaster - - /* - Property LayoutDirection - - For more information, see help context 583028 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpDirection LayoutDirection() const; //Returns the value of LayoutDirection - inline void SetLayoutDirection(PowerPoint::PpDirection value); //Sets the value of the LayoutDirection property - - /* - Property Name - - For more information, see help context 583025 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Name() const; //Returns the value of Name - - /* - Property NoLineBreakAfter - - For more information, see help context 583045 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString NoLineBreakAfter() const; //Returns the value of NoLineBreakAfter - inline void SetNoLineBreakAfter(const QString& value); //Sets the value of the NoLineBreakAfter property - - /* - Property NoLineBreakBefore - - For more information, see help context 583044 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString NoLineBreakBefore() const; //Returns the value of NoLineBreakBefore - inline void SetNoLineBreakBefore(const QString& value); //Sets the value of the NoLineBreakBefore property - - /* - Property NotesMaster - - For more information, see help context 583009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::_Master* NotesMaster() const; //Returns the value of NotesMaster - - /* - Property PageSetup - - For more information, see help context 583012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PageSetup* PageSetup() const; //Returns the value of PageSetup - - /* - Property Parent - - For more information, see help context 583002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Password - - For more information, see help context 583080 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Password() const; //Returns the value of Password - inline void SetPassword(const QString& value); //Sets the value of the Password property - - /* - Property PasswordEncryptionAlgorithm - - For more information, see help context 583076 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString PasswordEncryptionAlgorithm() const; //Returns the value of PasswordEncryptionAlgorithm - - /* - Property PasswordEncryptionFileProperties - - For more information, see help context 583078 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline bool PasswordEncryptionFileProperties() const; //Returns the value of PasswordEncryptionFileProperties - - /* - Property PasswordEncryptionKeyLength - - For more information, see help context 583077 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int PasswordEncryptionKeyLength() const; //Returns the value of PasswordEncryptionKeyLength - - /* - Property PasswordEncryptionProvider - - For more information, see help context 583075 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString PasswordEncryptionProvider() const; //Returns the value of PasswordEncryptionProvider - - /* - Property Path - - For more information, see help context 583026 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Path() const; //Returns the value of Path - - /* - Property Permission - - For more information, see help context 583082 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::Permission* Permission() const; //Returns the value of Permission - - /* - Property PrintOptions - - For more information, see help context 583033 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PrintOptions* PrintOptions() const; //Returns the value of PrintOptions - - /* - Property PublishObjects - - For more information, see help context 583052 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PublishObjects* PublishObjects() const; //Returns the value of PublishObjects - - /* - Property ReadOnly - - For more information, see help context 583023 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState ReadOnly() const; //Returns the value of ReadOnly - - /* - Property RemovePersonalInformation - - For more information, see help context 583068 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState RemovePersonalInformation() const; //Returns the value of RemovePersonalInformation - inline void SetRemovePersonalInformation(Office::MsoTriState value); //Sets the value of the RemovePersonalInformation property - - /* - Property Saved - - For more information, see help context 583027 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState Saved() const; //Returns the value of Saved - inline void SetSaved(Office::MsoTriState value); //Sets the value of the Saved property - - /* - Property SharedWorkspace - - For more information, see help context 583083 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::SharedWorkspace* SharedWorkspace() const; //Returns the value of SharedWorkspace - - /* - Property Signatures - - For more information, see help context 583067 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::SignatureSet* Signatures() const; //Returns the value of Signatures - - /* - Property SlideMaster - - For more information, see help context 583003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::_Master* SlideMaster() const; //Returns the value of SlideMaster - - /* - Property SlideShowSettings - - For more information, see help context 583015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideShowSettings* SlideShowSettings() const; //Returns the value of SlideShowSettings - - /* - Property SlideShowWindow - - For more information, see help context 583047 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideShowWindow* SlideShowWindow() const; //Returns the value of SlideShowWindow - - /* - Property Slides - - For more information, see help context 583011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Slides* Slides() const; //Returns the value of Slides - - /* - Property SnapToGrid - - For more information, see help context 583061 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState SnapToGrid() const; //Returns the value of SnapToGrid - inline void SetSnapToGrid(Office::MsoTriState value); //Sets the value of the SnapToGrid property - - /* - Property Sync - - For more information, see help context 583084 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::Sync* Sync() const; //Returns the value of Sync - - /* - Property Tags - - For more information, see help context 583018 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Tags* Tags() const; //Returns the value of Tags - - /* - Property TemplateName - - For more information, see help context 583008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString TemplateName() const; //Returns the value of TemplateName - - /* - Property TitleMaster - - For more information, see help context 583004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::_Master* TitleMaster() const; //Returns the value of TitleMaster - - /* - Property VBASigned - - For more information, see help context 583059 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState VBASigned() const; //Returns the value of VBASigned - - /* - Property VBProject - - For more information, see help context 583022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline VBIDE::VBProject* VBProject() const; //Returns the value of VBProject - - /* - Property WebOptions - - For more information, see help context 583053 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::WebOptions* WebOptions() const; //Returns the value of WebOptions - - /* - Property Windows - - For more information, see help context 583017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DocumentWindows* Windows() const; //Returns the value of Windows - - /* - Property WritePassword - - For more information, see help context 583081 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString WritePassword() const; //Returns the value of WritePassword - inline void SetWritePassword(const QString& value); //Sets the value of the WritePassword property - - /* - Method AddBaseline - - For more information, see help context 583073 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void AddBaseline(); - - /* - Method AddBaseline - - For more information, see help context 583073 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void AddBaseline(const QString& FileName); - - /* - Method AddTitleMaster - - For more information, see help context 583006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::_Master* AddTitleMaster(); - - /* - Method AddToFavorites - - For more information, see help context 583031 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void AddToFavorites(); - - /* - Method ApplyTemplate - - For more information, see help context 583007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ApplyTemplate(const QString& FileName); - - /* - Method CanCheckIn - - For more information, see help context 583066 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline bool CanCheckIn(); - - /* - Method CheckIn - - For more information, see help context 583065 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void CheckIn(); - - /* - Method CheckIn - - For more information, see help context 583065 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void CheckIn(bool SaveChanges); - - /* - Method CheckIn - - For more information, see help context 583065 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void CheckIn(bool SaveChanges, const QVariant& Comments); - - /* - Method CheckIn - - For more information, see help context 583065 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void CheckIn(bool SaveChanges, const QVariant& Comments, const QVariant& MakePublic); - - /* - Method Close - - For more information, see help context 583039 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Close(); - - /* - Method EndReview - - For more information, see help context 583071 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void EndReview(); - - /* - Method Export - - For more information, see help context 583038 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Export(const QString& Path, const QString& FilterName); - - /* - Method Export - - For more information, see help context 583038 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Export(const QString& Path, const QString& FilterName, int ScaleWidth); - - /* - Method Export - - For more information, see help context 583038 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Export(const QString& Path, const QString& FilterName, int ScaleWidth, int ScaleHeight); - - /* - Method FollowHyperlink - - For more information, see help context 583030 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void FollowHyperlink(const QString& Address); - - /* - Method FollowHyperlink - - For more information, see help context 583030 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void FollowHyperlink(const QString& Address, const QString& SubAddress); - - /* - Method FollowHyperlink - - For more information, see help context 583030 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void FollowHyperlink(const QString& Address, const QString& SubAddress, bool NewWindow); - - /* - Method FollowHyperlink - - For more information, see help context 583030 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void FollowHyperlink(const QString& Address, const QString& SubAddress, bool NewWindow, bool AddHistory); - - /* - Method FollowHyperlink - - For more information, see help context 583030 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void FollowHyperlink(const QString& Address, const QString& SubAddress, bool NewWindow, bool AddHistory, const QString& ExtraInfo); - - /* - Method FollowHyperlink - - For more information, see help context 583030 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void FollowHyperlink(const QString& Address, const QString& SubAddress, bool NewWindow, bool AddHistory, const QString& ExtraInfo, Office::MsoExtraInfoMethod Method); - - /* - Method FollowHyperlink - - For more information, see help context 583030 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void FollowHyperlink(const QString& Address, const QString& SubAddress, bool NewWindow, bool AddHistory, const QString& ExtraInfo, Office::MsoExtraInfoMethod Method, const QString& HeaderInfo); - - /* - Method MakeIntoTemplate - - For more information, see help context 583056 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void MakeIntoTemplate(Office::MsoTriState IsDesignTemplate); - - /* - Method Merge - - For more information, see help context 583064 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Merge(const QString& Path); - - /* - Method NewWindow - - For more information, see help context 583029 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::DocumentWindow* NewWindow(); - - /* - Method PrintOut - - For more information, see help context 583034 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PrintOut(); - - /* - Method PrintOut - - For more information, see help context 583034 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PrintOut(int From); - - /* - Method PrintOut - - For more information, see help context 583034 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PrintOut(int From, int To); - - /* - Method PrintOut - - For more information, see help context 583034 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PrintOut(int From, int To, const QString& PrintToFile); - - /* - Method PrintOut - - For more information, see help context 583034 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PrintOut(int From, int To, const QString& PrintToFile, int Copies); - - /* - Method PrintOut - - For more information, see help context 583034 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void PrintOut(int From, int To, const QString& PrintToFile, int Copies, Office::MsoTriState Collate); - - /* - Method ReloadAs - - For more information, see help context 583055 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ReloadAs(Office::MsoEncoding cp); - - /* - Method RemoveBaseline - - For more information, see help context 583074 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void RemoveBaseline(); - - /* - Method ReplyWithChanges - - For more information, see help context 583070 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ReplyWithChanges(); - - /* - Method ReplyWithChanges - - For more information, see help context 583070 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ReplyWithChanges(bool ShowMessage); - - /* - Method Save - - For more information, see help context 583035 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Save(); - - /* - Method SaveAs - - For more information, see help context 583036 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SaveAs(const QString& FileName); - - /* - Method SaveAs - - For more information, see help context 583036 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SaveAs(const QString& FileName, PowerPoint::PpSaveAsFileType FileFormat); - - /* - Method SaveAs - - For more information, see help context 583036 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SaveAs(const QString& FileName, PowerPoint::PpSaveAsFileType FileFormat, Office::MsoTriState EmbedTrueTypeFonts); - - /* - Method SaveCopyAs - - For more information, see help context 583037 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SaveCopyAs(const QString& FileName); - - /* - Method SaveCopyAs - - For more information, see help context 583037 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SaveCopyAs(const QString& FileName, PowerPoint::PpSaveAsFileType FileFormat); - - /* - Method SaveCopyAs - - For more information, see help context 583037 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SaveCopyAs(const QString& FileName, PowerPoint::PpSaveAsFileType FileFormat, Office::MsoTriState EmbedTrueTypeFonts); - - /* - Method SendFaxOverInternet - - For more information, see help context 583085 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SendFaxOverInternet(); - - /* - Method SendFaxOverInternet - - For more information, see help context 583085 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SendFaxOverInternet(const QString& Recipients); - - /* - Method SendFaxOverInternet - - For more information, see help context 583085 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SendFaxOverInternet(const QString& Recipients, const QString& Subject); - - /* - Method SendFaxOverInternet - - For more information, see help context 583085 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SendFaxOverInternet(const QString& Recipients, const QString& Subject, bool ShowMessage); - - /* - Method SendForReview - - For more information, see help context 583069 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SendForReview(); - - /* - Method SendForReview - - For more information, see help context 583069 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SendForReview(const QString& Recipients); - - /* - Method SendForReview - - For more information, see help context 583069 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SendForReview(const QString& Recipients, const QString& Subject); - - /* - Method SendForReview - - For more information, see help context 583069 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SendForReview(const QString& Recipients, const QString& Subject, bool ShowMessage); - - /* - Method SendForReview - - For more information, see help context 583069 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SendForReview(const QString& Recipients, const QString& Subject, bool ShowMessage, const QVariant& IncludeAttachment); - - /* - Method SetPasswordEncryptionOptions - - For more information, see help context 583079 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SetPasswordEncryptionOptions(const QString& PasswordEncryptionProvider, const QString& PasswordEncryptionAlgorithm, int PasswordEncryptionKeyLength, bool PasswordEncryptionFileProperties); - - /* - Method SetUndoText - - For more information, see help context 583040 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void SetUndoText(const QString& Text); - - /* - Method Unused - - For more information, see help context 583032 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Unused(); - - /* - Method UpdateLinks - - For more information, see help context 583046 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void UpdateLinks(); - - /* - Method WebPagePreview - - For more information, see help context 583049 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void WebPagePreview(); - - /* - Method sblt - - For more information, see help context 583058 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void sblt(const QString& s); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Slide : public QAxObject -{ -public: - Slide(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - Slide(_Slide *iface) - : QAxObject() - { - initializeFrom(iface); - delete iface; - } - - /* - Property Application - - For more information, see help context 531001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Background - - For more information, see help context 531007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeRange* Background() const; //Returns the value of Background - - /* - Property ColorScheme - - For more information, see help context 531006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorScheme* ColorScheme() const; //Returns the value of ColorScheme - inline void SetColorScheme(PowerPoint::ColorScheme* value); //Sets the value of the ColorScheme property - - /* - Property Comments - - For more information, see help context 531028 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Comments* Comments() const; //Returns the value of Comments - - /* - Property Design - - For more information, see help context 531029 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Design* Design() const; //Returns the value of Design - inline void SetDesign(PowerPoint::Design* value); //Sets the value of the Design property - - /* - Property DisplayMasterShapes - - For more information, see help context 531020 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState DisplayMasterShapes() const; //Returns the value of DisplayMasterShapes - inline void SetDisplayMasterShapes(Office::MsoTriState value); //Sets the value of the DisplayMasterShapes property - - /* - Property FollowMasterBackground - - For more information, see help context 531021 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::MsoTriState FollowMasterBackground() const; //Returns the value of FollowMasterBackground - inline void SetFollowMasterBackground(Office::MsoTriState value); //Sets the value of the FollowMasterBackground property - - /* - Property HeadersFooters - - For more information, see help context 531004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::HeadersFooters* HeadersFooters() const; //Returns the value of HeadersFooters - - /* - Property Hyperlinks - - For more information, see help context 531024 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Hyperlinks* Hyperlinks() const; //Returns the value of Hyperlinks - - /* - Property Layout - - For more information, see help context 531014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::PpSlideLayout Layout() const; //Returns the value of Layout - inline void SetLayout(PowerPoint::PpSlideLayout value); //Sets the value of the Layout property - - /* - Property Master - - For more information, see help context 531023 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::_Master* Master() const; //Returns the value of Master - - /* - Property Name - - For more information, see help context 531008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Name() const; //Returns the value of Name - inline void SetName(const QString& value); //Sets the value of the Name property - - /* - Property NotesPage - - For more information, see help context 531022 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideRange* NotesPage() const; //Returns the value of NotesPage - - /* - Property Parent - - For more information, see help context 531002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property PrintSteps - - For more information, see help context 531010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int PrintSteps() const; //Returns the value of PrintSteps - - /* - Property Scripts - - For more information, see help context 531026 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::Scripts* Scripts() const; //Returns the value of Scripts - - /* - Property Shapes - - For more information, see help context 531003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shapes* Shapes() const; //Returns the value of Shapes - - /* - Property SlideID - - For more information, see help context 531009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int SlideID() const; //Returns the value of SlideID - - /* - Property SlideIndex - - For more information, see help context 531018 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int SlideIndex() const; //Returns the value of SlideIndex - - /* - Property SlideNumber - - For more information, see help context 531019 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int SlideNumber() const; //Returns the value of SlideNumber - - /* - Property SlideShowTransition - - For more information, see help context 531005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideShowTransition* SlideShowTransition() const; //Returns the value of SlideShowTransition - - /* - Property Tags - - For more information, see help context 531017 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Tags* Tags() const; //Returns the value of Tags - - /* - Property TimeLine - - For more information, see help context 531031 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TimeLine* TimeLine() const; //Returns the value of TimeLine - - /* - Method ApplyTemplate - - For more information, see help context 531032 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void ApplyTemplate(const QString& FileName); - - /* - Method Copy - - For more information, see help context 531013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Copy(); - - /* - Method Cut - - For more information, see help context 531012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Cut(); - - /* - Method Delete - - For more information, see help context 531016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Delete(); - - /* - Method Duplicate - - For more information, see help context 531015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideRange* Duplicate(); - - /* - Method Export - - For more information, see help context 531025 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Export(const QString& FileName, const QString& FilterName); - - /* - Method Export - - For more information, see help context 531025 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Export(const QString& FileName, const QString& FilterName, int ScaleWidth); - - /* - Method Export - - For more information, see help context 531025 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Export(const QString& FileName, const QString& FilterName, int ScaleWidth, int ScaleHeight); - - /* - Method MoveTo - - For more information, see help context 531030 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void MoveTo(int toPos); - - /* - Method Select - - For more information, see help context 531011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Select(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT OLEControl : public QAxObject -{ -public: - OLEControl(QObject *parent = 0) - : QAxObject(parent) - { - setControl("{91493446-5a91-11cf-8700-00aa0060263b}"); - } - - /* - Property AltHTML - - For more information, see help context 618002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString AltHTML() const; //Returns the value of AltHTML - inline void SetAltHTML(const QString& value); //Sets the value of the AltHTML property - - /* - Property Height - - For more information, see help context 618002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Height() const; //Returns the value of Height - inline void SetHeight(double value); //Sets the value of the Height property - - /* - Property Left - - For more information, see help context 618002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Left() const; //Returns the value of Left - inline void SetLeft(double value); //Sets the value of the Left property - - /* - Property Name - - For more information, see help context 618003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Name() const; //Returns the value of Name - inline void SetName(const QString& value); //Sets the value of the Name property - - /* - Property Top - - For more information, see help context 618002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Top() const; //Returns the value of Top - inline void SetTop(double value); //Sets the value of the Top property - - /* - Property Visible - - For more information, see help context 618001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline bool Visible() const; //Returns the value of Visible - inline void SetVisible(bool value); //Sets the value of the Visible property - - /* - Property Width - - For more information, see help context 618002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Width() const; //Returns the value of Width - inline void SetWidth(double value); //Sets the value of the Width property - - /* - Property ZOrderPosition - - For more information, see help context 618002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline int ZOrderPosition() const; //Returns the value of ZOrderPosition - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT Master : public QAxObject -{ -public: - Master(IDispatch *subobject = 0, QAxObject *parent = 0) - : QAxObject((IUnknown*)subobject, parent) - { - internalRelease(); - } - - Master(_Master *iface) - : QAxObject() - { - initializeFrom(iface); - delete iface; - } - - /* - Property Application - - For more information, see help context 533001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Application* Application() const; //Returns the value of Application - - /* - Property Background - - For more information, see help context 533006 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ShapeRange* Background() const; //Returns the value of Background - - /* - Property ColorScheme - - For more information, see help context 533005 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::ColorScheme* ColorScheme() const; //Returns the value of ColorScheme - inline void SetColorScheme(PowerPoint::ColorScheme* value); //Sets the value of the ColorScheme property - - /* - Property Design - - For more information, see help context 533014 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Design* Design() const; //Returns the value of Design - - /* - Property HeadersFooters - - For more information, see help context 533004 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::HeadersFooters* HeadersFooters() const; //Returns the value of HeadersFooters - - /* - Property Height - - For more information, see help context 533009 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Height() const; //Returns the value of Height - - /* - Property Hyperlinks - - For more information, see help context 533012 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Hyperlinks* Hyperlinks() const; //Returns the value of Hyperlinks - - /* - Property Name - - For more information, see help context 533007 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline QString Name() const; //Returns the value of Name - inline void SetName(const QString& value); //Sets the value of the Name property - - /* - Property Parent - - For more information, see help context 533002 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline IDispatch* Parent() const; //Returns the value of Parent - - /* - Property Scripts - - For more information, see help context 533013 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline Office::Scripts* Scripts() const; //Returns the value of Scripts - - /* - Property Shapes - - For more information, see help context 533003 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::Shapes* Shapes() const; //Returns the value of Shapes - - /* - Property SlideShowTransition - - For more information, see help context 533016 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::SlideShowTransition* SlideShowTransition() const; //Returns the value of SlideShowTransition - - /* - Property TextStyles - - For more information, see help context 533011 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TextStyles* TextStyles() const; //Returns the value of TextStyles - - /* - Property TimeLine - - For more information, see help context 533015 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline PowerPoint::TimeLine* TimeLine() const; //Returns the value of TimeLine - - /* - Property Width - - For more information, see help context 533010 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline double Width() const; //Returns the value of Width - - /* - Method Delete - - For more information, see help context 533008 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void Delete(); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -class POWERPOINT_EXPORT PowerRex : public QAxObject -{ -public: - PowerRex(QObject *parent = 0) - : QAxObject(parent) - { - setControl("{91493448-5a91-11cf-8700-00aa0060263b}"); - } - - /* - Method OnAsfEncoderEvent - - For more information, see help context 639001 in c:\Program Files\Microsoft Office\OFFICE11\VBAPP10.CHM. - */ - inline void OnAsfEncoderEvent(const QVariant& erorCode, const QVariant& bstrErrorDesc); - -// meta object functions - static const QMetaObject staticMetaObject; - virtual const QMetaObject *metaObject() const { return &staticMetaObject; } - virtual void *qt_metacast(const char *); -}; - -// member function implementation -#ifndef QAX_DUMPCPP_POWERPOINT_NOINLINES -inline int Collection::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IUnknown* Collection::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline QVariant Collection::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - - -inline Office::MsoTriState _Application::Active() const -{ - QVariant qax_result = property("Active"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline PowerPoint::Presentation* _Application::ActivePresentation() const -{ - PowerPoint::Presentation* qax_pointer = 0; - qRegisterMetaType("Presentation*", &qax_pointer); - qRegisterMetaType("Presentation", qax_pointer); - QVariant qax_result = property("ActivePresentation"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Presentation**)qax_result.constData(); -} - -inline QString _Application::ActivePrinter() const -{ - QVariant qax_result = property("ActivePrinter"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline PowerPoint::DocumentWindow* _Application::ActiveWindow() const -{ - PowerPoint::DocumentWindow* qax_pointer = 0; - qRegisterMetaType("DocumentWindow*", &qax_pointer); - qRegisterMetaType("DocumentWindow", qax_pointer); - QVariant qax_result = property("ActiveWindow"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::DocumentWindow**)qax_result.constData(); -} - -inline PowerPoint::AddIns* _Application::AddIns() const -{ - PowerPoint::AddIns* qax_pointer = 0; - qRegisterMetaType("AddIns*", &qax_pointer); - qRegisterMetaType("AddIns", qax_pointer); - QVariant qax_result = property("AddIns"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::AddIns**)qax_result.constData(); -} - -inline Office::AnswerWizard* _Application::AnswerWizard() const -{ - Office::AnswerWizard* qax_pointer = 0; - qRegisterMetaType("Office::AnswerWizard*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::AnswerWizard", qax_pointer); -#endif - QVariant qax_result = property("AnswerWizard"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::AnswerWizard**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline Office::Assistant* _Application::Assistant() const -{ - Office::Assistant* qax_pointer = 0; - qRegisterMetaType("Office::Assistant*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::Assistant", qax_pointer); -#endif - QVariant qax_result = property("Assistant"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::Assistant**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline PowerPoint::AutoCorrect* _Application::AutoCorrect() const -{ - PowerPoint::AutoCorrect* qax_pointer = 0; - qRegisterMetaType("AutoCorrect*", &qax_pointer); - qRegisterMetaType("AutoCorrect", qax_pointer); - QVariant qax_result = property("AutoCorrect"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::AutoCorrect**)qax_result.constData(); -} - -inline Office::MsoAutomationSecurity _Application::AutomationSecurity() const -{ - QVariant qax_result = property("AutomationSecurity"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoAutomationSecurity*)qax_result.constData(); -} -inline void _Application::SetAutomationSecurity(Office::MsoAutomationSecurity value){ setProperty("AutomationSecurity", QVariant(value)); } - -inline QString _Application::Build() const -{ - QVariant qax_result = property("Build"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline Office::COMAddIns* _Application::COMAddIns() const -{ - Office::COMAddIns* qax_pointer = 0; - qRegisterMetaType("Office::COMAddIns*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::COMAddIns", qax_pointer); -#endif - QVariant qax_result = property("COMAddIns"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::COMAddIns**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline QString _Application::Caption() const -{ - QVariant qax_result = property("Caption"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _Application::SetCaption(const QString& value){ setProperty("Caption", QVariant(value)); } - -inline Office::CommandBars* _Application::CommandBars() const -{ - Office::CommandBars* qax_pointer = 0; - qRegisterMetaType("Office::CommandBars*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::CommandBars", qax_pointer); -#endif - QVariant qax_result = property("CommandBars"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::CommandBars**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline int _Application::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline PowerPoint::DefaultWebOptions* _Application::DefaultWebOptions() const -{ - PowerPoint::DefaultWebOptions* qax_pointer = 0; - qRegisterMetaType("DefaultWebOptions*", &qax_pointer); - qRegisterMetaType("DefaultWebOptions", qax_pointer); - QVariant qax_result = property("DefaultWebOptions"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::DefaultWebOptions**)qax_result.constData(); -} - -inline IUnknown* _Application::Dialogs() const -{ - QVariant qax_result = property("Dialogs"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::PpAlertLevel _Application::DisplayAlerts() const -{ - QVariant qax_result = property("DisplayAlerts"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpAlertLevel*)qax_result.constData(); -} -inline void _Application::SetDisplayAlerts(PowerPoint::PpAlertLevel value){ setProperty("DisplayAlerts", QVariant(value)); } - -inline Office::MsoTriState _Application::DisplayGridLines() const -{ - QVariant qax_result = property("DisplayGridLines"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void _Application::SetDisplayGridLines(Office::MsoTriState value){ setProperty("DisplayGridLines", QVariant(value)); } - -inline Office::MsoFeatureInstall _Application::FeatureInstall() const -{ - QVariant qax_result = property("FeatureInstall"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoFeatureInstall*)qax_result.constData(); -} -inline void _Application::SetFeatureInstall(Office::MsoFeatureInstall value){ setProperty("FeatureInstall", QVariant(value)); } - -inline Office::IFind* _Application::FileFind() const -{ - Office::IFind* qax_pointer = 0; - qRegisterMetaType("Office::IFind*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::IFind", qax_pointer); -#endif - QVariant qax_result = property("FileFind"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::IFind**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline Office::FileSearch* _Application::FileSearch() const -{ - Office::FileSearch* qax_pointer = 0; - qRegisterMetaType("Office::FileSearch*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::FileSearch", qax_pointer); -#endif - QVariant qax_result = property("FileSearch"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::FileSearch**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline int _Application::HWND() const -{ - QVariant qax_result = property("HWND"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline double _Application::Height() const -{ - QVariant qax_result = property("Height"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void _Application::SetHeight(double value){ setProperty("Height", QVariant(value)); } - -inline Office::LanguageSettings* _Application::LanguageSettings() const -{ - Office::LanguageSettings* qax_pointer = 0; - qRegisterMetaType("Office::LanguageSettings*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::LanguageSettings", qax_pointer); -#endif - QVariant qax_result = property("LanguageSettings"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::LanguageSettings**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline double _Application::Left() const -{ - QVariant qax_result = property("Left"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void _Application::SetLeft(double value){ setProperty("Left", QVariant(value)); } - -inline IUnknown* _Application::Marker() const -{ - QVariant qax_result = property("Marker"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::MsoDebugOptions* _Application::MsoDebugOptions() const -{ - Office::MsoDebugOptions* qax_pointer = 0; - qRegisterMetaType("Office::MsoDebugOptions*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::MsoDebugOptions", qax_pointer); -#endif - QVariant qax_result = property("MsoDebugOptions"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::MsoDebugOptions**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline QString _Application::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline Office::NewFile* _Application::NewPresentation() const -{ - Office::NewFile* qax_pointer = 0; - qRegisterMetaType("Office::NewFile*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::NewFile", qax_pointer); -#endif - QVariant qax_result = property("NewPresentation"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::NewFile**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline QString _Application::OperatingSystem() const -{ - QVariant qax_result = property("OperatingSystem"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline PowerPoint::Options* _Application::Options() const -{ - PowerPoint::Options* qax_pointer = 0; - qRegisterMetaType("Options*", &qax_pointer); - qRegisterMetaType("Options", qax_pointer); - QVariant qax_result = property("Options"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Options**)qax_result.constData(); -} - -inline QString _Application::Path() const -{ - QVariant qax_result = property("Path"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline PowerPoint::Presentations* _Application::Presentations() const -{ - PowerPoint::Presentations* qax_pointer = 0; - qRegisterMetaType("Presentations*", &qax_pointer); - qRegisterMetaType("Presentations", qax_pointer); - QVariant qax_result = property("Presentations"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Presentations**)qax_result.constData(); -} - -inline QString _Application::ProductCode() const -{ - QVariant qax_result = property("ProductCode"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline Office::MsoTriState _Application::ShowStartupDialog() const -{ - QVariant qax_result = property("ShowStartupDialog"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void _Application::SetShowStartupDialog(Office::MsoTriState value){ setProperty("ShowStartupDialog", QVariant(value)); } - -inline Office::MsoTriState _Application::ShowWindowsInTaskbar() const -{ - QVariant qax_result = property("ShowWindowsInTaskbar"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void _Application::SetShowWindowsInTaskbar(Office::MsoTriState value){ setProperty("ShowWindowsInTaskbar", QVariant(value)); } - -inline PowerPoint::SlideShowWindows* _Application::SlideShowWindows() const -{ - PowerPoint::SlideShowWindows* qax_pointer = 0; - qRegisterMetaType("SlideShowWindows*", &qax_pointer); - qRegisterMetaType("SlideShowWindows", qax_pointer); - QVariant qax_result = property("SlideShowWindows"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SlideShowWindows**)qax_result.constData(); -} - -inline double _Application::Top() const -{ - QVariant qax_result = property("Top"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void _Application::SetTop(double value){ setProperty("Top", QVariant(value)); } - -inline VBIDE::VBE* _Application::VBE() const -{ - VBIDE::VBE* qax_pointer = 0; - qRegisterMetaType("VBIDE::VBE*", &qax_pointer); -#ifdef QAX_DUMPCPP_VBIDE_H - qRegisterMetaType("VBIDE::VBE", qax_pointer); -#endif - QVariant qax_result = property("VBE"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_VBIDE_H - return *(VBIDE::VBE**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline QString _Application::Version() const -{ - QVariant qax_result = property("Version"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline Office::MsoTriState _Application::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void _Application::SetVisible(Office::MsoTriState value){ setProperty("Visible", QVariant(value)); } - -inline double _Application::Width() const -{ - QVariant qax_result = property("Width"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void _Application::SetWidth(double value){ setProperty("Width", QVariant(value)); } - -inline PowerPoint::PpWindowState _Application::WindowState() const -{ - QVariant qax_result = property("WindowState"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpWindowState*)qax_result.constData(); -} -inline void _Application::SetWindowState(PowerPoint::PpWindowState value){ setProperty("WindowState", QVariant(value)); } - -inline PowerPoint::DocumentWindows* _Application::Windows() const -{ - PowerPoint::DocumentWindows* qax_pointer = 0; - qRegisterMetaType("DocumentWindows*", &qax_pointer); - qRegisterMetaType("DocumentWindows", qax_pointer); - QVariant qax_result = property("Windows"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::DocumentWindows**)qax_result.constData(); -} - -inline void _Application::Activate() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline Office::FileDialog* _Application::FileDialog(Office::MsoFileDialogType Type) -{ - Office::FileDialog* qax_result = 0; - qRegisterMetaType("Office::FileDialog*", &qax_result); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::FileDialog", qax_result); -#endif - void *_a[] = {(void*)&qax_result, (void*)&Type}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline bool _Application::GetOptionFlag(int Option) -{ - bool qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Option}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline bool _Application::GetOptionFlag(int Option, bool Persist) -{ - bool qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Option, (void*)&Persist}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - -inline void _Application::Help() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline void _Application::Help(const QString& HelpFile) -{ - void *_a[] = {0, (void*)&HelpFile}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void _Application::Help(const QString& HelpFile, int ContextID) -{ - void *_a[] = {0, (void*)&HelpFile, (void*)&ContextID}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline void _Application::LaunchSpelling(PowerPoint::DocumentWindow* pWindow) -{ - void *_a[] = {0, (void*)&pWindow}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); -} - -inline IUnknown* _Application::PPFileDialog(PowerPoint::PpFileDialogType Type) -{ - IUnknown* qax_result = 0; - void *_a[] = {(void*)&qax_result, (void*)&Type}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); - return qax_result; -} - -inline void _Application::Quit() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); -} - -inline QVariant _Application::Run(const QString& MacroName, QVariantList& safeArrayOfParams) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&MacroName, (void*)&safeArrayOfParams}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); - return qax_result; -} - -inline void _Application::SetOptionFlag(int Option, bool State) -{ - void *_a[] = {0, (void*)&Option, (void*)&State}; - qt_metacall(QMetaObject::InvokeMetaMethod, 25, _a); -} - -inline void _Application::SetOptionFlag(int Option, bool State, bool Persist) -{ - void *_a[] = {0, (void*)&Option, (void*)&State, (void*)&Persist}; - qt_metacall(QMetaObject::InvokeMetaMethod, 26, _a); -} - -inline void _Application::SetPerfMarker(int Marker) -{ - void *_a[] = {0, (void*)&Marker}; - qt_metacall(QMetaObject::InvokeMetaMethod, 27, _a); -} - - -inline PowerPoint::Presentation* _Global::ActivePresentation() const -{ - PowerPoint::Presentation* qax_pointer = 0; - qRegisterMetaType("Presentation*", &qax_pointer); - qRegisterMetaType("Presentation", qax_pointer); - QVariant qax_result = property("ActivePresentation"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Presentation**)qax_result.constData(); -} - -inline PowerPoint::DocumentWindow* _Global::ActiveWindow() const -{ - PowerPoint::DocumentWindow* qax_pointer = 0; - qRegisterMetaType("DocumentWindow*", &qax_pointer); - qRegisterMetaType("DocumentWindow", qax_pointer); - QVariant qax_result = property("ActiveWindow"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::DocumentWindow**)qax_result.constData(); -} - -inline PowerPoint::AddIns* _Global::AddIns() const -{ - PowerPoint::AddIns* qax_pointer = 0; - qRegisterMetaType("AddIns*", &qax_pointer); - qRegisterMetaType("AddIns", qax_pointer); - QVariant qax_result = property("AddIns"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::AddIns**)qax_result.constData(); -} - -inline Office::AnswerWizard* _Global::AnswerWizard() const -{ - Office::AnswerWizard* qax_pointer = 0; - qRegisterMetaType("Office::AnswerWizard*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::AnswerWizard", qax_pointer); -#endif - QVariant qax_result = property("AnswerWizard"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::AnswerWizard**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline PowerPoint::Application* _Global::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline Office::Assistant* _Global::Assistant() const -{ - Office::Assistant* qax_pointer = 0; - qRegisterMetaType("Office::Assistant*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::Assistant", qax_pointer); -#endif - QVariant qax_result = property("Assistant"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::Assistant**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline Office::CommandBars* _Global::CommandBars() const -{ - Office::CommandBars* qax_pointer = 0; - qRegisterMetaType("Office::CommandBars*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::CommandBars", qax_pointer); -#endif - QVariant qax_result = property("CommandBars"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::CommandBars**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline IUnknown* _Global::Dialogs() const -{ - QVariant qax_result = property("Dialogs"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::Presentations* _Global::Presentations() const -{ - PowerPoint::Presentations* qax_pointer = 0; - qRegisterMetaType("Presentations*", &qax_pointer); - qRegisterMetaType("Presentations", qax_pointer); - QVariant qax_result = property("Presentations"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Presentations**)qax_result.constData(); -} - -inline PowerPoint::SlideShowWindows* _Global::SlideShowWindows() const -{ - PowerPoint::SlideShowWindows* qax_pointer = 0; - qRegisterMetaType("SlideShowWindows*", &qax_pointer); - qRegisterMetaType("SlideShowWindows", qax_pointer); - QVariant qax_result = property("SlideShowWindows"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SlideShowWindows**)qax_result.constData(); -} - -inline PowerPoint::DocumentWindows* _Global::Windows() const -{ - PowerPoint::DocumentWindows* qax_pointer = 0; - qRegisterMetaType("DocumentWindows*", &qax_pointer); - qRegisterMetaType("DocumentWindows", qax_pointer); - QVariant qax_result = property("Windows"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::DocumentWindows**)qax_result.constData(); -} - - -inline Office::MsoTriState Application::Active() const -{ - QVariant qax_result = property("Active"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline PowerPoint::Presentation* Application::ActivePresentation() const -{ - PowerPoint::Presentation* qax_pointer = 0; - qRegisterMetaType("Presentation*", &qax_pointer); - qRegisterMetaType("Presentation", qax_pointer); - QVariant qax_result = property("ActivePresentation"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Presentation**)qax_result.constData(); -} - -inline QString Application::ActivePrinter() const -{ - QVariant qax_result = property("ActivePrinter"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline PowerPoint::DocumentWindow* Application::ActiveWindow() const -{ - PowerPoint::DocumentWindow* qax_pointer = 0; - qRegisterMetaType("DocumentWindow*", &qax_pointer); - qRegisterMetaType("DocumentWindow", qax_pointer); - QVariant qax_result = property("ActiveWindow"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::DocumentWindow**)qax_result.constData(); -} - -inline PowerPoint::AddIns* Application::AddIns() const -{ - PowerPoint::AddIns* qax_pointer = 0; - qRegisterMetaType("AddIns*", &qax_pointer); - qRegisterMetaType("AddIns", qax_pointer); - QVariant qax_result = property("AddIns"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::AddIns**)qax_result.constData(); -} - -inline Office::AnswerWizard* Application::AnswerWizard() const -{ - Office::AnswerWizard* qax_pointer = 0; - qRegisterMetaType("Office::AnswerWizard*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::AnswerWizard", qax_pointer); -#endif - QVariant qax_result = property("AnswerWizard"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::AnswerWizard**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline Office::Assistant* Application::Assistant() const -{ - Office::Assistant* qax_pointer = 0; - qRegisterMetaType("Office::Assistant*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::Assistant", qax_pointer); -#endif - QVariant qax_result = property("Assistant"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::Assistant**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline PowerPoint::AutoCorrect* Application::AutoCorrect() const -{ - PowerPoint::AutoCorrect* qax_pointer = 0; - qRegisterMetaType("AutoCorrect*", &qax_pointer); - qRegisterMetaType("AutoCorrect", qax_pointer); - QVariant qax_result = property("AutoCorrect"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::AutoCorrect**)qax_result.constData(); -} - -inline Office::MsoAutomationSecurity Application::AutomationSecurity() const -{ - QVariant qax_result = property("AutomationSecurity"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoAutomationSecurity*)qax_result.constData(); -} -inline void Application::SetAutomationSecurity(Office::MsoAutomationSecurity value){ setProperty("AutomationSecurity", QVariant(value)); } - -inline QString Application::Build() const -{ - QVariant qax_result = property("Build"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline Office::COMAddIns* Application::COMAddIns() const -{ - Office::COMAddIns* qax_pointer = 0; - qRegisterMetaType("Office::COMAddIns*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::COMAddIns", qax_pointer); -#endif - QVariant qax_result = property("COMAddIns"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::COMAddIns**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline QString Application::Caption() const -{ - QVariant qax_result = property("Caption"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Application::SetCaption(const QString& value){ setProperty("Caption", QVariant(value)); } - -inline Office::CommandBars* Application::CommandBars() const -{ - Office::CommandBars* qax_pointer = 0; - qRegisterMetaType("Office::CommandBars*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::CommandBars", qax_pointer); -#endif - QVariant qax_result = property("CommandBars"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::CommandBars**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline int Application::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline PowerPoint::DefaultWebOptions* Application::DefaultWebOptions() const -{ - PowerPoint::DefaultWebOptions* qax_pointer = 0; - qRegisterMetaType("DefaultWebOptions*", &qax_pointer); - qRegisterMetaType("DefaultWebOptions", qax_pointer); - QVariant qax_result = property("DefaultWebOptions"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::DefaultWebOptions**)qax_result.constData(); -} - -inline IUnknown* Application::Dialogs() const -{ - QVariant qax_result = property("Dialogs"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::PpAlertLevel Application::DisplayAlerts() const -{ - QVariant qax_result = property("DisplayAlerts"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpAlertLevel*)qax_result.constData(); -} -inline void Application::SetDisplayAlerts(PowerPoint::PpAlertLevel value){ setProperty("DisplayAlerts", QVariant(value)); } - -inline Office::MsoTriState Application::DisplayGridLines() const -{ - QVariant qax_result = property("DisplayGridLines"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Application::SetDisplayGridLines(Office::MsoTriState value){ setProperty("DisplayGridLines", QVariant(value)); } - -inline Office::MsoFeatureInstall Application::FeatureInstall() const -{ - QVariant qax_result = property("FeatureInstall"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoFeatureInstall*)qax_result.constData(); -} -inline void Application::SetFeatureInstall(Office::MsoFeatureInstall value){ setProperty("FeatureInstall", QVariant(value)); } - -inline Office::IFind* Application::FileFind() const -{ - Office::IFind* qax_pointer = 0; - qRegisterMetaType("Office::IFind*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::IFind", qax_pointer); -#endif - QVariant qax_result = property("FileFind"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::IFind**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline Office::FileSearch* Application::FileSearch() const -{ - Office::FileSearch* qax_pointer = 0; - qRegisterMetaType("Office::FileSearch*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::FileSearch", qax_pointer); -#endif - QVariant qax_result = property("FileSearch"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::FileSearch**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline int Application::HWND() const -{ - QVariant qax_result = property("HWND"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline double Application::Height() const -{ - QVariant qax_result = property("Height"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Application::SetHeight(double value){ setProperty("Height", QVariant(value)); } - -inline Office::LanguageSettings* Application::LanguageSettings() const -{ - Office::LanguageSettings* qax_pointer = 0; - qRegisterMetaType("Office::LanguageSettings*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::LanguageSettings", qax_pointer); -#endif - QVariant qax_result = property("LanguageSettings"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::LanguageSettings**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline double Application::Left() const -{ - QVariant qax_result = property("Left"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Application::SetLeft(double value){ setProperty("Left", QVariant(value)); } - -inline IUnknown* Application::Marker() const -{ - QVariant qax_result = property("Marker"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline Office::MsoDebugOptions* Application::MsoDebugOptions() const -{ - Office::MsoDebugOptions* qax_pointer = 0; - qRegisterMetaType("Office::MsoDebugOptions*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::MsoDebugOptions", qax_pointer); -#endif - QVariant qax_result = property("MsoDebugOptions"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::MsoDebugOptions**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline QString Application::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline Office::NewFile* Application::NewPresentation() const -{ - Office::NewFile* qax_pointer = 0; - qRegisterMetaType("Office::NewFile*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::NewFile", qax_pointer); -#endif - QVariant qax_result = property("NewPresentation"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::NewFile**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline QString Application::OperatingSystem() const -{ - QVariant qax_result = property("OperatingSystem"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline PowerPoint::Options* Application::Options() const -{ - PowerPoint::Options* qax_pointer = 0; - qRegisterMetaType("Options*", &qax_pointer); - qRegisterMetaType("Options", qax_pointer); - QVariant qax_result = property("Options"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Options**)qax_result.constData(); -} - -inline QString Application::Path() const -{ - QVariant qax_result = property("Path"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline PowerPoint::Presentations* Application::Presentations() const -{ - PowerPoint::Presentations* qax_pointer = 0; - qRegisterMetaType("Presentations*", &qax_pointer); - qRegisterMetaType("Presentations", qax_pointer); - QVariant qax_result = property("Presentations"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Presentations**)qax_result.constData(); -} - -inline QString Application::ProductCode() const -{ - QVariant qax_result = property("ProductCode"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline Office::MsoTriState Application::ShowStartupDialog() const -{ - QVariant qax_result = property("ShowStartupDialog"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Application::SetShowStartupDialog(Office::MsoTriState value){ setProperty("ShowStartupDialog", QVariant(value)); } - -inline Office::MsoTriState Application::ShowWindowsInTaskbar() const -{ - QVariant qax_result = property("ShowWindowsInTaskbar"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Application::SetShowWindowsInTaskbar(Office::MsoTriState value){ setProperty("ShowWindowsInTaskbar", QVariant(value)); } - -inline PowerPoint::SlideShowWindows* Application::SlideShowWindows() const -{ - PowerPoint::SlideShowWindows* qax_pointer = 0; - qRegisterMetaType("SlideShowWindows*", &qax_pointer); - qRegisterMetaType("SlideShowWindows", qax_pointer); - QVariant qax_result = property("SlideShowWindows"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SlideShowWindows**)qax_result.constData(); -} - -inline double Application::Top() const -{ - QVariant qax_result = property("Top"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Application::SetTop(double value){ setProperty("Top", QVariant(value)); } - -inline VBIDE::VBE* Application::VBE() const -{ - VBIDE::VBE* qax_pointer = 0; - qRegisterMetaType("VBIDE::VBE*", &qax_pointer); -#ifdef QAX_DUMPCPP_VBIDE_H - qRegisterMetaType("VBIDE::VBE", qax_pointer); -#endif - QVariant qax_result = property("VBE"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_VBIDE_H - return *(VBIDE::VBE**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline QString Application::Version() const -{ - QVariant qax_result = property("Version"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline Office::MsoTriState Application::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Application::SetVisible(Office::MsoTriState value){ setProperty("Visible", QVariant(value)); } - -inline double Application::Width() const -{ - QVariant qax_result = property("Width"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Application::SetWidth(double value){ setProperty("Width", QVariant(value)); } - -inline PowerPoint::PpWindowState Application::WindowState() const -{ - QVariant qax_result = property("WindowState"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpWindowState*)qax_result.constData(); -} -inline void Application::SetWindowState(PowerPoint::PpWindowState value){ setProperty("WindowState", QVariant(value)); } - -inline PowerPoint::DocumentWindows* Application::Windows() const -{ - PowerPoint::DocumentWindows* qax_pointer = 0; - qRegisterMetaType("DocumentWindows*", &qax_pointer); - qRegisterMetaType("DocumentWindows", qax_pointer); - QVariant qax_result = property("Windows"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::DocumentWindows**)qax_result.constData(); -} - -inline void Application::Activate() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline Office::FileDialog* Application::FileDialog(Office::MsoFileDialogType Type) -{ - Office::FileDialog* qax_result = 0; - qRegisterMetaType("Office::FileDialog*", &qax_result); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::FileDialog", qax_result); -#endif - void *_a[] = {(void*)&qax_result, (void*)&Type}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline bool Application::GetOptionFlag(int Option) -{ - bool qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Option}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline bool Application::GetOptionFlag(int Option, bool Persist) -{ - bool qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Option, (void*)&Persist}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - -inline void Application::Help() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline void Application::Help(const QString& HelpFile) -{ - void *_a[] = {0, (void*)&HelpFile}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void Application::Help(const QString& HelpFile, int ContextID) -{ - void *_a[] = {0, (void*)&HelpFile, (void*)&ContextID}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline void Application::LaunchSpelling(PowerPoint::DocumentWindow* pWindow) -{ - void *_a[] = {0, (void*)&pWindow}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); -} - -inline IUnknown* Application::PPFileDialog(PowerPoint::PpFileDialogType Type) -{ - IUnknown* qax_result = 0; - void *_a[] = {(void*)&qax_result, (void*)&Type}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); - return qax_result; -} - -inline void Application::Quit() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); -} - -inline QVariant Application::Run(const QString& MacroName, QVariantList& safeArrayOfParams) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&MacroName, (void*)&safeArrayOfParams}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); - return qax_result; -} - -inline void Application::SetOptionFlag(int Option, bool State) -{ - void *_a[] = {0, (void*)&Option, (void*)&State}; - qt_metacall(QMetaObject::InvokeMetaMethod, 25, _a); -} - -inline void Application::SetOptionFlag(int Option, bool State, bool Persist) -{ - void *_a[] = {0, (void*)&Option, (void*)&State, (void*)&Persist}; - qt_metacall(QMetaObject::InvokeMetaMethod, 26, _a); -} - -inline void Application::SetPerfMarker(int Marker) -{ - void *_a[] = {0, (void*)&Marker}; - qt_metacall(QMetaObject::InvokeMetaMethod, 27, _a); -} - - -inline PowerPoint::Presentation* Global::ActivePresentation() const -{ - PowerPoint::Presentation* qax_pointer = 0; - qRegisterMetaType("Presentation*", &qax_pointer); - qRegisterMetaType("Presentation", qax_pointer); - QVariant qax_result = property("ActivePresentation"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Presentation**)qax_result.constData(); -} - -inline PowerPoint::DocumentWindow* Global::ActiveWindow() const -{ - PowerPoint::DocumentWindow* qax_pointer = 0; - qRegisterMetaType("DocumentWindow*", &qax_pointer); - qRegisterMetaType("DocumentWindow", qax_pointer); - QVariant qax_result = property("ActiveWindow"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::DocumentWindow**)qax_result.constData(); -} - -inline PowerPoint::AddIns* Global::AddIns() const -{ - PowerPoint::AddIns* qax_pointer = 0; - qRegisterMetaType("AddIns*", &qax_pointer); - qRegisterMetaType("AddIns", qax_pointer); - QVariant qax_result = property("AddIns"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::AddIns**)qax_result.constData(); -} - -inline Office::AnswerWizard* Global::AnswerWizard() const -{ - Office::AnswerWizard* qax_pointer = 0; - qRegisterMetaType("Office::AnswerWizard*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::AnswerWizard", qax_pointer); -#endif - QVariant qax_result = property("AnswerWizard"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::AnswerWizard**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline PowerPoint::Application* Global::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline Office::Assistant* Global::Assistant() const -{ - Office::Assistant* qax_pointer = 0; - qRegisterMetaType("Office::Assistant*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::Assistant", qax_pointer); -#endif - QVariant qax_result = property("Assistant"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::Assistant**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline Office::CommandBars* Global::CommandBars() const -{ - Office::CommandBars* qax_pointer = 0; - qRegisterMetaType("Office::CommandBars*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::CommandBars", qax_pointer); -#endif - QVariant qax_result = property("CommandBars"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::CommandBars**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline IUnknown* Global::Dialogs() const -{ - QVariant qax_result = property("Dialogs"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::Presentations* Global::Presentations() const -{ - PowerPoint::Presentations* qax_pointer = 0; - qRegisterMetaType("Presentations*", &qax_pointer); - qRegisterMetaType("Presentations", qax_pointer); - QVariant qax_result = property("Presentations"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Presentations**)qax_result.constData(); -} - -inline PowerPoint::SlideShowWindows* Global::SlideShowWindows() const -{ - PowerPoint::SlideShowWindows* qax_pointer = 0; - qRegisterMetaType("SlideShowWindows*", &qax_pointer); - qRegisterMetaType("SlideShowWindows", qax_pointer); - QVariant qax_result = property("SlideShowWindows"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SlideShowWindows**)qax_result.constData(); -} - -inline PowerPoint::DocumentWindows* Global::Windows() const -{ - PowerPoint::DocumentWindows* qax_pointer = 0; - qRegisterMetaType("DocumentWindows*", &qax_pointer); - qRegisterMetaType("DocumentWindows", qax_pointer); - QVariant qax_result = property("Windows"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::DocumentWindows**)qax_result.constData(); -} - - -inline IDispatch* ColorFormat::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int ColorFormat::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* ColorFormat::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int ColorFormat::RGB() const -{ - QVariant qax_result = property("RGB"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void ColorFormat::SetRGB(int value){ setProperty("RGB", QVariant(value)); } - -inline PowerPoint::PpColorSchemeIndex ColorFormat::SchemeColor() const -{ - QVariant qax_result = property("SchemeColor"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpColorSchemeIndex*)qax_result.constData(); -} -inline void ColorFormat::SetSchemeColor(PowerPoint::PpColorSchemeIndex value){ setProperty("SchemeColor", QVariant(value)); } - -inline double ColorFormat::TintAndShade() const -{ - QVariant qax_result = property("TintAndShade"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ColorFormat::SetTintAndShade(double value){ setProperty("TintAndShade", QVariant(value)); } - -inline Office::MsoColorType ColorFormat::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoColorType*)qax_result.constData(); -} - - -inline Office::MsoTriState SlideShowWindow::Active() const -{ - QVariant qax_result = property("Active"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline PowerPoint::Application* SlideShowWindow::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int SlideShowWindow::HWND() const -{ - QVariant qax_result = property("HWND"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline double SlideShowWindow::Height() const -{ - QVariant qax_result = property("Height"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void SlideShowWindow::SetHeight(double value){ setProperty("Height", QVariant(value)); } - -inline Office::MsoTriState SlideShowWindow::IsFullScreen() const -{ - QVariant qax_result = property("IsFullScreen"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline double SlideShowWindow::Left() const -{ - QVariant qax_result = property("Left"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void SlideShowWindow::SetLeft(double value){ setProperty("Left", QVariant(value)); } - -inline IDispatch* SlideShowWindow::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::Presentation* SlideShowWindow::Presentation() const -{ - PowerPoint::Presentation* qax_pointer = 0; - qRegisterMetaType("Presentation*", &qax_pointer); - qRegisterMetaType("Presentation", qax_pointer); - QVariant qax_result = property("Presentation"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Presentation**)qax_result.constData(); -} - -inline double SlideShowWindow::Top() const -{ - QVariant qax_result = property("Top"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void SlideShowWindow::SetTop(double value){ setProperty("Top", QVariant(value)); } - -inline PowerPoint::SlideShowView* SlideShowWindow::View() const -{ - PowerPoint::SlideShowView* qax_pointer = 0; - qRegisterMetaType("SlideShowView*", &qax_pointer); - qRegisterMetaType("SlideShowView", qax_pointer); - QVariant qax_result = property("View"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SlideShowView**)qax_result.constData(); -} - -inline double SlideShowWindow::Width() const -{ - QVariant qax_result = property("Width"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void SlideShowWindow::SetWidth(double value){ setProperty("Width", QVariant(value)); } - -inline void SlideShowWindow::Activate() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline PowerPoint::Application* Selection::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::ShapeRange* Selection::ChildShapeRange() const -{ - PowerPoint::ShapeRange* qax_pointer = 0; - qRegisterMetaType("ShapeRange*", &qax_pointer); - qRegisterMetaType("ShapeRange", qax_pointer); - QVariant qax_result = property("ChildShapeRange"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ShapeRange**)qax_result.constData(); -} - -inline bool Selection::HasChildShapeRange() const -{ - QVariant qax_result = property("HasChildShapeRange"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline IDispatch* Selection::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::ShapeRange* Selection::ShapeRange() const -{ - PowerPoint::ShapeRange* qax_pointer = 0; - qRegisterMetaType("ShapeRange*", &qax_pointer); - qRegisterMetaType("ShapeRange", qax_pointer); - QVariant qax_result = property("ShapeRange"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ShapeRange**)qax_result.constData(); -} - -inline PowerPoint::SlideRange* Selection::SlideRange() const -{ - PowerPoint::SlideRange* qax_pointer = 0; - qRegisterMetaType("SlideRange*", &qax_pointer); - qRegisterMetaType("SlideRange", qax_pointer); - QVariant qax_result = property("SlideRange"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SlideRange**)qax_result.constData(); -} - -inline PowerPoint::TextRange* Selection::TextRange() const -{ - PowerPoint::TextRange* qax_pointer = 0; - qRegisterMetaType("TextRange*", &qax_pointer); - qRegisterMetaType("TextRange", qax_pointer); - QVariant qax_result = property("TextRange"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::TextRange**)qax_result.constData(); -} - -inline PowerPoint::PpSelectionType Selection::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpSelectionType*)qax_result.constData(); -} - -inline void Selection::Copy() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void Selection::Cut() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void Selection::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void Selection::Unselect() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - - -inline PowerPoint::Application* DocumentWindows::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int DocumentWindows::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* DocumentWindows::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* DocumentWindows::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline void DocumentWindows::Arrange() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void DocumentWindows::Arrange(PowerPoint::PpArrangeStyle arrangeStyle) -{ - void *_a[] = {0, (void*)&arrangeStyle}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline PowerPoint::DocumentWindow* DocumentWindows::Item(int Index) -{ - PowerPoint::DocumentWindow* qax_result = 0; - qRegisterMetaType("DocumentWindow*", &qax_result); - qRegisterMetaType("DocumentWindow", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline QVariant DocumentWindows::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - - -inline PowerPoint::Application* SlideShowWindows::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int SlideShowWindows::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* SlideShowWindows::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* SlideShowWindows::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::SlideShowWindow* SlideShowWindows::Item(int Index) -{ - PowerPoint::SlideShowWindow* qax_result = 0; - qRegisterMetaType("SlideShowWindow*", &qax_result); - qRegisterMetaType("SlideShowWindow", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline QVariant SlideShowWindows::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - - -inline Office::MsoTriState DocumentWindow::Active() const -{ - QVariant qax_result = property("Active"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline PowerPoint::Pane* DocumentWindow::ActivePane() const -{ - PowerPoint::Pane* qax_pointer = 0; - qRegisterMetaType("Pane*", &qax_pointer); - qRegisterMetaType("Pane", qax_pointer); - QVariant qax_result = property("ActivePane"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Pane**)qax_result.constData(); -} - -inline PowerPoint::Application* DocumentWindow::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline Office::MsoTriState DocumentWindow::BlackAndWhite() const -{ - QVariant qax_result = property("BlackAndWhite"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void DocumentWindow::SetBlackAndWhite(Office::MsoTriState value){ setProperty("BlackAndWhite", QVariant(value)); } - -inline QString DocumentWindow::Caption() const -{ - QVariant qax_result = property("Caption"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline int DocumentWindow::HWND() const -{ - QVariant qax_result = property("HWND"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline double DocumentWindow::Height() const -{ - QVariant qax_result = property("Height"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void DocumentWindow::SetHeight(double value){ setProperty("Height", QVariant(value)); } - -inline double DocumentWindow::Left() const -{ - QVariant qax_result = property("Left"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void DocumentWindow::SetLeft(double value){ setProperty("Left", QVariant(value)); } - -inline PowerPoint::Panes* DocumentWindow::Panes() const -{ - PowerPoint::Panes* qax_pointer = 0; - qRegisterMetaType("Panes*", &qax_pointer); - qRegisterMetaType("Panes", qax_pointer); - QVariant qax_result = property("Panes"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Panes**)qax_result.constData(); -} - -inline IDispatch* DocumentWindow::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::Presentation* DocumentWindow::Presentation() const -{ - PowerPoint::Presentation* qax_pointer = 0; - qRegisterMetaType("Presentation*", &qax_pointer); - qRegisterMetaType("Presentation", qax_pointer); - QVariant qax_result = property("Presentation"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Presentation**)qax_result.constData(); -} - -inline PowerPoint::Selection* DocumentWindow::Selection() const -{ - PowerPoint::Selection* qax_pointer = 0; - qRegisterMetaType("Selection*", &qax_pointer); - qRegisterMetaType("Selection", qax_pointer); - QVariant qax_result = property("Selection"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Selection**)qax_result.constData(); -} - -inline int DocumentWindow::SplitHorizontal() const -{ - QVariant qax_result = property("SplitHorizontal"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void DocumentWindow::SetSplitHorizontal(int value){ setProperty("SplitHorizontal", QVariant(value)); } - -inline int DocumentWindow::SplitVertical() const -{ - QVariant qax_result = property("SplitVertical"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void DocumentWindow::SetSplitVertical(int value){ setProperty("SplitVertical", QVariant(value)); } - -inline double DocumentWindow::Top() const -{ - QVariant qax_result = property("Top"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void DocumentWindow::SetTop(double value){ setProperty("Top", QVariant(value)); } - -inline PowerPoint::View* DocumentWindow::View() const -{ - PowerPoint::View* qax_pointer = 0; - qRegisterMetaType("View*", &qax_pointer); - qRegisterMetaType("View", qax_pointer); - QVariant qax_result = property("View"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::View**)qax_result.constData(); -} - -inline PowerPoint::PpViewType DocumentWindow::ViewType() const -{ - QVariant qax_result = property("ViewType"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpViewType*)qax_result.constData(); -} -inline void DocumentWindow::SetViewType(PowerPoint::PpViewType value){ setProperty("ViewType", QVariant(value)); } - -inline double DocumentWindow::Width() const -{ - QVariant qax_result = property("Width"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void DocumentWindow::SetWidth(double value){ setProperty("Width", QVariant(value)); } - -inline PowerPoint::PpWindowState DocumentWindow::WindowState() const -{ - QVariant qax_result = property("WindowState"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpWindowState*)qax_result.constData(); -} -inline void DocumentWindow::SetWindowState(PowerPoint::PpWindowState value){ setProperty("WindowState", QVariant(value)); } - -inline void DocumentWindow::Activate() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void DocumentWindow::Close() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void DocumentWindow::FitToPage() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void DocumentWindow::LargeScroll() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void DocumentWindow::LargeScroll(int Down) -{ - void *_a[] = {0, (void*)&Down}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline void DocumentWindow::LargeScroll(int Down, int Up) -{ - void *_a[] = {0, (void*)&Down, (void*)&Up}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void DocumentWindow::LargeScroll(int Down, int Up, int ToRight) -{ - void *_a[] = {0, (void*)&Down, (void*)&Up, (void*)&ToRight}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline void DocumentWindow::LargeScroll(int Down, int Up, int ToRight, int ToLeft) -{ - void *_a[] = {0, (void*)&Down, (void*)&Up, (void*)&ToRight, (void*)&ToLeft}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); -} - -inline PowerPoint::DocumentWindow* DocumentWindow::NewWindow() -{ - PowerPoint::DocumentWindow* qax_result = 0; - qRegisterMetaType("DocumentWindow*", &qax_result); - qRegisterMetaType("DocumentWindow", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); - return qax_result; -} - -inline int DocumentWindow::PointsToScreenPixelsX(double Points) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Points}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); - return qax_result; -} - -inline int DocumentWindow::PointsToScreenPixelsY(double Points) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Points}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); - return qax_result; -} - -inline IDispatch* DocumentWindow::RangeFromPoint(int X, int Y) -{ - IDispatch* qax_result = 0; - void *_a[] = {(void*)&qax_result, (void*)&X, (void*)&Y}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); - return qax_result; -} - -inline void DocumentWindow::ScrollIntoView(double Left, double Top, double Width, double Height) -{ - void *_a[] = {0, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); -} - -inline void DocumentWindow::ScrollIntoView(double Left, double Top, double Width, double Height, Office::MsoTriState Start) -{ - void *_a[] = {0, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height, (void*)&Start}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); -} - -inline void DocumentWindow::SmallScroll() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 30, _a); -} - -inline void DocumentWindow::SmallScroll(int Down) -{ - void *_a[] = {0, (void*)&Down}; - qt_metacall(QMetaObject::InvokeMetaMethod, 31, _a); -} - -inline void DocumentWindow::SmallScroll(int Down, int Up) -{ - void *_a[] = {0, (void*)&Down, (void*)&Up}; - qt_metacall(QMetaObject::InvokeMetaMethod, 32, _a); -} - -inline void DocumentWindow::SmallScroll(int Down, int Up, int ToRight) -{ - void *_a[] = {0, (void*)&Down, (void*)&Up, (void*)&ToRight}; - qt_metacall(QMetaObject::InvokeMetaMethod, 33, _a); -} - -inline void DocumentWindow::SmallScroll(int Down, int Up, int ToRight, int ToLeft) -{ - void *_a[] = {0, (void*)&Down, (void*)&Up, (void*)&ToRight, (void*)&ToLeft}; - qt_metacall(QMetaObject::InvokeMetaMethod, 34, _a); -} - - -inline PowerPoint::Application* View::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline Office::MsoTriState View::DisplaySlideMiniature() const -{ - QVariant qax_result = property("DisplaySlideMiniature"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void View::SetDisplaySlideMiniature(Office::MsoTriState value){ setProperty("DisplaySlideMiniature", QVariant(value)); } - -inline IDispatch* View::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::PrintOptions* View::PrintOptions() const -{ - PowerPoint::PrintOptions* qax_pointer = 0; - qRegisterMetaType("PrintOptions*", &qax_pointer); - qRegisterMetaType("PrintOptions", qax_pointer); - QVariant qax_result = property("PrintOptions"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PrintOptions**)qax_result.constData(); -} - -inline IDispatch* View::Slide() const -{ - QVariant qax_result = property("Slide"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} -inline void View::SetSlide(IDispatch* value){ - int typeId = qRegisterMetaType("IDispatch*", &value); - setProperty("Slide", QVariant(typeId, &value)); -} - -inline PowerPoint::PpViewType View::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpViewType*)qax_result.constData(); -} - -inline int View::Zoom() const -{ - QVariant qax_result = property("Zoom"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void View::SetZoom(int value){ setProperty("Zoom", QVariant(value)); } - -inline Office::MsoTriState View::ZoomToFit() const -{ - QVariant qax_result = property("ZoomToFit"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void View::SetZoomToFit(Office::MsoTriState value){ setProperty("ZoomToFit", QVariant(value)); } - -inline void View::GotoSlide(int Index) -{ - void *_a[] = {0, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void View::Paste() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void View::PasteSpecial() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void View::PasteSpecial(PowerPoint::PpPasteDataType DataType) -{ - void *_a[] = {0, (void*)&DataType}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void View::PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon) -{ - void *_a[] = {0, (void*)&DataType, (void*)&DisplayAsIcon}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline void View::PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon, const QString& IconFileName) -{ - void *_a[] = {0, (void*)&DataType, (void*)&DisplayAsIcon, (void*)&IconFileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void View::PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon, const QString& IconFileName, int IconIndex) -{ - void *_a[] = {0, (void*)&DataType, (void*)&DisplayAsIcon, (void*)&IconFileName, (void*)&IconIndex}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline void View::PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon, const QString& IconFileName, int IconIndex, const QString& IconLabel) -{ - void *_a[] = {0, (void*)&DataType, (void*)&DisplayAsIcon, (void*)&IconFileName, (void*)&IconIndex, (void*)&IconLabel}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); -} - -inline void View::PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon, const QString& IconFileName, int IconIndex, const QString& IconLabel, Office::MsoTriState Link) -{ - void *_a[] = {0, (void*)&DataType, (void*)&DisplayAsIcon, (void*)&IconFileName, (void*)&IconIndex, (void*)&IconLabel, (void*)&Link}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); -} - -inline void View::PrintOut() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); -} - -inline void View::PrintOut(int From) -{ - void *_a[] = {0, (void*)&From}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); -} - -inline void View::PrintOut(int From, int To) -{ - void *_a[] = {0, (void*)&From, (void*)&To}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); -} - -inline void View::PrintOut(int From, int To, const QString& PrintToFile) -{ - void *_a[] = {0, (void*)&From, (void*)&To, (void*)&PrintToFile}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); -} - -inline void View::PrintOut(int From, int To, const QString& PrintToFile, int Copies) -{ - void *_a[] = {0, (void*)&From, (void*)&To, (void*)&PrintToFile, (void*)&Copies}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); -} - -inline void View::PrintOut(int From, int To, const QString& PrintToFile, int Copies, Office::MsoTriState Collate) -{ - void *_a[] = {0, (void*)&From, (void*)&To, (void*)&PrintToFile, (void*)&Copies, (void*)&Collate}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); -} - - -inline Office::MsoTriState SlideShowView::AcceleratorsEnabled() const -{ - QVariant qax_result = property("AcceleratorsEnabled"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void SlideShowView::SetAcceleratorsEnabled(Office::MsoTriState value){ setProperty("AcceleratorsEnabled", QVariant(value)); } - -inline PowerPoint::PpSlideShowAdvanceMode SlideShowView::AdvanceMode() const -{ - QVariant qax_result = property("AdvanceMode"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpSlideShowAdvanceMode*)qax_result.constData(); -} - -inline PowerPoint::Application* SlideShowView::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int SlideShowView::CurrentShowPosition() const -{ - QVariant qax_result = property("CurrentShowPosition"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoTriState SlideShowView::IsNamedShow() const -{ - QVariant qax_result = property("IsNamedShow"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline PowerPoint::Slide* SlideShowView::LastSlideViewed() const -{ - PowerPoint::Slide* qax_pointer = 0; - qRegisterMetaType("Slide*", &qax_pointer); - qRegisterMetaType("Slide", qax_pointer); - QVariant qax_result = property("LastSlideViewed"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Slide**)qax_result.constData(); -} - -inline IDispatch* SlideShowView::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::ColorFormat* SlideShowView::PointerColor() const -{ - PowerPoint::ColorFormat* qax_pointer = 0; - qRegisterMetaType("ColorFormat*", &qax_pointer); - qRegisterMetaType("ColorFormat", qax_pointer); - QVariant qax_result = property("PointerColor"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ColorFormat**)qax_result.constData(); -} - -inline PowerPoint::PpSlideShowPointerType SlideShowView::PointerType() const -{ - QVariant qax_result = property("PointerType"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpSlideShowPointerType*)qax_result.constData(); -} -inline void SlideShowView::SetPointerType(PowerPoint::PpSlideShowPointerType value){ setProperty("PointerType", QVariant(value)); } - -inline double SlideShowView::PresentationElapsedTime() const -{ - QVariant qax_result = property("PresentationElapsedTime"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} - -inline PowerPoint::Slide* SlideShowView::Slide() const -{ - PowerPoint::Slide* qax_pointer = 0; - qRegisterMetaType("Slide*", &qax_pointer); - qRegisterMetaType("Slide", qax_pointer); - QVariant qax_result = property("Slide"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Slide**)qax_result.constData(); -} - -inline double SlideShowView::SlideElapsedTime() const -{ - QVariant qax_result = property("SlideElapsedTime"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void SlideShowView::SetSlideElapsedTime(double value){ setProperty("SlideElapsedTime", QVariant(value)); } - -inline QString SlideShowView::SlideShowName() const -{ - QVariant qax_result = property("SlideShowName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline PowerPoint::PpSlideShowState SlideShowView::State() const -{ - QVariant qax_result = property("State"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpSlideShowState*)qax_result.constData(); -} -inline void SlideShowView::SetState(PowerPoint::PpSlideShowState value){ setProperty("State", QVariant(value)); } - -inline int SlideShowView::Zoom() const -{ - QVariant qax_result = property("Zoom"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline void SlideShowView::DrawLine(double BeginX, double BeginY, double EndX, double EndY) -{ - void *_a[] = {0, (void*)&BeginX, (void*)&BeginY, (void*)&EndX, (void*)&EndY}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void SlideShowView::EndNamedShow() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void SlideShowView::EraseDrawing() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void SlideShowView::Exit() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void SlideShowView::First() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline void SlideShowView::GotoNamedShow(const QString& SlideShowName) -{ - void *_a[] = {0, (void*)&SlideShowName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void SlideShowView::GotoSlide(int Index) -{ - void *_a[] = {0, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline void SlideShowView::GotoSlide(int Index, Office::MsoTriState ResetSlide) -{ - void *_a[] = {0, (void*)&Index, (void*)&ResetSlide}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); -} - -inline void SlideShowView::InstallTracker(PowerPoint::MouseTracker* pTracker, Office::MsoTriState Presenter) -{ - void *_a[] = {0, (void*)&pTracker, (void*)&Presenter}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); -} - -inline void SlideShowView::Last() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); -} - -inline void SlideShowView::Next() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); -} - -inline void SlideShowView::Previous() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); -} - -inline void SlideShowView::ResetSlideTime() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); -} - - -inline PowerPoint::PpSlideShowAdvanceMode SlideShowSettings::AdvanceMode() const -{ - QVariant qax_result = property("AdvanceMode"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpSlideShowAdvanceMode*)qax_result.constData(); -} -inline void SlideShowSettings::SetAdvanceMode(PowerPoint::PpSlideShowAdvanceMode value){ setProperty("AdvanceMode", QVariant(value)); } - -inline PowerPoint::Application* SlideShowSettings::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int SlideShowSettings::EndingSlide() const -{ - QVariant qax_result = property("EndingSlide"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void SlideShowSettings::SetEndingSlide(int value){ setProperty("EndingSlide", QVariant(value)); } - -inline Office::MsoTriState SlideShowSettings::LoopUntilStopped() const -{ - QVariant qax_result = property("LoopUntilStopped"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void SlideShowSettings::SetLoopUntilStopped(Office::MsoTriState value){ setProperty("LoopUntilStopped", QVariant(value)); } - -inline PowerPoint::NamedSlideShows* SlideShowSettings::NamedSlideShows() const -{ - PowerPoint::NamedSlideShows* qax_pointer = 0; - qRegisterMetaType("NamedSlideShows*", &qax_pointer); - qRegisterMetaType("NamedSlideShows", qax_pointer); - QVariant qax_result = property("NamedSlideShows"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::NamedSlideShows**)qax_result.constData(); -} - -inline IDispatch* SlideShowSettings::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::ColorFormat* SlideShowSettings::PointerColor() const -{ - PowerPoint::ColorFormat* qax_pointer = 0; - qRegisterMetaType("ColorFormat*", &qax_pointer); - qRegisterMetaType("ColorFormat", qax_pointer); - QVariant qax_result = property("PointerColor"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ColorFormat**)qax_result.constData(); -} - -inline PowerPoint::PpSlideShowRangeType SlideShowSettings::RangeType() const -{ - QVariant qax_result = property("RangeType"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpSlideShowRangeType*)qax_result.constData(); -} -inline void SlideShowSettings::SetRangeType(PowerPoint::PpSlideShowRangeType value){ setProperty("RangeType", QVariant(value)); } - -inline Office::MsoTriState SlideShowSettings::ShowScrollbar() const -{ - QVariant qax_result = property("ShowScrollbar"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void SlideShowSettings::SetShowScrollbar(Office::MsoTriState value){ setProperty("ShowScrollbar", QVariant(value)); } - -inline PowerPoint::PpSlideShowType SlideShowSettings::ShowType() const -{ - QVariant qax_result = property("ShowType"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpSlideShowType*)qax_result.constData(); -} -inline void SlideShowSettings::SetShowType(PowerPoint::PpSlideShowType value){ setProperty("ShowType", QVariant(value)); } - -inline Office::MsoTriState SlideShowSettings::ShowWithAnimation() const -{ - QVariant qax_result = property("ShowWithAnimation"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void SlideShowSettings::SetShowWithAnimation(Office::MsoTriState value){ setProperty("ShowWithAnimation", QVariant(value)); } - -inline Office::MsoTriState SlideShowSettings::ShowWithNarration() const -{ - QVariant qax_result = property("ShowWithNarration"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void SlideShowSettings::SetShowWithNarration(Office::MsoTriState value){ setProperty("ShowWithNarration", QVariant(value)); } - -inline QString SlideShowSettings::SlideShowName() const -{ - QVariant qax_result = property("SlideShowName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void SlideShowSettings::SetSlideShowName(const QString& value){ setProperty("SlideShowName", QVariant(value)); } - -inline int SlideShowSettings::StartingSlide() const -{ - QVariant qax_result = property("StartingSlide"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void SlideShowSettings::SetStartingSlide(int value){ setProperty("StartingSlide", QVariant(value)); } - -inline PowerPoint::SlideShowWindow* SlideShowSettings::Run() -{ - PowerPoint::SlideShowWindow* qax_result = 0; - qRegisterMetaType("SlideShowWindow*", &qax_result); - qRegisterMetaType("SlideShowWindow", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - - -inline PowerPoint::Application* NamedSlideShows::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int NamedSlideShows::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* NamedSlideShows::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* NamedSlideShows::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::NamedSlideShow* NamedSlideShows::Add(const QString& Name, const QVariant& safeArrayOfSlideIDs) -{ - PowerPoint::NamedSlideShow* qax_result = 0; - qRegisterMetaType("NamedSlideShow*", &qax_result); - qRegisterMetaType("NamedSlideShow", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Name, (void*)&safeArrayOfSlideIDs}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline PowerPoint::NamedSlideShow* NamedSlideShows::Item(const QVariant& Index) -{ - PowerPoint::NamedSlideShow* qax_result = 0; - qRegisterMetaType("NamedSlideShow*", &qax_result); - qRegisterMetaType("NamedSlideShow", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline QVariant NamedSlideShows::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - - -inline PowerPoint::Application* NamedSlideShow::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int NamedSlideShow::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString NamedSlideShow::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline IDispatch* NamedSlideShow::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QVariant NamedSlideShow::SlideIDs() const -{ - QVariant qax_result = property("SlideIDs"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline void NamedSlideShow::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline QString PrintOptions::ActivePrinter() const -{ - QVariant qax_result = property("ActivePrinter"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void PrintOptions::SetActivePrinter(const QString& value){ setProperty("ActivePrinter", QVariant(value)); } - -inline PowerPoint::Application* PrintOptions::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline Office::MsoTriState PrintOptions::Collate() const -{ - QVariant qax_result = property("Collate"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void PrintOptions::SetCollate(Office::MsoTriState value){ setProperty("Collate", QVariant(value)); } - -inline Office::MsoTriState PrintOptions::FitToPage() const -{ - QVariant qax_result = property("FitToPage"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void PrintOptions::SetFitToPage(Office::MsoTriState value){ setProperty("FitToPage", QVariant(value)); } - -inline Office::MsoTriState PrintOptions::FrameSlides() const -{ - QVariant qax_result = property("FrameSlides"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void PrintOptions::SetFrameSlides(Office::MsoTriState value){ setProperty("FrameSlides", QVariant(value)); } - -inline PowerPoint::PpPrintHandoutOrder PrintOptions::HandoutOrder() const -{ - QVariant qax_result = property("HandoutOrder"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpPrintHandoutOrder*)qax_result.constData(); -} -inline void PrintOptions::SetHandoutOrder(PowerPoint::PpPrintHandoutOrder value){ setProperty("HandoutOrder", QVariant(value)); } - -inline int PrintOptions::NumberOfCopies() const -{ - QVariant qax_result = property("NumberOfCopies"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void PrintOptions::SetNumberOfCopies(int value){ setProperty("NumberOfCopies", QVariant(value)); } - -inline PowerPoint::PpPrintOutputType PrintOptions::OutputType() const -{ - QVariant qax_result = property("OutputType"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpPrintOutputType*)qax_result.constData(); -} -inline void PrintOptions::SetOutputType(PowerPoint::PpPrintOutputType value){ setProperty("OutputType", QVariant(value)); } - -inline IDispatch* PrintOptions::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::PpPrintColorType PrintOptions::PrintColorType() const -{ - QVariant qax_result = property("PrintColorType"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpPrintColorType*)qax_result.constData(); -} -inline void PrintOptions::SetPrintColorType(PowerPoint::PpPrintColorType value){ setProperty("PrintColorType", QVariant(value)); } - -inline Office::MsoTriState PrintOptions::PrintComments() const -{ - QVariant qax_result = property("PrintComments"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void PrintOptions::SetPrintComments(Office::MsoTriState value){ setProperty("PrintComments", QVariant(value)); } - -inline Office::MsoTriState PrintOptions::PrintFontsAsGraphics() const -{ - QVariant qax_result = property("PrintFontsAsGraphics"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void PrintOptions::SetPrintFontsAsGraphics(Office::MsoTriState value){ setProperty("PrintFontsAsGraphics", QVariant(value)); } - -inline Office::MsoTriState PrintOptions::PrintHiddenSlides() const -{ - QVariant qax_result = property("PrintHiddenSlides"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void PrintOptions::SetPrintHiddenSlides(Office::MsoTriState value){ setProperty("PrintHiddenSlides", QVariant(value)); } - -inline Office::MsoTriState PrintOptions::PrintInBackground() const -{ - QVariant qax_result = property("PrintInBackground"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void PrintOptions::SetPrintInBackground(Office::MsoTriState value){ setProperty("PrintInBackground", QVariant(value)); } - -inline PowerPoint::PpPrintRangeType PrintOptions::RangeType() const -{ - QVariant qax_result = property("RangeType"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpPrintRangeType*)qax_result.constData(); -} -inline void PrintOptions::SetRangeType(PowerPoint::PpPrintRangeType value){ setProperty("RangeType", QVariant(value)); } - -inline PowerPoint::PrintRanges* PrintOptions::Ranges() const -{ - PowerPoint::PrintRanges* qax_pointer = 0; - qRegisterMetaType("PrintRanges*", &qax_pointer); - qRegisterMetaType("PrintRanges", qax_pointer); - QVariant qax_result = property("Ranges"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PrintRanges**)qax_result.constData(); -} - -inline QString PrintOptions::SlideShowName() const -{ - QVariant qax_result = property("SlideShowName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void PrintOptions::SetSlideShowName(const QString& value){ setProperty("SlideShowName", QVariant(value)); } - - -inline PowerPoint::Application* PrintRanges::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int PrintRanges::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* PrintRanges::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* PrintRanges::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::PrintRange* PrintRanges::Add(int Start, int End) -{ - PowerPoint::PrintRange* qax_result = 0; - qRegisterMetaType("PrintRange*", &qax_result); - qRegisterMetaType("PrintRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Start, (void*)&End}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline void PrintRanges::ClearAll() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline PowerPoint::PrintRange* PrintRanges::Item(int Index) -{ - PowerPoint::PrintRange* qax_result = 0; - qRegisterMetaType("PrintRange*", &qax_result); - qRegisterMetaType("PrintRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline QVariant PrintRanges::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - - -inline PowerPoint::Application* PrintRange::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int PrintRange::End() const -{ - QVariant qax_result = property("End"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* PrintRange::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int PrintRange::Start() const -{ - QVariant qax_result = property("Start"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline void PrintRange::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline PowerPoint::Application* AddIns::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int AddIns::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* AddIns::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* AddIns::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::AddIn* AddIns::Add(const QString& FileName) -{ - PowerPoint::AddIn* qax_result = 0; - qRegisterMetaType("AddIn*", &qax_result); - qRegisterMetaType("AddIn", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline PowerPoint::AddIn* AddIns::Item(QVariant& Index) -{ - PowerPoint::AddIn* qax_result = 0; - qRegisterMetaType("AddIn*", &qax_result); - qRegisterMetaType("AddIn", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline void AddIns::Remove(QVariant& Index) -{ - void *_a[] = {0, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline QVariant AddIns::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - - -inline PowerPoint::Application* AddIn::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline Office::MsoTriState AddIn::AutoLoad() const -{ - QVariant qax_result = property("AutoLoad"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void AddIn::SetAutoLoad(Office::MsoTriState value){ setProperty("AutoLoad", QVariant(value)); } - -inline Office::MsoTriState AddIn::DisplayAlerts() const -{ - QVariant qax_result = property("DisplayAlerts"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void AddIn::SetDisplayAlerts(Office::MsoTriState value){ setProperty("DisplayAlerts", QVariant(value)); } - -inline QString AddIn::FullName() const -{ - QVariant qax_result = property("FullName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline Office::MsoTriState AddIn::Loaded() const -{ - QVariant qax_result = property("Loaded"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void AddIn::SetLoaded(Office::MsoTriState value){ setProperty("Loaded", QVariant(value)); } - -inline QString AddIn::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline IDispatch* AddIn::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString AddIn::Path() const -{ - QVariant qax_result = property("Path"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline Office::MsoTriState AddIn::Registered() const -{ - QVariant qax_result = property("Registered"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void AddIn::SetRegistered(Office::MsoTriState value){ setProperty("Registered", QVariant(value)); } - -inline Office::MsoTriState AddIn::RegisteredInHKLM() const -{ - QVariant qax_result = property("RegisteredInHKLM"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - - -inline PowerPoint::Application* Presentations::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int Presentations::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* Presentations::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* Presentations::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::Presentation* Presentations::Add() -{ - PowerPoint::Presentation* qax_result = 0; - qRegisterMetaType("Presentation*", &qax_result); - qRegisterMetaType("Presentation", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline PowerPoint::Presentation* Presentations::Add(Office::MsoTriState WithWindow) -{ - PowerPoint::Presentation* qax_result = 0; - qRegisterMetaType("Presentation*", &qax_result); - qRegisterMetaType("Presentation", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&WithWindow}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline bool Presentations::CanCheckOut(const QString& FileName) -{ - bool qax_result; - void *_a[] = {(void*)&qax_result, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline void Presentations::CheckOut(const QString& FileName) -{ - void *_a[] = {0, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline PowerPoint::Presentation* Presentations::Item(const QVariant& Index) -{ - PowerPoint::Presentation* qax_result = 0; - qRegisterMetaType("Presentation*", &qax_result); - qRegisterMetaType("Presentation", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline PowerPoint::Presentation* Presentations::Open(const QString& FileName) -{ - PowerPoint::Presentation* qax_result = 0; - qRegisterMetaType("Presentation*", &qax_result); - qRegisterMetaType("Presentation", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); - return qax_result; -} - -inline PowerPoint::Presentation* Presentations::Open(const QString& FileName, Office::MsoTriState ReadOnly) -{ - PowerPoint::Presentation* qax_result = 0; - qRegisterMetaType("Presentation*", &qax_result); - qRegisterMetaType("Presentation", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&ReadOnly}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); - return qax_result; -} - -inline PowerPoint::Presentation* Presentations::Open(const QString& FileName, Office::MsoTriState ReadOnly, Office::MsoTriState Untitled) -{ - PowerPoint::Presentation* qax_result = 0; - qRegisterMetaType("Presentation*", &qax_result); - qRegisterMetaType("Presentation", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&ReadOnly, (void*)&Untitled}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); - return qax_result; -} - -inline PowerPoint::Presentation* Presentations::Open(const QString& FileName, Office::MsoTriState ReadOnly, Office::MsoTriState Untitled, Office::MsoTriState WithWindow) -{ - PowerPoint::Presentation* qax_result = 0; - qRegisterMetaType("Presentation*", &qax_result); - qRegisterMetaType("Presentation", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&ReadOnly, (void*)&Untitled, (void*)&WithWindow}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); - return qax_result; -} - -inline PowerPoint::Presentation* Presentations::OpenOld(const QString& FileName) -{ - PowerPoint::Presentation* qax_result = 0; - qRegisterMetaType("Presentation*", &qax_result); - qRegisterMetaType("Presentation", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); - return qax_result; -} - -inline PowerPoint::Presentation* Presentations::OpenOld(const QString& FileName, Office::MsoTriState ReadOnly) -{ - PowerPoint::Presentation* qax_result = 0; - qRegisterMetaType("Presentation*", &qax_result); - qRegisterMetaType("Presentation", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&ReadOnly}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); - return qax_result; -} - -inline PowerPoint::Presentation* Presentations::OpenOld(const QString& FileName, Office::MsoTriState ReadOnly, Office::MsoTriState Untitled) -{ - PowerPoint::Presentation* qax_result = 0; - qRegisterMetaType("Presentation*", &qax_result); - qRegisterMetaType("Presentation", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&ReadOnly, (void*)&Untitled}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); - return qax_result; -} - -inline PowerPoint::Presentation* Presentations::OpenOld(const QString& FileName, Office::MsoTriState ReadOnly, Office::MsoTriState Untitled, Office::MsoTriState WithWindow) -{ - PowerPoint::Presentation* qax_result = 0; - qRegisterMetaType("Presentation*", &qax_result); - qRegisterMetaType("Presentation", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&ReadOnly, (void*)&Untitled, (void*)&WithWindow}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); - return qax_result; -} - -inline QVariant Presentations::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); - return qax_result; -} - - -inline PowerPoint::Application* Presentation::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline IDispatch* Presentation::BuiltInDocumentProperties() const -{ - QVariant qax_result = property("BuiltInDocumentProperties"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::ColorSchemes* Presentation::ColorSchemes() const -{ - PowerPoint::ColorSchemes* qax_pointer = 0; - qRegisterMetaType("ColorSchemes*", &qax_pointer); - qRegisterMetaType("ColorSchemes", qax_pointer); - QVariant qax_result = property("ColorSchemes"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ColorSchemes**)qax_result.constData(); -} - -inline Office::CommandBars* Presentation::CommandBars() const -{ - Office::CommandBars* qax_pointer = 0; - qRegisterMetaType("Office::CommandBars*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::CommandBars", qax_pointer); -#endif - QVariant qax_result = property("CommandBars"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::CommandBars**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline IDispatch* Presentation::Container() const -{ - QVariant qax_result = property("Container"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IDispatch* Presentation::CustomDocumentProperties() const -{ - QVariant qax_result = property("CustomDocumentProperties"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoLanguageID Presentation::DefaultLanguageID() const -{ - QVariant qax_result = property("DefaultLanguageID"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoLanguageID*)qax_result.constData(); -} -inline void Presentation::SetDefaultLanguageID(Office::MsoLanguageID value){ setProperty("DefaultLanguageID", QVariant(value)); } - -inline PowerPoint::Shape* Presentation::DefaultShape() const -{ - PowerPoint::Shape* qax_pointer = 0; - qRegisterMetaType("Shape*", &qax_pointer); - qRegisterMetaType("Shape", qax_pointer); - QVariant qax_result = property("DefaultShape"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Shape**)qax_result.constData(); -} - -inline PowerPoint::Designs* Presentation::Designs() const -{ - PowerPoint::Designs* qax_pointer = 0; - qRegisterMetaType("Designs*", &qax_pointer); - qRegisterMetaType("Designs", qax_pointer); - QVariant qax_result = property("Designs"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Designs**)qax_result.constData(); -} - -inline Office::MsoTriState Presentation::DisplayComments() const -{ - QVariant qax_result = property("DisplayComments"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Presentation::SetDisplayComments(Office::MsoTriState value){ setProperty("DisplayComments", QVariant(value)); } - -inline Office::DocumentLibraryVersions* Presentation::DocumentLibraryVersions() const -{ - Office::DocumentLibraryVersions* qax_pointer = 0; - qRegisterMetaType("Office::DocumentLibraryVersions*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::DocumentLibraryVersions", qax_pointer); -#endif - QVariant qax_result = property("DocumentLibraryVersions"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::DocumentLibraryVersions**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline Office::MsoTriState Presentation::EnvelopeVisible() const -{ - QVariant qax_result = property("EnvelopeVisible"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Presentation::SetEnvelopeVisible(Office::MsoTriState value){ setProperty("EnvelopeVisible", QVariant(value)); } - -inline PowerPoint::ExtraColors* Presentation::ExtraColors() const -{ - PowerPoint::ExtraColors* qax_pointer = 0; - qRegisterMetaType("ExtraColors*", &qax_pointer); - qRegisterMetaType("ExtraColors", qax_pointer); - QVariant qax_result = property("ExtraColors"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ExtraColors**)qax_result.constData(); -} - -inline Office::MsoFarEastLineBreakLanguageID Presentation::FarEastLineBreakLanguage() const -{ - QVariant qax_result = property("FarEastLineBreakLanguage"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoFarEastLineBreakLanguageID*)qax_result.constData(); -} -inline void Presentation::SetFarEastLineBreakLanguage(Office::MsoFarEastLineBreakLanguageID value){ setProperty("FarEastLineBreakLanguage", QVariant(value)); } - -inline PowerPoint::PpFarEastLineBreakLevel Presentation::FarEastLineBreakLevel() const -{ - QVariant qax_result = property("FarEastLineBreakLevel"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpFarEastLineBreakLevel*)qax_result.constData(); -} -inline void Presentation::SetFarEastLineBreakLevel(PowerPoint::PpFarEastLineBreakLevel value){ setProperty("FarEastLineBreakLevel", QVariant(value)); } - -inline PowerPoint::Fonts* Presentation::Fonts() const -{ - PowerPoint::Fonts* qax_pointer = 0; - qRegisterMetaType("Fonts*", &qax_pointer); - qRegisterMetaType("Fonts", qax_pointer); - QVariant qax_result = property("Fonts"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Fonts**)qax_result.constData(); -} - -inline QString Presentation::FullName() const -{ - QVariant qax_result = property("FullName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline double Presentation::GridDistance() const -{ - QVariant qax_result = property("GridDistance"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Presentation::SetGridDistance(double value){ setProperty("GridDistance", QVariant(value)); } - -inline Office::HTMLProject* Presentation::HTMLProject() const -{ - Office::HTMLProject* qax_pointer = 0; - qRegisterMetaType("Office::HTMLProject*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::HTMLProject", qax_pointer); -#endif - QVariant qax_result = property("HTMLProject"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::HTMLProject**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline PowerPoint::_Master* Presentation::HandoutMaster() const -{ - PowerPoint::_Master* qax_pointer = 0; - qRegisterMetaType("_Master*", &qax_pointer); - qRegisterMetaType("_Master", qax_pointer); - QVariant qax_result = property("HandoutMaster"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::_Master**)qax_result.constData(); -} - -inline PowerPoint::PpRevisionInfo Presentation::HasRevisionInfo() const -{ - QVariant qax_result = property("HasRevisionInfo"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpRevisionInfo*)qax_result.constData(); -} - -inline Office::MsoTriState Presentation::HasTitleMaster() const -{ - QVariant qax_result = property("HasTitleMaster"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline PowerPoint::PpDirection Presentation::LayoutDirection() const -{ - QVariant qax_result = property("LayoutDirection"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpDirection*)qax_result.constData(); -} -inline void Presentation::SetLayoutDirection(PowerPoint::PpDirection value){ setProperty("LayoutDirection", QVariant(value)); } - -inline QString Presentation::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString Presentation::NoLineBreakAfter() const -{ - QVariant qax_result = property("NoLineBreakAfter"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Presentation::SetNoLineBreakAfter(const QString& value){ setProperty("NoLineBreakAfter", QVariant(value)); } - -inline QString Presentation::NoLineBreakBefore() const -{ - QVariant qax_result = property("NoLineBreakBefore"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Presentation::SetNoLineBreakBefore(const QString& value){ setProperty("NoLineBreakBefore", QVariant(value)); } - -inline PowerPoint::_Master* Presentation::NotesMaster() const -{ - PowerPoint::_Master* qax_pointer = 0; - qRegisterMetaType("_Master*", &qax_pointer); - qRegisterMetaType("_Master", qax_pointer); - QVariant qax_result = property("NotesMaster"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::_Master**)qax_result.constData(); -} - -inline PowerPoint::PageSetup* Presentation::PageSetup() const -{ - PowerPoint::PageSetup* qax_pointer = 0; - qRegisterMetaType("PageSetup*", &qax_pointer); - qRegisterMetaType("PageSetup", qax_pointer); - QVariant qax_result = property("PageSetup"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PageSetup**)qax_result.constData(); -} - -inline IDispatch* Presentation::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString Presentation::Password() const -{ - QVariant qax_result = property("Password"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Presentation::SetPassword(const QString& value){ setProperty("Password", QVariant(value)); } - -inline QString Presentation::PasswordEncryptionAlgorithm() const -{ - QVariant qax_result = property("PasswordEncryptionAlgorithm"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline bool Presentation::PasswordEncryptionFileProperties() const -{ - QVariant qax_result = property("PasswordEncryptionFileProperties"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline int Presentation::PasswordEncryptionKeyLength() const -{ - QVariant qax_result = property("PasswordEncryptionKeyLength"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString Presentation::PasswordEncryptionProvider() const -{ - QVariant qax_result = property("PasswordEncryptionProvider"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString Presentation::Path() const -{ - QVariant qax_result = property("Path"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline Office::Permission* Presentation::Permission() const -{ - Office::Permission* qax_pointer = 0; - qRegisterMetaType("Office::Permission*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::Permission", qax_pointer); -#endif - QVariant qax_result = property("Permission"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::Permission**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline PowerPoint::PrintOptions* Presentation::PrintOptions() const -{ - PowerPoint::PrintOptions* qax_pointer = 0; - qRegisterMetaType("PrintOptions*", &qax_pointer); - qRegisterMetaType("PrintOptions", qax_pointer); - QVariant qax_result = property("PrintOptions"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PrintOptions**)qax_result.constData(); -} - -inline PowerPoint::PublishObjects* Presentation::PublishObjects() const -{ - PowerPoint::PublishObjects* qax_pointer = 0; - qRegisterMetaType("PublishObjects*", &qax_pointer); - qRegisterMetaType("PublishObjects", qax_pointer); - QVariant qax_result = property("PublishObjects"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PublishObjects**)qax_result.constData(); -} - -inline Office::MsoTriState Presentation::ReadOnly() const -{ - QVariant qax_result = property("ReadOnly"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline Office::MsoTriState Presentation::RemovePersonalInformation() const -{ - QVariant qax_result = property("RemovePersonalInformation"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Presentation::SetRemovePersonalInformation(Office::MsoTriState value){ setProperty("RemovePersonalInformation", QVariant(value)); } - -inline Office::MsoTriState Presentation::Saved() const -{ - QVariant qax_result = property("Saved"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Presentation::SetSaved(Office::MsoTriState value){ setProperty("Saved", QVariant(value)); } - -inline Office::SharedWorkspace* Presentation::SharedWorkspace() const -{ - Office::SharedWorkspace* qax_pointer = 0; - qRegisterMetaType("Office::SharedWorkspace*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::SharedWorkspace", qax_pointer); -#endif - QVariant qax_result = property("SharedWorkspace"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::SharedWorkspace**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline Office::SignatureSet* Presentation::Signatures() const -{ - Office::SignatureSet* qax_pointer = 0; - qRegisterMetaType("Office::SignatureSet*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::SignatureSet", qax_pointer); -#endif - QVariant qax_result = property("Signatures"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::SignatureSet**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline PowerPoint::_Master* Presentation::SlideMaster() const -{ - PowerPoint::_Master* qax_pointer = 0; - qRegisterMetaType("_Master*", &qax_pointer); - qRegisterMetaType("_Master", qax_pointer); - QVariant qax_result = property("SlideMaster"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::_Master**)qax_result.constData(); -} - -inline PowerPoint::SlideShowSettings* Presentation::SlideShowSettings() const -{ - PowerPoint::SlideShowSettings* qax_pointer = 0; - qRegisterMetaType("SlideShowSettings*", &qax_pointer); - qRegisterMetaType("SlideShowSettings", qax_pointer); - QVariant qax_result = property("SlideShowSettings"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SlideShowSettings**)qax_result.constData(); -} - -inline PowerPoint::SlideShowWindow* Presentation::SlideShowWindow() const -{ - PowerPoint::SlideShowWindow* qax_pointer = 0; - qRegisterMetaType("SlideShowWindow*", &qax_pointer); - qRegisterMetaType("SlideShowWindow", qax_pointer); - QVariant qax_result = property("SlideShowWindow"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SlideShowWindow**)qax_result.constData(); -} - -inline PowerPoint::Slides* Presentation::Slides() const -{ - PowerPoint::Slides* qax_pointer = 0; - qRegisterMetaType("Slides*", &qax_pointer); - qRegisterMetaType("Slides", qax_pointer); - QVariant qax_result = property("Slides"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Slides**)qax_result.constData(); -} - -inline Office::MsoTriState Presentation::SnapToGrid() const -{ - QVariant qax_result = property("SnapToGrid"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Presentation::SetSnapToGrid(Office::MsoTriState value){ setProperty("SnapToGrid", QVariant(value)); } - -inline Office::Sync* Presentation::Sync() const -{ - Office::Sync* qax_pointer = 0; - qRegisterMetaType("Office::Sync*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::Sync", qax_pointer); -#endif - QVariant qax_result = property("Sync"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::Sync**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline PowerPoint::Tags* Presentation::Tags() const -{ - PowerPoint::Tags* qax_pointer = 0; - qRegisterMetaType("Tags*", &qax_pointer); - qRegisterMetaType("Tags", qax_pointer); - QVariant qax_result = property("Tags"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Tags**)qax_result.constData(); -} - -inline QString Presentation::TemplateName() const -{ - QVariant qax_result = property("TemplateName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline PowerPoint::_Master* Presentation::TitleMaster() const -{ - PowerPoint::_Master* qax_pointer = 0; - qRegisterMetaType("_Master*", &qax_pointer); - qRegisterMetaType("_Master", qax_pointer); - QVariant qax_result = property("TitleMaster"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::_Master**)qax_result.constData(); -} - -inline Office::MsoTriState Presentation::VBASigned() const -{ - QVariant qax_result = property("VBASigned"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline VBIDE::VBProject* Presentation::VBProject() const -{ - VBIDE::VBProject* qax_pointer = 0; - qRegisterMetaType("VBIDE::VBProject*", &qax_pointer); -#ifdef QAX_DUMPCPP_VBIDE_H - qRegisterMetaType("VBIDE::VBProject", qax_pointer); -#endif - QVariant qax_result = property("VBProject"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_VBIDE_H - return *(VBIDE::VBProject**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline PowerPoint::WebOptions* Presentation::WebOptions() const -{ - PowerPoint::WebOptions* qax_pointer = 0; - qRegisterMetaType("WebOptions*", &qax_pointer); - qRegisterMetaType("WebOptions", qax_pointer); - QVariant qax_result = property("WebOptions"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::WebOptions**)qax_result.constData(); -} - -inline PowerPoint::DocumentWindows* Presentation::Windows() const -{ - PowerPoint::DocumentWindows* qax_pointer = 0; - qRegisterMetaType("DocumentWindows*", &qax_pointer); - qRegisterMetaType("DocumentWindows", qax_pointer); - QVariant qax_result = property("Windows"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::DocumentWindows**)qax_result.constData(); -} - -inline QString Presentation::WritePassword() const -{ - QVariant qax_result = property("WritePassword"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Presentation::SetWritePassword(const QString& value){ setProperty("WritePassword", QVariant(value)); } - -inline void Presentation::AddBaseline() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void Presentation::AddBaseline(const QString& FileName) -{ - void *_a[] = {0, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline PowerPoint::_Master* Presentation::AddTitleMaster() -{ - PowerPoint::_Master* qax_result = 0; - qRegisterMetaType("_Master*", &qax_result); - qRegisterMetaType("_Master", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline void Presentation::AddToFavorites() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void Presentation::ApplyTemplate(const QString& FileName) -{ - void *_a[] = {0, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline bool Presentation::CanCheckIn() -{ - bool qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); - return qax_result; -} - -inline void Presentation::CheckIn() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline void Presentation::CheckIn(bool SaveChanges) -{ - void *_a[] = {0, (void*)&SaveChanges}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); -} - -inline void Presentation::CheckIn(bool SaveChanges, const QVariant& Comments) -{ - void *_a[] = {0, (void*)&SaveChanges, (void*)&Comments}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); -} - -inline void Presentation::CheckIn(bool SaveChanges, const QVariant& Comments, const QVariant& MakePublic) -{ - void *_a[] = {0, (void*)&SaveChanges, (void*)&Comments, (void*)&MakePublic}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); -} - -inline void Presentation::Close() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); -} - -inline void Presentation::EndReview() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); -} - -inline void Presentation::Export(const QString& Path, const QString& FilterName) -{ - void *_a[] = {0, (void*)&Path, (void*)&FilterName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); -} - -inline void Presentation::Export(const QString& Path, const QString& FilterName, int ScaleWidth) -{ - void *_a[] = {0, (void*)&Path, (void*)&FilterName, (void*)&ScaleWidth}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); -} - -inline void Presentation::Export(const QString& Path, const QString& FilterName, int ScaleWidth, int ScaleHeight) -{ - void *_a[] = {0, (void*)&Path, (void*)&FilterName, (void*)&ScaleWidth, (void*)&ScaleHeight}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); -} - -inline void Presentation::FollowHyperlink(const QString& Address) -{ - void *_a[] = {0, (void*)&Address}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); -} - -inline void Presentation::FollowHyperlink(const QString& Address, const QString& SubAddress) -{ - void *_a[] = {0, (void*)&Address, (void*)&SubAddress}; - qt_metacall(QMetaObject::InvokeMetaMethod, 23, _a); -} - -inline void Presentation::FollowHyperlink(const QString& Address, const QString& SubAddress, bool NewWindow) -{ - void *_a[] = {0, (void*)&Address, (void*)&SubAddress, (void*)&NewWindow}; - qt_metacall(QMetaObject::InvokeMetaMethod, 24, _a); -} - -inline void Presentation::FollowHyperlink(const QString& Address, const QString& SubAddress, bool NewWindow, bool AddHistory) -{ - void *_a[] = {0, (void*)&Address, (void*)&SubAddress, (void*)&NewWindow, (void*)&AddHistory}; - qt_metacall(QMetaObject::InvokeMetaMethod, 25, _a); -} - -inline void Presentation::FollowHyperlink(const QString& Address, const QString& SubAddress, bool NewWindow, bool AddHistory, const QString& ExtraInfo) -{ - void *_a[] = {0, (void*)&Address, (void*)&SubAddress, (void*)&NewWindow, (void*)&AddHistory, (void*)&ExtraInfo}; - qt_metacall(QMetaObject::InvokeMetaMethod, 26, _a); -} - -inline void Presentation::FollowHyperlink(const QString& Address, const QString& SubAddress, bool NewWindow, bool AddHistory, const QString& ExtraInfo, Office::MsoExtraInfoMethod Method) -{ - void *_a[] = {0, (void*)&Address, (void*)&SubAddress, (void*)&NewWindow, (void*)&AddHistory, (void*)&ExtraInfo, (void*)&Method}; - qt_metacall(QMetaObject::InvokeMetaMethod, 27, _a); -} - -inline void Presentation::FollowHyperlink(const QString& Address, const QString& SubAddress, bool NewWindow, bool AddHistory, const QString& ExtraInfo, Office::MsoExtraInfoMethod Method, const QString& HeaderInfo) -{ - void *_a[] = {0, (void*)&Address, (void*)&SubAddress, (void*)&NewWindow, (void*)&AddHistory, (void*)&ExtraInfo, (void*)&Method, (void*)&HeaderInfo}; - qt_metacall(QMetaObject::InvokeMetaMethod, 28, _a); -} - -inline void Presentation::MakeIntoTemplate(Office::MsoTriState IsDesignTemplate) -{ - void *_a[] = {0, (void*)&IsDesignTemplate}; - qt_metacall(QMetaObject::InvokeMetaMethod, 29, _a); -} - -inline void Presentation::Merge(const QString& Path) -{ - void *_a[] = {0, (void*)&Path}; - qt_metacall(QMetaObject::InvokeMetaMethod, 30, _a); -} - -inline PowerPoint::DocumentWindow* Presentation::NewWindow() -{ - PowerPoint::DocumentWindow* qax_result = 0; - qRegisterMetaType("DocumentWindow*", &qax_result); - qRegisterMetaType("DocumentWindow", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 31, _a); - return qax_result; -} - -inline void Presentation::PrintOut() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 32, _a); -} - -inline void Presentation::PrintOut(int From) -{ - void *_a[] = {0, (void*)&From}; - qt_metacall(QMetaObject::InvokeMetaMethod, 33, _a); -} - -inline void Presentation::PrintOut(int From, int To) -{ - void *_a[] = {0, (void*)&From, (void*)&To}; - qt_metacall(QMetaObject::InvokeMetaMethod, 34, _a); -} - -inline void Presentation::PrintOut(int From, int To, const QString& PrintToFile) -{ - void *_a[] = {0, (void*)&From, (void*)&To, (void*)&PrintToFile}; - qt_metacall(QMetaObject::InvokeMetaMethod, 35, _a); -} - -inline void Presentation::PrintOut(int From, int To, const QString& PrintToFile, int Copies) -{ - void *_a[] = {0, (void*)&From, (void*)&To, (void*)&PrintToFile, (void*)&Copies}; - qt_metacall(QMetaObject::InvokeMetaMethod, 36, _a); -} - -inline void Presentation::PrintOut(int From, int To, const QString& PrintToFile, int Copies, Office::MsoTriState Collate) -{ - void *_a[] = {0, (void*)&From, (void*)&To, (void*)&PrintToFile, (void*)&Copies, (void*)&Collate}; - qt_metacall(QMetaObject::InvokeMetaMethod, 37, _a); -} - -inline void Presentation::ReloadAs(Office::MsoEncoding cp) -{ - void *_a[] = {0, (void*)&cp}; - qt_metacall(QMetaObject::InvokeMetaMethod, 38, _a); -} - -inline void Presentation::RemoveBaseline() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 39, _a); -} - -inline void Presentation::ReplyWithChanges() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 40, _a); -} - -inline void Presentation::ReplyWithChanges(bool ShowMessage) -{ - void *_a[] = {0, (void*)&ShowMessage}; - qt_metacall(QMetaObject::InvokeMetaMethod, 41, _a); -} - -inline void Presentation::Save() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 42, _a); -} - -inline void Presentation::SaveAs(const QString& FileName) -{ - void *_a[] = {0, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 43, _a); -} - -inline void Presentation::SaveAs(const QString& FileName, PowerPoint::PpSaveAsFileType FileFormat) -{ - void *_a[] = {0, (void*)&FileName, (void*)&FileFormat}; - qt_metacall(QMetaObject::InvokeMetaMethod, 44, _a); -} - -inline void Presentation::SaveAs(const QString& FileName, PowerPoint::PpSaveAsFileType FileFormat, Office::MsoTriState EmbedTrueTypeFonts) -{ - void *_a[] = {0, (void*)&FileName, (void*)&FileFormat, (void*)&EmbedTrueTypeFonts}; - qt_metacall(QMetaObject::InvokeMetaMethod, 45, _a); -} - -inline void Presentation::SaveCopyAs(const QString& FileName) -{ - void *_a[] = {0, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 46, _a); -} - -inline void Presentation::SaveCopyAs(const QString& FileName, PowerPoint::PpSaveAsFileType FileFormat) -{ - void *_a[] = {0, (void*)&FileName, (void*)&FileFormat}; - qt_metacall(QMetaObject::InvokeMetaMethod, 47, _a); -} - -inline void Presentation::SaveCopyAs(const QString& FileName, PowerPoint::PpSaveAsFileType FileFormat, Office::MsoTriState EmbedTrueTypeFonts) -{ - void *_a[] = {0, (void*)&FileName, (void*)&FileFormat, (void*)&EmbedTrueTypeFonts}; - qt_metacall(QMetaObject::InvokeMetaMethod, 48, _a); -} - -inline void Presentation::SendFaxOverInternet() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 49, _a); -} - -inline void Presentation::SendFaxOverInternet(const QString& Recipients) -{ - void *_a[] = {0, (void*)&Recipients}; - qt_metacall(QMetaObject::InvokeMetaMethod, 50, _a); -} - -inline void Presentation::SendFaxOverInternet(const QString& Recipients, const QString& Subject) -{ - void *_a[] = {0, (void*)&Recipients, (void*)&Subject}; - qt_metacall(QMetaObject::InvokeMetaMethod, 51, _a); -} - -inline void Presentation::SendFaxOverInternet(const QString& Recipients, const QString& Subject, bool ShowMessage) -{ - void *_a[] = {0, (void*)&Recipients, (void*)&Subject, (void*)&ShowMessage}; - qt_metacall(QMetaObject::InvokeMetaMethod, 52, _a); -} - -inline void Presentation::SendForReview() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 53, _a); -} - -inline void Presentation::SendForReview(const QString& Recipients) -{ - void *_a[] = {0, (void*)&Recipients}; - qt_metacall(QMetaObject::InvokeMetaMethod, 54, _a); -} - -inline void Presentation::SendForReview(const QString& Recipients, const QString& Subject) -{ - void *_a[] = {0, (void*)&Recipients, (void*)&Subject}; - qt_metacall(QMetaObject::InvokeMetaMethod, 55, _a); -} - -inline void Presentation::SendForReview(const QString& Recipients, const QString& Subject, bool ShowMessage) -{ - void *_a[] = {0, (void*)&Recipients, (void*)&Subject, (void*)&ShowMessage}; - qt_metacall(QMetaObject::InvokeMetaMethod, 56, _a); -} - -inline void Presentation::SendForReview(const QString& Recipients, const QString& Subject, bool ShowMessage, const QVariant& IncludeAttachment) -{ - void *_a[] = {0, (void*)&Recipients, (void*)&Subject, (void*)&ShowMessage, (void*)&IncludeAttachment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 57, _a); -} - -inline void Presentation::SetPasswordEncryptionOptions(const QString& PasswordEncryptionProvider, const QString& PasswordEncryptionAlgorithm, int PasswordEncryptionKeyLength, bool PasswordEncryptionFileProperties) -{ - void *_a[] = {0, (void*)&PasswordEncryptionProvider, (void*)&PasswordEncryptionAlgorithm, (void*)&PasswordEncryptionKeyLength, (void*)&PasswordEncryptionFileProperties}; - qt_metacall(QMetaObject::InvokeMetaMethod, 68, _a); -} - -inline void Presentation::SetUndoText(const QString& Text) -{ - void *_a[] = {0, (void*)&Text}; - qt_metacall(QMetaObject::InvokeMetaMethod, 72, _a); -} - -inline void Presentation::Unused() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 74, _a); -} - -inline void Presentation::UpdateLinks() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 75, _a); -} - -inline void Presentation::WebPagePreview() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 76, _a); -} - -inline void Presentation::sblt(const QString& s) -{ - void *_a[] = {0, (void*)&s}; - qt_metacall(QMetaObject::InvokeMetaMethod, 77, _a); -} - - -inline PowerPoint::Application* Hyperlinks::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int Hyperlinks::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* Hyperlinks::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* Hyperlinks::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::Hyperlink* Hyperlinks::Item(int Index) -{ - PowerPoint::Hyperlink* qax_result = 0; - qRegisterMetaType("Hyperlink*", &qax_result); - qRegisterMetaType("Hyperlink", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline QVariant Hyperlinks::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - - -inline QString Hyperlink::Address() const -{ - QVariant qax_result = property("Address"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Hyperlink::SetAddress(const QString& value){ setProperty("Address", QVariant(value)); } - -inline PowerPoint::Application* Hyperlink::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline QString Hyperlink::EmailSubject() const -{ - QVariant qax_result = property("EmailSubject"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Hyperlink::SetEmailSubject(const QString& value){ setProperty("EmailSubject", QVariant(value)); } - -inline IDispatch* Hyperlink::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString Hyperlink::ScreenTip() const -{ - QVariant qax_result = property("ScreenTip"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Hyperlink::SetScreenTip(const QString& value){ setProperty("ScreenTip", QVariant(value)); } - -inline Office::MsoTriState Hyperlink::ShowAndReturn() const -{ - QVariant qax_result = property("ShowAndReturn"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Hyperlink::SetShowAndReturn(Office::MsoTriState value){ setProperty("ShowAndReturn", QVariant(value)); } - -inline QString Hyperlink::SubAddress() const -{ - QVariant qax_result = property("SubAddress"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Hyperlink::SetSubAddress(const QString& value){ setProperty("SubAddress", QVariant(value)); } - -inline QString Hyperlink::TextToDisplay() const -{ - QVariant qax_result = property("TextToDisplay"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Hyperlink::SetTextToDisplay(const QString& value){ setProperty("TextToDisplay", QVariant(value)); } - -inline Office::MsoHyperlinkType Hyperlink::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoHyperlinkType*)qax_result.constData(); -} - -inline void Hyperlink::AddToFavorites() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void Hyperlink::CreateNewDocument(const QString& FileName, Office::MsoTriState EditNow, Office::MsoTriState Overwrite) -{ - void *_a[] = {0, (void*)&FileName, (void*)&EditNow, (void*)&Overwrite}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void Hyperlink::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void Hyperlink::Follow() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - - -inline PowerPoint::Application* PageSetup::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int PageSetup::FirstSlideNumber() const -{ - QVariant qax_result = property("FirstSlideNumber"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void PageSetup::SetFirstSlideNumber(int value){ setProperty("FirstSlideNumber", QVariant(value)); } - -inline Office::MsoOrientation PageSetup::NotesOrientation() const -{ - QVariant qax_result = property("NotesOrientation"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoOrientation*)qax_result.constData(); -} -inline void PageSetup::SetNotesOrientation(Office::MsoOrientation value){ setProperty("NotesOrientation", QVariant(value)); } - -inline IDispatch* PageSetup::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline double PageSetup::SlideHeight() const -{ - QVariant qax_result = property("SlideHeight"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void PageSetup::SetSlideHeight(double value){ setProperty("SlideHeight", QVariant(value)); } - -inline Office::MsoOrientation PageSetup::SlideOrientation() const -{ - QVariant qax_result = property("SlideOrientation"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoOrientation*)qax_result.constData(); -} -inline void PageSetup::SetSlideOrientation(Office::MsoOrientation value){ setProperty("SlideOrientation", QVariant(value)); } - -inline PowerPoint::PpSlideSizeType PageSetup::SlideSize() const -{ - QVariant qax_result = property("SlideSize"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpSlideSizeType*)qax_result.constData(); -} -inline void PageSetup::SetSlideSize(PowerPoint::PpSlideSizeType value){ setProperty("SlideSize", QVariant(value)); } - -inline double PageSetup::SlideWidth() const -{ - QVariant qax_result = property("SlideWidth"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void PageSetup::SetSlideWidth(double value){ setProperty("SlideWidth", QVariant(value)); } - - -inline PowerPoint::Application* Fonts::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int Fonts::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* Fonts::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* Fonts::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::Font* Fonts::Item(const QVariant& Index) -{ - PowerPoint::Font* qax_result = 0; - qRegisterMetaType("Font*", &qax_result); - qRegisterMetaType("Font", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline void Fonts::Replace(const QString& Original, const QString& Replacement) -{ - void *_a[] = {0, (void*)&Original, (void*)&Replacement}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline QVariant Fonts::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - - -inline PowerPoint::Application* ExtraColors::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int ExtraColors::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* ExtraColors::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* ExtraColors::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline void ExtraColors::Add(int Type) -{ - void *_a[] = {0, (void*)&Type}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline int ExtraColors::Item(int Index) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline QVariant ExtraColors::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - - -inline PowerPoint::Application* Slides::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int Slides::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* Slides::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* Slides::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::Slide* Slides::Add(int Index, PowerPoint::PpSlideLayout Layout) -{ - PowerPoint::Slide* qax_result = 0; - qRegisterMetaType("Slide*", &qax_result); - qRegisterMetaType("Slide", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index, (void*)&Layout}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline PowerPoint::Slide* Slides::FindBySlideID(int SlideID) -{ - PowerPoint::Slide* qax_result = 0; - qRegisterMetaType("Slide*", &qax_result); - qRegisterMetaType("Slide", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&SlideID}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline int Slides::InsertFromFile(const QString& FileName, int Index) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline int Slides::InsertFromFile(const QString& FileName, int Index, int SlideStart) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&Index, (void*)&SlideStart}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - -inline int Slides::InsertFromFile(const QString& FileName, int Index, int SlideStart, int SlideEnd) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&Index, (void*)&SlideStart, (void*)&SlideEnd}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline PowerPoint::Slide* Slides::Item(const QVariant& Index) -{ - PowerPoint::Slide* qax_result = 0; - qRegisterMetaType("Slide*", &qax_result); - qRegisterMetaType("Slide", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); - return qax_result; -} - -inline PowerPoint::SlideRange* Slides::Paste() -{ - PowerPoint::SlideRange* qax_result = 0; - qRegisterMetaType("SlideRange*", &qax_result); - qRegisterMetaType("SlideRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); - return qax_result; -} - -inline PowerPoint::SlideRange* Slides::Paste(int Index) -{ - PowerPoint::SlideRange* qax_result = 0; - qRegisterMetaType("SlideRange*", &qax_result); - qRegisterMetaType("SlideRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); - return qax_result; -} - -inline PowerPoint::SlideRange* Slides::Range() -{ - PowerPoint::SlideRange* qax_result = 0; - qRegisterMetaType("SlideRange*", &qax_result); - qRegisterMetaType("SlideRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); - return qax_result; -} - -inline PowerPoint::SlideRange* Slides::Range(const QVariant& Index) -{ - PowerPoint::SlideRange* qax_result = 0; - qRegisterMetaType("SlideRange*", &qax_result); - qRegisterMetaType("SlideRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); - return qax_result; -} - -inline QVariant Slides::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); - return qax_result; -} - - -inline PowerPoint::Application* _Slide::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::ShapeRange* _Slide::Background() const -{ - PowerPoint::ShapeRange* qax_pointer = 0; - qRegisterMetaType("ShapeRange*", &qax_pointer); - qRegisterMetaType("ShapeRange", qax_pointer); - QVariant qax_result = property("Background"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ShapeRange**)qax_result.constData(); -} - -inline PowerPoint::ColorScheme* _Slide::ColorScheme() const -{ - PowerPoint::ColorScheme* qax_pointer = 0; - qRegisterMetaType("ColorScheme*", &qax_pointer); - qRegisterMetaType("ColorScheme", qax_pointer); - QVariant qax_result = property("ColorScheme"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ColorScheme**)qax_result.constData(); -} -inline void _Slide::SetColorScheme(PowerPoint::ColorScheme* value){ - int typeId = qRegisterMetaType("PowerPoint::ColorScheme*", &value); - setProperty("ColorScheme", QVariant(typeId, &value)); -} - -inline PowerPoint::Comments* _Slide::Comments() const -{ - PowerPoint::Comments* qax_pointer = 0; - qRegisterMetaType("Comments*", &qax_pointer); - qRegisterMetaType("Comments", qax_pointer); - QVariant qax_result = property("Comments"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Comments**)qax_result.constData(); -} - -inline PowerPoint::Design* _Slide::Design() const -{ - PowerPoint::Design* qax_pointer = 0; - qRegisterMetaType("Design*", &qax_pointer); - qRegisterMetaType("Design", qax_pointer); - QVariant qax_result = property("Design"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Design**)qax_result.constData(); -} -inline void _Slide::SetDesign(PowerPoint::Design* value){ - int typeId = qRegisterMetaType("PowerPoint::Design*", &value); - setProperty("Design", QVariant(typeId, &value)); -} - -inline Office::MsoTriState _Slide::DisplayMasterShapes() const -{ - QVariant qax_result = property("DisplayMasterShapes"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void _Slide::SetDisplayMasterShapes(Office::MsoTriState value){ setProperty("DisplayMasterShapes", QVariant(value)); } - -inline Office::MsoTriState _Slide::FollowMasterBackground() const -{ - QVariant qax_result = property("FollowMasterBackground"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void _Slide::SetFollowMasterBackground(Office::MsoTriState value){ setProperty("FollowMasterBackground", QVariant(value)); } - -inline PowerPoint::HeadersFooters* _Slide::HeadersFooters() const -{ - PowerPoint::HeadersFooters* qax_pointer = 0; - qRegisterMetaType("HeadersFooters*", &qax_pointer); - qRegisterMetaType("HeadersFooters", qax_pointer); - QVariant qax_result = property("HeadersFooters"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::HeadersFooters**)qax_result.constData(); -} - -inline PowerPoint::Hyperlinks* _Slide::Hyperlinks() const -{ - PowerPoint::Hyperlinks* qax_pointer = 0; - qRegisterMetaType("Hyperlinks*", &qax_pointer); - qRegisterMetaType("Hyperlinks", qax_pointer); - QVariant qax_result = property("Hyperlinks"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Hyperlinks**)qax_result.constData(); -} - -inline PowerPoint::PpSlideLayout _Slide::Layout() const -{ - QVariant qax_result = property("Layout"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpSlideLayout*)qax_result.constData(); -} -inline void _Slide::SetLayout(PowerPoint::PpSlideLayout value){ setProperty("Layout", QVariant(value)); } - -inline PowerPoint::_Master* _Slide::Master() const -{ - PowerPoint::_Master* qax_pointer = 0; - qRegisterMetaType("_Master*", &qax_pointer); - qRegisterMetaType("_Master", qax_pointer); - QVariant qax_result = property("Master"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::_Master**)qax_result.constData(); -} - -inline QString _Slide::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _Slide::SetName(const QString& value){ setProperty("Name", QVariant(value)); } - -inline PowerPoint::SlideRange* _Slide::NotesPage() const -{ - PowerPoint::SlideRange* qax_pointer = 0; - qRegisterMetaType("SlideRange*", &qax_pointer); - qRegisterMetaType("SlideRange", qax_pointer); - QVariant qax_result = property("NotesPage"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SlideRange**)qax_result.constData(); -} - -inline IDispatch* _Slide::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int _Slide::PrintSteps() const -{ - QVariant qax_result = property("PrintSteps"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::Scripts* _Slide::Scripts() const -{ - Office::Scripts* qax_pointer = 0; - qRegisterMetaType("Office::Scripts*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::Scripts", qax_pointer); -#endif - QVariant qax_result = property("Scripts"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::Scripts**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline PowerPoint::Shapes* _Slide::Shapes() const -{ - PowerPoint::Shapes* qax_pointer = 0; - qRegisterMetaType("Shapes*", &qax_pointer); - qRegisterMetaType("Shapes", qax_pointer); - QVariant qax_result = property("Shapes"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Shapes**)qax_result.constData(); -} - -inline int _Slide::SlideID() const -{ - QVariant qax_result = property("SlideID"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int _Slide::SlideIndex() const -{ - QVariant qax_result = property("SlideIndex"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int _Slide::SlideNumber() const -{ - QVariant qax_result = property("SlideNumber"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline PowerPoint::SlideShowTransition* _Slide::SlideShowTransition() const -{ - PowerPoint::SlideShowTransition* qax_pointer = 0; - qRegisterMetaType("SlideShowTransition*", &qax_pointer); - qRegisterMetaType("SlideShowTransition", qax_pointer); - QVariant qax_result = property("SlideShowTransition"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SlideShowTransition**)qax_result.constData(); -} - -inline PowerPoint::Tags* _Slide::Tags() const -{ - PowerPoint::Tags* qax_pointer = 0; - qRegisterMetaType("Tags*", &qax_pointer); - qRegisterMetaType("Tags", qax_pointer); - QVariant qax_result = property("Tags"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Tags**)qax_result.constData(); -} - -inline PowerPoint::TimeLine* _Slide::TimeLine() const -{ - PowerPoint::TimeLine* qax_pointer = 0; - qRegisterMetaType("TimeLine*", &qax_pointer); - qRegisterMetaType("TimeLine", qax_pointer); - QVariant qax_result = property("TimeLine"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::TimeLine**)qax_result.constData(); -} - -inline void _Slide::ApplyTemplate(const QString& FileName) -{ - void *_a[] = {0, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void _Slide::Copy() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void _Slide::Cut() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void _Slide::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline PowerPoint::SlideRange* _Slide::Duplicate() -{ - PowerPoint::SlideRange* qax_result = 0; - qRegisterMetaType("SlideRange*", &qax_result); - qRegisterMetaType("SlideRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline void _Slide::Export(const QString& FileName, const QString& FilterName) -{ - void *_a[] = {0, (void*)&FileName, (void*)&FilterName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void _Slide::Export(const QString& FileName, const QString& FilterName, int ScaleWidth) -{ - void *_a[] = {0, (void*)&FileName, (void*)&FilterName, (void*)&ScaleWidth}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline void _Slide::Export(const QString& FileName, const QString& FilterName, int ScaleWidth, int ScaleHeight) -{ - void *_a[] = {0, (void*)&FileName, (void*)&FilterName, (void*)&ScaleWidth, (void*)&ScaleHeight}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); -} - -inline void _Slide::MoveTo(int toPos) -{ - void *_a[] = {0, (void*)&toPos}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); -} - -inline void _Slide::Select() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); -} - - -inline PowerPoint::Application* SlideRange::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::ShapeRange* SlideRange::Background() const -{ - PowerPoint::ShapeRange* qax_pointer = 0; - qRegisterMetaType("ShapeRange*", &qax_pointer); - qRegisterMetaType("ShapeRange", qax_pointer); - QVariant qax_result = property("Background"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ShapeRange**)qax_result.constData(); -} - -inline PowerPoint::ColorScheme* SlideRange::ColorScheme() const -{ - PowerPoint::ColorScheme* qax_pointer = 0; - qRegisterMetaType("ColorScheme*", &qax_pointer); - qRegisterMetaType("ColorScheme", qax_pointer); - QVariant qax_result = property("ColorScheme"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ColorScheme**)qax_result.constData(); -} -inline void SlideRange::SetColorScheme(PowerPoint::ColorScheme* value){ - int typeId = qRegisterMetaType("PowerPoint::ColorScheme*", &value); - setProperty("ColorScheme", QVariant(typeId, &value)); -} - -inline PowerPoint::Comments* SlideRange::Comments() const -{ - PowerPoint::Comments* qax_pointer = 0; - qRegisterMetaType("Comments*", &qax_pointer); - qRegisterMetaType("Comments", qax_pointer); - QVariant qax_result = property("Comments"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Comments**)qax_result.constData(); -} - -inline int SlideRange::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline PowerPoint::Design* SlideRange::Design() const -{ - PowerPoint::Design* qax_pointer = 0; - qRegisterMetaType("Design*", &qax_pointer); - qRegisterMetaType("Design", qax_pointer); - QVariant qax_result = property("Design"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Design**)qax_result.constData(); -} -inline void SlideRange::SetDesign(PowerPoint::Design* value){ - int typeId = qRegisterMetaType("PowerPoint::Design*", &value); - setProperty("Design", QVariant(typeId, &value)); -} - -inline Office::MsoTriState SlideRange::DisplayMasterShapes() const -{ - QVariant qax_result = property("DisplayMasterShapes"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void SlideRange::SetDisplayMasterShapes(Office::MsoTriState value){ setProperty("DisplayMasterShapes", QVariant(value)); } - -inline Office::MsoTriState SlideRange::FollowMasterBackground() const -{ - QVariant qax_result = property("FollowMasterBackground"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void SlideRange::SetFollowMasterBackground(Office::MsoTriState value){ setProperty("FollowMasterBackground", QVariant(value)); } - -inline PowerPoint::HeadersFooters* SlideRange::HeadersFooters() const -{ - PowerPoint::HeadersFooters* qax_pointer = 0; - qRegisterMetaType("HeadersFooters*", &qax_pointer); - qRegisterMetaType("HeadersFooters", qax_pointer); - QVariant qax_result = property("HeadersFooters"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::HeadersFooters**)qax_result.constData(); -} - -inline PowerPoint::Hyperlinks* SlideRange::Hyperlinks() const -{ - PowerPoint::Hyperlinks* qax_pointer = 0; - qRegisterMetaType("Hyperlinks*", &qax_pointer); - qRegisterMetaType("Hyperlinks", qax_pointer); - QVariant qax_result = property("Hyperlinks"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Hyperlinks**)qax_result.constData(); -} - -inline PowerPoint::PpSlideLayout SlideRange::Layout() const -{ - QVariant qax_result = property("Layout"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpSlideLayout*)qax_result.constData(); -} -inline void SlideRange::SetLayout(PowerPoint::PpSlideLayout value){ setProperty("Layout", QVariant(value)); } - -inline PowerPoint::_Master* SlideRange::Master() const -{ - PowerPoint::_Master* qax_pointer = 0; - qRegisterMetaType("_Master*", &qax_pointer); - qRegisterMetaType("_Master", qax_pointer); - QVariant qax_result = property("Master"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::_Master**)qax_result.constData(); -} - -inline QString SlideRange::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void SlideRange::SetName(const QString& value){ setProperty("Name", QVariant(value)); } - -inline PowerPoint::SlideRange* SlideRange::NotesPage() const -{ - PowerPoint::SlideRange* qax_pointer = 0; - qRegisterMetaType("SlideRange*", &qax_pointer); - qRegisterMetaType("SlideRange", qax_pointer); - QVariant qax_result = property("NotesPage"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SlideRange**)qax_result.constData(); -} - -inline IDispatch* SlideRange::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int SlideRange::PrintSteps() const -{ - QVariant qax_result = property("PrintSteps"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::Scripts* SlideRange::Scripts() const -{ - Office::Scripts* qax_pointer = 0; - qRegisterMetaType("Office::Scripts*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::Scripts", qax_pointer); -#endif - QVariant qax_result = property("Scripts"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::Scripts**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline PowerPoint::Shapes* SlideRange::Shapes() const -{ - PowerPoint::Shapes* qax_pointer = 0; - qRegisterMetaType("Shapes*", &qax_pointer); - qRegisterMetaType("Shapes", qax_pointer); - QVariant qax_result = property("Shapes"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Shapes**)qax_result.constData(); -} - -inline int SlideRange::SlideID() const -{ - QVariant qax_result = property("SlideID"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int SlideRange::SlideIndex() const -{ - QVariant qax_result = property("SlideIndex"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int SlideRange::SlideNumber() const -{ - QVariant qax_result = property("SlideNumber"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline PowerPoint::SlideShowTransition* SlideRange::SlideShowTransition() const -{ - PowerPoint::SlideShowTransition* qax_pointer = 0; - qRegisterMetaType("SlideShowTransition*", &qax_pointer); - qRegisterMetaType("SlideShowTransition", qax_pointer); - QVariant qax_result = property("SlideShowTransition"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SlideShowTransition**)qax_result.constData(); -} - -inline PowerPoint::Tags* SlideRange::Tags() const -{ - PowerPoint::Tags* qax_pointer = 0; - qRegisterMetaType("Tags*", &qax_pointer); - qRegisterMetaType("Tags", qax_pointer); - QVariant qax_result = property("Tags"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Tags**)qax_result.constData(); -} - -inline PowerPoint::TimeLine* SlideRange::TimeLine() const -{ - PowerPoint::TimeLine* qax_pointer = 0; - qRegisterMetaType("TimeLine*", &qax_pointer); - qRegisterMetaType("TimeLine", qax_pointer); - QVariant qax_result = property("TimeLine"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::TimeLine**)qax_result.constData(); -} - -inline IUnknown* SlideRange::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline void SlideRange::ApplyTemplate(const QString& FileName) -{ - void *_a[] = {0, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void SlideRange::Copy() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void SlideRange::Cut() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void SlideRange::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline PowerPoint::SlideRange* SlideRange::Duplicate() -{ - PowerPoint::SlideRange* qax_result = 0; - qRegisterMetaType("SlideRange*", &qax_result); - qRegisterMetaType("SlideRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline void SlideRange::Export(const QString& FileName, const QString& FilterName) -{ - void *_a[] = {0, (void*)&FileName, (void*)&FilterName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void SlideRange::Export(const QString& FileName, const QString& FilterName, int ScaleWidth) -{ - void *_a[] = {0, (void*)&FileName, (void*)&FilterName, (void*)&ScaleWidth}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline void SlideRange::Export(const QString& FileName, const QString& FilterName, int ScaleWidth, int ScaleHeight) -{ - void *_a[] = {0, (void*)&FileName, (void*)&FilterName, (void*)&ScaleWidth, (void*)&ScaleHeight}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); -} - -inline PowerPoint::Slide* SlideRange::Item(const QVariant& Index) -{ - PowerPoint::Slide* qax_result = 0; - qRegisterMetaType("Slide*", &qax_result); - qRegisterMetaType("Slide", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); - return qax_result; -} - -inline void SlideRange::MoveTo(int toPos) -{ - void *_a[] = {0, (void*)&toPos}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); -} - -inline void SlideRange::Select() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); -} - -inline QVariant SlideRange::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 24, _a); - return qax_result; -} - - -inline PowerPoint::Application* _Master::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::ShapeRange* _Master::Background() const -{ - PowerPoint::ShapeRange* qax_pointer = 0; - qRegisterMetaType("ShapeRange*", &qax_pointer); - qRegisterMetaType("ShapeRange", qax_pointer); - QVariant qax_result = property("Background"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ShapeRange**)qax_result.constData(); -} - -inline PowerPoint::ColorScheme* _Master::ColorScheme() const -{ - PowerPoint::ColorScheme* qax_pointer = 0; - qRegisterMetaType("ColorScheme*", &qax_pointer); - qRegisterMetaType("ColorScheme", qax_pointer); - QVariant qax_result = property("ColorScheme"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ColorScheme**)qax_result.constData(); -} -inline void _Master::SetColorScheme(PowerPoint::ColorScheme* value){ - int typeId = qRegisterMetaType("PowerPoint::ColorScheme*", &value); - setProperty("ColorScheme", QVariant(typeId, &value)); -} - -inline PowerPoint::Design* _Master::Design() const -{ - PowerPoint::Design* qax_pointer = 0; - qRegisterMetaType("Design*", &qax_pointer); - qRegisterMetaType("Design", qax_pointer); - QVariant qax_result = property("Design"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Design**)qax_result.constData(); -} - -inline PowerPoint::HeadersFooters* _Master::HeadersFooters() const -{ - PowerPoint::HeadersFooters* qax_pointer = 0; - qRegisterMetaType("HeadersFooters*", &qax_pointer); - qRegisterMetaType("HeadersFooters", qax_pointer); - QVariant qax_result = property("HeadersFooters"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::HeadersFooters**)qax_result.constData(); -} - -inline double _Master::Height() const -{ - QVariant qax_result = property("Height"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} - -inline PowerPoint::Hyperlinks* _Master::Hyperlinks() const -{ - PowerPoint::Hyperlinks* qax_pointer = 0; - qRegisterMetaType("Hyperlinks*", &qax_pointer); - qRegisterMetaType("Hyperlinks", qax_pointer); - QVariant qax_result = property("Hyperlinks"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Hyperlinks**)qax_result.constData(); -} - -inline QString _Master::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _Master::SetName(const QString& value){ setProperty("Name", QVariant(value)); } - -inline IDispatch* _Master::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::Scripts* _Master::Scripts() const -{ - Office::Scripts* qax_pointer = 0; - qRegisterMetaType("Office::Scripts*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::Scripts", qax_pointer); -#endif - QVariant qax_result = property("Scripts"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::Scripts**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline PowerPoint::Shapes* _Master::Shapes() const -{ - PowerPoint::Shapes* qax_pointer = 0; - qRegisterMetaType("Shapes*", &qax_pointer); - qRegisterMetaType("Shapes", qax_pointer); - QVariant qax_result = property("Shapes"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Shapes**)qax_result.constData(); -} - -inline PowerPoint::SlideShowTransition* _Master::SlideShowTransition() const -{ - PowerPoint::SlideShowTransition* qax_pointer = 0; - qRegisterMetaType("SlideShowTransition*", &qax_pointer); - qRegisterMetaType("SlideShowTransition", qax_pointer); - QVariant qax_result = property("SlideShowTransition"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SlideShowTransition**)qax_result.constData(); -} - -inline PowerPoint::TextStyles* _Master::TextStyles() const -{ - PowerPoint::TextStyles* qax_pointer = 0; - qRegisterMetaType("TextStyles*", &qax_pointer); - qRegisterMetaType("TextStyles", qax_pointer); - QVariant qax_result = property("TextStyles"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::TextStyles**)qax_result.constData(); -} - -inline PowerPoint::TimeLine* _Master::TimeLine() const -{ - PowerPoint::TimeLine* qax_pointer = 0; - qRegisterMetaType("TimeLine*", &qax_pointer); - qRegisterMetaType("TimeLine", qax_pointer); - QVariant qax_result = property("TimeLine"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::TimeLine**)qax_result.constData(); -} - -inline double _Master::Width() const -{ - QVariant qax_result = property("Width"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} - -inline void _Master::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline PowerPoint::Application* Slide::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::ShapeRange* Slide::Background() const -{ - PowerPoint::ShapeRange* qax_pointer = 0; - qRegisterMetaType("ShapeRange*", &qax_pointer); - qRegisterMetaType("ShapeRange", qax_pointer); - QVariant qax_result = property("Background"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ShapeRange**)qax_result.constData(); -} - -inline PowerPoint::ColorScheme* Slide::ColorScheme() const -{ - PowerPoint::ColorScheme* qax_pointer = 0; - qRegisterMetaType("ColorScheme*", &qax_pointer); - qRegisterMetaType("ColorScheme", qax_pointer); - QVariant qax_result = property("ColorScheme"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ColorScheme**)qax_result.constData(); -} -inline void Slide::SetColorScheme(PowerPoint::ColorScheme* value){ - int typeId = qRegisterMetaType("PowerPoint::ColorScheme*", &value); - setProperty("ColorScheme", QVariant(typeId, &value)); -} - -inline PowerPoint::Comments* Slide::Comments() const -{ - PowerPoint::Comments* qax_pointer = 0; - qRegisterMetaType("Comments*", &qax_pointer); - qRegisterMetaType("Comments", qax_pointer); - QVariant qax_result = property("Comments"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Comments**)qax_result.constData(); -} - -inline PowerPoint::Design* Slide::Design() const -{ - PowerPoint::Design* qax_pointer = 0; - qRegisterMetaType("Design*", &qax_pointer); - qRegisterMetaType("Design", qax_pointer); - QVariant qax_result = property("Design"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Design**)qax_result.constData(); -} -inline void Slide::SetDesign(PowerPoint::Design* value){ - int typeId = qRegisterMetaType("PowerPoint::Design*", &value); - setProperty("Design", QVariant(typeId, &value)); -} - -inline Office::MsoTriState Slide::DisplayMasterShapes() const -{ - QVariant qax_result = property("DisplayMasterShapes"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Slide::SetDisplayMasterShapes(Office::MsoTriState value){ setProperty("DisplayMasterShapes", QVariant(value)); } - -inline Office::MsoTriState Slide::FollowMasterBackground() const -{ - QVariant qax_result = property("FollowMasterBackground"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Slide::SetFollowMasterBackground(Office::MsoTriState value){ setProperty("FollowMasterBackground", QVariant(value)); } - -inline PowerPoint::HeadersFooters* Slide::HeadersFooters() const -{ - PowerPoint::HeadersFooters* qax_pointer = 0; - qRegisterMetaType("HeadersFooters*", &qax_pointer); - qRegisterMetaType("HeadersFooters", qax_pointer); - QVariant qax_result = property("HeadersFooters"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::HeadersFooters**)qax_result.constData(); -} - -inline PowerPoint::Hyperlinks* Slide::Hyperlinks() const -{ - PowerPoint::Hyperlinks* qax_pointer = 0; - qRegisterMetaType("Hyperlinks*", &qax_pointer); - qRegisterMetaType("Hyperlinks", qax_pointer); - QVariant qax_result = property("Hyperlinks"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Hyperlinks**)qax_result.constData(); -} - -inline PowerPoint::PpSlideLayout Slide::Layout() const -{ - QVariant qax_result = property("Layout"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpSlideLayout*)qax_result.constData(); -} -inline void Slide::SetLayout(PowerPoint::PpSlideLayout value){ setProperty("Layout", QVariant(value)); } - -inline PowerPoint::_Master* Slide::Master() const -{ - PowerPoint::_Master* qax_pointer = 0; - qRegisterMetaType("_Master*", &qax_pointer); - qRegisterMetaType("_Master", qax_pointer); - QVariant qax_result = property("Master"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::_Master**)qax_result.constData(); -} - -inline QString Slide::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Slide::SetName(const QString& value){ setProperty("Name", QVariant(value)); } - -inline PowerPoint::SlideRange* Slide::NotesPage() const -{ - PowerPoint::SlideRange* qax_pointer = 0; - qRegisterMetaType("SlideRange*", &qax_pointer); - qRegisterMetaType("SlideRange", qax_pointer); - QVariant qax_result = property("NotesPage"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SlideRange**)qax_result.constData(); -} - -inline IDispatch* Slide::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int Slide::PrintSteps() const -{ - QVariant qax_result = property("PrintSteps"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::Scripts* Slide::Scripts() const -{ - Office::Scripts* qax_pointer = 0; - qRegisterMetaType("Office::Scripts*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::Scripts", qax_pointer); -#endif - QVariant qax_result = property("Scripts"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::Scripts**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline PowerPoint::Shapes* Slide::Shapes() const -{ - PowerPoint::Shapes* qax_pointer = 0; - qRegisterMetaType("Shapes*", &qax_pointer); - qRegisterMetaType("Shapes", qax_pointer); - QVariant qax_result = property("Shapes"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Shapes**)qax_result.constData(); -} - -inline int Slide::SlideID() const -{ - QVariant qax_result = property("SlideID"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int Slide::SlideIndex() const -{ - QVariant qax_result = property("SlideIndex"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int Slide::SlideNumber() const -{ - QVariant qax_result = property("SlideNumber"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline PowerPoint::SlideShowTransition* Slide::SlideShowTransition() const -{ - PowerPoint::SlideShowTransition* qax_pointer = 0; - qRegisterMetaType("SlideShowTransition*", &qax_pointer); - qRegisterMetaType("SlideShowTransition", qax_pointer); - QVariant qax_result = property("SlideShowTransition"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SlideShowTransition**)qax_result.constData(); -} - -inline PowerPoint::Tags* Slide::Tags() const -{ - PowerPoint::Tags* qax_pointer = 0; - qRegisterMetaType("Tags*", &qax_pointer); - qRegisterMetaType("Tags", qax_pointer); - QVariant qax_result = property("Tags"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Tags**)qax_result.constData(); -} - -inline PowerPoint::TimeLine* Slide::TimeLine() const -{ - PowerPoint::TimeLine* qax_pointer = 0; - qRegisterMetaType("TimeLine*", &qax_pointer); - qRegisterMetaType("TimeLine", qax_pointer); - QVariant qax_result = property("TimeLine"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::TimeLine**)qax_result.constData(); -} - -inline void Slide::ApplyTemplate(const QString& FileName) -{ - void *_a[] = {0, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void Slide::Copy() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void Slide::Cut() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void Slide::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline PowerPoint::SlideRange* Slide::Duplicate() -{ - PowerPoint::SlideRange* qax_result = 0; - qRegisterMetaType("SlideRange*", &qax_result); - qRegisterMetaType("SlideRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline void Slide::Export(const QString& FileName, const QString& FilterName) -{ - void *_a[] = {0, (void*)&FileName, (void*)&FilterName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void Slide::Export(const QString& FileName, const QString& FilterName, int ScaleWidth) -{ - void *_a[] = {0, (void*)&FileName, (void*)&FilterName, (void*)&ScaleWidth}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline void Slide::Export(const QString& FileName, const QString& FilterName, int ScaleWidth, int ScaleHeight) -{ - void *_a[] = {0, (void*)&FileName, (void*)&FilterName, (void*)&ScaleWidth, (void*)&ScaleHeight}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); -} - -inline void Slide::MoveTo(int toPos) -{ - void *_a[] = {0, (void*)&toPos}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); -} - -inline void Slide::Select() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); -} - - -inline PowerPoint::Application* ColorSchemes::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int ColorSchemes::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* ColorSchemes::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* ColorSchemes::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::ColorScheme* ColorSchemes::Add() -{ - PowerPoint::ColorScheme* qax_result = 0; - qRegisterMetaType("ColorScheme*", &qax_result); - qRegisterMetaType("ColorScheme", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline PowerPoint::ColorScheme* ColorSchemes::Add(PowerPoint::ColorScheme* Scheme) -{ - PowerPoint::ColorScheme* qax_result = 0; - qRegisterMetaType("ColorScheme*", &qax_result); - qRegisterMetaType("ColorScheme", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Scheme}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline PowerPoint::ColorScheme* ColorSchemes::Item(int Index) -{ - PowerPoint::ColorScheme* qax_result = 0; - qRegisterMetaType("ColorScheme*", &qax_result); - qRegisterMetaType("ColorScheme", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline QVariant ColorSchemes::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - - -inline PowerPoint::Application* ColorScheme::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int ColorScheme::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* ColorScheme::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* ColorScheme::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::RGBColor* ColorScheme::Colors(PowerPoint::PpColorSchemeIndex SchemeColor) -{ - PowerPoint::RGBColor* qax_result = 0; - qRegisterMetaType("RGBColor*", &qax_result); - qRegisterMetaType("RGBColor", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&SchemeColor}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline void ColorScheme::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline QVariant ColorScheme::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - - -inline PowerPoint::Application* RGBColor::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline IDispatch* RGBColor::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int RGBColor::RGB() const -{ - QVariant qax_result = property("RGB"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void RGBColor::SetRGB(int value){ setProperty("RGB", QVariant(value)); } - - -inline Office::MsoTriState SlideShowTransition::AdvanceOnClick() const -{ - QVariant qax_result = property("AdvanceOnClick"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void SlideShowTransition::SetAdvanceOnClick(Office::MsoTriState value){ setProperty("AdvanceOnClick", QVariant(value)); } - -inline Office::MsoTriState SlideShowTransition::AdvanceOnTime() const -{ - QVariant qax_result = property("AdvanceOnTime"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void SlideShowTransition::SetAdvanceOnTime(Office::MsoTriState value){ setProperty("AdvanceOnTime", QVariant(value)); } - -inline double SlideShowTransition::AdvanceTime() const -{ - QVariant qax_result = property("AdvanceTime"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void SlideShowTransition::SetAdvanceTime(double value){ setProperty("AdvanceTime", QVariant(value)); } - -inline PowerPoint::Application* SlideShowTransition::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::PpEntryEffect SlideShowTransition::EntryEffect() const -{ - QVariant qax_result = property("EntryEffect"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpEntryEffect*)qax_result.constData(); -} -inline void SlideShowTransition::SetEntryEffect(PowerPoint::PpEntryEffect value){ setProperty("EntryEffect", QVariant(value)); } - -inline Office::MsoTriState SlideShowTransition::Hidden() const -{ - QVariant qax_result = property("Hidden"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void SlideShowTransition::SetHidden(Office::MsoTriState value){ setProperty("Hidden", QVariant(value)); } - -inline Office::MsoTriState SlideShowTransition::LoopSoundUntilNext() const -{ - QVariant qax_result = property("LoopSoundUntilNext"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void SlideShowTransition::SetLoopSoundUntilNext(Office::MsoTriState value){ setProperty("LoopSoundUntilNext", QVariant(value)); } - -inline IDispatch* SlideShowTransition::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::SoundEffect* SlideShowTransition::SoundEffect() const -{ - PowerPoint::SoundEffect* qax_pointer = 0; - qRegisterMetaType("SoundEffect*", &qax_pointer); - qRegisterMetaType("SoundEffect", qax_pointer); - QVariant qax_result = property("SoundEffect"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SoundEffect**)qax_result.constData(); -} - -inline PowerPoint::PpTransitionSpeed SlideShowTransition::Speed() const -{ - QVariant qax_result = property("Speed"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpTransitionSpeed*)qax_result.constData(); -} -inline void SlideShowTransition::SetSpeed(PowerPoint::PpTransitionSpeed value){ setProperty("Speed", QVariant(value)); } - - -inline PowerPoint::Application* SoundEffect::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline QString SoundEffect::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void SoundEffect::SetName(const QString& value){ setProperty("Name", QVariant(value)); } - -inline IDispatch* SoundEffect::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::PpSoundEffectType SoundEffect::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpSoundEffectType*)qax_result.constData(); -} -inline void SoundEffect::SetType(PowerPoint::PpSoundEffectType value){ setProperty("Type", QVariant(value)); } - -inline void SoundEffect::ImportFromFile(const QString& FileName) -{ - void *_a[] = {0, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void SoundEffect::Play() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - - -inline QString SoundFormat::SourceFullName() const -{ - QVariant qax_result = property("SourceFullName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline PowerPoint::PpSoundFormatType SoundFormat::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpSoundFormatType*)qax_result.constData(); -} - -inline PpSoundFormatType SoundFormat::Export(const QString& FileName) -{ - PpSoundFormatType qax_result; - void *_a[] = {(void*)&qax_result, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline void SoundFormat::Import(const QString& FileName) -{ - void *_a[] = {0, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void SoundFormat::Play() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - - -inline PowerPoint::Application* HeadersFooters::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::HeaderFooter* HeadersFooters::DateAndTime() const -{ - PowerPoint::HeaderFooter* qax_pointer = 0; - qRegisterMetaType("HeaderFooter*", &qax_pointer); - qRegisterMetaType("HeaderFooter", qax_pointer); - QVariant qax_result = property("DateAndTime"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::HeaderFooter**)qax_result.constData(); -} - -inline Office::MsoTriState HeadersFooters::DisplayOnTitleSlide() const -{ - QVariant qax_result = property("DisplayOnTitleSlide"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void HeadersFooters::SetDisplayOnTitleSlide(Office::MsoTriState value){ setProperty("DisplayOnTitleSlide", QVariant(value)); } - -inline PowerPoint::HeaderFooter* HeadersFooters::Footer() const -{ - PowerPoint::HeaderFooter* qax_pointer = 0; - qRegisterMetaType("HeaderFooter*", &qax_pointer); - qRegisterMetaType("HeaderFooter", qax_pointer); - QVariant qax_result = property("Footer"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::HeaderFooter**)qax_result.constData(); -} - -inline PowerPoint::HeaderFooter* HeadersFooters::Header() const -{ - PowerPoint::HeaderFooter* qax_pointer = 0; - qRegisterMetaType("HeaderFooter*", &qax_pointer); - qRegisterMetaType("HeaderFooter", qax_pointer); - QVariant qax_result = property("Header"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::HeaderFooter**)qax_result.constData(); -} - -inline IDispatch* HeadersFooters::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::HeaderFooter* HeadersFooters::SlideNumber() const -{ - PowerPoint::HeaderFooter* qax_pointer = 0; - qRegisterMetaType("HeaderFooter*", &qax_pointer); - qRegisterMetaType("HeaderFooter", qax_pointer); - QVariant qax_result = property("SlideNumber"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::HeaderFooter**)qax_result.constData(); -} - -inline void HeadersFooters::Clear() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline IDispatch* Shapes::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int Shapes::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int Shapes::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoTriState Shapes::HasTitle() const -{ - QVariant qax_result = property("HasTitle"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline IDispatch* Shapes::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::Placeholders* Shapes::Placeholders() const -{ - PowerPoint::Placeholders* qax_pointer = 0; - qRegisterMetaType("Placeholders*", &qax_pointer); - qRegisterMetaType("Placeholders", qax_pointer); - QVariant qax_result = property("Placeholders"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Placeholders**)qax_result.constData(); -} - -inline PowerPoint::Shape* Shapes::Title() const -{ - PowerPoint::Shape* qax_pointer = 0; - qRegisterMetaType("Shape*", &qax_pointer); - qRegisterMetaType("Shape", qax_pointer); - QVariant qax_result = property("Title"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Shape**)qax_result.constData(); -} - -inline IUnknown* Shapes::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::Shape* Shapes::AddCallout(Office::MsoCalloutType Type, double Left, double Top, double Width, double Height) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddCanvas(double Left, double Top, double Width, double Height) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddComment() -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddComment(double Left) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Left}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddComment(double Left, double Top) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Left, (void*)&Top}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddComment(double Left, double Top, double Width) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Left, (void*)&Top, (void*)&Width}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddComment(double Left, double Top, double Width, double Height) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddConnector(Office::MsoConnectorType Type, double BeginX, double BeginY, double EndX, double EndY) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&BeginX, (void*)&BeginY, (void*)&EndX, (void*)&EndY}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddCurve(const QVariant& SafeArrayOfPoints) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&SafeArrayOfPoints}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddDiagram(Office::MsoDiagramType Type, double Left, double Top, double Width, double Height) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddLabel(Office::MsoTextOrientation Orientation, double Left, double Top, double Width, double Height) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Orientation, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddLine(double BeginX, double BeginY, double EndX, double EndY) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&BeginX, (void*)&BeginY, (void*)&EndX, (void*)&EndY}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddMediaObject(const QString& FileName) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddMediaObject(const QString& FileName, double Left) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&Left}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddMediaObject(const QString& FileName, double Left, double Top) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&Left, (void*)&Top}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddMediaObject(const QString& FileName, double Left, double Top, double Width) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&Left, (void*)&Top, (void*)&Width}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddMediaObject(const QString& FileName, double Left, double Top, double Width, double Height) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 23, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddOLEObject() -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 24, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddOLEObject(double Left) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Left}; - qt_metacall(QMetaObject::InvokeMetaMethod, 25, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddOLEObject(double Left, double Top) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Left, (void*)&Top}; - qt_metacall(QMetaObject::InvokeMetaMethod, 26, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddOLEObject(double Left, double Top, double Width) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Left, (void*)&Top, (void*)&Width}; - qt_metacall(QMetaObject::InvokeMetaMethod, 27, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddOLEObject(double Left, double Top, double Width, double Height) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 28, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddOLEObject(double Left, double Top, double Width, double Height, const QString& ClassName) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height, (void*)&ClassName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 29, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddOLEObject(double Left, double Top, double Width, double Height, const QString& ClassName, const QString& FileName) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height, (void*)&ClassName, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 30, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddOLEObject(double Left, double Top, double Width, double Height, const QString& ClassName, const QString& FileName, Office::MsoTriState DisplayAsIcon) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height, (void*)&ClassName, (void*)&FileName, (void*)&DisplayAsIcon}; - qt_metacall(QMetaObject::InvokeMetaMethod, 31, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddOLEObject(double Left, double Top, double Width, double Height, const QString& ClassName, const QString& FileName, Office::MsoTriState DisplayAsIcon, const QString& IconFileName) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height, (void*)&ClassName, (void*)&FileName, (void*)&DisplayAsIcon, (void*)&IconFileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 32, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddOLEObject(double Left, double Top, double Width, double Height, const QString& ClassName, const QString& FileName, Office::MsoTriState DisplayAsIcon, const QString& IconFileName, int IconIndex) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height, (void*)&ClassName, (void*)&FileName, (void*)&DisplayAsIcon, (void*)&IconFileName, (void*)&IconIndex}; - qt_metacall(QMetaObject::InvokeMetaMethod, 33, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddOLEObject(double Left, double Top, double Width, double Height, const QString& ClassName, const QString& FileName, Office::MsoTriState DisplayAsIcon, const QString& IconFileName, int IconIndex, const QString& IconLabel) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height, (void*)&ClassName, (void*)&FileName, (void*)&DisplayAsIcon, (void*)&IconFileName, (void*)&IconIndex, (void*)&IconLabel}; - qt_metacall(QMetaObject::InvokeMetaMethod, 34, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddOLEObject(double Left, double Top, double Width, double Height, const QString& ClassName, const QString& FileName, Office::MsoTriState DisplayAsIcon, const QString& IconFileName, int IconIndex, const QString& IconLabel, Office::MsoTriState Link) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height, (void*)&ClassName, (void*)&FileName, (void*)&DisplayAsIcon, (void*)&IconFileName, (void*)&IconIndex, (void*)&IconLabel, (void*)&Link}; - qt_metacall(QMetaObject::InvokeMetaMethod, 35, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddPicture(const QString& FileName, Office::MsoTriState LinkToFile, Office::MsoTriState SaveWithDocument, double Left, double Top) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&LinkToFile, (void*)&SaveWithDocument, (void*)&Left, (void*)&Top}; - qt_metacall(QMetaObject::InvokeMetaMethod, 36, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddPicture(const QString& FileName, Office::MsoTriState LinkToFile, Office::MsoTriState SaveWithDocument, double Left, double Top, double Width) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&LinkToFile, (void*)&SaveWithDocument, (void*)&Left, (void*)&Top, (void*)&Width}; - qt_metacall(QMetaObject::InvokeMetaMethod, 37, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddPicture(const QString& FileName, Office::MsoTriState LinkToFile, Office::MsoTriState SaveWithDocument, double Left, double Top, double Width, double Height) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&LinkToFile, (void*)&SaveWithDocument, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 38, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddPlaceholder(PowerPoint::PpPlaceholderType Type) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type}; - qt_metacall(QMetaObject::InvokeMetaMethod, 39, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddPlaceholder(PowerPoint::PpPlaceholderType Type, double Left) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Left}; - qt_metacall(QMetaObject::InvokeMetaMethod, 40, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddPlaceholder(PowerPoint::PpPlaceholderType Type, double Left, double Top) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Left, (void*)&Top}; - qt_metacall(QMetaObject::InvokeMetaMethod, 41, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddPlaceholder(PowerPoint::PpPlaceholderType Type, double Left, double Top, double Width) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Left, (void*)&Top, (void*)&Width}; - qt_metacall(QMetaObject::InvokeMetaMethod, 42, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddPlaceholder(PowerPoint::PpPlaceholderType Type, double Left, double Top, double Width, double Height) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 43, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddPolyline(const QVariant& SafeArrayOfPoints) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&SafeArrayOfPoints}; - qt_metacall(QMetaObject::InvokeMetaMethod, 44, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddShape(Office::MsoAutoShapeType Type, double Left, double Top, double Width, double Height) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 45, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddTable(int NumRows, int NumColumns) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&NumRows, (void*)&NumColumns}; - qt_metacall(QMetaObject::InvokeMetaMethod, 46, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddTable(int NumRows, int NumColumns, double Left) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&NumRows, (void*)&NumColumns, (void*)&Left}; - qt_metacall(QMetaObject::InvokeMetaMethod, 47, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddTable(int NumRows, int NumColumns, double Left, double Top) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&NumRows, (void*)&NumColumns, (void*)&Left, (void*)&Top}; - qt_metacall(QMetaObject::InvokeMetaMethod, 48, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddTable(int NumRows, int NumColumns, double Left, double Top, double Width) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&NumRows, (void*)&NumColumns, (void*)&Left, (void*)&Top, (void*)&Width}; - qt_metacall(QMetaObject::InvokeMetaMethod, 49, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddTable(int NumRows, int NumColumns, double Left, double Top, double Width, double Height) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&NumRows, (void*)&NumColumns, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 50, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddTextEffect(Office::MsoPresetTextEffect PresetTextEffect, const QString& Text, const QString& FontName, double FontSize, Office::MsoTriState FontBold, Office::MsoTriState FontItalic, double Left, double Top) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&PresetTextEffect, (void*)&Text, (void*)&FontName, (void*)&FontSize, (void*)&FontBold, (void*)&FontItalic, (void*)&Left, (void*)&Top}; - qt_metacall(QMetaObject::InvokeMetaMethod, 51, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddTextbox(Office::MsoTextOrientation Orientation, double Left, double Top, double Width, double Height) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Orientation, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 52, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::AddTitle() -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 53, _a); - return qax_result; -} - -inline PowerPoint::FreeformBuilder* Shapes::BuildFreeform(Office::MsoEditingType EditingType, double X1, double Y1) -{ - PowerPoint::FreeformBuilder* qax_result = 0; - qRegisterMetaType("FreeformBuilder*", &qax_result); - qRegisterMetaType("FreeformBuilder", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&EditingType, (void*)&X1, (void*)&Y1}; - qt_metacall(QMetaObject::InvokeMetaMethod, 54, _a); - return qax_result; -} - -inline PowerPoint::Shape* Shapes::Item(const QVariant& Index) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 55, _a); - return qax_result; -} - -inline PowerPoint::ShapeRange* Shapes::Paste() -{ - PowerPoint::ShapeRange* qax_result = 0; - qRegisterMetaType("ShapeRange*", &qax_result); - qRegisterMetaType("ShapeRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 56, _a); - return qax_result; -} - -inline PowerPoint::ShapeRange* Shapes::PasteSpecial() -{ - PowerPoint::ShapeRange* qax_result = 0; - qRegisterMetaType("ShapeRange*", &qax_result); - qRegisterMetaType("ShapeRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 57, _a); - return qax_result; -} - -inline PowerPoint::ShapeRange* Shapes::PasteSpecial(PowerPoint::PpPasteDataType DataType) -{ - PowerPoint::ShapeRange* qax_result = 0; - qRegisterMetaType("ShapeRange*", &qax_result); - qRegisterMetaType("ShapeRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&DataType}; - qt_metacall(QMetaObject::InvokeMetaMethod, 58, _a); - return qax_result; -} - -inline PowerPoint::ShapeRange* Shapes::PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon) -{ - PowerPoint::ShapeRange* qax_result = 0; - qRegisterMetaType("ShapeRange*", &qax_result); - qRegisterMetaType("ShapeRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&DataType, (void*)&DisplayAsIcon}; - qt_metacall(QMetaObject::InvokeMetaMethod, 59, _a); - return qax_result; -} - -inline PowerPoint::ShapeRange* Shapes::PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon, const QString& IconFileName) -{ - PowerPoint::ShapeRange* qax_result = 0; - qRegisterMetaType("ShapeRange*", &qax_result); - qRegisterMetaType("ShapeRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&DataType, (void*)&DisplayAsIcon, (void*)&IconFileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 60, _a); - return qax_result; -} - -inline PowerPoint::ShapeRange* Shapes::PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon, const QString& IconFileName, int IconIndex) -{ - PowerPoint::ShapeRange* qax_result = 0; - qRegisterMetaType("ShapeRange*", &qax_result); - qRegisterMetaType("ShapeRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&DataType, (void*)&DisplayAsIcon, (void*)&IconFileName, (void*)&IconIndex}; - qt_metacall(QMetaObject::InvokeMetaMethod, 61, _a); - return qax_result; -} - -inline PowerPoint::ShapeRange* Shapes::PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon, const QString& IconFileName, int IconIndex, const QString& IconLabel) -{ - PowerPoint::ShapeRange* qax_result = 0; - qRegisterMetaType("ShapeRange*", &qax_result); - qRegisterMetaType("ShapeRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&DataType, (void*)&DisplayAsIcon, (void*)&IconFileName, (void*)&IconIndex, (void*)&IconLabel}; - qt_metacall(QMetaObject::InvokeMetaMethod, 62, _a); - return qax_result; -} - -inline PowerPoint::ShapeRange* Shapes::PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon, const QString& IconFileName, int IconIndex, const QString& IconLabel, Office::MsoTriState Link) -{ - PowerPoint::ShapeRange* qax_result = 0; - qRegisterMetaType("ShapeRange*", &qax_result); - qRegisterMetaType("ShapeRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&DataType, (void*)&DisplayAsIcon, (void*)&IconFileName, (void*)&IconIndex, (void*)&IconLabel, (void*)&Link}; - qt_metacall(QMetaObject::InvokeMetaMethod, 63, _a); - return qax_result; -} - -inline PowerPoint::ShapeRange* Shapes::Range() -{ - PowerPoint::ShapeRange* qax_result = 0; - qRegisterMetaType("ShapeRange*", &qax_result); - qRegisterMetaType("ShapeRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 64, _a); - return qax_result; -} - -inline PowerPoint::ShapeRange* Shapes::Range(const QVariant& Index) -{ - PowerPoint::ShapeRange* qax_result = 0; - qRegisterMetaType("ShapeRange*", &qax_result); - qRegisterMetaType("ShapeRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 65, _a); - return qax_result; -} - -inline void Shapes::SelectAll() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 66, _a); -} - - -inline PowerPoint::Application* Placeholders::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int Placeholders::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* Placeholders::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* Placeholders::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::Shape* Placeholders::Item(int Index) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline QVariant Placeholders::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - - -inline PowerPoint::Application* PlaceholderFormat::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline IDispatch* PlaceholderFormat::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::PpPlaceholderType PlaceholderFormat::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpPlaceholderType*)qax_result.constData(); -} - - -inline IDispatch* FreeformBuilder::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int FreeformBuilder::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* FreeformBuilder::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline void FreeformBuilder::AddNodes(Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1) -{ - void *_a[] = {0, (void*)&SegmentType, (void*)&EditingType, (void*)&X1, (void*)&Y1}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void FreeformBuilder::AddNodes(Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2) -{ - void *_a[] = {0, (void*)&SegmentType, (void*)&EditingType, (void*)&X1, (void*)&Y1, (void*)&X2}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void FreeformBuilder::AddNodes(Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2, double Y2) -{ - void *_a[] = {0, (void*)&SegmentType, (void*)&EditingType, (void*)&X1, (void*)&Y1, (void*)&X2, (void*)&Y2}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void FreeformBuilder::AddNodes(Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2, double Y2, double X3) -{ - void *_a[] = {0, (void*)&SegmentType, (void*)&EditingType, (void*)&X1, (void*)&Y1, (void*)&X2, (void*)&Y2, (void*)&X3}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void FreeformBuilder::AddNodes(Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2, double Y2, double X3, double Y3) -{ - void *_a[] = {0, (void*)&SegmentType, (void*)&EditingType, (void*)&X1, (void*)&Y1, (void*)&X2, (void*)&Y2, (void*)&X3, (void*)&Y3}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline PowerPoint::Shape* FreeformBuilder::ConvertToShape() -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); - return qax_result; -} - - -inline PowerPoint::ActionSettings* Shape::ActionSettings() const -{ - PowerPoint::ActionSettings* qax_pointer = 0; - qRegisterMetaType("ActionSettings*", &qax_pointer); - qRegisterMetaType("ActionSettings", qax_pointer); - QVariant qax_result = property("ActionSettings"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ActionSettings**)qax_result.constData(); -} - -inline PowerPoint::Adjustments* Shape::Adjustments() const -{ - PowerPoint::Adjustments* qax_pointer = 0; - qRegisterMetaType("Adjustments*", &qax_pointer); - qRegisterMetaType("Adjustments", qax_pointer); - QVariant qax_result = property("Adjustments"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Adjustments**)qax_result.constData(); -} - -inline QString Shape::AlternativeText() const -{ - QVariant qax_result = property("AlternativeText"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Shape::SetAlternativeText(const QString& value){ setProperty("AlternativeText", QVariant(value)); } - -inline PowerPoint::AnimationSettings* Shape::AnimationSettings() const -{ - PowerPoint::AnimationSettings* qax_pointer = 0; - qRegisterMetaType("AnimationSettings*", &qax_pointer); - qRegisterMetaType("AnimationSettings", qax_pointer); - QVariant qax_result = property("AnimationSettings"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::AnimationSettings**)qax_result.constData(); -} - -inline IDispatch* Shape::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoAutoShapeType Shape::AutoShapeType() const -{ - QVariant qax_result = property("AutoShapeType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoAutoShapeType*)qax_result.constData(); -} -inline void Shape::SetAutoShapeType(Office::MsoAutoShapeType value){ setProperty("AutoShapeType", QVariant(value)); } - -inline Office::MsoBlackWhiteMode Shape::BlackWhiteMode() const -{ - QVariant qax_result = property("BlackWhiteMode"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoBlackWhiteMode*)qax_result.constData(); -} -inline void Shape::SetBlackWhiteMode(Office::MsoBlackWhiteMode value){ setProperty("BlackWhiteMode", QVariant(value)); } - -inline PowerPoint::CalloutFormat* Shape::Callout() const -{ - PowerPoint::CalloutFormat* qax_pointer = 0; - qRegisterMetaType("CalloutFormat*", &qax_pointer); - qRegisterMetaType("CalloutFormat", qax_pointer); - QVariant qax_result = property("Callout"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::CalloutFormat**)qax_result.constData(); -} - -inline PowerPoint::CanvasShapes* Shape::CanvasItems() const -{ - PowerPoint::CanvasShapes* qax_pointer = 0; - qRegisterMetaType("CanvasShapes*", &qax_pointer); - qRegisterMetaType("CanvasShapes", qax_pointer); - QVariant qax_result = property("CanvasItems"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::CanvasShapes**)qax_result.constData(); -} - -inline Office::MsoTriState Shape::Child() const -{ - QVariant qax_result = property("Child"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline int Shape::ConnectionSiteCount() const -{ - QVariant qax_result = property("ConnectionSiteCount"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoTriState Shape::Connector() const -{ - QVariant qax_result = property("Connector"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline PowerPoint::ConnectorFormat* Shape::ConnectorFormat() const -{ - PowerPoint::ConnectorFormat* qax_pointer = 0; - qRegisterMetaType("ConnectorFormat*", &qax_pointer); - qRegisterMetaType("ConnectorFormat", qax_pointer); - QVariant qax_result = property("ConnectorFormat"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ConnectorFormat**)qax_result.constData(); -} - -inline int Shape::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline PowerPoint::Diagram* Shape::Diagram() const -{ - PowerPoint::Diagram* qax_pointer = 0; - qRegisterMetaType("Diagram*", &qax_pointer); - qRegisterMetaType("Diagram", qax_pointer); - QVariant qax_result = property("Diagram"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Diagram**)qax_result.constData(); -} - -inline PowerPoint::DiagramNode* Shape::DiagramNode() const -{ - PowerPoint::DiagramNode* qax_pointer = 0; - qRegisterMetaType("DiagramNode*", &qax_pointer); - qRegisterMetaType("DiagramNode", qax_pointer); - QVariant qax_result = property("DiagramNode"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::DiagramNode**)qax_result.constData(); -} - -inline PowerPoint::FillFormat* Shape::Fill() const -{ - PowerPoint::FillFormat* qax_pointer = 0; - qRegisterMetaType("FillFormat*", &qax_pointer); - qRegisterMetaType("FillFormat", qax_pointer); - QVariant qax_result = property("Fill"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::FillFormat**)qax_result.constData(); -} - -inline PowerPoint::GroupShapes* Shape::GroupItems() const -{ - PowerPoint::GroupShapes* qax_pointer = 0; - qRegisterMetaType("GroupShapes*", &qax_pointer); - qRegisterMetaType("GroupShapes", qax_pointer); - QVariant qax_result = property("GroupItems"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::GroupShapes**)qax_result.constData(); -} - -inline Office::MsoTriState Shape::HasDiagram() const -{ - QVariant qax_result = property("HasDiagram"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline Office::MsoTriState Shape::HasDiagramNode() const -{ - QVariant qax_result = property("HasDiagramNode"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline Office::MsoTriState Shape::HasTable() const -{ - QVariant qax_result = property("HasTable"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline Office::MsoTriState Shape::HasTextFrame() const -{ - QVariant qax_result = property("HasTextFrame"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline double Shape::Height() const -{ - QVariant qax_result = property("Height"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Shape::SetHeight(double value){ setProperty("Height", QVariant(value)); } - -inline Office::MsoTriState Shape::HorizontalFlip() const -{ - QVariant qax_result = property("HorizontalFlip"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline int Shape::Id() const -{ - QVariant qax_result = property("Id"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline double Shape::Left() const -{ - QVariant qax_result = property("Left"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Shape::SetLeft(double value){ setProperty("Left", QVariant(value)); } - -inline PowerPoint::LineFormat* Shape::Line() const -{ - PowerPoint::LineFormat* qax_pointer = 0; - qRegisterMetaType("LineFormat*", &qax_pointer); - qRegisterMetaType("LineFormat", qax_pointer); - QVariant qax_result = property("Line"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::LineFormat**)qax_result.constData(); -} - -inline PowerPoint::LinkFormat* Shape::LinkFormat() const -{ - PowerPoint::LinkFormat* qax_pointer = 0; - qRegisterMetaType("LinkFormat*", &qax_pointer); - qRegisterMetaType("LinkFormat", qax_pointer); - QVariant qax_result = property("LinkFormat"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::LinkFormat**)qax_result.constData(); -} - -inline Office::MsoTriState Shape::LockAspectRatio() const -{ - QVariant qax_result = property("LockAspectRatio"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Shape::SetLockAspectRatio(Office::MsoTriState value){ setProperty("LockAspectRatio", QVariant(value)); } - -inline PowerPoint::PpMediaType Shape::MediaType() const -{ - QVariant qax_result = property("MediaType"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpMediaType*)qax_result.constData(); -} - -inline QString Shape::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Shape::SetName(const QString& value){ setProperty("Name", QVariant(value)); } - -inline PowerPoint::ShapeNodes* Shape::Nodes() const -{ - PowerPoint::ShapeNodes* qax_pointer = 0; - qRegisterMetaType("ShapeNodes*", &qax_pointer); - qRegisterMetaType("ShapeNodes", qax_pointer); - QVariant qax_result = property("Nodes"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ShapeNodes**)qax_result.constData(); -} - -inline PowerPoint::OLEFormat* Shape::OLEFormat() const -{ - PowerPoint::OLEFormat* qax_pointer = 0; - qRegisterMetaType("OLEFormat*", &qax_pointer); - qRegisterMetaType("OLEFormat", qax_pointer); - QVariant qax_result = property("OLEFormat"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::OLEFormat**)qax_result.constData(); -} - -inline IDispatch* Shape::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::Shape* Shape::ParentGroup() const -{ - PowerPoint::Shape* qax_pointer = 0; - qRegisterMetaType("Shape*", &qax_pointer); - qRegisterMetaType("Shape", qax_pointer); - QVariant qax_result = property("ParentGroup"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Shape**)qax_result.constData(); -} - -inline PowerPoint::PictureFormat* Shape::PictureFormat() const -{ - PowerPoint::PictureFormat* qax_pointer = 0; - qRegisterMetaType("PictureFormat*", &qax_pointer); - qRegisterMetaType("PictureFormat", qax_pointer); - QVariant qax_result = property("PictureFormat"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PictureFormat**)qax_result.constData(); -} - -inline PowerPoint::PlaceholderFormat* Shape::PlaceholderFormat() const -{ - PowerPoint::PlaceholderFormat* qax_pointer = 0; - qRegisterMetaType("PlaceholderFormat*", &qax_pointer); - qRegisterMetaType("PlaceholderFormat", qax_pointer); - QVariant qax_result = property("PlaceholderFormat"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PlaceholderFormat**)qax_result.constData(); -} - -inline QString Shape::RTF() const -{ - QVariant qax_result = property("RTF"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Shape::SetRTF(const QString& value){ setProperty("RTF", QVariant(value)); } - -inline double Shape::Rotation() const -{ - QVariant qax_result = property("Rotation"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Shape::SetRotation(double value){ setProperty("Rotation", QVariant(value)); } - -inline Office::Script* Shape::Script() const -{ - Office::Script* qax_pointer = 0; - qRegisterMetaType("Office::Script*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::Script", qax_pointer); -#endif - QVariant qax_result = property("Script"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::Script**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline PowerPoint::ShadowFormat* Shape::Shadow() const -{ - PowerPoint::ShadowFormat* qax_pointer = 0; - qRegisterMetaType("ShadowFormat*", &qax_pointer); - qRegisterMetaType("ShadowFormat", qax_pointer); - QVariant qax_result = property("Shadow"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ShadowFormat**)qax_result.constData(); -} - -inline PowerPoint::SoundFormat* Shape::SoundFormat() const -{ - PowerPoint::SoundFormat* qax_pointer = 0; - qRegisterMetaType("SoundFormat*", &qax_pointer); - qRegisterMetaType("SoundFormat", qax_pointer); - QVariant qax_result = property("SoundFormat"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SoundFormat**)qax_result.constData(); -} - -inline PowerPoint::Table* Shape::Table() const -{ - PowerPoint::Table* qax_pointer = 0; - qRegisterMetaType("Table*", &qax_pointer); - qRegisterMetaType("Table", qax_pointer); - QVariant qax_result = property("Table"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Table**)qax_result.constData(); -} - -inline PowerPoint::Tags* Shape::Tags() const -{ - PowerPoint::Tags* qax_pointer = 0; - qRegisterMetaType("Tags*", &qax_pointer); - qRegisterMetaType("Tags", qax_pointer); - QVariant qax_result = property("Tags"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Tags**)qax_result.constData(); -} - -inline PowerPoint::TextEffectFormat* Shape::TextEffect() const -{ - PowerPoint::TextEffectFormat* qax_pointer = 0; - qRegisterMetaType("TextEffectFormat*", &qax_pointer); - qRegisterMetaType("TextEffectFormat", qax_pointer); - QVariant qax_result = property("TextEffect"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::TextEffectFormat**)qax_result.constData(); -} - -inline PowerPoint::TextFrame* Shape::TextFrame() const -{ - PowerPoint::TextFrame* qax_pointer = 0; - qRegisterMetaType("TextFrame*", &qax_pointer); - qRegisterMetaType("TextFrame", qax_pointer); - QVariant qax_result = property("TextFrame"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::TextFrame**)qax_result.constData(); -} - -inline PowerPoint::ThreeDFormat* Shape::ThreeD() const -{ - PowerPoint::ThreeDFormat* qax_pointer = 0; - qRegisterMetaType("ThreeDFormat*", &qax_pointer); - qRegisterMetaType("ThreeDFormat", qax_pointer); - QVariant qax_result = property("ThreeD"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ThreeDFormat**)qax_result.constData(); -} - -inline double Shape::Top() const -{ - QVariant qax_result = property("Top"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Shape::SetTop(double value){ setProperty("Top", QVariant(value)); } - -inline Office::MsoShapeType Shape::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoShapeType*)qax_result.constData(); -} - -inline Office::MsoTriState Shape::VerticalFlip() const -{ - QVariant qax_result = property("VerticalFlip"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline QVariant Shape::Vertices() const -{ - QVariant qax_result = property("Vertices"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline Office::MsoTriState Shape::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Shape::SetVisible(Office::MsoTriState value){ setProperty("Visible", QVariant(value)); } - -inline double Shape::Width() const -{ - QVariant qax_result = property("Width"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Shape::SetWidth(double value){ setProperty("Width", QVariant(value)); } - -inline int Shape::ZOrderPosition() const -{ - QVariant qax_result = property("ZOrderPosition"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline void Shape::Apply() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void Shape::CanvasCropBottom(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void Shape::CanvasCropLeft(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void Shape::CanvasCropRight(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void Shape::CanvasCropTop(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline void Shape::Copy() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void Shape::Cut() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline void Shape::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); -} - -inline PowerPoint::ShapeRange* Shape::Duplicate() -{ - PowerPoint::ShapeRange* qax_result = 0; - qRegisterMetaType("ShapeRange*", &qax_result); - qRegisterMetaType("ShapeRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); - return qax_result; -} - -inline void Shape::Export(const QString& PathName, PowerPoint::PpShapeFormat Filter) -{ - void *_a[] = {0, (void*)&PathName, (void*)&Filter}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); -} - -inline void Shape::Export(const QString& PathName, PowerPoint::PpShapeFormat Filter, int ScaleWidth) -{ - void *_a[] = {0, (void*)&PathName, (void*)&Filter, (void*)&ScaleWidth}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); -} - -inline void Shape::Export(const QString& PathName, PowerPoint::PpShapeFormat Filter, int ScaleWidth, int ScaleHeight) -{ - void *_a[] = {0, (void*)&PathName, (void*)&Filter, (void*)&ScaleWidth, (void*)&ScaleHeight}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); -} - -inline void Shape::Export(const QString& PathName, PowerPoint::PpShapeFormat Filter, int ScaleWidth, int ScaleHeight, PowerPoint::PpExportMode ExportMode) -{ - void *_a[] = {0, (void*)&PathName, (void*)&Filter, (void*)&ScaleWidth, (void*)&ScaleHeight, (void*)&ExportMode}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); -} - -inline void Shape::Flip(Office::MsoFlipCmd FlipCmd) -{ - void *_a[] = {0, (void*)&FlipCmd}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); -} - -inline void Shape::IncrementLeft(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); -} - -inline void Shape::IncrementRotation(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); -} - -inline void Shape::IncrementTop(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 23, _a); -} - -inline void Shape::PickUp() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 24, _a); -} - -inline void Shape::RerouteConnections() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 25, _a); -} - -inline void Shape::ScaleHeight(double Factor, Office::MsoTriState RelativeToOriginalSize) -{ - void *_a[] = {0, (void*)&Factor, (void*)&RelativeToOriginalSize}; - qt_metacall(QMetaObject::InvokeMetaMethod, 26, _a); -} - -inline void Shape::ScaleHeight(double Factor, Office::MsoTriState RelativeToOriginalSize, Office::MsoScaleFrom fScale) -{ - void *_a[] = {0, (void*)&Factor, (void*)&RelativeToOriginalSize, (void*)&fScale}; - qt_metacall(QMetaObject::InvokeMetaMethod, 27, _a); -} - -inline void Shape::ScaleWidth(double Factor, Office::MsoTriState RelativeToOriginalSize) -{ - void *_a[] = {0, (void*)&Factor, (void*)&RelativeToOriginalSize}; - qt_metacall(QMetaObject::InvokeMetaMethod, 28, _a); -} - -inline void Shape::ScaleWidth(double Factor, Office::MsoTriState RelativeToOriginalSize, Office::MsoScaleFrom fScale) -{ - void *_a[] = {0, (void*)&Factor, (void*)&RelativeToOriginalSize, (void*)&fScale}; - qt_metacall(QMetaObject::InvokeMetaMethod, 29, _a); -} - -inline void Shape::Select() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 30, _a); -} - -inline void Shape::Select(Office::MsoTriState Replace) -{ - void *_a[] = {0, (void*)&Replace}; - qt_metacall(QMetaObject::InvokeMetaMethod, 31, _a); -} - -inline void Shape::SetShapesDefaultProperties() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 41, _a); -} - -inline PowerPoint::ShapeRange* Shape::Ungroup() -{ - PowerPoint::ShapeRange* qax_result = 0; - qRegisterMetaType("ShapeRange*", &qax_result); - qRegisterMetaType("ShapeRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 45, _a); - return qax_result; -} - -inline void Shape::ZOrder(Office::MsoZOrderCmd ZOrderCmd) -{ - void *_a[] = {0, (void*)&ZOrderCmd}; - qt_metacall(QMetaObject::InvokeMetaMethod, 46, _a); -} - - -inline PowerPoint::ActionSettings* ShapeRange::ActionSettings() const -{ - PowerPoint::ActionSettings* qax_pointer = 0; - qRegisterMetaType("ActionSettings*", &qax_pointer); - qRegisterMetaType("ActionSettings", qax_pointer); - QVariant qax_result = property("ActionSettings"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ActionSettings**)qax_result.constData(); -} - -inline PowerPoint::Adjustments* ShapeRange::Adjustments() const -{ - PowerPoint::Adjustments* qax_pointer = 0; - qRegisterMetaType("Adjustments*", &qax_pointer); - qRegisterMetaType("Adjustments", qax_pointer); - QVariant qax_result = property("Adjustments"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Adjustments**)qax_result.constData(); -} - -inline QString ShapeRange::AlternativeText() const -{ - QVariant qax_result = property("AlternativeText"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void ShapeRange::SetAlternativeText(const QString& value){ setProperty("AlternativeText", QVariant(value)); } - -inline PowerPoint::AnimationSettings* ShapeRange::AnimationSettings() const -{ - PowerPoint::AnimationSettings* qax_pointer = 0; - qRegisterMetaType("AnimationSettings*", &qax_pointer); - qRegisterMetaType("AnimationSettings", qax_pointer); - QVariant qax_result = property("AnimationSettings"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::AnimationSettings**)qax_result.constData(); -} - -inline IDispatch* ShapeRange::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoAutoShapeType ShapeRange::AutoShapeType() const -{ - QVariant qax_result = property("AutoShapeType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoAutoShapeType*)qax_result.constData(); -} -inline void ShapeRange::SetAutoShapeType(Office::MsoAutoShapeType value){ setProperty("AutoShapeType", QVariant(value)); } - -inline Office::MsoBlackWhiteMode ShapeRange::BlackWhiteMode() const -{ - QVariant qax_result = property("BlackWhiteMode"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoBlackWhiteMode*)qax_result.constData(); -} -inline void ShapeRange::SetBlackWhiteMode(Office::MsoBlackWhiteMode value){ setProperty("BlackWhiteMode", QVariant(value)); } - -inline PowerPoint::CalloutFormat* ShapeRange::Callout() const -{ - PowerPoint::CalloutFormat* qax_pointer = 0; - qRegisterMetaType("CalloutFormat*", &qax_pointer); - qRegisterMetaType("CalloutFormat", qax_pointer); - QVariant qax_result = property("Callout"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::CalloutFormat**)qax_result.constData(); -} - -inline PowerPoint::CanvasShapes* ShapeRange::CanvasItems() const -{ - PowerPoint::CanvasShapes* qax_pointer = 0; - qRegisterMetaType("CanvasShapes*", &qax_pointer); - qRegisterMetaType("CanvasShapes", qax_pointer); - QVariant qax_result = property("CanvasItems"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::CanvasShapes**)qax_result.constData(); -} - -inline Office::MsoTriState ShapeRange::Child() const -{ - QVariant qax_result = property("Child"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline int ShapeRange::ConnectionSiteCount() const -{ - QVariant qax_result = property("ConnectionSiteCount"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoTriState ShapeRange::Connector() const -{ - QVariant qax_result = property("Connector"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline PowerPoint::ConnectorFormat* ShapeRange::ConnectorFormat() const -{ - PowerPoint::ConnectorFormat* qax_pointer = 0; - qRegisterMetaType("ConnectorFormat*", &qax_pointer); - qRegisterMetaType("ConnectorFormat", qax_pointer); - QVariant qax_result = property("ConnectorFormat"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ConnectorFormat**)qax_result.constData(); -} - -inline int ShapeRange::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int ShapeRange::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline PowerPoint::Diagram* ShapeRange::Diagram() const -{ - PowerPoint::Diagram* qax_pointer = 0; - qRegisterMetaType("Diagram*", &qax_pointer); - qRegisterMetaType("Diagram", qax_pointer); - QVariant qax_result = property("Diagram"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Diagram**)qax_result.constData(); -} - -inline PowerPoint::DiagramNode* ShapeRange::DiagramNode() const -{ - PowerPoint::DiagramNode* qax_pointer = 0; - qRegisterMetaType("DiagramNode*", &qax_pointer); - qRegisterMetaType("DiagramNode", qax_pointer); - QVariant qax_result = property("DiagramNode"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::DiagramNode**)qax_result.constData(); -} - -inline PowerPoint::FillFormat* ShapeRange::Fill() const -{ - PowerPoint::FillFormat* qax_pointer = 0; - qRegisterMetaType("FillFormat*", &qax_pointer); - qRegisterMetaType("FillFormat", qax_pointer); - QVariant qax_result = property("Fill"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::FillFormat**)qax_result.constData(); -} - -inline PowerPoint::GroupShapes* ShapeRange::GroupItems() const -{ - PowerPoint::GroupShapes* qax_pointer = 0; - qRegisterMetaType("GroupShapes*", &qax_pointer); - qRegisterMetaType("GroupShapes", qax_pointer); - QVariant qax_result = property("GroupItems"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::GroupShapes**)qax_result.constData(); -} - -inline Office::MsoTriState ShapeRange::HasDiagram() const -{ - QVariant qax_result = property("HasDiagram"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline Office::MsoTriState ShapeRange::HasDiagramNode() const -{ - QVariant qax_result = property("HasDiagramNode"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline Office::MsoTriState ShapeRange::HasTable() const -{ - QVariant qax_result = property("HasTable"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline Office::MsoTriState ShapeRange::HasTextFrame() const -{ - QVariant qax_result = property("HasTextFrame"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline double ShapeRange::Height() const -{ - QVariant qax_result = property("Height"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ShapeRange::SetHeight(double value){ setProperty("Height", QVariant(value)); } - -inline Office::MsoTriState ShapeRange::HorizontalFlip() const -{ - QVariant qax_result = property("HorizontalFlip"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline int ShapeRange::Id() const -{ - QVariant qax_result = property("Id"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline double ShapeRange::Left() const -{ - QVariant qax_result = property("Left"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ShapeRange::SetLeft(double value){ setProperty("Left", QVariant(value)); } - -inline PowerPoint::LineFormat* ShapeRange::Line() const -{ - PowerPoint::LineFormat* qax_pointer = 0; - qRegisterMetaType("LineFormat*", &qax_pointer); - qRegisterMetaType("LineFormat", qax_pointer); - QVariant qax_result = property("Line"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::LineFormat**)qax_result.constData(); -} - -inline PowerPoint::LinkFormat* ShapeRange::LinkFormat() const -{ - PowerPoint::LinkFormat* qax_pointer = 0; - qRegisterMetaType("LinkFormat*", &qax_pointer); - qRegisterMetaType("LinkFormat", qax_pointer); - QVariant qax_result = property("LinkFormat"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::LinkFormat**)qax_result.constData(); -} - -inline Office::MsoTriState ShapeRange::LockAspectRatio() const -{ - QVariant qax_result = property("LockAspectRatio"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void ShapeRange::SetLockAspectRatio(Office::MsoTriState value){ setProperty("LockAspectRatio", QVariant(value)); } - -inline PowerPoint::PpMediaType ShapeRange::MediaType() const -{ - QVariant qax_result = property("MediaType"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpMediaType*)qax_result.constData(); -} - -inline QString ShapeRange::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void ShapeRange::SetName(const QString& value){ setProperty("Name", QVariant(value)); } - -inline PowerPoint::ShapeNodes* ShapeRange::Nodes() const -{ - PowerPoint::ShapeNodes* qax_pointer = 0; - qRegisterMetaType("ShapeNodes*", &qax_pointer); - qRegisterMetaType("ShapeNodes", qax_pointer); - QVariant qax_result = property("Nodes"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ShapeNodes**)qax_result.constData(); -} - -inline PowerPoint::OLEFormat* ShapeRange::OLEFormat() const -{ - PowerPoint::OLEFormat* qax_pointer = 0; - qRegisterMetaType("OLEFormat*", &qax_pointer); - qRegisterMetaType("OLEFormat", qax_pointer); - QVariant qax_result = property("OLEFormat"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::OLEFormat**)qax_result.constData(); -} - -inline IDispatch* ShapeRange::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::Shape* ShapeRange::ParentGroup() const -{ - PowerPoint::Shape* qax_pointer = 0; - qRegisterMetaType("Shape*", &qax_pointer); - qRegisterMetaType("Shape", qax_pointer); - QVariant qax_result = property("ParentGroup"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Shape**)qax_result.constData(); -} - -inline PowerPoint::PictureFormat* ShapeRange::PictureFormat() const -{ - PowerPoint::PictureFormat* qax_pointer = 0; - qRegisterMetaType("PictureFormat*", &qax_pointer); - qRegisterMetaType("PictureFormat", qax_pointer); - QVariant qax_result = property("PictureFormat"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PictureFormat**)qax_result.constData(); -} - -inline PowerPoint::PlaceholderFormat* ShapeRange::PlaceholderFormat() const -{ - PowerPoint::PlaceholderFormat* qax_pointer = 0; - qRegisterMetaType("PlaceholderFormat*", &qax_pointer); - qRegisterMetaType("PlaceholderFormat", qax_pointer); - QVariant qax_result = property("PlaceholderFormat"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PlaceholderFormat**)qax_result.constData(); -} - -inline QString ShapeRange::RTF() const -{ - QVariant qax_result = property("RTF"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void ShapeRange::SetRTF(const QString& value){ setProperty("RTF", QVariant(value)); } - -inline double ShapeRange::Rotation() const -{ - QVariant qax_result = property("Rotation"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ShapeRange::SetRotation(double value){ setProperty("Rotation", QVariant(value)); } - -inline Office::Script* ShapeRange::Script() const -{ - Office::Script* qax_pointer = 0; - qRegisterMetaType("Office::Script*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::Script", qax_pointer); -#endif - QVariant qax_result = property("Script"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::Script**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline PowerPoint::ShadowFormat* ShapeRange::Shadow() const -{ - PowerPoint::ShadowFormat* qax_pointer = 0; - qRegisterMetaType("ShadowFormat*", &qax_pointer); - qRegisterMetaType("ShadowFormat", qax_pointer); - QVariant qax_result = property("Shadow"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ShadowFormat**)qax_result.constData(); -} - -inline PowerPoint::SoundFormat* ShapeRange::SoundFormat() const -{ - PowerPoint::SoundFormat* qax_pointer = 0; - qRegisterMetaType("SoundFormat*", &qax_pointer); - qRegisterMetaType("SoundFormat", qax_pointer); - QVariant qax_result = property("SoundFormat"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SoundFormat**)qax_result.constData(); -} - -inline PowerPoint::Table* ShapeRange::Table() const -{ - PowerPoint::Table* qax_pointer = 0; - qRegisterMetaType("Table*", &qax_pointer); - qRegisterMetaType("Table", qax_pointer); - QVariant qax_result = property("Table"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Table**)qax_result.constData(); -} - -inline PowerPoint::Tags* ShapeRange::Tags() const -{ - PowerPoint::Tags* qax_pointer = 0; - qRegisterMetaType("Tags*", &qax_pointer); - qRegisterMetaType("Tags", qax_pointer); - QVariant qax_result = property("Tags"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Tags**)qax_result.constData(); -} - -inline PowerPoint::TextEffectFormat* ShapeRange::TextEffect() const -{ - PowerPoint::TextEffectFormat* qax_pointer = 0; - qRegisterMetaType("TextEffectFormat*", &qax_pointer); - qRegisterMetaType("TextEffectFormat", qax_pointer); - QVariant qax_result = property("TextEffect"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::TextEffectFormat**)qax_result.constData(); -} - -inline PowerPoint::TextFrame* ShapeRange::TextFrame() const -{ - PowerPoint::TextFrame* qax_pointer = 0; - qRegisterMetaType("TextFrame*", &qax_pointer); - qRegisterMetaType("TextFrame", qax_pointer); - QVariant qax_result = property("TextFrame"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::TextFrame**)qax_result.constData(); -} - -inline PowerPoint::ThreeDFormat* ShapeRange::ThreeD() const -{ - PowerPoint::ThreeDFormat* qax_pointer = 0; - qRegisterMetaType("ThreeDFormat*", &qax_pointer); - qRegisterMetaType("ThreeDFormat", qax_pointer); - QVariant qax_result = property("ThreeD"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ThreeDFormat**)qax_result.constData(); -} - -inline double ShapeRange::Top() const -{ - QVariant qax_result = property("Top"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ShapeRange::SetTop(double value){ setProperty("Top", QVariant(value)); } - -inline Office::MsoShapeType ShapeRange::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoShapeType*)qax_result.constData(); -} - -inline Office::MsoTriState ShapeRange::VerticalFlip() const -{ - QVariant qax_result = property("VerticalFlip"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline QVariant ShapeRange::Vertices() const -{ - QVariant qax_result = property("Vertices"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline Office::MsoTriState ShapeRange::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void ShapeRange::SetVisible(Office::MsoTriState value){ setProperty("Visible", QVariant(value)); } - -inline double ShapeRange::Width() const -{ - QVariant qax_result = property("Width"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ShapeRange::SetWidth(double value){ setProperty("Width", QVariant(value)); } - -inline int ShapeRange::ZOrderPosition() const -{ - QVariant qax_result = property("ZOrderPosition"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IUnknown* ShapeRange::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline void ShapeRange::Align(Office::MsoAlignCmd AlignCmd, Office::MsoTriState RelativeTo) -{ - void *_a[] = {0, (void*)&AlignCmd, (void*)&RelativeTo}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void ShapeRange::Apply() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void ShapeRange::CanvasCropBottom(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void ShapeRange::CanvasCropLeft(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void ShapeRange::CanvasCropRight(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline void ShapeRange::CanvasCropTop(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void ShapeRange::Copy() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline void ShapeRange::Cut() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); -} - -inline void ShapeRange::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); -} - -inline void ShapeRange::Distribute(Office::MsoDistributeCmd DistributeCmd, Office::MsoTriState RelativeTo) -{ - void *_a[] = {0, (void*)&DistributeCmd, (void*)&RelativeTo}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); -} - -inline PowerPoint::ShapeRange* ShapeRange::Duplicate() -{ - PowerPoint::ShapeRange* qax_result = 0; - qRegisterMetaType("ShapeRange*", &qax_result); - qRegisterMetaType("ShapeRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); - return qax_result; -} - -inline void ShapeRange::Export(const QString& PathName, PowerPoint::PpShapeFormat Filter) -{ - void *_a[] = {0, (void*)&PathName, (void*)&Filter}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); -} - -inline void ShapeRange::Export(const QString& PathName, PowerPoint::PpShapeFormat Filter, int ScaleWidth) -{ - void *_a[] = {0, (void*)&PathName, (void*)&Filter, (void*)&ScaleWidth}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); -} - -inline void ShapeRange::Export(const QString& PathName, PowerPoint::PpShapeFormat Filter, int ScaleWidth, int ScaleHeight) -{ - void *_a[] = {0, (void*)&PathName, (void*)&Filter, (void*)&ScaleWidth, (void*)&ScaleHeight}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); -} - -inline void ShapeRange::Export(const QString& PathName, PowerPoint::PpShapeFormat Filter, int ScaleWidth, int ScaleHeight, PowerPoint::PpExportMode ExportMode) -{ - void *_a[] = {0, (void*)&PathName, (void*)&Filter, (void*)&ScaleWidth, (void*)&ScaleHeight, (void*)&ExportMode}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); -} - -inline void ShapeRange::Flip(Office::MsoFlipCmd FlipCmd) -{ - void *_a[] = {0, (void*)&FlipCmd}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); -} - -inline void ShapeRange::GetPolygonalRepresentation(uint maxPointsInBuffer, double& pPoints, uint& numPointsInPolygon, Office::MsoTriState*& IsOpen) -{ - void *_a[] = {0, (void*)&maxPointsInBuffer, (void*)&pPoints, (void*)&numPointsInPolygon, (void*)&IsOpen}; - qt_metacall(QMetaObject::InvokeMetaMethod, 23, _a); -} - -inline PowerPoint::Shape* ShapeRange::Group() -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 24, _a); - return qax_result; -} - -inline void ShapeRange::IncrementLeft(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 25, _a); -} - -inline void ShapeRange::IncrementRotation(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 26, _a); -} - -inline void ShapeRange::IncrementTop(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 27, _a); -} - -inline PowerPoint::Shape* ShapeRange::Item(const QVariant& Index) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 28, _a); - return qax_result; -} - -inline void ShapeRange::PickUp() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 29, _a); -} - -inline PowerPoint::Shape* ShapeRange::Regroup() -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 30, _a); - return qax_result; -} - -inline void ShapeRange::RerouteConnections() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 31, _a); -} - -inline void ShapeRange::ScaleHeight(double Factor, Office::MsoTriState RelativeToOriginalSize) -{ - void *_a[] = {0, (void*)&Factor, (void*)&RelativeToOriginalSize}; - qt_metacall(QMetaObject::InvokeMetaMethod, 32, _a); -} - -inline void ShapeRange::ScaleHeight(double Factor, Office::MsoTriState RelativeToOriginalSize, Office::MsoScaleFrom fScale) -{ - void *_a[] = {0, (void*)&Factor, (void*)&RelativeToOriginalSize, (void*)&fScale}; - qt_metacall(QMetaObject::InvokeMetaMethod, 33, _a); -} - -inline void ShapeRange::ScaleWidth(double Factor, Office::MsoTriState RelativeToOriginalSize) -{ - void *_a[] = {0, (void*)&Factor, (void*)&RelativeToOriginalSize}; - qt_metacall(QMetaObject::InvokeMetaMethod, 34, _a); -} - -inline void ShapeRange::ScaleWidth(double Factor, Office::MsoTriState RelativeToOriginalSize, Office::MsoScaleFrom fScale) -{ - void *_a[] = {0, (void*)&Factor, (void*)&RelativeToOriginalSize, (void*)&fScale}; - qt_metacall(QMetaObject::InvokeMetaMethod, 35, _a); -} - -inline void ShapeRange::Select() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 36, _a); -} - -inline void ShapeRange::Select(Office::MsoTriState Replace) -{ - void *_a[] = {0, (void*)&Replace}; - qt_metacall(QMetaObject::InvokeMetaMethod, 37, _a); -} - -inline void ShapeRange::SetShapesDefaultProperties() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 47, _a); -} - -inline PowerPoint::ShapeRange* ShapeRange::Ungroup() -{ - PowerPoint::ShapeRange* qax_result = 0; - qRegisterMetaType("ShapeRange*", &qax_result); - qRegisterMetaType("ShapeRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 51, _a); - return qax_result; -} - -inline void ShapeRange::ZOrder(Office::MsoZOrderCmd ZOrderCmd) -{ - void *_a[] = {0, (void*)&ZOrderCmd}; - qt_metacall(QMetaObject::InvokeMetaMethod, 52, _a); -} - -inline QVariant ShapeRange::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 53, _a); - return qax_result; -} - - -inline IDispatch* GroupShapes::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int GroupShapes::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int GroupShapes::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* GroupShapes::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* GroupShapes::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::Shape* GroupShapes::Item(const QVariant& Index) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline PowerPoint::ShapeRange* GroupShapes::Range(const QVariant& Index) -{ - PowerPoint::ShapeRange* qax_result = 0; - qRegisterMetaType("ShapeRange*", &qax_result); - qRegisterMetaType("ShapeRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - - -inline IDispatch* Adjustments::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int Adjustments::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int Adjustments::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* Adjustments::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline double Adjustments::Item(int Index) -{ - double qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline int Adjustments::SetItem(int Index, double rhs) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index, (void*)&rhs}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - - -inline IDispatch* PictureFormat::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline double PictureFormat::Brightness() const -{ - QVariant qax_result = property("Brightness"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void PictureFormat::SetBrightness(double value){ setProperty("Brightness", QVariant(value)); } - -inline Office::MsoPictureColorType PictureFormat::ColorType() const -{ - QVariant qax_result = property("ColorType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoPictureColorType*)qax_result.constData(); -} -inline void PictureFormat::SetColorType(Office::MsoPictureColorType value){ setProperty("ColorType", QVariant(value)); } - -inline double PictureFormat::Contrast() const -{ - QVariant qax_result = property("Contrast"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void PictureFormat::SetContrast(double value){ setProperty("Contrast", QVariant(value)); } - -inline int PictureFormat::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline double PictureFormat::CropBottom() const -{ - QVariant qax_result = property("CropBottom"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void PictureFormat::SetCropBottom(double value){ setProperty("CropBottom", QVariant(value)); } - -inline double PictureFormat::CropLeft() const -{ - QVariant qax_result = property("CropLeft"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void PictureFormat::SetCropLeft(double value){ setProperty("CropLeft", QVariant(value)); } - -inline double PictureFormat::CropRight() const -{ - QVariant qax_result = property("CropRight"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void PictureFormat::SetCropRight(double value){ setProperty("CropRight", QVariant(value)); } - -inline double PictureFormat::CropTop() const -{ - QVariant qax_result = property("CropTop"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void PictureFormat::SetCropTop(double value){ setProperty("CropTop", QVariant(value)); } - -inline IDispatch* PictureFormat::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int PictureFormat::TransparencyColor() const -{ - QVariant qax_result = property("TransparencyColor"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void PictureFormat::SetTransparencyColor(int value){ setProperty("TransparencyColor", QVariant(value)); } - -inline Office::MsoTriState PictureFormat::TransparentBackground() const -{ - QVariant qax_result = property("TransparentBackground"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void PictureFormat::SetTransparentBackground(Office::MsoTriState value){ setProperty("TransparentBackground", QVariant(value)); } - -inline void PictureFormat::IncrementBrightness(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void PictureFormat::IncrementContrast(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - - -inline IDispatch* FillFormat::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::ColorFormat* FillFormat::BackColor() const -{ - PowerPoint::ColorFormat* qax_pointer = 0; - qRegisterMetaType("ColorFormat*", &qax_pointer); - qRegisterMetaType("ColorFormat", qax_pointer); - QVariant qax_result = property("BackColor"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ColorFormat**)qax_result.constData(); -} -inline void FillFormat::SetBackColor(PowerPoint::ColorFormat* value){ - int typeId = qRegisterMetaType("PowerPoint::ColorFormat*", &value); - setProperty("BackColor", QVariant(typeId, &value)); -} - -inline int FillFormat::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline PowerPoint::ColorFormat* FillFormat::ForeColor() const -{ - PowerPoint::ColorFormat* qax_pointer = 0; - qRegisterMetaType("ColorFormat*", &qax_pointer); - qRegisterMetaType("ColorFormat", qax_pointer); - QVariant qax_result = property("ForeColor"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ColorFormat**)qax_result.constData(); -} -inline void FillFormat::SetForeColor(PowerPoint::ColorFormat* value){ - int typeId = qRegisterMetaType("PowerPoint::ColorFormat*", &value); - setProperty("ForeColor", QVariant(typeId, &value)); -} - -inline Office::MsoGradientColorType FillFormat::GradientColorType() const -{ - QVariant qax_result = property("GradientColorType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoGradientColorType*)qax_result.constData(); -} - -inline double FillFormat::GradientDegree() const -{ - QVariant qax_result = property("GradientDegree"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} - -inline Office::MsoGradientStyle FillFormat::GradientStyle() const -{ - QVariant qax_result = property("GradientStyle"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoGradientStyle*)qax_result.constData(); -} - -inline int FillFormat::GradientVariant() const -{ - QVariant qax_result = property("GradientVariant"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* FillFormat::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoPatternType FillFormat::Pattern() const -{ - QVariant qax_result = property("Pattern"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoPatternType*)qax_result.constData(); -} - -inline Office::MsoPresetGradientType FillFormat::PresetGradientType() const -{ - QVariant qax_result = property("PresetGradientType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoPresetGradientType*)qax_result.constData(); -} - -inline Office::MsoPresetTexture FillFormat::PresetTexture() const -{ - QVariant qax_result = property("PresetTexture"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoPresetTexture*)qax_result.constData(); -} - -inline QString FillFormat::TextureName() const -{ - QVariant qax_result = property("TextureName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline Office::MsoTextureType FillFormat::TextureType() const -{ - QVariant qax_result = property("TextureType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTextureType*)qax_result.constData(); -} - -inline double FillFormat::Transparency() const -{ - QVariant qax_result = property("Transparency"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void FillFormat::SetTransparency(double value){ setProperty("Transparency", QVariant(value)); } - -inline Office::MsoFillType FillFormat::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoFillType*)qax_result.constData(); -} - -inline Office::MsoTriState FillFormat::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void FillFormat::SetVisible(Office::MsoTriState value){ setProperty("Visible", QVariant(value)); } - -inline void FillFormat::Background() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void FillFormat::OneColorGradient(Office::MsoGradientStyle Style, int Variant, double Degree) -{ - void *_a[] = {0, (void*)&Style, (void*)&Variant, (void*)&Degree}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void FillFormat::Patterned(Office::MsoPatternType Pattern) -{ - void *_a[] = {0, (void*)&Pattern}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void FillFormat::PresetGradient(Office::MsoGradientStyle Style, int Variant, Office::MsoPresetGradientType PresetGradientType) -{ - void *_a[] = {0, (void*)&Style, (void*)&Variant, (void*)&PresetGradientType}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void FillFormat::PresetTextured(Office::MsoPresetTexture PresetTexture) -{ - void *_a[] = {0, (void*)&PresetTexture}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline void FillFormat::Solid() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); -} - -inline void FillFormat::TwoColorGradient(Office::MsoGradientStyle Style, int Variant) -{ - void *_a[] = {0, (void*)&Style, (void*)&Variant}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); -} - -inline void FillFormat::UserPicture(const QString& PictureFile) -{ - void *_a[] = {0, (void*)&PictureFile}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); -} - -inline void FillFormat::UserTextured(const QString& TextureFile) -{ - void *_a[] = {0, (void*)&TextureFile}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); -} - - -inline IDispatch* LineFormat::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::ColorFormat* LineFormat::BackColor() const -{ - PowerPoint::ColorFormat* qax_pointer = 0; - qRegisterMetaType("ColorFormat*", &qax_pointer); - qRegisterMetaType("ColorFormat", qax_pointer); - QVariant qax_result = property("BackColor"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ColorFormat**)qax_result.constData(); -} -inline void LineFormat::SetBackColor(PowerPoint::ColorFormat* value){ - int typeId = qRegisterMetaType("PowerPoint::ColorFormat*", &value); - setProperty("BackColor", QVariant(typeId, &value)); -} - -inline Office::MsoArrowheadLength LineFormat::BeginArrowheadLength() const -{ - QVariant qax_result = property("BeginArrowheadLength"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoArrowheadLength*)qax_result.constData(); -} -inline void LineFormat::SetBeginArrowheadLength(Office::MsoArrowheadLength value){ setProperty("BeginArrowheadLength", QVariant(value)); } - -inline Office::MsoArrowheadStyle LineFormat::BeginArrowheadStyle() const -{ - QVariant qax_result = property("BeginArrowheadStyle"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoArrowheadStyle*)qax_result.constData(); -} -inline void LineFormat::SetBeginArrowheadStyle(Office::MsoArrowheadStyle value){ setProperty("BeginArrowheadStyle", QVariant(value)); } - -inline Office::MsoArrowheadWidth LineFormat::BeginArrowheadWidth() const -{ - QVariant qax_result = property("BeginArrowheadWidth"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoArrowheadWidth*)qax_result.constData(); -} -inline void LineFormat::SetBeginArrowheadWidth(Office::MsoArrowheadWidth value){ setProperty("BeginArrowheadWidth", QVariant(value)); } - -inline int LineFormat::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoLineDashStyle LineFormat::DashStyle() const -{ - QVariant qax_result = property("DashStyle"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoLineDashStyle*)qax_result.constData(); -} -inline void LineFormat::SetDashStyle(Office::MsoLineDashStyle value){ setProperty("DashStyle", QVariant(value)); } - -inline Office::MsoArrowheadLength LineFormat::EndArrowheadLength() const -{ - QVariant qax_result = property("EndArrowheadLength"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoArrowheadLength*)qax_result.constData(); -} -inline void LineFormat::SetEndArrowheadLength(Office::MsoArrowheadLength value){ setProperty("EndArrowheadLength", QVariant(value)); } - -inline Office::MsoArrowheadStyle LineFormat::EndArrowheadStyle() const -{ - QVariant qax_result = property("EndArrowheadStyle"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoArrowheadStyle*)qax_result.constData(); -} -inline void LineFormat::SetEndArrowheadStyle(Office::MsoArrowheadStyle value){ setProperty("EndArrowheadStyle", QVariant(value)); } - -inline Office::MsoArrowheadWidth LineFormat::EndArrowheadWidth() const -{ - QVariant qax_result = property("EndArrowheadWidth"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoArrowheadWidth*)qax_result.constData(); -} -inline void LineFormat::SetEndArrowheadWidth(Office::MsoArrowheadWidth value){ setProperty("EndArrowheadWidth", QVariant(value)); } - -inline PowerPoint::ColorFormat* LineFormat::ForeColor() const -{ - PowerPoint::ColorFormat* qax_pointer = 0; - qRegisterMetaType("ColorFormat*", &qax_pointer); - qRegisterMetaType("ColorFormat", qax_pointer); - QVariant qax_result = property("ForeColor"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ColorFormat**)qax_result.constData(); -} -inline void LineFormat::SetForeColor(PowerPoint::ColorFormat* value){ - int typeId = qRegisterMetaType("PowerPoint::ColorFormat*", &value); - setProperty("ForeColor", QVariant(typeId, &value)); -} - -inline Office::MsoTriState LineFormat::InsetPen() const -{ - QVariant qax_result = property("InsetPen"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void LineFormat::SetInsetPen(Office::MsoTriState value){ setProperty("InsetPen", QVariant(value)); } - -inline IDispatch* LineFormat::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoPatternType LineFormat::Pattern() const -{ - QVariant qax_result = property("Pattern"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoPatternType*)qax_result.constData(); -} -inline void LineFormat::SetPattern(Office::MsoPatternType value){ setProperty("Pattern", QVariant(value)); } - -inline Office::MsoLineStyle LineFormat::Style() const -{ - QVariant qax_result = property("Style"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoLineStyle*)qax_result.constData(); -} -inline void LineFormat::SetStyle(Office::MsoLineStyle value){ setProperty("Style", QVariant(value)); } - -inline double LineFormat::Transparency() const -{ - QVariant qax_result = property("Transparency"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void LineFormat::SetTransparency(double value){ setProperty("Transparency", QVariant(value)); } - -inline Office::MsoTriState LineFormat::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void LineFormat::SetVisible(Office::MsoTriState value){ setProperty("Visible", QVariant(value)); } - -inline double LineFormat::Weight() const -{ - QVariant qax_result = property("Weight"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void LineFormat::SetWeight(double value){ setProperty("Weight", QVariant(value)); } - - -inline IDispatch* ShadowFormat::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int ShadowFormat::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline PowerPoint::ColorFormat* ShadowFormat::ForeColor() const -{ - PowerPoint::ColorFormat* qax_pointer = 0; - qRegisterMetaType("ColorFormat*", &qax_pointer); - qRegisterMetaType("ColorFormat", qax_pointer); - QVariant qax_result = property("ForeColor"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ColorFormat**)qax_result.constData(); -} -inline void ShadowFormat::SetForeColor(PowerPoint::ColorFormat* value){ - int typeId = qRegisterMetaType("PowerPoint::ColorFormat*", &value); - setProperty("ForeColor", QVariant(typeId, &value)); -} - -inline Office::MsoTriState ShadowFormat::Obscured() const -{ - QVariant qax_result = property("Obscured"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void ShadowFormat::SetObscured(Office::MsoTriState value){ setProperty("Obscured", QVariant(value)); } - -inline double ShadowFormat::OffsetX() const -{ - QVariant qax_result = property("OffsetX"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ShadowFormat::SetOffsetX(double value){ setProperty("OffsetX", QVariant(value)); } - -inline double ShadowFormat::OffsetY() const -{ - QVariant qax_result = property("OffsetY"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ShadowFormat::SetOffsetY(double value){ setProperty("OffsetY", QVariant(value)); } - -inline IDispatch* ShadowFormat::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline double ShadowFormat::Transparency() const -{ - QVariant qax_result = property("Transparency"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ShadowFormat::SetTransparency(double value){ setProperty("Transparency", QVariant(value)); } - -inline Office::MsoShadowType ShadowFormat::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoShadowType*)qax_result.constData(); -} -inline void ShadowFormat::SetType(Office::MsoShadowType value){ setProperty("Type", QVariant(value)); } - -inline Office::MsoTriState ShadowFormat::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void ShadowFormat::SetVisible(Office::MsoTriState value){ setProperty("Visible", QVariant(value)); } - -inline void ShadowFormat::IncrementOffsetX(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void ShadowFormat::IncrementOffsetY(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - - -inline IDispatch* ConnectorFormat::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoTriState ConnectorFormat::BeginConnected() const -{ - QVariant qax_result = property("BeginConnected"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline PowerPoint::Shape* ConnectorFormat::BeginConnectedShape() const -{ - PowerPoint::Shape* qax_pointer = 0; - qRegisterMetaType("Shape*", &qax_pointer); - qRegisterMetaType("Shape", qax_pointer); - QVariant qax_result = property("BeginConnectedShape"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Shape**)qax_result.constData(); -} - -inline int ConnectorFormat::BeginConnectionSite() const -{ - QVariant qax_result = property("BeginConnectionSite"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int ConnectorFormat::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoTriState ConnectorFormat::EndConnected() const -{ - QVariant qax_result = property("EndConnected"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline PowerPoint::Shape* ConnectorFormat::EndConnectedShape() const -{ - PowerPoint::Shape* qax_pointer = 0; - qRegisterMetaType("Shape*", &qax_pointer); - qRegisterMetaType("Shape", qax_pointer); - QVariant qax_result = property("EndConnectedShape"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Shape**)qax_result.constData(); -} - -inline int ConnectorFormat::EndConnectionSite() const -{ - QVariant qax_result = property("EndConnectionSite"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* ConnectorFormat::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoConnectorType ConnectorFormat::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoConnectorType*)qax_result.constData(); -} -inline void ConnectorFormat::SetType(Office::MsoConnectorType value){ setProperty("Type", QVariant(value)); } - -inline void ConnectorFormat::BeginConnect(PowerPoint::Shape* ConnectedShape, int ConnectionSite) -{ - void *_a[] = {0, (void*)&ConnectedShape, (void*)&ConnectionSite}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void ConnectorFormat::BeginDisconnect() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void ConnectorFormat::EndConnect(PowerPoint::Shape* ConnectedShape, int ConnectionSite) -{ - void *_a[] = {0, (void*)&ConnectedShape, (void*)&ConnectionSite}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void ConnectorFormat::EndDisconnect() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - - -inline Office::MsoTextEffectAlignment TextEffectFormat::Alignment() const -{ - QVariant qax_result = property("Alignment"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTextEffectAlignment*)qax_result.constData(); -} -inline void TextEffectFormat::SetAlignment(Office::MsoTextEffectAlignment value){ setProperty("Alignment", QVariant(value)); } - -inline IDispatch* TextEffectFormat::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int TextEffectFormat::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoTriState TextEffectFormat::FontBold() const -{ - QVariant qax_result = property("FontBold"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void TextEffectFormat::SetFontBold(Office::MsoTriState value){ setProperty("FontBold", QVariant(value)); } - -inline Office::MsoTriState TextEffectFormat::FontItalic() const -{ - QVariant qax_result = property("FontItalic"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void TextEffectFormat::SetFontItalic(Office::MsoTriState value){ setProperty("FontItalic", QVariant(value)); } - -inline QString TextEffectFormat::FontName() const -{ - QVariant qax_result = property("FontName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void TextEffectFormat::SetFontName(const QString& value){ setProperty("FontName", QVariant(value)); } - -inline double TextEffectFormat::FontSize() const -{ - QVariant qax_result = property("FontSize"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void TextEffectFormat::SetFontSize(double value){ setProperty("FontSize", QVariant(value)); } - -inline Office::MsoTriState TextEffectFormat::KernedPairs() const -{ - QVariant qax_result = property("KernedPairs"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void TextEffectFormat::SetKernedPairs(Office::MsoTriState value){ setProperty("KernedPairs", QVariant(value)); } - -inline Office::MsoTriState TextEffectFormat::NormalizedHeight() const -{ - QVariant qax_result = property("NormalizedHeight"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void TextEffectFormat::SetNormalizedHeight(Office::MsoTriState value){ setProperty("NormalizedHeight", QVariant(value)); } - -inline IDispatch* TextEffectFormat::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoPresetTextEffectShape TextEffectFormat::PresetShape() const -{ - QVariant qax_result = property("PresetShape"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoPresetTextEffectShape*)qax_result.constData(); -} -inline void TextEffectFormat::SetPresetShape(Office::MsoPresetTextEffectShape value){ setProperty("PresetShape", QVariant(value)); } - -inline Office::MsoPresetTextEffect TextEffectFormat::PresetTextEffect() const -{ - QVariant qax_result = property("PresetTextEffect"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoPresetTextEffect*)qax_result.constData(); -} -inline void TextEffectFormat::SetPresetTextEffect(Office::MsoPresetTextEffect value){ setProperty("PresetTextEffect", QVariant(value)); } - -inline Office::MsoTriState TextEffectFormat::RotatedChars() const -{ - QVariant qax_result = property("RotatedChars"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void TextEffectFormat::SetRotatedChars(Office::MsoTriState value){ setProperty("RotatedChars", QVariant(value)); } - -inline QString TextEffectFormat::Text() const -{ - QVariant qax_result = property("Text"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void TextEffectFormat::SetText(const QString& value){ setProperty("Text", QVariant(value)); } - -inline double TextEffectFormat::Tracking() const -{ - QVariant qax_result = property("Tracking"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void TextEffectFormat::SetTracking(double value){ setProperty("Tracking", QVariant(value)); } - -inline void TextEffectFormat::ToggleVerticalText() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); -} - - -inline IDispatch* ThreeDFormat::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int ThreeDFormat::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline double ThreeDFormat::Depth() const -{ - QVariant qax_result = property("Depth"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ThreeDFormat::SetDepth(double value){ setProperty("Depth", QVariant(value)); } - -inline PowerPoint::ColorFormat* ThreeDFormat::ExtrusionColor() const -{ - PowerPoint::ColorFormat* qax_pointer = 0; - qRegisterMetaType("ColorFormat*", &qax_pointer); - qRegisterMetaType("ColorFormat", qax_pointer); - QVariant qax_result = property("ExtrusionColor"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ColorFormat**)qax_result.constData(); -} - -inline Office::MsoExtrusionColorType ThreeDFormat::ExtrusionColorType() const -{ - QVariant qax_result = property("ExtrusionColorType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoExtrusionColorType*)qax_result.constData(); -} -inline void ThreeDFormat::SetExtrusionColorType(Office::MsoExtrusionColorType value){ setProperty("ExtrusionColorType", QVariant(value)); } - -inline IDispatch* ThreeDFormat::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoTriState ThreeDFormat::Perspective() const -{ - QVariant qax_result = property("Perspective"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void ThreeDFormat::SetPerspective(Office::MsoTriState value){ setProperty("Perspective", QVariant(value)); } - -inline Office::MsoPresetExtrusionDirection ThreeDFormat::PresetExtrusionDirection() const -{ - QVariant qax_result = property("PresetExtrusionDirection"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoPresetExtrusionDirection*)qax_result.constData(); -} - -inline Office::MsoPresetLightingDirection ThreeDFormat::PresetLightingDirection() const -{ - QVariant qax_result = property("PresetLightingDirection"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoPresetLightingDirection*)qax_result.constData(); -} -inline void ThreeDFormat::SetPresetLightingDirection(Office::MsoPresetLightingDirection value){ setProperty("PresetLightingDirection", QVariant(value)); } - -inline Office::MsoPresetLightingSoftness ThreeDFormat::PresetLightingSoftness() const -{ - QVariant qax_result = property("PresetLightingSoftness"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoPresetLightingSoftness*)qax_result.constData(); -} -inline void ThreeDFormat::SetPresetLightingSoftness(Office::MsoPresetLightingSoftness value){ setProperty("PresetLightingSoftness", QVariant(value)); } - -inline Office::MsoPresetMaterial ThreeDFormat::PresetMaterial() const -{ - QVariant qax_result = property("PresetMaterial"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoPresetMaterial*)qax_result.constData(); -} -inline void ThreeDFormat::SetPresetMaterial(Office::MsoPresetMaterial value){ setProperty("PresetMaterial", QVariant(value)); } - -inline Office::MsoPresetThreeDFormat ThreeDFormat::PresetThreeDFormat() const -{ - QVariant qax_result = property("PresetThreeDFormat"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoPresetThreeDFormat*)qax_result.constData(); -} - -inline double ThreeDFormat::RotationX() const -{ - QVariant qax_result = property("RotationX"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ThreeDFormat::SetRotationX(double value){ setProperty("RotationX", QVariant(value)); } - -inline double ThreeDFormat::RotationY() const -{ - QVariant qax_result = property("RotationY"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ThreeDFormat::SetRotationY(double value){ setProperty("RotationY", QVariant(value)); } - -inline Office::MsoTriState ThreeDFormat::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void ThreeDFormat::SetVisible(Office::MsoTriState value){ setProperty("Visible", QVariant(value)); } - -inline void ThreeDFormat::IncrementRotationX(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void ThreeDFormat::IncrementRotationY(double Increment) -{ - void *_a[] = {0, (void*)&Increment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void ThreeDFormat::ResetRotation() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void ThreeDFormat::SetExtrusionDirection(Office::MsoPresetExtrusionDirection PresetExtrusionDirection) -{ - void *_a[] = {0, (void*)&PresetExtrusionDirection}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void ThreeDFormat::SetThreeDFormat(Office::MsoPresetThreeDFormat PresetThreeDFormat) -{ - void *_a[] = {0, (void*)&PresetThreeDFormat}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); -} - - -inline IDispatch* TextFrame::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::PpAutoSize TextFrame::AutoSize() const -{ - QVariant qax_result = property("AutoSize"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpAutoSize*)qax_result.constData(); -} -inline void TextFrame::SetAutoSize(PowerPoint::PpAutoSize value){ setProperty("AutoSize", QVariant(value)); } - -inline int TextFrame::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoTriState TextFrame::HasText() const -{ - QVariant qax_result = property("HasText"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline Office::MsoHorizontalAnchor TextFrame::HorizontalAnchor() const -{ - QVariant qax_result = property("HorizontalAnchor"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoHorizontalAnchor*)qax_result.constData(); -} -inline void TextFrame::SetHorizontalAnchor(Office::MsoHorizontalAnchor value){ setProperty("HorizontalAnchor", QVariant(value)); } - -inline double TextFrame::MarginBottom() const -{ - QVariant qax_result = property("MarginBottom"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void TextFrame::SetMarginBottom(double value){ setProperty("MarginBottom", QVariant(value)); } - -inline double TextFrame::MarginLeft() const -{ - QVariant qax_result = property("MarginLeft"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void TextFrame::SetMarginLeft(double value){ setProperty("MarginLeft", QVariant(value)); } - -inline double TextFrame::MarginRight() const -{ - QVariant qax_result = property("MarginRight"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void TextFrame::SetMarginRight(double value){ setProperty("MarginRight", QVariant(value)); } - -inline double TextFrame::MarginTop() const -{ - QVariant qax_result = property("MarginTop"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void TextFrame::SetMarginTop(double value){ setProperty("MarginTop", QVariant(value)); } - -inline Office::MsoTextOrientation TextFrame::Orientation() const -{ - QVariant qax_result = property("Orientation"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTextOrientation*)qax_result.constData(); -} -inline void TextFrame::SetOrientation(Office::MsoTextOrientation value){ setProperty("Orientation", QVariant(value)); } - -inline IDispatch* TextFrame::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::Ruler* TextFrame::Ruler() const -{ - PowerPoint::Ruler* qax_pointer = 0; - qRegisterMetaType("Ruler*", &qax_pointer); - qRegisterMetaType("Ruler", qax_pointer); - QVariant qax_result = property("Ruler"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Ruler**)qax_result.constData(); -} - -inline PowerPoint::TextRange* TextFrame::TextRange() const -{ - PowerPoint::TextRange* qax_pointer = 0; - qRegisterMetaType("TextRange*", &qax_pointer); - qRegisterMetaType("TextRange", qax_pointer); - QVariant qax_result = property("TextRange"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::TextRange**)qax_result.constData(); -} - -inline Office::MsoVerticalAnchor TextFrame::VerticalAnchor() const -{ - QVariant qax_result = property("VerticalAnchor"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoVerticalAnchor*)qax_result.constData(); -} -inline void TextFrame::SetVerticalAnchor(Office::MsoVerticalAnchor value){ setProperty("VerticalAnchor", QVariant(value)); } - -inline Office::MsoTriState TextFrame::WordWrap() const -{ - QVariant qax_result = property("WordWrap"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void TextFrame::SetWordWrap(Office::MsoTriState value){ setProperty("WordWrap", QVariant(value)); } - -inline void TextFrame::DeleteText() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline Office::MsoTriState CalloutFormat::Accent() const -{ - QVariant qax_result = property("Accent"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void CalloutFormat::SetAccent(Office::MsoTriState value){ setProperty("Accent", QVariant(value)); } - -inline Office::MsoCalloutAngleType CalloutFormat::Angle() const -{ - QVariant qax_result = property("Angle"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoCalloutAngleType*)qax_result.constData(); -} -inline void CalloutFormat::SetAngle(Office::MsoCalloutAngleType value){ setProperty("Angle", QVariant(value)); } - -inline IDispatch* CalloutFormat::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoTriState CalloutFormat::AutoAttach() const -{ - QVariant qax_result = property("AutoAttach"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void CalloutFormat::SetAutoAttach(Office::MsoTriState value){ setProperty("AutoAttach", QVariant(value)); } - -inline Office::MsoTriState CalloutFormat::AutoLength() const -{ - QVariant qax_result = property("AutoLength"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline Office::MsoTriState CalloutFormat::Border() const -{ - QVariant qax_result = property("Border"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void CalloutFormat::SetBorder(Office::MsoTriState value){ setProperty("Border", QVariant(value)); } - -inline int CalloutFormat::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline double CalloutFormat::Drop() const -{ - QVariant qax_result = property("Drop"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} - -inline Office::MsoCalloutDropType CalloutFormat::DropType() const -{ - QVariant qax_result = property("DropType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoCalloutDropType*)qax_result.constData(); -} - -inline double CalloutFormat::Gap() const -{ - QVariant qax_result = property("Gap"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void CalloutFormat::SetGap(double value){ setProperty("Gap", QVariant(value)); } - -inline double CalloutFormat::Length() const -{ - QVariant qax_result = property("Length"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} - -inline IDispatch* CalloutFormat::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoCalloutType CalloutFormat::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoCalloutType*)qax_result.constData(); -} -inline void CalloutFormat::SetType(Office::MsoCalloutType value){ setProperty("Type", QVariant(value)); } - -inline void CalloutFormat::AutomaticLength() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void CalloutFormat::CustomDrop(double Drop) -{ - void *_a[] = {0, (void*)&Drop}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void CalloutFormat::CustomLength(double Length) -{ - void *_a[] = {0, (void*)&Length}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void CalloutFormat::PresetDrop(Office::MsoCalloutDropType DropType) -{ - void *_a[] = {0, (void*)&DropType}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - - -inline IDispatch* ShapeNodes::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int ShapeNodes::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int ShapeNodes::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* ShapeNodes::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* ShapeNodes::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline void ShapeNodes::Delete(int Index) -{ - void *_a[] = {0, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void ShapeNodes::Insert(int Index, Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1) -{ - void *_a[] = {0, (void*)&Index, (void*)&SegmentType, (void*)&EditingType, (void*)&X1, (void*)&Y1}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void ShapeNodes::Insert(int Index, Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2) -{ - void *_a[] = {0, (void*)&Index, (void*)&SegmentType, (void*)&EditingType, (void*)&X1, (void*)&Y1, (void*)&X2}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void ShapeNodes::Insert(int Index, Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2, double Y2) -{ - void *_a[] = {0, (void*)&Index, (void*)&SegmentType, (void*)&EditingType, (void*)&X1, (void*)&Y1, (void*)&X2, (void*)&Y2}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void ShapeNodes::Insert(int Index, Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2, double Y2, double X3) -{ - void *_a[] = {0, (void*)&Index, (void*)&SegmentType, (void*)&EditingType, (void*)&X1, (void*)&Y1, (void*)&X2, (void*)&Y2, (void*)&X3}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline void ShapeNodes::Insert(int Index, Office::MsoSegmentType SegmentType, Office::MsoEditingType EditingType, double X1, double Y1, double X2, double Y2, double X3, double Y3) -{ - void *_a[] = {0, (void*)&Index, (void*)&SegmentType, (void*)&EditingType, (void*)&X1, (void*)&Y1, (void*)&X2, (void*)&Y2, (void*)&X3, (void*)&Y3}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline PowerPoint::ShapeNode* ShapeNodes::Item(const QVariant& Index) -{ - PowerPoint::ShapeNode* qax_result = 0; - qRegisterMetaType("ShapeNode*", &qax_result); - qRegisterMetaType("ShapeNode", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); - return qax_result; -} - -inline void ShapeNodes::SetEditingType(int Index, Office::MsoEditingType EditingType) -{ - void *_a[] = {0, (void*)&Index, (void*)&EditingType}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); -} - -inline void ShapeNodes::SetPosition(int Index, double X1, double Y1) -{ - void *_a[] = {0, (void*)&Index, (void*)&X1, (void*)&Y1}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); -} - -inline void ShapeNodes::SetSegmentType(int Index, Office::MsoSegmentType SegmentType) -{ - void *_a[] = {0, (void*)&Index, (void*)&SegmentType}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); -} - - -inline IDispatch* ShapeNode::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int ShapeNode::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline Office::MsoEditingType ShapeNode::EditingType() const -{ - QVariant qax_result = property("EditingType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoEditingType*)qax_result.constData(); -} - -inline IDispatch* ShapeNode::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QVariant ShapeNode::Points() const -{ - QVariant qax_result = property("Points"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} - -inline Office::MsoSegmentType ShapeNode::SegmentType() const -{ - QVariant qax_result = property("SegmentType"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoSegmentType*)qax_result.constData(); -} - - -inline PowerPoint::Application* OLEFormat::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::PpFollowColors OLEFormat::FollowColors() const -{ - QVariant qax_result = property("FollowColors"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpFollowColors*)qax_result.constData(); -} -inline void OLEFormat::SetFollowColors(PowerPoint::PpFollowColors value){ setProperty("FollowColors", QVariant(value)); } - -inline IDispatch* OLEFormat::Object() const -{ - QVariant qax_result = property("Object"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::ObjectVerbs* OLEFormat::ObjectVerbs() const -{ - PowerPoint::ObjectVerbs* qax_pointer = 0; - qRegisterMetaType("ObjectVerbs*", &qax_pointer); - qRegisterMetaType("ObjectVerbs", qax_pointer); - QVariant qax_result = property("ObjectVerbs"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ObjectVerbs**)qax_result.constData(); -} - -inline IDispatch* OLEFormat::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString OLEFormat::ProgID() const -{ - QVariant qax_result = property("ProgID"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline void OLEFormat::Activate() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void OLEFormat::DoVerb() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void OLEFormat::DoVerb(int Index) -{ - void *_a[] = {0, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - - -inline PowerPoint::Application* LinkFormat::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::PpUpdateOption LinkFormat::AutoUpdate() const -{ - QVariant qax_result = property("AutoUpdate"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpUpdateOption*)qax_result.constData(); -} -inline void LinkFormat::SetAutoUpdate(PowerPoint::PpUpdateOption value){ setProperty("AutoUpdate", QVariant(value)); } - -inline IDispatch* LinkFormat::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString LinkFormat::SourceFullName() const -{ - QVariant qax_result = property("SourceFullName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void LinkFormat::SetSourceFullName(const QString& value){ setProperty("SourceFullName", QVariant(value)); } - -inline void LinkFormat::Update() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - - -inline PowerPoint::Application* ObjectVerbs::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int ObjectVerbs::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* ObjectVerbs::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* ObjectVerbs::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline QString ObjectVerbs::Item(int Index) -{ - QString qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline QVariant ObjectVerbs::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - - -inline PowerPoint::PpAdvanceMode AnimationSettings::AdvanceMode() const -{ - QVariant qax_result = property("AdvanceMode"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpAdvanceMode*)qax_result.constData(); -} -inline void AnimationSettings::SetAdvanceMode(PowerPoint::PpAdvanceMode value){ setProperty("AdvanceMode", QVariant(value)); } - -inline double AnimationSettings::AdvanceTime() const -{ - QVariant qax_result = property("AdvanceTime"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void AnimationSettings::SetAdvanceTime(double value){ setProperty("AdvanceTime", QVariant(value)); } - -inline PowerPoint::PpAfterEffect AnimationSettings::AfterEffect() const -{ - QVariant qax_result = property("AfterEffect"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpAfterEffect*)qax_result.constData(); -} -inline void AnimationSettings::SetAfterEffect(PowerPoint::PpAfterEffect value){ setProperty("AfterEffect", QVariant(value)); } - -inline Office::MsoTriState AnimationSettings::Animate() const -{ - QVariant qax_result = property("Animate"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void AnimationSettings::SetAnimate(Office::MsoTriState value){ setProperty("Animate", QVariant(value)); } - -inline Office::MsoTriState AnimationSettings::AnimateBackground() const -{ - QVariant qax_result = property("AnimateBackground"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void AnimationSettings::SetAnimateBackground(Office::MsoTriState value){ setProperty("AnimateBackground", QVariant(value)); } - -inline Office::MsoTriState AnimationSettings::AnimateTextInReverse() const -{ - QVariant qax_result = property("AnimateTextInReverse"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void AnimationSettings::SetAnimateTextInReverse(Office::MsoTriState value){ setProperty("AnimateTextInReverse", QVariant(value)); } - -inline int AnimationSettings::AnimationOrder() const -{ - QVariant qax_result = property("AnimationOrder"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void AnimationSettings::SetAnimationOrder(int value){ setProperty("AnimationOrder", QVariant(value)); } - -inline PowerPoint::Application* AnimationSettings::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::PpChartUnitEffect AnimationSettings::ChartUnitEffect() const -{ - QVariant qax_result = property("ChartUnitEffect"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpChartUnitEffect*)qax_result.constData(); -} -inline void AnimationSettings::SetChartUnitEffect(PowerPoint::PpChartUnitEffect value){ setProperty("ChartUnitEffect", QVariant(value)); } - -inline PowerPoint::ColorFormat* AnimationSettings::DimColor() const -{ - PowerPoint::ColorFormat* qax_pointer = 0; - qRegisterMetaType("ColorFormat*", &qax_pointer); - qRegisterMetaType("ColorFormat", qax_pointer); - QVariant qax_result = property("DimColor"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ColorFormat**)qax_result.constData(); -} - -inline PowerPoint::PpEntryEffect AnimationSettings::EntryEffect() const -{ - QVariant qax_result = property("EntryEffect"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpEntryEffect*)qax_result.constData(); -} -inline void AnimationSettings::SetEntryEffect(PowerPoint::PpEntryEffect value){ setProperty("EntryEffect", QVariant(value)); } - -inline IDispatch* AnimationSettings::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::PlaySettings* AnimationSettings::PlaySettings() const -{ - PowerPoint::PlaySettings* qax_pointer = 0; - qRegisterMetaType("PlaySettings*", &qax_pointer); - qRegisterMetaType("PlaySettings", qax_pointer); - QVariant qax_result = property("PlaySettings"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PlaySettings**)qax_result.constData(); -} - -inline PowerPoint::SoundEffect* AnimationSettings::SoundEffect() const -{ - PowerPoint::SoundEffect* qax_pointer = 0; - qRegisterMetaType("SoundEffect*", &qax_pointer); - qRegisterMetaType("SoundEffect", qax_pointer); - QVariant qax_result = property("SoundEffect"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SoundEffect**)qax_result.constData(); -} - -inline PowerPoint::PpTextLevelEffect AnimationSettings::TextLevelEffect() const -{ - QVariant qax_result = property("TextLevelEffect"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpTextLevelEffect*)qax_result.constData(); -} -inline void AnimationSettings::SetTextLevelEffect(PowerPoint::PpTextLevelEffect value){ setProperty("TextLevelEffect", QVariant(value)); } - -inline PowerPoint::PpTextUnitEffect AnimationSettings::TextUnitEffect() const -{ - QVariant qax_result = property("TextUnitEffect"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpTextUnitEffect*)qax_result.constData(); -} -inline void AnimationSettings::SetTextUnitEffect(PowerPoint::PpTextUnitEffect value){ setProperty("TextUnitEffect", QVariant(value)); } - - -inline PowerPoint::Application* ActionSettings::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int ActionSettings::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* ActionSettings::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* ActionSettings::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::ActionSetting* ActionSettings::Item(PowerPoint::PpMouseActivation Index) -{ - PowerPoint::ActionSetting* qax_result = 0; - qRegisterMetaType("ActionSetting*", &qax_result); - qRegisterMetaType("ActionSetting", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline QVariant ActionSettings::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - - -inline PowerPoint::PpActionType ActionSetting::Action() const -{ - QVariant qax_result = property("Action"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpActionType*)qax_result.constData(); -} -inline void ActionSetting::SetAction(PowerPoint::PpActionType value){ setProperty("Action", QVariant(value)); } - -inline QString ActionSetting::ActionVerb() const -{ - QVariant qax_result = property("ActionVerb"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void ActionSetting::SetActionVerb(const QString& value){ setProperty("ActionVerb", QVariant(value)); } - -inline Office::MsoTriState ActionSetting::AnimateAction() const -{ - QVariant qax_result = property("AnimateAction"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void ActionSetting::SetAnimateAction(Office::MsoTriState value){ setProperty("AnimateAction", QVariant(value)); } - -inline PowerPoint::Application* ActionSetting::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::Hyperlink* ActionSetting::Hyperlink() const -{ - PowerPoint::Hyperlink* qax_pointer = 0; - qRegisterMetaType("Hyperlink*", &qax_pointer); - qRegisterMetaType("Hyperlink", qax_pointer); - QVariant qax_result = property("Hyperlink"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Hyperlink**)qax_result.constData(); -} - -inline IDispatch* ActionSetting::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString ActionSetting::Run() const -{ - QVariant qax_result = property("Run"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void ActionSetting::SetRun(const QString& value){ setProperty("Run", QVariant(value)); } - -inline Office::MsoTriState ActionSetting::ShowAndReturn() const -{ - QVariant qax_result = property("ShowAndReturn"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void ActionSetting::SetShowAndReturn(Office::MsoTriState value){ setProperty("ShowAndReturn", QVariant(value)); } - -inline QString ActionSetting::SlideShowName() const -{ - QVariant qax_result = property("SlideShowName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void ActionSetting::SetSlideShowName(const QString& value){ setProperty("SlideShowName", QVariant(value)); } - -inline PowerPoint::SoundEffect* ActionSetting::SoundEffect() const -{ - PowerPoint::SoundEffect* qax_pointer = 0; - qRegisterMetaType("SoundEffect*", &qax_pointer); - qRegisterMetaType("SoundEffect", qax_pointer); - QVariant qax_result = property("SoundEffect"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SoundEffect**)qax_result.constData(); -} - - -inline QString PlaySettings::ActionVerb() const -{ - QVariant qax_result = property("ActionVerb"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void PlaySettings::SetActionVerb(const QString& value){ setProperty("ActionVerb", QVariant(value)); } - -inline PowerPoint::Application* PlaySettings::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline Office::MsoTriState PlaySettings::HideWhileNotPlaying() const -{ - QVariant qax_result = property("HideWhileNotPlaying"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void PlaySettings::SetHideWhileNotPlaying(Office::MsoTriState value){ setProperty("HideWhileNotPlaying", QVariant(value)); } - -inline Office::MsoTriState PlaySettings::LoopUntilStopped() const -{ - QVariant qax_result = property("LoopUntilStopped"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void PlaySettings::SetLoopUntilStopped(Office::MsoTriState value){ setProperty("LoopUntilStopped", QVariant(value)); } - -inline IDispatch* PlaySettings::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoTriState PlaySettings::PauseAnimation() const -{ - QVariant qax_result = property("PauseAnimation"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void PlaySettings::SetPauseAnimation(Office::MsoTriState value){ setProperty("PauseAnimation", QVariant(value)); } - -inline Office::MsoTriState PlaySettings::PlayOnEntry() const -{ - QVariant qax_result = property("PlayOnEntry"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void PlaySettings::SetPlayOnEntry(Office::MsoTriState value){ setProperty("PlayOnEntry", QVariant(value)); } - -inline Office::MsoTriState PlaySettings::RewindMovie() const -{ - QVariant qax_result = property("RewindMovie"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void PlaySettings::SetRewindMovie(Office::MsoTriState value){ setProperty("RewindMovie", QVariant(value)); } - -inline int PlaySettings::StopAfterSlides() const -{ - QVariant qax_result = property("StopAfterSlides"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void PlaySettings::SetStopAfterSlides(int value){ setProperty("StopAfterSlides", QVariant(value)); } - - -inline PowerPoint::ActionSettings* TextRange::ActionSettings() const -{ - PowerPoint::ActionSettings* qax_pointer = 0; - qRegisterMetaType("ActionSettings*", &qax_pointer); - qRegisterMetaType("ActionSettings", qax_pointer); - QVariant qax_result = property("ActionSettings"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ActionSettings**)qax_result.constData(); -} - -inline PowerPoint::Application* TextRange::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline double TextRange::BoundHeight() const -{ - QVariant qax_result = property("BoundHeight"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} - -inline double TextRange::BoundLeft() const -{ - QVariant qax_result = property("BoundLeft"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} - -inline double TextRange::BoundTop() const -{ - QVariant qax_result = property("BoundTop"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} - -inline double TextRange::BoundWidth() const -{ - QVariant qax_result = property("BoundWidth"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} - -inline int TextRange::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline PowerPoint::Font* TextRange::Font() const -{ - PowerPoint::Font* qax_pointer = 0; - qRegisterMetaType("Font*", &qax_pointer); - qRegisterMetaType("Font", qax_pointer); - QVariant qax_result = property("Font"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Font**)qax_result.constData(); -} - -inline int TextRange::IndentLevel() const -{ - QVariant qax_result = property("IndentLevel"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void TextRange::SetIndentLevel(int value){ setProperty("IndentLevel", QVariant(value)); } - -inline Office::MsoLanguageID TextRange::LanguageID() const -{ - QVariant qax_result = property("LanguageID"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoLanguageID*)qax_result.constData(); -} -inline void TextRange::SetLanguageID(Office::MsoLanguageID value){ setProperty("LanguageID", QVariant(value)); } - -inline int TextRange::Length() const -{ - QVariant qax_result = property("Length"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline PowerPoint::ParagraphFormat* TextRange::ParagraphFormat() const -{ - PowerPoint::ParagraphFormat* qax_pointer = 0; - qRegisterMetaType("ParagraphFormat*", &qax_pointer); - qRegisterMetaType("ParagraphFormat", qax_pointer); - QVariant qax_result = property("ParagraphFormat"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ParagraphFormat**)qax_result.constData(); -} - -inline IDispatch* TextRange::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int TextRange::Start() const -{ - QVariant qax_result = property("Start"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString TextRange::Text() const -{ - QVariant qax_result = property("Text"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void TextRange::SetText(const QString& value){ setProperty("Text", QVariant(value)); } - -inline IUnknown* TextRange::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline void TextRange::AddPeriods() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void TextRange::ChangeCase(PowerPoint::PpChangeCase Type) -{ - void *_a[] = {0, (void*)&Type}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline PowerPoint::TextRange* TextRange::Characters() -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::Characters(int Start) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Start}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::Characters(int Start, int Length) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Start, (void*)&Length}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline void TextRange::Copy() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void TextRange::Cut() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline void TextRange::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); -} - -inline PowerPoint::TextRange* TextRange::Find(const QString& FindWhat) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FindWhat}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::Find(const QString& FindWhat, int After) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FindWhat, (void*)&After}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::Find(const QString& FindWhat, int After, Office::MsoTriState MatchCase) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FindWhat, (void*)&After, (void*)&MatchCase}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::Find(const QString& FindWhat, int After, Office::MsoTriState MatchCase, Office::MsoTriState WholeWords) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FindWhat, (void*)&After, (void*)&MatchCase, (void*)&WholeWords}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::InsertAfter() -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::InsertAfter(const QString& NewText) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&NewText}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::InsertBefore() -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::InsertBefore(const QString& NewText) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&NewText}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::InsertDateTime(PowerPoint::PpDateTimeFormat DateTimeFormat) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&DateTimeFormat}; - qt_metacall(QMetaObject::InvokeMetaMethod, 23, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::InsertDateTime(PowerPoint::PpDateTimeFormat DateTimeFormat, Office::MsoTriState InsertAsField) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&DateTimeFormat, (void*)&InsertAsField}; - qt_metacall(QMetaObject::InvokeMetaMethod, 24, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::InsertSlideNumber() -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 25, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::InsertSymbol(const QString& FontName, int CharNumber) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FontName, (void*)&CharNumber}; - qt_metacall(QMetaObject::InvokeMetaMethod, 26, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::InsertSymbol(const QString& FontName, int CharNumber, Office::MsoTriState Unicode) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FontName, (void*)&CharNumber, (void*)&Unicode}; - qt_metacall(QMetaObject::InvokeMetaMethod, 27, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::Lines() -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 28, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::Lines(int Start) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Start}; - qt_metacall(QMetaObject::InvokeMetaMethod, 29, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::Lines(int Start, int Length) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Start, (void*)&Length}; - qt_metacall(QMetaObject::InvokeMetaMethod, 30, _a); - return qax_result; -} - -inline void TextRange::LtrRun() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 31, _a); -} - -inline PowerPoint::TextRange* TextRange::Paragraphs() -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 32, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::Paragraphs(int Start) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Start}; - qt_metacall(QMetaObject::InvokeMetaMethod, 33, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::Paragraphs(int Start, int Length) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Start, (void*)&Length}; - qt_metacall(QMetaObject::InvokeMetaMethod, 34, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::Paste() -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 35, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::PasteSpecial() -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 36, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::PasteSpecial(PowerPoint::PpPasteDataType DataType) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&DataType}; - qt_metacall(QMetaObject::InvokeMetaMethod, 37, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&DataType, (void*)&DisplayAsIcon}; - qt_metacall(QMetaObject::InvokeMetaMethod, 38, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon, const QString& IconFileName) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&DataType, (void*)&DisplayAsIcon, (void*)&IconFileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 39, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon, const QString& IconFileName, int IconIndex) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&DataType, (void*)&DisplayAsIcon, (void*)&IconFileName, (void*)&IconIndex}; - qt_metacall(QMetaObject::InvokeMetaMethod, 40, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon, const QString& IconFileName, int IconIndex, const QString& IconLabel) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&DataType, (void*)&DisplayAsIcon, (void*)&IconFileName, (void*)&IconIndex, (void*)&IconLabel}; - qt_metacall(QMetaObject::InvokeMetaMethod, 41, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::PasteSpecial(PowerPoint::PpPasteDataType DataType, Office::MsoTriState DisplayAsIcon, const QString& IconFileName, int IconIndex, const QString& IconLabel, Office::MsoTriState Link) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&DataType, (void*)&DisplayAsIcon, (void*)&IconFileName, (void*)&IconIndex, (void*)&IconLabel, (void*)&Link}; - qt_metacall(QMetaObject::InvokeMetaMethod, 42, _a); - return qax_result; -} - -inline void TextRange::RemovePeriods() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 43, _a); -} - -inline PowerPoint::TextRange* TextRange::Replace(const QString& FindWhat, const QString& ReplaceWhat) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FindWhat, (void*)&ReplaceWhat}; - qt_metacall(QMetaObject::InvokeMetaMethod, 44, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::Replace(const QString& FindWhat, const QString& ReplaceWhat, int After) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FindWhat, (void*)&ReplaceWhat, (void*)&After}; - qt_metacall(QMetaObject::InvokeMetaMethod, 45, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::Replace(const QString& FindWhat, const QString& ReplaceWhat, int After, Office::MsoTriState MatchCase) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FindWhat, (void*)&ReplaceWhat, (void*)&After, (void*)&MatchCase}; - qt_metacall(QMetaObject::InvokeMetaMethod, 46, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::Replace(const QString& FindWhat, const QString& ReplaceWhat, int After, Office::MsoTriState MatchCase, Office::MsoTriState WholeWords) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FindWhat, (void*)&ReplaceWhat, (void*)&After, (void*)&MatchCase, (void*)&WholeWords}; - qt_metacall(QMetaObject::InvokeMetaMethod, 47, _a); - return qax_result; -} - -inline void TextRange::RotatedBounds(double& X1, double& Y1, double& X2, double& Y2, double& X3, double& Y3, double& x4, double& y4) -{ - void *_a[] = {0, (void*)&X1, (void*)&Y1, (void*)&X2, (void*)&Y2, (void*)&X3, (void*)&Y3, (void*)&x4, (void*)&y4}; - qt_metacall(QMetaObject::InvokeMetaMethod, 48, _a); -} - -inline void TextRange::RtlRun() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 49, _a); -} - -inline PowerPoint::TextRange* TextRange::Runs() -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 50, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::Runs(int Start) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Start}; - qt_metacall(QMetaObject::InvokeMetaMethod, 51, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::Runs(int Start, int Length) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Start, (void*)&Length}; - qt_metacall(QMetaObject::InvokeMetaMethod, 52, _a); - return qax_result; -} - -inline void TextRange::Select() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 53, _a); -} - -inline PowerPoint::TextRange* TextRange::Sentences() -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 54, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::Sentences(int Start) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Start}; - qt_metacall(QMetaObject::InvokeMetaMethod, 55, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::Sentences(int Start, int Length) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Start, (void*)&Length}; - qt_metacall(QMetaObject::InvokeMetaMethod, 56, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::TrimText() -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 60, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::Words() -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 61, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::Words(int Start) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Start}; - qt_metacall(QMetaObject::InvokeMetaMethod, 62, _a); - return qax_result; -} - -inline PowerPoint::TextRange* TextRange::Words(int Start, int Length) -{ - PowerPoint::TextRange* qax_result = 0; - qRegisterMetaType("TextRange*", &qax_result); - qRegisterMetaType("TextRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Start, (void*)&Length}; - qt_metacall(QMetaObject::InvokeMetaMethod, 63, _a); - return qax_result; -} - -inline QVariant TextRange::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 64, _a); - return qax_result; -} - - -inline PowerPoint::Application* Ruler::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::RulerLevels* Ruler::Levels() const -{ - PowerPoint::RulerLevels* qax_pointer = 0; - qRegisterMetaType("RulerLevels*", &qax_pointer); - qRegisterMetaType("RulerLevels", qax_pointer); - QVariant qax_result = property("Levels"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::RulerLevels**)qax_result.constData(); -} - -inline IDispatch* Ruler::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::TabStops* Ruler::TabStops() const -{ - PowerPoint::TabStops* qax_pointer = 0; - qRegisterMetaType("TabStops*", &qax_pointer); - qRegisterMetaType("TabStops", qax_pointer); - QVariant qax_result = property("TabStops"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::TabStops**)qax_result.constData(); -} - - -inline PowerPoint::Application* RulerLevels::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int RulerLevels::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* RulerLevels::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* RulerLevels::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::RulerLevel* RulerLevels::Item(int Index) -{ - PowerPoint::RulerLevel* qax_result = 0; - qRegisterMetaType("RulerLevel*", &qax_result); - qRegisterMetaType("RulerLevel", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline QVariant RulerLevels::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - - -inline PowerPoint::Application* RulerLevel::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline double RulerLevel::FirstMargin() const -{ - QVariant qax_result = property("FirstMargin"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void RulerLevel::SetFirstMargin(double value){ setProperty("FirstMargin", QVariant(value)); } - -inline double RulerLevel::LeftMargin() const -{ - QVariant qax_result = property("LeftMargin"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void RulerLevel::SetLeftMargin(double value){ setProperty("LeftMargin", QVariant(value)); } - -inline IDispatch* RulerLevel::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - - -inline PowerPoint::Application* TabStops::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int TabStops::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline double TabStops::DefaultSpacing() const -{ - QVariant qax_result = property("DefaultSpacing"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void TabStops::SetDefaultSpacing(double value){ setProperty("DefaultSpacing", QVariant(value)); } - -inline IDispatch* TabStops::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* TabStops::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::TabStop* TabStops::Add(PowerPoint::PpTabStopType Type, double Position) -{ - PowerPoint::TabStop* qax_result = 0; - qRegisterMetaType("TabStop*", &qax_result); - qRegisterMetaType("TabStop", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Position}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline PowerPoint::TabStop* TabStops::Item(int Index) -{ - PowerPoint::TabStop* qax_result = 0; - qRegisterMetaType("TabStop*", &qax_result); - qRegisterMetaType("TabStop", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline QVariant TabStops::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - - -inline PowerPoint::Application* TabStop::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline IDispatch* TabStop::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline double TabStop::Position() const -{ - QVariant qax_result = property("Position"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void TabStop::SetPosition(double value){ setProperty("Position", QVariant(value)); } - -inline PowerPoint::PpTabStopType TabStop::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpTabStopType*)qax_result.constData(); -} -inline void TabStop::SetType(PowerPoint::PpTabStopType value){ setProperty("Type", QVariant(value)); } - -inline void TabStop::Clear() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline PowerPoint::Application* Font::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline Office::MsoTriState Font::AutoRotateNumbers() const -{ - QVariant qax_result = property("AutoRotateNumbers"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Font::SetAutoRotateNumbers(Office::MsoTriState value){ setProperty("AutoRotateNumbers", QVariant(value)); } - -inline double Font::BaselineOffset() const -{ - QVariant qax_result = property("BaselineOffset"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Font::SetBaselineOffset(double value){ setProperty("BaselineOffset", QVariant(value)); } - -inline Office::MsoTriState Font::Bold() const -{ - QVariant qax_result = property("Bold"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Font::SetBold(Office::MsoTriState value){ setProperty("Bold", QVariant(value)); } - -inline PowerPoint::ColorFormat* Font::Color() const -{ - PowerPoint::ColorFormat* qax_pointer = 0; - qRegisterMetaType("ColorFormat*", &qax_pointer); - qRegisterMetaType("ColorFormat", qax_pointer); - QVariant qax_result = property("Color"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ColorFormat**)qax_result.constData(); -} - -inline Office::MsoTriState Font::Embeddable() const -{ - QVariant qax_result = property("Embeddable"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline Office::MsoTriState Font::Embedded() const -{ - QVariant qax_result = property("Embedded"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline Office::MsoTriState Font::Emboss() const -{ - QVariant qax_result = property("Emboss"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Font::SetEmboss(Office::MsoTriState value){ setProperty("Emboss", QVariant(value)); } - -inline Office::MsoTriState Font::Italic() const -{ - QVariant qax_result = property("Italic"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Font::SetItalic(Office::MsoTriState value){ setProperty("Italic", QVariant(value)); } - -inline QString Font::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Font::SetName(const QString& value){ setProperty("Name", QVariant(value)); } - -inline QString Font::NameAscii() const -{ - QVariant qax_result = property("NameAscii"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Font::SetNameAscii(const QString& value){ setProperty("NameAscii", QVariant(value)); } - -inline QString Font::NameComplexScript() const -{ - QVariant qax_result = property("NameComplexScript"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Font::SetNameComplexScript(const QString& value){ setProperty("NameComplexScript", QVariant(value)); } - -inline QString Font::NameFarEast() const -{ - QVariant qax_result = property("NameFarEast"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Font::SetNameFarEast(const QString& value){ setProperty("NameFarEast", QVariant(value)); } - -inline QString Font::NameOther() const -{ - QVariant qax_result = property("NameOther"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Font::SetNameOther(const QString& value){ setProperty("NameOther", QVariant(value)); } - -inline IDispatch* Font::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoTriState Font::Shadow() const -{ - QVariant qax_result = property("Shadow"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Font::SetShadow(Office::MsoTriState value){ setProperty("Shadow", QVariant(value)); } - -inline double Font::Size() const -{ - QVariant qax_result = property("Size"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Font::SetSize(double value){ setProperty("Size", QVariant(value)); } - -inline Office::MsoTriState Font::Subscript() const -{ - QVariant qax_result = property("Subscript"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Font::SetSubscript(Office::MsoTriState value){ setProperty("Subscript", QVariant(value)); } - -inline Office::MsoTriState Font::Superscript() const -{ - QVariant qax_result = property("Superscript"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Font::SetSuperscript(Office::MsoTriState value){ setProperty("Superscript", QVariant(value)); } - -inline Office::MsoTriState Font::Underline() const -{ - QVariant qax_result = property("Underline"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Font::SetUnderline(Office::MsoTriState value){ setProperty("Underline", QVariant(value)); } - - -inline PowerPoint::PpParagraphAlignment ParagraphFormat::Alignment() const -{ - QVariant qax_result = property("Alignment"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpParagraphAlignment*)qax_result.constData(); -} -inline void ParagraphFormat::SetAlignment(PowerPoint::PpParagraphAlignment value){ setProperty("Alignment", QVariant(value)); } - -inline PowerPoint::Application* ParagraphFormat::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::PpBaselineAlignment ParagraphFormat::BaseLineAlignment() const -{ - QVariant qax_result = property("BaseLineAlignment"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpBaselineAlignment*)qax_result.constData(); -} -inline void ParagraphFormat::SetBaseLineAlignment(PowerPoint::PpBaselineAlignment value){ setProperty("BaseLineAlignment", QVariant(value)); } - -inline PowerPoint::BulletFormat* ParagraphFormat::Bullet() const -{ - PowerPoint::BulletFormat* qax_pointer = 0; - qRegisterMetaType("BulletFormat*", &qax_pointer); - qRegisterMetaType("BulletFormat", qax_pointer); - QVariant qax_result = property("Bullet"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::BulletFormat**)qax_result.constData(); -} - -inline Office::MsoTriState ParagraphFormat::FarEastLineBreakControl() const -{ - QVariant qax_result = property("FarEastLineBreakControl"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void ParagraphFormat::SetFarEastLineBreakControl(Office::MsoTriState value){ setProperty("FarEastLineBreakControl", QVariant(value)); } - -inline Office::MsoTriState ParagraphFormat::HangingPunctuation() const -{ - QVariant qax_result = property("HangingPunctuation"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void ParagraphFormat::SetHangingPunctuation(Office::MsoTriState value){ setProperty("HangingPunctuation", QVariant(value)); } - -inline Office::MsoTriState ParagraphFormat::LineRuleAfter() const -{ - QVariant qax_result = property("LineRuleAfter"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void ParagraphFormat::SetLineRuleAfter(Office::MsoTriState value){ setProperty("LineRuleAfter", QVariant(value)); } - -inline Office::MsoTriState ParagraphFormat::LineRuleBefore() const -{ - QVariant qax_result = property("LineRuleBefore"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void ParagraphFormat::SetLineRuleBefore(Office::MsoTriState value){ setProperty("LineRuleBefore", QVariant(value)); } - -inline Office::MsoTriState ParagraphFormat::LineRuleWithin() const -{ - QVariant qax_result = property("LineRuleWithin"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void ParagraphFormat::SetLineRuleWithin(Office::MsoTriState value){ setProperty("LineRuleWithin", QVariant(value)); } - -inline IDispatch* ParagraphFormat::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline double ParagraphFormat::SpaceAfter() const -{ - QVariant qax_result = property("SpaceAfter"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ParagraphFormat::SetSpaceAfter(double value){ setProperty("SpaceAfter", QVariant(value)); } - -inline double ParagraphFormat::SpaceBefore() const -{ - QVariant qax_result = property("SpaceBefore"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ParagraphFormat::SetSpaceBefore(double value){ setProperty("SpaceBefore", QVariant(value)); } - -inline double ParagraphFormat::SpaceWithin() const -{ - QVariant qax_result = property("SpaceWithin"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ParagraphFormat::SetSpaceWithin(double value){ setProperty("SpaceWithin", QVariant(value)); } - -inline PowerPoint::PpDirection ParagraphFormat::TextDirection() const -{ - QVariant qax_result = property("TextDirection"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpDirection*)qax_result.constData(); -} -inline void ParagraphFormat::SetTextDirection(PowerPoint::PpDirection value){ setProperty("TextDirection", QVariant(value)); } - -inline Office::MsoTriState ParagraphFormat::WordWrap() const -{ - QVariant qax_result = property("WordWrap"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void ParagraphFormat::SetWordWrap(Office::MsoTriState value){ setProperty("WordWrap", QVariant(value)); } - - -inline PowerPoint::Application* BulletFormat::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int BulletFormat::Character() const -{ - QVariant qax_result = property("Character"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void BulletFormat::SetCharacter(int value){ setProperty("Character", QVariant(value)); } - -inline PowerPoint::Font* BulletFormat::Font() const -{ - PowerPoint::Font* qax_pointer = 0; - qRegisterMetaType("Font*", &qax_pointer); - qRegisterMetaType("Font", qax_pointer); - QVariant qax_result = property("Font"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Font**)qax_result.constData(); -} - -inline int BulletFormat::Number() const -{ - QVariant qax_result = property("Number"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* BulletFormat::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline double BulletFormat::RelativeSize() const -{ - QVariant qax_result = property("RelativeSize"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void BulletFormat::SetRelativeSize(double value){ setProperty("RelativeSize", QVariant(value)); } - -inline int BulletFormat::StartValue() const -{ - QVariant qax_result = property("StartValue"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void BulletFormat::SetStartValue(int value){ setProperty("StartValue", QVariant(value)); } - -inline PowerPoint::PpNumberedBulletStyle BulletFormat::Style() const -{ - QVariant qax_result = property("Style"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpNumberedBulletStyle*)qax_result.constData(); -} -inline void BulletFormat::SetStyle(PowerPoint::PpNumberedBulletStyle value){ setProperty("Style", QVariant(value)); } - -inline PowerPoint::PpBulletType BulletFormat::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpBulletType*)qax_result.constData(); -} -inline void BulletFormat::SetType(PowerPoint::PpBulletType value){ setProperty("Type", QVariant(value)); } - -inline Office::MsoTriState BulletFormat::UseTextColor() const -{ - QVariant qax_result = property("UseTextColor"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void BulletFormat::SetUseTextColor(Office::MsoTriState value){ setProperty("UseTextColor", QVariant(value)); } - -inline Office::MsoTriState BulletFormat::UseTextFont() const -{ - QVariant qax_result = property("UseTextFont"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void BulletFormat::SetUseTextFont(Office::MsoTriState value){ setProperty("UseTextFont", QVariant(value)); } - -inline Office::MsoTriState BulletFormat::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void BulletFormat::SetVisible(Office::MsoTriState value){ setProperty("Visible", QVariant(value)); } - -inline void BulletFormat::Picture(const QString& Picture) -{ - void *_a[] = {0, (void*)&Picture}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline PowerPoint::Application* TextStyles::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int TextStyles::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* TextStyles::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* TextStyles::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::TextStyle* TextStyles::Item(PowerPoint::PpTextStyleType Type) -{ - PowerPoint::TextStyle* qax_result = 0; - qRegisterMetaType("TextStyle*", &qax_result); - qRegisterMetaType("TextStyle", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline QVariant TextStyles::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - - -inline PowerPoint::Application* TextStyle::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::TextStyleLevels* TextStyle::Levels() const -{ - PowerPoint::TextStyleLevels* qax_pointer = 0; - qRegisterMetaType("TextStyleLevels*", &qax_pointer); - qRegisterMetaType("TextStyleLevels", qax_pointer); - QVariant qax_result = property("Levels"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::TextStyleLevels**)qax_result.constData(); -} - -inline IDispatch* TextStyle::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::Ruler* TextStyle::Ruler() const -{ - PowerPoint::Ruler* qax_pointer = 0; - qRegisterMetaType("Ruler*", &qax_pointer); - qRegisterMetaType("Ruler", qax_pointer); - QVariant qax_result = property("Ruler"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Ruler**)qax_result.constData(); -} - -inline PowerPoint::TextFrame* TextStyle::TextFrame() const -{ - PowerPoint::TextFrame* qax_pointer = 0; - qRegisterMetaType("TextFrame*", &qax_pointer); - qRegisterMetaType("TextFrame", qax_pointer); - QVariant qax_result = property("TextFrame"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::TextFrame**)qax_result.constData(); -} - - -inline PowerPoint::Application* TextStyleLevels::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int TextStyleLevels::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* TextStyleLevels::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* TextStyleLevels::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::TextStyleLevel* TextStyleLevels::Item(int Level) -{ - PowerPoint::TextStyleLevel* qax_result = 0; - qRegisterMetaType("TextStyleLevel*", &qax_result); - qRegisterMetaType("TextStyleLevel", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Level}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline QVariant TextStyleLevels::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - - -inline PowerPoint::Application* TextStyleLevel::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::Font* TextStyleLevel::Font() const -{ - PowerPoint::Font* qax_pointer = 0; - qRegisterMetaType("Font*", &qax_pointer); - qRegisterMetaType("Font", qax_pointer); - QVariant qax_result = property("Font"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Font**)qax_result.constData(); -} - -inline PowerPoint::ParagraphFormat* TextStyleLevel::ParagraphFormat() const -{ - PowerPoint::ParagraphFormat* qax_pointer = 0; - qRegisterMetaType("ParagraphFormat*", &qax_pointer); - qRegisterMetaType("ParagraphFormat", qax_pointer); - QVariant qax_result = property("ParagraphFormat"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ParagraphFormat**)qax_result.constData(); -} - -inline IDispatch* TextStyleLevel::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - - -inline PowerPoint::Application* HeaderFooter::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::PpDateTimeFormat HeaderFooter::Format() const -{ - QVariant qax_result = property("Format"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpDateTimeFormat*)qax_result.constData(); -} -inline void HeaderFooter::SetFormat(PowerPoint::PpDateTimeFormat value){ setProperty("Format", QVariant(value)); } - -inline IDispatch* HeaderFooter::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString HeaderFooter::Text() const -{ - QVariant qax_result = property("Text"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void HeaderFooter::SetText(const QString& value){ setProperty("Text", QVariant(value)); } - -inline Office::MsoTriState HeaderFooter::UseFormat() const -{ - QVariant qax_result = property("UseFormat"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void HeaderFooter::SetUseFormat(Office::MsoTriState value){ setProperty("UseFormat", QVariant(value)); } - -inline Office::MsoTriState HeaderFooter::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void HeaderFooter::SetVisible(Office::MsoTriState value){ setProperty("Visible", QVariant(value)); } - - -inline PowerPoint::Application* _Presentation::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline IDispatch* _Presentation::BuiltInDocumentProperties() const -{ - QVariant qax_result = property("BuiltInDocumentProperties"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::ColorSchemes* _Presentation::ColorSchemes() const -{ - PowerPoint::ColorSchemes* qax_pointer = 0; - qRegisterMetaType("ColorSchemes*", &qax_pointer); - qRegisterMetaType("ColorSchemes", qax_pointer); - QVariant qax_result = property("ColorSchemes"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ColorSchemes**)qax_result.constData(); -} - -inline Office::CommandBars* _Presentation::CommandBars() const -{ - Office::CommandBars* qax_pointer = 0; - qRegisterMetaType("Office::CommandBars*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::CommandBars", qax_pointer); -#endif - QVariant qax_result = property("CommandBars"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::CommandBars**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline IDispatch* _Presentation::Container() const -{ - QVariant qax_result = property("Container"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IDispatch* _Presentation::CustomDocumentProperties() const -{ - QVariant qax_result = property("CustomDocumentProperties"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoLanguageID _Presentation::DefaultLanguageID() const -{ - QVariant qax_result = property("DefaultLanguageID"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoLanguageID*)qax_result.constData(); -} -inline void _Presentation::SetDefaultLanguageID(Office::MsoLanguageID value){ setProperty("DefaultLanguageID", QVariant(value)); } - -inline PowerPoint::Shape* _Presentation::DefaultShape() const -{ - PowerPoint::Shape* qax_pointer = 0; - qRegisterMetaType("Shape*", &qax_pointer); - qRegisterMetaType("Shape", qax_pointer); - QVariant qax_result = property("DefaultShape"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Shape**)qax_result.constData(); -} - -inline PowerPoint::Designs* _Presentation::Designs() const -{ - PowerPoint::Designs* qax_pointer = 0; - qRegisterMetaType("Designs*", &qax_pointer); - qRegisterMetaType("Designs", qax_pointer); - QVariant qax_result = property("Designs"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Designs**)qax_result.constData(); -} - -inline Office::MsoTriState _Presentation::DisplayComments() const -{ - QVariant qax_result = property("DisplayComments"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void _Presentation::SetDisplayComments(Office::MsoTriState value){ setProperty("DisplayComments", QVariant(value)); } - -inline Office::DocumentLibraryVersions* _Presentation::DocumentLibraryVersions() const -{ - Office::DocumentLibraryVersions* qax_pointer = 0; - qRegisterMetaType("Office::DocumentLibraryVersions*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::DocumentLibraryVersions", qax_pointer); -#endif - QVariant qax_result = property("DocumentLibraryVersions"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::DocumentLibraryVersions**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline Office::MsoTriState _Presentation::EnvelopeVisible() const -{ - QVariant qax_result = property("EnvelopeVisible"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void _Presentation::SetEnvelopeVisible(Office::MsoTriState value){ setProperty("EnvelopeVisible", QVariant(value)); } - -inline PowerPoint::ExtraColors* _Presentation::ExtraColors() const -{ - PowerPoint::ExtraColors* qax_pointer = 0; - qRegisterMetaType("ExtraColors*", &qax_pointer); - qRegisterMetaType("ExtraColors", qax_pointer); - QVariant qax_result = property("ExtraColors"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ExtraColors**)qax_result.constData(); -} - -inline Office::MsoFarEastLineBreakLanguageID _Presentation::FarEastLineBreakLanguage() const -{ - QVariant qax_result = property("FarEastLineBreakLanguage"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoFarEastLineBreakLanguageID*)qax_result.constData(); -} -inline void _Presentation::SetFarEastLineBreakLanguage(Office::MsoFarEastLineBreakLanguageID value){ setProperty("FarEastLineBreakLanguage", QVariant(value)); } - -inline PowerPoint::PpFarEastLineBreakLevel _Presentation::FarEastLineBreakLevel() const -{ - QVariant qax_result = property("FarEastLineBreakLevel"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpFarEastLineBreakLevel*)qax_result.constData(); -} -inline void _Presentation::SetFarEastLineBreakLevel(PowerPoint::PpFarEastLineBreakLevel value){ setProperty("FarEastLineBreakLevel", QVariant(value)); } - -inline PowerPoint::Fonts* _Presentation::Fonts() const -{ - PowerPoint::Fonts* qax_pointer = 0; - qRegisterMetaType("Fonts*", &qax_pointer); - qRegisterMetaType("Fonts", qax_pointer); - QVariant qax_result = property("Fonts"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Fonts**)qax_result.constData(); -} - -inline QString _Presentation::FullName() const -{ - QVariant qax_result = property("FullName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline double _Presentation::GridDistance() const -{ - QVariant qax_result = property("GridDistance"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void _Presentation::SetGridDistance(double value){ setProperty("GridDistance", QVariant(value)); } - -inline Office::HTMLProject* _Presentation::HTMLProject() const -{ - Office::HTMLProject* qax_pointer = 0; - qRegisterMetaType("Office::HTMLProject*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::HTMLProject", qax_pointer); -#endif - QVariant qax_result = property("HTMLProject"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::HTMLProject**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline PowerPoint::_Master* _Presentation::HandoutMaster() const -{ - PowerPoint::_Master* qax_pointer = 0; - qRegisterMetaType("_Master*", &qax_pointer); - qRegisterMetaType("_Master", qax_pointer); - QVariant qax_result = property("HandoutMaster"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::_Master**)qax_result.constData(); -} - -inline PowerPoint::PpRevisionInfo _Presentation::HasRevisionInfo() const -{ - QVariant qax_result = property("HasRevisionInfo"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpRevisionInfo*)qax_result.constData(); -} - -inline Office::MsoTriState _Presentation::HasTitleMaster() const -{ - QVariant qax_result = property("HasTitleMaster"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline PowerPoint::PpDirection _Presentation::LayoutDirection() const -{ - QVariant qax_result = property("LayoutDirection"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpDirection*)qax_result.constData(); -} -inline void _Presentation::SetLayoutDirection(PowerPoint::PpDirection value){ setProperty("LayoutDirection", QVariant(value)); } - -inline QString _Presentation::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString _Presentation::NoLineBreakAfter() const -{ - QVariant qax_result = property("NoLineBreakAfter"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _Presentation::SetNoLineBreakAfter(const QString& value){ setProperty("NoLineBreakAfter", QVariant(value)); } - -inline QString _Presentation::NoLineBreakBefore() const -{ - QVariant qax_result = property("NoLineBreakBefore"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _Presentation::SetNoLineBreakBefore(const QString& value){ setProperty("NoLineBreakBefore", QVariant(value)); } - -inline PowerPoint::_Master* _Presentation::NotesMaster() const -{ - PowerPoint::_Master* qax_pointer = 0; - qRegisterMetaType("_Master*", &qax_pointer); - qRegisterMetaType("_Master", qax_pointer); - QVariant qax_result = property("NotesMaster"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::_Master**)qax_result.constData(); -} - -inline PowerPoint::PageSetup* _Presentation::PageSetup() const -{ - PowerPoint::PageSetup* qax_pointer = 0; - qRegisterMetaType("PageSetup*", &qax_pointer); - qRegisterMetaType("PageSetup", qax_pointer); - QVariant qax_result = property("PageSetup"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PageSetup**)qax_result.constData(); -} - -inline IDispatch* _Presentation::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString _Presentation::Password() const -{ - QVariant qax_result = property("Password"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _Presentation::SetPassword(const QString& value){ setProperty("Password", QVariant(value)); } - -inline QString _Presentation::PasswordEncryptionAlgorithm() const -{ - QVariant qax_result = property("PasswordEncryptionAlgorithm"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline bool _Presentation::PasswordEncryptionFileProperties() const -{ - QVariant qax_result = property("PasswordEncryptionFileProperties"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline int _Presentation::PasswordEncryptionKeyLength() const -{ - QVariant qax_result = property("PasswordEncryptionKeyLength"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString _Presentation::PasswordEncryptionProvider() const -{ - QVariant qax_result = property("PasswordEncryptionProvider"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QString _Presentation::Path() const -{ - QVariant qax_result = property("Path"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline Office::Permission* _Presentation::Permission() const -{ - Office::Permission* qax_pointer = 0; - qRegisterMetaType("Office::Permission*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::Permission", qax_pointer); -#endif - QVariant qax_result = property("Permission"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::Permission**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline PowerPoint::PrintOptions* _Presentation::PrintOptions() const -{ - PowerPoint::PrintOptions* qax_pointer = 0; - qRegisterMetaType("PrintOptions*", &qax_pointer); - qRegisterMetaType("PrintOptions", qax_pointer); - QVariant qax_result = property("PrintOptions"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PrintOptions**)qax_result.constData(); -} - -inline PowerPoint::PublishObjects* _Presentation::PublishObjects() const -{ - PowerPoint::PublishObjects* qax_pointer = 0; - qRegisterMetaType("PublishObjects*", &qax_pointer); - qRegisterMetaType("PublishObjects", qax_pointer); - QVariant qax_result = property("PublishObjects"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PublishObjects**)qax_result.constData(); -} - -inline Office::MsoTriState _Presentation::ReadOnly() const -{ - QVariant qax_result = property("ReadOnly"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline Office::MsoTriState _Presentation::RemovePersonalInformation() const -{ - QVariant qax_result = property("RemovePersonalInformation"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void _Presentation::SetRemovePersonalInformation(Office::MsoTriState value){ setProperty("RemovePersonalInformation", QVariant(value)); } - -inline Office::MsoTriState _Presentation::Saved() const -{ - QVariant qax_result = property("Saved"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void _Presentation::SetSaved(Office::MsoTriState value){ setProperty("Saved", QVariant(value)); } - -inline Office::SharedWorkspace* _Presentation::SharedWorkspace() const -{ - Office::SharedWorkspace* qax_pointer = 0; - qRegisterMetaType("Office::SharedWorkspace*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::SharedWorkspace", qax_pointer); -#endif - QVariant qax_result = property("SharedWorkspace"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::SharedWorkspace**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline Office::SignatureSet* _Presentation::Signatures() const -{ - Office::SignatureSet* qax_pointer = 0; - qRegisterMetaType("Office::SignatureSet*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::SignatureSet", qax_pointer); -#endif - QVariant qax_result = property("Signatures"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::SignatureSet**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline PowerPoint::_Master* _Presentation::SlideMaster() const -{ - PowerPoint::_Master* qax_pointer = 0; - qRegisterMetaType("_Master*", &qax_pointer); - qRegisterMetaType("_Master", qax_pointer); - QVariant qax_result = property("SlideMaster"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::_Master**)qax_result.constData(); -} - -inline PowerPoint::SlideShowSettings* _Presentation::SlideShowSettings() const -{ - PowerPoint::SlideShowSettings* qax_pointer = 0; - qRegisterMetaType("SlideShowSettings*", &qax_pointer); - qRegisterMetaType("SlideShowSettings", qax_pointer); - QVariant qax_result = property("SlideShowSettings"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SlideShowSettings**)qax_result.constData(); -} - -inline PowerPoint::SlideShowWindow* _Presentation::SlideShowWindow() const -{ - PowerPoint::SlideShowWindow* qax_pointer = 0; - qRegisterMetaType("SlideShowWindow*", &qax_pointer); - qRegisterMetaType("SlideShowWindow", qax_pointer); - QVariant qax_result = property("SlideShowWindow"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SlideShowWindow**)qax_result.constData(); -} - -inline PowerPoint::Slides* _Presentation::Slides() const -{ - PowerPoint::Slides* qax_pointer = 0; - qRegisterMetaType("Slides*", &qax_pointer); - qRegisterMetaType("Slides", qax_pointer); - QVariant qax_result = property("Slides"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Slides**)qax_result.constData(); -} - -inline Office::MsoTriState _Presentation::SnapToGrid() const -{ - QVariant qax_result = property("SnapToGrid"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void _Presentation::SetSnapToGrid(Office::MsoTriState value){ setProperty("SnapToGrid", QVariant(value)); } - -inline Office::Sync* _Presentation::Sync() const -{ - Office::Sync* qax_pointer = 0; - qRegisterMetaType("Office::Sync*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::Sync", qax_pointer); -#endif - QVariant qax_result = property("Sync"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::Sync**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline PowerPoint::Tags* _Presentation::Tags() const -{ - PowerPoint::Tags* qax_pointer = 0; - qRegisterMetaType("Tags*", &qax_pointer); - qRegisterMetaType("Tags", qax_pointer); - QVariant qax_result = property("Tags"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Tags**)qax_result.constData(); -} - -inline QString _Presentation::TemplateName() const -{ - QVariant qax_result = property("TemplateName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline PowerPoint::_Master* _Presentation::TitleMaster() const -{ - PowerPoint::_Master* qax_pointer = 0; - qRegisterMetaType("_Master*", &qax_pointer); - qRegisterMetaType("_Master", qax_pointer); - QVariant qax_result = property("TitleMaster"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::_Master**)qax_result.constData(); -} - -inline Office::MsoTriState _Presentation::VBASigned() const -{ - QVariant qax_result = property("VBASigned"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline VBIDE::VBProject* _Presentation::VBProject() const -{ - VBIDE::VBProject* qax_pointer = 0; - qRegisterMetaType("VBIDE::VBProject*", &qax_pointer); -#ifdef QAX_DUMPCPP_VBIDE_H - qRegisterMetaType("VBIDE::VBProject", qax_pointer); -#endif - QVariant qax_result = property("VBProject"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_VBIDE_H - return *(VBIDE::VBProject**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline PowerPoint::WebOptions* _Presentation::WebOptions() const -{ - PowerPoint::WebOptions* qax_pointer = 0; - qRegisterMetaType("WebOptions*", &qax_pointer); - qRegisterMetaType("WebOptions", qax_pointer); - QVariant qax_result = property("WebOptions"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::WebOptions**)qax_result.constData(); -} - -inline PowerPoint::DocumentWindows* _Presentation::Windows() const -{ - PowerPoint::DocumentWindows* qax_pointer = 0; - qRegisterMetaType("DocumentWindows*", &qax_pointer); - qRegisterMetaType("DocumentWindows", qax_pointer); - QVariant qax_result = property("Windows"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::DocumentWindows**)qax_result.constData(); -} - -inline QString _Presentation::WritePassword() const -{ - QVariant qax_result = property("WritePassword"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void _Presentation::SetWritePassword(const QString& value){ setProperty("WritePassword", QVariant(value)); } - -inline void _Presentation::AddBaseline() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void _Presentation::AddBaseline(const QString& FileName) -{ - void *_a[] = {0, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline PowerPoint::_Master* _Presentation::AddTitleMaster() -{ - PowerPoint::_Master* qax_result = 0; - qRegisterMetaType("_Master*", &qax_result); - qRegisterMetaType("_Master", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline void _Presentation::AddToFavorites() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline void _Presentation::ApplyTemplate(const QString& FileName) -{ - void *_a[] = {0, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - -inline bool _Presentation::CanCheckIn() -{ - bool qax_result; - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); - return qax_result; -} - -inline void _Presentation::CheckIn() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline void _Presentation::CheckIn(bool SaveChanges) -{ - void *_a[] = {0, (void*)&SaveChanges}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); -} - -inline void _Presentation::CheckIn(bool SaveChanges, const QVariant& Comments) -{ - void *_a[] = {0, (void*)&SaveChanges, (void*)&Comments}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); -} - -inline void _Presentation::CheckIn(bool SaveChanges, const QVariant& Comments, const QVariant& MakePublic) -{ - void *_a[] = {0, (void*)&SaveChanges, (void*)&Comments, (void*)&MakePublic}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); -} - -inline void _Presentation::Close() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); -} - -inline void _Presentation::EndReview() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); -} - -inline void _Presentation::Export(const QString& Path, const QString& FilterName) -{ - void *_a[] = {0, (void*)&Path, (void*)&FilterName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); -} - -inline void _Presentation::Export(const QString& Path, const QString& FilterName, int ScaleWidth) -{ - void *_a[] = {0, (void*)&Path, (void*)&FilterName, (void*)&ScaleWidth}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); -} - -inline void _Presentation::Export(const QString& Path, const QString& FilterName, int ScaleWidth, int ScaleHeight) -{ - void *_a[] = {0, (void*)&Path, (void*)&FilterName, (void*)&ScaleWidth, (void*)&ScaleHeight}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); -} - -inline void _Presentation::FollowHyperlink(const QString& Address) -{ - void *_a[] = {0, (void*)&Address}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); -} - -inline void _Presentation::FollowHyperlink(const QString& Address, const QString& SubAddress) -{ - void *_a[] = {0, (void*)&Address, (void*)&SubAddress}; - qt_metacall(QMetaObject::InvokeMetaMethod, 23, _a); -} - -inline void _Presentation::FollowHyperlink(const QString& Address, const QString& SubAddress, bool NewWindow) -{ - void *_a[] = {0, (void*)&Address, (void*)&SubAddress, (void*)&NewWindow}; - qt_metacall(QMetaObject::InvokeMetaMethod, 24, _a); -} - -inline void _Presentation::FollowHyperlink(const QString& Address, const QString& SubAddress, bool NewWindow, bool AddHistory) -{ - void *_a[] = {0, (void*)&Address, (void*)&SubAddress, (void*)&NewWindow, (void*)&AddHistory}; - qt_metacall(QMetaObject::InvokeMetaMethod, 25, _a); -} - -inline void _Presentation::FollowHyperlink(const QString& Address, const QString& SubAddress, bool NewWindow, bool AddHistory, const QString& ExtraInfo) -{ - void *_a[] = {0, (void*)&Address, (void*)&SubAddress, (void*)&NewWindow, (void*)&AddHistory, (void*)&ExtraInfo}; - qt_metacall(QMetaObject::InvokeMetaMethod, 26, _a); -} - -inline void _Presentation::FollowHyperlink(const QString& Address, const QString& SubAddress, bool NewWindow, bool AddHistory, const QString& ExtraInfo, Office::MsoExtraInfoMethod Method) -{ - void *_a[] = {0, (void*)&Address, (void*)&SubAddress, (void*)&NewWindow, (void*)&AddHistory, (void*)&ExtraInfo, (void*)&Method}; - qt_metacall(QMetaObject::InvokeMetaMethod, 27, _a); -} - -inline void _Presentation::FollowHyperlink(const QString& Address, const QString& SubAddress, bool NewWindow, bool AddHistory, const QString& ExtraInfo, Office::MsoExtraInfoMethod Method, const QString& HeaderInfo) -{ - void *_a[] = {0, (void*)&Address, (void*)&SubAddress, (void*)&NewWindow, (void*)&AddHistory, (void*)&ExtraInfo, (void*)&Method, (void*)&HeaderInfo}; - qt_metacall(QMetaObject::InvokeMetaMethod, 28, _a); -} - -inline void _Presentation::MakeIntoTemplate(Office::MsoTriState IsDesignTemplate) -{ - void *_a[] = {0, (void*)&IsDesignTemplate}; - qt_metacall(QMetaObject::InvokeMetaMethod, 29, _a); -} - -inline void _Presentation::Merge(const QString& Path) -{ - void *_a[] = {0, (void*)&Path}; - qt_metacall(QMetaObject::InvokeMetaMethod, 30, _a); -} - -inline PowerPoint::DocumentWindow* _Presentation::NewWindow() -{ - PowerPoint::DocumentWindow* qax_result = 0; - qRegisterMetaType("DocumentWindow*", &qax_result); - qRegisterMetaType("DocumentWindow", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 31, _a); - return qax_result; -} - -inline void _Presentation::PrintOut() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 32, _a); -} - -inline void _Presentation::PrintOut(int From) -{ - void *_a[] = {0, (void*)&From}; - qt_metacall(QMetaObject::InvokeMetaMethod, 33, _a); -} - -inline void _Presentation::PrintOut(int From, int To) -{ - void *_a[] = {0, (void*)&From, (void*)&To}; - qt_metacall(QMetaObject::InvokeMetaMethod, 34, _a); -} - -inline void _Presentation::PrintOut(int From, int To, const QString& PrintToFile) -{ - void *_a[] = {0, (void*)&From, (void*)&To, (void*)&PrintToFile}; - qt_metacall(QMetaObject::InvokeMetaMethod, 35, _a); -} - -inline void _Presentation::PrintOut(int From, int To, const QString& PrintToFile, int Copies) -{ - void *_a[] = {0, (void*)&From, (void*)&To, (void*)&PrintToFile, (void*)&Copies}; - qt_metacall(QMetaObject::InvokeMetaMethod, 36, _a); -} - -inline void _Presentation::PrintOut(int From, int To, const QString& PrintToFile, int Copies, Office::MsoTriState Collate) -{ - void *_a[] = {0, (void*)&From, (void*)&To, (void*)&PrintToFile, (void*)&Copies, (void*)&Collate}; - qt_metacall(QMetaObject::InvokeMetaMethod, 37, _a); -} - -inline void _Presentation::ReloadAs(Office::MsoEncoding cp) -{ - void *_a[] = {0, (void*)&cp}; - qt_metacall(QMetaObject::InvokeMetaMethod, 38, _a); -} - -inline void _Presentation::RemoveBaseline() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 39, _a); -} - -inline void _Presentation::ReplyWithChanges() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 40, _a); -} - -inline void _Presentation::ReplyWithChanges(bool ShowMessage) -{ - void *_a[] = {0, (void*)&ShowMessage}; - qt_metacall(QMetaObject::InvokeMetaMethod, 41, _a); -} - -inline void _Presentation::Save() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 42, _a); -} - -inline void _Presentation::SaveAs(const QString& FileName) -{ - void *_a[] = {0, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 43, _a); -} - -inline void _Presentation::SaveAs(const QString& FileName, PowerPoint::PpSaveAsFileType FileFormat) -{ - void *_a[] = {0, (void*)&FileName, (void*)&FileFormat}; - qt_metacall(QMetaObject::InvokeMetaMethod, 44, _a); -} - -inline void _Presentation::SaveAs(const QString& FileName, PowerPoint::PpSaveAsFileType FileFormat, Office::MsoTriState EmbedTrueTypeFonts) -{ - void *_a[] = {0, (void*)&FileName, (void*)&FileFormat, (void*)&EmbedTrueTypeFonts}; - qt_metacall(QMetaObject::InvokeMetaMethod, 45, _a); -} - -inline void _Presentation::SaveCopyAs(const QString& FileName) -{ - void *_a[] = {0, (void*)&FileName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 46, _a); -} - -inline void _Presentation::SaveCopyAs(const QString& FileName, PowerPoint::PpSaveAsFileType FileFormat) -{ - void *_a[] = {0, (void*)&FileName, (void*)&FileFormat}; - qt_metacall(QMetaObject::InvokeMetaMethod, 47, _a); -} - -inline void _Presentation::SaveCopyAs(const QString& FileName, PowerPoint::PpSaveAsFileType FileFormat, Office::MsoTriState EmbedTrueTypeFonts) -{ - void *_a[] = {0, (void*)&FileName, (void*)&FileFormat, (void*)&EmbedTrueTypeFonts}; - qt_metacall(QMetaObject::InvokeMetaMethod, 48, _a); -} - -inline void _Presentation::SendFaxOverInternet() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 49, _a); -} - -inline void _Presentation::SendFaxOverInternet(const QString& Recipients) -{ - void *_a[] = {0, (void*)&Recipients}; - qt_metacall(QMetaObject::InvokeMetaMethod, 50, _a); -} - -inline void _Presentation::SendFaxOverInternet(const QString& Recipients, const QString& Subject) -{ - void *_a[] = {0, (void*)&Recipients, (void*)&Subject}; - qt_metacall(QMetaObject::InvokeMetaMethod, 51, _a); -} - -inline void _Presentation::SendFaxOverInternet(const QString& Recipients, const QString& Subject, bool ShowMessage) -{ - void *_a[] = {0, (void*)&Recipients, (void*)&Subject, (void*)&ShowMessage}; - qt_metacall(QMetaObject::InvokeMetaMethod, 52, _a); -} - -inline void _Presentation::SendForReview() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 53, _a); -} - -inline void _Presentation::SendForReview(const QString& Recipients) -{ - void *_a[] = {0, (void*)&Recipients}; - qt_metacall(QMetaObject::InvokeMetaMethod, 54, _a); -} - -inline void _Presentation::SendForReview(const QString& Recipients, const QString& Subject) -{ - void *_a[] = {0, (void*)&Recipients, (void*)&Subject}; - qt_metacall(QMetaObject::InvokeMetaMethod, 55, _a); -} - -inline void _Presentation::SendForReview(const QString& Recipients, const QString& Subject, bool ShowMessage) -{ - void *_a[] = {0, (void*)&Recipients, (void*)&Subject, (void*)&ShowMessage}; - qt_metacall(QMetaObject::InvokeMetaMethod, 56, _a); -} - -inline void _Presentation::SendForReview(const QString& Recipients, const QString& Subject, bool ShowMessage, const QVariant& IncludeAttachment) -{ - void *_a[] = {0, (void*)&Recipients, (void*)&Subject, (void*)&ShowMessage, (void*)&IncludeAttachment}; - qt_metacall(QMetaObject::InvokeMetaMethod, 57, _a); -} - -inline void _Presentation::SetPasswordEncryptionOptions(const QString& PasswordEncryptionProvider, const QString& PasswordEncryptionAlgorithm, int PasswordEncryptionKeyLength, bool PasswordEncryptionFileProperties) -{ - void *_a[] = {0, (void*)&PasswordEncryptionProvider, (void*)&PasswordEncryptionAlgorithm, (void*)&PasswordEncryptionKeyLength, (void*)&PasswordEncryptionFileProperties}; - qt_metacall(QMetaObject::InvokeMetaMethod, 68, _a); -} - -inline void _Presentation::SetUndoText(const QString& Text) -{ - void *_a[] = {0, (void*)&Text}; - qt_metacall(QMetaObject::InvokeMetaMethod, 72, _a); -} - -inline void _Presentation::Unused() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 74, _a); -} - -inline void _Presentation::UpdateLinks() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 75, _a); -} - -inline void _Presentation::WebPagePreview() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 76, _a); -} - -inline void _Presentation::sblt(const QString& s) -{ - void *_a[] = {0, (void*)&s}; - qt_metacall(QMetaObject::InvokeMetaMethod, 77, _a); -} - - -inline PowerPoint::Application* Tags::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int Tags::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* Tags::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* Tags::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline void Tags::Add(const QString& Name, const QString& Value) -{ - void *_a[] = {0, (void*)&Name, (void*)&Value}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void Tags::AddBinary(const QString& Name, const QString& FilePath) -{ - void *_a[] = {0, (void*)&Name, (void*)&FilePath}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline int Tags::BinaryValue(const QString& Name) -{ - int qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Name}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline void Tags::Delete(const QString& Name) -{ - void *_a[] = {0, (void*)&Name}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - -inline QString Tags::Item(const QString& Name) -{ - QString qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Name}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline QString Tags::Name(int Index) -{ - QString qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); - return qax_result; -} - -inline QString Tags::Value(int Index) -{ - QString qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); - return qax_result; -} - -inline QVariant Tags::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); - return qax_result; -} - - -inline QString OCXExtender::AltHTML() const -{ - QVariant qax_result = property("AltHTML"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void OCXExtender::SetAltHTML(const QString& value){ setProperty("AltHTML", QVariant(value)); } - -inline double OCXExtender::Height() const -{ - QVariant qax_result = property("Height"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void OCXExtender::SetHeight(double value){ setProperty("Height", QVariant(value)); } - -inline double OCXExtender::Left() const -{ - QVariant qax_result = property("Left"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void OCXExtender::SetLeft(double value){ setProperty("Left", QVariant(value)); } - -inline QString OCXExtender::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void OCXExtender::SetName(const QString& value){ setProperty("Name", QVariant(value)); } - -inline double OCXExtender::Top() const -{ - QVariant qax_result = property("Top"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void OCXExtender::SetTop(double value){ setProperty("Top", QVariant(value)); } - -inline bool OCXExtender::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void OCXExtender::SetVisible(bool value){ setProperty("Visible", QVariant(value)); } - -inline double OCXExtender::Width() const -{ - QVariant qax_result = property("Width"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void OCXExtender::SetWidth(double value){ setProperty("Width", QVariant(value)); } - -inline int OCXExtender::ZOrderPosition() const -{ - QVariant qax_result = property("ZOrderPosition"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - - -inline QString OLEControl::AltHTML() const -{ - QVariant qax_result = property("AltHTML"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void OLEControl::SetAltHTML(const QString& value){ setProperty("AltHTML", QVariant(value)); } - -inline double OLEControl::Height() const -{ - QVariant qax_result = property("Height"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void OLEControl::SetHeight(double value){ setProperty("Height", QVariant(value)); } - -inline double OLEControl::Left() const -{ - QVariant qax_result = property("Left"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void OLEControl::SetLeft(double value){ setProperty("Left", QVariant(value)); } - -inline QString OLEControl::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void OLEControl::SetName(const QString& value){ setProperty("Name", QVariant(value)); } - -inline double OLEControl::Top() const -{ - QVariant qax_result = property("Top"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void OLEControl::SetTop(double value){ setProperty("Top", QVariant(value)); } - -inline bool OLEControl::Visible() const -{ - QVariant qax_result = property("Visible"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void OLEControl::SetVisible(bool value){ setProperty("Visible", QVariant(value)); } - -inline double OLEControl::Width() const -{ - QVariant qax_result = property("Width"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void OLEControl::SetWidth(double value){ setProperty("Width", QVariant(value)); } - -inline int OLEControl::ZOrderPosition() const -{ - QVariant qax_result = property("ZOrderPosition"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - - -inline PowerPoint::Application* Table::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::Columns* Table::Columns() const -{ - PowerPoint::Columns* qax_pointer = 0; - qRegisterMetaType("Columns*", &qax_pointer); - qRegisterMetaType("Columns", qax_pointer); - QVariant qax_result = property("Columns"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Columns**)qax_result.constData(); -} - -inline IDispatch* Table::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::Rows* Table::Rows() const -{ - PowerPoint::Rows* qax_pointer = 0; - qRegisterMetaType("Rows*", &qax_pointer); - qRegisterMetaType("Rows", qax_pointer); - QVariant qax_result = property("Rows"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Rows**)qax_result.constData(); -} - -inline PowerPoint::PpDirection Table::TableDirection() const -{ - QVariant qax_result = property("TableDirection"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpDirection*)qax_result.constData(); -} -inline void Table::SetTableDirection(PowerPoint::PpDirection value){ setProperty("TableDirection", QVariant(value)); } - -inline PowerPoint::Cell* Table::Cell(int Row, int Column) -{ - PowerPoint::Cell* qax_result = 0; - qRegisterMetaType("Cell*", &qax_result); - qRegisterMetaType("Cell", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Row, (void*)&Column}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline void Table::MergeBorders() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - - -inline PowerPoint::Application* Columns::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int Columns::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* Columns::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* Columns::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::Column* Columns::Add() -{ - PowerPoint::Column* qax_result = 0; - qRegisterMetaType("Column*", &qax_result); - qRegisterMetaType("Column", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline PowerPoint::Column* Columns::Add(int BeforeColumn) -{ - PowerPoint::Column* qax_result = 0; - qRegisterMetaType("Column*", &qax_result); - qRegisterMetaType("Column", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&BeforeColumn}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline PowerPoint::Column* Columns::Item(int Index) -{ - PowerPoint::Column* qax_result = 0; - qRegisterMetaType("Column*", &qax_result); - qRegisterMetaType("Column", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline QVariant Columns::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - - -inline PowerPoint::Application* Column::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::CellRange* Column::Cells() const -{ - PowerPoint::CellRange* qax_pointer = 0; - qRegisterMetaType("CellRange*", &qax_pointer); - qRegisterMetaType("CellRange", qax_pointer); - QVariant qax_result = property("Cells"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::CellRange**)qax_result.constData(); -} - -inline IDispatch* Column::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline double Column::Width() const -{ - QVariant qax_result = property("Width"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Column::SetWidth(double value){ setProperty("Width", QVariant(value)); } - -inline void Column::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void Column::Select() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - - -inline PowerPoint::Application* Rows::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int Rows::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* Rows::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* Rows::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::Row* Rows::Add() -{ - PowerPoint::Row* qax_result = 0; - qRegisterMetaType("Row*", &qax_result); - qRegisterMetaType("Row", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline PowerPoint::Row* Rows::Add(int BeforeRow) -{ - PowerPoint::Row* qax_result = 0; - qRegisterMetaType("Row*", &qax_result); - qRegisterMetaType("Row", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&BeforeRow}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline PowerPoint::Row* Rows::Item(int Index) -{ - PowerPoint::Row* qax_result = 0; - qRegisterMetaType("Row*", &qax_result); - qRegisterMetaType("Row", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline QVariant Rows::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - - -inline PowerPoint::Application* Row::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::CellRange* Row::Cells() const -{ - PowerPoint::CellRange* qax_pointer = 0; - qRegisterMetaType("CellRange*", &qax_pointer); - qRegisterMetaType("CellRange", qax_pointer); - QVariant qax_result = property("Cells"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::CellRange**)qax_result.constData(); -} - -inline double Row::Height() const -{ - QVariant qax_result = property("Height"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Row::SetHeight(double value){ setProperty("Height", QVariant(value)); } - -inline IDispatch* Row::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline void Row::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void Row::Select() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - - -inline PowerPoint::Application* CellRange::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::Borders* CellRange::Borders() const -{ - PowerPoint::Borders* qax_pointer = 0; - qRegisterMetaType("Borders*", &qax_pointer); - qRegisterMetaType("Borders", qax_pointer); - QVariant qax_result = property("Borders"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Borders**)qax_result.constData(); -} - -inline int CellRange::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* CellRange::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* CellRange::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::Cell* CellRange::Item(int Index) -{ - PowerPoint::Cell* qax_result = 0; - qRegisterMetaType("Cell*", &qax_result); - qRegisterMetaType("Cell", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline QVariant CellRange::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - - -inline PowerPoint::Application* Cell::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::Borders* Cell::Borders() const -{ - PowerPoint::Borders* qax_pointer = 0; - qRegisterMetaType("Borders*", &qax_pointer); - qRegisterMetaType("Borders", qax_pointer); - QVariant qax_result = property("Borders"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Borders**)qax_result.constData(); -} - -inline IDispatch* Cell::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline bool Cell::Selected() const -{ - QVariant qax_result = property("Selected"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} - -inline PowerPoint::Shape* Cell::Shape() const -{ - PowerPoint::Shape* qax_pointer = 0; - qRegisterMetaType("Shape*", &qax_pointer); - qRegisterMetaType("Shape", qax_pointer); - QVariant qax_result = property("Shape"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Shape**)qax_result.constData(); -} - -inline void Cell::Merge(PowerPoint::Cell* MergeTo) -{ - void *_a[] = {0, (void*)&MergeTo}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void Cell::Select() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void Cell::Split(int NumRows, int NumColumns) -{ - void *_a[] = {0, (void*)&NumRows, (void*)&NumColumns}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - - -inline PowerPoint::Application* Borders::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int Borders::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* Borders::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* Borders::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::LineFormat* Borders::Item(PowerPoint::PpBorderType BorderType) -{ - PowerPoint::LineFormat* qax_result = 0; - qRegisterMetaType("LineFormat*", &qax_result); - qRegisterMetaType("LineFormat", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&BorderType}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline QVariant Borders::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - - -inline PowerPoint::Application* Panes::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int Panes::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* Panes::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* Panes::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::Pane* Panes::Item(int Index) -{ - PowerPoint::Pane* qax_result = 0; - qRegisterMetaType("Pane*", &qax_result); - qRegisterMetaType("Pane", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline QVariant Panes::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - - -inline Office::MsoTriState Pane::Active() const -{ - QVariant qax_result = property("Active"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline PowerPoint::Application* Pane::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline IDispatch* Pane::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::PpViewType Pane::ViewType() const -{ - QVariant qax_result = property("ViewType"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpViewType*)qax_result.constData(); -} - -inline void Pane::Activate() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline Office::MsoTriState DefaultWebOptions::AllowPNG() const -{ - QVariant qax_result = property("AllowPNG"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void DefaultWebOptions::SetAllowPNG(Office::MsoTriState value){ setProperty("AllowPNG", QVariant(value)); } - -inline Office::MsoTriState DefaultWebOptions::AlwaysSaveInDefaultEncoding() const -{ - QVariant qax_result = property("AlwaysSaveInDefaultEncoding"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void DefaultWebOptions::SetAlwaysSaveInDefaultEncoding(Office::MsoTriState value){ setProperty("AlwaysSaveInDefaultEncoding", QVariant(value)); } - -inline Office::MsoTriState DefaultWebOptions::CheckIfOfficeIsHTMLEditor() const -{ - QVariant qax_result = property("CheckIfOfficeIsHTMLEditor"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void DefaultWebOptions::SetCheckIfOfficeIsHTMLEditor(Office::MsoTriState value){ setProperty("CheckIfOfficeIsHTMLEditor", QVariant(value)); } - -inline Office::MsoEncoding DefaultWebOptions::Encoding() const -{ - QVariant qax_result = property("Encoding"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoEncoding*)qax_result.constData(); -} -inline void DefaultWebOptions::SetEncoding(Office::MsoEncoding value){ setProperty("Encoding", QVariant(value)); } - -inline QString DefaultWebOptions::FolderSuffix() const -{ - QVariant qax_result = property("FolderSuffix"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline Office::WebPageFonts* DefaultWebOptions::Fonts() const -{ - Office::WebPageFonts* qax_pointer = 0; - qRegisterMetaType("Office::WebPageFonts*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::WebPageFonts", qax_pointer); -#endif - QVariant qax_result = property("Fonts"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::WebPageFonts**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline PowerPoint::PpFrameColors DefaultWebOptions::FrameColors() const -{ - QVariant qax_result = property("FrameColors"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpFrameColors*)qax_result.constData(); -} -inline void DefaultWebOptions::SetFrameColors(PowerPoint::PpFrameColors value){ setProperty("FrameColors", QVariant(value)); } - -inline PowerPoint::PpHTMLVersion DefaultWebOptions::HTMLVersion() const -{ - QVariant qax_result = property("HTMLVersion"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpHTMLVersion*)qax_result.constData(); -} -inline void DefaultWebOptions::SetHTMLVersion(PowerPoint::PpHTMLVersion value){ setProperty("HTMLVersion", QVariant(value)); } - -inline Office::MsoTriState DefaultWebOptions::IncludeNavigation() const -{ - QVariant qax_result = property("IncludeNavigation"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void DefaultWebOptions::SetIncludeNavigation(Office::MsoTriState value){ setProperty("IncludeNavigation", QVariant(value)); } - -inline Office::MsoTriState DefaultWebOptions::OrganizeInFolder() const -{ - QVariant qax_result = property("OrganizeInFolder"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void DefaultWebOptions::SetOrganizeInFolder(Office::MsoTriState value){ setProperty("OrganizeInFolder", QVariant(value)); } - -inline Office::MsoTriState DefaultWebOptions::RelyOnVML() const -{ - QVariant qax_result = property("RelyOnVML"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void DefaultWebOptions::SetRelyOnVML(Office::MsoTriState value){ setProperty("RelyOnVML", QVariant(value)); } - -inline Office::MsoTriState DefaultWebOptions::ResizeGraphics() const -{ - QVariant qax_result = property("ResizeGraphics"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void DefaultWebOptions::SetResizeGraphics(Office::MsoTriState value){ setProperty("ResizeGraphics", QVariant(value)); } - -inline Office::MsoTriState DefaultWebOptions::SaveNewWebPagesAsWebArchives() const -{ - QVariant qax_result = property("SaveNewWebPagesAsWebArchives"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void DefaultWebOptions::SetSaveNewWebPagesAsWebArchives(Office::MsoTriState value){ setProperty("SaveNewWebPagesAsWebArchives", QVariant(value)); } - -inline Office::MsoScreenSize DefaultWebOptions::ScreenSize() const -{ - QVariant qax_result = property("ScreenSize"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoScreenSize*)qax_result.constData(); -} -inline void DefaultWebOptions::SetScreenSize(Office::MsoScreenSize value){ setProperty("ScreenSize", QVariant(value)); } - -inline Office::MsoTriState DefaultWebOptions::ShowSlideAnimation() const -{ - QVariant qax_result = property("ShowSlideAnimation"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void DefaultWebOptions::SetShowSlideAnimation(Office::MsoTriState value){ setProperty("ShowSlideAnimation", QVariant(value)); } - -inline Office::MsoTargetBrowser DefaultWebOptions::TargetBrowser() const -{ - QVariant qax_result = property("TargetBrowser"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTargetBrowser*)qax_result.constData(); -} -inline void DefaultWebOptions::SetTargetBrowser(Office::MsoTargetBrowser value){ setProperty("TargetBrowser", QVariant(value)); } - -inline Office::MsoTriState DefaultWebOptions::UpdateLinksOnSave() const -{ - QVariant qax_result = property("UpdateLinksOnSave"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void DefaultWebOptions::SetUpdateLinksOnSave(Office::MsoTriState value){ setProperty("UpdateLinksOnSave", QVariant(value)); } - -inline Office::MsoTriState DefaultWebOptions::UseLongFileNames() const -{ - QVariant qax_result = property("UseLongFileNames"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void DefaultWebOptions::SetUseLongFileNames(Office::MsoTriState value){ setProperty("UseLongFileNames", QVariant(value)); } - - -inline Office::MsoTriState WebOptions::AllowPNG() const -{ - QVariant qax_result = property("AllowPNG"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void WebOptions::SetAllowPNG(Office::MsoTriState value){ setProperty("AllowPNG", QVariant(value)); } - -inline Office::MsoEncoding WebOptions::Encoding() const -{ - QVariant qax_result = property("Encoding"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoEncoding*)qax_result.constData(); -} -inline void WebOptions::SetEncoding(Office::MsoEncoding value){ setProperty("Encoding", QVariant(value)); } - -inline QString WebOptions::FolderSuffix() const -{ - QVariant qax_result = property("FolderSuffix"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline PowerPoint::PpFrameColors WebOptions::FrameColors() const -{ - QVariant qax_result = property("FrameColors"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpFrameColors*)qax_result.constData(); -} -inline void WebOptions::SetFrameColors(PowerPoint::PpFrameColors value){ setProperty("FrameColors", QVariant(value)); } - -inline PowerPoint::PpHTMLVersion WebOptions::HTMLVersion() const -{ - QVariant qax_result = property("HTMLVersion"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpHTMLVersion*)qax_result.constData(); -} -inline void WebOptions::SetHTMLVersion(PowerPoint::PpHTMLVersion value){ setProperty("HTMLVersion", QVariant(value)); } - -inline Office::MsoTriState WebOptions::IncludeNavigation() const -{ - QVariant qax_result = property("IncludeNavigation"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void WebOptions::SetIncludeNavigation(Office::MsoTriState value){ setProperty("IncludeNavigation", QVariant(value)); } - -inline Office::MsoTriState WebOptions::OrganizeInFolder() const -{ - QVariant qax_result = property("OrganizeInFolder"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void WebOptions::SetOrganizeInFolder(Office::MsoTriState value){ setProperty("OrganizeInFolder", QVariant(value)); } - -inline Office::MsoTriState WebOptions::RelyOnVML() const -{ - QVariant qax_result = property("RelyOnVML"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void WebOptions::SetRelyOnVML(Office::MsoTriState value){ setProperty("RelyOnVML", QVariant(value)); } - -inline Office::MsoTriState WebOptions::ResizeGraphics() const -{ - QVariant qax_result = property("ResizeGraphics"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void WebOptions::SetResizeGraphics(Office::MsoTriState value){ setProperty("ResizeGraphics", QVariant(value)); } - -inline Office::MsoScreenSize WebOptions::ScreenSize() const -{ - QVariant qax_result = property("ScreenSize"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoScreenSize*)qax_result.constData(); -} -inline void WebOptions::SetScreenSize(Office::MsoScreenSize value){ setProperty("ScreenSize", QVariant(value)); } - -inline Office::MsoTriState WebOptions::ShowSlideAnimation() const -{ - QVariant qax_result = property("ShowSlideAnimation"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void WebOptions::SetShowSlideAnimation(Office::MsoTriState value){ setProperty("ShowSlideAnimation", QVariant(value)); } - -inline Office::MsoTargetBrowser WebOptions::TargetBrowser() const -{ - QVariant qax_result = property("TargetBrowser"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTargetBrowser*)qax_result.constData(); -} -inline void WebOptions::SetTargetBrowser(Office::MsoTargetBrowser value){ setProperty("TargetBrowser", QVariant(value)); } - -inline Office::MsoTriState WebOptions::UseLongFileNames() const -{ - QVariant qax_result = property("UseLongFileNames"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void WebOptions::SetUseLongFileNames(Office::MsoTriState value){ setProperty("UseLongFileNames", QVariant(value)); } - -inline void WebOptions::UseDefaultFolderSuffix() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); -} - - -inline PowerPoint::Application* PublishObjects::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int PublishObjects::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* PublishObjects::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* PublishObjects::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::PublishObject* PublishObjects::Item(int Index) -{ - PowerPoint::PublishObject* qax_result = 0; - qRegisterMetaType("PublishObject*", &qax_result); - qRegisterMetaType("PublishObject", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline QVariant PublishObjects::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - - -inline PowerPoint::Application* PublishObject::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline QString PublishObject::FileName() const -{ - QVariant qax_result = property("FileName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void PublishObject::SetFileName(const QString& value){ setProperty("FileName", QVariant(value)); } - -inline PowerPoint::PpHTMLVersion PublishObject::HTMLVersion() const -{ - QVariant qax_result = property("HTMLVersion"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpHTMLVersion*)qax_result.constData(); -} -inline void PublishObject::SetHTMLVersion(PowerPoint::PpHTMLVersion value){ setProperty("HTMLVersion", QVariant(value)); } - -inline IDispatch* PublishObject::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int PublishObject::RangeEnd() const -{ - QVariant qax_result = property("RangeEnd"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void PublishObject::SetRangeEnd(int value){ setProperty("RangeEnd", QVariant(value)); } - -inline int PublishObject::RangeStart() const -{ - QVariant qax_result = property("RangeStart"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void PublishObject::SetRangeStart(int value){ setProperty("RangeStart", QVariant(value)); } - -inline QString PublishObject::SlideShowName() const -{ - QVariant qax_result = property("SlideShowName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void PublishObject::SetSlideShowName(const QString& value){ setProperty("SlideShowName", QVariant(value)); } - -inline PowerPoint::PpPublishSourceType PublishObject::SourceType() const -{ - QVariant qax_result = property("SourceType"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PpPublishSourceType*)qax_result.constData(); -} -inline void PublishObject::SetSourceType(PowerPoint::PpPublishSourceType value){ setProperty("SourceType", QVariant(value)); } - -inline Office::MsoTriState PublishObject::SpeakerNotes() const -{ - QVariant qax_result = property("SpeakerNotes"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void PublishObject::SetSpeakerNotes(Office::MsoTriState value){ setProperty("SpeakerNotes", QVariant(value)); } - -inline void PublishObject::Publish() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline PowerPoint::Application* Master::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::ShapeRange* Master::Background() const -{ - PowerPoint::ShapeRange* qax_pointer = 0; - qRegisterMetaType("ShapeRange*", &qax_pointer); - qRegisterMetaType("ShapeRange", qax_pointer); - QVariant qax_result = property("Background"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ShapeRange**)qax_result.constData(); -} - -inline PowerPoint::ColorScheme* Master::ColorScheme() const -{ - PowerPoint::ColorScheme* qax_pointer = 0; - qRegisterMetaType("ColorScheme*", &qax_pointer); - qRegisterMetaType("ColorScheme", qax_pointer); - QVariant qax_result = property("ColorScheme"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ColorScheme**)qax_result.constData(); -} -inline void Master::SetColorScheme(PowerPoint::ColorScheme* value){ - int typeId = qRegisterMetaType("PowerPoint::ColorScheme*", &value); - setProperty("ColorScheme", QVariant(typeId, &value)); -} - -inline PowerPoint::Design* Master::Design() const -{ - PowerPoint::Design* qax_pointer = 0; - qRegisterMetaType("Design*", &qax_pointer); - qRegisterMetaType("Design", qax_pointer); - QVariant qax_result = property("Design"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Design**)qax_result.constData(); -} - -inline PowerPoint::HeadersFooters* Master::HeadersFooters() const -{ - PowerPoint::HeadersFooters* qax_pointer = 0; - qRegisterMetaType("HeadersFooters*", &qax_pointer); - qRegisterMetaType("HeadersFooters", qax_pointer); - QVariant qax_result = property("HeadersFooters"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::HeadersFooters**)qax_result.constData(); -} - -inline double Master::Height() const -{ - QVariant qax_result = property("Height"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} - -inline PowerPoint::Hyperlinks* Master::Hyperlinks() const -{ - PowerPoint::Hyperlinks* qax_pointer = 0; - qRegisterMetaType("Hyperlinks*", &qax_pointer); - qRegisterMetaType("Hyperlinks", qax_pointer); - QVariant qax_result = property("Hyperlinks"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Hyperlinks**)qax_result.constData(); -} - -inline QString Master::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Master::SetName(const QString& value){ setProperty("Name", QVariant(value)); } - -inline IDispatch* Master::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::Scripts* Master::Scripts() const -{ - Office::Scripts* qax_pointer = 0; - qRegisterMetaType("Office::Scripts*", &qax_pointer); -#ifdef QAX_DUMPCPP_OFFICE_H - qRegisterMetaType("Office::Scripts", qax_pointer); -#endif - QVariant qax_result = property("Scripts"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); -#ifdef QAX_DUMPCPP_OFFICE_H - return *(Office::Scripts**)qax_result.constData(); -#else - return 0; // foreign namespace not included -#endif -} - -inline PowerPoint::Shapes* Master::Shapes() const -{ - PowerPoint::Shapes* qax_pointer = 0; - qRegisterMetaType("Shapes*", &qax_pointer); - qRegisterMetaType("Shapes", qax_pointer); - QVariant qax_result = property("Shapes"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Shapes**)qax_result.constData(); -} - -inline PowerPoint::SlideShowTransition* Master::SlideShowTransition() const -{ - PowerPoint::SlideShowTransition* qax_pointer = 0; - qRegisterMetaType("SlideShowTransition*", &qax_pointer); - qRegisterMetaType("SlideShowTransition", qax_pointer); - QVariant qax_result = property("SlideShowTransition"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SlideShowTransition**)qax_result.constData(); -} - -inline PowerPoint::TextStyles* Master::TextStyles() const -{ - PowerPoint::TextStyles* qax_pointer = 0; - qRegisterMetaType("TextStyles*", &qax_pointer); - qRegisterMetaType("TextStyles", qax_pointer); - QVariant qax_result = property("TextStyles"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::TextStyles**)qax_result.constData(); -} - -inline PowerPoint::TimeLine* Master::TimeLine() const -{ - PowerPoint::TimeLine* qax_pointer = 0; - qRegisterMetaType("TimeLine*", &qax_pointer); - qRegisterMetaType("TimeLine", qax_pointer); - QVariant qax_result = property("TimeLine"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::TimeLine**)qax_result.constData(); -} - -inline double Master::Width() const -{ - QVariant qax_result = property("Width"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} - -inline void Master::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline void _PowerRex::OnAsfEncoderEvent(const QVariant& erorCode, const QVariant& bstrErrorDesc) -{ - void *_a[] = {0, (void*)&erorCode, (void*)&bstrErrorDesc}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline void PowerRex::OnAsfEncoderEvent(const QVariant& erorCode, const QVariant& bstrErrorDesc) -{ - void *_a[] = {0, (void*)&erorCode, (void*)&bstrErrorDesc}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline PowerPoint::Application* Comments::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int Comments::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* Comments::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* Comments::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::Comment* Comments::Add(double Left, double Top, const QString& Author, const QString& AuthorInitials, const QString& Text) -{ - PowerPoint::Comment* qax_result = 0; - qRegisterMetaType("Comment*", &qax_result); - qRegisterMetaType("Comment", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Left, (void*)&Top, (void*)&Author, (void*)&AuthorInitials, (void*)&Text}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline PowerPoint::Comment* Comments::Item(int Index) -{ - PowerPoint::Comment* qax_result = 0; - qRegisterMetaType("Comment*", &qax_result); - qRegisterMetaType("Comment", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline QVariant Comments::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - - -inline PowerPoint::Application* Comment::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline QString Comment::Author() const -{ - QVariant qax_result = property("Author"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline int Comment::AuthorIndex() const -{ - QVariant qax_result = property("AuthorIndex"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString Comment::AuthorInitials() const -{ - QVariant qax_result = property("AuthorInitials"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline QDateTime Comment::DateTime() const -{ - QVariant qax_result = property("DateTime"); - Q_ASSERT(qax_result.isValid()); - return *(QDateTime*)qax_result.constData(); -} - -inline double Comment::Left() const -{ - QVariant qax_result = property("Left"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} - -inline IDispatch* Comment::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString Comment::Text() const -{ - QVariant qax_result = property("Text"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline double Comment::Top() const -{ - QVariant qax_result = property("Top"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} - -inline void Comment::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline PowerPoint::Application* Designs::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int Designs::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* Designs::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* Designs::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::Design* Designs::Add(const QString& designName) -{ - PowerPoint::Design* qax_result = 0; - qRegisterMetaType("Design*", &qax_result); - qRegisterMetaType("Design", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&designName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline PowerPoint::Design* Designs::Add(const QString& designName, int Index) -{ - PowerPoint::Design* qax_result = 0; - qRegisterMetaType("Design*", &qax_result); - qRegisterMetaType("Design", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&designName, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline PowerPoint::Design* Designs::Clone(PowerPoint::Design* pOriginal) -{ - PowerPoint::Design* qax_result = 0; - qRegisterMetaType("Design*", &qax_result); - qRegisterMetaType("Design", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&pOriginal}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline PowerPoint::Design* Designs::Clone(PowerPoint::Design* pOriginal, int Index) -{ - PowerPoint::Design* qax_result = 0; - qRegisterMetaType("Design*", &qax_result); - qRegisterMetaType("Design", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&pOriginal, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - -inline PowerPoint::Design* Designs::Item(const QVariant& Index) -{ - PowerPoint::Design* qax_result = 0; - qRegisterMetaType("Design*", &qax_result); - qRegisterMetaType("Design", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline PowerPoint::Design* Designs::Load(const QString& TemplateName) -{ - PowerPoint::Design* qax_result = 0; - qRegisterMetaType("Design*", &qax_result); - qRegisterMetaType("Design", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&TemplateName}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); - return qax_result; -} - -inline PowerPoint::Design* Designs::Load(const QString& TemplateName, int Index) -{ - PowerPoint::Design* qax_result = 0; - qRegisterMetaType("Design*", &qax_result); - qRegisterMetaType("Design", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&TemplateName, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); - return qax_result; -} - -inline QVariant Designs::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); - return qax_result; -} - - -inline PowerPoint::Application* Design::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline Office::MsoTriState Design::HasTitleMaster() const -{ - QVariant qax_result = property("HasTitleMaster"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline int Design::Index() const -{ - QVariant qax_result = property("Index"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline QString Design::Name() const -{ - QVariant qax_result = property("Name"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void Design::SetName(const QString& value){ setProperty("Name", QVariant(value)); } - -inline IDispatch* Design::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoTriState Design::Preserved() const -{ - QVariant qax_result = property("Preserved"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Design::SetPreserved(Office::MsoTriState value){ setProperty("Preserved", QVariant(value)); } - -inline PowerPoint::_Master* Design::SlideMaster() const -{ - PowerPoint::_Master* qax_pointer = 0; - qRegisterMetaType("_Master*", &qax_pointer); - qRegisterMetaType("_Master", qax_pointer); - QVariant qax_result = property("SlideMaster"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::_Master**)qax_result.constData(); -} - -inline PowerPoint::_Master* Design::TitleMaster() const -{ - PowerPoint::_Master* qax_pointer = 0; - qRegisterMetaType("_Master*", &qax_pointer); - qRegisterMetaType("_Master", qax_pointer); - QVariant qax_result = property("TitleMaster"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::_Master**)qax_result.constData(); -} - -inline PowerPoint::_Master* Design::AddTitleMaster() -{ - PowerPoint::_Master* qax_result = 0; - qRegisterMetaType("_Master*", &qax_result); - qRegisterMetaType("_Master", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline void Design::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void Design::MoveTo(int toPos) -{ - void *_a[] = {0, (void*)&toPos}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - - -inline IDispatch* DiagramNode::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::DiagramNodeChildren* DiagramNode::Children() const -{ - PowerPoint::DiagramNodeChildren* qax_pointer = 0; - qRegisterMetaType("DiagramNodeChildren*", &qax_pointer); - qRegisterMetaType("DiagramNodeChildren", qax_pointer); - QVariant qax_result = property("Children"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::DiagramNodeChildren**)qax_result.constData(); -} - -inline int DiagramNode::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline PowerPoint::Diagram* DiagramNode::Diagram() const -{ - PowerPoint::Diagram* qax_pointer = 0; - qRegisterMetaType("Diagram*", &qax_pointer); - qRegisterMetaType("Diagram", qax_pointer); - QVariant qax_result = property("Diagram"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Diagram**)qax_result.constData(); -} - -inline Office::MsoOrgChartLayoutType DiagramNode::Layout() const -{ - QVariant qax_result = property("Layout"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoOrgChartLayoutType*)qax_result.constData(); -} -inline void DiagramNode::SetLayout(Office::MsoOrgChartLayoutType value){ setProperty("Layout", QVariant(value)); } - -inline IDispatch* DiagramNode::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::DiagramNode* DiagramNode::Root() const -{ - PowerPoint::DiagramNode* qax_pointer = 0; - qRegisterMetaType("DiagramNode*", &qax_pointer); - qRegisterMetaType("DiagramNode", qax_pointer); - QVariant qax_result = property("Root"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::DiagramNode**)qax_result.constData(); -} - -inline PowerPoint::Shape* DiagramNode::Shape() const -{ - PowerPoint::Shape* qax_pointer = 0; - qRegisterMetaType("Shape*", &qax_pointer); - qRegisterMetaType("Shape", qax_pointer); - QVariant qax_result = property("Shape"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Shape**)qax_result.constData(); -} - -inline PowerPoint::Shape* DiagramNode::TextShape() const -{ - PowerPoint::Shape* qax_pointer = 0; - qRegisterMetaType("Shape*", &qax_pointer); - qRegisterMetaType("Shape", qax_pointer); - QVariant qax_result = property("TextShape"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Shape**)qax_result.constData(); -} - -inline PowerPoint::DiagramNode* DiagramNode::AddNode() -{ - PowerPoint::DiagramNode* qax_result = 0; - qRegisterMetaType("DiagramNode*", &qax_result); - qRegisterMetaType("DiagramNode", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline PowerPoint::DiagramNode* DiagramNode::AddNode(Office::MsoRelativeNodePosition Pos) -{ - PowerPoint::DiagramNode* qax_result = 0; - qRegisterMetaType("DiagramNode*", &qax_result); - qRegisterMetaType("DiagramNode", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Pos}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline PowerPoint::DiagramNode* DiagramNode::AddNode(Office::MsoRelativeNodePosition Pos, Office::MsoDiagramNodeType NodeType) -{ - PowerPoint::DiagramNode* qax_result = 0; - qRegisterMetaType("DiagramNode*", &qax_result); - qRegisterMetaType("DiagramNode", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Pos, (void*)&NodeType}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline PowerPoint::DiagramNode* DiagramNode::CloneNode(bool CopyChildren, PowerPoint::DiagramNode* TargetNode) -{ - PowerPoint::DiagramNode* qax_result = 0; - qRegisterMetaType("DiagramNode*", &qax_result); - qRegisterMetaType("DiagramNode", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&CopyChildren, (void*)&TargetNode}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - -inline PowerPoint::DiagramNode* DiagramNode::CloneNode(bool CopyChildren, PowerPoint::DiagramNode* TargetNode, Office::MsoRelativeNodePosition Pos) -{ - PowerPoint::DiagramNode* qax_result = 0; - qRegisterMetaType("DiagramNode*", &qax_result); - qRegisterMetaType("DiagramNode", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&CopyChildren, (void*)&TargetNode, (void*)&Pos}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline void DiagramNode::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); -} - -inline void DiagramNode::MoveNode(PowerPoint::DiagramNode* TargetNode, Office::MsoRelativeNodePosition Pos) -{ - void *_a[] = {0, (void*)&TargetNode, (void*)&Pos}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); -} - -inline PowerPoint::DiagramNode* DiagramNode::NextNode() -{ - PowerPoint::DiagramNode* qax_result = 0; - qRegisterMetaType("DiagramNode*", &qax_result); - qRegisterMetaType("DiagramNode", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); - return qax_result; -} - -inline PowerPoint::DiagramNode* DiagramNode::PrevNode() -{ - PowerPoint::DiagramNode* qax_result = 0; - qRegisterMetaType("DiagramNode*", &qax_result); - qRegisterMetaType("DiagramNode", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); - return qax_result; -} - -inline void DiagramNode::ReplaceNode(PowerPoint::DiagramNode* TargetNode) -{ - void *_a[] = {0, (void*)&TargetNode}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); -} - -inline void DiagramNode::SwapNode(PowerPoint::DiagramNode* TargetNode) -{ - void *_a[] = {0, (void*)&TargetNode}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); -} - -inline void DiagramNode::SwapNode(PowerPoint::DiagramNode* TargetNode, bool SwapChildren) -{ - void *_a[] = {0, (void*)&TargetNode, (void*)&SwapChildren}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); -} - -inline void DiagramNode::TransferChildren(PowerPoint::DiagramNode* ReceivingNode) -{ - void *_a[] = {0, (void*)&ReceivingNode}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); -} - - -inline IDispatch* DiagramNodeChildren::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int DiagramNodeChildren::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int DiagramNodeChildren::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline PowerPoint::DiagramNode* DiagramNodeChildren::FirstChild() const -{ - PowerPoint::DiagramNode* qax_pointer = 0; - qRegisterMetaType("DiagramNode*", &qax_pointer); - qRegisterMetaType("DiagramNode", qax_pointer); - QVariant qax_result = property("FirstChild"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::DiagramNode**)qax_result.constData(); -} - -inline PowerPoint::DiagramNode* DiagramNodeChildren::LastChild() const -{ - PowerPoint::DiagramNode* qax_pointer = 0; - qRegisterMetaType("DiagramNode*", &qax_pointer); - qRegisterMetaType("DiagramNode", qax_pointer); - QVariant qax_result = property("LastChild"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::DiagramNode**)qax_result.constData(); -} - -inline IDispatch* DiagramNodeChildren::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* DiagramNodeChildren::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::DiagramNode* DiagramNodeChildren::AddNode() -{ - PowerPoint::DiagramNode* qax_result = 0; - qRegisterMetaType("DiagramNode*", &qax_result); - qRegisterMetaType("DiagramNode", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline PowerPoint::DiagramNode* DiagramNodeChildren::AddNode(const QVariant& Index) -{ - PowerPoint::DiagramNode* qax_result = 0; - qRegisterMetaType("DiagramNode*", &qax_result); - qRegisterMetaType("DiagramNode", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline PowerPoint::DiagramNode* DiagramNodeChildren::AddNode(const QVariant& Index, Office::MsoDiagramNodeType NodeType) -{ - PowerPoint::DiagramNode* qax_result = 0; - qRegisterMetaType("DiagramNode*", &qax_result); - qRegisterMetaType("DiagramNode", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index, (void*)&NodeType}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline PowerPoint::DiagramNode* DiagramNodeChildren::Item(const QVariant& Index) -{ - PowerPoint::DiagramNode* qax_result = 0; - qRegisterMetaType("DiagramNode*", &qax_result); - qRegisterMetaType("DiagramNode", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - -inline void DiagramNodeChildren::SelectAll() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); -} - - -inline IDispatch* DiagramNodes::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int DiagramNodes::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int DiagramNodes::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* DiagramNodes::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* DiagramNodes::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::DiagramNode* DiagramNodes::Item(const QVariant& Index) -{ - PowerPoint::DiagramNode* qax_result = 0; - qRegisterMetaType("DiagramNode*", &qax_result); - qRegisterMetaType("DiagramNode", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline void DiagramNodes::SelectAll() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - - -inline IDispatch* Diagram::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoTriState Diagram::AutoFormat() const -{ - QVariant qax_result = property("AutoFormat"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Diagram::SetAutoFormat(Office::MsoTriState value){ setProperty("AutoFormat", QVariant(value)); } - -inline Office::MsoTriState Diagram::AutoLayout() const -{ - QVariant qax_result = property("AutoLayout"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Diagram::SetAutoLayout(Office::MsoTriState value){ setProperty("AutoLayout", QVariant(value)); } - -inline int Diagram::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline PowerPoint::DiagramNodes* Diagram::Nodes() const -{ - PowerPoint::DiagramNodes* qax_pointer = 0; - qRegisterMetaType("DiagramNodes*", &qax_pointer); - qRegisterMetaType("DiagramNodes", qax_pointer); - QVariant qax_result = property("Nodes"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::DiagramNodes**)qax_result.constData(); -} - -inline IDispatch* Diagram::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoTriState Diagram::Reverse() const -{ - QVariant qax_result = property("Reverse"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Diagram::SetReverse(Office::MsoTriState value){ setProperty("Reverse", QVariant(value)); } - -inline Office::MsoDiagramType Diagram::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoDiagramType*)qax_result.constData(); -} - -inline void Diagram::Convert(Office::MsoDiagramType Type) -{ - void *_a[] = {0, (void*)&Type}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void Diagram::FitText() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - - -inline PowerPoint::Application* TimeLine::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::Sequences* TimeLine::InteractiveSequences() const -{ - PowerPoint::Sequences* qax_pointer = 0; - qRegisterMetaType("Sequences*", &qax_pointer); - qRegisterMetaType("Sequences", qax_pointer); - QVariant qax_result = property("InteractiveSequences"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Sequences**)qax_result.constData(); -} - -inline PowerPoint::Sequence* TimeLine::MainSequence() const -{ - PowerPoint::Sequence* qax_pointer = 0; - qRegisterMetaType("Sequence*", &qax_pointer); - qRegisterMetaType("Sequence", qax_pointer); - QVariant qax_result = property("MainSequence"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Sequence**)qax_result.constData(); -} - -inline IDispatch* TimeLine::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - - -inline PowerPoint::Application* Sequences::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int Sequences::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* Sequences::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* Sequences::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::Sequence* Sequences::Add() -{ - PowerPoint::Sequence* qax_result = 0; - qRegisterMetaType("Sequence*", &qax_result); - qRegisterMetaType("Sequence", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline PowerPoint::Sequence* Sequences::Add(int Index) -{ - PowerPoint::Sequence* qax_result = 0; - qRegisterMetaType("Sequence*", &qax_result); - qRegisterMetaType("Sequence", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline PowerPoint::Sequence* Sequences::Item(int Index) -{ - PowerPoint::Sequence* qax_result = 0; - qRegisterMetaType("Sequence*", &qax_result); - qRegisterMetaType("Sequence", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline QVariant Sequences::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - - -inline PowerPoint::Application* Sequence::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int Sequence::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* Sequence::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* Sequence::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::Effect* Sequence::AddEffect(PowerPoint::Shape* Shape, PowerPoint::MsoAnimEffect effectId) -{ - PowerPoint::Effect* qax_result = 0; - qRegisterMetaType("Effect*", &qax_result); - qRegisterMetaType("Effect", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Shape, (void*)&effectId}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline PowerPoint::Effect* Sequence::AddEffect(PowerPoint::Shape* Shape, PowerPoint::MsoAnimEffect effectId, PowerPoint::MsoAnimateByLevel Level) -{ - PowerPoint::Effect* qax_result = 0; - qRegisterMetaType("Effect*", &qax_result); - qRegisterMetaType("Effect", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Shape, (void*)&effectId, (void*)&Level}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline PowerPoint::Effect* Sequence::AddEffect(PowerPoint::Shape* Shape, PowerPoint::MsoAnimEffect effectId, PowerPoint::MsoAnimateByLevel Level, PowerPoint::MsoAnimTriggerType trigger) -{ - PowerPoint::Effect* qax_result = 0; - qRegisterMetaType("Effect*", &qax_result); - qRegisterMetaType("Effect", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Shape, (void*)&effectId, (void*)&Level, (void*)&trigger}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline PowerPoint::Effect* Sequence::AddEffect(PowerPoint::Shape* Shape, PowerPoint::MsoAnimEffect effectId, PowerPoint::MsoAnimateByLevel Level, PowerPoint::MsoAnimTriggerType trigger, int Index) -{ - PowerPoint::Effect* qax_result = 0; - qRegisterMetaType("Effect*", &qax_result); - qRegisterMetaType("Effect", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Shape, (void*)&effectId, (void*)&Level, (void*)&trigger, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - -inline PowerPoint::Effect* Sequence::Clone(PowerPoint::Effect* Effect) -{ - PowerPoint::Effect* qax_result = 0; - qRegisterMetaType("Effect*", &qax_result); - qRegisterMetaType("Effect", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Effect}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline PowerPoint::Effect* Sequence::Clone(PowerPoint::Effect* Effect, int Index) -{ - PowerPoint::Effect* qax_result = 0; - qRegisterMetaType("Effect*", &qax_result); - qRegisterMetaType("Effect", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Effect, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); - return qax_result; -} - -inline PowerPoint::Effect* Sequence::ConvertToAfterEffect(PowerPoint::Effect* Effect, PowerPoint::MsoAnimAfterEffect After) -{ - PowerPoint::Effect* qax_result = 0; - qRegisterMetaType("Effect*", &qax_result); - qRegisterMetaType("Effect", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Effect, (void*)&After}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); - return qax_result; -} - -inline PowerPoint::Effect* Sequence::ConvertToAfterEffect(PowerPoint::Effect* Effect, PowerPoint::MsoAnimAfterEffect After, int DimColor) -{ - PowerPoint::Effect* qax_result = 0; - qRegisterMetaType("Effect*", &qax_result); - qRegisterMetaType("Effect", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Effect, (void*)&After, (void*)&DimColor}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); - return qax_result; -} - -inline PowerPoint::Effect* Sequence::ConvertToAfterEffect(PowerPoint::Effect* Effect, PowerPoint::MsoAnimAfterEffect After, int DimColor, PowerPoint::PpColorSchemeIndex DimSchemeColor) -{ - PowerPoint::Effect* qax_result = 0; - qRegisterMetaType("Effect*", &qax_result); - qRegisterMetaType("Effect", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Effect, (void*)&After, (void*)&DimColor, (void*)&DimSchemeColor}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); - return qax_result; -} - -inline PowerPoint::Effect* Sequence::ConvertToAnimateBackground(PowerPoint::Effect* Effect, Office::MsoTriState AnimateBackground) -{ - PowerPoint::Effect* qax_result = 0; - qRegisterMetaType("Effect*", &qax_result); - qRegisterMetaType("Effect", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Effect, (void*)&AnimateBackground}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); - return qax_result; -} - -inline PowerPoint::Effect* Sequence::ConvertToAnimateInReverse(PowerPoint::Effect* Effect, Office::MsoTriState animateInReverse) -{ - PowerPoint::Effect* qax_result = 0; - qRegisterMetaType("Effect*", &qax_result); - qRegisterMetaType("Effect", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Effect, (void*)&animateInReverse}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); - return qax_result; -} - -inline PowerPoint::Effect* Sequence::ConvertToBuildLevel(PowerPoint::Effect* Effect, PowerPoint::MsoAnimateByLevel Level) -{ - PowerPoint::Effect* qax_result = 0; - qRegisterMetaType("Effect*", &qax_result); - qRegisterMetaType("Effect", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Effect, (void*)&Level}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); - return qax_result; -} - -inline PowerPoint::Effect* Sequence::ConvertToTextUnitEffect(PowerPoint::Effect* Effect, PowerPoint::MsoAnimTextUnitEffect unitEffect) -{ - PowerPoint::Effect* qax_result = 0; - qRegisterMetaType("Effect*", &qax_result); - qRegisterMetaType("Effect", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Effect, (void*)&unitEffect}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); - return qax_result; -} - -inline PowerPoint::Effect* Sequence::FindFirstAnimationFor(PowerPoint::Shape* Shape) -{ - PowerPoint::Effect* qax_result = 0; - qRegisterMetaType("Effect*", &qax_result); - qRegisterMetaType("Effect", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Shape}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); - return qax_result; -} - -inline PowerPoint::Effect* Sequence::FindFirstAnimationForClick(int click) -{ - PowerPoint::Effect* qax_result = 0; - qRegisterMetaType("Effect*", &qax_result); - qRegisterMetaType("Effect", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&click}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); - return qax_result; -} - -inline PowerPoint::Effect* Sequence::Item(int Index) -{ - PowerPoint::Effect* qax_result = 0; - qRegisterMetaType("Effect*", &qax_result); - qRegisterMetaType("Effect", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); - return qax_result; -} - -inline QVariant Sequence::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 23, _a); - return qax_result; -} - - -inline PowerPoint::Application* Effect::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::AnimationBehaviors* Effect::Behaviors() const -{ - PowerPoint::AnimationBehaviors* qax_pointer = 0; - qRegisterMetaType("AnimationBehaviors*", &qax_pointer); - qRegisterMetaType("AnimationBehaviors", qax_pointer); - QVariant qax_result = property("Behaviors"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::AnimationBehaviors**)qax_result.constData(); -} - -inline QString Effect::DisplayName() const -{ - QVariant qax_result = property("DisplayName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} - -inline PowerPoint::EffectInformation* Effect::EffectInformation() const -{ - PowerPoint::EffectInformation* qax_pointer = 0; - qRegisterMetaType("EffectInformation*", &qax_pointer); - qRegisterMetaType("EffectInformation", qax_pointer); - QVariant qax_result = property("EffectInformation"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::EffectInformation**)qax_result.constData(); -} - -inline PowerPoint::EffectParameters* Effect::EffectParameters() const -{ - PowerPoint::EffectParameters* qax_pointer = 0; - qRegisterMetaType("EffectParameters*", &qax_pointer); - qRegisterMetaType("EffectParameters", qax_pointer); - QVariant qax_result = property("EffectParameters"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::EffectParameters**)qax_result.constData(); -} - -inline PowerPoint::MsoAnimEffect Effect::EffectType() const -{ - QVariant qax_result = property("EffectType"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::MsoAnimEffect*)qax_result.constData(); -} -inline void Effect::SetEffectType(PowerPoint::MsoAnimEffect value){ setProperty("EffectType", QVariant(value)); } - -inline Office::MsoTriState Effect::Exit() const -{ - QVariant qax_result = property("Exit"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Effect::SetExit(Office::MsoTriState value){ setProperty("Exit", QVariant(value)); } - -inline int Effect::Index() const -{ - QVariant qax_result = property("Index"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int Effect::Paragraph() const -{ - QVariant qax_result = property("Paragraph"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void Effect::SetParagraph(int value){ setProperty("Paragraph", QVariant(value)); } - -inline IDispatch* Effect::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::Shape* Effect::Shape() const -{ - PowerPoint::Shape* qax_pointer = 0; - qRegisterMetaType("Shape*", &qax_pointer); - qRegisterMetaType("Shape", qax_pointer); - QVariant qax_result = property("Shape"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Shape**)qax_result.constData(); -} -inline void Effect::SetShape(PowerPoint::Shape* value){ - int typeId = qRegisterMetaType("PowerPoint::Shape*", &value); - setProperty("Shape", QVariant(typeId, &value)); -} - -inline int Effect::TextRangeLength() const -{ - QVariant qax_result = property("TextRangeLength"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int Effect::TextRangeStart() const -{ - QVariant qax_result = property("TextRangeStart"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline PowerPoint::Timing* Effect::Timing() const -{ - PowerPoint::Timing* qax_pointer = 0; - qRegisterMetaType("Timing*", &qax_pointer); - qRegisterMetaType("Timing", qax_pointer); - QVariant qax_result = property("Timing"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Timing**)qax_result.constData(); -} - -inline void Effect::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - -inline void Effect::MoveAfter(PowerPoint::Effect* Effect) -{ - void *_a[] = {0, (void*)&Effect}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); -} - -inline void Effect::MoveBefore(PowerPoint::Effect* Effect) -{ - void *_a[] = {0, (void*)&Effect}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); -} - -inline void Effect::MoveTo(int toPos) -{ - void *_a[] = {0, (void*)&toPos}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); -} - - -inline double Timing::Accelerate() const -{ - QVariant qax_result = property("Accelerate"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Timing::SetAccelerate(double value){ setProperty("Accelerate", QVariant(value)); } - -inline PowerPoint::Application* Timing::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline Office::MsoTriState Timing::AutoReverse() const -{ - QVariant qax_result = property("AutoReverse"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Timing::SetAutoReverse(Office::MsoTriState value){ setProperty("AutoReverse", QVariant(value)); } - -inline double Timing::Decelerate() const -{ - QVariant qax_result = property("Decelerate"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Timing::SetDecelerate(double value){ setProperty("Decelerate", QVariant(value)); } - -inline double Timing::Duration() const -{ - QVariant qax_result = property("Duration"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Timing::SetDuration(double value){ setProperty("Duration", QVariant(value)); } - -inline IDispatch* Timing::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline int Timing::RepeatCount() const -{ - QVariant qax_result = property("RepeatCount"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} -inline void Timing::SetRepeatCount(int value){ setProperty("RepeatCount", QVariant(value)); } - -inline double Timing::RepeatDuration() const -{ - QVariant qax_result = property("RepeatDuration"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Timing::SetRepeatDuration(double value){ setProperty("RepeatDuration", QVariant(value)); } - -inline PowerPoint::MsoAnimEffectRestart Timing::Restart() const -{ - QVariant qax_result = property("Restart"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::MsoAnimEffectRestart*)qax_result.constData(); -} -inline void Timing::SetRestart(PowerPoint::MsoAnimEffectRestart value){ setProperty("Restart", QVariant(value)); } - -inline Office::MsoTriState Timing::RewindAtEnd() const -{ - QVariant qax_result = property("RewindAtEnd"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Timing::SetRewindAtEnd(Office::MsoTriState value){ setProperty("RewindAtEnd", QVariant(value)); } - -inline Office::MsoTriState Timing::SmoothEnd() const -{ - QVariant qax_result = property("SmoothEnd"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Timing::SetSmoothEnd(Office::MsoTriState value){ setProperty("SmoothEnd", QVariant(value)); } - -inline Office::MsoTriState Timing::SmoothStart() const -{ - QVariant qax_result = property("SmoothStart"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Timing::SetSmoothStart(Office::MsoTriState value){ setProperty("SmoothStart", QVariant(value)); } - -inline double Timing::Speed() const -{ - QVariant qax_result = property("Speed"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Timing::SetSpeed(double value){ setProperty("Speed", QVariant(value)); } - -inline double Timing::TriggerDelayTime() const -{ - QVariant qax_result = property("TriggerDelayTime"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void Timing::SetTriggerDelayTime(double value){ setProperty("TriggerDelayTime", QVariant(value)); } - -inline PowerPoint::Shape* Timing::TriggerShape() const -{ - PowerPoint::Shape* qax_pointer = 0; - qRegisterMetaType("Shape*", &qax_pointer); - qRegisterMetaType("Shape", qax_pointer); - QVariant qax_result = property("TriggerShape"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Shape**)qax_result.constData(); -} -inline void Timing::SetTriggerShape(PowerPoint::Shape* value){ - int typeId = qRegisterMetaType("PowerPoint::Shape*", &value); - setProperty("TriggerShape", QVariant(typeId, &value)); -} - -inline PowerPoint::MsoAnimTriggerType Timing::TriggerType() const -{ - QVariant qax_result = property("TriggerType"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::MsoAnimTriggerType*)qax_result.constData(); -} -inline void Timing::SetTriggerType(PowerPoint::MsoAnimTriggerType value){ setProperty("TriggerType", QVariant(value)); } - - -inline double EffectParameters::Amount() const -{ - QVariant qax_result = property("Amount"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void EffectParameters::SetAmount(double value){ setProperty("Amount", QVariant(value)); } - -inline PowerPoint::Application* EffectParameters::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::ColorFormat* EffectParameters::Color2() const -{ - PowerPoint::ColorFormat* qax_pointer = 0; - qRegisterMetaType("ColorFormat*", &qax_pointer); - qRegisterMetaType("ColorFormat", qax_pointer); - QVariant qax_result = property("Color2"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ColorFormat**)qax_result.constData(); -} - -inline PowerPoint::MsoAnimDirection EffectParameters::Direction() const -{ - QVariant qax_result = property("Direction"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::MsoAnimDirection*)qax_result.constData(); -} -inline void EffectParameters::SetDirection(PowerPoint::MsoAnimDirection value){ setProperty("Direction", QVariant(value)); } - -inline QString EffectParameters::FontName() const -{ - QVariant qax_result = property("FontName"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void EffectParameters::SetFontName(const QString& value){ setProperty("FontName", QVariant(value)); } - -inline IDispatch* EffectParameters::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoTriState EffectParameters::Relative() const -{ - QVariant qax_result = property("Relative"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void EffectParameters::SetRelative(Office::MsoTriState value){ setProperty("Relative", QVariant(value)); } - -inline double EffectParameters::Size() const -{ - QVariant qax_result = property("Size"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void EffectParameters::SetSize(double value){ setProperty("Size", QVariant(value)); } - - -inline PowerPoint::MsoAnimAfterEffect EffectInformation::AfterEffect() const -{ - QVariant qax_result = property("AfterEffect"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::MsoAnimAfterEffect*)qax_result.constData(); -} - -inline Office::MsoTriState EffectInformation::AnimateBackground() const -{ - QVariant qax_result = property("AnimateBackground"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline Office::MsoTriState EffectInformation::AnimateTextInReverse() const -{ - QVariant qax_result = property("AnimateTextInReverse"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} - -inline PowerPoint::Application* EffectInformation::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::MsoAnimateByLevel EffectInformation::BuildByLevelEffect() const -{ - QVariant qax_result = property("BuildByLevelEffect"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::MsoAnimateByLevel*)qax_result.constData(); -} - -inline PowerPoint::ColorFormat* EffectInformation::Dim() const -{ - PowerPoint::ColorFormat* qax_pointer = 0; - qRegisterMetaType("ColorFormat*", &qax_pointer); - qRegisterMetaType("ColorFormat", qax_pointer); - QVariant qax_result = property("Dim"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ColorFormat**)qax_result.constData(); -} - -inline IDispatch* EffectInformation::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::PlaySettings* EffectInformation::PlaySettings() const -{ - PowerPoint::PlaySettings* qax_pointer = 0; - qRegisterMetaType("PlaySettings*", &qax_pointer); - qRegisterMetaType("PlaySettings", qax_pointer); - QVariant qax_result = property("PlaySettings"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PlaySettings**)qax_result.constData(); -} - -inline PowerPoint::SoundEffect* EffectInformation::SoundEffect() const -{ - PowerPoint::SoundEffect* qax_pointer = 0; - qRegisterMetaType("SoundEffect*", &qax_pointer); - qRegisterMetaType("SoundEffect", qax_pointer); - QVariant qax_result = property("SoundEffect"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SoundEffect**)qax_result.constData(); -} - -inline PowerPoint::MsoAnimTextUnitEffect EffectInformation::TextUnitEffect() const -{ - QVariant qax_result = property("TextUnitEffect"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::MsoAnimTextUnitEffect*)qax_result.constData(); -} - - -inline PowerPoint::Application* AnimationBehaviors::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int AnimationBehaviors::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* AnimationBehaviors::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* AnimationBehaviors::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::AnimationBehavior* AnimationBehaviors::Add(PowerPoint::MsoAnimType Type) -{ - PowerPoint::AnimationBehavior* qax_result = 0; - qRegisterMetaType("AnimationBehavior*", &qax_result); - qRegisterMetaType("AnimationBehavior", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline PowerPoint::AnimationBehavior* AnimationBehaviors::Add(PowerPoint::MsoAnimType Type, int Index) -{ - PowerPoint::AnimationBehavior* qax_result = 0; - qRegisterMetaType("AnimationBehavior*", &qax_result); - qRegisterMetaType("AnimationBehavior", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline PowerPoint::AnimationBehavior* AnimationBehaviors::Item(int Index) -{ - PowerPoint::AnimationBehavior* qax_result = 0; - qRegisterMetaType("AnimationBehavior*", &qax_result); - qRegisterMetaType("AnimationBehavior", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline QVariant AnimationBehaviors::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - - -inline PowerPoint::MsoAnimAccumulate AnimationBehavior::Accumulate() const -{ - QVariant qax_result = property("Accumulate"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::MsoAnimAccumulate*)qax_result.constData(); -} -inline void AnimationBehavior::SetAccumulate(PowerPoint::MsoAnimAccumulate value){ setProperty("Accumulate", QVariant(value)); } - -inline PowerPoint::MsoAnimAdditive AnimationBehavior::Additive() const -{ - QVariant qax_result = property("Additive"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::MsoAnimAdditive*)qax_result.constData(); -} -inline void AnimationBehavior::SetAdditive(PowerPoint::MsoAnimAdditive value){ setProperty("Additive", QVariant(value)); } - -inline PowerPoint::Application* AnimationBehavior::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::ColorEffect* AnimationBehavior::ColorEffect() const -{ - PowerPoint::ColorEffect* qax_pointer = 0; - qRegisterMetaType("ColorEffect*", &qax_pointer); - qRegisterMetaType("ColorEffect", qax_pointer); - QVariant qax_result = property("ColorEffect"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ColorEffect**)qax_result.constData(); -} - -inline PowerPoint::CommandEffect* AnimationBehavior::CommandEffect() const -{ - PowerPoint::CommandEffect* qax_pointer = 0; - qRegisterMetaType("CommandEffect*", &qax_pointer); - qRegisterMetaType("CommandEffect", qax_pointer); - QVariant qax_result = property("CommandEffect"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::CommandEffect**)qax_result.constData(); -} - -inline PowerPoint::FilterEffect* AnimationBehavior::FilterEffect() const -{ - PowerPoint::FilterEffect* qax_pointer = 0; - qRegisterMetaType("FilterEffect*", &qax_pointer); - qRegisterMetaType("FilterEffect", qax_pointer); - QVariant qax_result = property("FilterEffect"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::FilterEffect**)qax_result.constData(); -} - -inline PowerPoint::MotionEffect* AnimationBehavior::MotionEffect() const -{ - PowerPoint::MotionEffect* qax_pointer = 0; - qRegisterMetaType("MotionEffect*", &qax_pointer); - qRegisterMetaType("MotionEffect", qax_pointer); - QVariant qax_result = property("MotionEffect"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::MotionEffect**)qax_result.constData(); -} - -inline IDispatch* AnimationBehavior::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::PropertyEffect* AnimationBehavior::PropertyEffect() const -{ - PowerPoint::PropertyEffect* qax_pointer = 0; - qRegisterMetaType("PropertyEffect*", &qax_pointer); - qRegisterMetaType("PropertyEffect", qax_pointer); - QVariant qax_result = property("PropertyEffect"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::PropertyEffect**)qax_result.constData(); -} - -inline PowerPoint::RotationEffect* AnimationBehavior::RotationEffect() const -{ - PowerPoint::RotationEffect* qax_pointer = 0; - qRegisterMetaType("RotationEffect*", &qax_pointer); - qRegisterMetaType("RotationEffect", qax_pointer); - QVariant qax_result = property("RotationEffect"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::RotationEffect**)qax_result.constData(); -} - -inline PowerPoint::ScaleEffect* AnimationBehavior::ScaleEffect() const -{ - PowerPoint::ScaleEffect* qax_pointer = 0; - qRegisterMetaType("ScaleEffect*", &qax_pointer); - qRegisterMetaType("ScaleEffect", qax_pointer); - QVariant qax_result = property("ScaleEffect"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ScaleEffect**)qax_result.constData(); -} - -inline PowerPoint::SetEffect* AnimationBehavior::SetEffect() const -{ - PowerPoint::SetEffect* qax_pointer = 0; - qRegisterMetaType("SetEffect*", &qax_pointer); - qRegisterMetaType("SetEffect", qax_pointer); - QVariant qax_result = property("SetEffect"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::SetEffect**)qax_result.constData(); -} - -inline PowerPoint::Timing* AnimationBehavior::Timing() const -{ - PowerPoint::Timing* qax_pointer = 0; - qRegisterMetaType("Timing*", &qax_pointer); - qRegisterMetaType("Timing", qax_pointer); - QVariant qax_result = property("Timing"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Timing**)qax_result.constData(); -} - -inline PowerPoint::MsoAnimType AnimationBehavior::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::MsoAnimType*)qax_result.constData(); -} -inline void AnimationBehavior::SetType(PowerPoint::MsoAnimType value){ setProperty("Type", QVariant(value)); } - -inline void AnimationBehavior::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline PowerPoint::Application* MotionEffect::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline double MotionEffect::ByX() const -{ - QVariant qax_result = property("ByX"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void MotionEffect::SetByX(double value){ setProperty("ByX", QVariant(value)); } - -inline double MotionEffect::ByY() const -{ - QVariant qax_result = property("ByY"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void MotionEffect::SetByY(double value){ setProperty("ByY", QVariant(value)); } - -inline double MotionEffect::FromX() const -{ - QVariant qax_result = property("FromX"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void MotionEffect::SetFromX(double value){ setProperty("FromX", QVariant(value)); } - -inline double MotionEffect::FromY() const -{ - QVariant qax_result = property("FromY"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void MotionEffect::SetFromY(double value){ setProperty("FromY", QVariant(value)); } - -inline IDispatch* MotionEffect::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline QString MotionEffect::Path() const -{ - QVariant qax_result = property("Path"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void MotionEffect::SetPath(const QString& value){ setProperty("Path", QVariant(value)); } - -inline double MotionEffect::ToX() const -{ - QVariant qax_result = property("ToX"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void MotionEffect::SetToX(double value){ setProperty("ToX", QVariant(value)); } - -inline double MotionEffect::ToY() const -{ - QVariant qax_result = property("ToY"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void MotionEffect::SetToY(double value){ setProperty("ToY", QVariant(value)); } - - -inline PowerPoint::Application* ColorEffect::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline PowerPoint::ColorFormat* ColorEffect::By() const -{ - PowerPoint::ColorFormat* qax_pointer = 0; - qRegisterMetaType("ColorFormat*", &qax_pointer); - qRegisterMetaType("ColorFormat", qax_pointer); - QVariant qax_result = property("By"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ColorFormat**)qax_result.constData(); -} - -inline PowerPoint::ColorFormat* ColorEffect::From() const -{ - PowerPoint::ColorFormat* qax_pointer = 0; - qRegisterMetaType("ColorFormat*", &qax_pointer); - qRegisterMetaType("ColorFormat", qax_pointer); - QVariant qax_result = property("From"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ColorFormat**)qax_result.constData(); -} - -inline IDispatch* ColorEffect::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::ColorFormat* ColorEffect::To() const -{ - PowerPoint::ColorFormat* qax_pointer = 0; - qRegisterMetaType("ColorFormat*", &qax_pointer); - qRegisterMetaType("ColorFormat", qax_pointer); - QVariant qax_result = property("To"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::ColorFormat**)qax_result.constData(); -} - - -inline PowerPoint::Application* ScaleEffect::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline double ScaleEffect::ByX() const -{ - QVariant qax_result = property("ByX"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ScaleEffect::SetByX(double value){ setProperty("ByX", QVariant(value)); } - -inline double ScaleEffect::ByY() const -{ - QVariant qax_result = property("ByY"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ScaleEffect::SetByY(double value){ setProperty("ByY", QVariant(value)); } - -inline double ScaleEffect::FromX() const -{ - QVariant qax_result = property("FromX"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ScaleEffect::SetFromX(double value){ setProperty("FromX", QVariant(value)); } - -inline double ScaleEffect::FromY() const -{ - QVariant qax_result = property("FromY"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ScaleEffect::SetFromY(double value){ setProperty("FromY", QVariant(value)); } - -inline IDispatch* ScaleEffect::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline double ScaleEffect::ToX() const -{ - QVariant qax_result = property("ToX"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ScaleEffect::SetToX(double value){ setProperty("ToX", QVariant(value)); } - -inline double ScaleEffect::ToY() const -{ - QVariant qax_result = property("ToY"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void ScaleEffect::SetToY(double value){ setProperty("ToY", QVariant(value)); } - - -inline PowerPoint::Application* RotationEffect::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline double RotationEffect::By() const -{ - QVariant qax_result = property("By"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void RotationEffect::SetBy(double value){ setProperty("By", QVariant(value)); } - -inline double RotationEffect::From() const -{ - QVariant qax_result = property("From"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void RotationEffect::SetFrom(double value){ setProperty("From", QVariant(value)); } - -inline IDispatch* RotationEffect::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline double RotationEffect::To() const -{ - QVariant qax_result = property("To"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void RotationEffect::SetTo(double value){ setProperty("To", QVariant(value)); } - - -inline PowerPoint::Application* PropertyEffect::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline QVariant PropertyEffect::From() const -{ - QVariant qax_result = property("From"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void PropertyEffect::SetFrom(const QVariant& value){ setProperty("From", QVariant(value)); } - -inline IDispatch* PropertyEffect::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::AnimationPoints* PropertyEffect::Points() const -{ - PowerPoint::AnimationPoints* qax_pointer = 0; - qRegisterMetaType("AnimationPoints*", &qax_pointer); - qRegisterMetaType("AnimationPoints", qax_pointer); - QVariant qax_result = property("Points"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::AnimationPoints**)qax_result.constData(); -} - -inline PowerPoint::MsoAnimProperty PropertyEffect::Property() const -{ - QVariant qax_result = property("Property"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::MsoAnimProperty*)qax_result.constData(); -} -inline void PropertyEffect::SetProperty(PowerPoint::MsoAnimProperty value){ setProperty("Property", QVariant(value)); } - -inline QVariant PropertyEffect::To() const -{ - QVariant qax_result = property("To"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void PropertyEffect::SetTo(const QVariant& value){ setProperty("To", QVariant(value)); } - - -inline PowerPoint::Application* AnimationPoints::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline int AnimationPoints::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* AnimationPoints::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoTriState AnimationPoints::Smooth() const -{ - QVariant qax_result = property("Smooth"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void AnimationPoints::SetSmooth(Office::MsoTriState value){ setProperty("Smooth", QVariant(value)); } - -inline IUnknown* AnimationPoints::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::AnimationPoint* AnimationPoints::Add() -{ - PowerPoint::AnimationPoint* qax_result = 0; - qRegisterMetaType("AnimationPoint*", &qax_result); - qRegisterMetaType("AnimationPoint", qax_result); - void *_a[] = {(void*)&qax_result}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline PowerPoint::AnimationPoint* AnimationPoints::Add(int Index) -{ - PowerPoint::AnimationPoint* qax_result = 0; - qRegisterMetaType("AnimationPoint*", &qax_result); - qRegisterMetaType("AnimationPoint", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline PowerPoint::AnimationPoint* AnimationPoints::Item(int Index) -{ - PowerPoint::AnimationPoint* qax_result = 0; - qRegisterMetaType("AnimationPoint*", &qax_result); - qRegisterMetaType("AnimationPoint", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline QVariant AnimationPoints::_Index(int Index) -{ - QVariant qax_result; - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - - -inline PowerPoint::Application* AnimationPoint::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline QString AnimationPoint::Formula() const -{ - QVariant qax_result = property("Formula"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void AnimationPoint::SetFormula(const QString& value){ setProperty("Formula", QVariant(value)); } - -inline IDispatch* AnimationPoint::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline double AnimationPoint::Time() const -{ - QVariant qax_result = property("Time"); - Q_ASSERT(qax_result.isValid()); - return *(double*)qax_result.constData(); -} -inline void AnimationPoint::SetTime(double value){ setProperty("Time", QVariant(value)); } - -inline QVariant AnimationPoint::Value() const -{ - QVariant qax_result = property("Value"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void AnimationPoint::SetValue(const QVariant& value){ setProperty("Value", QVariant(value)); } - -inline void AnimationPoint::Delete() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); -} - - -inline IDispatch* CanvasShapes::Application() const -{ - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::Shape* CanvasShapes::Background() const -{ - PowerPoint::Shape* qax_pointer = 0; - qRegisterMetaType("Shape*", &qax_pointer); - qRegisterMetaType("Shape", qax_pointer); - QVariant qax_result = property("Background"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Shape**)qax_result.constData(); -} - -inline int CanvasShapes::Count() const -{ - QVariant qax_result = property("Count"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline int CanvasShapes::Creator() const -{ - QVariant qax_result = property("Creator"); - Q_ASSERT(qax_result.isValid()); - return *(int*)qax_result.constData(); -} - -inline IDispatch* CanvasShapes::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline IUnknown* CanvasShapes::_NewEnum() const -{ - QVariant qax_result = property("_NewEnum"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IUnknown**)qax_result.constData(); -} - -inline PowerPoint::Shape* CanvasShapes::AddCallout(Office::MsoCalloutType Type, double Left, double Top, double Width, double Height) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 7, _a); - return qax_result; -} - -inline PowerPoint::Shape* CanvasShapes::AddConnector(Office::MsoConnectorType Type, double BeginX, double BeginY, double EndX, double EndY) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&BeginX, (void*)&BeginY, (void*)&EndX, (void*)&EndY}; - qt_metacall(QMetaObject::InvokeMetaMethod, 8, _a); - return qax_result; -} - -inline PowerPoint::Shape* CanvasShapes::AddCurve(const QVariant& SafeArrayOfPoints) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&SafeArrayOfPoints}; - qt_metacall(QMetaObject::InvokeMetaMethod, 9, _a); - return qax_result; -} - -inline PowerPoint::Shape* CanvasShapes::AddLabel(Office::MsoTextOrientation Orientation, double Left, double Top, double Width, double Height) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Orientation, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 10, _a); - return qax_result; -} - -inline PowerPoint::Shape* CanvasShapes::AddLine(double BeginX, double BeginY, double EndX, double EndY) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&BeginX, (void*)&BeginY, (void*)&EndX, (void*)&EndY}; - qt_metacall(QMetaObject::InvokeMetaMethod, 11, _a); - return qax_result; -} - -inline PowerPoint::Shape* CanvasShapes::AddPicture(const QString& FileName, Office::MsoTriState LinkToFile, Office::MsoTriState SaveWithDocument, double Left, double Top) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&LinkToFile, (void*)&SaveWithDocument, (void*)&Left, (void*)&Top}; - qt_metacall(QMetaObject::InvokeMetaMethod, 12, _a); - return qax_result; -} - -inline PowerPoint::Shape* CanvasShapes::AddPicture(const QString& FileName, Office::MsoTriState LinkToFile, Office::MsoTriState SaveWithDocument, double Left, double Top, double Width) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&LinkToFile, (void*)&SaveWithDocument, (void*)&Left, (void*)&Top, (void*)&Width}; - qt_metacall(QMetaObject::InvokeMetaMethod, 13, _a); - return qax_result; -} - -inline PowerPoint::Shape* CanvasShapes::AddPicture(const QString& FileName, Office::MsoTriState LinkToFile, Office::MsoTriState SaveWithDocument, double Left, double Top, double Width, double Height) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&FileName, (void*)&LinkToFile, (void*)&SaveWithDocument, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 14, _a); - return qax_result; -} - -inline PowerPoint::Shape* CanvasShapes::AddPolyline(const QVariant& SafeArrayOfPoints) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&SafeArrayOfPoints}; - qt_metacall(QMetaObject::InvokeMetaMethod, 15, _a); - return qax_result; -} - -inline PowerPoint::Shape* CanvasShapes::AddShape(Office::MsoAutoShapeType Type, double Left, double Top, double Width, double Height) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Type, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 16, _a); - return qax_result; -} - -inline PowerPoint::Shape* CanvasShapes::AddTextEffect(Office::MsoPresetTextEffect PresetTextEffect, const QString& Text, const QString& FontName, double FontSize, Office::MsoTriState FontBold, Office::MsoTriState FontItalic, double Left, double Top) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&PresetTextEffect, (void*)&Text, (void*)&FontName, (void*)&FontSize, (void*)&FontBold, (void*)&FontItalic, (void*)&Left, (void*)&Top}; - qt_metacall(QMetaObject::InvokeMetaMethod, 17, _a); - return qax_result; -} - -inline PowerPoint::Shape* CanvasShapes::AddTextbox(Office::MsoTextOrientation Orientation, double Left, double Top, double Width, double Height) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Orientation, (void*)&Left, (void*)&Top, (void*)&Width, (void*)&Height}; - qt_metacall(QMetaObject::InvokeMetaMethod, 18, _a); - return qax_result; -} - -inline PowerPoint::FreeformBuilder* CanvasShapes::BuildFreeform(Office::MsoEditingType EditingType, double X1, double Y1) -{ - PowerPoint::FreeformBuilder* qax_result = 0; - qRegisterMetaType("FreeformBuilder*", &qax_result); - qRegisterMetaType("FreeformBuilder", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&EditingType, (void*)&X1, (void*)&Y1}; - qt_metacall(QMetaObject::InvokeMetaMethod, 19, _a); - return qax_result; -} - -inline PowerPoint::Shape* CanvasShapes::Item(const QVariant& Index) -{ - PowerPoint::Shape* qax_result = 0; - qRegisterMetaType("Shape*", &qax_result); - qRegisterMetaType("Shape", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 20, _a); - return qax_result; -} - -inline PowerPoint::ShapeRange* CanvasShapes::Range(const QVariant& Index) -{ - PowerPoint::ShapeRange* qax_result = 0; - qRegisterMetaType("ShapeRange*", &qax_result); - qRegisterMetaType("ShapeRange", qax_result); - void *_a[] = {(void*)&qax_result, (void*)&Index}; - qt_metacall(QMetaObject::InvokeMetaMethod, 21, _a); - return qax_result; -} - -inline void CanvasShapes::SelectAll() -{ - void *_a[] = {0}; - qt_metacall(QMetaObject::InvokeMetaMethod, 22, _a); -} - - -inline bool AutoCorrect::DisplayAutoCorrectOptions() const -{ - QVariant qax_result = property("DisplayAutoCorrectOptions"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void AutoCorrect::SetDisplayAutoCorrectOptions(bool value){ setProperty("DisplayAutoCorrectOptions", QVariant(value)); } - -inline bool AutoCorrect::DisplayAutoLayoutOptions() const -{ - QVariant qax_result = property("DisplayAutoLayoutOptions"); - Q_ASSERT(qax_result.isValid()); - return *(bool*)qax_result.constData(); -} -inline void AutoCorrect::SetDisplayAutoLayoutOptions(bool value){ setProperty("DisplayAutoLayoutOptions", QVariant(value)); } - - -inline Office::MsoTriState Options::DisplayPasteOptions() const -{ - QVariant qax_result = property("DisplayPasteOptions"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void Options::SetDisplayPasteOptions(Office::MsoTriState value){ setProperty("DisplayPasteOptions", QVariant(value)); } - - -inline PowerPoint::Application* CommandEffect::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline QString CommandEffect::Command() const -{ - QVariant qax_result = property("Command"); - Q_ASSERT(qax_result.isValid()); - return *(QString*)qax_result.constData(); -} -inline void CommandEffect::SetCommand(const QString& value){ setProperty("Command", QVariant(value)); } - -inline IDispatch* CommandEffect::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::MsoAnimCommandType CommandEffect::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::MsoAnimCommandType*)qax_result.constData(); -} -inline void CommandEffect::SetType(PowerPoint::MsoAnimCommandType value){ setProperty("Type", QVariant(value)); } - - -inline PowerPoint::Application* FilterEffect::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline IDispatch* FilterEffect::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline Office::MsoTriState FilterEffect::Reveal() const -{ - QVariant qax_result = property("Reveal"); - Q_ASSERT(qax_result.isValid()); - return *(Office::MsoTriState*)qax_result.constData(); -} -inline void FilterEffect::SetReveal(Office::MsoTriState value){ setProperty("Reveal", QVariant(value)); } - -inline PowerPoint::MsoAnimFilterEffectSubtype FilterEffect::Subtype() const -{ - QVariant qax_result = property("Subtype"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::MsoAnimFilterEffectSubtype*)qax_result.constData(); -} -inline void FilterEffect::SetSubtype(PowerPoint::MsoAnimFilterEffectSubtype value){ setProperty("Subtype", QVariant(value)); } - -inline PowerPoint::MsoAnimFilterEffectType FilterEffect::Type() const -{ - QVariant qax_result = property("Type"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::MsoAnimFilterEffectType*)qax_result.constData(); -} -inline void FilterEffect::SetType(PowerPoint::MsoAnimFilterEffectType value){ setProperty("Type", QVariant(value)); } - - -inline PowerPoint::Application* SetEffect::Application() const -{ - PowerPoint::Application* qax_pointer = 0; - qRegisterMetaType("Application*", &qax_pointer); - qRegisterMetaType("Application", qax_pointer); - QVariant qax_result = property("Application"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::Application**)qax_result.constData(); -} - -inline IDispatch* SetEffect::Parent() const -{ - QVariant qax_result = property("Parent"); - if (!qax_result.constData()) return 0; - Q_ASSERT(qax_result.isValid()); - return *(IDispatch**)qax_result.constData(); -} - -inline PowerPoint::MsoAnimProperty SetEffect::Property() const -{ - QVariant qax_result = property("Property"); - Q_ASSERT(qax_result.isValid()); - return *(PowerPoint::MsoAnimProperty*)qax_result.constData(); -} -inline void SetEffect::SetProperty(PowerPoint::MsoAnimProperty value){ setProperty("Property", QVariant(value)); } - -inline QVariant SetEffect::To() const -{ - QVariant qax_result = property("To"); - Q_ASSERT(qax_result.isValid()); - return *(QVariant*)qax_result.constData(); -} -inline void SetEffect::SetTo(const QVariant& value){ setProperty("To", QVariant(value)); } - - - -#endif - -} - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Collection *t) -{ Q_ASSERT(!t); return new PowerPoint::Collection; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::_Application *t) -{ Q_ASSERT(!t); return new PowerPoint::_Application; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::_Global *t) -{ Q_ASSERT(!t); return new PowerPoint::_Global; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Application *t) -{ Q_ASSERT(!t); return new PowerPoint::Application; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Global *t) -{ Q_ASSERT(!t); return new PowerPoint::Global; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::ColorFormat *t) -{ Q_ASSERT(!t); return new PowerPoint::ColorFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::SlideShowWindow *t) -{ Q_ASSERT(!t); return new PowerPoint::SlideShowWindow; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Selection *t) -{ Q_ASSERT(!t); return new PowerPoint::Selection; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::DocumentWindows *t) -{ Q_ASSERT(!t); return new PowerPoint::DocumentWindows; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::SlideShowWindows *t) -{ Q_ASSERT(!t); return new PowerPoint::SlideShowWindows; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::DocumentWindow *t) -{ Q_ASSERT(!t); return new PowerPoint::DocumentWindow; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::View *t) -{ Q_ASSERT(!t); return new PowerPoint::View; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::SlideShowView *t) -{ Q_ASSERT(!t); return new PowerPoint::SlideShowView; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::SlideShowSettings *t) -{ Q_ASSERT(!t); return new PowerPoint::SlideShowSettings; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::NamedSlideShows *t) -{ Q_ASSERT(!t); return new PowerPoint::NamedSlideShows; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::NamedSlideShow *t) -{ Q_ASSERT(!t); return new PowerPoint::NamedSlideShow; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::PrintOptions *t) -{ Q_ASSERT(!t); return new PowerPoint::PrintOptions; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::PrintRanges *t) -{ Q_ASSERT(!t); return new PowerPoint::PrintRanges; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::PrintRange *t) -{ Q_ASSERT(!t); return new PowerPoint::PrintRange; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::AddIns *t) -{ Q_ASSERT(!t); return new PowerPoint::AddIns; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::AddIn *t) -{ Q_ASSERT(!t); return new PowerPoint::AddIn; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Presentations *t) -{ Q_ASSERT(!t); return new PowerPoint::Presentations; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Presentation *t) -{ Q_ASSERT(!t); return new PowerPoint::Presentation; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Hyperlinks *t) -{ Q_ASSERT(!t); return new PowerPoint::Hyperlinks; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Hyperlink *t) -{ Q_ASSERT(!t); return new PowerPoint::Hyperlink; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::PageSetup *t) -{ Q_ASSERT(!t); return new PowerPoint::PageSetup; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Fonts *t) -{ Q_ASSERT(!t); return new PowerPoint::Fonts; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::ExtraColors *t) -{ Q_ASSERT(!t); return new PowerPoint::ExtraColors; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Slides *t) -{ Q_ASSERT(!t); return new PowerPoint::Slides; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::_Slide *t) -{ Q_ASSERT(!t); return new PowerPoint::_Slide; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::SlideRange *t) -{ Q_ASSERT(!t); return new PowerPoint::SlideRange; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::_Master *t) -{ Q_ASSERT(!t); return new PowerPoint::_Master; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Slide *t) -{ Q_ASSERT(!t); return new PowerPoint::Slide; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::ColorSchemes *t) -{ Q_ASSERT(!t); return new PowerPoint::ColorSchemes; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::ColorScheme *t) -{ Q_ASSERT(!t); return new PowerPoint::ColorScheme; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::RGBColor *t) -{ Q_ASSERT(!t); return new PowerPoint::RGBColor; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::SlideShowTransition *t) -{ Q_ASSERT(!t); return new PowerPoint::SlideShowTransition; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::SoundEffect *t) -{ Q_ASSERT(!t); return new PowerPoint::SoundEffect; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::SoundFormat *t) -{ Q_ASSERT(!t); return new PowerPoint::SoundFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::HeadersFooters *t) -{ Q_ASSERT(!t); return new PowerPoint::HeadersFooters; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Shapes *t) -{ Q_ASSERT(!t); return new PowerPoint::Shapes; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Placeholders *t) -{ Q_ASSERT(!t); return new PowerPoint::Placeholders; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::PlaceholderFormat *t) -{ Q_ASSERT(!t); return new PowerPoint::PlaceholderFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::FreeformBuilder *t) -{ Q_ASSERT(!t); return new PowerPoint::FreeformBuilder; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Shape *t) -{ Q_ASSERT(!t); return new PowerPoint::Shape; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::ShapeRange *t) -{ Q_ASSERT(!t); return new PowerPoint::ShapeRange; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::GroupShapes *t) -{ Q_ASSERT(!t); return new PowerPoint::GroupShapes; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Adjustments *t) -{ Q_ASSERT(!t); return new PowerPoint::Adjustments; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::PictureFormat *t) -{ Q_ASSERT(!t); return new PowerPoint::PictureFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::FillFormat *t) -{ Q_ASSERT(!t); return new PowerPoint::FillFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::LineFormat *t) -{ Q_ASSERT(!t); return new PowerPoint::LineFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::ShadowFormat *t) -{ Q_ASSERT(!t); return new PowerPoint::ShadowFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::ConnectorFormat *t) -{ Q_ASSERT(!t); return new PowerPoint::ConnectorFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::TextEffectFormat *t) -{ Q_ASSERT(!t); return new PowerPoint::TextEffectFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::ThreeDFormat *t) -{ Q_ASSERT(!t); return new PowerPoint::ThreeDFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::TextFrame *t) -{ Q_ASSERT(!t); return new PowerPoint::TextFrame; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::CalloutFormat *t) -{ Q_ASSERT(!t); return new PowerPoint::CalloutFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::ShapeNodes *t) -{ Q_ASSERT(!t); return new PowerPoint::ShapeNodes; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::ShapeNode *t) -{ Q_ASSERT(!t); return new PowerPoint::ShapeNode; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::OLEFormat *t) -{ Q_ASSERT(!t); return new PowerPoint::OLEFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::LinkFormat *t) -{ Q_ASSERT(!t); return new PowerPoint::LinkFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::ObjectVerbs *t) -{ Q_ASSERT(!t); return new PowerPoint::ObjectVerbs; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::AnimationSettings *t) -{ Q_ASSERT(!t); return new PowerPoint::AnimationSettings; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::ActionSettings *t) -{ Q_ASSERT(!t); return new PowerPoint::ActionSettings; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::ActionSetting *t) -{ Q_ASSERT(!t); return new PowerPoint::ActionSetting; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::PlaySettings *t) -{ Q_ASSERT(!t); return new PowerPoint::PlaySettings; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::TextRange *t) -{ Q_ASSERT(!t); return new PowerPoint::TextRange; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Ruler *t) -{ Q_ASSERT(!t); return new PowerPoint::Ruler; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::RulerLevels *t) -{ Q_ASSERT(!t); return new PowerPoint::RulerLevels; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::RulerLevel *t) -{ Q_ASSERT(!t); return new PowerPoint::RulerLevel; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::TabStops *t) -{ Q_ASSERT(!t); return new PowerPoint::TabStops; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::TabStop *t) -{ Q_ASSERT(!t); return new PowerPoint::TabStop; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Font *t) -{ Q_ASSERT(!t); return new PowerPoint::Font; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::ParagraphFormat *t) -{ Q_ASSERT(!t); return new PowerPoint::ParagraphFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::BulletFormat *t) -{ Q_ASSERT(!t); return new PowerPoint::BulletFormat; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::TextStyles *t) -{ Q_ASSERT(!t); return new PowerPoint::TextStyles; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::TextStyle *t) -{ Q_ASSERT(!t); return new PowerPoint::TextStyle; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::TextStyleLevels *t) -{ Q_ASSERT(!t); return new PowerPoint::TextStyleLevels; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::TextStyleLevel *t) -{ Q_ASSERT(!t); return new PowerPoint::TextStyleLevel; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::HeaderFooter *t) -{ Q_ASSERT(!t); return new PowerPoint::HeaderFooter; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::_Presentation *t) -{ Q_ASSERT(!t); return new PowerPoint::_Presentation; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Tags *t) -{ Q_ASSERT(!t); return new PowerPoint::Tags; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::OCXExtender *t) -{ Q_ASSERT(!t); return new PowerPoint::OCXExtender; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::OLEControl *t) -{ Q_ASSERT(!t); return new PowerPoint::OLEControl; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Table *t) -{ Q_ASSERT(!t); return new PowerPoint::Table; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Columns *t) -{ Q_ASSERT(!t); return new PowerPoint::Columns; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Column *t) -{ Q_ASSERT(!t); return new PowerPoint::Column; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Rows *t) -{ Q_ASSERT(!t); return new PowerPoint::Rows; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Row *t) -{ Q_ASSERT(!t); return new PowerPoint::Row; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::CellRange *t) -{ Q_ASSERT(!t); return new PowerPoint::CellRange; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Cell *t) -{ Q_ASSERT(!t); return new PowerPoint::Cell; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Borders *t) -{ Q_ASSERT(!t); return new PowerPoint::Borders; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Panes *t) -{ Q_ASSERT(!t); return new PowerPoint::Panes; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Pane *t) -{ Q_ASSERT(!t); return new PowerPoint::Pane; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::DefaultWebOptions *t) -{ Q_ASSERT(!t); return new PowerPoint::DefaultWebOptions; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::WebOptions *t) -{ Q_ASSERT(!t); return new PowerPoint::WebOptions; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::PublishObjects *t) -{ Q_ASSERT(!t); return new PowerPoint::PublishObjects; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::PublishObject *t) -{ Q_ASSERT(!t); return new PowerPoint::PublishObject; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Master *t) -{ Q_ASSERT(!t); return new PowerPoint::Master; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::_PowerRex *t) -{ Q_ASSERT(!t); return new PowerPoint::_PowerRex; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::PowerRex *t) -{ Q_ASSERT(!t); return new PowerPoint::PowerRex; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Comments *t) -{ Q_ASSERT(!t); return new PowerPoint::Comments; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Comment *t) -{ Q_ASSERT(!t); return new PowerPoint::Comment; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Designs *t) -{ Q_ASSERT(!t); return new PowerPoint::Designs; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Design *t) -{ Q_ASSERT(!t); return new PowerPoint::Design; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::DiagramNode *t) -{ Q_ASSERT(!t); return new PowerPoint::DiagramNode; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::DiagramNodeChildren *t) -{ Q_ASSERT(!t); return new PowerPoint::DiagramNodeChildren; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::DiagramNodes *t) -{ Q_ASSERT(!t); return new PowerPoint::DiagramNodes; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Diagram *t) -{ Q_ASSERT(!t); return new PowerPoint::Diagram; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::TimeLine *t) -{ Q_ASSERT(!t); return new PowerPoint::TimeLine; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Sequences *t) -{ Q_ASSERT(!t); return new PowerPoint::Sequences; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Sequence *t) -{ Q_ASSERT(!t); return new PowerPoint::Sequence; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Effect *t) -{ Q_ASSERT(!t); return new PowerPoint::Effect; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Timing *t) -{ Q_ASSERT(!t); return new PowerPoint::Timing; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::EffectParameters *t) -{ Q_ASSERT(!t); return new PowerPoint::EffectParameters; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::EffectInformation *t) -{ Q_ASSERT(!t); return new PowerPoint::EffectInformation; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::AnimationBehaviors *t) -{ Q_ASSERT(!t); return new PowerPoint::AnimationBehaviors; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::AnimationBehavior *t) -{ Q_ASSERT(!t); return new PowerPoint::AnimationBehavior; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::MotionEffect *t) -{ Q_ASSERT(!t); return new PowerPoint::MotionEffect; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::ColorEffect *t) -{ Q_ASSERT(!t); return new PowerPoint::ColorEffect; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::ScaleEffect *t) -{ Q_ASSERT(!t); return new PowerPoint::ScaleEffect; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::RotationEffect *t) -{ Q_ASSERT(!t); return new PowerPoint::RotationEffect; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::PropertyEffect *t) -{ Q_ASSERT(!t); return new PowerPoint::PropertyEffect; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::AnimationPoints *t) -{ Q_ASSERT(!t); return new PowerPoint::AnimationPoints; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::AnimationPoint *t) -{ Q_ASSERT(!t); return new PowerPoint::AnimationPoint; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::CanvasShapes *t) -{ Q_ASSERT(!t); return new PowerPoint::CanvasShapes; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::AutoCorrect *t) -{ Q_ASSERT(!t); return new PowerPoint::AutoCorrect; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::Options *t) -{ Q_ASSERT(!t); return new PowerPoint::Options; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::CommandEffect *t) -{ Q_ASSERT(!t); return new PowerPoint::CommandEffect; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::FilterEffect *t) -{ Q_ASSERT(!t); return new PowerPoint::FilterEffect; } - -template<> -inline void *qMetaTypeConstructHelper(const PowerPoint::SetEffect *t) -{ Q_ASSERT(!t); return new PowerPoint::SetEffect; } - -#endif - diff --git a/thirdparty/microsoft/ppt/lib/ppt.lib b/thirdparty/microsoft/ppt/lib/ppt.lib deleted file mode 100644 index 6ea8b05a..00000000 Binary files a/thirdparty/microsoft/ppt/lib/ppt.lib and /dev/null differ diff --git a/thirdparty/microsoft/ppt/ppt.pro b/thirdparty/microsoft/ppt/ppt.pro deleted file mode 100644 index c6e50204..00000000 --- a/thirdparty/microsoft/ppt/ppt.pro +++ /dev/null @@ -1,23 +0,0 @@ -TEMPLATE = lib -CONFIG += staticlib release warn_off - -DESTDIR = "lib" - -win32 { - - CONFIG += qaxcontainer - - # The folowing COM wrappers are generated from dumcpp - # - TYPELIBS = $$system(dumpcpp -getfile {91493440-5A91-11CF-8700-00AA0060263B}) - TYPELIBS += $$system(dumpcpp -getfile {2DF8D04C-5BFA-101B-BDE5-00AA0044DE52}) - - SOURCES += msppt.cpp \ - mso.cpp - - HEADERS += msppt.h \ - mso.h - -} - - diff --git a/thirdparty/microsoft/rts/include/RTSCOM.h b/thirdparty/microsoft/rts/include/RTSCOM.h deleted file mode 100644 index 22a9c2b5..00000000 --- a/thirdparty/microsoft/rts/include/RTSCOM.h +++ /dev/null @@ -1,2215 +0,0 @@ -//-------------------------------------------------------------------------- -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// -// File: rtscom.h -// Microsoft Tablet PC API definitions -// -//-------------------------------------------------------------------------- - - - - - -/* this ALWAYS GENERATED file contains the definitions for the interfaces */ - - - /* File created by MIDL compiler version 7.00.0499 */ -/* Compiler settings for rtscom.idl: - Oicf, W1, Zp8, env=Win32 (32b run) - protocol : dce , ms_ext, c_ext, robust - error checks: allocation ref bounds_check enum stub_data - VC __declspec() decoration level: - __declspec(uuid()), __declspec(selectany), __declspec(novtable) - DECLSPEC_UUID(), MIDL_INTERFACE() -*/ -//@@MIDL_FILE_HEADING( ) - -#pragma warning( disable: 4049 ) /* more than 64k source lines */ - - -/* verify that the version is high enough to compile this file*/ -#ifndef __REQUIRED_RPCNDR_H_VERSION__ -#define __REQUIRED_RPCNDR_H_VERSION__ 500 -#endif - -/* verify that the version is high enough to compile this file*/ -#ifndef __REQUIRED_RPCSAL_H_VERSION__ -#define __REQUIRED_RPCSAL_H_VERSION__ 100 -#endif - -#include "rpc.h" -#include "rpcndr.h" - -#ifndef __RPCNDR_H_VERSION__ -#error this stub requires an updated version of -#endif // __RPCNDR_H_VERSION__ - - -#ifndef __rtscom_h__ -#define __rtscom_h__ - -#if defined(_MSC_VER) && (_MSC_VER >= 1020) -#pragma once -#endif - -/* Forward Declarations */ - -#ifndef __IRealTimeStylus_FWD_DEFINED__ -#define __IRealTimeStylus_FWD_DEFINED__ -typedef interface IRealTimeStylus IRealTimeStylus; -#endif /* __IRealTimeStylus_FWD_DEFINED__ */ - - -#ifndef __IRealTimeStylus2_FWD_DEFINED__ -#define __IRealTimeStylus2_FWD_DEFINED__ -typedef interface IRealTimeStylus2 IRealTimeStylus2; -#endif /* __IRealTimeStylus2_FWD_DEFINED__ */ - - -#ifndef __IRealTimeStylusSynchronization_FWD_DEFINED__ -#define __IRealTimeStylusSynchronization_FWD_DEFINED__ -typedef interface IRealTimeStylusSynchronization IRealTimeStylusSynchronization; -#endif /* __IRealTimeStylusSynchronization_FWD_DEFINED__ */ - - -#ifndef __IStrokeBuilder_FWD_DEFINED__ -#define __IStrokeBuilder_FWD_DEFINED__ -typedef interface IStrokeBuilder IStrokeBuilder; -#endif /* __IStrokeBuilder_FWD_DEFINED__ */ - - -#ifndef __IStylusPlugin_FWD_DEFINED__ -#define __IStylusPlugin_FWD_DEFINED__ -typedef interface IStylusPlugin IStylusPlugin; -#endif /* __IStylusPlugin_FWD_DEFINED__ */ - - -#ifndef __IStylusSyncPlugin_FWD_DEFINED__ -#define __IStylusSyncPlugin_FWD_DEFINED__ -typedef interface IStylusSyncPlugin IStylusSyncPlugin; -#endif /* __IStylusSyncPlugin_FWD_DEFINED__ */ - - -#ifndef __IStylusAsyncPlugin_FWD_DEFINED__ -#define __IStylusAsyncPlugin_FWD_DEFINED__ -typedef interface IStylusAsyncPlugin IStylusAsyncPlugin; -#endif /* __IStylusAsyncPlugin_FWD_DEFINED__ */ - - -#ifndef __IDynamicRenderer_FWD_DEFINED__ -#define __IDynamicRenderer_FWD_DEFINED__ -typedef interface IDynamicRenderer IDynamicRenderer; -#endif /* __IDynamicRenderer_FWD_DEFINED__ */ - - -#ifndef __IGestureRecognizer_FWD_DEFINED__ -#define __IGestureRecognizer_FWD_DEFINED__ -typedef interface IGestureRecognizer IGestureRecognizer; -#endif /* __IGestureRecognizer_FWD_DEFINED__ */ - - -#ifndef __RealTimeStylus_FWD_DEFINED__ -#define __RealTimeStylus_FWD_DEFINED__ - -#ifdef __cplusplus -typedef class RealTimeStylus RealTimeStylus; -#else -typedef struct RealTimeStylus RealTimeStylus; -#endif /* __cplusplus */ - -#endif /* __RealTimeStylus_FWD_DEFINED__ */ - - -#ifndef __DynamicRenderer_FWD_DEFINED__ -#define __DynamicRenderer_FWD_DEFINED__ - -#ifdef __cplusplus -typedef class DynamicRenderer DynamicRenderer; -#else -typedef struct DynamicRenderer DynamicRenderer; -#endif /* __cplusplus */ - -#endif /* __DynamicRenderer_FWD_DEFINED__ */ - - -#ifndef __GestureRecognizer_FWD_DEFINED__ -#define __GestureRecognizer_FWD_DEFINED__ - -#ifdef __cplusplus -typedef class GestureRecognizer GestureRecognizer; -#else -typedef struct GestureRecognizer GestureRecognizer; -#endif /* __cplusplus */ - -#endif /* __GestureRecognizer_FWD_DEFINED__ */ - - -#ifndef __StrokeBuilder_FWD_DEFINED__ -#define __StrokeBuilder_FWD_DEFINED__ - -#ifdef __cplusplus -typedef class StrokeBuilder StrokeBuilder; -#else -typedef struct StrokeBuilder StrokeBuilder; -#endif /* __cplusplus */ - -#endif /* __StrokeBuilder_FWD_DEFINED__ */ - - -/* header files for imported files */ -#include "oaidl.h" -#include "ocidl.h" -#include "tpcshrd.h" -#include "msinkaut.h" - -#ifdef __cplusplus -extern "C"{ -#endif - - -/* interface __MIDL_itf_rtscom_0000_0000 */ -/* [local] */ - - - - - - - - - -typedef -enum RealTimeStylusDataInterest - { RTSDI_AllData = 0xffffffff, - RTSDI_None = 0, - RTSDI_Error = 0x1, - RTSDI_RealTimeStylusEnabled = 0x2, - RTSDI_RealTimeStylusDisabled = 0x4, - RTSDI_StylusNew = 0x8, - RTSDI_StylusInRange = 0x10, - RTSDI_InAirPackets = 0x20, - RTSDI_StylusOutOfRange = 0x40, - RTSDI_StylusDown = 0x80, - RTSDI_Packets = 0x100, - RTSDI_StylusUp = 0x200, - RTSDI_StylusButtonUp = 0x400, - RTSDI_StylusButtonDown = 0x800, - RTSDI_SystemEvents = 0x1000, - RTSDI_TabletAdded = 0x2000, - RTSDI_TabletRemoved = 0x4000, - RTSDI_CustomStylusDataAdded = 0x8000, - RTSDI_UpdateMapping = 0x10000, - RTSDI_DefaultEvents = ( ( ( ( ( ( RTSDI_RealTimeStylusEnabled | RTSDI_RealTimeStylusDisabled ) | RTSDI_StylusDown ) | RTSDI_Packets ) | RTSDI_StylusUp ) | RTSDI_SystemEvents ) | RTSDI_CustomStylusDataAdded ) - } RealTimeStylusDataInterest; - -typedef CURSOR_ID STYLUS_ID; - -typedef struct StylusInfo - { - TABLET_CONTEXT_ID tcid; - STYLUS_ID cid; - BOOL bIsInvertedCursor; - } StylusInfo; - -typedef -enum StylusQueue - { SyncStylusQueue = 0x1, - AsyncStylusQueueImmediate = 0x2, - AsyncStylusQueue = 0x3 - } StylusQueue; - -typedef -enum RealTimeStylusLockType - { RTSLT_ObjLock = 0x1, - RTSLT_SyncEventLock = 0x2, - RTSLT_AsyncEventLock = 0x4, - RTSLT_ExcludeCallback = 0x8, - RTSLT_SyncObjLock = 0xb, - RTSLT_AsyncObjLock = 0xd - } RealTimeStylusLockType; - -typedef struct GESTURE_DATA - { - int gestureId; - int recoConfidence; - int strokeCount; - } GESTURE_DATA; - -typedef struct DYNAMIC_RENDERER_CACHED_DATA - { - LONG strokeId; - IDynamicRenderer *dynamicRenderer; - } DYNAMIC_RENDERER_CACHED_DATA; - -#if defined(__cplusplus) -const GUID GUID_GESTURE_DATA = {0x41E4EC0F, 0x26AA, 0x455A, {0x9A, 0xA5, 0x2C, 0xD3, 0x6C, 0xF6, 0x3F, 0xB9}}; -const GUID GUID_DYNAMIC_RENDERER_CACHED_DATA = {0xBF531B92, 0x25BF, 0x4A95, {0x89, 0xAD, 0x0E, 0x47, 0x6B, 0x34, 0xB4, 0xF5}}; -#endif // of if defined(__cplusplus) - - -extern RPC_IF_HANDLE __MIDL_itf_rtscom_0000_0000_v0_0_c_ifspec; -extern RPC_IF_HANDLE __MIDL_itf_rtscom_0000_0000_v0_0_s_ifspec; - - -#ifndef __TPCRTSLib_LIBRARY_DEFINED__ -#define __TPCRTSLib_LIBRARY_DEFINED__ - -/* library TPCRTSLib */ -/* [helpstring][version][uuid] */ - - -EXTERN_C const IID LIBID_TPCRTSLib; - -#ifndef __IRealTimeStylus_INTERFACE_DEFINED__ -#define __IRealTimeStylus_INTERFACE_DEFINED__ - -/* interface IRealTimeStylus */ -/* [unique][helpstring][uuid][object] */ - - -EXTERN_C const IID IID_IRealTimeStylus; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("A8BB5D22-3144-4a7b-93CD-F34A16BE513A") - IRealTimeStylus : public IUnknown - { - public: - virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_Enabled( - /* [retval][out] */ __RPC__out BOOL *pfEnable) = 0; - - virtual /* [propput] */ HRESULT STDMETHODCALLTYPE put_Enabled( - /* [in] */ BOOL fEnable) = 0; - - virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_HWND( - /* [retval][out] */ __RPC__out HANDLE_PTR *phwnd) = 0; - - virtual /* [propput] */ HRESULT STDMETHODCALLTYPE put_HWND( - /* [in] */ HANDLE_PTR hwnd) = 0; - - virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_WindowInputRectangle( - /* [retval][out] */ __RPC__out RECT *prcWndInputRect) = 0; - - virtual /* [propput] */ HRESULT STDMETHODCALLTYPE put_WindowInputRectangle( - /* [in] */ __RPC__in const RECT *prcWndInputRect) = 0; - - virtual HRESULT STDMETHODCALLTYPE AddStylusSyncPlugin( - /* [in] */ ULONG iIndex, - /* [in] */ __RPC__in_opt IStylusSyncPlugin *piPlugin) = 0; - - virtual HRESULT STDMETHODCALLTYPE RemoveStylusSyncPlugin( - /* [in] */ ULONG iIndex, - /* [out][in] */ __RPC__deref_inout_opt IStylusSyncPlugin **ppiPlugin) = 0; - - virtual HRESULT STDMETHODCALLTYPE RemoveAllStylusSyncPlugins( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetStylusSyncPlugin( - /* [in] */ ULONG iIndex, - /* [out] */ __RPC__deref_out_opt IStylusSyncPlugin **ppiPlugin) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetStylusSyncPluginCount( - /* [out] */ __RPC__out ULONG *pcPlugins) = 0; - - virtual HRESULT STDMETHODCALLTYPE AddStylusAsyncPlugin( - /* [in] */ ULONG iIndex, - /* [in] */ __RPC__in_opt IStylusAsyncPlugin *piPlugin) = 0; - - virtual HRESULT STDMETHODCALLTYPE RemoveStylusAsyncPlugin( - /* [in] */ ULONG iIndex, - /* [out][in] */ __RPC__deref_inout_opt IStylusAsyncPlugin **ppiPlugin) = 0; - - virtual HRESULT STDMETHODCALLTYPE RemoveAllStylusAsyncPlugins( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetStylusAsyncPlugin( - /* [in] */ ULONG iIndex, - /* [out] */ __RPC__deref_out_opt IStylusAsyncPlugin **ppiPlugin) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetStylusAsyncPluginCount( - /* [out] */ __RPC__out ULONG *pcPlugins) = 0; - - virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_ChildRealTimeStylusPlugin( - /* [retval][out] */ __RPC__deref_out_opt IRealTimeStylus **ppiRTS) = 0; - - virtual /* [propputref] */ HRESULT STDMETHODCALLTYPE putref_ChildRealTimeStylusPlugin( - /* [unique][in] */ __RPC__in_opt IRealTimeStylus *piRTS) = 0; - - virtual HRESULT STDMETHODCALLTYPE AddCustomStylusDataToQueue( - /* [in] */ StylusQueue sq, - /* [in] */ __RPC__in const GUID *pGuidId, - /* [range][in] */ ULONG cbData, - /* [unique][size_is][in] */ __RPC__in_ecount_full_opt(cbData) BYTE *pbData) = 0; - - virtual HRESULT STDMETHODCALLTYPE ClearStylusQueues( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetAllTabletsMode( - /* [in] */ BOOL fUseMouseForInput) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetSingleTabletMode( - /* [in] */ __RPC__in_opt IInkTablet *piTablet) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetTablet( - /* [retval][out] */ __RPC__deref_out_opt IInkTablet **ppiSingleTablet) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetTabletContextIdFromTablet( - /* [in] */ __RPC__in_opt IInkTablet *piTablet, - /* [retval][out] */ __RPC__out TABLET_CONTEXT_ID *ptcid) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetTabletFromTabletContextId( - /* [in] */ TABLET_CONTEXT_ID tcid, - /* [retval][out] */ __RPC__deref_out_opt IInkTablet **ppiTablet) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetAllTabletContextIds( - /* [out][in] */ __RPC__inout ULONG *pcTcidCount, - /* [size_is][size_is][out] */ __RPC__deref_out_ecount_full_opt(*pcTcidCount) TABLET_CONTEXT_ID **ppTcids) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetStyluses( - /* [retval][out] */ __RPC__deref_out_opt IInkCursors **ppiInkCursors) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetStylusForId( - /* [in] */ STYLUS_ID sid, - /* [retval][out] */ __RPC__deref_out_opt IInkCursor **ppiInkCursor) = 0; - - virtual HRESULT STDMETHODCALLTYPE SetDesiredPacketDescription( - /* [range][in] */ ULONG cProperties, - /* [size_is][in] */ __RPC__in_ecount_full(cProperties) const GUID *pPropertyGuids) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetDesiredPacketDescription( - /* [out][in] */ __RPC__inout ULONG *pcProperties, - /* [size_is][size_is][out] */ __RPC__deref_out_ecount_full_opt(*pcProperties) GUID **ppPropertyGuids) = 0; - - virtual HRESULT STDMETHODCALLTYPE GetPacketDescriptionData( - /* [in] */ TABLET_CONTEXT_ID tcid, - /* [unique][out][in] */ __RPC__inout_opt FLOAT *pfInkToDeviceScaleX, - /* [unique][out][in] */ __RPC__inout_opt FLOAT *pfInkToDeviceScaleY, - /* [out][in] */ __RPC__inout ULONG *pcPacketProperties, - /* [size_is][size_is][out] */ __RPC__deref_out_ecount_full_opt(*pcPacketProperties) PACKET_PROPERTY **ppPacketProperties) = 0; - - }; - -#else /* C style interface */ - - typedef struct IRealTimeStylusVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - IRealTimeStylus * This, - /* [in] */ __RPC__in REFIID riid, - /* [iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - IRealTimeStylus * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - IRealTimeStylus * This); - - /* [propget] */ HRESULT ( STDMETHODCALLTYPE *get_Enabled )( - IRealTimeStylus * This, - /* [retval][out] */ __RPC__out BOOL *pfEnable); - - /* [propput] */ HRESULT ( STDMETHODCALLTYPE *put_Enabled )( - IRealTimeStylus * This, - /* [in] */ BOOL fEnable); - - /* [propget] */ HRESULT ( STDMETHODCALLTYPE *get_HWND )( - IRealTimeStylus * This, - /* [retval][out] */ __RPC__out HANDLE_PTR *phwnd); - - /* [propput] */ HRESULT ( STDMETHODCALLTYPE *put_HWND )( - IRealTimeStylus * This, - /* [in] */ HANDLE_PTR hwnd); - - /* [propget] */ HRESULT ( STDMETHODCALLTYPE *get_WindowInputRectangle )( - IRealTimeStylus * This, - /* [retval][out] */ __RPC__out RECT *prcWndInputRect); - - /* [propput] */ HRESULT ( STDMETHODCALLTYPE *put_WindowInputRectangle )( - IRealTimeStylus * This, - /* [in] */ __RPC__in const RECT *prcWndInputRect); - - HRESULT ( STDMETHODCALLTYPE *AddStylusSyncPlugin )( - IRealTimeStylus * This, - /* [in] */ ULONG iIndex, - /* [in] */ __RPC__in_opt IStylusSyncPlugin *piPlugin); - - HRESULT ( STDMETHODCALLTYPE *RemoveStylusSyncPlugin )( - IRealTimeStylus * This, - /* [in] */ ULONG iIndex, - /* [out][in] */ __RPC__deref_inout_opt IStylusSyncPlugin **ppiPlugin); - - HRESULT ( STDMETHODCALLTYPE *RemoveAllStylusSyncPlugins )( - IRealTimeStylus * This); - - HRESULT ( STDMETHODCALLTYPE *GetStylusSyncPlugin )( - IRealTimeStylus * This, - /* [in] */ ULONG iIndex, - /* [out] */ __RPC__deref_out_opt IStylusSyncPlugin **ppiPlugin); - - HRESULT ( STDMETHODCALLTYPE *GetStylusSyncPluginCount )( - IRealTimeStylus * This, - /* [out] */ __RPC__out ULONG *pcPlugins); - - HRESULT ( STDMETHODCALLTYPE *AddStylusAsyncPlugin )( - IRealTimeStylus * This, - /* [in] */ ULONG iIndex, - /* [in] */ __RPC__in_opt IStylusAsyncPlugin *piPlugin); - - HRESULT ( STDMETHODCALLTYPE *RemoveStylusAsyncPlugin )( - IRealTimeStylus * This, - /* [in] */ ULONG iIndex, - /* [out][in] */ __RPC__deref_inout_opt IStylusAsyncPlugin **ppiPlugin); - - HRESULT ( STDMETHODCALLTYPE *RemoveAllStylusAsyncPlugins )( - IRealTimeStylus * This); - - HRESULT ( STDMETHODCALLTYPE *GetStylusAsyncPlugin )( - IRealTimeStylus * This, - /* [in] */ ULONG iIndex, - /* [out] */ __RPC__deref_out_opt IStylusAsyncPlugin **ppiPlugin); - - HRESULT ( STDMETHODCALLTYPE *GetStylusAsyncPluginCount )( - IRealTimeStylus * This, - /* [out] */ __RPC__out ULONG *pcPlugins); - - /* [propget] */ HRESULT ( STDMETHODCALLTYPE *get_ChildRealTimeStylusPlugin )( - IRealTimeStylus * This, - /* [retval][out] */ __RPC__deref_out_opt IRealTimeStylus **ppiRTS); - - /* [propputref] */ HRESULT ( STDMETHODCALLTYPE *putref_ChildRealTimeStylusPlugin )( - IRealTimeStylus * This, - /* [unique][in] */ __RPC__in_opt IRealTimeStylus *piRTS); - - HRESULT ( STDMETHODCALLTYPE *AddCustomStylusDataToQueue )( - IRealTimeStylus * This, - /* [in] */ StylusQueue sq, - /* [in] */ __RPC__in const GUID *pGuidId, - /* [range][in] */ ULONG cbData, - /* [unique][size_is][in] */ __RPC__in_ecount_full_opt(cbData) BYTE *pbData); - - HRESULT ( STDMETHODCALLTYPE *ClearStylusQueues )( - IRealTimeStylus * This); - - HRESULT ( STDMETHODCALLTYPE *SetAllTabletsMode )( - IRealTimeStylus * This, - /* [in] */ BOOL fUseMouseForInput); - - HRESULT ( STDMETHODCALLTYPE *SetSingleTabletMode )( - IRealTimeStylus * This, - /* [in] */ __RPC__in_opt IInkTablet *piTablet); - - HRESULT ( STDMETHODCALLTYPE *GetTablet )( - IRealTimeStylus * This, - /* [retval][out] */ __RPC__deref_out_opt IInkTablet **ppiSingleTablet); - - HRESULT ( STDMETHODCALLTYPE *GetTabletContextIdFromTablet )( - IRealTimeStylus * This, - /* [in] */ __RPC__in_opt IInkTablet *piTablet, - /* [retval][out] */ __RPC__out TABLET_CONTEXT_ID *ptcid); - - HRESULT ( STDMETHODCALLTYPE *GetTabletFromTabletContextId )( - IRealTimeStylus * This, - /* [in] */ TABLET_CONTEXT_ID tcid, - /* [retval][out] */ __RPC__deref_out_opt IInkTablet **ppiTablet); - - HRESULT ( STDMETHODCALLTYPE *GetAllTabletContextIds )( - IRealTimeStylus * This, - /* [out][in] */ __RPC__inout ULONG *pcTcidCount, - /* [size_is][size_is][out] */ __RPC__deref_out_ecount_full_opt(*pcTcidCount) TABLET_CONTEXT_ID **ppTcids); - - HRESULT ( STDMETHODCALLTYPE *GetStyluses )( - IRealTimeStylus * This, - /* [retval][out] */ __RPC__deref_out_opt IInkCursors **ppiInkCursors); - - HRESULT ( STDMETHODCALLTYPE *GetStylusForId )( - IRealTimeStylus * This, - /* [in] */ STYLUS_ID sid, - /* [retval][out] */ __RPC__deref_out_opt IInkCursor **ppiInkCursor); - - HRESULT ( STDMETHODCALLTYPE *SetDesiredPacketDescription )( - IRealTimeStylus * This, - /* [range][in] */ ULONG cProperties, - /* [size_is][in] */ __RPC__in_ecount_full(cProperties) const GUID *pPropertyGuids); - - HRESULT ( STDMETHODCALLTYPE *GetDesiredPacketDescription )( - IRealTimeStylus * This, - /* [out][in] */ __RPC__inout ULONG *pcProperties, - /* [size_is][size_is][out] */ __RPC__deref_out_ecount_full_opt(*pcProperties) GUID **ppPropertyGuids); - - HRESULT ( STDMETHODCALLTYPE *GetPacketDescriptionData )( - IRealTimeStylus * This, - /* [in] */ TABLET_CONTEXT_ID tcid, - /* [unique][out][in] */ __RPC__inout_opt FLOAT *pfInkToDeviceScaleX, - /* [unique][out][in] */ __RPC__inout_opt FLOAT *pfInkToDeviceScaleY, - /* [out][in] */ __RPC__inout ULONG *pcPacketProperties, - /* [size_is][size_is][out] */ __RPC__deref_out_ecount_full_opt(*pcPacketProperties) PACKET_PROPERTY **ppPacketProperties); - - END_INTERFACE - } IRealTimeStylusVtbl; - - interface IRealTimeStylus - { - CONST_VTBL struct IRealTimeStylusVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IRealTimeStylus_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IRealTimeStylus_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IRealTimeStylus_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IRealTimeStylus_get_Enabled(This,pfEnable) \ - ( (This)->lpVtbl -> get_Enabled(This,pfEnable) ) - -#define IRealTimeStylus_put_Enabled(This,fEnable) \ - ( (This)->lpVtbl -> put_Enabled(This,fEnable) ) - -#define IRealTimeStylus_get_HWND(This,phwnd) \ - ( (This)->lpVtbl -> get_HWND(This,phwnd) ) - -#define IRealTimeStylus_put_HWND(This,hwnd) \ - ( (This)->lpVtbl -> put_HWND(This,hwnd) ) - -#define IRealTimeStylus_get_WindowInputRectangle(This,prcWndInputRect) \ - ( (This)->lpVtbl -> get_WindowInputRectangle(This,prcWndInputRect) ) - -#define IRealTimeStylus_put_WindowInputRectangle(This,prcWndInputRect) \ - ( (This)->lpVtbl -> put_WindowInputRectangle(This,prcWndInputRect) ) - -#define IRealTimeStylus_AddStylusSyncPlugin(This,iIndex,piPlugin) \ - ( (This)->lpVtbl -> AddStylusSyncPlugin(This,iIndex,piPlugin) ) - -#define IRealTimeStylus_RemoveStylusSyncPlugin(This,iIndex,ppiPlugin) \ - ( (This)->lpVtbl -> RemoveStylusSyncPlugin(This,iIndex,ppiPlugin) ) - -#define IRealTimeStylus_RemoveAllStylusSyncPlugins(This) \ - ( (This)->lpVtbl -> RemoveAllStylusSyncPlugins(This) ) - -#define IRealTimeStylus_GetStylusSyncPlugin(This,iIndex,ppiPlugin) \ - ( (This)->lpVtbl -> GetStylusSyncPlugin(This,iIndex,ppiPlugin) ) - -#define IRealTimeStylus_GetStylusSyncPluginCount(This,pcPlugins) \ - ( (This)->lpVtbl -> GetStylusSyncPluginCount(This,pcPlugins) ) - -#define IRealTimeStylus_AddStylusAsyncPlugin(This,iIndex,piPlugin) \ - ( (This)->lpVtbl -> AddStylusAsyncPlugin(This,iIndex,piPlugin) ) - -#define IRealTimeStylus_RemoveStylusAsyncPlugin(This,iIndex,ppiPlugin) \ - ( (This)->lpVtbl -> RemoveStylusAsyncPlugin(This,iIndex,ppiPlugin) ) - -#define IRealTimeStylus_RemoveAllStylusAsyncPlugins(This) \ - ( (This)->lpVtbl -> RemoveAllStylusAsyncPlugins(This) ) - -#define IRealTimeStylus_GetStylusAsyncPlugin(This,iIndex,ppiPlugin) \ - ( (This)->lpVtbl -> GetStylusAsyncPlugin(This,iIndex,ppiPlugin) ) - -#define IRealTimeStylus_GetStylusAsyncPluginCount(This,pcPlugins) \ - ( (This)->lpVtbl -> GetStylusAsyncPluginCount(This,pcPlugins) ) - -#define IRealTimeStylus_get_ChildRealTimeStylusPlugin(This,ppiRTS) \ - ( (This)->lpVtbl -> get_ChildRealTimeStylusPlugin(This,ppiRTS) ) - -#define IRealTimeStylus_putref_ChildRealTimeStylusPlugin(This,piRTS) \ - ( (This)->lpVtbl -> putref_ChildRealTimeStylusPlugin(This,piRTS) ) - -#define IRealTimeStylus_AddCustomStylusDataToQueue(This,sq,pGuidId,cbData,pbData) \ - ( (This)->lpVtbl -> AddCustomStylusDataToQueue(This,sq,pGuidId,cbData,pbData) ) - -#define IRealTimeStylus_ClearStylusQueues(This) \ - ( (This)->lpVtbl -> ClearStylusQueues(This) ) - -#define IRealTimeStylus_SetAllTabletsMode(This,fUseMouseForInput) \ - ( (This)->lpVtbl -> SetAllTabletsMode(This,fUseMouseForInput) ) - -#define IRealTimeStylus_SetSingleTabletMode(This,piTablet) \ - ( (This)->lpVtbl -> SetSingleTabletMode(This,piTablet) ) - -#define IRealTimeStylus_GetTablet(This,ppiSingleTablet) \ - ( (This)->lpVtbl -> GetTablet(This,ppiSingleTablet) ) - -#define IRealTimeStylus_GetTabletContextIdFromTablet(This,piTablet,ptcid) \ - ( (This)->lpVtbl -> GetTabletContextIdFromTablet(This,piTablet,ptcid) ) - -#define IRealTimeStylus_GetTabletFromTabletContextId(This,tcid,ppiTablet) \ - ( (This)->lpVtbl -> GetTabletFromTabletContextId(This,tcid,ppiTablet) ) - -#define IRealTimeStylus_GetAllTabletContextIds(This,pcTcidCount,ppTcids) \ - ( (This)->lpVtbl -> GetAllTabletContextIds(This,pcTcidCount,ppTcids) ) - -#define IRealTimeStylus_GetStyluses(This,ppiInkCursors) \ - ( (This)->lpVtbl -> GetStyluses(This,ppiInkCursors) ) - -#define IRealTimeStylus_GetStylusForId(This,sid,ppiInkCursor) \ - ( (This)->lpVtbl -> GetStylusForId(This,sid,ppiInkCursor) ) - -#define IRealTimeStylus_SetDesiredPacketDescription(This,cProperties,pPropertyGuids) \ - ( (This)->lpVtbl -> SetDesiredPacketDescription(This,cProperties,pPropertyGuids) ) - -#define IRealTimeStylus_GetDesiredPacketDescription(This,pcProperties,ppPropertyGuids) \ - ( (This)->lpVtbl -> GetDesiredPacketDescription(This,pcProperties,ppPropertyGuids) ) - -#define IRealTimeStylus_GetPacketDescriptionData(This,tcid,pfInkToDeviceScaleX,pfInkToDeviceScaleY,pcPacketProperties,ppPacketProperties) \ - ( (This)->lpVtbl -> GetPacketDescriptionData(This,tcid,pfInkToDeviceScaleX,pfInkToDeviceScaleY,pcPacketProperties,ppPacketProperties) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IRealTimeStylus_INTERFACE_DEFINED__ */ - - -#ifndef __IRealTimeStylus2_INTERFACE_DEFINED__ -#define __IRealTimeStylus2_INTERFACE_DEFINED__ - -/* interface IRealTimeStylus2 */ -/* [unique][helpstring][uuid][object] */ - - -EXTERN_C const IID IID_IRealTimeStylus2; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("B5F2A6CD-3179-4a3e-B9C4-BB5865962BE2") - IRealTimeStylus2 : public IUnknown - { - public: - virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_FlicksEnabled( - /* [retval][out] */ __RPC__out BOOL *pfEnable) = 0; - - virtual /* [propput] */ HRESULT STDMETHODCALLTYPE put_FlicksEnabled( - /* [in] */ BOOL fEnable) = 0; - - }; - -#else /* C style interface */ - - typedef struct IRealTimeStylus2Vtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - IRealTimeStylus2 * This, - /* [in] */ __RPC__in REFIID riid, - /* [iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - IRealTimeStylus2 * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - IRealTimeStylus2 * This); - - /* [propget] */ HRESULT ( STDMETHODCALLTYPE *get_FlicksEnabled )( - IRealTimeStylus2 * This, - /* [retval][out] */ __RPC__out BOOL *pfEnable); - - /* [propput] */ HRESULT ( STDMETHODCALLTYPE *put_FlicksEnabled )( - IRealTimeStylus2 * This, - /* [in] */ BOOL fEnable); - - END_INTERFACE - } IRealTimeStylus2Vtbl; - - interface IRealTimeStylus2 - { - CONST_VTBL struct IRealTimeStylus2Vtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IRealTimeStylus2_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IRealTimeStylus2_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IRealTimeStylus2_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IRealTimeStylus2_get_FlicksEnabled(This,pfEnable) \ - ( (This)->lpVtbl -> get_FlicksEnabled(This,pfEnable) ) - -#define IRealTimeStylus2_put_FlicksEnabled(This,fEnable) \ - ( (This)->lpVtbl -> put_FlicksEnabled(This,fEnable) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IRealTimeStylus2_INTERFACE_DEFINED__ */ - - -#ifndef __IRealTimeStylusSynchronization_INTERFACE_DEFINED__ -#define __IRealTimeStylusSynchronization_INTERFACE_DEFINED__ - -/* interface IRealTimeStylusSynchronization */ -/* [unique][helpstring][uuid][object] */ - - -EXTERN_C const IID IID_IRealTimeStylusSynchronization; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("AA87EAB8-AB4A-4cea-B5CB-46D84C6A2509") - IRealTimeStylusSynchronization : public IUnknown - { - public: - virtual HRESULT STDMETHODCALLTYPE AcquireLock( - /* [in] */ RealTimeStylusLockType lock) = 0; - - virtual HRESULT STDMETHODCALLTYPE ReleaseLock( - /* [in] */ RealTimeStylusLockType lock) = 0; - - }; - -#else /* C style interface */ - - typedef struct IRealTimeStylusSynchronizationVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - IRealTimeStylusSynchronization * This, - /* [in] */ __RPC__in REFIID riid, - /* [iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - IRealTimeStylusSynchronization * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - IRealTimeStylusSynchronization * This); - - HRESULT ( STDMETHODCALLTYPE *AcquireLock )( - IRealTimeStylusSynchronization * This, - /* [in] */ RealTimeStylusLockType lock); - - HRESULT ( STDMETHODCALLTYPE *ReleaseLock )( - IRealTimeStylusSynchronization * This, - /* [in] */ RealTimeStylusLockType lock); - - END_INTERFACE - } IRealTimeStylusSynchronizationVtbl; - - interface IRealTimeStylusSynchronization - { - CONST_VTBL struct IRealTimeStylusSynchronizationVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IRealTimeStylusSynchronization_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IRealTimeStylusSynchronization_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IRealTimeStylusSynchronization_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IRealTimeStylusSynchronization_AcquireLock(This,lock) \ - ( (This)->lpVtbl -> AcquireLock(This,lock) ) - -#define IRealTimeStylusSynchronization_ReleaseLock(This,lock) \ - ( (This)->lpVtbl -> ReleaseLock(This,lock) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IRealTimeStylusSynchronization_INTERFACE_DEFINED__ */ - - -#ifndef __IStrokeBuilder_INTERFACE_DEFINED__ -#define __IStrokeBuilder_INTERFACE_DEFINED__ - -/* interface IStrokeBuilder */ -/* [unique][helpstring][uuid][object] */ - - -EXTERN_C const IID IID_IStrokeBuilder; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("A5FD4E2D-C44B-4092-9177-260905EB672B") - IStrokeBuilder : public IUnknown - { - public: - virtual HRESULT STDMETHODCALLTYPE CreateStroke( - /* [range][in] */ ULONG cPktBuffLength, - /* [size_is][in] */ __RPC__in_ecount_full(cPktBuffLength) const LONG *pPackets, - /* [range][in] */ ULONG cPacketProperties, - /* [size_is][in] */ __RPC__in_ecount_full(cPacketProperties) const PACKET_PROPERTY *pPacketProperties, - /* [in] */ FLOAT fInkToDeviceScaleX, - /* [in] */ FLOAT fInkToDeviceScaleY, - /* [out][in] */ __RPC__deref_inout_opt IInkStrokeDisp **ppIInkStroke) = 0; - - virtual HRESULT STDMETHODCALLTYPE BeginStroke( - /* [in] */ TABLET_CONTEXT_ID tcid, - /* [in] */ STYLUS_ID sid, - /* [in] */ __RPC__in const LONG *pPacket, - /* [range][in] */ ULONG cPacketProperties, - /* [size_is][in] */ __RPC__in_ecount_full(cPacketProperties) PACKET_PROPERTY *pPacketProperties, - /* [in] */ FLOAT fInkToDeviceScaleX, - /* [in] */ FLOAT fInkToDeviceScaleY, - /* [unique][out][in] */ __RPC__deref_opt_inout_opt IInkStrokeDisp **ppIInkStroke) = 0; - - virtual HRESULT STDMETHODCALLTYPE AppendPackets( - /* [in] */ TABLET_CONTEXT_ID tcid, - /* [in] */ STYLUS_ID sid, - /* [range][in] */ ULONG cPktBuffLength, - /* [size_is][in] */ __RPC__in_ecount_full(cPktBuffLength) const LONG *pPackets) = 0; - - virtual HRESULT STDMETHODCALLTYPE EndStroke( - /* [in] */ TABLET_CONTEXT_ID tcid, - /* [in] */ STYLUS_ID sid, - /* [out][in] */ __RPC__deref_inout_opt IInkStrokeDisp **ppIInkStroke, - /* [out][in] */ __RPC__inout RECT *pDirtyRect) = 0; - - virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_Ink( - /* [retval][out] */ __RPC__deref_out_opt IInkDisp **ppiInkObj) = 0; - - virtual /* [propputref] */ HRESULT STDMETHODCALLTYPE putref_Ink( - /* [in] */ __RPC__in_opt IInkDisp *piInkObj) = 0; - - }; - -#else /* C style interface */ - - typedef struct IStrokeBuilderVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - IStrokeBuilder * This, - /* [in] */ __RPC__in REFIID riid, - /* [iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - IStrokeBuilder * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - IStrokeBuilder * This); - - HRESULT ( STDMETHODCALLTYPE *CreateStroke )( - IStrokeBuilder * This, - /* [range][in] */ ULONG cPktBuffLength, - /* [size_is][in] */ __RPC__in_ecount_full(cPktBuffLength) const LONG *pPackets, - /* [range][in] */ ULONG cPacketProperties, - /* [size_is][in] */ __RPC__in_ecount_full(cPacketProperties) const PACKET_PROPERTY *pPacketProperties, - /* [in] */ FLOAT fInkToDeviceScaleX, - /* [in] */ FLOAT fInkToDeviceScaleY, - /* [out][in] */ __RPC__deref_inout_opt IInkStrokeDisp **ppIInkStroke); - - HRESULT ( STDMETHODCALLTYPE *BeginStroke )( - IStrokeBuilder * This, - /* [in] */ TABLET_CONTEXT_ID tcid, - /* [in] */ STYLUS_ID sid, - /* [in] */ __RPC__in const LONG *pPacket, - /* [range][in] */ ULONG cPacketProperties, - /* [size_is][in] */ __RPC__in_ecount_full(cPacketProperties) PACKET_PROPERTY *pPacketProperties, - /* [in] */ FLOAT fInkToDeviceScaleX, - /* [in] */ FLOAT fInkToDeviceScaleY, - /* [unique][out][in] */ __RPC__deref_opt_inout_opt IInkStrokeDisp **ppIInkStroke); - - HRESULT ( STDMETHODCALLTYPE *AppendPackets )( - IStrokeBuilder * This, - /* [in] */ TABLET_CONTEXT_ID tcid, - /* [in] */ STYLUS_ID sid, - /* [range][in] */ ULONG cPktBuffLength, - /* [size_is][in] */ __RPC__in_ecount_full(cPktBuffLength) const LONG *pPackets); - - HRESULT ( STDMETHODCALLTYPE *EndStroke )( - IStrokeBuilder * This, - /* [in] */ TABLET_CONTEXT_ID tcid, - /* [in] */ STYLUS_ID sid, - /* [out][in] */ __RPC__deref_inout_opt IInkStrokeDisp **ppIInkStroke, - /* [out][in] */ __RPC__inout RECT *pDirtyRect); - - /* [propget] */ HRESULT ( STDMETHODCALLTYPE *get_Ink )( - IStrokeBuilder * This, - /* [retval][out] */ __RPC__deref_out_opt IInkDisp **ppiInkObj); - - /* [propputref] */ HRESULT ( STDMETHODCALLTYPE *putref_Ink )( - IStrokeBuilder * This, - /* [in] */ __RPC__in_opt IInkDisp *piInkObj); - - END_INTERFACE - } IStrokeBuilderVtbl; - - interface IStrokeBuilder - { - CONST_VTBL struct IStrokeBuilderVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IStrokeBuilder_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IStrokeBuilder_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IStrokeBuilder_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IStrokeBuilder_CreateStroke(This,cPktBuffLength,pPackets,cPacketProperties,pPacketProperties,fInkToDeviceScaleX,fInkToDeviceScaleY,ppIInkStroke) \ - ( (This)->lpVtbl -> CreateStroke(This,cPktBuffLength,pPackets,cPacketProperties,pPacketProperties,fInkToDeviceScaleX,fInkToDeviceScaleY,ppIInkStroke) ) - -#define IStrokeBuilder_BeginStroke(This,tcid,sid,pPacket,cPacketProperties,pPacketProperties,fInkToDeviceScaleX,fInkToDeviceScaleY,ppIInkStroke) \ - ( (This)->lpVtbl -> BeginStroke(This,tcid,sid,pPacket,cPacketProperties,pPacketProperties,fInkToDeviceScaleX,fInkToDeviceScaleY,ppIInkStroke) ) - -#define IStrokeBuilder_AppendPackets(This,tcid,sid,cPktBuffLength,pPackets) \ - ( (This)->lpVtbl -> AppendPackets(This,tcid,sid,cPktBuffLength,pPackets) ) - -#define IStrokeBuilder_EndStroke(This,tcid,sid,ppIInkStroke,pDirtyRect) \ - ( (This)->lpVtbl -> EndStroke(This,tcid,sid,ppIInkStroke,pDirtyRect) ) - -#define IStrokeBuilder_get_Ink(This,ppiInkObj) \ - ( (This)->lpVtbl -> get_Ink(This,ppiInkObj) ) - -#define IStrokeBuilder_putref_Ink(This,piInkObj) \ - ( (This)->lpVtbl -> putref_Ink(This,piInkObj) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IStrokeBuilder_INTERFACE_DEFINED__ */ - - -#ifndef __IStylusPlugin_INTERFACE_DEFINED__ -#define __IStylusPlugin_INTERFACE_DEFINED__ - -/* interface IStylusPlugin */ -/* [unique][helpstring][uuid][object] */ - - -EXTERN_C const IID IID_IStylusPlugin; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("A81436D8-4757-4fd1-A185-133F97C6C545") - IStylusPlugin : public IUnknown - { - public: - virtual HRESULT STDMETHODCALLTYPE RealTimeStylusEnabled( - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [range][in] */ ULONG cTcidCount, - /* [size_is][in] */ __RPC__in_ecount_full(cTcidCount) const TABLET_CONTEXT_ID *pTcids) = 0; - - virtual HRESULT STDMETHODCALLTYPE RealTimeStylusDisabled( - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [range][in] */ ULONG cTcidCount, - /* [size_is][in] */ __RPC__in_ecount_full(cTcidCount) const TABLET_CONTEXT_ID *pTcids) = 0; - - virtual HRESULT STDMETHODCALLTYPE StylusInRange( - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ TABLET_CONTEXT_ID tcid, - /* [in] */ STYLUS_ID sid) = 0; - - virtual HRESULT STDMETHODCALLTYPE StylusOutOfRange( - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ TABLET_CONTEXT_ID tcid, - /* [in] */ STYLUS_ID sid) = 0; - - virtual HRESULT STDMETHODCALLTYPE StylusDown( - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in const StylusInfo *pStylusInfo, - /* [range][in] */ ULONG cPropCountPerPkt, - /* [size_is][in] */ __RPC__in_ecount_full(cPropCountPerPkt) LONG *pPacket, - /* [out][in] */ __RPC__deref_inout_opt LONG **ppInOutPkt) = 0; - - virtual HRESULT STDMETHODCALLTYPE StylusUp( - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in const StylusInfo *pStylusInfo, - /* [range][in] */ ULONG cPropCountPerPkt, - /* [size_is][in] */ __RPC__in_ecount_full(cPropCountPerPkt) LONG *pPacket, - /* [out][in] */ __RPC__deref_inout_opt LONG **ppInOutPkt) = 0; - - virtual HRESULT STDMETHODCALLTYPE StylusButtonDown( - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ STYLUS_ID sid, - /* [in] */ __RPC__in const GUID *pGuidStylusButton, - /* [out][in] */ __RPC__inout POINT *pStylusPos) = 0; - - virtual HRESULT STDMETHODCALLTYPE StylusButtonUp( - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ STYLUS_ID sid, - /* [in] */ __RPC__in const GUID *pGuidStylusButton, - /* [out][in] */ __RPC__inout POINT *pStylusPos) = 0; - - virtual HRESULT STDMETHODCALLTYPE InAirPackets( - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in const StylusInfo *pStylusInfo, - /* [in] */ ULONG cPktCount, - /* [range][in] */ ULONG cPktBuffLength, - /* [size_is][in] */ __RPC__in_ecount_full(cPktBuffLength) LONG *pPackets, - /* [out][in] */ __RPC__inout ULONG *pcInOutPkts, - /* [out][in] */ __RPC__deref_inout_opt LONG **ppInOutPkts) = 0; - - virtual HRESULT STDMETHODCALLTYPE Packets( - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in const StylusInfo *pStylusInfo, - /* [in] */ ULONG cPktCount, - /* [range][in] */ ULONG cPktBuffLength, - /* [size_is][in] */ __RPC__in_ecount_full(cPktBuffLength) LONG *pPackets, - /* [out][in] */ __RPC__inout ULONG *pcInOutPkts, - /* [out][in] */ __RPC__deref_inout_opt LONG **ppInOutPkts) = 0; - - virtual HRESULT STDMETHODCALLTYPE CustomStylusDataAdded( - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in const GUID *pGuidId, - /* [range][in] */ ULONG cbData, - /* [unique][size_is][in] */ __RPC__in_ecount_full_opt(cbData) const BYTE *pbData) = 0; - - virtual HRESULT STDMETHODCALLTYPE SystemEvent( - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ TABLET_CONTEXT_ID tcid, - /* [in] */ STYLUS_ID sid, - /* [in] */ SYSTEM_EVENT event, - /* [in] */ SYSTEM_EVENT_DATA eventdata) = 0; - - virtual HRESULT STDMETHODCALLTYPE TabletAdded( - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in_opt IInkTablet *piTablet) = 0; - - virtual HRESULT STDMETHODCALLTYPE TabletRemoved( - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ LONG iTabletIndex) = 0; - - virtual HRESULT STDMETHODCALLTYPE Error( - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in_opt IStylusPlugin *piPlugin, - /* [in] */ RealTimeStylusDataInterest dataInterest, - /* [in] */ HRESULT hrErrorCode, - /* [out][in] */ __RPC__inout LONG_PTR *lptrKey) = 0; - - virtual HRESULT STDMETHODCALLTYPE UpdateMapping( - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc) = 0; - - virtual HRESULT STDMETHODCALLTYPE DataInterest( - /* [retval][out] */ __RPC__out RealTimeStylusDataInterest *pDataInterest) = 0; - - }; - -#else /* C style interface */ - - typedef struct IStylusPluginVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - IStylusPlugin * This, - /* [in] */ __RPC__in REFIID riid, - /* [iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - IStylusPlugin * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - IStylusPlugin * This); - - HRESULT ( STDMETHODCALLTYPE *RealTimeStylusEnabled )( - IStylusPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [range][in] */ ULONG cTcidCount, - /* [size_is][in] */ __RPC__in_ecount_full(cTcidCount) const TABLET_CONTEXT_ID *pTcids); - - HRESULT ( STDMETHODCALLTYPE *RealTimeStylusDisabled )( - IStylusPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [range][in] */ ULONG cTcidCount, - /* [size_is][in] */ __RPC__in_ecount_full(cTcidCount) const TABLET_CONTEXT_ID *pTcids); - - HRESULT ( STDMETHODCALLTYPE *StylusInRange )( - IStylusPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ TABLET_CONTEXT_ID tcid, - /* [in] */ STYLUS_ID sid); - - HRESULT ( STDMETHODCALLTYPE *StylusOutOfRange )( - IStylusPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ TABLET_CONTEXT_ID tcid, - /* [in] */ STYLUS_ID sid); - - HRESULT ( STDMETHODCALLTYPE *StylusDown )( - IStylusPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in const StylusInfo *pStylusInfo, - /* [range][in] */ ULONG cPropCountPerPkt, - /* [size_is][in] */ __RPC__in_ecount_full(cPropCountPerPkt) LONG *pPacket, - /* [out][in] */ __RPC__deref_inout_opt LONG **ppInOutPkt); - - HRESULT ( STDMETHODCALLTYPE *StylusUp )( - IStylusPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in const StylusInfo *pStylusInfo, - /* [range][in] */ ULONG cPropCountPerPkt, - /* [size_is][in] */ __RPC__in_ecount_full(cPropCountPerPkt) LONG *pPacket, - /* [out][in] */ __RPC__deref_inout_opt LONG **ppInOutPkt); - - HRESULT ( STDMETHODCALLTYPE *StylusButtonDown )( - IStylusPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ STYLUS_ID sid, - /* [in] */ __RPC__in const GUID *pGuidStylusButton, - /* [out][in] */ __RPC__inout POINT *pStylusPos); - - HRESULT ( STDMETHODCALLTYPE *StylusButtonUp )( - IStylusPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ STYLUS_ID sid, - /* [in] */ __RPC__in const GUID *pGuidStylusButton, - /* [out][in] */ __RPC__inout POINT *pStylusPos); - - HRESULT ( STDMETHODCALLTYPE *InAirPackets )( - IStylusPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in const StylusInfo *pStylusInfo, - /* [in] */ ULONG cPktCount, - /* [range][in] */ ULONG cPktBuffLength, - /* [size_is][in] */ __RPC__in_ecount_full(cPktBuffLength) LONG *pPackets, - /* [out][in] */ __RPC__inout ULONG *pcInOutPkts, - /* [out][in] */ __RPC__deref_inout_opt LONG **ppInOutPkts); - - HRESULT ( STDMETHODCALLTYPE *Packets )( - IStylusPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in const StylusInfo *pStylusInfo, - /* [in] */ ULONG cPktCount, - /* [range][in] */ ULONG cPktBuffLength, - /* [size_is][in] */ __RPC__in_ecount_full(cPktBuffLength) LONG *pPackets, - /* [out][in] */ __RPC__inout ULONG *pcInOutPkts, - /* [out][in] */ __RPC__deref_inout_opt LONG **ppInOutPkts); - - HRESULT ( STDMETHODCALLTYPE *CustomStylusDataAdded )( - IStylusPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in const GUID *pGuidId, - /* [range][in] */ ULONG cbData, - /* [unique][size_is][in] */ __RPC__in_ecount_full_opt(cbData) const BYTE *pbData); - - HRESULT ( STDMETHODCALLTYPE *SystemEvent )( - IStylusPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ TABLET_CONTEXT_ID tcid, - /* [in] */ STYLUS_ID sid, - /* [in] */ SYSTEM_EVENT event, - /* [in] */ SYSTEM_EVENT_DATA eventdata); - - HRESULT ( STDMETHODCALLTYPE *TabletAdded )( - IStylusPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in_opt IInkTablet *piTablet); - - HRESULT ( STDMETHODCALLTYPE *TabletRemoved )( - IStylusPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ LONG iTabletIndex); - - HRESULT ( STDMETHODCALLTYPE *Error )( - IStylusPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in_opt IStylusPlugin *piPlugin, - /* [in] */ RealTimeStylusDataInterest dataInterest, - /* [in] */ HRESULT hrErrorCode, - /* [out][in] */ __RPC__inout LONG_PTR *lptrKey); - - HRESULT ( STDMETHODCALLTYPE *UpdateMapping )( - IStylusPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc); - - HRESULT ( STDMETHODCALLTYPE *DataInterest )( - IStylusPlugin * This, - /* [retval][out] */ __RPC__out RealTimeStylusDataInterest *pDataInterest); - - END_INTERFACE - } IStylusPluginVtbl; - - interface IStylusPlugin - { - CONST_VTBL struct IStylusPluginVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IStylusPlugin_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IStylusPlugin_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IStylusPlugin_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IStylusPlugin_RealTimeStylusEnabled(This,piRtsSrc,cTcidCount,pTcids) \ - ( (This)->lpVtbl -> RealTimeStylusEnabled(This,piRtsSrc,cTcidCount,pTcids) ) - -#define IStylusPlugin_RealTimeStylusDisabled(This,piRtsSrc,cTcidCount,pTcids) \ - ( (This)->lpVtbl -> RealTimeStylusDisabled(This,piRtsSrc,cTcidCount,pTcids) ) - -#define IStylusPlugin_StylusInRange(This,piRtsSrc,tcid,sid) \ - ( (This)->lpVtbl -> StylusInRange(This,piRtsSrc,tcid,sid) ) - -#define IStylusPlugin_StylusOutOfRange(This,piRtsSrc,tcid,sid) \ - ( (This)->lpVtbl -> StylusOutOfRange(This,piRtsSrc,tcid,sid) ) - -#define IStylusPlugin_StylusDown(This,piRtsSrc,pStylusInfo,cPropCountPerPkt,pPacket,ppInOutPkt) \ - ( (This)->lpVtbl -> StylusDown(This,piRtsSrc,pStylusInfo,cPropCountPerPkt,pPacket,ppInOutPkt) ) - -#define IStylusPlugin_StylusUp(This,piRtsSrc,pStylusInfo,cPropCountPerPkt,pPacket,ppInOutPkt) \ - ( (This)->lpVtbl -> StylusUp(This,piRtsSrc,pStylusInfo,cPropCountPerPkt,pPacket,ppInOutPkt) ) - -#define IStylusPlugin_StylusButtonDown(This,piRtsSrc,sid,pGuidStylusButton,pStylusPos) \ - ( (This)->lpVtbl -> StylusButtonDown(This,piRtsSrc,sid,pGuidStylusButton,pStylusPos) ) - -#define IStylusPlugin_StylusButtonUp(This,piRtsSrc,sid,pGuidStylusButton,pStylusPos) \ - ( (This)->lpVtbl -> StylusButtonUp(This,piRtsSrc,sid,pGuidStylusButton,pStylusPos) ) - -#define IStylusPlugin_InAirPackets(This,piRtsSrc,pStylusInfo,cPktCount,cPktBuffLength,pPackets,pcInOutPkts,ppInOutPkts) \ - ( (This)->lpVtbl -> InAirPackets(This,piRtsSrc,pStylusInfo,cPktCount,cPktBuffLength,pPackets,pcInOutPkts,ppInOutPkts) ) - -#define IStylusPlugin_Packets(This,piRtsSrc,pStylusInfo,cPktCount,cPktBuffLength,pPackets,pcInOutPkts,ppInOutPkts) \ - ( (This)->lpVtbl -> Packets(This,piRtsSrc,pStylusInfo,cPktCount,cPktBuffLength,pPackets,pcInOutPkts,ppInOutPkts) ) - -#define IStylusPlugin_CustomStylusDataAdded(This,piRtsSrc,pGuidId,cbData,pbData) \ - ( (This)->lpVtbl -> CustomStylusDataAdded(This,piRtsSrc,pGuidId,cbData,pbData) ) - -#define IStylusPlugin_SystemEvent(This,piRtsSrc,tcid,sid,event,eventdata) \ - ( (This)->lpVtbl -> SystemEvent(This,piRtsSrc,tcid,sid,event,eventdata) ) - -#define IStylusPlugin_TabletAdded(This,piRtsSrc,piTablet) \ - ( (This)->lpVtbl -> TabletAdded(This,piRtsSrc,piTablet) ) - -#define IStylusPlugin_TabletRemoved(This,piRtsSrc,iTabletIndex) \ - ( (This)->lpVtbl -> TabletRemoved(This,piRtsSrc,iTabletIndex) ) - -#define IStylusPlugin_Error(This,piRtsSrc,piPlugin,dataInterest,hrErrorCode,lptrKey) \ - ( (This)->lpVtbl -> Error(This,piRtsSrc,piPlugin,dataInterest,hrErrorCode,lptrKey) ) - -#define IStylusPlugin_UpdateMapping(This,piRtsSrc) \ - ( (This)->lpVtbl -> UpdateMapping(This,piRtsSrc) ) - -#define IStylusPlugin_DataInterest(This,pDataInterest) \ - ( (This)->lpVtbl -> DataInterest(This,pDataInterest) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IStylusPlugin_INTERFACE_DEFINED__ */ - - -#ifndef __IStylusSyncPlugin_INTERFACE_DEFINED__ -#define __IStylusSyncPlugin_INTERFACE_DEFINED__ - -/* interface IStylusSyncPlugin */ -/* [unique][helpstring][uuid][object] */ - - -EXTERN_C const IID IID_IStylusSyncPlugin; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("A157B174-482F-4d71-A3F6-3A41DDD11BE9") - IStylusSyncPlugin : public IStylusPlugin - { - public: - }; - -#else /* C style interface */ - - typedef struct IStylusSyncPluginVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - IStylusSyncPlugin * This, - /* [in] */ __RPC__in REFIID riid, - /* [iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - IStylusSyncPlugin * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - IStylusSyncPlugin * This); - - HRESULT ( STDMETHODCALLTYPE *RealTimeStylusEnabled )( - IStylusSyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [range][in] */ ULONG cTcidCount, - /* [size_is][in] */ __RPC__in_ecount_full(cTcidCount) const TABLET_CONTEXT_ID *pTcids); - - HRESULT ( STDMETHODCALLTYPE *RealTimeStylusDisabled )( - IStylusSyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [range][in] */ ULONG cTcidCount, - /* [size_is][in] */ __RPC__in_ecount_full(cTcidCount) const TABLET_CONTEXT_ID *pTcids); - - HRESULT ( STDMETHODCALLTYPE *StylusInRange )( - IStylusSyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ TABLET_CONTEXT_ID tcid, - /* [in] */ STYLUS_ID sid); - - HRESULT ( STDMETHODCALLTYPE *StylusOutOfRange )( - IStylusSyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ TABLET_CONTEXT_ID tcid, - /* [in] */ STYLUS_ID sid); - - HRESULT ( STDMETHODCALLTYPE *StylusDown )( - IStylusSyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in const StylusInfo *pStylusInfo, - /* [range][in] */ ULONG cPropCountPerPkt, - /* [size_is][in] */ __RPC__in_ecount_full(cPropCountPerPkt) LONG *pPacket, - /* [out][in] */ __RPC__deref_inout_opt LONG **ppInOutPkt); - - HRESULT ( STDMETHODCALLTYPE *StylusUp )( - IStylusSyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in const StylusInfo *pStylusInfo, - /* [range][in] */ ULONG cPropCountPerPkt, - /* [size_is][in] */ __RPC__in_ecount_full(cPropCountPerPkt) LONG *pPacket, - /* [out][in] */ __RPC__deref_inout_opt LONG **ppInOutPkt); - - HRESULT ( STDMETHODCALLTYPE *StylusButtonDown )( - IStylusSyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ STYLUS_ID sid, - /* [in] */ __RPC__in const GUID *pGuidStylusButton, - /* [out][in] */ __RPC__inout POINT *pStylusPos); - - HRESULT ( STDMETHODCALLTYPE *StylusButtonUp )( - IStylusSyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ STYLUS_ID sid, - /* [in] */ __RPC__in const GUID *pGuidStylusButton, - /* [out][in] */ __RPC__inout POINT *pStylusPos); - - HRESULT ( STDMETHODCALLTYPE *InAirPackets )( - IStylusSyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in const StylusInfo *pStylusInfo, - /* [in] */ ULONG cPktCount, - /* [range][in] */ ULONG cPktBuffLength, - /* [size_is][in] */ __RPC__in_ecount_full(cPktBuffLength) LONG *pPackets, - /* [out][in] */ __RPC__inout ULONG *pcInOutPkts, - /* [out][in] */ __RPC__deref_inout_opt LONG **ppInOutPkts); - - HRESULT ( STDMETHODCALLTYPE *Packets )( - IStylusSyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in const StylusInfo *pStylusInfo, - /* [in] */ ULONG cPktCount, - /* [range][in] */ ULONG cPktBuffLength, - /* [size_is][in] */ __RPC__in_ecount_full(cPktBuffLength) LONG *pPackets, - /* [out][in] */ __RPC__inout ULONG *pcInOutPkts, - /* [out][in] */ __RPC__deref_inout_opt LONG **ppInOutPkts); - - HRESULT ( STDMETHODCALLTYPE *CustomStylusDataAdded )( - IStylusSyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in const GUID *pGuidId, - /* [range][in] */ ULONG cbData, - /* [unique][size_is][in] */ __RPC__in_ecount_full_opt(cbData) const BYTE *pbData); - - HRESULT ( STDMETHODCALLTYPE *SystemEvent )( - IStylusSyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ TABLET_CONTEXT_ID tcid, - /* [in] */ STYLUS_ID sid, - /* [in] */ SYSTEM_EVENT event, - /* [in] */ SYSTEM_EVENT_DATA eventdata); - - HRESULT ( STDMETHODCALLTYPE *TabletAdded )( - IStylusSyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in_opt IInkTablet *piTablet); - - HRESULT ( STDMETHODCALLTYPE *TabletRemoved )( - IStylusSyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ LONG iTabletIndex); - - HRESULT ( STDMETHODCALLTYPE *Error )( - IStylusSyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in_opt IStylusPlugin *piPlugin, - /* [in] */ RealTimeStylusDataInterest dataInterest, - /* [in] */ HRESULT hrErrorCode, - /* [out][in] */ __RPC__inout LONG_PTR *lptrKey); - - HRESULT ( STDMETHODCALLTYPE *UpdateMapping )( - IStylusSyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc); - - HRESULT ( STDMETHODCALLTYPE *DataInterest )( - IStylusSyncPlugin * This, - /* [retval][out] */ __RPC__out RealTimeStylusDataInterest *pDataInterest); - - END_INTERFACE - } IStylusSyncPluginVtbl; - - interface IStylusSyncPlugin - { - CONST_VTBL struct IStylusSyncPluginVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IStylusSyncPlugin_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IStylusSyncPlugin_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IStylusSyncPlugin_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IStylusSyncPlugin_RealTimeStylusEnabled(This,piRtsSrc,cTcidCount,pTcids) \ - ( (This)->lpVtbl -> RealTimeStylusEnabled(This,piRtsSrc,cTcidCount,pTcids) ) - -#define IStylusSyncPlugin_RealTimeStylusDisabled(This,piRtsSrc,cTcidCount,pTcids) \ - ( (This)->lpVtbl -> RealTimeStylusDisabled(This,piRtsSrc,cTcidCount,pTcids) ) - -#define IStylusSyncPlugin_StylusInRange(This,piRtsSrc,tcid,sid) \ - ( (This)->lpVtbl -> StylusInRange(This,piRtsSrc,tcid,sid) ) - -#define IStylusSyncPlugin_StylusOutOfRange(This,piRtsSrc,tcid,sid) \ - ( (This)->lpVtbl -> StylusOutOfRange(This,piRtsSrc,tcid,sid) ) - -#define IStylusSyncPlugin_StylusDown(This,piRtsSrc,pStylusInfo,cPropCountPerPkt,pPacket,ppInOutPkt) \ - ( (This)->lpVtbl -> StylusDown(This,piRtsSrc,pStylusInfo,cPropCountPerPkt,pPacket,ppInOutPkt) ) - -#define IStylusSyncPlugin_StylusUp(This,piRtsSrc,pStylusInfo,cPropCountPerPkt,pPacket,ppInOutPkt) \ - ( (This)->lpVtbl -> StylusUp(This,piRtsSrc,pStylusInfo,cPropCountPerPkt,pPacket,ppInOutPkt) ) - -#define IStylusSyncPlugin_StylusButtonDown(This,piRtsSrc,sid,pGuidStylusButton,pStylusPos) \ - ( (This)->lpVtbl -> StylusButtonDown(This,piRtsSrc,sid,pGuidStylusButton,pStylusPos) ) - -#define IStylusSyncPlugin_StylusButtonUp(This,piRtsSrc,sid,pGuidStylusButton,pStylusPos) \ - ( (This)->lpVtbl -> StylusButtonUp(This,piRtsSrc,sid,pGuidStylusButton,pStylusPos) ) - -#define IStylusSyncPlugin_InAirPackets(This,piRtsSrc,pStylusInfo,cPktCount,cPktBuffLength,pPackets,pcInOutPkts,ppInOutPkts) \ - ( (This)->lpVtbl -> InAirPackets(This,piRtsSrc,pStylusInfo,cPktCount,cPktBuffLength,pPackets,pcInOutPkts,ppInOutPkts) ) - -#define IStylusSyncPlugin_Packets(This,piRtsSrc,pStylusInfo,cPktCount,cPktBuffLength,pPackets,pcInOutPkts,ppInOutPkts) \ - ( (This)->lpVtbl -> Packets(This,piRtsSrc,pStylusInfo,cPktCount,cPktBuffLength,pPackets,pcInOutPkts,ppInOutPkts) ) - -#define IStylusSyncPlugin_CustomStylusDataAdded(This,piRtsSrc,pGuidId,cbData,pbData) \ - ( (This)->lpVtbl -> CustomStylusDataAdded(This,piRtsSrc,pGuidId,cbData,pbData) ) - -#define IStylusSyncPlugin_SystemEvent(This,piRtsSrc,tcid,sid,event,eventdata) \ - ( (This)->lpVtbl -> SystemEvent(This,piRtsSrc,tcid,sid,event,eventdata) ) - -#define IStylusSyncPlugin_TabletAdded(This,piRtsSrc,piTablet) \ - ( (This)->lpVtbl -> TabletAdded(This,piRtsSrc,piTablet) ) - -#define IStylusSyncPlugin_TabletRemoved(This,piRtsSrc,iTabletIndex) \ - ( (This)->lpVtbl -> TabletRemoved(This,piRtsSrc,iTabletIndex) ) - -#define IStylusSyncPlugin_Error(This,piRtsSrc,piPlugin,dataInterest,hrErrorCode,lptrKey) \ - ( (This)->lpVtbl -> Error(This,piRtsSrc,piPlugin,dataInterest,hrErrorCode,lptrKey) ) - -#define IStylusSyncPlugin_UpdateMapping(This,piRtsSrc) \ - ( (This)->lpVtbl -> UpdateMapping(This,piRtsSrc) ) - -#define IStylusSyncPlugin_DataInterest(This,pDataInterest) \ - ( (This)->lpVtbl -> DataInterest(This,pDataInterest) ) - - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IStylusSyncPlugin_INTERFACE_DEFINED__ */ - - -#ifndef __IStylusAsyncPlugin_INTERFACE_DEFINED__ -#define __IStylusAsyncPlugin_INTERFACE_DEFINED__ - -/* interface IStylusAsyncPlugin */ -/* [unique][helpstring][uuid][object] */ - - -EXTERN_C const IID IID_IStylusAsyncPlugin; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("A7CCA85A-31BC-4cd2-AADC-3289A3AF11C8") - IStylusAsyncPlugin : public IStylusPlugin - { - public: - }; - -#else /* C style interface */ - - typedef struct IStylusAsyncPluginVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - IStylusAsyncPlugin * This, - /* [in] */ __RPC__in REFIID riid, - /* [iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - IStylusAsyncPlugin * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - IStylusAsyncPlugin * This); - - HRESULT ( STDMETHODCALLTYPE *RealTimeStylusEnabled )( - IStylusAsyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [range][in] */ ULONG cTcidCount, - /* [size_is][in] */ __RPC__in_ecount_full(cTcidCount) const TABLET_CONTEXT_ID *pTcids); - - HRESULT ( STDMETHODCALLTYPE *RealTimeStylusDisabled )( - IStylusAsyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [range][in] */ ULONG cTcidCount, - /* [size_is][in] */ __RPC__in_ecount_full(cTcidCount) const TABLET_CONTEXT_ID *pTcids); - - HRESULT ( STDMETHODCALLTYPE *StylusInRange )( - IStylusAsyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ TABLET_CONTEXT_ID tcid, - /* [in] */ STYLUS_ID sid); - - HRESULT ( STDMETHODCALLTYPE *StylusOutOfRange )( - IStylusAsyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ TABLET_CONTEXT_ID tcid, - /* [in] */ STYLUS_ID sid); - - HRESULT ( STDMETHODCALLTYPE *StylusDown )( - IStylusAsyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in const StylusInfo *pStylusInfo, - /* [range][in] */ ULONG cPropCountPerPkt, - /* [size_is][in] */ __RPC__in_ecount_full(cPropCountPerPkt) LONG *pPacket, - /* [out][in] */ __RPC__deref_inout_opt LONG **ppInOutPkt); - - HRESULT ( STDMETHODCALLTYPE *StylusUp )( - IStylusAsyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in const StylusInfo *pStylusInfo, - /* [range][in] */ ULONG cPropCountPerPkt, - /* [size_is][in] */ __RPC__in_ecount_full(cPropCountPerPkt) LONG *pPacket, - /* [out][in] */ __RPC__deref_inout_opt LONG **ppInOutPkt); - - HRESULT ( STDMETHODCALLTYPE *StylusButtonDown )( - IStylusAsyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ STYLUS_ID sid, - /* [in] */ __RPC__in const GUID *pGuidStylusButton, - /* [out][in] */ __RPC__inout POINT *pStylusPos); - - HRESULT ( STDMETHODCALLTYPE *StylusButtonUp )( - IStylusAsyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ STYLUS_ID sid, - /* [in] */ __RPC__in const GUID *pGuidStylusButton, - /* [out][in] */ __RPC__inout POINT *pStylusPos); - - HRESULT ( STDMETHODCALLTYPE *InAirPackets )( - IStylusAsyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in const StylusInfo *pStylusInfo, - /* [in] */ ULONG cPktCount, - /* [range][in] */ ULONG cPktBuffLength, - /* [size_is][in] */ __RPC__in_ecount_full(cPktBuffLength) LONG *pPackets, - /* [out][in] */ __RPC__inout ULONG *pcInOutPkts, - /* [out][in] */ __RPC__deref_inout_opt LONG **ppInOutPkts); - - HRESULT ( STDMETHODCALLTYPE *Packets )( - IStylusAsyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in const StylusInfo *pStylusInfo, - /* [in] */ ULONG cPktCount, - /* [range][in] */ ULONG cPktBuffLength, - /* [size_is][in] */ __RPC__in_ecount_full(cPktBuffLength) LONG *pPackets, - /* [out][in] */ __RPC__inout ULONG *pcInOutPkts, - /* [out][in] */ __RPC__deref_inout_opt LONG **ppInOutPkts); - - HRESULT ( STDMETHODCALLTYPE *CustomStylusDataAdded )( - IStylusAsyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in const GUID *pGuidId, - /* [range][in] */ ULONG cbData, - /* [unique][size_is][in] */ __RPC__in_ecount_full_opt(cbData) const BYTE *pbData); - - HRESULT ( STDMETHODCALLTYPE *SystemEvent )( - IStylusAsyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ TABLET_CONTEXT_ID tcid, - /* [in] */ STYLUS_ID sid, - /* [in] */ SYSTEM_EVENT event, - /* [in] */ SYSTEM_EVENT_DATA eventdata); - - HRESULT ( STDMETHODCALLTYPE *TabletAdded )( - IStylusAsyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in_opt IInkTablet *piTablet); - - HRESULT ( STDMETHODCALLTYPE *TabletRemoved )( - IStylusAsyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ LONG iTabletIndex); - - HRESULT ( STDMETHODCALLTYPE *Error )( - IStylusAsyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc, - /* [in] */ __RPC__in_opt IStylusPlugin *piPlugin, - /* [in] */ RealTimeStylusDataInterest dataInterest, - /* [in] */ HRESULT hrErrorCode, - /* [out][in] */ __RPC__inout LONG_PTR *lptrKey); - - HRESULT ( STDMETHODCALLTYPE *UpdateMapping )( - IStylusAsyncPlugin * This, - /* [in] */ __RPC__in_opt IRealTimeStylus *piRtsSrc); - - HRESULT ( STDMETHODCALLTYPE *DataInterest )( - IStylusAsyncPlugin * This, - /* [retval][out] */ __RPC__out RealTimeStylusDataInterest *pDataInterest); - - END_INTERFACE - } IStylusAsyncPluginVtbl; - - interface IStylusAsyncPlugin - { - CONST_VTBL struct IStylusAsyncPluginVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IStylusAsyncPlugin_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IStylusAsyncPlugin_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IStylusAsyncPlugin_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IStylusAsyncPlugin_RealTimeStylusEnabled(This,piRtsSrc,cTcidCount,pTcids) \ - ( (This)->lpVtbl -> RealTimeStylusEnabled(This,piRtsSrc,cTcidCount,pTcids) ) - -#define IStylusAsyncPlugin_RealTimeStylusDisabled(This,piRtsSrc,cTcidCount,pTcids) \ - ( (This)->lpVtbl -> RealTimeStylusDisabled(This,piRtsSrc,cTcidCount,pTcids) ) - -#define IStylusAsyncPlugin_StylusInRange(This,piRtsSrc,tcid,sid) \ - ( (This)->lpVtbl -> StylusInRange(This,piRtsSrc,tcid,sid) ) - -#define IStylusAsyncPlugin_StylusOutOfRange(This,piRtsSrc,tcid,sid) \ - ( (This)->lpVtbl -> StylusOutOfRange(This,piRtsSrc,tcid,sid) ) - -#define IStylusAsyncPlugin_StylusDown(This,piRtsSrc,pStylusInfo,cPropCountPerPkt,pPacket,ppInOutPkt) \ - ( (This)->lpVtbl -> StylusDown(This,piRtsSrc,pStylusInfo,cPropCountPerPkt,pPacket,ppInOutPkt) ) - -#define IStylusAsyncPlugin_StylusUp(This,piRtsSrc,pStylusInfo,cPropCountPerPkt,pPacket,ppInOutPkt) \ - ( (This)->lpVtbl -> StylusUp(This,piRtsSrc,pStylusInfo,cPropCountPerPkt,pPacket,ppInOutPkt) ) - -#define IStylusAsyncPlugin_StylusButtonDown(This,piRtsSrc,sid,pGuidStylusButton,pStylusPos) \ - ( (This)->lpVtbl -> StylusButtonDown(This,piRtsSrc,sid,pGuidStylusButton,pStylusPos) ) - -#define IStylusAsyncPlugin_StylusButtonUp(This,piRtsSrc,sid,pGuidStylusButton,pStylusPos) \ - ( (This)->lpVtbl -> StylusButtonUp(This,piRtsSrc,sid,pGuidStylusButton,pStylusPos) ) - -#define IStylusAsyncPlugin_InAirPackets(This,piRtsSrc,pStylusInfo,cPktCount,cPktBuffLength,pPackets,pcInOutPkts,ppInOutPkts) \ - ( (This)->lpVtbl -> InAirPackets(This,piRtsSrc,pStylusInfo,cPktCount,cPktBuffLength,pPackets,pcInOutPkts,ppInOutPkts) ) - -#define IStylusAsyncPlugin_Packets(This,piRtsSrc,pStylusInfo,cPktCount,cPktBuffLength,pPackets,pcInOutPkts,ppInOutPkts) \ - ( (This)->lpVtbl -> Packets(This,piRtsSrc,pStylusInfo,cPktCount,cPktBuffLength,pPackets,pcInOutPkts,ppInOutPkts) ) - -#define IStylusAsyncPlugin_CustomStylusDataAdded(This,piRtsSrc,pGuidId,cbData,pbData) \ - ( (This)->lpVtbl -> CustomStylusDataAdded(This,piRtsSrc,pGuidId,cbData,pbData) ) - -#define IStylusAsyncPlugin_SystemEvent(This,piRtsSrc,tcid,sid,event,eventdata) \ - ( (This)->lpVtbl -> SystemEvent(This,piRtsSrc,tcid,sid,event,eventdata) ) - -#define IStylusAsyncPlugin_TabletAdded(This,piRtsSrc,piTablet) \ - ( (This)->lpVtbl -> TabletAdded(This,piRtsSrc,piTablet) ) - -#define IStylusAsyncPlugin_TabletRemoved(This,piRtsSrc,iTabletIndex) \ - ( (This)->lpVtbl -> TabletRemoved(This,piRtsSrc,iTabletIndex) ) - -#define IStylusAsyncPlugin_Error(This,piRtsSrc,piPlugin,dataInterest,hrErrorCode,lptrKey) \ - ( (This)->lpVtbl -> Error(This,piRtsSrc,piPlugin,dataInterest,hrErrorCode,lptrKey) ) - -#define IStylusAsyncPlugin_UpdateMapping(This,piRtsSrc) \ - ( (This)->lpVtbl -> UpdateMapping(This,piRtsSrc) ) - -#define IStylusAsyncPlugin_DataInterest(This,pDataInterest) \ - ( (This)->lpVtbl -> DataInterest(This,pDataInterest) ) - - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IStylusAsyncPlugin_INTERFACE_DEFINED__ */ - - -#ifndef __IDynamicRenderer_INTERFACE_DEFINED__ -#define __IDynamicRenderer_INTERFACE_DEFINED__ - -/* interface IDynamicRenderer */ -/* [unique][helpstring][uuid][object] */ - - -EXTERN_C const IID IID_IDynamicRenderer; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("A079468E-7165-46f9-B7AF-98AD01A93009") - IDynamicRenderer : public IUnknown - { - public: - virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_Enabled( - /* [retval][out] */ __RPC__out BOOL *bEnabled) = 0; - - virtual /* [propput] */ HRESULT STDMETHODCALLTYPE put_Enabled( - /* [in] */ BOOL bEnabled) = 0; - - virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_HWND( - /* [retval][out] */ __RPC__out HANDLE_PTR *hwnd) = 0; - - virtual /* [propput] */ HRESULT STDMETHODCALLTYPE put_HWND( - /* [in] */ HANDLE_PTR hwnd) = 0; - - virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_ClipRectangle( - /* [retval][out] */ __RPC__out RECT *prcClipRect) = 0; - - virtual /* [propput] */ HRESULT STDMETHODCALLTYPE put_ClipRectangle( - /* [in] */ __RPC__in const RECT *prcClipRect) = 0; - - virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_ClipRegion( - /* [retval][out] */ __RPC__out HANDLE_PTR *phClipRgn) = 0; - - virtual /* [propput] */ HRESULT STDMETHODCALLTYPE put_ClipRegion( - /* [in] */ HANDLE_PTR hClipRgn) = 0; - - virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_DrawingAttributes( - /* [retval][out] */ __RPC__deref_out_opt IInkDrawingAttributes **ppiDA) = 0; - - virtual /* [propputref] */ HRESULT STDMETHODCALLTYPE putref_DrawingAttributes( - /* [in] */ __RPC__in_opt IInkDrawingAttributes *piDA) = 0; - - virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_DataCacheEnabled( - /* [retval][out] */ __RPC__out BOOL *pfCacheData) = 0; - - virtual /* [propput] */ HRESULT STDMETHODCALLTYPE put_DataCacheEnabled( - /* [in] */ BOOL fCacheData) = 0; - - virtual HRESULT STDMETHODCALLTYPE ReleaseCachedData( - ULONG strokeId) = 0; - - virtual HRESULT STDMETHODCALLTYPE Refresh( void) = 0; - - virtual HRESULT STDMETHODCALLTYPE Draw( - /* [in] */ HANDLE_PTR hDC) = 0; - - }; - -#else /* C style interface */ - - typedef struct IDynamicRendererVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - IDynamicRenderer * This, - /* [in] */ __RPC__in REFIID riid, - /* [iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - IDynamicRenderer * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - IDynamicRenderer * This); - - /* [propget] */ HRESULT ( STDMETHODCALLTYPE *get_Enabled )( - IDynamicRenderer * This, - /* [retval][out] */ __RPC__out BOOL *bEnabled); - - /* [propput] */ HRESULT ( STDMETHODCALLTYPE *put_Enabled )( - IDynamicRenderer * This, - /* [in] */ BOOL bEnabled); - - /* [propget] */ HRESULT ( STDMETHODCALLTYPE *get_HWND )( - IDynamicRenderer * This, - /* [retval][out] */ __RPC__out HANDLE_PTR *hwnd); - - /* [propput] */ HRESULT ( STDMETHODCALLTYPE *put_HWND )( - IDynamicRenderer * This, - /* [in] */ HANDLE_PTR hwnd); - - /* [propget] */ HRESULT ( STDMETHODCALLTYPE *get_ClipRectangle )( - IDynamicRenderer * This, - /* [retval][out] */ __RPC__out RECT *prcClipRect); - - /* [propput] */ HRESULT ( STDMETHODCALLTYPE *put_ClipRectangle )( - IDynamicRenderer * This, - /* [in] */ __RPC__in const RECT *prcClipRect); - - /* [propget] */ HRESULT ( STDMETHODCALLTYPE *get_ClipRegion )( - IDynamicRenderer * This, - /* [retval][out] */ __RPC__out HANDLE_PTR *phClipRgn); - - /* [propput] */ HRESULT ( STDMETHODCALLTYPE *put_ClipRegion )( - IDynamicRenderer * This, - /* [in] */ HANDLE_PTR hClipRgn); - - /* [propget] */ HRESULT ( STDMETHODCALLTYPE *get_DrawingAttributes )( - IDynamicRenderer * This, - /* [retval][out] */ __RPC__deref_out_opt IInkDrawingAttributes **ppiDA); - - /* [propputref] */ HRESULT ( STDMETHODCALLTYPE *putref_DrawingAttributes )( - IDynamicRenderer * This, - /* [in] */ __RPC__in_opt IInkDrawingAttributes *piDA); - - /* [propget] */ HRESULT ( STDMETHODCALLTYPE *get_DataCacheEnabled )( - IDynamicRenderer * This, - /* [retval][out] */ __RPC__out BOOL *pfCacheData); - - /* [propput] */ HRESULT ( STDMETHODCALLTYPE *put_DataCacheEnabled )( - IDynamicRenderer * This, - /* [in] */ BOOL fCacheData); - - HRESULT ( STDMETHODCALLTYPE *ReleaseCachedData )( - IDynamicRenderer * This, - ULONG strokeId); - - HRESULT ( STDMETHODCALLTYPE *Refresh )( - IDynamicRenderer * This); - - HRESULT ( STDMETHODCALLTYPE *Draw )( - IDynamicRenderer * This, - /* [in] */ HANDLE_PTR hDC); - - END_INTERFACE - } IDynamicRendererVtbl; - - interface IDynamicRenderer - { - CONST_VTBL struct IDynamicRendererVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IDynamicRenderer_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IDynamicRenderer_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IDynamicRenderer_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IDynamicRenderer_get_Enabled(This,bEnabled) \ - ( (This)->lpVtbl -> get_Enabled(This,bEnabled) ) - -#define IDynamicRenderer_put_Enabled(This,bEnabled) \ - ( (This)->lpVtbl -> put_Enabled(This,bEnabled) ) - -#define IDynamicRenderer_get_HWND(This,hwnd) \ - ( (This)->lpVtbl -> get_HWND(This,hwnd) ) - -#define IDynamicRenderer_put_HWND(This,hwnd) \ - ( (This)->lpVtbl -> put_HWND(This,hwnd) ) - -#define IDynamicRenderer_get_ClipRectangle(This,prcClipRect) \ - ( (This)->lpVtbl -> get_ClipRectangle(This,prcClipRect) ) - -#define IDynamicRenderer_put_ClipRectangle(This,prcClipRect) \ - ( (This)->lpVtbl -> put_ClipRectangle(This,prcClipRect) ) - -#define IDynamicRenderer_get_ClipRegion(This,phClipRgn) \ - ( (This)->lpVtbl -> get_ClipRegion(This,phClipRgn) ) - -#define IDynamicRenderer_put_ClipRegion(This,hClipRgn) \ - ( (This)->lpVtbl -> put_ClipRegion(This,hClipRgn) ) - -#define IDynamicRenderer_get_DrawingAttributes(This,ppiDA) \ - ( (This)->lpVtbl -> get_DrawingAttributes(This,ppiDA) ) - -#define IDynamicRenderer_putref_DrawingAttributes(This,piDA) \ - ( (This)->lpVtbl -> putref_DrawingAttributes(This,piDA) ) - -#define IDynamicRenderer_get_DataCacheEnabled(This,pfCacheData) \ - ( (This)->lpVtbl -> get_DataCacheEnabled(This,pfCacheData) ) - -#define IDynamicRenderer_put_DataCacheEnabled(This,fCacheData) \ - ( (This)->lpVtbl -> put_DataCacheEnabled(This,fCacheData) ) - -#define IDynamicRenderer_ReleaseCachedData(This,strokeId) \ - ( (This)->lpVtbl -> ReleaseCachedData(This,strokeId) ) - -#define IDynamicRenderer_Refresh(This) \ - ( (This)->lpVtbl -> Refresh(This) ) - -#define IDynamicRenderer_Draw(This,hDC) \ - ( (This)->lpVtbl -> Draw(This,hDC) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IDynamicRenderer_INTERFACE_DEFINED__ */ - - -#ifndef __IGestureRecognizer_INTERFACE_DEFINED__ -#define __IGestureRecognizer_INTERFACE_DEFINED__ - -/* interface IGestureRecognizer */ -/* [unique][helpstring][uuid][object] */ - - -EXTERN_C const IID IID_IGestureRecognizer; - -#if defined(__cplusplus) && !defined(CINTERFACE) - - MIDL_INTERFACE("AE9EF86B-7054-45e3-AE22-3174DC8811B7") - IGestureRecognizer : public IUnknown - { - public: - virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_Enabled( - /* [retval][out] */ __RPC__out BOOL *pfEnabled) = 0; - - virtual /* [propput] */ HRESULT STDMETHODCALLTYPE put_Enabled( - /* [in] */ BOOL fEnabled) = 0; - - virtual /* [propget] */ HRESULT STDMETHODCALLTYPE get_MaxStrokeCount( - /* [retval][out] */ __RPC__out long *pcStrokes) = 0; - - virtual /* [propput] */ HRESULT STDMETHODCALLTYPE put_MaxStrokeCount( - /* [in] */ long cStrokes) = 0; - - virtual HRESULT STDMETHODCALLTYPE EnableGestures( - /* [range][in] */ ULONG cGestures, - /* [size_is][in] */ __RPC__in_ecount_full(cGestures) const int *pGestures) = 0; - - virtual HRESULT STDMETHODCALLTYPE Reset( void) = 0; - - }; - -#else /* C style interface */ - - typedef struct IGestureRecognizerVtbl - { - BEGIN_INTERFACE - - HRESULT ( STDMETHODCALLTYPE *QueryInterface )( - IGestureRecognizer * This, - /* [in] */ __RPC__in REFIID riid, - /* [iid_is][out] */ - __RPC__deref_out void **ppvObject); - - ULONG ( STDMETHODCALLTYPE *AddRef )( - IGestureRecognizer * This); - - ULONG ( STDMETHODCALLTYPE *Release )( - IGestureRecognizer * This); - - /* [propget] */ HRESULT ( STDMETHODCALLTYPE *get_Enabled )( - IGestureRecognizer * This, - /* [retval][out] */ __RPC__out BOOL *pfEnabled); - - /* [propput] */ HRESULT ( STDMETHODCALLTYPE *put_Enabled )( - IGestureRecognizer * This, - /* [in] */ BOOL fEnabled); - - /* [propget] */ HRESULT ( STDMETHODCALLTYPE *get_MaxStrokeCount )( - IGestureRecognizer * This, - /* [retval][out] */ __RPC__out long *pcStrokes); - - /* [propput] */ HRESULT ( STDMETHODCALLTYPE *put_MaxStrokeCount )( - IGestureRecognizer * This, - /* [in] */ long cStrokes); - - HRESULT ( STDMETHODCALLTYPE *EnableGestures )( - IGestureRecognizer * This, - /* [range][in] */ ULONG cGestures, - /* [size_is][in] */ __RPC__in_ecount_full(cGestures) const int *pGestures); - - HRESULT ( STDMETHODCALLTYPE *Reset )( - IGestureRecognizer * This); - - END_INTERFACE - } IGestureRecognizerVtbl; - - interface IGestureRecognizer - { - CONST_VTBL struct IGestureRecognizerVtbl *lpVtbl; - }; - - - -#ifdef COBJMACROS - - -#define IGestureRecognizer_QueryInterface(This,riid,ppvObject) \ - ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) - -#define IGestureRecognizer_AddRef(This) \ - ( (This)->lpVtbl -> AddRef(This) ) - -#define IGestureRecognizer_Release(This) \ - ( (This)->lpVtbl -> Release(This) ) - - -#define IGestureRecognizer_get_Enabled(This,pfEnabled) \ - ( (This)->lpVtbl -> get_Enabled(This,pfEnabled) ) - -#define IGestureRecognizer_put_Enabled(This,fEnabled) \ - ( (This)->lpVtbl -> put_Enabled(This,fEnabled) ) - -#define IGestureRecognizer_get_MaxStrokeCount(This,pcStrokes) \ - ( (This)->lpVtbl -> get_MaxStrokeCount(This,pcStrokes) ) - -#define IGestureRecognizer_put_MaxStrokeCount(This,cStrokes) \ - ( (This)->lpVtbl -> put_MaxStrokeCount(This,cStrokes) ) - -#define IGestureRecognizer_EnableGestures(This,cGestures,pGestures) \ - ( (This)->lpVtbl -> EnableGestures(This,cGestures,pGestures) ) - -#define IGestureRecognizer_Reset(This) \ - ( (This)->lpVtbl -> Reset(This) ) - -#endif /* COBJMACROS */ - - -#endif /* C style interface */ - - - - -#endif /* __IGestureRecognizer_INTERFACE_DEFINED__ */ - - -EXTERN_C const CLSID CLSID_RealTimeStylus; - -#ifdef __cplusplus - -class DECLSPEC_UUID("E26B366D-F998-43ce-836F-CB6D904432B0") -RealTimeStylus; -#endif - -EXTERN_C const CLSID CLSID_DynamicRenderer; - -#ifdef __cplusplus - -class DECLSPEC_UUID("ECD32AEA-746F-4dcb-BF68-082757FAFF18") -DynamicRenderer; -#endif - -EXTERN_C const CLSID CLSID_GestureRecognizer; - -#ifdef __cplusplus - -class DECLSPEC_UUID("EA30C654-C62C-441f-AC00-95F9A196782C") -GestureRecognizer; -#endif - -EXTERN_C const CLSID CLSID_StrokeBuilder; - -#ifdef __cplusplus - -class DECLSPEC_UUID("E810CEE7-6E51-4cb0-AA3A-0B985B70DAF7") -StrokeBuilder; -#endif -#endif /* __TPCRTSLib_LIBRARY_DEFINED__ */ - -/* Additional Prototypes for ALL interfaces */ - -/* end of Additional Prototypes */ - -#ifdef __cplusplus -} -#endif - -#endif - - - diff --git a/thirdparty/microsoft/rts/lib/rts.lib b/thirdparty/microsoft/rts/lib/rts.lib deleted file mode 100644 index 76c4cb9e..00000000 Binary files a/thirdparty/microsoft/rts/lib/rts.lib and /dev/null differ diff --git a/thirdparty/microsoft/rts/rts.pro b/thirdparty/microsoft/rts/rts.pro deleted file mode 100644 index 760ada6a..00000000 --- a/thirdparty/microsoft/rts/rts.pro +++ /dev/null @@ -1,13 +0,0 @@ -TEMPLATE = lib -CONFIG += static release warn_off - -DESTDIR = "lib" - -win32 { - - SOURCES += src/RTSCOM_i.c - - HEADERS += include/RTSCOM.h -} - - diff --git a/thirdparty/microsoft/rts/src/RTSCOM_i.c b/thirdparty/microsoft/rts/src/RTSCOM_i.c deleted file mode 100644 index eb7e3b6e..00000000 --- a/thirdparty/microsoft/rts/src/RTSCOM_i.c +++ /dev/null @@ -1,128 +0,0 @@ -//-------------------------------------------------------------------------- -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// -// File: rtscom_i.c -// Microsoft Tablet PC API definitions -// -//-------------------------------------------------------------------------- - - - - - -/* this ALWAYS GENERATED file contains the IIDs and CLSIDs */ - -/* link this file in with the server and any clients */ - - - /* File created by MIDL compiler version 7.00.0499 */ -/* Compiler settings for rtscom.idl: - Oicf, W1, Zp8, env=Win32 (32b run) - protocol : dce , ms_ext, c_ext, robust - error checks: allocation ref bounds_check enum stub_data - VC __declspec() decoration level: - __declspec(uuid()), __declspec(selectany), __declspec(novtable) - DECLSPEC_UUID(), MIDL_INTERFACE() -*/ -//@@MIDL_FILE_HEADING( ) - -#pragma warning( disable: 4049 ) /* more than 64k source lines */ - - -#ifdef __cplusplus -extern "C"{ -#endif - - -#include -#include - -#ifdef _MIDL_USE_GUIDDEF_ - -#ifndef INITGUID -#define INITGUID -#include -#undef INITGUID -#else -#include -#endif - -#define MIDL_DEFINE_GUID(type,name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) \ - DEFINE_GUID(name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) - -#else // !_MIDL_USE_GUIDDEF_ - -#ifndef __IID_DEFINED__ -#define __IID_DEFINED__ - -typedef struct _IID -{ - unsigned long x; - unsigned short s1; - unsigned short s2; - unsigned char c[8]; -} IID; - -#endif // __IID_DEFINED__ - -#ifndef CLSID_DEFINED -#define CLSID_DEFINED -typedef IID CLSID; -#endif // CLSID_DEFINED - -#define MIDL_DEFINE_GUID(type,name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) \ - const type name = {l,w1,w2,{b1,b2,b3,b4,b5,b6,b7,b8}} - -#endif !_MIDL_USE_GUIDDEF_ - -MIDL_DEFINE_GUID(IID, LIBID_TPCRTSLib,0xA76A6D34,0xA06D,0x43e1,0x8C,0x05,0x0C,0x56,0xD3,0x6F,0x46,0x2E); - - -MIDL_DEFINE_GUID(IID, IID_IRealTimeStylus,0xA8BB5D22,0x3144,0x4a7b,0x93,0xCD,0xF3,0x4A,0x16,0xBE,0x51,0x3A); - - -MIDL_DEFINE_GUID(IID, IID_IRealTimeStylus2,0xB5F2A6CD,0x3179,0x4a3e,0xB9,0xC4,0xBB,0x58,0x65,0x96,0x2B,0xE2); - - -MIDL_DEFINE_GUID(IID, IID_IRealTimeStylusSynchronization,0xAA87EAB8,0xAB4A,0x4cea,0xB5,0xCB,0x46,0xD8,0x4C,0x6A,0x25,0x09); - - -MIDL_DEFINE_GUID(IID, IID_IStrokeBuilder,0xA5FD4E2D,0xC44B,0x4092,0x91,0x77,0x26,0x09,0x05,0xEB,0x67,0x2B); - - -MIDL_DEFINE_GUID(IID, IID_IStylusPlugin,0xA81436D8,0x4757,0x4fd1,0xA1,0x85,0x13,0x3F,0x97,0xC6,0xC5,0x45); - - -MIDL_DEFINE_GUID(IID, IID_IStylusSyncPlugin,0xA157B174,0x482F,0x4d71,0xA3,0xF6,0x3A,0x41,0xDD,0xD1,0x1B,0xE9); - - -MIDL_DEFINE_GUID(IID, IID_IStylusAsyncPlugin,0xA7CCA85A,0x31BC,0x4cd2,0xAA,0xDC,0x32,0x89,0xA3,0xAF,0x11,0xC8); - - -MIDL_DEFINE_GUID(IID, IID_IDynamicRenderer,0xA079468E,0x7165,0x46f9,0xB7,0xAF,0x98,0xAD,0x01,0xA9,0x30,0x09); - - -MIDL_DEFINE_GUID(IID, IID_IGestureRecognizer,0xAE9EF86B,0x7054,0x45e3,0xAE,0x22,0x31,0x74,0xDC,0x88,0x11,0xB7); - - -MIDL_DEFINE_GUID(CLSID, CLSID_RealTimeStylus,0xE26B366D,0xF998,0x43ce,0x83,0x6F,0xCB,0x6D,0x90,0x44,0x32,0xB0); - - -MIDL_DEFINE_GUID(CLSID, CLSID_DynamicRenderer,0xECD32AEA,0x746F,0x4dcb,0xBF,0x68,0x08,0x27,0x57,0xFA,0xFF,0x18); - - -MIDL_DEFINE_GUID(CLSID, CLSID_GestureRecognizer,0xEA30C654,0xC62C,0x441f,0xAC,0x00,0x95,0xF9,0xA1,0x96,0x78,0x2C); - - -MIDL_DEFINE_GUID(CLSID, CLSID_StrokeBuilder,0xE810CEE7,0x6E51,0x4cb0,0xAA,0x3A,0x0B,0x98,0x5B,0x70,0xDA,0xF7); - -#undef MIDL_DEFINE_GUID - -#ifdef __cplusplus -} -#endif - - - -