diff options
author | Wael El Oraiby <wael.eloraiby@gmail.com> | 2013-05-20 21:00:17 -0400 |
---|---|---|
committer | Wael El Oraiby <wael.eloraiby@gmail.com> | 2013-05-20 21:00:17 -0400 |
commit | e24584da2090d7df2a1abd902deca0f88879d436 (patch) | |
tree | c1f8360c41bc84285d306de33e34111476cdf3df /mainwindow.h | |
parent | 85b743e651de927f9fe0491aa45bb4acea2ee733 (diff) |
first version - missing lam alef ligature
Diffstat (limited to 'mainwindow.h')
-rw-r--r-- | mainwindow.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/mainwindow.h b/mainwindow.h new file mode 100644 index 0000000..0b29001 --- /dev/null +++ b/mainwindow.h @@ -0,0 +1,31 @@ +#ifndef MAINWINDOW_H +#define MAINWINDOW_H + +#include <QMainWindow> + +#include <ft2build.h> +#include FT_FREETYPE_H +#include FT_GLYPH_H + +namespace Ui { +class MainWindow; +} + +class MainWindow : public QMainWindow +{ + Q_OBJECT + +public: + explicit MainWindow(QWidget *parent = 0); + ~MainWindow(); + +protected: + virtual void paintEvent(QPaintEvent* event); + +private: + Ui::MainWindow* ui__; + uchar* data__; + static FT_Library ftlib__; +}; + +#endif // MAINWINDOW_H |