Qt support for VNC
- by muchala123
i want to test whether qt is supporting VNC or not. For that i have written a small layout program using Qt library.
the source code for the layout program is as follows:
layout.cpp
#include <QApplication>
#include <QHBoxLayout>
#include <QSlider>
#include <QSpinBox>
int main(int argc, char *argv[])
{
QApplication…