mirror of
https://github.com/Dejvino/lilybook.git
synced 2024-11-14 20:33:28 +00:00
13 lines
223 B
C
13 lines
223 B
C
|
class PageSettingsProvider
|
||
|
{
|
||
|
public:
|
||
|
int getWidth();
|
||
|
int getHeight();
|
||
|
|
||
|
int getCharWidth(char c);
|
||
|
int getStringWidth(char* string);
|
||
|
int getCharSpace();
|
||
|
int getLineHeight();
|
||
|
int getLineSpace();
|
||
|
};
|