mirror of
https://github.com/ChronosX88/Influence-cjdns.git
synced 2024-11-09 17:31:01 +00:00
A ChatWindow class template was added, which is intended to create chat windows
This commit is contained in:
parent
2050f635ff
commit
8b75f7c5e1
@ -27,12 +27,15 @@ SOURCES += \
|
|||||||
main.cpp \
|
main.cpp \
|
||||||
mainwindow.cpp \
|
mainwindow.cpp \
|
||||||
kernel/network.cpp \
|
kernel/network.cpp \
|
||||||
kernel/handler.cpp
|
kernel/handler.cpp \
|
||||||
|
chatwindow.cpp
|
||||||
|
|
||||||
HEADERS += \
|
HEADERS += \
|
||||||
kernel/network.hpp \
|
kernel/network.hpp \
|
||||||
mainwindow.h \
|
mainwindow.h \
|
||||||
kernel/handler.hpp
|
kernel/handler.hpp \
|
||||||
|
chatwindow.hpp
|
||||||
|
|
||||||
FORMS += \
|
FORMS += \
|
||||||
mainwindow.ui
|
mainwindow.ui \
|
||||||
|
chatwindow.ui
|
||||||
|
14
src/chatwindow.cpp
Normal file
14
src/chatwindow.cpp
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
#include "chatwindow.hpp"
|
||||||
|
#include "ui_chatwindow.h"
|
||||||
|
|
||||||
|
ChatWindow::ChatWindow(QWidget *parent) :
|
||||||
|
QWidget(parent),
|
||||||
|
ui(new Ui::Form)
|
||||||
|
{
|
||||||
|
ui->setupUi(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
ChatWindow::~ChatWindow()
|
||||||
|
{
|
||||||
|
delete ui;
|
||||||
|
}
|
19
src/chatwindow.hpp
Normal file
19
src/chatwindow.hpp
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <QWidget>
|
||||||
|
|
||||||
|
namespace Ui {
|
||||||
|
class Form;
|
||||||
|
}
|
||||||
|
|
||||||
|
class ChatWindow : public QWidget
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
explicit ChatWindow(QWidget *parent = 0);
|
||||||
|
~ChatWindow();
|
||||||
|
|
||||||
|
private:
|
||||||
|
Ui::ChatWindow *ui;
|
||||||
|
};
|
21
src/chatwindow.ui
Normal file
21
src/chatwindow.ui
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<ui version="4.0">
|
||||||
|
<author/>
|
||||||
|
<comment/>
|
||||||
|
<exportmacro/>
|
||||||
|
<class>Form</class>
|
||||||
|
<widget class="QWidget" name="Form">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>400</width>
|
||||||
|
<height>300</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string>Form</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<pixmapfunction/>
|
||||||
|
<connections/>
|
||||||
|
</ui>
|
Loading…
Reference in New Issue
Block a user