-
Notifications
You must be signed in to change notification settings - Fork 0
/
Style.h
51 lines (47 loc) · 1.68 KB
/
Style.h
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
// ---------------------------------------------------------------------------
#ifndef StyleH
#define StyleH
// ---------------------------------------------------------------------------
#include <System.hpp>
#include <System.UITypes.hpp>
#include <Vcl.Graphics.hpp>
#include <fstream.h>
// ïåðå÷èñëåíèå - âîçìîæíûå ôëàãè ôîðìàòèðîâàíèÿ òåêñòà
enum FontStyle {
fsNONE = 0, fsBOLD = 2, fsITALIC = 4, fsUNDERLINE = 8
};
// êëàññ îïðåäåëÿþùèé ñòèëü ôîðìàòèðîâàíèÿ
// íåîáõîäèìî íàñëåäîâàòü îò TObject òàê êàê ïîòðåáóåòñÿ õðàíèòü óêàçàòåëè íà
// TObject â TComboBox *cbStyle â MainWindow
class Style : public TObject {
public:
Style(); // ñòàíäàðòíûé êîíñòðóêòîð ïî óìîë÷àíèþ
Style(int size, int color, const char *font, int fontstyle,
String stylename = "");
Style(int size, TColor color, const char *font, int fontstyle,
String stylename = ""); // äâà ïåðåãðóæåííûõ êîíñòðóêòîðà
Style(const Style &obj); // êîíñòðóêòîð êîïèðîâàíèÿ
Style& operator = (const Style & right); // ïåðåãðóçêà îïåðàòîðà ïðèñâîåíèÿ
void setsize(int); // setters & getters
int getsize() const ;
void setface(String face);
String getface() const ;
void setcolor(int);
void setcolor(TColor);
void setstylename(String stylename);
String getstylename() const ;
TColor getcolor() const ;
int getfontstyle() const ;
void setfontstyle(int style);
void write(ofstream &fs); // çàïèñü ñòèëÿ â îòêðûòûé ôàéëîâûé ïîòîê
void read(ifstream &fs); // ÷òåíèå ñòèëÿ èç ïîòîêà
private:
int fontsize;
int fontcolor;
String fontface;
FontStyle fontstyle;
String stylename;
void SaveString(String s, ofstream &fs); // Ñîõðàíåíèå Unicode ñòðîêè â ïîòîê
String LoadString(ifstream &fs); // Çàãðóçêà Unicode ñòðîêè èç ïîòîêà
};
#endif