JKQtPlotter/examples/jkqtplot_test/QTeXEngine
jkriege2 69ad2a0182 - added styling system for JKQTPlotter (+example app)
- improved documentation
- changed: using static const variables instead of \c #define for fixed default values (e.g. JKQTPImageTools::LUTSIZE, JKQTPImageTools::PALETTE_ICON_WIDTH, JKQTPlotterDrawinTools::ABS_MIN_LINEWIDTH, JKQTMathText::ABS_MIN_LINEWIDTH ...)
- new: added debugging option, which surrounds different regions with visible rectangles (JKQTBasePlotter::enableDebugShowRegionBoxes() )
- fixed: colorbars at top were positioned over the plot label
- new: frames (plot viewport, key/legend ...) may be rounded off at the corners
- new: diverse new styling options (default font name/size ...)
- speed improvements to JKQTMathText::useSTIX()
2019-02-09 12:43:12 +01:00
..
doc - fixed zoomin/synchronized graphs, which was broken by former update to user-interaction 2019-02-03 14:08:16 +01:00
example reorganized folder structure in root directory (there are now distinct folders for INCLUDE, STATIC, DYNAMIC libs and examples moved to the folder examples) 2018-12-28 17:46:47 +01:00
src - added styling system for JKQTPlotter (+example app) 2019-02-09 12:43:12 +01:00
test reorganized folder structure in root directory (there are now distinct folders for INCLUDE, STATIC, DYNAMIC libs and examples moved to the folder examples) 2018-12-28 17:46:47 +01:00
CHANGES.txt reorganized folder structure in root directory (there are now distinct folders for INCLUDE, STATIC, DYNAMIC libs and examples moved to the folder examples) 2018-12-28 17:46:47 +01:00
config.pri reorganized folder structure in root directory (there are now distinct folders for INCLUDE, STATIC, DYNAMIC libs and examples moved to the folder examples) 2018-12-28 17:46:47 +01:00
COPYING.txt reorganized folder structure in root directory (there are now distinct folders for INCLUDE, STATIC, DYNAMIC libs and examples moved to the folder examples) 2018-12-28 17:46:47 +01:00
QTeXEngine.pro reorganized folder structure in root directory (there are now distinct folders for INCLUDE, STATIC, DYNAMIC libs and examples moved to the folder examples) 2018-12-28 17:46:47 +01:00
README.txt reorganized folder structure in root directory (there are now distinct folders for INCLUDE, STATIC, DYNAMIC libs and examples moved to the folder examples) 2018-12-28 17:46:47 +01:00

QTeXEngine GNU GPL v. 3.0
------------------------
AUTHOR: Ion Vasilief
------------------------
FEATURES:  QTeXEngine enables Qt based applications to easily export graphics created using the 
	   QPainter class to the .tex format using Pgf/TikZ packages (http://sourceforge.net/projects/pgf/).
---------------------------------------------------------------------------
DEPENDENCIES: You need Qt (http://www.qtsoftware.com) installed on your system in order to build QTeXEngine.
---------------------------------------------------------------------------
COMPILING: QTeXEngine uses qmake for the building process. 
	qmake is part of a Qt distribution: 
	qmake reads project files, that contain the options and rules how to build a certain project. 
	A project file ends with the suffix "*.pro". Please read the qmake documentation for more details.

After installing Qt on your system, type the following command lines: 

	$ qmake
	$ make

if you use MinGW, or:

	$ qmake -tp vc -r

if you use Microsoft Visual Studio (this will generate Visual Studio .vcproj project files in the "src" and "example" folders).

---------------------------------------------------------------------------
USE: a short demo application is provided in the "example" folder of the source archive.
---------------------------------------------------------------------------