-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjanefile.cpp
202 lines (155 loc) · 4.23 KB
/
janefile.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
/*
Jane
begin : 28 Jan 2024
copyright : (C) Kartik Patel
email : letapk@gmail.com
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
*/
//Last modified 28 Jan 2024
#include "jane.h"
void MainWindow::read_lists()
{
QTreeWidgetItem *it;
QFile file(Listfilename);
QString *s;
char *c;
uint i, len, toplevelcount;
bool ok;
ok = file.open(QFile::ReadOnly);
if (ok == false)
return;
QDataStream in(&file);
//number of lists
in >> toplevelcount;
//loop over list
for (i = 0; i < toplevelcount; i++) {
it = new QTreeWidgetItem (listree);
listree->addTopLevelItem(it);
in >> len;
c = new char[len];
in.readBytes(c, len);
s = new QString (c);
it->setText(0, *s);
delete s;
in >> len;
c = new char[len];
in.readBytes(c, len);
s = new QString (c);
it->setText(1, *s);
delete s;
}
file.close();
listreeempty = false;
}
void MainWindow::write_lists()
{
QFile file(Listfilename);
QTreeWidgetItem *it;
QByteArray b;
int i, len, toplevelcount;
bool ok;
//number of categories
toplevelcount = listree->topLevelItemCount();
if (toplevelcount == 0) {//nothing to save
file.remove();
return;
}
ok = file.open(QFile::WriteOnly);
if (ok == false)
return;
QDataStream out(&file);
out << toplevelcount;
//loop over lists
for (i = 0; i < toplevelcount; i++){
it = listree->topLevelItem(i);
b = it->text(0).toLocal8Bit();
len = b.size() + 1;
out << len;
out.writeBytes(b.data(), len);
b = it->text(1).toLocal8Bit();
len = b.size() + 1;
out << len;
out.writeBytes(b.data(), len);
}
file.close();
}
void MainWindow::save_lists_as_text()
{
QString txtfile, s;
QTreeWidgetItem *it;
QTextDocument *doc;
int i, toplevelcount;
bool ok;
//txtfile.append (Homepath);
txtfile.append ("Notes.txt");
QFile file(txtfile);
ok = file.open(QFile::WriteOnly);
if (ok == false)
return;
QTextStream out(&file);
//number of categories
toplevelcount = listree->topLevelItemCount();
out << "Number of notes:" << toplevelcount << "\n";
//loop over lists
for (i = 0; i < toplevelcount; i++){
it = listree->topLevelItem(i);
doc = new QTextDocument ();
doc->setHtml(it->text(1));
s = doc->toPlainText();
delete doc;
out << "\nTitle of note:";
out << s;
out << "\n---\n";
}
file.close();
s = QString (tr("Exported \"%1\"")).arg(txtfile);
statustext->setText(s);
}
void MainWindow::backup_notes()
{
QString BackupFilename;
QTreeWidgetItem *it;
QByteArray b;
int i, len, toplevelcount;
bool ok;
//create backup filename
BackupFilename = Listfilename;
//BackupFilename.append (getenv ("HOME"));
BackupFilename.append(".backup");
QFile file(BackupFilename);
//remove old backup
if (file.exists() == true) {
file.remove();
}
//save notes in new backup file
//number of categories
toplevelcount = listree->topLevelItemCount();
if (toplevelcount == 0) {//nothing to save
file.remove();
return;
}
ok = file.open(QFile::WriteOnly);
if (ok == false)
return;
QDataStream out(&file);
out << toplevelcount;
//loop over lists
for (i = 0; i < toplevelcount; i++){
it = listree->topLevelItem(i);
b = it->text(0).toLocal8Bit();
len = b.size() + 1;
out << len;
out.writeBytes(b.data(), len);
b = it->text(1).toLocal8Bit();
len = b.size() + 1;
out << len;
out.writeBytes(b.data(), len);
}
file.close();
statustext->setText(tr("Backed up \"Notes.jane.backup\" "));
}