789 Commits

Author SHA1 Message Date
mcoletti
27740e4155 - s/config.h/qgsconfig.h [0]
- qgsconfig.h now has header sentinals

- now will install headers in $(prefix)/qgis/include and libqis.* library in
  $(prefix)/lib [1]

- "src/Makefile" no longer relies on explicit dependencies and uses better
  naming scheme for created source files [2]

Notes:

[0] To eliminate any file namespace collisions.  Unfortunately there will
    still be some macro name collisions.  These are harmless, though annoying.
    What needs to happen is that all header file references to "qgsconfig.h"
    be moved to implementation files, thus breaking any include dependencies
    for external software.

[1] There currently does not exist a way to make this optional; these will
    always install.  In the future, this might be something toggleable by a
    configure script option.  Moreover, there does not currently exist a
    "qgis-config" script for getting command line options for external,
    dependant software; there might be one in a future release.

    I decided to err on including too many header files; almost certainly some
    of the header files that are currently installed can be culled from the
    "to install" list.

    The new make file has two targets: the old qgis application target, and a
    second one for the library.  As plug-ins are developed, there may be a
    need to add more source files to the library to link against.  I just
    added in the bare minimum for the current set of plug-ins.  If more
    sources need to be added, just add them to libqgis_la_SOURCES, near the
    bottom of  "src/Makefile.am".

[2] All *.ui files will create corresponding *.uic.h and *.uic.cpp files.
    Since these also need MOC files, *.moc.uic.cpp files are also
    automatically created.


git-svn-id: http://svn.osgeo.org/qgis/trunk@1056 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-22 20:00:55 +00:00
timlinux
9e7c4fd98e Updated for kdevelop 3 and to not use qmake stuff anymore.
git-svn-id: http://svn.osgeo.org/qgis/trunk@1055 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-21 20:24:53 +00:00
timlinux
241d6f2b1b Added thumbnail preview of raster to raster props dialog.
Added drawThumbnail method to rasterlayer.cpp
   Split (overloaded) draw method in rasterlayer.cpp so that some parts of
   the original draw method could be used by drawThumbnail method too.

Fixed a bug in the drawing of pseudocolor single band grayscale images that
   prevented all class breaks being displayed.


git-svn-id: http://svn.osgeo.org/qgis/trunk@1054 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-21 20:24:00 +00:00
mhugent
2461bb69cf bugfix related to single marker
git-svn-id: http://svn.osgeo.org/qgis/trunk@1053 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-21 18:05:27 +00:00
mhugent
24f611d793 added possibility to save and load markers
git-svn-id: http://svn.osgeo.org/qgis/trunk@1052 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-21 15:35:37 +00:00
mhugent
e6a76d923a added caption to the dialog for chosing pictures
git-svn-id: http://svn.osgeo.org/qgis/trunk@1051 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-20 16:43:24 +00:00
mhugent
00cb5d1b8a small change to update the svg pixmap on button in case the scale factor has changed
git-svn-id: http://svn.osgeo.org/qgis/trunk@1050 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-20 15:31:25 +00:00
mhugent
94c248f235 added displaying of the chosen svg image to the button
git-svn-id: http://svn.osgeo.org/qgis/trunk@1049 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-20 10:12:09 +00:00
stevehalasz
724247682f a couple of compile fixes
git-svn-id: http://svn.osgeo.org/qgis/trunk@1048 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-19 16:45:29 +00:00
mhugent
d2d1f7b3e5 added default scale factor for single marker renderer
git-svn-id: http://svn.osgeo.org/qgis/trunk@1047 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-19 15:41:06 +00:00
mhugent
9890b5dc03 added displaying of SVG symbol to the pixmap displayed in the legend item
git-svn-id: http://svn.osgeo.org/qgis/trunk@1046 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-19 10:53:31 +00:00
gsherman
bedc81ce32 Added qgssymbol.cpp to Makefile.am. An unknown change in the symbology
code apparently added qgssymbol as a dependency. Without it, the plugins
do not load but rather faile with unknown symbol error (QgsSymbol::setColor)


