Qt 4.8
Functions
qvncintegration.cpp File Reference
#include "qvncintegration.h"
#include "../fb_base/fb_base.h"
#include <private/qapplication_p.h>
#include <QtGui/private/qpixmap_raster_p.h>
#include <QtCore/qdebug.h>
#include <qvncserver.h>
#include <QtGui/QPainter>
#include <QtCore/QTimer>
#include "qgenericunixfontdatabase.h"

Go to the source code of this file.

Functions

static int defaultDisplay ()
 
static int defaultHeight ()
 
static int defaultWidth ()
 
static void usage ()
 

Function Documentation

◆ defaultDisplay()

static int defaultDisplay ( )
inlinestatic

Definition at line 87 of file qvncintegration.cpp.

Referenced by QVNCIntegration::QVNCIntegration(), and usage().

87 { return 0; }

◆ defaultHeight()

static int defaultHeight ( )
inlinestatic

Definition at line 86 of file qvncintegration.cpp.

Referenced by QVNCIntegration::QVNCIntegration(), and usage().

86 { return 600; }

◆ defaultWidth()

static int defaultWidth ( )
inlinestatic

Definition at line 85 of file qvncintegration.cpp.

Referenced by QVNCIntegration::QVNCIntegration(), and usage().

85 { return 800; }

◆ usage()

static void usage ( )
static

Definition at line 89 of file qvncintegration.cpp.

Referenced by QVNCIntegration::QVNCIntegration().

90 {
91  qWarning() << "VNC Platform Integration options:";
92  qWarning() << " size=<Width>x<Height> - set the display width and height";
93  qWarning() << " defaults to" << defaultWidth() << "x" << defaultHeight();
94  qWarning() << " display=<ID> - set the VNC display port to ID + 5900";
95  qWarning() << " defaults to" << defaultDisplay();
96  qWarning() << " offset=<X>x<Y> - set the current screens offset";
97  qWarning() << " vnc - start configuration of a new screen";
98  qWarning() << " size and offset are inherited from the previous screen if not set";
99  qWarning() << " display id is incremented from the previous screen if not set";
100  qWarning() << " virtual - manage the set of screens as a virtual desktop";
101 }
static int defaultWidth()
Q_CORE_EXPORT void qWarning(const char *,...)
static int defaultHeight()
static int defaultDisplay()