summaryrefslogtreecommitdiffstats
path: root/tools/qvfb
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-11-07 22:37:15 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-11-07 22:37:15 -0600
commitef73e104bd71560e1dab2c0c9a1bb1d718674e1a (patch)
tree47507e67e6659272cb14f11a1ed3d0ee0929328b /tools/qvfb
parent2bec4674492e058ed822768c0a9c4a848dbf81d9 (diff)
downloadqt3-ef73e104bd71560e1dab2c0c9a1bb1d718674e1a.tar.gz
qt3-ef73e104bd71560e1dab2c0c9a1bb1d718674e1a.zip
Update minor TQt3 tool names to match current TQt3 sources in GIT
Diffstat (limited to 'tools/qvfb')
-rw-r--r--tools/qvfb/README10
-rw-r--r--tools/qvfb/main.cpp2
-rw-r--r--tools/qvfb/qvfb.cpp6
-rw-r--r--tools/qvfb/qvfb.pro6
-rw-r--r--tools/qvfb/qvfbratedlg.cpp2
-rw-r--r--tools/qvfb/qvfbview.cpp4
-rw-r--r--tools/qvfb/skin.cpp4
7 files changed, 17 insertions, 17 deletions
diff --git a/tools/qvfb/README b/tools/qvfb/README
index c627041..5f35b26 100644
--- a/tools/qvfb/README
+++ b/tools/qvfb/README
@@ -1,7 +1,7 @@
Qt/Embedded Virtual Framebuffer
===============================
-Please note that the qvfb program needs to be compiled with the X11 version
+Please note that the tqvfb program needs to be compiled with the X11 version
of Qt.
The virtual frame buffer allows a Qt/Embedded program to be developed on your
@@ -16,20 +16,20 @@ framebuffer.
To use the virtual framebuffer:
1. Ensure QT_NO_QWS_VFB is not set in qconfig.h (when you configure Qt,
- add the -qvfb option).
-2. Start qvfb (qvfb should be compiled as a normal Qt/X11 application,
+ add the -tqvfb option).
+2. Start tqvfb (tqvfb should be compiled as a normal Qt/X11 application,
NOT as a Qt/Embedded application!).
3. Start a Qt/Embedded server (i.e. construct QApplication with
QApplication::GuiServer flag, or run a client with the -qws option).
-qvfb supports the following command line options:
+tqvfb supports the following command line options:
[-width width] the width of the virtual framebuffer (default: 240).
[-height height] the height of the virtual framebuffer (default: 320).
[-depth depth] the depth of the virtual framebuffer (1,4,8 or 32, default: 8).
[-nocursor] do not display the X11 cursor in the framebuffer window.
[-qwsdisplay] the Qt/Embedded display ID, e.g. -qwsdisplay :1 (default :0).
-[-skin skinfile] tells qvfb to load a skin file, e.g. -skin pda.skin
+[-skin skinfile] tells tqvfb to load a skin file, e.g. -skin pda.skin
Please refer to the file "pda.skin" for an example of what a skin file looks like.
The format for skin files is:
diff --git a/tools/qvfb/main.cpp b/tools/qvfb/main.cpp
index 50e11ec..dd25031 100644
--- a/tools/qvfb/main.cpp
+++ b/tools/qvfb/main.cpp
@@ -31,7 +31,7 @@
**
**********************************************************************/
-#include "qvfb.h"
+#include "tqvfb.h"
#include <qapplication.h>
#include <qpainter.h>
diff --git a/tools/qvfb/qvfb.cpp b/tools/qvfb/qvfb.cpp
index 1be15f8..9483177 100644
--- a/tools/qvfb/qvfb.cpp
+++ b/tools/qvfb/qvfb.cpp
@@ -31,9 +31,9 @@
**
**********************************************************************/
-#include "qvfb.h"
-#include "qvfbview.h"
-#include "qvfbratedlg.h"
+#include "tqvfb.h"
+#include "tqvfbview.h"
+#include "tqvfbratedlg.h"
#include "config.h"
#include "skin.h"
diff --git a/tools/qvfb/qvfb.pro b/tools/qvfb/qvfb.pro
index 7896e7c..33e6a3f 100644
--- a/tools/qvfb/qvfb.pro
+++ b/tools/qvfb/qvfb.pro
@@ -1,11 +1,11 @@
TEMPLATE = app
CONFIG += qt warn_on release
-HEADERS = qvfb.h qvfbview.h qvfbratedlg.h qanimationwriter.h \
+HEADERS = tqvfb.h tqvfbview.h tqvfbratedlg.h qanimationwriter.h \
gammaview.h skin.h
-SOURCES = qvfb.cpp qvfbview.cpp qvfbratedlg.cpp \
+SOURCES = tqvfb.cpp tqvfbview.cpp tqvfbratedlg.cpp \
main.cpp qanimationwriter.cpp skin.cpp
INTERFACES = config.ui
IMAGES = images/logo.png
-TARGET = qvfb
+TARGET = tqvfb
INCLUDEPATH += $$QT_SOURCE_TREE/src/3rdparty/libpng $$QT_SOURCE_TREE/src/3rdparty/zlib
DEPENDPATH = ../../include
diff --git a/tools/qvfb/qvfbratedlg.cpp b/tools/qvfb/qvfbratedlg.cpp
index 65c0fe2..159d241 100644
--- a/tools/qvfb/qvfbratedlg.cpp
+++ b/tools/qvfb/qvfbratedlg.cpp
@@ -31,7 +31,7 @@
**
**********************************************************************/
-#include "qvfbratedlg.h"
+#include "tqvfbratedlg.h"
#include <qlayout.h>
#include <qlabel.h>
diff --git a/tools/qvfb/qvfbview.cpp b/tools/qvfb/qvfbview.cpp
index 32ac3d9..7afc2fc 100644
--- a/tools/qvfb/qvfbview.cpp
+++ b/tools/qvfb/qvfbview.cpp
@@ -40,8 +40,8 @@
#include "qlock_p.h"
#endif
-#include "qvfbview.h"
-#include "qvfbhdr.h"
+#include "tqvfbview.h"
+#include "tqvfbhdr.h"
#define QTE_PIPE "QtEmbedded-%1"
diff --git a/tools/qvfb/skin.cpp b/tools/qvfb/skin.cpp
index 6322750..955b4c0 100644
--- a/tools/qvfb/skin.cpp
+++ b/tools/qvfb/skin.cpp
@@ -32,8 +32,8 @@
**********************************************************************/
#include "skin.h"
-#include "qvfb.h"
-#include "qvfbview.h"
+#include "tqvfb.h"
+#include "tqvfbview.h"
#include <qbitmap.h>
#include <qpixmap.h>