git-svn-id: http://svn.osgeo.org/qgis/trunk@1045 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-19 01:25:56 +00:00
mhugent
5b2434fe96 single marker renderer now draws svg on the canvas. Code is still messy and incomplete
git-svn-id: http://svn.osgeo.org/qgis/trunk@1044 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-18 14:06:01 +00:00
gsherman
6d68661e47 Fixed dependency for qgsattributetablebase.h (file was incorrectly
specified as gsattributetablebase.h)


git-svn-id: http://svn.osgeo.org/qgis/trunk@1043 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-17 22:21:10 +00:00
mhugent
4a79ad1bdc code for marker symbols. Still does not work, but slow progresses
git-svn-id: http://svn.osgeo.org/qgis/trunk@1042 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-16 16:20:57 +00:00
mhugent
644b5f0a38 various changings prior to the marker renderer
git-svn-id: http://svn.osgeo.org/qgis/trunk@1041 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-16 07:03:45 +00:00
mhugent
7ca9cd95de change to Makefile.am to include the single marker renderer
git-svn-id: http://svn.osgeo.org/qgis/trunk@1040 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-15 07:25:44 +00:00
mhugent
ff39e6bd1a single marker renderer
git-svn-id: http://svn.osgeo.org/qgis/trunk@1039 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-15 07:14:33 +00:00
mhugent
d956374ba2 added a dialog for a possible single marker renderer
git-svn-id: http://svn.osgeo.org/qgis/trunk@1038 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-14 15:43:25 +00:00
mhugent
7f73f6db49 added a dialog for a possible single marker renderer
git-svn-id: http://svn.osgeo.org/qgis/trunk@1037 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-14 15:26:06 +00:00
mhugent
940b14d6fd added QgsMarkerSymbol, a class which can read and scale svg from files
git-svn-id: http://svn.osgeo.org/qgis/trunk@1036 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-14 14:44:03 +00:00
gsherman
6a605ec62b Updated help for the plugin (still not complete)
Added screenshots to the Makefile.am


git-svn-id: http://svn.osgeo.org/qgis/trunk@1035 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-13 17:01:38 +00:00
gsherman
4db696924a Added Parse button to reparse the header row if the delimiter is changed
Added layer name field to specify the name as it will appear in the legend
Added WhatsThis help and tooltips for all widgets on the dialog


git-svn-id: http://svn.osgeo.org/qgis/trunk@1034 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-13 17:00:37 +00:00
mhugent
1b7ad1ae91 code cleanup
git-svn-id: http://svn.osgeo.org/qgis/trunk@1033 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-13 15:33:21 +00:00
timlinux
d7bb9f1a63 Misc updates to get oM plugin working. oM plugin is not part of build unless you add it to toplevel configure.in and plugins/Makefile.am because it has external library dependency to openModeller
git-svn-id: http://svn.osgeo.org/qgis/trunk@1032 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-12 23:34:38 +00:00
gsherman
f767096b04 Added functions to return menu ids by name and menu name by id.
These were added to the interface classes for use by plugins
NOTE - The utility of these functions is questionable and they
       may be removed in the future


git-svn-id: http://svn.osgeo.org/qgis/trunk@1031 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-12 16:53:12 +00:00
gsherman
f52698d9c0 Changed popup menu names to something more meaningful than PopupMenu, PopupMenu_1, etc
git-svn-id: http://svn.osgeo.org/qgis/trunk@1030 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-12 16:49:38 +00:00
gsherman
ac26abcb51 Minor code reformatting
git-svn-id: http://svn.osgeo.org/qgis/trunk@1029 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-12 16:45:32 +00:00
gsherman
afa52585c5 Added delimited text doc dir makefile
git-svn-id: http://svn.osgeo.org/qgis/trunk@1028 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-12 16:44:41 +00:00
gsherman
bb3fa92eeb Added delimited_text to SUBDIRS
git-svn-id: http://svn.osgeo.org/qgis/trunk@1027 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-12 16:42:40 +00:00
gsherman
a4f5122b62 Initial checkin of documentation for the delimited text plugin
git-svn-id: http://svn.osgeo.org/qgis/trunk@1026 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-12 16:41:58 +00:00
gsherman
af0a1f976f Renamed plugin source files to something more meaningful
Removed previous files
Modified Makefile.am to support file changes
Added a Help button to the dialog


