Skip to content

Commit f2b8758

Browse files
author
timlinux
committed
Added a readme file explaining how to ensure the plugins are in
QT4's search path so they appear in designer git-svn-id: http://svn.osgeo.org/qgis/trunk@5134 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent d743bdd commit f2b8758

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

src/designer/README.txt

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
Notes on the useage of the QGIS custom designer plugins
2+
3+
Tim Sutton, 2006
4+
--------------------------------------------------------
5+
6+
Introduction:
7+
8+
The purpose of the QGIS designer plugins is to all third
9+
party developers to create GIS enabled QT4 based applications
10+
with minimal programming. The idea being that you use the
11+
standard Qt4 Designer GUI design tool to create your user
12+
interface and then add map canvas, legend, projection selector
13+
etc. type of widgets from the toolbox of widgets in designer
14+
- with QGIS having added its own group of custome widgets there.
15+
The QGIS custom widgets can then be graphically 'programmed' by
16+
setting widget properties and using interactive signal/slot
17+
connectors.
18+
19+
Plugin Paths:
20+
21+
There are two options for having Qt4 Designer find your
22+
plugins at startup:
23+
24+
1) copy the plugin from {QGIS Install Prefix}/lib/qgis/designer
25+
into the standard Qt4 designer plugin directory at
26+
$QTDIR/plugins/designer/
27+
28+
2) export the environment variable QT_PLUGIN_PATH with all the
29+
places designer should look for your plugins in. Separate
30+
each entry with a colon. So for example:
31+
32+
export QT_PLUGIN_PATH={QGIS Install Prefix}/lib/qgis
33+
34+
Note that the 'designer' directory is ommitted from the path.
35+

0 commit comments

Comments
 (0)