2022-06-07 11:55:27 +00:00
|
|
|
// Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QAxFactory>
|
|
|
|
#include <QTabWidget>
|
2017-08-21 11:23:48 +00:00
|
|
|
#include <QScopedPointer>
|
2011-04-27 10:05:43 +00:00
|
|
|
#include <QTimer>
|
2020-06-23 14:49:32 +00:00
|
|
|
#include <QList>
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
class Application;
|
|
|
|
class DocumentList;
|
|
|
|
|
|
|
|
//! [0]
|
|
|
|
class Document : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
Q_CLASSINFO("ClassID", "{2b5775cd-72c2-43da-bc3b-b0e8d1e1c4f7}")
|
|
|
|
Q_CLASSINFO("InterfaceID", "{2ce1761e-07a3-415c-bd11-0eab2c7283de}")
|
|
|
|
|
|
|
|
Q_PROPERTY(Application *application READ application)
|
|
|
|
Q_PROPERTY(QString title READ title WRITE setTitle)
|
|
|
|
|
|
|
|
public:
|
2017-08-21 11:23:48 +00:00
|
|
|
explicit Document(DocumentList *list);
|
|
|
|
virtual ~Document();
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
Application *application() const;
|
|
|
|
|
|
|
|
QString title() const;
|
|
|
|
void setTitle(const QString &title);
|
|
|
|
|
|
|
|
private:
|
2017-08-21 11:23:48 +00:00
|
|
|
QScopedPointer <QWidget> m_page;
|
2011-04-27 10:05:43 +00:00
|
|
|
};
|
|
|
|
//! [0]
|
|
|
|
|
|
|
|
//! [1]
|
|
|
|
class DocumentList : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
Q_CLASSINFO("ClassID", "{496b761d-924b-4554-a18a-8f3704d2a9a6}")
|
|
|
|
Q_CLASSINFO("InterfaceID", "{6c9e30e8-3ff6-4e6a-9edc-d219d074a148}")
|
|
|
|
|
|
|
|
Q_PROPERTY(Application* application READ application)
|
|
|
|
Q_PROPERTY(int count READ count)
|
|
|
|
|
|
|
|
public:
|
2017-08-21 11:23:48 +00:00
|
|
|
explicit DocumentList(Application *application);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
int count() const;
|
|
|
|
Application *application() const;
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
Document *addDocument();
|
|
|
|
Document *item(int index) const;
|
|
|
|
|
|
|
|
private:
|
2020-06-23 14:49:32 +00:00
|
|
|
QList<Document *> m_list;
|
2011-04-27 10:05:43 +00:00
|
|
|
};
|
|
|
|
//! [1]
|
|
|
|
|
|
|
|
//! [2]
|
|
|
|
class Application : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
Q_CLASSINFO("ClassID", "{b50a71db-c4a7-4551-8d14-49983566afee}")
|
|
|
|
Q_CLASSINFO("InterfaceID", "{4a427759-16ef-4ed8-be79-59ffe5789042}")
|
|
|
|
Q_CLASSINFO("RegisterObject", "yes")
|
|
|
|
|
|
|
|
Q_PROPERTY(DocumentList* documents READ documents)
|
|
|
|
Q_PROPERTY(QString id READ id)
|
|
|
|
Q_PROPERTY(bool visible READ isVisible WRITE setVisible)
|
|
|
|
|
|
|
|
public:
|
2017-08-21 11:23:48 +00:00
|
|
|
explicit Application(QObject *parent = nullptr);
|
2011-04-27 10:05:43 +00:00
|
|
|
DocumentList *documents() const;
|
|
|
|
|
|
|
|
QString id() const { return objectName(); }
|
|
|
|
|
|
|
|
void setVisible(bool on);
|
|
|
|
bool isVisible() const;
|
|
|
|
|
2017-08-21 11:23:48 +00:00
|
|
|
QTabWidget *window() const { return m_ui.data(); }
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void quit();
|
|
|
|
|
|
|
|
private:
|
2017-08-21 11:23:48 +00:00
|
|
|
QScopedPointer <DocumentList> m_docs;
|
|
|
|
QScopedPointer <QTabWidget> m_ui;
|
2011-04-27 10:05:43 +00:00
|
|
|
};
|
|
|
|
//! [2]
|
|
|
|
|
|
|
|
//! [3]
|
|
|
|
Document::Document(DocumentList *list)
|
|
|
|
: QObject(list)
|
|
|
|
{
|
|
|
|
QTabWidget *tabs = list->application()->window();
|
2017-08-21 11:23:48 +00:00
|
|
|
m_page.reset(new QWidget(tabs));
|
|
|
|
m_page->setWindowTitle(tr("Unnamed"));
|
|
|
|
tabs->addTab(m_page.data(), m_page->windowTitle());
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2017-08-21 11:23:48 +00:00
|
|
|
m_page->show();
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
2019-06-04 13:24:37 +00:00
|
|
|
Document::~Document() = default;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
Application *Document::application() const
|
|
|
|
{
|
2017-08-21 11:23:48 +00:00
|
|
|
return qobject_cast<DocumentList *>(parent())->application();
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QString Document::title() const
|
|
|
|
{
|
2017-08-21 11:23:48 +00:00
|
|
|
return m_page->windowTitle();
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Document::setTitle(const QString &t)
|
|
|
|
{
|
2017-08-21 11:23:48 +00:00
|
|
|
m_page->setWindowTitle(t);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
QTabWidget *tabs = application()->window();
|
2017-08-21 11:23:48 +00:00
|
|
|
int index = tabs->indexOf(m_page.data());
|
|
|
|
tabs->setTabText(index, m_page->windowTitle());
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//! [3] //! [4]
|
|
|
|
DocumentList::DocumentList(Application *application)
|
|
|
|
: QObject(application)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Application *DocumentList::application() const
|
|
|
|
{
|
2017-08-21 11:23:48 +00:00
|
|
|
return qobject_cast<Application *>(parent());
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int DocumentList::count() const
|
|
|
|
{
|
2022-03-16 09:12:22 +00:00
|
|
|
return m_list.size();
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Document *DocumentList::item(int index) const
|
|
|
|
{
|
2017-08-21 11:23:48 +00:00
|
|
|
return m_list.value(index, nullptr);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Document *DocumentList::addDocument()
|
|
|
|
{
|
|
|
|
Document *document = new Document(this);
|
2017-08-21 11:23:48 +00:00
|
|
|
m_list.append(document);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
return document;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! [4] //! [5]
|
|
|
|
Application::Application(QObject *parent)
|
2017-08-21 11:23:48 +00:00
|
|
|
: QObject(parent),
|
|
|
|
m_ui(new QTabWidget),
|
|
|
|
m_docs(new DocumentList(this))
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2017-08-21 11:23:48 +00:00
|
|
|
setObjectName(QStringLiteral("From QAxFactory"));
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DocumentList *Application::documents() const
|
|
|
|
{
|
2017-08-21 11:23:48 +00:00
|
|
|
return m_docs.data();
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Application::setVisible(bool on)
|
|
|
|
{
|
2017-08-21 11:23:48 +00:00
|
|
|
m_ui->setVisible(on);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Application::isVisible() const
|
|
|
|
{
|
2017-08-21 11:23:48 +00:00
|
|
|
return m_ui->isVisible();
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Application::quit()
|
|
|
|
{
|
2017-08-21 11:23:48 +00:00
|
|
|
m_docs.reset();
|
|
|
|
m_ui.reset();
|
|
|
|
QTimer::singleShot(0 /*ms*/, qApp, &QCoreApplication::quit);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#include "main.moc"
|
|
|
|
//! [5] //! [6]
|
|
|
|
|
|
|
|
|
|
|
|
QAXFACTORY_BEGIN("{edd3e836-f537-4c6f-be7d-6014c155cc7a}", "{b7da3de8-83bb-4bbe-9ab7-99a05819e201}")
|
|
|
|
QAXCLASS(Application)
|
|
|
|
QAXTYPE(Document)
|
|
|
|
QAXTYPE(DocumentList)
|
|
|
|
QAXFACTORY_END()
|
|
|
|
|
|
|
|
//! [6] //! [7]
|
2017-08-21 11:23:48 +00:00
|
|
|
int main(int argc, char *argv[])
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
|
|
|
QApplication app(argc, argv);
|
|
|
|
app.setQuitOnLastWindowClosed(false);
|
|
|
|
|
|
|
|
// started by COM - don't do anything
|
|
|
|
if (QAxFactory::isServer())
|
|
|
|
return app.exec();
|
|
|
|
|
|
|
|
// started by user
|
2017-08-21 11:23:48 +00:00
|
|
|
Application appobject;
|
|
|
|
appobject.setObjectName(QStringLiteral("From Application"));
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
QAxFactory::startServer();
|
|
|
|
QAxFactory::registerActiveObject(&appobject);
|
|
|
|
|
2017-08-21 11:23:48 +00:00
|
|
|
appobject.window()->setMinimumSize(300, 100);
|
2011-04-27 10:05:43 +00:00
|
|
|
appobject.setVisible(true);
|
|
|
|
|
2014-12-17 13:02:29 +00:00
|
|
|
QObject::connect(&app, &QGuiApplication::lastWindowClosed, &appobject, &Application::quit);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
}
|
|
|
|
//! [7]
|