Blame view

build-QChatClient-Desktop-Debug/ui_chatwindow.h 5.26 KB
1
2
3
/********************************************************************************
** Form generated from reading UI file 'chatwindow.ui'
**
4
** Created by: Qt User Interface Compiler version 5.0.2
5
6
7
8
9
10
11
12
13
14
15
16
17
18
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/

#ifndef UI_CHATWINDOW_H
#define UI_CHATWINDOW_H

#include <QtCore/QVariant>
#include <QtWidgets/QAction>
#include <QtWidgets/QApplication>
#include <QtWidgets/QButtonGroup>
#include <QtWidgets/QGridLayout>
#include <QtWidgets/QHeaderView>
#include <QtWidgets/QMainWindow>
19
#include <QtWidgets/QMenu>
20
#include <QtWidgets/QMenuBar>
21
22
#include <QtWidgets/QPushButton>
#include <QtWidgets/QSpacerItem>
23
#include <QtWidgets/QSplitter>
24
#include <QtWidgets/QWidget>
25
#include "chatinputtext.h"
26
#include "chatwidget.h"
27
28
29
30
31
32

QT_BEGIN_NAMESPACE

class Ui_ChatWindow
{
public:
33
    QAction *actionExit;
34
35
    QWidget *centralWidget;
    QGridLayout *gridLayout;
36
37
38
39
    QSpacerItem *horizontalSpacer;
    QPushButton *sendButton;
    QWidget *widget;
    QGridLayout *gridLayout_2;
40
    QSplitter *splitter;
41
    ChatWidget *chatText;
42
    chatInputText *inputText;
43
    QMenuBar *menuBar;
44
    QMenu *menuChat;
45
46
47
48
49

    void setupUi(QMainWindow *ChatWindow)
    {
        if (ChatWindow->objectName().isEmpty())
            ChatWindow->setObjectName(QStringLiteral("ChatWindow"));
50
        ChatWindow->resize(400, 502);
51
52
        actionExit = new QAction(ChatWindow);
        actionExit->setObjectName(QStringLiteral("actionExit"));
53
54
55
56
57
58
59
60
61
62
63
64
        centralWidget = new QWidget(ChatWindow);
        centralWidget->setObjectName(QStringLiteral("centralWidget"));
        centralWidget->setEnabled(true);
        QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
        sizePolicy.setHorizontalStretch(0);
        sizePolicy.setVerticalStretch(0);
        sizePolicy.setHeightForWidth(centralWidget->sizePolicy().hasHeightForWidth());
        centralWidget->setSizePolicy(sizePolicy);
        gridLayout = new QGridLayout(centralWidget);
        gridLayout->setSpacing(6);
        gridLayout->setContentsMargins(11, 11, 11, 11);
        gridLayout->setObjectName(QStringLiteral("gridLayout"));
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
        horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);

        gridLayout->addItem(horizontalSpacer, 3, 1, 1, 1);

        sendButton = new QPushButton(centralWidget);
        sendButton->setObjectName(QStringLiteral("sendButton"));
        QSizePolicy sizePolicy1(QSizePolicy::Minimum, QSizePolicy::Fixed);
        sizePolicy1.setHorizontalStretch(0);
        sizePolicy1.setVerticalStretch(0);
        sizePolicy1.setHeightForWidth(sendButton->sizePolicy().hasHeightForWidth());
        sendButton->setSizePolicy(sizePolicy1);

        gridLayout->addWidget(sendButton, 3, 0, 1, 1);

        widget = new QWidget(centralWidget);
        widget->setObjectName(QStringLiteral("widget"));
        gridLayout_2 = new QGridLayout(widget);
        gridLayout_2->setSpacing(6);
        gridLayout_2->setContentsMargins(11, 11, 11, 11);
        gridLayout_2->setObjectName(QStringLiteral("gridLayout_2"));
        splitter = new QSplitter(widget);
86
87
        splitter->setObjectName(QStringLiteral("splitter"));
        splitter->setOrientation(Qt::Vertical);
88
        chatText = new ChatWidget(splitter);
89
        chatText->setObjectName(QStringLiteral("chatText"));
90
        chatText->setReadOnly(true);
91
        splitter->addWidget(chatText);
92
        inputText = new chatInputText(splitter);
93
94
        inputText->setObjectName(QStringLiteral("inputText"));
        inputText->setEnabled(true);
95
96
97
98
99
        QSizePolicy sizePolicy2(QSizePolicy::Expanding, QSizePolicy::Ignored);
        sizePolicy2.setHorizontalStretch(0);
        sizePolicy2.setVerticalStretch(0);
        sizePolicy2.setHeightForWidth(inputText->sizePolicy().hasHeightForWidth());
        inputText->setSizePolicy(sizePolicy2);
100
101
102
        inputText->setMinimumSize(QSize(0, 0));
        inputText->setMaximumSize(QSize(16777215, 16777215));
        inputText->setBaseSize(QSize(0, 0));
103
        inputText->setReadOnly(true);
104
        splitter->addWidget(inputText);
105
106
107
108
109
        gridLayout_2->addWidget(splitter, 0, 0, 1, 1);


        gridLayout->addWidget(widget, 0, 0, 1, 2);
110
111
112
113

        ChatWindow->setCentralWidget(centralWidget);
        menuBar = new QMenuBar(ChatWindow);
        menuBar->setObjectName(QStringLiteral("menuBar"));
114
115
116
        menuBar->setGeometry(QRect(0, 0, 400, 26));
        menuChat = new QMenu(menuBar);
        menuChat->setObjectName(QStringLiteral("menuChat"));
117
118
        ChatWindow->setMenuBar(menuBar);
119
120
121
        menuBar->addAction(menuChat->menuAction());
        menuChat->addAction(actionExit);
122
123
124
125
126
127
128
        retranslateUi(ChatWindow);

        QMetaObject::connectSlotsByName(ChatWindow);
    } // setupUi

    void retranslateUi(QMainWindow *ChatWindow)
    {
129
130
131
132
        ChatWindow->setWindowTitle(QApplication::translate("ChatWindow", "QChatClient", 0));
        actionExit->setText(QApplication::translate("ChatWindow", "Exit", 0));
        sendButton->setText(QApplication::translate("ChatWindow", "Send", 0));
        menuChat->setTitle(QApplication::translate("ChatWindow", "Chat", 0));
133
134
135
136
137
138
139
140
141
142
143
    } // retranslateUi

};

namespace Ui {
    class ChatWindow: public Ui_ChatWindow {};
} // namespace Ui

QT_END_NAMESPACE

#endif // UI_CHATWINDOW_H