-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsaveload.cpp
131 lines (101 loc) · 3.98 KB
/
saveload.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#include "saveload.h"
#include <QColor>
#include <QMessageBox>
#include <QFile>
#include <QDebug>
saveLoad::saveLoad(QObject *parent) :
QObject(parent)
{
_my = new QColor();
_other= new QColor();
_font =new QFont();
}
saveLoad::~saveLoad()
{
delete _my;
delete _other;
delete _font;
}
void saveLoad::save(QColor *my, QColor *other, QFont *font)
{
QFile file("settings.dat");
if (!file.open(QFile::ReadWrite)) { //открываем файл для записи
// QMessageBox::warning(this, tr("Application"),
// tr("Cannot read file %1:\n%2.")) // если не получилось то выводим окно
// //.arg("settings.dat")
// // .arg(file.errorString()));
// QMessageBox::information(this, tr("QChat Client"),
// tr("The connection was refused by the peer. "
// "Убедитесь, что сервер запущен "
// "и провельте адресс сервера и порт. "
// "settings are correct."));
qDebug()<<"не открыли";
return;
}
QDataStream out(&file);
out<<*my;
out<<*other;
out << *font;
qDebug()<<out.device()->pos();
file.close();
}
void saveLoad::load(QColor* my, QColor* other , QFont *font)
{
QFile file("settings.dat");
if (!file.open(QFile::ReadOnly )) { //открываем файл для чтения
// QMessageBox::warning(this, tr("Application"),
// tr("Cannot read file %1:\n%2.") // если не получилось то выводим окно
// .arg("qwe")
// .arg(file.errorString()));
qDebug()<<"не открыли";
return;
}
QDataStream out(&file);
out>>*my;
out>>*other;
out>>*font;
file.close();
}
void saveLoad::saveS(QString name, QString server, QString port, QString key)
{
QFile file("settings.dat");
if (!file.open(QFile::ReadWrite )) { //открываем файл для записи
// QMessageBox::warning(this, tr("Application"),
// tr("Cannot read file %1:\n%2.")) // если не получилось то выводим окно
// //.arg("settings.dat")
// // .arg(file.errorString()));
// QMessageBox::information(this, tr("QChat Client"),
// tr("The connection was refused by the peer. "
// "Убедитесь, что сервер запущен "
// "и провельте адресс сервера и порт. "
// "settings are correct."));
qDebug()<<"не открыли";
return;
}
QDataStream out(&file);
out.device()->seek(100);
out<<name;
out<<server;
out<<port;
out <<key;
file.close();
}
void saveLoad::loadS(QString *name, QString *server, QString *port, QString *key)
{
QFile file("settings.dat");
if (!file.open(QFile::ReadOnly )) { //открываем файл для чтения
// QMessageBox::warning(this, tr("Application"),
// tr("Cannot read file %1:\n%2.") // если не получилось то выводим окно
// .arg("qwe")
// .arg(file.errorString()));
qDebug()<<"не открыли";
return;
}
QDataStream out(&file);
out.device()->seek(100);
out>>*name;
out>>*server;
out>>*port;
out>>*key;
file.close();
}