This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
programming:qt [2021/06/11 02:50] nanodano |
programming:qt [2021/06/11 05:52] (current) nanodano |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== Qt ====== | ====== Qt ====== | ||
| - | Get Qt from [[https:// | + | Get Qt from [[https:// |
| For Qt in Python, see [[https:// | For Qt in Python, see [[https:// | ||
| + | |||
| + | ===== Installation ===== | ||
| + | |||
| + | |||
| + | In Debian, install Qt5 libraries, QtCreator IDE and UI Designer with '' | ||
| + | |||
| + | ===== qDebug verbosity levels ===== | ||
| + | |||
| + | Qt has multiple levels of verbosity for logging. If you are able to print '' | ||
| + | |||
| + | <code c++ qdebug_example.cpp> | ||
| + | #include < | ||
| + | |||
| + | // ... | ||
| + | |||
| + | qInfo() << "Is this working?"; | ||
| + | qDebug() << "but not this?"; | ||
| + | </ | ||
| + | |||
| + | You can set the Qt logging levels in '' | ||
| + | |||
| + | <code text qtlogging.ini> | ||
| + | # ~/ | ||
| + | [Rules] | ||
| + | *.debug=true | ||
| + | qt.*.debug=false | ||
| + | </ | ||
| ===== Using WinPcap with Qt ===== | ===== Using WinPcap with Qt ===== | ||