git-svn-id: http://svn.osgeo.org/qgis/trunk@1025 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-12 16:40:38 +00:00
mhugent
70288e8b15 some more cleanups
git-svn-id: http://svn.osgeo.org/qgis/trunk@1024 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-12 14:56:59 +00:00
mhugent
c87fd4ea56 some more cleanups
git-svn-id: http://svn.osgeo.org/qgis/trunk@1023 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-12 14:44:42 +00:00
mhugent
f9ee0e58fe little code cleanup
git-svn-id: http://svn.osgeo.org/qgis/trunk@1022 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-12 08:10:24 +00:00
mhugent
d31f200ae9 changed the drawing code of multipolygons as suggested by Radim
git-svn-id: http://svn.osgeo.org/qgis/trunk@1021 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-12 06:59:43 +00:00
mcoletti
d094e1a8cd Added GDAL_CFLAGS to find GDAL headers
git-svn-id: http://svn.osgeo.org/qgis/trunk@1020 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-11 19:19:01 +00:00
mhugent
e03105b23a removed old symbology dialog
git-svn-id: http://svn.osgeo.org/qgis/trunk@1019 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-11 07:46:04 +00:00
mhugent
47fe338381 removed code related to old symbology
git-svn-id: http://svn.osgeo.org/qgis/trunk@1018 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-11 07:19:26 +00:00
gsherman
9835ae571f Added Qt standard WhatsThis button to the toolbar at startup
Removed the homebrew WhatsThis tool button from the toolbar in qgisappbase.ui


git-svn-id: http://svn.osgeo.org/qgis/trunk@1017 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-11 03:06:56 +00:00
gsherman
00c8d29e5a Modifed ternary statement to return QString::null if the file is not valid
git-svn-id: http://svn.osgeo.org/qgis/trunk@1016 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-11 02:58:07 +00:00
gsherman
33fd356603 Updated icon for plugin
Added WhatsThis help to the plugin toolbar and menu entry


git-svn-id: http://svn.osgeo.org/qgis/trunk@1015 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-11 02:56:11 +00:00
gsherman
a6cb25b395 Changed embedded image format to XPM.GZ to eliminate the duplicate const error when compiling with Qt 3.2 or older
git-svn-id: http://svn.osgeo.org/qgis/trunk@1014 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-11 01:00:38 +00:00
gsherman
9205dc43ce Fixed version number in .ui file to allow compilation under Qt versions prior to 3.3
git-svn-id: http://svn.osgeo.org/qgis/trunk@1013 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-11 00:49:55 +00:00
gsherman
b200a8fb01 Updated changes related to 0.1.0devel7
git-svn-id: http://svn.osgeo.org/qgis/trunk@1012 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-10 23:28:57 +00:00
gsherman
3326005217 Bumped extra_version to 7
git-svn-id: http://svn.osgeo.org/qgis/trunk@1011 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-10 23:27:25 +00:00
gsherman
214d9a3dff Changes to support upcoming data provider api changes related to plugging memory leaks
git-svn-id: http://svn.osgeo.org/qgis/trunk@1010 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-10 23:23:06 +00:00
gsherman
e09ec1ce5a Indentation chagnes
git-svn-id: http://svn.osgeo.org/qgis/trunk@1009 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-10 23:22:02 +00:00
gsherman
15a79c50c2 Indentation changes, stub for new getNextFeature function that will be implemented to plug memory leaks
git-svn-id: http://svn.osgeo.org/qgis/trunk@1008 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-10 23:21:01 +00:00
gsherman
c788079aba Fixed implementation for tables and identify. Select and highlight of features does not work yet. This is the inital version, work on bugs is ongoing
git-svn-id: http://svn.osgeo.org/qgis/trunk@1007 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-10 23:18:52 +00:00