Documentation to QtJambi have only C++ examples.For example, how I can use Qt::CustomizeWindowHint as flag for setWindowFlags()? (I'm beginner in Qt, and I want use it with Java :o)
Printable View
Documentation to QtJambi have only C++ examples.For example, how I can use Qt::CustomizeWindowHint as flag for setWindowFlags()? (I'm beginner in Qt, and I want use it with Java :o)
You'll want something like:
Code:
myWidget.setWindowFlags(Qt.WindowType.CustomizeWindowHint);