How fast do it?
I must iterate over all bits?
It will be faster if will possible bits treat at 32 or even 64 bit chunks.
MainWindow::MainWindow() {
createMenus();
tabWidget = new QTabWidget;
edit = new CodeEditor();
//tabWidget->addTab(edit, "1");
setCentralWidget(tabWidget);
}
If I write...
Open the XML .ui file in a text editor and look at how the custom widget insertion is implemented. There will be a section in the place where the widget appears in the UI hierarchy of layouts, and...
d_stranz 6th August 2022, 16:20Qt Centre is a community site devoted to programming in C++ using the Qt framework developed at Digia.
If you have any problems with Qt or its usage, you can get help from the members of Qt community on our forum.
Don't forget to check out our links section for more Qt resources.
Qt is a cross-platform application and UI framework. Using Qt, you can write web-enabled applications once and deploy them across desktop, mobile and embedded operating systems without rewriting the source code.
QBitArray - find first/last set or clean bit
Today 12:47 by Borneq