-
Suggestion
-
Resolution: Duplicate
-
Not Evaluated
-
None
-
4.5.3
-
None
t4id: 262147
Task tracker task 154172 improved the support for more native glyps on Mac, but there are still more to implement.
For example the Key_Back and Key_Forward should be implemented as 0x21e0 and 0x21e2 to allow nice display of the keys. These back and forward keys are used for many types of applications, not just multimedia.
#include <QtGui>
class TMainWindow : public QMainWindow
{
public:
TMainWindow(QWidget* parent = 0)
:
QMainWindow(parent, Qt::WindowStaysOnTopHint)
};
#include <QtGui>
int main(int argc, char** argv)
{
QApplication app(argc, argv);
TMainWindow* win = new TMainWindow;
win->show();
return app.exec();
}
- is replaced by
-
QTBUG-4873 Add support for additional Glyphs on Mac to match Key_Back and Key_Forward
-
- Closed
-