I tried to compile ekonsole for r532h9_g_11.24.06r firmware.
I run into several errors so I started to modify the header from e6 sdk. I will list here what I did and where I stopped. Maybe someone could use the information or can help in this matter.
Code:
ZIMethod.h
//void showInputWidget(int mwId, int show, bool local = false);
void showInputWidget(int mwId, int show, bool local = false, const QUuid& inputMethod = IMID_UNDEFINED);
Code:
qfont.h
//QFont( const QString &family, int pointSize = 12,
int weight = Normal, bool italic = FALSE, bool b = FALSE );
QFont( const QString &family, int pointSize = 12,
int weight = Normal, bool italic = FALSE );
And at least the qpainter drawtext function is not working, it seems that they implemented the drawtext from qt 3.x in qt 2.3.8.
from libezxappbase:
A1200:QPainter::drawText(int, int, QString const&, int)
A1200 with RTL:QPainter::drawText(int, int, QString const&, int, QPainter::TextDirection)
Until now I failed to implement this drawText with TextDirection into the SDK.
Any help is appreciated.