diff options
Diffstat (limited to 'tools/qvfb')
-rw-r--r-- | tools/qvfb/README | 10 | ||||
-rw-r--r-- | tools/qvfb/main.cpp | 2 | ||||
-rw-r--r-- | tools/qvfb/qvfb.cpp | 6 | ||||
-rw-r--r-- | tools/qvfb/qvfb.pro | 6 | ||||
-rw-r--r-- | tools/qvfb/qvfbratedlg.cpp | 2 | ||||
-rw-r--r-- | tools/qvfb/qvfbview.cpp | 4 | ||||
-rw-r--r-- | tools/qvfb/skin.cpp | 4 |
7 files changed, 17 insertions, 17 deletions
diff --git a/tools/qvfb/README b/tools/qvfb/README index 5f35b26..c627041 100644 --- a/tools/qvfb/README +++ b/tools/qvfb/README @@ -1,7 +1,7 @@ Qt/Embedded Virtual Framebuffer =============================== -Please note that the tqvfb program needs to be compiled with the X11 version +Please note that the qvfb 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 -tqvfb option). -2. Start tqvfb (tqvfb should be compiled as a normal Qt/X11 application, + add the -qvfb option). +2. Start qvfb (qvfb 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). -tqvfb supports the following command line options: +qvfb 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 tqvfb to load a skin file, e.g. -skin pda.skin +[-skin skinfile] tells qvfb 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 dd25031..50e11ec 100644 --- a/tools/qvfb/main.cpp +++ b/tools/qvfb/main.cpp @@ -31,7 +31,7 @@ ** **********************************************************************/ -#include "tqvfb.h" +#include "qvfb.h" #include <qapplication.h> #include <qpainter.h> diff --git a/tools/qvfb/qvfb.cpp b/tools/qvfb/qvfb.cpp index 9483177..1be15f8 100644 --- a/tools/qvfb/qvfb.cpp +++ b/tools/qvfb/qvfb.cpp @@ -31,9 +31,9 @@ ** **********************************************************************/ -#include "tqvfb.h" -#include "tqvfbview.h" -#include "tqvfbratedlg.h" +#include "qvfb.h" +#include "qvfbview.h" +#include "qvfbratedlg.h" #include "config.h" #include "skin.h" diff --git a/tools/qvfb/qvfb.pro b/tools/qvfb/qvfb.pro index 33e6a3f..7896e7c 100644 --- a/tools/qvfb/qvfb.pro +++ b/tools/qvfb/qvfb.pro @@ -1,11 +1,11 @@ TEMPLATE = app CONFIG += qt warn_on release -HEADERS = tqvfb.h tqvfbview.h tqvfbratedlg.h qanimationwriter.h \ +HEADERS = qvfb.h qvfbview.h qvfbratedlg.h qanimationwriter.h \ gammaview.h skin.h -SOURCES = tqvfb.cpp tqvfbview.cpp tqvfbratedlg.cpp \ +SOURCES = qvfb.cpp qvfbview.cpp qvfbratedlg.cpp \ main.cpp qanimationwriter.cpp skin.cpp INTERFACES = config.ui IMAGES = images/logo.png -TARGET = tqvfb +TARGET = qvfb 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 159d241..65c0fe2 100644 --- a/tools/qvfb/qvfbratedlg.cpp +++ b/tools/qvfb/qvfbratedlg.cpp @@ -31,7 +31,7 @@ ** **********************************************************************/ -#include "tqvfbratedlg.h" +#include "qvfbratedlg.h" #include <qlayout.h> #include <qlabel.h> diff --git a/tools/qvfb/qvfbview.cpp b/tools/qvfb/qvfbview.cpp index 7afc2fc..32ac3d9 100644 --- a/tools/qvfb/qvfbview.cpp +++ b/tools/qvfb/qvfbview.cpp @@ -40,8 +40,8 @@ #include "qlock_p.h" #endif -#include "tqvfbview.h" -#include "tqvfbhdr.h" +#include "qvfbview.h" +#include "qvfbhdr.h" #define QTE_PIPE "QtEmbedded-%1" diff --git a/tools/qvfb/skin.cpp b/tools/qvfb/skin.cpp index 955b4c0..6322750 100644 --- a/tools/qvfb/skin.cpp +++ b/tools/qvfb/skin.cpp @@ -32,8 +32,8 @@ **********************************************************************/ #include "skin.h" -#include "tqvfb.h" -#include "tqvfbview.h" +#include "qvfb.h" +#include "qvfbview.h" #include <qbitmap.h> #include <qpixmap.h> |