##// END OF EJS Templates
combined clicked and rightclicked events of legend to one event with parameter
combined clicked and rightclicked events of legend to one event with parameter

File last commit:

r547:2c194d26bbea
r567:17f0257049a1
Show More
src.pro
98 lines | 2.9 KiB | text/idl | PrologLexer
Michal Klocek
Fix previous broken commit
r145 !include( ../common.pri ):error( Couldn't find the common.pri file! )
Michal Klocek
fix CRLF in src.pro
r36 TARGET = QtCommercialChart
Michal Klocek
Revert "Integrated scatter series"...
r39 DESTDIR = $$CHART_BUILD_LIB_DIR
Michal Klocek
fix CRLF in src.pro
r36 TEMPLATE = lib
QT += core \
gui
CONFIG += debug_and_release
CONFIG(debug, debug|release):TARGET = QtCommercialChartd
Michal Klocek
Move axes files to subdir
r478 SOURCES += \
Michal Klocek
Refactors qchart , adds line animation...
r131 chartdataset.cpp \
chartpresenter.cpp \
Michal Klocek
minor. reorder compilation files in src.pro
r250 charttheme.cpp \
domain.cpp \
qchart.cpp \
Michal Klocek
Rename QChartSeries to QSeries
r360 qchartview.cpp \
sauimone
framework for legend
r524 qseries.cpp \
sauimone
Separated legend marker to private header. Added signals for left and right mouse click
r547 qlegend.cpp \
legendmarker.cpp
Michal Klocek
Move axes files to subdir
r478 PRIVATE_HEADERS += \
Michal Klocek
Refactors qchart , adds line animation...
r131 chartdataset_p.h \
Michal Klocek
minor. reorder compilation files in src.pro
r250 chartitem_p.h \
Michal Klocek
Refactors qchart , adds line animation...
r131 chartpresenter_p.h \
Michal Klocek
minor. reorder compilation files in src.pro
r250 charttheme_p.h \
sauimone
Separated legend marker to private header. Added signals for left and right mouse click
r547 domain_p.h \
legendmarker_p.h
PUBLIC_HEADERS += \
Michal Klocek
Move axes files to subdir
r478 qchart.h \
Michal Klocek
Fix previous broken commit
r145 qchartglobal.h \
Michal Klocek
Rename QChartSeries to QSeries
r360 qseries.h \
sauimone
framework for legend
r524 qchartview.h \
qlegend.h
Michal Klocek
Animation refactor...
r530
include(animations/animations.pri)
Michal Klocek
Move axes files to subdir
r478 include(axis/axis.pri)
Michal Klocek
Refactor line spline to common xyline...
r465 include(xychart/xychart.pri)
Michal Klocek
Rename QChartSeries to QSeries
r360 include(linechart/linechart.pri)
Michal Klocek
Adds area chart...
r421 include(areachart/areachart.pri)
Michal Klocek
Rename QChartSeries to QSeries
r360 include(barchart/barchart.pri)
Jani Honkonen
Moved pie stuff to own .pri file and rename stuff
r146 include(piechart/piechart.pri)
Tero Ahola
Moved scatter impl into a subfolder
r194 include(scatterseries/scatter.pri)
Marek Rosa
Spline initial
r295 include(splinechart/splinechart.pri)
Tero Ahola
Moved scatter impl into a subfolder
r194
Jani Honkonen
Adding list of series gradients to theme.
r494 THEMES += themes/chartthemedefault_p.h \
themes/chartthemeicy_p.h \
Michal Klocek
Refactor themes...
r143 themes/chartthemegrayscale_p.h \
themes/chartthemescientific_p.h \
Michal Klocek
Fix previous broken commit
r145 themes/chartthemevanilla_p.h
Tero Ahola
Moved scatter impl into a subfolder
r194 HEADERS += $$PUBLIC_HEADERS
Michal Klocek
fix CRLF in src.pro
r36 HEADERS += $$PRIVATE_HEADERS
Michal Klocek
Refactor themes...
r143 HEADERS += $$THEMES
Michal Klocek
Fix previous broken commit
r145 INCLUDEPATH += linechart \
barchart \
themes \
.
Michal Klocek
Revert "Integrated scatter series"...
r39 OBJECTS_DIR = $$CHART_BUILD_DIR/lib
MOC_DIR = $$CHART_BUILD_DIR/lib
UI_DIR = $$CHART_BUILD_DIR/lib
RCC_DIR = $$CHART_BUILD_DIR/lib
Michal Klocek
fix CRLF in src.pro
r36 DEFINES += QTCOMMERCIALCHART_LIBRARY
public_headers.path = $$[QT_INSTALL_HEADERS]/QtCommercialChart
public_headers.files = $$PUBLIC_HEADERS
target.path = $$[QT_INSTALL_LIBS]
INSTALLS += target \
public_headers
Michal Klocek
Adds private headers handling...
r193 install_build_public_headers.name = bild_public_headers
install_build_public_headers.output = $$CHART_BUILD_PUBLIC_HEADER_DIR/${QMAKE_FILE_BASE}.h
install_build_public_headers.input = PUBLIC_HEADERS
install_build_public_headers.commands = $$QMAKE_COPY \
Michal Klocek
Fix previous broken commit
r145 ${QMAKE_FILE_NAME} \
Michal Klocek
Adds private headers handling...
r193 $$CHART_BUILD_PUBLIC_HEADER_DIR
install_build_public_headers.CONFIG += target_predeps \
Michal Klocek
Fix previous broken commit
r145 no_link
Michal Klocek
Adds private headers handling...
r193 install_build_private_headers.name = bild_private_headers
install_build_private_headers.output = $$CHART_BUILD_PRIVATE_HEADER_DIR/${QMAKE_FILE_BASE}.h
install_build_private_headers.input = PRIVATE_HEADERS
install_build_private_headers.commands = $$QMAKE_COPY \
${QMAKE_FILE_NAME} \
$$CHART_BUILD_PRIVATE_HEADER_DIR
install_build_private_headers.CONFIG += target_predeps \
no_link
Michal Klocek
Rename QChartSeries to QSeries
r360 QMAKE_EXTRA_COMPILERS += install_build_public_headers \
install_build_private_headers
Michal Klocek
Revert "Integrated scatter series"...
r39 chartversion.target = qchartversion_p.h
Michal Klocek
Fix previous broken commit
r145 chartversion.commands = @echo \
"build_time" \
> \
$$chartversion.target;
chartversion.depends = $$HEADERS \
$$SOURCES
Michal Klocek
Revert "Integrated scatter series"...
r39 PRE_TARGETDEPS += qchartversion_p.h
Michal Klocek
Fix previous broken commit
r145 QMAKE_CLEAN += qchartversion_p.h
Michal Klocek
Revert "Integrated scatter series"...
r39 QMAKE_EXTRA_TARGETS += chartversion
Michal Klocek
Fix previous broken commit
r145 unix:QMAKE_DISTCLEAN += -r \
$$CHART_BUILD_HEADER_DIR \
$$CHART_BUILD_LIB_DIR
win32:QMAKE_DISTCLEAN += /Q \
$$CHART_BUILD_HEADER_DIR \
$$CHART_BUILD_LIB_DIR