-
Notifications
You must be signed in to change notification settings - Fork 0
/
StylesCollection.cpp
64 lines (57 loc) · 1.42 KB
/
StylesCollection.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
// ---------------------------------------------------------------------------
#pragma hdrstop
#include "StylesCollection.h"
// ---------------------------------------------------------------------------
#pragma package(smart_init)
void StylesCollection::FillComboBox(TComboBox *cb) {
stylesvector::const_iterator i;
for (i = styles.begin(); i != styles.end(); i++) {
cb->Items->AddObject((*i)->getstylename(), *i);
}
}
bool StylesCollection::LoadFromFile(String filename) {
ifstream fs(filename.c_str(), ios_base::binary);
if (!fs) {
return false;
}
int count;
fs.read((char*)&count, sizeof(count));
for (int i = 0; i < count; i++) {
Style *style = new Style;
style->read(fs);
this->AddStyle(style);
}
fs.close();
return true;
}
bool StylesCollection::SaveToFile(String filename) {
ofstream fs(filename.c_str(), ios_base::binary);
if (!fs) {
return false;
}
int count = styles.size();
fs.write((char*)&count,sizeof(count));
for (int i = 0; i < count; i++) {
styles[i]->write(fs);
}
fs.close();
return true;
}
void StylesCollection::AddStyle(Style *style) {
Style *buf_style;
buf_style = new Style(*style);
styles.push_back(buf_style);
}
void StylesCollection::DeleteStyle(String stylename) {
stylesvector::iterator i;
Style *st;
for (i = styles.begin(); i != styles.end(); i++) {
st = *i;
if (st->getstylename() == stylename) {
// deleting
styles.erase(i);
delete st;
break;
}
}
}