Git with Qt Creator Basics: How to Clone a Git Repository

Git is one of the most popular version control systems and Qt Creator provide very intuitive and easy to use tools to interact with Git and skip all the command-typing that is required by Git. I think it is safe to assume that you already know how to get Git (https://git-scm.com/). If Git is already installed and present in the system then Qt Creator will automatically pick it up and you can start using it right away.

Continue reading “Git with Qt Creator Basics: How to Clone a Git Repository”

Full Featured VNC Client Widget for Qt

In this post I am going to share a Qt widget that allows full control (view and control) of VNC servers over TCP/IP. Using it is as simple as dropping a QWidget on your user interface and then promoting it to QVNCClientWidget. I needed this recently but was not able to find a Qt widget or any other Qt/C++ code for that matter, that supports VNC Authentication and can be used in a  real cross-platform way. So I had to gather and write this widget piece by piece and make sure it build on all platforms supported by Qt.

Continue reading “Full Featured VNC Client Widget for Qt”