mirror of
https://github.com/Dejvino/lilybook.git
synced 2024-11-15 04:42:35 +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();
|
|
};
|