-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patholdmadina.h
39 lines (37 loc) · 1.06 KB
/
oldmadina.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
#pragma once
#include "automedina.h"
#include "GlyphVis.h"
#include "Subtable.h"
#include "Lookup.h"
class OldMadina : public Automedina {
public:
OldMadina(OtLayout* layout, Font* font, bool extended);
Lookup* getLookup(QString lookupName) override;
CalcAnchor getanchorCalcFunctions(QString functionName, Subtable* subtable) override;
void generateSubstEquivGlyphs() override;
private:
Lookup* defaultmarkposition();
Lookup* defaultwaqfmarktobase();
Lookup* forsmalllalef();
Lookup* forsmallhighwaw();
Lookup* forhamza();
Lookup* forheh();
Lookup* forwaw();
Lookup* cursivejoin();
Lookup* pointmarks();
Lookup* defaultwaqfmarkabovemarkprecise();
Lookup* defaultdotmarks();
Lookup* defaultmarkdotmarks();
Lookup* defaultmkmk();
Lookup* ayanumbers();
Lookup* ayanumberskern();
Lookup* rehwawcursivecpp();
Lookup* tajweedcolorcpp();
Lookup* populatecvxx();
Lookup* glyphalternates();
//Justification
Lookup* shrinkstretchlt(float lt, QString featureName);
Lookup* shrinkstretchlt();
void addchars();
void generateGlyphs();
};