bcaff2b06f
Duplicating the number of classes is a high price to pay to be able to have some QAction functionality behave differently, or be only available in widgets applications. Instead, declare the entire API in QtGui in QAction* classes, and delegate the implementation of QtWidgets specific functionality to the private. The creation of the private is then delegated to the Q(Gui)ApplicationPrivate instance through a virtual factory function. Change some public APIs that are primarily useful for specialized tools such as Designer to operate on QObject* rather than QWidget*. APIs that depend on QtWidgets types have been turned into inline template functions, so that they are instantiated only at the caller side, where we can expect the respective types to be fully defined. This way, we only need to forward declare a few classes in the header, and don't need to generate any additional code for e.g. language bindings. Change-Id: Id0b27f9187652ec531a2e8b1b9837e82dc81625c Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
184 lines
7.0 KiB
C++
184 lines
7.0 KiB
C++
/********************************************************************************
|
|
** Form generated from reading UI file 'chatmainwindow.ui'
|
|
**
|
|
** Created by: Qt User Interface Compiler version 5.12.0
|
|
**
|
|
** WARNING! All changes made in this file will be lost when recompiling UI file!
|
|
********************************************************************************/
|
|
|
|
#ifndef CHATMAINWINDOW_H
|
|
#define CHATMAINWINDOW_H
|
|
|
|
#include <QtCore/QVariant>
|
|
#include <QtGui/QAction>
|
|
#include <QtWidgets/QApplication>
|
|
#include <QtWidgets/QHBoxLayout>
|
|
#include <QtWidgets/QLabel>
|
|
#include <QtWidgets/QLineEdit>
|
|
#include <QtWidgets/QMainWindow>
|
|
#include <QtWidgets/QMenu>
|
|
#include <QtWidgets/QMenuBar>
|
|
#include <QtWidgets/QPushButton>
|
|
#include <QtWidgets/QStatusBar>
|
|
#include <QtWidgets/QTextBrowser>
|
|
#include <QtWidgets/QVBoxLayout>
|
|
#include <QtWidgets/QWidget>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class Ui_ChatMainWindow
|
|
{
|
|
public:
|
|
QAction *actionQuit;
|
|
QAction *actionAboutQt;
|
|
QAction *actionChangeNickname;
|
|
QWidget *centralwidget;
|
|
QHBoxLayout *hboxLayout;
|
|
QVBoxLayout *vboxLayout;
|
|
QTextBrowser *chatHistory;
|
|
QHBoxLayout *hboxLayout1;
|
|
QLabel *label;
|
|
QLineEdit *messageLineEdit;
|
|
QPushButton *sendButton;
|
|
QMenuBar *menubar;
|
|
QMenu *menuQuit;
|
|
QMenu *menuFile;
|
|
QStatusBar *statusbar;
|
|
|
|
void setupUi(QMainWindow *ChatMainWindow)
|
|
{
|
|
if (ChatMainWindow->objectName().isEmpty())
|
|
ChatMainWindow->setObjectName(QString::fromUtf8("ChatMainWindow"));
|
|
ChatMainWindow->resize(800, 600);
|
|
actionQuit = new QAction(ChatMainWindow);
|
|
actionQuit->setObjectName(QString::fromUtf8("actionQuit"));
|
|
actionAboutQt = new QAction(ChatMainWindow);
|
|
actionAboutQt->setObjectName(QString::fromUtf8("actionAboutQt"));
|
|
actionChangeNickname = new QAction(ChatMainWindow);
|
|
actionChangeNickname->setObjectName(QString::fromUtf8("actionChangeNickname"));
|
|
centralwidget = new QWidget(ChatMainWindow);
|
|
centralwidget->setObjectName(QString::fromUtf8("centralwidget"));
|
|
hboxLayout = new QHBoxLayout(centralwidget);
|
|
#ifndef Q_OS_MAC
|
|
hboxLayout->setSpacing(6);
|
|
#endif
|
|
#ifndef Q_OS_MAC
|
|
hboxLayout->setContentsMargins(9, 9, 9, 9);
|
|
#endif
|
|
hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
|
|
vboxLayout = new QVBoxLayout();
|
|
#ifndef Q_OS_MAC
|
|
vboxLayout->setSpacing(6);
|
|
#endif
|
|
#ifndef Q_OS_MAC
|
|
vboxLayout->setContentsMargins(0, 0, 0, 0);
|
|
#endif
|
|
vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
|
|
chatHistory = new QTextBrowser(centralwidget);
|
|
chatHistory->setObjectName(QString::fromUtf8("chatHistory"));
|
|
chatHistory->setAcceptDrops(false);
|
|
chatHistory->setAcceptRichText(true);
|
|
|
|
vboxLayout->addWidget(chatHistory);
|
|
|
|
hboxLayout1 = new QHBoxLayout();
|
|
#ifndef Q_OS_MAC
|
|
hboxLayout1->setSpacing(6);
|
|
#endif
|
|
hboxLayout1->setContentsMargins(0, 0, 0, 0);
|
|
hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
|
|
label = new QLabel(centralwidget);
|
|
label->setObjectName(QString::fromUtf8("label"));
|
|
|
|
hboxLayout1->addWidget(label);
|
|
|
|
messageLineEdit = new QLineEdit(centralwidget);
|
|
messageLineEdit->setObjectName(QString::fromUtf8("messageLineEdit"));
|
|
|
|
hboxLayout1->addWidget(messageLineEdit);
|
|
|
|
sendButton = new QPushButton(centralwidget);
|
|
sendButton->setObjectName(QString::fromUtf8("sendButton"));
|
|
QSizePolicy sizePolicy(QSizePolicy::Minimum, QSizePolicy::Fixed);
|
|
sizePolicy.setHorizontalStretch(0);
|
|
sizePolicy.setVerticalStretch(0);
|
|
sizePolicy.setHeightForWidth(sendButton->sizePolicy().hasHeightForWidth());
|
|
sendButton->setSizePolicy(sizePolicy);
|
|
|
|
hboxLayout1->addWidget(sendButton);
|
|
|
|
|
|
vboxLayout->addLayout(hboxLayout1);
|
|
|
|
|
|
hboxLayout->addLayout(vboxLayout);
|
|
|
|
ChatMainWindow->setCentralWidget(centralwidget);
|
|
menubar = new QMenuBar(ChatMainWindow);
|
|
menubar->setObjectName(QString::fromUtf8("menubar"));
|
|
menubar->setGeometry(QRect(0, 0, 800, 31));
|
|
menuQuit = new QMenu(menubar);
|
|
menuQuit->setObjectName(QString::fromUtf8("menuQuit"));
|
|
menuFile = new QMenu(menubar);
|
|
menuFile->setObjectName(QString::fromUtf8("menuFile"));
|
|
ChatMainWindow->setMenuBar(menubar);
|
|
statusbar = new QStatusBar(ChatMainWindow);
|
|
statusbar->setObjectName(QString::fromUtf8("statusbar"));
|
|
ChatMainWindow->setStatusBar(statusbar);
|
|
#if QT_CONFIG(shortcut)
|
|
label->setBuddy(messageLineEdit);
|
|
#endif // QT_CONFIG(shortcut)
|
|
QWidget::setTabOrder(chatHistory, messageLineEdit);
|
|
QWidget::setTabOrder(messageLineEdit, sendButton);
|
|
|
|
menubar->addAction(menuFile->menuAction());
|
|
menubar->addAction(menuQuit->menuAction());
|
|
menuQuit->addAction(actionAboutQt);
|
|
menuFile->addAction(actionChangeNickname);
|
|
menuFile->addSeparator();
|
|
menuFile->addAction(actionQuit);
|
|
|
|
retranslateUi(ChatMainWindow);
|
|
QObject::connect(messageLineEdit, SIGNAL(returnPressed()), sendButton, SLOT(animateClick()));
|
|
QObject::connect(actionQuit, SIGNAL(triggered(bool)), ChatMainWindow, SLOT(close()));
|
|
|
|
QMetaObject::connectSlotsByName(ChatMainWindow);
|
|
} // setupUi
|
|
|
|
void retranslateUi(QMainWindow *ChatMainWindow)
|
|
{
|
|
ChatMainWindow->setWindowTitle(QCoreApplication::translate("ChatMainWindow", "Qt D-Bus Chat", nullptr));
|
|
actionQuit->setText(QCoreApplication::translate("ChatMainWindow", "Quit", nullptr));
|
|
#if QT_CONFIG(shortcut)
|
|
actionQuit->setShortcut(QCoreApplication::translate("ChatMainWindow", "Ctrl+Q", nullptr));
|
|
#endif // QT_CONFIG(shortcut)
|
|
actionAboutQt->setText(QCoreApplication::translate("ChatMainWindow", "About Qt...", nullptr));
|
|
actionChangeNickname->setText(QCoreApplication::translate("ChatMainWindow", "Change nickname...", nullptr));
|
|
#if QT_CONFIG(shortcut)
|
|
actionChangeNickname->setShortcut(QCoreApplication::translate("ChatMainWindow", "Ctrl+N", nullptr));
|
|
#endif // QT_CONFIG(shortcut)
|
|
#if QT_CONFIG(tooltip)
|
|
chatHistory->setToolTip(QCoreApplication::translate("ChatMainWindow", "Messages sent and received from other users", nullptr));
|
|
#endif // QT_CONFIG(tooltip)
|
|
label->setText(QCoreApplication::translate("ChatMainWindow", "Message:", nullptr));
|
|
#if QT_CONFIG(tooltip)
|
|
sendButton->setToolTip(QCoreApplication::translate("ChatMainWindow", "Sends a message to other people", nullptr));
|
|
#endif // QT_CONFIG(tooltip)
|
|
#if QT_CONFIG(whatsthis)
|
|
sendButton->setWhatsThis(QString());
|
|
#endif // QT_CONFIG(whatsthis)
|
|
sendButton->setText(QCoreApplication::translate("ChatMainWindow", "Send", nullptr));
|
|
menuQuit->setTitle(QCoreApplication::translate("ChatMainWindow", "Help", nullptr));
|
|
menuFile->setTitle(QCoreApplication::translate("ChatMainWindow", "File", nullptr));
|
|
} // retranslateUi
|
|
|
|
};
|
|
|
|
namespace Ui {
|
|
class ChatMainWindow: public Ui_ChatMainWindow {};
|
|
} // namespace Ui
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif // CHATMAINWINDOW_H
|