Evgenii Legotckoi
Nov. 30, 2018, 1:10 a.m.

BoostBoost - 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 …

Read
Evgenii Legotckoi
Nov. 18, 2018, 8:52 p.m.

QtQt/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 …

Read
Evgenii Legotckoi
Nov. 18, 2018, 4:57 p.m.

BoostBoost - Console program menu using boost::program_options

cpp, Boost, Menu, C++

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 …

Read
Evgenii Legotckoi
Oct. 10, 2018, 7:32 p.m.

C++C ++ - Does the #pragma once build speed up?

C++, once, pragma

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 …

Read
Evgenii Legotckoi
Sept. 26, 2018, 4:55 p.m.

C++Example - Object Pool in C++

шаблоны проектирования, пул, C++

Example of the design pattern An object pool in the C ++ programming language.


  1. #include <string>
  2. #include <iostream>
  3. #include <list>
  4. class Resource
  5. {
  6. int value;
  7. public:
  8. Resource()
  9. {
  10. value = 0;
  11. }
  12. void reset()
  13. {
  14. value = 0;
  15. }
  16. int
Read
Evgenii Legotckoi
Sept. 24, 2018, 6:23 p.m.

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 …

Read
Evgenii Legotckoi
July 18, 2018, 1:14 p.m.

QtWrite your own Python bindings

C++, Qt5, bind, Python

Today we'll take a look at how you can create bindings for your own project.

The Qt Company is pleased to announce that Qt for Python will also include Shiboken, your primary binding tool.

Read the material below and you …

Read
Evgenii Legotckoi
July 6, 2018, 2:26 p.m.

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 …

Read
Evgenii Legotckoi
July 3, 2018, 12:24 a.m.

QtQt/C++ - Tutorial 081. How to make a base class for widgets using ui form files

Qt, ui, C++, Form

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 …

Read
Evgenii Legotckoi
June 18, 2018, 2:01 p.m.

QtC ++ scripts

Qt5, Qt, Script, C++

One of the authors of the Qt Blog shared his experience of using the Cling utility. To solve everyday problems, he needed to write several scripts, and he used C ++ as a scripting language!!! To do this, he used …

Read
  • Last comments
  • AK
    April 1, 2025, 11:41 a.m.
    Добрый день. В данный момент работаю над проектом, где необходимо выводить звук из программы в определенное аудиоустройство (колонки, наушники, виртуальный кабель и т.д). Пишу на Qt5.12.12 поско…
  • Evgenii Legotckoi
    March 9, 2025, 9:02 p.m.
    К сожалению, я этого подсказать не могу, поскольку у меня нет необходимости в обходе блокировок и т.д. Поэтому я и не задавался решением этой проблемы. Ну выглядит так, что вам действитель…
  • VP
    March 9, 2025, 4:14 p.m.
    Здравствуйте! Я устанавливал Qt6 из исходников а также Qt Creator по отдельности. Все компоненты, связанные с разработкой для Android, установлены. Кроме одного... Когда пытаюсь скомпилиров…
  • ИМ
    Nov. 22, 2024, 9:51 p.m.
    Добрый вечер Евгений! Я сделал себе авторизацию аналогичную вашей, все работает, кроме возврата к предидущей странице. Редеректит всегда на главную, хотя в логах сервера вижу запросы на правильн…
  • Evgenii Legotckoi
    Oct. 31, 2024, 11:37 p.m.
    Добрый день. Да, можно. Либо через такие же плагины, либо с постобработкой через python библиотеку Beautiful Soup