mirror of
https://github.com/Dejvino/lilybook.git
synced 2025-09-18 11:40:11 +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();
|
|
};
|