Sultan Alisaieefoxoman.hashnode.net·May 13, 2020Compile Static Qt Build in Ubuntu Optimized for Small Size With AppImage Support!Qt is a static build-ready framework but it published as Shared Library due to license requirements. As you are reading this you should already know what is the requirement to build a static build and what is the benefits. For me, it makes my life ...Discuss·14 likes·2.8K reads#100DaysOfCodeQt
Sultan Alisaieefoxoman.hashnode.net·Apr 17, 2020#Day1: Qt is the chosen one!Today I will start my journey with #100daysofcode challenge with Qt! Yes, I Am already in Qt but I will use this opportunity to refresh and learn more and document my journey to help others to learn Qt plus I will use it to improve my English writin...Discuss·12 likes·201 reads#100DaysOfCodeQt
Swati Sarangicodingstars.hashnode.net·Dec 22, 2021First Check Point of my recent "Cute" journeyIntroduction Hello Everyone, I hope that you're doing fine! Christmas is just a few days away and it is escorting us to enter this brand new year. I've always wanted to compile my experiments of the coding journey in one place in form of a blog, I am...Discuss·10 likes·55 readsMy-Developer's StoriesQt
Yunus Temurlenkyunustemurlenk.hashnode.net·Mar 15, 2023Linking OpenCV to Qt on UbuntuQt is a popular cross-platform application framework for developing desktop and mobile applications, while OpenCV is a popular computer vision library for image processing and analysis. Integrating these two powerful tools can enable you to create vi...Discuss·34 readsopencv
Tadeo Bennettthetechieintj.hashnode.net·Mar 12, 2023How to Create a Qt Project Executable | Missing Files FixSo you've built your Qt project application and want to share the executable file for others to run without having them install Qt on their computer. The process to do this is simple and I include a fix for a "missing.dll files" issue that may arise....DiscussQt for Desktop DevelopmentQt
Kangarookangaroolove.hashnode.net·Mar 4, 2023SetStyleSheet function doesn't work in QWidget1. Preface we found that the subclasses that inherit from QWidget look fine in Qt Designer when we used the setStyleSheet() function, but when we actually run the application, we find that it doesn't work. 2. Solutions 2.1. solution 1 If you are not ...DiscussQtQt
Kangarookangaroolove.hashnode.net·Feb 25, 2023QTableView Experience(Model/View programming)1.How to expand the column to fill the whole table? we can set up one of the columns as stretch, and other columns are fixed, like this QTableView* tableView = new QTableView(); tableView->setModel(model); // Put these statements after setting model...Discuss·26 readsQtQt
Lucasmhouney.hashnode.net·Jan 30, 2023Creating a Clock-Component using QMLWhat is QML? "QML" stands for "Qt Modelling Language" and is used within the Qt framework for the creation of a UI. It is a declarative programming language and a component of QtQuick (Qt User Interface Creation Kit). QML also has a C++ and JavaScrip...Discuss·1 like·29 readsQML
Swati Sarangicodingstars.hashnode.net·Aug 21, 2022My first job as a developer in a foreign landIntroduction In this post, I am going to share my experience of getting a job in a foreign land, Hong Kong(HK). I hail from India, and in that respect, HK is a foreign land for me. This post will walk you through every stage of my landing in an MNC i...Discuss·4 likes·83 readsMy-Developer's Stories4articles4weeksOhh wow! That's a lot of hardcore experience.. You are a pro then :D 3
The Cute server blogglauco.hashnode.net·Aug 3, 2022Introducing Cute: RPC the way it was always meant to beThis post introduces Cute. Cute is a powerful yet extremely easy-to-use and secure C++ RPC (Remote Procedure Call) framework for building modern connected apps and backend services quickly and easily. Cute enables developers to use the intuitive Qt s...Discuss·2.6K readsQt
DEEPIN LINUXdeepinlinux.hashnode.net·Jul 27, 2022How to configure the Qt development environment?How to install? First install the Qt environment: sudo apt install qt5-default qtcreator. Compile dependencies of the installation project: sudo apt build-dep xxx. "xxx" is the project name, for example: sudo apt build-dep dde-control-center is the c...Discussdeepin
DEEPIN LINUXdeepinlinux.hashnode.net·Jun 22, 2022【Deepin Sharing】How to use GSettingsGSettings is actually a set of APIs that can use multiple storage backends. By default, dconf is used as backend, and keyfile can also be used as backend. However, since gio provides the GKeyFile structure to process keyfile files, the GSettings API ...Discuss·46 readsQt
The Cute server blogglauco.hashnode.net·Jun 20, 2022The Cute Server Showcase: Encrypted Connections with Self-Signed CertificatesIn this post, we create and use self-signed certificates to encrypt connections on the Cute server. We will configure both one-way and two-way SSL authentication. The Cute server is a next-gen server that allows developers to use the Qt's signals and...Discuss·477 readsThe Cute server showcaseQt