@@ -65,7 +65,9 @@ SOURCES += \
|
|||||||
src/datamodel.cpp \
|
src/datamodel.cpp \
|
||||||
src/controller.cpp \
|
src/controller.cpp \
|
||||||
src/liteinterface.cpp \
|
src/liteinterface.cpp \
|
||||||
src/camount.cpp
|
src/camount.cpp \
|
||||||
|
src/chatbubbleme.cpp \
|
||||||
|
src/chatbubblepartner.cpp
|
||||||
|
|
||||||
HEADERS += \
|
HEADERS += \
|
||||||
src/firsttimewizard.h \
|
src/firsttimewizard.h \
|
||||||
@@ -94,7 +96,9 @@ HEADERS += \
|
|||||||
src/controller.h \
|
src/controller.h \
|
||||||
src/liteinterface.h \
|
src/liteinterface.h \
|
||||||
src/camount.h \
|
src/camount.h \
|
||||||
lib/silentdragonlitelib.h
|
lib/silentdragonlitelib.h \
|
||||||
|
src/chatbubbleme.h \
|
||||||
|
src/chatbubblepartner.h
|
||||||
|
|
||||||
FORMS += \
|
FORMS += \
|
||||||
src/encryption.ui \
|
src/encryption.ui \
|
||||||
@@ -117,7 +121,9 @@ FORMS += \
|
|||||||
src/recurringdialog.ui \
|
src/recurringdialog.ui \
|
||||||
src/newrecurring.ui \
|
src/newrecurring.ui \
|
||||||
src/requestdialog.ui \
|
src/requestdialog.ui \
|
||||||
src/recurringmultiple.ui
|
src/recurringmultiple.ui \
|
||||||
|
src/chatbubbleme.ui \
|
||||||
|
src/chatbubblepartner.ui
|
||||||
|
|
||||||
|
|
||||||
TRANSLATIONS = res/silentdragonlite_es.ts \
|
TRANSLATIONS = res/silentdragonlite_es.ts \
|
||||||
|
|||||||
14
src/chatbubbleme.cpp
Normal file
14
src/chatbubbleme.cpp
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
#include "chatbubbleme.h"
|
||||||
|
#include "ui_chatbubbleme.h"
|
||||||
|
|
||||||
|
ChatBubbleMe::ChatBubbleMe(QWidget *parent) :
|
||||||
|
QWidget(parent),
|
||||||
|
ui(new Ui::ChatBubbleMe)
|
||||||
|
{
|
||||||
|
ui->setupUi(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
ChatBubbleMe::~ChatBubbleMe()
|
||||||
|
{
|
||||||
|
delete ui;
|
||||||
|
}
|
||||||
22
src/chatbubbleme.h
Normal file
22
src/chatbubbleme.h
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
#ifndef CHATBUBBLEME_H
|
||||||
|
#define CHATBUBBLEME_H
|
||||||
|
|
||||||
|
#include <QWidget>
|
||||||
|
|
||||||
|
namespace Ui {
|
||||||
|
class ChatBubbleMe;
|
||||||
|
}
|
||||||
|
|
||||||
|
class ChatBubbleMe : public QWidget
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
explicit ChatBubbleMe(QWidget *parent = nullptr);
|
||||||
|
~ChatBubbleMe();
|
||||||
|
|
||||||
|
private:
|
||||||
|
Ui::ChatBubbleMe *ui;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // CHATBUBBLEME_H
|
||||||
57
src/chatbubbleme.ui
Normal file
57
src/chatbubbleme.ui
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>ChatBubbleMe</class>
|
||||||
|
<widget class="QWidget" name="ChatBubbleMe">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>646</width>
|
||||||
|
<height>76</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string>Form</string>
|
||||||
|
</property>
|
||||||
|
<property name="styleSheet">
|
||||||
|
<string notr="true">QWidget{
|
||||||
|
background: whitesmoke;
|
||||||
|
border: 1px solid #afafaf;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
QLabel
|
||||||
|
{
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
}</string>
|
||||||
|
</property>
|
||||||
|
<widget class="QLabel" name="lblMessage">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>10</x>
|
||||||
|
<y>30</y>
|
||||||
|
<width>611</width>
|
||||||
|
<height>41</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Lorem ipsum dolor sit amet</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<widget class="QLabel" name="lblTimestamp">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>10</x>
|
||||||
|
<y>10</y>
|
||||||
|
<width>611</width>
|
||||||
|
<height>17</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>12/03/2020 12:34</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</widget>
|
||||||
|
<resources/>
|
||||||
|
<connections/>
|
||||||
|
</ui>
|
||||||
14
src/chatbubblepartner.cpp
Normal file
14
src/chatbubblepartner.cpp
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
#include "chatbubblepartner.h"
|
||||||
|
#include "ui_chatbubblepartner.h"
|
||||||
|
|
||||||
|
ChatBubblePartner::ChatBubblePartner(QWidget *parent) :
|
||||||
|
QWidget(parent),
|
||||||
|
ui(new Ui::ChatBubblePartner)
|
||||||
|
{
|
||||||
|
ui->setupUi(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
ChatBubblePartner::~ChatBubblePartner()
|
||||||
|
{
|
||||||
|
delete ui;
|
||||||
|
}
|
||||||
22
src/chatbubblepartner.h
Normal file
22
src/chatbubblepartner.h
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
#ifndef CHATBUBBLEPARTNER_H
|
||||||
|
#define CHATBUBBLEPARTNER_H
|
||||||
|
|
||||||
|
#include <QWidget>
|
||||||
|
|
||||||
|
namespace Ui {
|
||||||
|
class ChatBubblePartner;
|
||||||
|
}
|
||||||
|
|
||||||
|
class ChatBubblePartner : public QWidget
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
explicit ChatBubblePartner(QWidget *parent = nullptr);
|
||||||
|
~ChatBubblePartner();
|
||||||
|
|
||||||
|
private:
|
||||||
|
Ui::ChatBubblePartner *ui;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // CHATBUBBLEPARTNER_H
|
||||||
57
src/chatbubblepartner.ui
Normal file
57
src/chatbubblepartner.ui
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>ChatBubblePartner</class>
|
||||||
|
<widget class="QWidget" name="ChatBubblePartner">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>646</width>
|
||||||
|
<height>76</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string>Form</string>
|
||||||
|
</property>
|
||||||
|
<property name="styleSheet">
|
||||||
|
<string notr="true">QWidget{
|
||||||
|
background: #c8e1ff;
|
||||||
|
border: 1px solid #fefefe;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
QLabel
|
||||||
|
{
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
}</string>
|
||||||
|
</property>
|
||||||
|
<widget class="QLabel" name="lblMessage">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>10</x>
|
||||||
|
<y>30</y>
|
||||||
|
<width>611</width>
|
||||||
|
<height>41</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Lorem ipsum dolor sit amet</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
<widget class="QLabel" name="lblTimestamp">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>10</x>
|
||||||
|
<y>10</y>
|
||||||
|
<width>611</width>
|
||||||
|
<height>17</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>12/03/2020 12:34</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</widget>
|
||||||
|
<resources/>
|
||||||
|
<connections/>
|
||||||
|
</ui>
|
||||||
@@ -1356,10 +1356,13 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>340</x>
|
<x>340</x>
|
||||||
<y>80</y>
|
<y>80</y>
|
||||||
<width>871</width>
|
<width>908</width>
|
||||||
<height>361</height>
|
<height>361</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="resizeMode">
|
||||||
|
<enum>QListView::Adjust</enum>
|
||||||
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
<widget class="QLabel" name="label_40">
|
<widget class="QLabel" name="label_40">
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
@@ -1379,7 +1382,7 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>357</x>
|
<x>357</x>
|
||||||
<y>483</y>
|
<y>483</y>
|
||||||
<width>851</width>
|
<width>891</width>
|
||||||
<height>128</height>
|
<height>128</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
@@ -1416,7 +1419,7 @@
|
|||||||
<widget class="QLabel" name="memoSizeChat">
|
<widget class="QLabel" name="memoSizeChat">
|
||||||
<property name="geometry">
|
<property name="geometry">
|
||||||
<rect>
|
<rect>
|
||||||
<x>1110</x>
|
<x>1150</x>
|
||||||
<y>460</y>
|
<y>460</y>
|
||||||
<width>91</width>
|
<width>91</width>
|
||||||
<height>17</height>
|
<height>17</height>
|
||||||
@@ -1613,6 +1616,11 @@
|
|||||||
</widget>
|
</widget>
|
||||||
<layoutdefault spacing="6" margin="11"/>
|
<layoutdefault spacing="6" margin="11"/>
|
||||||
<customwidgets>
|
<customwidgets>
|
||||||
|
<customwidget>
|
||||||
|
<class>MemoEdit</class>
|
||||||
|
<extends>QPlainTextEdit</extends>
|
||||||
|
<header>memoedit.h</header>
|
||||||
|
</customwidget>
|
||||||
<customwidget>
|
<customwidget>
|
||||||
<class>AddressCombo</class>
|
<class>AddressCombo</class>
|
||||||
<extends>QComboBox</extends>
|
<extends>QComboBox</extends>
|
||||||
@@ -1628,11 +1636,6 @@
|
|||||||
<extends>QLabel</extends>
|
<extends>QLabel</extends>
|
||||||
<header>fillediconlabel.h</header>
|
<header>fillediconlabel.h</header>
|
||||||
</customwidget>
|
</customwidget>
|
||||||
<customwidget>
|
|
||||||
<class>MemoEdit</class>
|
|
||||||
<extends>QPlainTextEdit</extends>
|
|
||||||
<header>memoedit.h</header>
|
|
||||||
</customwidget>
|
|
||||||
</customwidgets>
|
</customwidgets>
|
||||||
<tabstops>
|
<tabstops>
|
||||||
<tabstop>Address1</tabstop>
|
<tabstop>Address1</tabstop>
|
||||||
|
|||||||
Reference in New Issue
Block a user