Boost → Boost - static linking in CMake project under Windows
cpp, Boost, linking, C++, static
A small note about static linking Boost, so as not to forget.
Initial data:
- OS Windows
- MSVC 2017 64bit
- Boost 1.68.0
- CMake project
An example will be shown in the simplest version without special variable settings. Maximum default.
Step 1 …
Qt → Qt/C++ - Tutorial 086. Using QSequentialAnimationGroup and QPropertyAnimation to move a button
QSequentialAnimationGroup, cpp, Qt, C++, QPropertyAnimation
Let's write a small example of an application in which a button will be moved using property animations. To do this, we use the QSequentialAnimationGroup and QPropertyAnimation classes.
QSequentialAnimationGroup is a class that combines several animations into one group, which …
Boost → Boost - Console program menu using boost::program_options
And here is an article on the boost of my some accumulated materials. I offer you the option of writing a console program with support for the console menu, which is implemented using boost::program_options .
boost::program_options is responsible for processing …
C++ → C ++ - Does the #pragma once build speed up?
Work on a large project allows in some cases to test some theories concerning a programming language.
It was always interesting if the build is really accelerated by using the #pragma once directive instead of the classic #ifndef #define #endif …
C++ → Example - Object Pool in C++
шаблоны проектирования, пул, C++
Example of the design pattern An object pool in the C ++ programming language.
- #include <string>
- #include <iostream>
- #include <list>
- class Resource
- {
- int value;
- public:
- Resource()
- {
- value = 0;
- }
- void reset()
- {
- value = 0;
- }
- int …
C++ → Example - Factory method in C++
шаблоны проектирования, factory, method, C++
Discussion. Frameworks are applications (or subsystems) with "holes" in them. Each framework specifies the infrastructure, superstructure, and flow of control for its "domain", and the client of the framework may: exercise the framework's default behavior "as is", extend selected pieces …
C++ → Cooking lambda functions in C ++ - Part 2 - Recursive lambda functions using the example of factorial calculation
factorial, lambda, C++, лямбда функция, факториал
In the previous article , we got acquainted with the structure of lambda functions, and now we'll play with lambdas, calculate the factorial, and consider how the lambda function can be applied for this.
Let's consider for the beginning the …
Qt → Qt/C++ - Tutorial 081. How to make a base class for widgets using ui form files
In some cases, you might need to create widget form classes that have a custom base class. That is, the form class of the widget will be inherited from your class, and not directly from QWidget , QDialog , or …
- 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 вызываемой в переопр…