##// END OF EJS Templates
Fix vanishing labels for first and last ticks....
Fix vanishing labels for first and last ticks. Extra space must be reserved by layout for the axes that have wide labels for first or last tick. Changed the logic how axis sizeHint is interpreted to make the previously irrelevant height or width (depending on orientation) of the sizeHint to indicate how far the widest label extends past the first/last tick, and adjust the grid size accordingly in layout. Reviewed-by: Mika Salmela

File last commit:

r2296:6bd1dc9d15e0
r2443:5b27b7b1d72a RC2_1.2.1
Show More
declarative.pro
52 lines | 1.4 KiB | text/idl | PrologLexer
Michal Klocek
Move qmlplugins to plugins/declarative
r1197 !include( ../plugins.pri ) {
error( "Couldn't find the plugins.pri file!" )
Tero Ahola
Proof-of-concept for QML api...
r120 }
Michal Klocek
Adds release debug direcotires to bin lib
r1978
TARGET = qtcommercialchartqml
Jani Honkonen
Fixing qml build for latest Qt5...
r2247 QT += declarative
Michal Klocek
Adds release debug direcotires to bin lib
r1978 DESTDIR = $$CHART_BUILD_QML_PLUGIN_DIR
Tero Ahola
Refactored QML axis handling
r1813 INCLUDEPATH += $$CHART_BUILD_PRIVATE_HEADER_DIR
Tero Ahola
Proof-of-concept for QML api...
r120
Jani Honkonen
Fix building debug & release at the same time...
r1433 CONFIG(debug, debug|release) {
mac: TARGET = $$join(TARGET,,,_debug)
win32: TARGET = $$join(TARGET,,,d)
}
Jani Honkonen
First draft of project structure
r1 SOURCES += \
plugin.cpp \
Tero Ahola
Proof-of-concept for QML api...
r120 declarativechart.cpp \
Tero Ahola
Declarative series classed now derived from QSeries childs
r789 declarativexypoint.cpp \
Tero Ahola
Added axis to QML api
r1096 declarativexyseries.cpp \
Tero Ahola
Added QML api for bar series
r646 declarativelineseries.cpp \
Tero Ahola
Declarative series classed now derived from QSeries childs
r789 declarativesplineseries.cpp \
Tero Ahola
Added area series to QML api
r847 declarativeareaseries.cpp \
Tero Ahola
Spline to QML API
r732 declarativescatterseries.cpp \
declarativepieseries.cpp \
Tero Ahola
Added CategoryAxis and CategoryRange to QML API
r1870 declarativebarseries.cpp \
Tero Ahola
Added ChartView.minimumMargins to QML properties
r1928 declarativecategoryaxis.cpp \
Tero Ahola
Added axisXTop and axisYRight properties to QML series APIs
r2296 declarativemargins.cpp \
declarativeaxes.cpp
Tero Ahola
Added CategoryAxis and CategoryRange to QML API
r1870
Jani Honkonen
First draft of project structure
r1 HEADERS += \
Tero Ahola
Proof-of-concept for QML api...
r120 declarativechart.h \
Tero Ahola
Declarative series classed now derived from QSeries childs
r789 declarativexypoint.h \
Tero Ahola
Added axis to QML api
r1096 declarativexyseries.h \
Tero Ahola
Added QML api for bar series
r646 declarativelineseries.h \
Tero Ahola
Spline to QML API
r732 declarativesplineseries.h \
Tero Ahola
Added area series to QML api
r847 declarativeareaseries.h \
Tero Ahola
Spline to QML API
r732 declarativescatterseries.h \
declarativepieseries.h \
Tero Ahola
Added CategoryAxis and CategoryRange to QML API
r1870 declarativebarseries.h \
Tero Ahola
Added ChartView.minimumMargins to QML properties
r1928 declarativecategoryaxis.h \
Tero Ahola
Added axisXTop and axisYRight properties to QML series APIs
r2296 declarativemargins.h \
declarativeaxes.h
Jani Honkonen
First draft of project structure
r1
Tero Ahola
Proof-of-concept for QML api...
r120 TARGETPATH = QtCommercial/Chart
Jani Honkonen
First draft of project structure
r1 target.path = $$[QT_INSTALL_IMPORTS]/$$TARGETPATH
qmldir.files += $$PWD/qmldir
qmldir.path += $$[QT_INSTALL_IMPORTS]/$$TARGETPATH
INSTALLS += target qmldir
Michal Klocek
Simplfies default configuration
r1021
Tero Ahola
Simplified QML plugin QMAKE_POST_LINK
r1027 FILE = $$PWD/qmldir
win32:{FILE = $$replace(FILE, "/","\\")}
Michal Klocek
Adds release debug direcotires to bin lib
r1978 QMAKE_POST_LINK += $$QMAKE_COPY $$FILE $$CHART_BUILD_QML_PLUGIN_DIR