Development diaries → DBComponents project. Part 1. Requirements for the project and database
DBComponents, Qt, Iscander Che, C++
Project requirements
The project implements a database of IT components. Three categories are planned so far: monitors, medical printers, system units. The functionality of the database also includes the ability to create new categories.
The project should consist of two …
Qt → Announcing Qt for MCUs
21 august Qt Company announce the launch of Qt for MCUs – a comprehensive toolkit to deliver smartphone-like user experience on displays powered by microcontrollers. What started as a research project is now in the final leg of its journey …
Qt → Qt Design Studio 1.3 Beta released
Qt, Releases, Qt Design Studio, design
Qt Design Studio is a UI design and development tool that enables designers and developers to rapidly prototype and develop complex UIs. Both designers and developers use Qt Design Studio and this makes collaboration between the two a lot simpler …
Qt → Using QTime to display milliseconds in the current minute of the day
Snippet program code. Task Get the number of milliseconds in the current minute of the day. Used operator remainder of division.
- #include <QCoreApplication>
- #include <QTime>
- #include <QDebug>
- int main(int argc, char *argv[])
- {
- QCoreApplication a(argc, argv);
- QTime time = QTime::currentTime(); …
Development diaries → IMpos project. Part 011. Viewing the names of fuel. Export results to xlsx file.
QTableWidget, Qt, xlsx, export
View fuel names.
After processing requests for names, we form a table to display information to the user.
Indication of the process of executing queries to the petrol station databases will be used not only for viewing, but also when …
Development diaries → Simple Tracker project. Part 8: the formation of the distribution and the results
Iscander Che, Simple Tracker, C++, Qt
In conclusion, we will prepare the files obtained during compilation for distribution. It doesn't matter if the project is local. It is more convenient to have an installer handy, just in case. With it, you can, for example, automatically clean …
Qt → Updating CMake project support in Qt Creator
Over the past few weeks, developers have been working on improving CMake support in Qt Creator, Qt Company would like to highlight some of the new features.
Fileapi support
The CMake project has announced a new IDE integration mechanism version …
Development diaries → Simple Tracker project. Part 7: server and client
Simple Tracker, Qt, Iscander Che, C++
Consider now the server and the client.
Questions regarding the general organization of client-server interaction can be found in this article: " An example of using QLocalServer and QLocalSocket ". Here I will touch only on the points directly related …
Development diaries → Simple Tracker project. Part 6: server. Server slots
C++, Qt, Iscander Che, Simple Tracker
We will consider slots that are directly related to the server in conjunction with the client. For now, let's focus on those slots that relate to project and task management and general application slots.
Let's start with connections. I moved …
Development diaries → About iterators
When for the fourth time in one place I wrote something like this:
- QStringList list;
- // наполняем list по условию, т.е. элементов там может и не оказаться
- if(!list.isEmpty())
- {
- foreach(QString str, list)
- {
- // обходим каждый найденный элемент
- }
- } …
- Last comments
- AKApril 1, 2025, 11:41 a.m.Добрый день. В данный момент работаю над проектом, где необходимо выводить звук из программы в определенное аудиоустройство (колонки, наушники, виртуальный кабель и т.д). Пишу на Qt5.12.12 поско…
- VPMarch 9, 2025, 4:14 p.m.Здравствуйте! Я устанавливал Qt6 из исходников а также Qt Creator по отдельности. Все компоненты, связанные с разработкой для Android, установлены. Кроме одного... Когда пытаюсь скомпилиров…
- ИМNov. 22, 2024, 9:51 p.m.Добрый вечер Евгений! Я сделал себе авторизацию аналогичную вашей, все работает, кроме возврата к предидущей странице. Редеректит всегда на главную, хотя в логах сервера вижу запросы на правильн…
- Now discuss on the forum
- МАApril 1, 2025, 4:21 p.m.0ff763fe-4e50-455d-a3a6-5699c243b1a5_17_44_22_1.xml
- fFeb. 15, 2025, 1:46 p.m.Подскажите, пожалуйста! Как данный класс можно дополнить, чтобы созданные объекты можно было перемещать мышкой по сцене?
- Не запускается компьютер (точнее работает блок , но сам монитор вообще жесть)В общем я ничего с интернета не скачивала в последнее время. На компе никаких левых пр…
- Вопрос решен. Узнать QModelIndex элемента на который мы перетаскиваем другой элемент, можно с помощью функции indexAt(event->position().toPoint()) представления QTreeViev вызываемой в переопр…