From 50d091c68c14c96b8ae8f32583e36386de8824f8 Mon Sep 17 00:00:00 2001 From: jfmartel Date: Sun, 11 Apr 2021 13:18:40 -0400 Subject: [PATCH] Ben des affaires... --- Sources/Chalet/CChalet.cpp | 35 + Sources/Chalet/CChalet.h | 4 + Sources/Chalet/ChaletData.cpp | 35 +- Sources/Chalet/ChaletData.h | 21 +- Sources/Chalet/ChaletGui.cpp | 180 + Sources/Chalet/ChaletGui.h | 5 + Sources/Chalet/ChaletGui.ui | 212 +- Sources/Chalet/ChaletMasterCtrlInterface.cpp | 19 + Sources/GuiMain.cpp | 4 +- Sources/GuiMain.h | 3 +- Sources/MasterCtrlInterface.cpp | 28 +- Sources/MasterCtrlInterface.h | 3 + Sources/ProtocolDefs.h | 5 + Sources/QCustomPlot/qcustomplot.cpp | 30214 +++++++++++++++++ Sources/QCustomPlot/qcustomplot.h | 6673 ++++ Sources/QCustomPlot/qcustomplot.qch | Bin 0 -> 2244608 bytes Sources/Tower/LEDAnimation.cpp | 6 + Sources/Tower/LEDAnimation.h | 16 + Sources/Tower/LEDAnimator.cpp | 16 + Sources/Tower/LEDAnimator.h | 24 + Sources/Tower/LedStringWidget.cpp | 129 + Sources/Tower/LedStringWidget.h | 25 + Sources/Tower/LightShowWidget.cpp | 145 + Sources/Tower/LightShowWidget.h | 47 + Sources/Tower/RGBLedWidget.cpp | 62 + Sources/Tower/RGBLedWidget.h | 27 + Sources/Tower/TowerLightShowGui.cpp | 18 + Sources/Tower/TowerLightShowGui.h | 25 + Sources/Tower/TowerLightShowGui.ui | 60 + SystemGui.pro | 26 +- SystemGui.pro.user.4.8-pre1 | 264 + ui_ChaletGui.h | 100 +- ui_TowerLightShowGui.h | 66 + 33 files changed, 38430 insertions(+), 67 deletions(-) create mode 100644 Sources/QCustomPlot/qcustomplot.cpp create mode 100644 Sources/QCustomPlot/qcustomplot.h create mode 100644 Sources/QCustomPlot/qcustomplot.qch create mode 100644 Sources/Tower/LEDAnimation.cpp create mode 100644 Sources/Tower/LEDAnimation.h create mode 100644 Sources/Tower/LEDAnimator.cpp create mode 100644 Sources/Tower/LEDAnimator.h create mode 100644 Sources/Tower/LedStringWidget.cpp create mode 100644 Sources/Tower/LedStringWidget.h create mode 100644 Sources/Tower/LightShowWidget.cpp create mode 100644 Sources/Tower/LightShowWidget.h create mode 100644 Sources/Tower/RGBLedWidget.cpp create mode 100644 Sources/Tower/RGBLedWidget.h create mode 100644 Sources/Tower/TowerLightShowGui.cpp create mode 100644 Sources/Tower/TowerLightShowGui.h create mode 100644 Sources/Tower/TowerLightShowGui.ui create mode 100644 SystemGui.pro.user.4.8-pre1 create mode 100644 ui_TowerLightShowGui.h diff --git a/Sources/Chalet/CChalet.cpp b/Sources/Chalet/CChalet.cpp index 2965989..85acc59 100644 --- a/Sources/Chalet/CChalet.cpp +++ b/Sources/Chalet/CChalet.cpp @@ -41,6 +41,16 @@ int CChalet::ChaletStatusReceived(CChaletMainStatus Status) return RET_OK; } +int CChalet::ChaletLogReceived(QByteArray *Log) +{ + mChaletGui->UpdateChaletLogPlot(Log); + return RET_OK; +} + +int CChalet::ChaletCommActivity() +{ + return mChaletGui->ChaletCommActivity(); +} int CChalet::WiFiToggleButtonPressed(bool RequestedState) { @@ -89,3 +99,28 @@ int CChalet::RebootCPUButtonPressed() { return mNetworkInterface->SendMasterCtrlCommand(CHALET_INTERFACE_REBOOT_CPU_REQUEST,QByteArray()); } + +int CChalet::ConnectedToMaster(bool connected) +{ + if(connected) + { + mNetworkInterface->SendMasterCtrlCommand(CHALET_INTERFACE_GET_TODAYS_DATA_LOG_REQUEST,QByteArray()); + } + return RET_OK; +} + +int CChalet::RequestChaletLogs(QDate StartDate) +{ + if(StartDate > QDate::currentDate()) + { + return false; + } + QByteArray StartDateData; + QDataStream Strm(&StartDateData,QIODevice::WriteOnly); + Strm.device()->seek(0); + + Strm << StartDate; + + return mNetworkInterface->SendMasterCtrlCommand(CHALET_INTERFACE_GET_DATA_LOG_REQUEST,StartDateData); + +} diff --git a/Sources/Chalet/CChalet.h b/Sources/Chalet/CChalet.h index d89613c..8658d0e 100644 --- a/Sources/Chalet/CChalet.h +++ b/Sources/Chalet/CChalet.h @@ -23,11 +23,15 @@ public: int Start(); int ChaletStatusReceived(CChaletMainStatus Status); + int ChaletLogReceived(QByteArray *Log); + int ConnectedToMaster(bool connected); + int ChaletCommActivity(); int WiFiToggleButtonPressed(bool RequestedState); int InverterToggleButtonPressed(bool RequestedState); int DoHarakiriButtonClicked(bool Verified); int RebootCPUButtonPressed(); + int RequestChaletLogs(QDate StartDate); signals: diff --git a/Sources/Chalet/ChaletData.cpp b/Sources/Chalet/ChaletData.cpp index 5c8cd62..847e7a0 100644 --- a/Sources/Chalet/ChaletData.cpp +++ b/Sources/Chalet/ChaletData.cpp @@ -7,8 +7,11 @@ CChaletMainStatus::CChaletMainStatus() { mInverterRelayStatus = CHALET_POWER_RELAY_UNKNOWN_STATE; mWiFiModuleStatus = WIFI_UNKNOWN_STATE; + mCurrentSensorStatus = CHALET_CURRENT_SENSOR_UNKNOWN_STATE; mBatteryCurrent = 0; mBatteryVoltage = 0; + mIsOnline = false; + mLostRequestPercentage = 0; } @@ -17,26 +20,36 @@ int CChaletMainStatus::FromByteArray(QByteArray Data) QDataStream Strm(Data); Strm.device()->seek(0); + Strm >> *this; + /* + Strm >> mInverterRelayStatus; Strm >> mWiFiModuleStatus; Strm >> mBatteryVoltage; Strm >> mBatteryCurrent; Strm >> mBatterySOC; - -// ChaletStatus[0] = GetChaletPowerRelayState(); //Inverter relay status -// ChaletStatus[1] = GetWiFiSate(); //Wifi Module state -// ChaletStatus[2] = 3; //Battery Voltage 1 -// ChaletStatus[3] = 4; //Battery voltage 2 -// ChaletStatus[4] = 5; //Battery current 1 -// ChaletStatus[5] = 6; //Batgtery current 2 -// ChaletStatus[6] = 7; //Battery SOC -// ChaletStatus[7] = 8; //Snatch -// ChaletStatus[8] = 9; -// ChaletStatus[9] = 10; + Strm >> mIsOnline; + Strm >> mCurrentSensorStatus; + Strm >> mLostRequestPercentage;*/ return RET_OK; } +QDataStream &operator>>(QDataStream &in, CChaletMainStatus &dest) +{ + in >> dest.mInverterRelayStatus + >> dest.mWiFiModuleStatus + >> dest.mBatteryVoltage + >> dest.mBatteryCurrent + >> dest.mBatterySOC + >> dest.mIsOnline + >> dest.mCurrentSensorStatus + >> dest.mLostRequestPercentage + >> dest.mThisStatusDateTime + >> dest.mLastLoraStatus + >> dest.mStatusToggleBit; + return in; +} //QByteArray CChaletMainStatus::ToByteArray() //{ // QByteArray Data; diff --git a/Sources/Chalet/ChaletData.h b/Sources/Chalet/ChaletData.h index d81ecb8..dd0648c 100644 --- a/Sources/Chalet/ChaletData.h +++ b/Sources/Chalet/ChaletData.h @@ -21,6 +21,13 @@ enum eChaletPowerRelayState CHALET_POWER_RELAY_UNKNOWN_STATE }; +enum eChaletCurrentSensorState +{ + CHALET_CURRENT_SENSOR_DEFECT_STATE = 0, + CHALET_CURRENT_SENSOR_OK_STATE, + CHALET_CURRENT_SENSOR_UNKNOWN_STATE +}; + class CChaletMainStatus { @@ -33,17 +40,25 @@ public: quint8 mInverterRelayStatus; quint8 mWiFiModuleStatus; + qint8 mCurrentSensorStatus; float mBatteryVoltage; - float mBatteryCurrent; - float mBatterySOC; + qint16 mBatteryCurrent; + qint16 mBatterySOC; bool mHarakiriDone; bool mIsOnline; + bool mStatusToggleBit; + QDateTime mLastLoraStatus; + QDateTime mThisStatusDateTime; + + float mLostRequestPercentage; + + }; - + QDataStream &operator>>(QDataStream &in, CChaletMainStatus &dest); #endif // CHALETDATA_H diff --git a/Sources/Chalet/ChaletGui.cpp b/Sources/Chalet/ChaletGui.cpp index 2cbd6fa..d7579fd 100644 --- a/Sources/Chalet/ChaletGui.cpp +++ b/Sources/Chalet/ChaletGui.cpp @@ -1,14 +1,19 @@ #include "ChaletGui.h" #include "ui_ChaletGui.h" #include "CChalet.h" +#include +#include CChaletGui::CChaletGui(QWidget *parent) : QWidget(parent), ui(new Ui::CChaletGui) { + + ui->setupUi(this); ui->mDoHarakiriButton->setEnabled(false); + ui->mLogStartDateEdit->setDate(QDate::currentDate()); connect(ui->mWiFiModuleONBtn,SIGNAL(clicked()),this,SLOT(WiFiONButtonClicked())); connect(ui->mWiFiModuleOFFBtn,SIGNAL(clicked(bool)),this,SLOT(WiFiOFFButtonClicked())); @@ -17,16 +22,84 @@ CChaletGui::CChaletGui(QWidget *parent) : connect(ui->mRebootCPUBtn,SIGNAL(clicked(bool)),this,SLOT(RebootCPUButtonClicked())); connect(ui->mDoHarakiriButton,SIGNAL(clicked(bool)),this,SLOT(DoHarakiriButtonClicked())); connect(ui->mEnableHarakiriChkBx,SIGNAL(clicked(bool)),this,SLOT(EnableHarakiriClicked(bool))); + connect(ui->mGetChaletLogButton,SIGNAL(clicked(bool)),this,SLOT(GetChaletLogsBtnClicked())); + + mBatteryPlotWidget = new QCustomPlot(ui->mPlotWidget); + mBatteryPlotWidget->resize(ui->mPlotWidget->size()); + + // create graph and assign data to it: + mBatteryPlotWidget->addGraph(); + + + // give the axes some labels: + mBatteryPlotWidget->xAxis->setLabel("time"); + mBatteryPlotWidget->yAxis->setLabel("Volts"); + + double now = QDateTime::currentDateTime().toSecsSinceEpoch(); + QSharedPointer dateTicker(new QCPAxisTickerDateTime); + dateTicker->setDateTimeFormat("hh:mm:ss\ndd MMM"); + mBatteryPlotWidget->xAxis->setTicker(dateTicker); + mBatteryPlotWidget->setInteractions(QCP::iRangeDrag | QCP::iRangeZoom | QCP::iSelectPlottables); + + QDateTime Now = QDateTime::currentDateTime().toLocalTime(); + + QDateTime midnight = Now; + midnight.setTime(QTime(0,0,0)); + QDateTime eod = Now; + eod.setTime(QTime(23,59,0)); + + //mBatteryPlotWidget->xAxis->setRange(0/*QCPAxisTickerDateTime::dateTimeToKey(midnight)*/,QCPAxisTickerDateTime::dateTimeToKey(eod)); +// mBatteryPlotWidget->xAxis->setRange(now, now+(2*3600)); + mBatteryPlotWidget->xAxis->setRange(midnight.toSecsSinceEpoch(), eod.toSecsSinceEpoch()); + + mBatteryPlotWidget->yAxis->setRange(12,15); + + mBatteryPlotWidget->graph(0)->addData(now,13.5); + + mBatteryPlotWidget->replot(); } CChaletGui::~CChaletGui() { delete ui; + delete mBatteryPlotWidget; } int CChaletGui::UpdateChaletStatus(CChaletMainStatus Status) { + static bool LastToggle = false; QString text; + + int Delta = QDateTime::currentDateTime().toSecsSinceEpoch() - Status.mLastLoraStatus.toSecsSinceEpoch(); + ui->mLasCommRequestReceivedLbl->setText(QString("Last response: %1 | %2 seconds ago...").arg(Status.mLastLoraStatus.toString("yyyy-MM-dd-hh:mm:ss")).arg(Delta)); + + if(Status.mIsOnline == false) + { + ui->mChaletOnlineStatusLbl->setText("OFFLINE"); + QPalette pal = QPalette(ui->mChaletOnlineStatusLbl->palette()); + pal.setColor(QPalette::WindowText,QColor(Qt::red)); + ui->mChaletOnlineStatusLbl->setPalette(pal); + + ui->mWiFiModuleStatusLabel->setText("Unknown"); + ui->mInverterRlyStatusLabel->setText("Unknown"); + ui->mCurrentSensorStateLbl->setText("Current Sensor: Unknown state"); + ui->mBatteryVoltageLabel->setText("Battery Voltage: Unknown"); + ui->mBatterySOCLabel->setText("Battery SOC: Unknown"); + ui->mSolarPanelCurrentLabel->setText("Solar Panel Current: Unknown"); + ui->mLostReqPercentLbl->setText("N/A"); + + + return RET_OK; + } + else if(ui->mChaletOnlineStatusLbl->text() == "OFFLINE") + { + ui->mChaletOnlineStatusLbl->setText("ONLINE"); + QPalette pal = QPalette(ui->mChaletOnlineStatusLbl->palette()); + pal.setColor(QPalette::WindowText,QColor(Qt::darkGreen)); + ui->mChaletOnlineStatusLbl->setPalette(pal); + } + + switch(Status.mWiFiModuleStatus) { case WIFI_CONNECTED_STATE: @@ -82,8 +155,91 @@ int CChaletGui::UpdateChaletStatus(CChaletMainStatus Status) } ui->mInverterRlyStatusLabel->setText(text); + switch(Status.mCurrentSensorStatus) + { + case CHALET_CURRENT_SENSOR_DEFECT_STATE: + { + text = "Current Sensor: DEFECTIVE"; + break; + } + case CHALET_CURRENT_SENSOR_OK_STATE: + { + text = "Current Sensor: OK"; + break; + } + case CHALET_CURRENT_SENSOR_UNKNOWN_STATE: + default: + { + text = "Current Sensor: Unknown state"; + break; + } + + + } + ui->mCurrentSensorStateLbl->setText(text); + + + QString Voltage = QString("Battery Voltage: %1").arg(Status.mBatteryVoltage); ui->mBatteryVoltageLabel->setText(Voltage); + ui->mVoltageLCD->display(Voltage); + + QString Current = QString("Solar Panel Current: %1").arg(Status.mBatteryCurrent); + ui->mSolarPanelCurrentLabel->setText(Current); + + QString SOC = QString("Battery SOC: %1").arg(Status.mBatterySOC); + ui->mBatterySOCLabel->setText(SOC); + + QString Percent = QString("Lost Requests: %1%").arg(Status.mLostRequestPercentage,0,'f',2); + ui->mLostReqPercentLbl->setText(Percent); + + + if(Status.mStatusToggleBit != LastToggle) + { + LastToggle = Status.mStatusToggleBit; + + if(ui->mChaletCommActivityLbl->isEnabled()) + { + ui->mChaletCommActivityLbl->setEnabled(false); + } + else + { + ui->mChaletCommActivityLbl->setEnabled(true); + } + + double CurTime = QDateTime::currentDateTime().toSecsSinceEpoch(); + mBatteryPlotWidget->graph(0)->addData(CurTime,Status.mBatteryVoltage); + + mBatteryPlotWidget->replot(); + } + return RET_OK; +} + +int CChaletGui::UpdateChaletLogPlot(QByteArray *Log) +{ + int NbRecords; + CChaletMainStatus CurData; + QVector x,y; + QDataStream Strm(Log,QIODevice::ReadOnly); + Strm.device()->seek(0); + + Strm >> NbRecords; + + if(NbRecords > 0) + { + for(int i = 0; i < NbRecords; i++) + { + Strm >> CurData; + x.append(CurData.mThisStatusDateTime.toSecsSinceEpoch()); + y.append(CurData.mBatteryVoltage); + } + } + + mBatteryPlotWidget->graph(0)->data().clear(); + mBatteryPlotWidget->graph(0)->setData(x,y); + mBatteryPlotWidget->xAxis->setRange(x.first(),x.last()); + mBatteryPlotWidget->replot(); + return RET_OK; } @@ -124,3 +280,27 @@ void CChaletGui::RebootCPUButtonClicked() ui->mDoHarakiriButton->setEnabled(false); } } + + int CChaletGui::ChaletCommActivity() + { + if(ui->mChaletCommActivityLbl->isEnabled()) + { + ui->mChaletCommActivityLbl->setEnabled(false); + } + else + { + ui->mChaletCommActivityLbl->setEnabled(true); + } + return RET_OK; + } + + void CChaletGui::GetChaletLogsBtnClicked() + { + QDate StartDate = ui->mLogStartDateEdit->date(); + if(StartDate > QDate::currentDate()) + { + QMessageBox::critical(this,"Error","Date is in the future!"); + return; + } + mProgramHandle->RequestChaletLogs(StartDate); + } diff --git a/Sources/Chalet/ChaletGui.h b/Sources/Chalet/ChaletGui.h index 4981606..59dc400 100644 --- a/Sources/Chalet/ChaletGui.h +++ b/Sources/Chalet/ChaletGui.h @@ -3,6 +3,7 @@ #include #include "ChaletData.h" +#include "QCustomPlot/qcustomplot.h" class CChalet; @@ -19,8 +20,11 @@ public: ~CChaletGui(); CChalet *mProgramHandle; + QCustomPlot *mBatteryPlotWidget; int UpdateChaletStatus(CChaletMainStatus Status); + int UpdateChaletLogPlot(QByteArray* Log); + int ChaletCommActivity(); private: Ui::CChaletGui *ui; @@ -33,6 +37,7 @@ public slots: void RebootCPUButtonClicked(); void DoHarakiriButtonClicked(); void EnableHarakiriClicked(bool); + void GetChaletLogsBtnClicked(); }; #endif // CHALETGUI_H diff --git a/Sources/Chalet/ChaletGui.ui b/Sources/Chalet/ChaletGui.ui index ec68576..eab5d35 100644 --- a/Sources/Chalet/ChaletGui.ui +++ b/Sources/Chalet/ChaletGui.ui @@ -6,7 +6,7 @@ 0 0 - 849 + 1205 598 @@ -16,9 +16,9 @@ - 370 - 20 - 201 + 460 + 10 + 71 31 @@ -36,9 +36,9 @@ - 350 - 90 - 211 + 198 + 50 + 210 16 @@ -49,9 +49,9 @@ - 360 - 130 - 131 + 198 + 90 + 130 16 @@ -62,8 +62,8 @@ - 180 - 130 + 26 + 90 31 16 @@ -75,8 +75,8 @@ - 280 - 90 + 126 + 50 61 22 @@ -88,8 +88,8 @@ - 280 - 130 + 126 + 90 61 23 @@ -101,8 +101,8 @@ - 224 - 90 + 70 + 50 51 23 @@ -114,8 +114,8 @@ - 224 - 130 + 70 + 90 51 23 @@ -127,8 +127,8 @@ - 170 - 90 + 16 + 50 51 20 @@ -140,8 +140,8 @@ - 220 - 170 + 66 + 130 75 23 @@ -151,9 +151,12 @@ + + false + - 640 + 850 80 111 17 @@ -166,7 +169,7 @@ - 620 + 830 50 151 81 @@ -192,8 +195,8 @@ - 170 - 210 + 147 + 170 241 16 @@ -202,6 +205,148 @@ Battery Voltage + + + + 450 + 50 + 91 + 21 + + + + + Terminal + 14 + 75 + true + + + + OFFLINE + + + + + + 147 + 190 + 241 + 16 + + + + Solar Panel Current: + + + + + + 147 + 210 + 241 + 16 + + + + Battery SOC: + + + + + + 147 + 230 + 241 + 16 + + + + Current Sensor: + + + + + + 770 + 200 + 241 + 16 + + + + Lost requests: + + + + + + 590 + 250 + 571 + 321 + + + + + + + 30 + 170 + 111 + 23 + + + + + + + 770 + 180 + 47 + 16 + + + + Activity!!! + + + + + + 770 + 160 + 301 + 16 + + + + Last Request: + + + + + + 950 + 220 + 110 + 22 + + + + + + + 1070 + 220 + 75 + 23 + + + + PushButton + + groupBox MainPageLabel mInverterRlyStatusLabel @@ -215,6 +360,17 @@ mRebootCPUBtn mEnableHarakiriChkBx mBatteryVoltageLabel + mChaletOnlineStatusLbl + mSolarPanelCurrentLabel + mBatterySOCLabel + mCurrentSensorStateLbl + mLostReqPercentLbl + mPlotWidget + mVoltageLCD + mChaletCommActivityLbl + mLasCommRequestReceivedLbl + mLogStartDateEdit + mGetChaletLogButton diff --git a/Sources/Chalet/ChaletMasterCtrlInterface.cpp b/Sources/Chalet/ChaletMasterCtrlInterface.cpp index 9ed44ea..9e179db 100644 --- a/Sources/Chalet/ChaletMasterCtrlInterface.cpp +++ b/Sources/Chalet/ChaletMasterCtrlInterface.cpp @@ -19,6 +19,8 @@ int CChaletMasterCtrlInterface::DeviceConnectedToMaster(bool Connected) if(Connected) { qDebug("Chalet Interface connected to Master."); + mProgramHandle->ConnectedToMaster(Connected); + } else return RET_ERROR; @@ -66,10 +68,27 @@ int CChaletMasterCtrlInterface::DeviceFrameReceived(int TargetDeviceID, int Targ { break; } + + case CHALET_INTERFACE_GET_TODAYS_DATA_LOG_RESPONSE: + { + mProgramHandle->ChaletLogReceived(&Data); + break; + } + case CHALET_INTERFACE_CHALET_ACTIVITY_RESPONSE: + { + mProgramHandle->ChaletCommActivity(); + break; + } + case CHALET_INTERFACE_GET_DATA_LOG_RESPONSE: + { + mProgramHandle->ChaletLogReceived(&Data); + break; + } case CHALET_INTERFACE_GENERAL_STATUS_REQUEST: case CHALET_INTERFACE_AC_POWER_STATE_STATUS_REQUEST: case CHALET_INTERFACE_AC_POWER_SET_STATE_REQUEST: case CHALET_INTERFACE_BATTERY_VOLTAGE_REQUEST: + case CHALET_INTERFACE_GET_TODAYS_DATA_LOG_REQUEST: default: { qDebug("Chalet: Invalid Ethernet Msg received from MasterCtrl: %d",MessageID); diff --git a/Sources/GuiMain.cpp b/Sources/GuiMain.cpp index 8aed425..203f972 100644 --- a/Sources/GuiMain.cpp +++ b/Sources/GuiMain.cpp @@ -9,13 +9,15 @@ CGuiMain::CGuiMain(QWidget *parent) mAvReceiverGui = new CAvReceiverGui(this); mMainTabWidget = new QTabWidget(this); mChaletGui = new CChaletGui(this); + mTowerLightShowGui = new CTowerLightShowGui; setCentralWidget(mMainTabWidget); mMainTabWidget->addTab(mSMSGui,"SMS"); mMainTabWidget->addTab(mSprinklerGui,"Sprinkler"); mMainTabWidget->addTab(mAvReceiverGui,"AV Receiver"); mMainTabWidget->addTab(mChaletGui,"Chalet"); + mMainTabWidget->addTab(mTowerLightShowGui,"Lightshow"); - resize(1024,768); + resize(1500,768); } CGuiMain::~CGuiMain() diff --git a/Sources/GuiMain.h b/Sources/GuiMain.h index 53d0e17..f42133f 100644 --- a/Sources/GuiMain.h +++ b/Sources/GuiMain.h @@ -8,7 +8,7 @@ #include "SprinklerGui.h" #include "AvReceiverGui.h" #include "ChaletGui.h" - +#include "TowerLightShowGui.h" class CGuiMain : public QMainWindow { @@ -23,6 +23,7 @@ public: CAvReceiverGui *mAvReceiverGui; CChaletGui *mChaletGui; QTabWidget *mMainTabWidget; + CTowerLightShowGui *mTowerLightShowGui; int RespawnMainWindow(); int HideMainWindow(); diff --git a/Sources/MasterCtrlInterface.cpp b/Sources/MasterCtrlInterface.cpp index 9681eab..e3fc5f5 100644 --- a/Sources/MasterCtrlInterface.cpp +++ b/Sources/MasterCtrlInterface.cpp @@ -3,6 +3,18 @@ CMasterCtrlInterface::CMasterCtrlInterface() { mNetworkCommSocket = 0; + + mNetworkCommSocket = new QTcpSocket(); + + connect(mNetworkCommSocket,SIGNAL(connected()),this,SLOT(NetworkSocketConnected())); + connect(mNetworkCommSocket,SIGNAL(disconnected()),this,SLOT(NetworkSocketDisconnected())); + connect(mNetworkCommSocket,SIGNAL(readyRead()),this,SLOT(NetworkSocketDataAvailable())); + +// mMasterReconnectTimer.setInterval(500); +// mMasterReconnectTimer.stop(); +// mMasterReconnectTimer.setSingleShot(false); +// connect(&mMasterReconnectTimer,SIGNAL(timeout()),this,SLOT(NetworkReconnectTimerExpired())); + } int CMasterCtrlInterface::ConnectToMasterCtrl() @@ -10,11 +22,11 @@ int CMasterCtrlInterface::ConnectToMasterCtrl() if(mNetworkCommSocket == 0) { mNetworkCommSocket = new QTcpSocket(); - } - connect(mNetworkCommSocket,SIGNAL(connected()),this,SLOT(NetworkSocketConnected())); - connect(mNetworkCommSocket,SIGNAL(disconnected()),this,SLOT(NetworkSocketDisconnected())); - connect(mNetworkCommSocket,SIGNAL(readyRead()),this,SLOT(NetworkSocketDataAvailable())); + connect(mNetworkCommSocket,SIGNAL(connected()),this,SLOT(NetworkSocketConnected())); + connect(mNetworkCommSocket,SIGNAL(disconnected()),this,SLOT(NetworkSocketDisconnected())); + connect(mNetworkCommSocket,SIGNAL(readyRead()),this,SLOT(NetworkSocketDataAvailable())); + } mNetworkCommSocket->connectToHost(mMasterCtrlIPAddress,mNetworkPort); return RET_OK; @@ -27,6 +39,7 @@ int CMasterCtrlInterface::DisconnectMasterCtrl() mNetworkCommSocket->close(); // mNetworkCommSocket->deleteLater(); } + mMasterReconnectTimer.start(); return RET_OK; } @@ -81,6 +94,7 @@ int CMasterCtrlInterface::NewFrameReceived(int TargetDeviceID, int TargetDeviceA void CMasterCtrlInterface::NetworkSocketConnected() { qDebug("Connected to MasterCtrl"); + mMasterReconnectTimer.stop(); } @@ -92,6 +106,7 @@ void CMasterCtrlInterface::NetworkSocketDataAvailable() void CMasterCtrlInterface::NetworkSocketDisconnected() { qDebug("Disconnected from MasterCtrl"); + mMasterReconnectTimer.start(); } @@ -101,3 +116,8 @@ int CMasterCtrlInterface::SendMasterCtrlCommand(unsigned char MessageID, QByteAr return RET_OK; } + +void CMasterCtrlInterface::NetworkReconnectTimerExpired() +{ + ConnectToMasterCtrl(); +} diff --git a/Sources/MasterCtrlInterface.h b/Sources/MasterCtrlInterface.h index 4d83d43..d10df4c 100644 --- a/Sources/MasterCtrlInterface.h +++ b/Sources/MasterCtrlInterface.h @@ -6,6 +6,7 @@ #include "ProtocolDefs.h" #include #include "SMSMessage.h" +#include class CMasterCtrlInterface : public QObject, public CNetworkProtocol { @@ -20,6 +21,7 @@ public: int mNetworkPort; QString mMasterCtrlIPAddress; int mMyDeviceID; + QTimer mMasterReconnectTimer; int ConnectToMasterCtrl(); int DisconnectMasterCtrl(); @@ -36,6 +38,7 @@ public slots: void NetworkSocketConnected(); void NetworkSocketDataAvailable(); void NetworkSocketDisconnected(); + void NetworkReconnectTimerExpired(); }; diff --git a/Sources/ProtocolDefs.h b/Sources/ProtocolDefs.h index 117615f..9d5e7b0 100644 --- a/Sources/ProtocolDefs.h +++ b/Sources/ProtocolDefs.h @@ -264,6 +264,11 @@ enum CHALET_INTERFACE_CMDS CHALET_INTERFACE_DO_HARAKIRI_RESPONSE, CHALET_INTERFACE_REBOOT_CPU_REQUEST, CHALET_INTERFACE_REBOOT_CPU_RESPONSE, + CHALET_INTERFACE_GET_TODAYS_DATA_LOG_REQUEST, + CHALET_INTERFACE_GET_TODAYS_DATA_LOG_RESPONSE, + CHALET_INTERFACE_CHALET_ACTIVITY_RESPONSE, + CHALET_INTERFACE_GET_DATA_LOG_REQUEST, + CHALET_INTERFACE_GET_DATA_LOG_RESPONSE, MAX_CHALET_INTERFACE_CMD diff --git a/Sources/QCustomPlot/qcustomplot.cpp b/Sources/QCustomPlot/qcustomplot.cpp new file mode 100644 index 0000000..51722e2 --- /dev/null +++ b/Sources/QCustomPlot/qcustomplot.cpp @@ -0,0 +1,30214 @@ +/*************************************************************************** +** ** +** QCustomPlot, an easy to use, modern plotting widget for Qt ** +** Copyright (C) 2011-2018 Emanuel Eichhammer ** +** ** +** This program is free software: you can redistribute it and/or modify ** +** it under the terms of the GNU General Public License as published by ** +** the Free Software Foundation, either version 3 of the License, or ** +** (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, ** +** but WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program. If not, see http://www.gnu.org/licenses/. ** +** ** +**************************************************************************** +** Author: Emanuel Eichhammer ** +** Website/Contact: http://www.qcustomplot.com/ ** +** Date: 25.06.18 ** +** Version: 2.0.1 ** +****************************************************************************/ + +#include "qcustomplot.h" + + +/* including file 'src/vector2d.cpp', size 7340 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPVector2D +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPVector2D + \brief Represents two doubles as a mathematical 2D vector + + This class acts as a replacement for QVector2D with the advantage of double precision instead of + single, and some convenience methods tailored for the QCustomPlot library. +*/ + +/* start documentation of inline functions */ + +/*! \fn void QCPVector2D::setX(double x) + + Sets the x coordinate of this vector to \a x. + + \see setY +*/ + +/*! \fn void QCPVector2D::setY(double y) + + Sets the y coordinate of this vector to \a y. + + \see setX +*/ + +/*! \fn double QCPVector2D::length() const + + Returns the length of this vector. + + \see lengthSquared +*/ + +/*! \fn double QCPVector2D::lengthSquared() const + + Returns the squared length of this vector. In some situations, e.g. when just trying to find the + shortest vector of a group, this is faster than calculating \ref length, because it avoids + calculation of a square root. + + \see length +*/ + +/*! \fn QPoint QCPVector2D::toPoint() const + + Returns a QPoint which has the x and y coordinates of this vector, truncating any floating point + information. + + \see toPointF +*/ + +/*! \fn QPointF QCPVector2D::toPointF() const + + Returns a QPointF which has the x and y coordinates of this vector. + + \see toPoint +*/ + +/*! \fn bool QCPVector2D::isNull() const + + Returns whether this vector is null. A vector is null if \c qIsNull returns true for both x and y + coordinates, i.e. if both are binary equal to 0. +*/ + +/*! \fn QCPVector2D QCPVector2D::perpendicular() const + + Returns a vector perpendicular to this vector, with the same length. +*/ + +/*! \fn double QCPVector2D::dot() const + + Returns the dot/scalar product of this vector with the specified vector \a vec. +*/ + +/* end documentation of inline functions */ + +/*! + Creates a QCPVector2D object and initializes the x and y coordinates to 0. +*/ +QCPVector2D::QCPVector2D() : + mX(0), + mY(0) +{ +} + +/*! + Creates a QCPVector2D object and initializes the \a x and \a y coordinates with the specified + values. +*/ +QCPVector2D::QCPVector2D(double x, double y) : + mX(x), + mY(y) +{ +} + +/*! + Creates a QCPVector2D object and initializes the x and y coordinates respective coordinates of + the specified \a point. +*/ +QCPVector2D::QCPVector2D(const QPoint &point) : + mX(point.x()), + mY(point.y()) +{ +} + +/*! + Creates a QCPVector2D object and initializes the x and y coordinates respective coordinates of + the specified \a point. +*/ +QCPVector2D::QCPVector2D(const QPointF &point) : + mX(point.x()), + mY(point.y()) +{ +} + +/*! + Normalizes this vector. After this operation, the length of the vector is equal to 1. + + \see normalized, length, lengthSquared +*/ +void QCPVector2D::normalize() +{ + double len = length(); + mX /= len; + mY /= len; +} + +/*! + Returns a normalized version of this vector. The length of the returned vector is equal to 1. + + \see normalize, length, lengthSquared +*/ +QCPVector2D QCPVector2D::normalized() const +{ + QCPVector2D result(mX, mY); + result.normalize(); + return result; +} + +/*! \overload + + Returns the squared shortest distance of this vector (interpreted as a point) to the finite line + segment given by \a start and \a end. + + \see distanceToStraightLine +*/ +double QCPVector2D::distanceSquaredToLine(const QCPVector2D &start, const QCPVector2D &end) const +{ + QCPVector2D v(end-start); + double vLengthSqr = v.lengthSquared(); + if (!qFuzzyIsNull(vLengthSqr)) + { + double mu = v.dot(*this-start)/vLengthSqr; + if (mu < 0) + return (*this-start).lengthSquared(); + else if (mu > 1) + return (*this-end).lengthSquared(); + else + return ((start + mu*v)-*this).lengthSquared(); + } else + return (*this-start).lengthSquared(); +} + +/*! \overload + + Returns the squared shortest distance of this vector (interpreted as a point) to the finite line + segment given by \a line. + + \see distanceToStraightLine +*/ +double QCPVector2D::distanceSquaredToLine(const QLineF &line) const +{ + return distanceSquaredToLine(QCPVector2D(line.p1()), QCPVector2D(line.p2())); +} + +/*! + Returns the shortest distance of this vector (interpreted as a point) to the infinite straight + line given by a \a base point and a \a direction vector. + + \see distanceSquaredToLine +*/ +double QCPVector2D::distanceToStraightLine(const QCPVector2D &base, const QCPVector2D &direction) const +{ + return qAbs((*this-base).dot(direction.perpendicular()))/direction.length(); +} + +/*! + Scales this vector by the given \a factor, i.e. the x and y components are multiplied by \a + factor. +*/ +QCPVector2D &QCPVector2D::operator*=(double factor) +{ + mX *= factor; + mY *= factor; + return *this; +} + +/*! + Scales this vector by the given \a divisor, i.e. the x and y components are divided by \a + divisor. +*/ +QCPVector2D &QCPVector2D::operator/=(double divisor) +{ + mX /= divisor; + mY /= divisor; + return *this; +} + +/*! + Adds the given \a vector to this vector component-wise. +*/ +QCPVector2D &QCPVector2D::operator+=(const QCPVector2D &vector) +{ + mX += vector.mX; + mY += vector.mY; + return *this; +} + +/*! + subtracts the given \a vector from this vector component-wise. +*/ +QCPVector2D &QCPVector2D::operator-=(const QCPVector2D &vector) +{ + mX -= vector.mX; + mY -= vector.mY; + return *this; +} +/* end of 'src/vector2d.cpp' */ + + +/* including file 'src/painter.cpp', size 8670 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPPainter +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPPainter + \brief QPainter subclass used internally + + This QPainter subclass is used to provide some extended functionality e.g. for tweaking position + consistency between antialiased and non-antialiased painting. Further it provides workarounds + for QPainter quirks. + + \warning This class intentionally hides non-virtual functions of QPainter, e.g. setPen, save and + restore. So while it is possible to pass a QCPPainter instance to a function that expects a + QPainter pointer, some of the workarounds and tweaks will be unavailable to the function (because + it will call the base class implementations of the functions actually hidden by QCPPainter). +*/ + +/*! + Creates a new QCPPainter instance and sets default values +*/ +QCPPainter::QCPPainter() : + QPainter(), + mModes(pmDefault), + mIsAntialiasing(false) +{ + // don't setRenderHint(QPainter::NonCosmeticDefautPen) here, because painter isn't active yet and + // a call to begin() will follow +} + +/*! + Creates a new QCPPainter instance on the specified paint \a device and sets default values. Just + like the analogous QPainter constructor, begins painting on \a device immediately. + + Like \ref begin, this method sets QPainter::NonCosmeticDefaultPen in Qt versions before Qt5. +*/ +QCPPainter::QCPPainter(QPaintDevice *device) : + QPainter(device), + mModes(pmDefault), + mIsAntialiasing(false) +{ +#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0) // before Qt5, default pens used to be cosmetic if NonCosmeticDefaultPen flag isn't set. So we set it to get consistency across Qt versions. + if (isActive()) + setRenderHint(QPainter::NonCosmeticDefaultPen); +#endif +} + +/*! + Sets the pen of the painter and applies certain fixes to it, depending on the mode of this + QCPPainter. + + \note this function hides the non-virtual base class implementation. +*/ +void QCPPainter::setPen(const QPen &pen) +{ + QPainter::setPen(pen); + if (mModes.testFlag(pmNonCosmetic)) + makeNonCosmetic(); +} + +/*! \overload + + Sets the pen (by color) of the painter and applies certain fixes to it, depending on the mode of + this QCPPainter. + + \note this function hides the non-virtual base class implementation. +*/ +void QCPPainter::setPen(const QColor &color) +{ + QPainter::setPen(color); + if (mModes.testFlag(pmNonCosmetic)) + makeNonCosmetic(); +} + +/*! \overload + + Sets the pen (by style) of the painter and applies certain fixes to it, depending on the mode of + this QCPPainter. + + \note this function hides the non-virtual base class implementation. +*/ +void QCPPainter::setPen(Qt::PenStyle penStyle) +{ + QPainter::setPen(penStyle); + if (mModes.testFlag(pmNonCosmetic)) + makeNonCosmetic(); +} + +/*! \overload + + Works around a Qt bug introduced with Qt 4.8 which makes drawing QLineF unpredictable when + antialiasing is disabled. Thus when antialiasing is disabled, it rounds the \a line to + integer coordinates and then passes it to the original drawLine. + + \note this function hides the non-virtual base class implementation. +*/ +void QCPPainter::drawLine(const QLineF &line) +{ + if (mIsAntialiasing || mModes.testFlag(pmVectorized)) + QPainter::drawLine(line); + else + QPainter::drawLine(line.toLine()); +} + +/*! + Sets whether painting uses antialiasing or not. Use this method instead of using setRenderHint + with QPainter::Antialiasing directly, as it allows QCPPainter to regain pixel exactness between + antialiased and non-antialiased painting (Since Qt < 5.0 uses slightly different coordinate systems for + AA/Non-AA painting). +*/ +void QCPPainter::setAntialiasing(bool enabled) +{ + setRenderHint(QPainter::Antialiasing, enabled); + if (mIsAntialiasing != enabled) + { + mIsAntialiasing = enabled; + if (!mModes.testFlag(pmVectorized)) // antialiasing half-pixel shift only needed for rasterized outputs + { + if (mIsAntialiasing) + translate(0.5, 0.5); + else + translate(-0.5, -0.5); + } + } +} + +/*! + Sets the mode of the painter. This controls whether the painter shall adjust its + fixes/workarounds optimized for certain output devices. +*/ +void QCPPainter::setModes(QCPPainter::PainterModes modes) +{ + mModes = modes; +} + +/*! + Sets the QPainter::NonCosmeticDefaultPen in Qt versions before Qt5 after beginning painting on \a + device. This is necessary to get cosmetic pen consistency across Qt versions, because since Qt5, + all pens are non-cosmetic by default, and in Qt4 this render hint must be set to get that + behaviour. + + The Constructor \ref QCPPainter(QPaintDevice *device) which directly starts painting also sets + the render hint as appropriate. + + \note this function hides the non-virtual base class implementation. +*/ +bool QCPPainter::begin(QPaintDevice *device) +{ + bool result = QPainter::begin(device); +#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0) // before Qt5, default pens used to be cosmetic if NonCosmeticDefaultPen flag isn't set. So we set it to get consistency across Qt versions. + if (result) + setRenderHint(QPainter::NonCosmeticDefaultPen); +#endif + return result; +} + +/*! \overload + + Sets the mode of the painter. This controls whether the painter shall adjust its + fixes/workarounds optimized for certain output devices. +*/ +void QCPPainter::setMode(QCPPainter::PainterMode mode, bool enabled) +{ + if (!enabled && mModes.testFlag(mode)) + mModes &= ~mode; + else if (enabled && !mModes.testFlag(mode)) + mModes |= mode; +} + +/*! + Saves the painter (see QPainter::save). Since QCPPainter adds some new internal state to + QPainter, the save/restore functions are reimplemented to also save/restore those members. + + \note this function hides the non-virtual base class implementation. + + \see restore +*/ +void QCPPainter::save() +{ + mAntialiasingStack.push(mIsAntialiasing); + QPainter::save(); +} + +/*! + Restores the painter (see QPainter::restore). Since QCPPainter adds some new internal state to + QPainter, the save/restore functions are reimplemented to also save/restore those members. + + \note this function hides the non-virtual base class implementation. + + \see save +*/ +void QCPPainter::restore() +{ + if (!mAntialiasingStack.isEmpty()) + mIsAntialiasing = mAntialiasingStack.pop(); + else + qDebug() << Q_FUNC_INFO << "Unbalanced save/restore"; + QPainter::restore(); +} + +/*! + Changes the pen width to 1 if it currently is 0. This function is called in the \ref setPen + overrides when the \ref pmNonCosmetic mode is set. +*/ +void QCPPainter::makeNonCosmetic() +{ + if (qFuzzyIsNull(pen().widthF())) + { + QPen p = pen(); + p.setWidth(1); + QPainter::setPen(p); + } +} +/* end of 'src/painter.cpp' */ + + +/* including file 'src/paintbuffer.cpp', size 18502 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPAbstractPaintBuffer +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPAbstractPaintBuffer + \brief The abstract base class for paint buffers, which define the rendering backend + + This abstract base class defines the basic interface that a paint buffer needs to provide in + order to be usable by QCustomPlot. + + A paint buffer manages both a surface to draw onto, and the matching paint device. The size of + the surface can be changed via \ref setSize. External classes (\ref QCustomPlot and \ref + QCPLayer) request a painter via \ref startPainting and then perform the draw calls. Once the + painting is complete, \ref donePainting is called, so the paint buffer implementation can do + clean up if necessary. Before rendering a frame, each paint buffer is usually filled with a color + using \ref clear (usually the color is \c Qt::transparent), to remove the contents of the + previous frame. + + The simplest paint buffer implementation is \ref QCPPaintBufferPixmap which allows regular + software rendering via the raster engine. Hardware accelerated rendering via pixel buffers and + frame buffer objects is provided by \ref QCPPaintBufferGlPbuffer and \ref QCPPaintBufferGlFbo. + They are used automatically if \ref QCustomPlot::setOpenGl is enabled. +*/ + +/* start documentation of pure virtual functions */ + +/*! \fn virtual QCPPainter *QCPAbstractPaintBuffer::startPainting() = 0 + + Returns a \ref QCPPainter which is ready to draw to this buffer. The ownership and thus the + responsibility to delete the painter after the painting operations are complete is given to the + caller of this method. + + Once you are done using the painter, delete the painter and call \ref donePainting. + + While a painter generated with this method is active, you must not call \ref setSize, \ref + setDevicePixelRatio or \ref clear. + + This method may return 0, if a painter couldn't be activated on the buffer. This usually + indicates a problem with the respective painting backend. +*/ + +/*! \fn virtual void QCPAbstractPaintBuffer::draw(QCPPainter *painter) const = 0 + + Draws the contents of this buffer with the provided \a painter. This is the method that is used + to finally join all paint buffers and draw them onto the screen. +*/ + +/*! \fn virtual void QCPAbstractPaintBuffer::clear(const QColor &color) = 0 + + Fills the entire buffer with the provided \a color. To have an empty transparent buffer, use the + named color \c Qt::transparent. + + This method must not be called if there is currently a painter (acquired with \ref startPainting) + active. +*/ + +/*! \fn virtual void QCPAbstractPaintBuffer::reallocateBuffer() = 0 + + Reallocates the internal buffer with the currently configured size (\ref setSize) and device + pixel ratio, if applicable (\ref setDevicePixelRatio). It is called as soon as any of those + properties are changed on this paint buffer. + + \note Subclasses of \ref QCPAbstractPaintBuffer must call their reimplementation of this method + in their constructor, to perform the first allocation (this can not be done by the base class + because calling pure virtual methods in base class constructors is not possible). +*/ + +/* end documentation of pure virtual functions */ +/* start documentation of inline functions */ + +/*! \fn virtual void QCPAbstractPaintBuffer::donePainting() + + If you have acquired a \ref QCPPainter to paint onto this paint buffer via \ref startPainting, + call this method as soon as you are done with the painting operations and have deleted the + painter. + + paint buffer subclasses may use this method to perform any type of cleanup that is necessary. The + default implementation does nothing. +*/ + +/* end documentation of inline functions */ + +/*! + Creates a paint buffer and initializes it with the provided \a size and \a devicePixelRatio. + + Subclasses must call their \ref reallocateBuffer implementation in their respective constructors. +*/ +QCPAbstractPaintBuffer::QCPAbstractPaintBuffer(const QSize &size, double devicePixelRatio) : + mSize(size), + mDevicePixelRatio(devicePixelRatio), + mInvalidated(true) +{ +} + +QCPAbstractPaintBuffer::~QCPAbstractPaintBuffer() +{ +} + +/*! + Sets the paint buffer size. + + The buffer is reallocated (by calling \ref reallocateBuffer), so any painters that were obtained + by \ref startPainting are invalidated and must not be used after calling this method. + + If \a size is already the current buffer size, this method does nothing. +*/ +void QCPAbstractPaintBuffer::setSize(const QSize &size) +{ + if (mSize != size) + { + mSize = size; + reallocateBuffer(); + } +} + +/*! + Sets the invalidated flag to \a invalidated. + + This mechanism is used internally in conjunction with isolated replotting of \ref QCPLayer + instances (in \ref QCPLayer::lmBuffered mode). If \ref QCPLayer::replot is called on a buffered + layer, i.e. an isolated repaint of only that layer (and its dedicated paint buffer) is requested, + QCustomPlot will decide depending on the invalidated flags of other paint buffers whether it also + replots them, instead of only the layer on which the replot was called. + + The invalidated flag is set to true when \ref QCPLayer association has changed, i.e. if layers + were added or removed from this buffer, or if they were reordered. It is set to false as soon as + all associated \ref QCPLayer instances are drawn onto the buffer. + + Under normal circumstances, it is not necessary to manually call this method. +*/ +void QCPAbstractPaintBuffer::setInvalidated(bool invalidated) +{ + mInvalidated = invalidated; +} + +/*! + Sets the the device pixel ratio to \a ratio. This is useful to render on high-DPI output devices. + The ratio is automatically set to the device pixel ratio used by the parent QCustomPlot instance. + + The buffer is reallocated (by calling \ref reallocateBuffer), so any painters that were obtained + by \ref startPainting are invalidated and must not be used after calling this method. + + \note This method is only available for Qt versions 5.4 and higher. +*/ +void QCPAbstractPaintBuffer::setDevicePixelRatio(double ratio) +{ + if (!qFuzzyCompare(ratio, mDevicePixelRatio)) + { +#ifdef QCP_DEVICEPIXELRATIO_SUPPORTED + mDevicePixelRatio = ratio; + reallocateBuffer(); +#else + qDebug() << Q_FUNC_INFO << "Device pixel ratios not supported for Qt versions before 5.4"; + mDevicePixelRatio = 1.0; +#endif + } +} + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPPaintBufferPixmap +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPPaintBufferPixmap + \brief A paint buffer based on QPixmap, using software raster rendering + + This paint buffer is the default and fall-back paint buffer which uses software rendering and + QPixmap as internal buffer. It is used if \ref QCustomPlot::setOpenGl is false. +*/ + +/*! + Creates a pixmap paint buffer instancen with the specified \a size and \a devicePixelRatio, if + applicable. +*/ +QCPPaintBufferPixmap::QCPPaintBufferPixmap(const QSize &size, double devicePixelRatio) : + QCPAbstractPaintBuffer(size, devicePixelRatio) +{ + QCPPaintBufferPixmap::reallocateBuffer(); +} + +QCPPaintBufferPixmap::~QCPPaintBufferPixmap() +{ +} + +/* inherits documentation from base class */ +QCPPainter *QCPPaintBufferPixmap::startPainting() +{ + QCPPainter *result = new QCPPainter(&mBuffer); + result->setRenderHint(QPainter::HighQualityAntialiasing); + return result; +} + +/* inherits documentation from base class */ +void QCPPaintBufferPixmap::draw(QCPPainter *painter) const +{ + if (painter && painter->isActive()) + painter->drawPixmap(0, 0, mBuffer); + else + qDebug() << Q_FUNC_INFO << "invalid or inactive painter passed"; +} + +/* inherits documentation from base class */ +void QCPPaintBufferPixmap::clear(const QColor &color) +{ + mBuffer.fill(color); +} + +/* inherits documentation from base class */ +void QCPPaintBufferPixmap::reallocateBuffer() +{ + setInvalidated(); + if (!qFuzzyCompare(1.0, mDevicePixelRatio)) + { +#ifdef QCP_DEVICEPIXELRATIO_SUPPORTED + mBuffer = QPixmap(mSize*mDevicePixelRatio); + mBuffer.setDevicePixelRatio(mDevicePixelRatio); +#else + qDebug() << Q_FUNC_INFO << "Device pixel ratios not supported for Qt versions before 5.4"; + mDevicePixelRatio = 1.0; + mBuffer = QPixmap(mSize); +#endif + } else + { + mBuffer = QPixmap(mSize); + } +} + + +#ifdef QCP_OPENGL_PBUFFER +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPPaintBufferGlPbuffer +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPPaintBufferGlPbuffer + \brief A paint buffer based on OpenGL pixel buffers, using hardware accelerated rendering + + This paint buffer is one of the OpenGL paint buffers which facilitate hardware accelerated plot + rendering. It is based on OpenGL pixel buffers (pbuffer) and is used in Qt versions before 5.0. + (See \ref QCPPaintBufferGlFbo used in newer Qt versions.) + + The OpenGL paint buffers are used if \ref QCustomPlot::setOpenGl is set to true, and if they are + supported by the system. +*/ + +/*! + Creates a \ref QCPPaintBufferGlPbuffer instance with the specified \a size and \a + devicePixelRatio, if applicable. + + The parameter \a multisamples defines how many samples are used per pixel. Higher values thus + result in higher quality antialiasing. If the specified \a multisamples value exceeds the + capability of the graphics hardware, the highest supported multisampling is used. +*/ +QCPPaintBufferGlPbuffer::QCPPaintBufferGlPbuffer(const QSize &size, double devicePixelRatio, int multisamples) : + QCPAbstractPaintBuffer(size, devicePixelRatio), + mGlPBuffer(0), + mMultisamples(qMax(0, multisamples)) +{ + QCPPaintBufferGlPbuffer::reallocateBuffer(); +} + +QCPPaintBufferGlPbuffer::~QCPPaintBufferGlPbuffer() +{ + if (mGlPBuffer) + delete mGlPBuffer; +} + +/* inherits documentation from base class */ +QCPPainter *QCPPaintBufferGlPbuffer::startPainting() +{ + if (!mGlPBuffer->isValid()) + { + qDebug() << Q_FUNC_INFO << "OpenGL frame buffer object doesn't exist, reallocateBuffer was not called?"; + return 0; + } + + QCPPainter *result = new QCPPainter(mGlPBuffer); + result->setRenderHint(QPainter::HighQualityAntialiasing); + return result; +} + +/* inherits documentation from base class */ +void QCPPaintBufferGlPbuffer::draw(QCPPainter *painter) const +{ + if (!painter || !painter->isActive()) + { + qDebug() << Q_FUNC_INFO << "invalid or inactive painter passed"; + return; + } + if (!mGlPBuffer->isValid()) + { + qDebug() << Q_FUNC_INFO << "OpenGL pbuffer isn't valid, reallocateBuffer was not called?"; + return; + } + painter->drawImage(0, 0, mGlPBuffer->toImage()); +} + +/* inherits documentation from base class */ +void QCPPaintBufferGlPbuffer::clear(const QColor &color) +{ + if (mGlPBuffer->isValid()) + { + mGlPBuffer->makeCurrent(); + glClearColor(color.redF(), color.greenF(), color.blueF(), color.alphaF()); + glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + mGlPBuffer->doneCurrent(); + } else + qDebug() << Q_FUNC_INFO << "OpenGL pbuffer invalid or context not current"; +} + +/* inherits documentation from base class */ +void QCPPaintBufferGlPbuffer::reallocateBuffer() +{ + if (mGlPBuffer) + delete mGlPBuffer; + + QGLFormat format; + format.setAlpha(true); + format.setSamples(mMultisamples); + mGlPBuffer = new QGLPixelBuffer(mSize, format); +} +#endif // QCP_OPENGL_PBUFFER + + +#ifdef QCP_OPENGL_FBO +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPPaintBufferGlFbo +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPPaintBufferGlFbo + \brief A paint buffer based on OpenGL frame buffers objects, using hardware accelerated rendering + + This paint buffer is one of the OpenGL paint buffers which facilitate hardware accelerated plot + rendering. It is based on OpenGL frame buffer objects (fbo) and is used in Qt versions 5.0 and + higher. (See \ref QCPPaintBufferGlPbuffer used in older Qt versions.) + + The OpenGL paint buffers are used if \ref QCustomPlot::setOpenGl is set to true, and if they are + supported by the system. +*/ + +/*! + Creates a \ref QCPPaintBufferGlFbo instance with the specified \a size and \a devicePixelRatio, + if applicable. + + All frame buffer objects shall share one OpenGL context and paint device, which need to be set up + externally and passed via \a glContext and \a glPaintDevice. The set-up is done in \ref + QCustomPlot::setupOpenGl and the context and paint device are managed by the parent QCustomPlot + instance. +*/ +QCPPaintBufferGlFbo::QCPPaintBufferGlFbo(const QSize &size, double devicePixelRatio, QWeakPointer glContext, QWeakPointer glPaintDevice) : + QCPAbstractPaintBuffer(size, devicePixelRatio), + mGlContext(glContext), + mGlPaintDevice(glPaintDevice), + mGlFrameBuffer(0) +{ + QCPPaintBufferGlFbo::reallocateBuffer(); +} + +QCPPaintBufferGlFbo::~QCPPaintBufferGlFbo() +{ + if (mGlFrameBuffer) + delete mGlFrameBuffer; +} + +/* inherits documentation from base class */ +QCPPainter *QCPPaintBufferGlFbo::startPainting() +{ + if (mGlPaintDevice.isNull()) + { + qDebug() << Q_FUNC_INFO << "OpenGL paint device doesn't exist"; + return 0; + } + if (!mGlFrameBuffer) + { + qDebug() << Q_FUNC_INFO << "OpenGL frame buffer object doesn't exist, reallocateBuffer was not called?"; + return 0; + } + + if (QOpenGLContext::currentContext() != mGlContext.data()) + mGlContext.data()->makeCurrent(mGlContext.data()->surface()); + mGlFrameBuffer->bind(); + QCPPainter *result = new QCPPainter(mGlPaintDevice.data()); + result->setRenderHint(QPainter::HighQualityAntialiasing); + return result; +} + +/* inherits documentation from base class */ +void QCPPaintBufferGlFbo::donePainting() +{ + if (mGlFrameBuffer && mGlFrameBuffer->isBound()) + mGlFrameBuffer->release(); + else + qDebug() << Q_FUNC_INFO << "Either OpenGL frame buffer not valid or was not bound"; +} + +/* inherits documentation from base class */ +void QCPPaintBufferGlFbo::draw(QCPPainter *painter) const +{ + if (!painter || !painter->isActive()) + { + qDebug() << Q_FUNC_INFO << "invalid or inactive painter passed"; + return; + } + if (!mGlFrameBuffer) + { + qDebug() << Q_FUNC_INFO << "OpenGL frame buffer object doesn't exist, reallocateBuffer was not called?"; + return; + } + painter->drawImage(0, 0, mGlFrameBuffer->toImage()); +} + +/* inherits documentation from base class */ +void QCPPaintBufferGlFbo::clear(const QColor &color) +{ + if (mGlContext.isNull()) + { + qDebug() << Q_FUNC_INFO << "OpenGL context doesn't exist"; + return; + } + if (!mGlFrameBuffer) + { + qDebug() << Q_FUNC_INFO << "OpenGL frame buffer object doesn't exist, reallocateBuffer was not called?"; + return; + } + + if (QOpenGLContext::currentContext() != mGlContext.data()) + mGlContext.data()->makeCurrent(mGlContext.data()->surface()); + mGlFrameBuffer->bind(); + glClearColor(color.redF(), color.greenF(), color.blueF(), color.alphaF()); + glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + mGlFrameBuffer->release(); +} + +/* inherits documentation from base class */ +void QCPPaintBufferGlFbo::reallocateBuffer() +{ + // release and delete possibly existing framebuffer: + if (mGlFrameBuffer) + { + if (mGlFrameBuffer->isBound()) + mGlFrameBuffer->release(); + delete mGlFrameBuffer; + mGlFrameBuffer = 0; + } + + if (mGlContext.isNull()) + { + qDebug() << Q_FUNC_INFO << "OpenGL context doesn't exist"; + return; + } + if (mGlPaintDevice.isNull()) + { + qDebug() << Q_FUNC_INFO << "OpenGL paint device doesn't exist"; + return; + } + + // create new fbo with appropriate size: + mGlContext.data()->makeCurrent(mGlContext.data()->surface()); + QOpenGLFramebufferObjectFormat frameBufferFormat; + frameBufferFormat.setSamples(mGlContext.data()->format().samples()); + frameBufferFormat.setAttachment(QOpenGLFramebufferObject::CombinedDepthStencil); + mGlFrameBuffer = new QOpenGLFramebufferObject(mSize*mDevicePixelRatio, frameBufferFormat); + if (mGlPaintDevice.data()->size() != mSize*mDevicePixelRatio) + mGlPaintDevice.data()->setSize(mSize*mDevicePixelRatio); +#ifdef QCP_DEVICEPIXELRATIO_SUPPORTED + mGlPaintDevice.data()->setDevicePixelRatio(mDevicePixelRatio); +#endif +} +#endif // QCP_OPENGL_FBO +/* end of 'src/paintbuffer.cpp' */ + + +/* including file 'src/layer.cpp', size 37304 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPLayer +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPLayer + \brief A layer that may contain objects, to control the rendering order + + The Layering system of QCustomPlot is the mechanism to control the rendering order of the + elements inside the plot. + + It is based on the two classes QCPLayer and QCPLayerable. QCustomPlot holds an ordered list of + one or more instances of QCPLayer (see QCustomPlot::addLayer, QCustomPlot::layer, + QCustomPlot::moveLayer, etc.). When replotting, QCustomPlot goes through the list of layers + bottom to top and successively draws the layerables of the layers into the paint buffer(s). + + A QCPLayer contains an ordered list of QCPLayerable instances. QCPLayerable is an abstract base + class from which almost all visible objects derive, like axes, grids, graphs, items, etc. + + \section qcplayer-defaultlayers Default layers + + Initially, QCustomPlot has six layers: "background", "grid", "main", "axes", "legend" and + "overlay" (in that order). On top is the "overlay" layer, which only contains the QCustomPlot's + selection rect (\ref QCustomPlot::selectionRect). The next two layers "axes" and "legend" contain + the default axes and legend, so they will be drawn above plottables. In the middle, there is the + "main" layer. It is initially empty and set as the current layer (see + QCustomPlot::setCurrentLayer). This means, all new plottables, items etc. are created on this + layer by default. Then comes the "grid" layer which contains the QCPGrid instances (which belong + tightly to QCPAxis, see \ref QCPAxis::grid). The Axis rect background shall be drawn behind + everything else, thus the default QCPAxisRect instance is placed on the "background" layer. Of + course, the layer affiliation of the individual objects can be changed as required (\ref + QCPLayerable::setLayer). + + \section qcplayer-ordering Controlling the rendering order via layers + + Controlling the ordering of layerables in the plot is easy: Create a new layer in the position + you want the layerable to be in, e.g. above "main", with \ref QCustomPlot::addLayer. Then set the + current layer with \ref QCustomPlot::setCurrentLayer to that new layer and finally create the + objects normally. They will be placed on the new layer automatically, due to the current layer + setting. Alternatively you could have also ignored the current layer setting and just moved the + objects with \ref QCPLayerable::setLayer to the desired layer after creating them. + + It is also possible to move whole layers. For example, If you want the grid to be shown in front + of all plottables/items on the "main" layer, just move it above "main" with + QCustomPlot::moveLayer. + + The rendering order within one layer is simply by order of creation or insertion. The item + created last (or added last to the layer), is drawn on top of all other objects on that layer. + + When a layer is deleted, the objects on it are not deleted with it, but fall on the layer below + the deleted layer, see QCustomPlot::removeLayer. + + \section qcplayer-buffering Replotting only a specific layer + + If the layer mode (\ref setMode) is set to \ref lmBuffered, you can replot only this specific + layer by calling \ref replot. In certain situations this can provide better replot performance, + compared with a full replot of all layers. Upon creation of a new layer, the layer mode is + initialized to \ref lmLogical. The only layer that is set to \ref lmBuffered in a new \ref + QCustomPlot instance is the "overlay" layer, containing the selection rect. +*/ + +/* start documentation of inline functions */ + +/*! \fn QList QCPLayer::children() const + + Returns a list of all layerables on this layer. The order corresponds to the rendering order: + layerables with higher indices are drawn above layerables with lower indices. +*/ + +/*! \fn int QCPLayer::index() const + + Returns the index this layer has in the QCustomPlot. The index is the integer number by which this layer can be + accessed via \ref QCustomPlot::layer. + + Layers with higher indices will be drawn above layers with lower indices. +*/ + +/* end documentation of inline functions */ + +/*! + Creates a new QCPLayer instance. + + Normally you shouldn't directly instantiate layers, use \ref QCustomPlot::addLayer instead. + + \warning It is not checked that \a layerName is actually a unique layer name in \a parentPlot. + This check is only performed by \ref QCustomPlot::addLayer. +*/ +QCPLayer::QCPLayer(QCustomPlot *parentPlot, const QString &layerName) : + QObject(parentPlot), + mParentPlot(parentPlot), + mName(layerName), + mIndex(-1), // will be set to a proper value by the QCustomPlot layer creation function + mVisible(true), + mMode(lmLogical) +{ + // Note: no need to make sure layerName is unique, because layer + // management is done with QCustomPlot functions. +} + +QCPLayer::~QCPLayer() +{ + // If child layerables are still on this layer, detach them, so they don't try to reach back to this + // then invalid layer once they get deleted/moved themselves. This only happens when layers are deleted + // directly, like in the QCustomPlot destructor. (The regular layer removal procedure for the user is to + // call QCustomPlot::removeLayer, which moves all layerables off this layer before deleting it.) + + while (!mChildren.isEmpty()) + mChildren.last()->setLayer(0); // removes itself from mChildren via removeChild() + + if (mParentPlot->currentLayer() == this) + qDebug() << Q_FUNC_INFO << "The parent plot's mCurrentLayer will be a dangling pointer. Should have been set to a valid layer or 0 beforehand."; +} + +/*! + Sets whether this layer is visible or not. If \a visible is set to false, all layerables on this + layer will be invisible. + + This function doesn't change the visibility property of the layerables (\ref + QCPLayerable::setVisible), but the \ref QCPLayerable::realVisibility of each layerable takes the + visibility of the parent layer into account. +*/ +void QCPLayer::setVisible(bool visible) +{ + mVisible = visible; +} + +/*! + Sets the rendering mode of this layer. + + If \a mode is set to \ref lmBuffered for a layer, it will be given a dedicated paint buffer by + the parent QCustomPlot instance. This means it may be replotted individually by calling \ref + QCPLayer::replot, without needing to replot all other layers. + + Layers which are set to \ref lmLogical (the default) are used only to define the rendering order + and can't be replotted individually. + + Note that each layer which is set to \ref lmBuffered requires additional paint buffers for the + layers below, above and for the layer itself. This increases the memory consumption and + (slightly) decreases the repainting speed because multiple paint buffers need to be joined. So + you should carefully choose which layers benefit from having their own paint buffer. A typical + example would be a layer which contains certain layerables (e.g. items) that need to be changed + and thus replotted regularly, while all other layerables on other layers stay static. By default, + only the topmost layer called "overlay" is in mode \ref lmBuffered, and contains the selection + rect. + + \see replot +*/ +void QCPLayer::setMode(QCPLayer::LayerMode mode) +{ + if (mMode != mode) + { + mMode = mode; + if (!mPaintBuffer.isNull()) + mPaintBuffer.data()->setInvalidated(); + } +} + +/*! \internal + + Draws the contents of this layer with the provided \a painter. + + \see replot, drawToPaintBuffer +*/ +void QCPLayer::draw(QCPPainter *painter) +{ + foreach (QCPLayerable *child, mChildren) + { + if (child->realVisibility()) + { + painter->save(); + painter->setClipRect(child->clipRect().translated(0, -1)); + child->applyDefaultAntialiasingHint(painter); + child->draw(painter); + painter->restore(); + } + } +} + +/*! \internal + + Draws the contents of this layer into the paint buffer which is associated with this layer. The + association is established by the parent QCustomPlot, which manages all paint buffers (see \ref + QCustomPlot::setupPaintBuffers). + + \see draw +*/ +void QCPLayer::drawToPaintBuffer() +{ + if (!mPaintBuffer.isNull()) + { + if (QCPPainter *painter = mPaintBuffer.data()->startPainting()) + { + if (painter->isActive()) + draw(painter); + else + qDebug() << Q_FUNC_INFO << "paint buffer returned inactive painter"; + delete painter; + mPaintBuffer.data()->donePainting(); + } else + qDebug() << Q_FUNC_INFO << "paint buffer returned zero painter"; + } else + qDebug() << Q_FUNC_INFO << "no valid paint buffer associated with this layer"; +} + +/*! + If the layer mode (\ref setMode) is set to \ref lmBuffered, this method allows replotting only + the layerables on this specific layer, without the need to replot all other layers (as a call to + \ref QCustomPlot::replot would do). + + If the layer mode is \ref lmLogical however, this method simply calls \ref QCustomPlot::replot on + the parent QCustomPlot instance. + + QCustomPlot also makes sure to replot all layers instead of only this one, if the layer ordering + has changed since the last full replot and the other paint buffers were thus invalidated. + + \see draw +*/ +void QCPLayer::replot() +{ + if (mMode == lmBuffered && !mParentPlot->hasInvalidatedPaintBuffers()) + { + if (!mPaintBuffer.isNull()) + { + mPaintBuffer.data()->clear(Qt::transparent); + drawToPaintBuffer(); + mPaintBuffer.data()->setInvalidated(false); + mParentPlot->update(); + } else + qDebug() << Q_FUNC_INFO << "no valid paint buffer associated with this layer"; + } else if (mMode == lmLogical) + mParentPlot->replot(); +} + +/*! \internal + + Adds the \a layerable to the list of this layer. If \a prepend is set to true, the layerable will + be prepended to the list, i.e. be drawn beneath the other layerables already in the list. + + This function does not change the \a mLayer member of \a layerable to this layer. (Use + QCPLayerable::setLayer to change the layer of an object, not this function.) + + \see removeChild +*/ +void QCPLayer::addChild(QCPLayerable *layerable, bool prepend) +{ + if (!mChildren.contains(layerable)) + { + if (prepend) + mChildren.prepend(layerable); + else + mChildren.append(layerable); + if (!mPaintBuffer.isNull()) + mPaintBuffer.data()->setInvalidated(); + } else + qDebug() << Q_FUNC_INFO << "layerable is already child of this layer" << reinterpret_cast(layerable); +} + +/*! \internal + + Removes the \a layerable from the list of this layer. + + This function does not change the \a mLayer member of \a layerable. (Use QCPLayerable::setLayer + to change the layer of an object, not this function.) + + \see addChild +*/ +void QCPLayer::removeChild(QCPLayerable *layerable) +{ + if (mChildren.removeOne(layerable)) + { + if (!mPaintBuffer.isNull()) + mPaintBuffer.data()->setInvalidated(); + } else + qDebug() << Q_FUNC_INFO << "layerable is not child of this layer" << reinterpret_cast(layerable); +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPLayerable +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPLayerable + \brief Base class for all drawable objects + + This is the abstract base class most visible objects derive from, e.g. plottables, axes, grid + etc. + + Every layerable is on a layer (QCPLayer) which allows controlling the rendering order by stacking + the layers accordingly. + + For details about the layering mechanism, see the QCPLayer documentation. +*/ + +/* start documentation of inline functions */ + +/*! \fn QCPLayerable *QCPLayerable::parentLayerable() const + + Returns the parent layerable of this layerable. The parent layerable is used to provide + visibility hierarchies in conjunction with the method \ref realVisibility. This way, layerables + only get drawn if their parent layerables are visible, too. + + Note that a parent layerable is not necessarily also the QObject parent for memory management. + Further, a layerable doesn't always have a parent layerable, so this function may return 0. + + A parent layerable is set implicitly when placed inside layout elements and doesn't need to be + set manually by the user. +*/ + +/* end documentation of inline functions */ +/* start documentation of pure virtual functions */ + +/*! \fn virtual void QCPLayerable::applyDefaultAntialiasingHint(QCPPainter *painter) const = 0 + \internal + + This function applies the default antialiasing setting to the specified \a painter, using the + function \ref applyAntialiasingHint. It is the antialiasing state the painter is put in, when + \ref draw is called on the layerable. If the layerable has multiple entities whose antialiasing + setting may be specified individually, this function should set the antialiasing state of the + most prominent entity. In this case however, the \ref draw function usually calls the specialized + versions of this function before drawing each entity, effectively overriding the setting of the + default antialiasing hint. + + First example: QCPGraph has multiple entities that have an antialiasing setting: The graph + line, fills and scatters. Those can be configured via QCPGraph::setAntialiased, + QCPGraph::setAntialiasedFill and QCPGraph::setAntialiasedScatters. Consequently, there isn't only + the QCPGraph::applyDefaultAntialiasingHint function (which corresponds to the graph line's + antialiasing), but specialized ones like QCPGraph::applyFillAntialiasingHint and + QCPGraph::applyScattersAntialiasingHint. So before drawing one of those entities, QCPGraph::draw + calls the respective specialized applyAntialiasingHint function. + + Second example: QCPItemLine consists only of a line so there is only one antialiasing + setting which can be controlled with QCPItemLine::setAntialiased. (This function is inherited by + all layerables. The specialized functions, as seen on QCPGraph, must be added explicitly to the + respective layerable subclass.) Consequently it only has the normal + QCPItemLine::applyDefaultAntialiasingHint. The \ref QCPItemLine::draw function doesn't need to + care about setting any antialiasing states, because the default antialiasing hint is already set + on the painter when the \ref draw function is called, and that's the state it wants to draw the + line with. +*/ + +/*! \fn virtual void QCPLayerable::draw(QCPPainter *painter) const = 0 + \internal + + This function draws the layerable with the specified \a painter. It is only called by + QCustomPlot, if the layerable is visible (\ref setVisible). + + Before this function is called, the painter's antialiasing state is set via \ref + applyDefaultAntialiasingHint, see the documentation there. Further, the clipping rectangle was + set to \ref clipRect. +*/ + +/* end documentation of pure virtual functions */ +/* start documentation of signals */ + +/*! \fn void QCPLayerable::layerChanged(QCPLayer *newLayer); + + This signal is emitted when the layer of this layerable changes, i.e. this layerable is moved to + a different layer. + + \see setLayer +*/ + +/* end documentation of signals */ + +/*! + Creates a new QCPLayerable instance. + + Since QCPLayerable is an abstract base class, it can't be instantiated directly. Use one of the + derived classes. + + If \a plot is provided, it automatically places itself on the layer named \a targetLayer. If \a + targetLayer is an empty string, it places itself on the current layer of the plot (see \ref + QCustomPlot::setCurrentLayer). + + It is possible to provide 0 as \a plot. In that case, you should assign a parent plot at a later + time with \ref initializeParentPlot. + + The layerable's parent layerable is set to \a parentLayerable, if provided. Direct layerable + parents are mainly used to control visibility in a hierarchy of layerables. This means a + layerable is only drawn, if all its ancestor layerables are also visible. Note that \a + parentLayerable does not become the QObject-parent (for memory management) of this layerable, \a + plot does. It is not uncommon to set the QObject-parent to something else in the constructors of + QCPLayerable subclasses, to guarantee a working destruction hierarchy. +*/ +QCPLayerable::QCPLayerable(QCustomPlot *plot, QString targetLayer, QCPLayerable *parentLayerable) : + QObject(plot), + mVisible(true), + mParentPlot(plot), + mParentLayerable(parentLayerable), + mLayer(0), + mAntialiased(true) +{ + if (mParentPlot) + { + if (targetLayer.isEmpty()) + setLayer(mParentPlot->currentLayer()); + else if (!setLayer(targetLayer)) + qDebug() << Q_FUNC_INFO << "setting QCPlayerable initial layer to" << targetLayer << "failed."; + } +} + +QCPLayerable::~QCPLayerable() +{ + if (mLayer) + { + mLayer->removeChild(this); + mLayer = 0; + } +} + +/*! + Sets the visibility of this layerable object. If an object is not visible, it will not be drawn + on the QCustomPlot surface, and user interaction with it (e.g. click and selection) is not + possible. +*/ +void QCPLayerable::setVisible(bool on) +{ + mVisible = on; +} + +/*! + Sets the \a layer of this layerable object. The object will be placed on top of the other objects + already on \a layer. + + If \a layer is 0, this layerable will not be on any layer and thus not appear in the plot (or + interact/receive events). + + Returns true if the layer of this layerable was successfully changed to \a layer. +*/ +bool QCPLayerable::setLayer(QCPLayer *layer) +{ + return moveToLayer(layer, false); +} + +/*! \overload + Sets the layer of this layerable object by name + + Returns true on success, i.e. if \a layerName is a valid layer name. +*/ +bool QCPLayerable::setLayer(const QString &layerName) +{ + if (!mParentPlot) + { + qDebug() << Q_FUNC_INFO << "no parent QCustomPlot set"; + return false; + } + if (QCPLayer *layer = mParentPlot->layer(layerName)) + { + return setLayer(layer); + } else + { + qDebug() << Q_FUNC_INFO << "there is no layer with name" << layerName; + return false; + } +} + +/*! + Sets whether this object will be drawn antialiased or not. + + Note that antialiasing settings may be overridden by QCustomPlot::setAntialiasedElements and + QCustomPlot::setNotAntialiasedElements. +*/ +void QCPLayerable::setAntialiased(bool enabled) +{ + mAntialiased = enabled; +} + +/*! + Returns whether this layerable is visible, taking the visibility of the layerable parent and the + visibility of this layerable's layer into account. This is the method that is consulted to decide + whether a layerable shall be drawn or not. + + If this layerable has a direct layerable parent (usually set via hierarchies implemented in + subclasses, like in the case of \ref QCPLayoutElement), this function returns true only if this + layerable has its visibility set to true and the parent layerable's \ref realVisibility returns + true. +*/ +bool QCPLayerable::realVisibility() const +{ + return mVisible && (!mLayer || mLayer->visible()) && (!mParentLayerable || mParentLayerable.data()->realVisibility()); +} + +/*! + This function is used to decide whether a click hits a layerable object or not. + + \a pos is a point in pixel coordinates on the QCustomPlot surface. This function returns the + shortest pixel distance of this point to the object. If the object is either invisible or the + distance couldn't be determined, -1.0 is returned. Further, if \a onlySelectable is true and the + object is not selectable, -1.0 is returned, too. + + If the object is represented not by single lines but by an area like a \ref QCPItemText or the + bars of a \ref QCPBars plottable, a click inside the area should also be considered a hit. In + these cases this function thus returns a constant value greater zero but still below the parent + plot's selection tolerance. (typically the selectionTolerance multiplied by 0.99). + + Providing a constant value for area objects allows selecting line objects even when they are + obscured by such area objects, by clicking close to the lines (i.e. closer than + 0.99*selectionTolerance). + + The actual setting of the selection state is not done by this function. This is handled by the + parent QCustomPlot when the mouseReleaseEvent occurs, and the finally selected object is notified + via the \ref selectEvent/\ref deselectEvent methods. + + \a details is an optional output parameter. Every layerable subclass may place any information + in \a details. This information will be passed to \ref selectEvent when the parent QCustomPlot + decides on the basis of this selectTest call, that the object was successfully selected. The + subsequent call to \ref selectEvent will carry the \a details. This is useful for multi-part + objects (like QCPAxis). This way, a possibly complex calculation to decide which part was clicked + is only done once in \ref selectTest. The result (i.e. the actually clicked part) can then be + placed in \a details. So in the subsequent \ref selectEvent, the decision which part was + selected doesn't have to be done a second time for a single selection operation. + + In the case of 1D Plottables (\ref QCPAbstractPlottable1D, like \ref QCPGraph or \ref QCPBars) \a + details will be set to a \ref QCPDataSelection, describing the closest data point to \a pos. + + You may pass 0 as \a details to indicate that you are not interested in those selection details. + + \see selectEvent, deselectEvent, mousePressEvent, wheelEvent, QCustomPlot::setInteractions, + QCPAbstractPlottable1D::selectTestRect +*/ +double QCPLayerable::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(pos) + Q_UNUSED(onlySelectable) + Q_UNUSED(details) + return -1.0; +} + +/*! \internal + + Sets the parent plot of this layerable. Use this function once to set the parent plot if you have + passed 0 in the constructor. It can not be used to move a layerable from one QCustomPlot to + another one. + + Note that, unlike when passing a non-null parent plot in the constructor, this function does not + make \a parentPlot the QObject-parent of this layerable. If you want this, call + QObject::setParent(\a parentPlot) in addition to this function. + + Further, you will probably want to set a layer (\ref setLayer) after calling this function, to + make the layerable appear on the QCustomPlot. + + The parent plot change will be propagated to subclasses via a call to \ref parentPlotInitialized + so they can react accordingly (e.g. also initialize the parent plot of child layerables, like + QCPLayout does). +*/ +void QCPLayerable::initializeParentPlot(QCustomPlot *parentPlot) +{ + if (mParentPlot) + { + qDebug() << Q_FUNC_INFO << "called with mParentPlot already initialized"; + return; + } + + if (!parentPlot) + qDebug() << Q_FUNC_INFO << "called with parentPlot zero"; + + mParentPlot = parentPlot; + parentPlotInitialized(mParentPlot); +} + +/*! \internal + + Sets the parent layerable of this layerable to \a parentLayerable. Note that \a parentLayerable does not + become the QObject-parent (for memory management) of this layerable. + + The parent layerable has influence on the return value of the \ref realVisibility method. Only + layerables with a fully visible parent tree will return true for \ref realVisibility, and thus be + drawn. + + \see realVisibility +*/ +void QCPLayerable::setParentLayerable(QCPLayerable *parentLayerable) +{ + mParentLayerable = parentLayerable; +} + +/*! \internal + + Moves this layerable object to \a layer. If \a prepend is true, this object will be prepended to + the new layer's list, i.e. it will be drawn below the objects already on the layer. If it is + false, the object will be appended. + + Returns true on success, i.e. if \a layer is a valid layer. +*/ +bool QCPLayerable::moveToLayer(QCPLayer *layer, bool prepend) +{ + if (layer && !mParentPlot) + { + qDebug() << Q_FUNC_INFO << "no parent QCustomPlot set"; + return false; + } + if (layer && layer->parentPlot() != mParentPlot) + { + qDebug() << Q_FUNC_INFO << "layer" << layer->name() << "is not in same QCustomPlot as this layerable"; + return false; + } + + QCPLayer *oldLayer = mLayer; + if (mLayer) + mLayer->removeChild(this); + mLayer = layer; + if (mLayer) + mLayer->addChild(this, prepend); + if (mLayer != oldLayer) + emit layerChanged(mLayer); + return true; +} + +/*! \internal + + Sets the QCPainter::setAntialiasing state on the provided \a painter, depending on the \a + localAntialiased value as well as the overrides \ref QCustomPlot::setAntialiasedElements and \ref + QCustomPlot::setNotAntialiasedElements. Which override enum this function takes into account is + controlled via \a overrideElement. +*/ +void QCPLayerable::applyAntialiasingHint(QCPPainter *painter, bool localAntialiased, QCP::AntialiasedElement overrideElement) const +{ + if (mParentPlot && mParentPlot->notAntialiasedElements().testFlag(overrideElement)) + painter->setAntialiasing(false); + else if (mParentPlot && mParentPlot->antialiasedElements().testFlag(overrideElement)) + painter->setAntialiasing(true); + else + painter->setAntialiasing(localAntialiased); +} + +/*! \internal + + This function is called by \ref initializeParentPlot, to allow subclasses to react on the setting + of a parent plot. This is the case when 0 was passed as parent plot in the constructor, and the + parent plot is set at a later time. + + For example, QCPLayoutElement/QCPLayout hierarchies may be created independently of any + QCustomPlot at first. When they are then added to a layout inside the QCustomPlot, the top level + element of the hierarchy gets its parent plot initialized with \ref initializeParentPlot. To + propagate the parent plot to all the children of the hierarchy, the top level element then uses + this function to pass the parent plot on to its child elements. + + The default implementation does nothing. + + \see initializeParentPlot +*/ +void QCPLayerable::parentPlotInitialized(QCustomPlot *parentPlot) +{ + Q_UNUSED(parentPlot) +} + +/*! \internal + + Returns the selection category this layerable shall belong to. The selection category is used in + conjunction with \ref QCustomPlot::setInteractions to control which objects are selectable and + which aren't. + + Subclasses that don't fit any of the normal \ref QCP::Interaction values can use \ref + QCP::iSelectOther. This is what the default implementation returns. + + \see QCustomPlot::setInteractions +*/ +QCP::Interaction QCPLayerable::selectionCategory() const +{ + return QCP::iSelectOther; +} + +/*! \internal + + Returns the clipping rectangle of this layerable object. By default, this is the viewport of the + parent QCustomPlot. Specific subclasses may reimplement this function to provide different + clipping rects. + + The returned clipping rect is set on the painter before the draw function of the respective + object is called. +*/ +QRect QCPLayerable::clipRect() const +{ + if (mParentPlot) + return mParentPlot->viewport(); + else + return QRect(); +} + +/*! \internal + + This event is called when the layerable shall be selected, as a consequence of a click by the + user. Subclasses should react to it by setting their selection state appropriately. The default + implementation does nothing. + + \a event is the mouse event that caused the selection. \a additive indicates, whether the user + was holding the multi-select-modifier while performing the selection (see \ref + QCustomPlot::setMultiSelectModifier). if \a additive is true, the selection state must be toggled + (i.e. become selected when unselected and unselected when selected). + + Every selectEvent is preceded by a call to \ref selectTest, which has returned positively (i.e. + returned a value greater than 0 and less than the selection tolerance of the parent QCustomPlot). + The \a details data you output from \ref selectTest is fed back via \a details here. You may + use it to transport any kind of information from the selectTest to the possibly subsequent + selectEvent. Usually \a details is used to transfer which part was clicked, if it is a layerable + that has multiple individually selectable parts (like QCPAxis). This way selectEvent doesn't need + to do the calculation again to find out which part was actually clicked. + + \a selectionStateChanged is an output parameter. If the pointer is non-null, this function must + set the value either to true or false, depending on whether the selection state of this layerable + was actually changed. For layerables that only are selectable as a whole and not in parts, this + is simple: if \a additive is true, \a selectionStateChanged must also be set to true, because the + selection toggles. If \a additive is false, \a selectionStateChanged is only set to true, if the + layerable was previously unselected and now is switched to the selected state. + + \see selectTest, deselectEvent +*/ +void QCPLayerable::selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) +{ + Q_UNUSED(event) + Q_UNUSED(additive) + Q_UNUSED(details) + Q_UNUSED(selectionStateChanged) +} + +/*! \internal + + This event is called when the layerable shall be deselected, either as consequence of a user + interaction or a call to \ref QCustomPlot::deselectAll. Subclasses should react to it by + unsetting their selection appropriately. + + just as in \ref selectEvent, the output parameter \a selectionStateChanged (if non-null), must + return true or false when the selection state of this layerable has changed or not changed, + respectively. + + \see selectTest, selectEvent +*/ +void QCPLayerable::deselectEvent(bool *selectionStateChanged) +{ + Q_UNUSED(selectionStateChanged) +} + +/*! + This event gets called when the user presses a mouse button while the cursor is over the + layerable. Whether a cursor is over the layerable is decided by a preceding call to \ref + selectTest. + + The current pixel position of the cursor on the QCustomPlot widget is accessible via \c + event->pos(). The parameter \a details contains layerable-specific details about the hit, which + were generated in the previous call to \ref selectTest. For example, One-dimensional plottables + like \ref QCPGraph or \ref QCPBars convey the clicked data point in the \a details parameter, as + \ref QCPDataSelection packed as QVariant. Multi-part objects convey the specific \c + SelectablePart that was hit (e.g. \ref QCPAxis::SelectablePart in the case of axes). + + QCustomPlot uses an event propagation system that works the same as Qt's system. If your + layerable doesn't reimplement the \ref mousePressEvent or explicitly calls \c event->ignore() in + its reimplementation, the event will be propagated to the next layerable in the stacking order. + + Once a layerable has accepted the \ref mousePressEvent, it is considered the mouse grabber and + will receive all following calls to \ref mouseMoveEvent or \ref mouseReleaseEvent for this mouse + interaction (a "mouse interaction" in this context ends with the release). + + The default implementation does nothing except explicitly ignoring the event with \c + event->ignore(). + + \see mouseMoveEvent, mouseReleaseEvent, mouseDoubleClickEvent, wheelEvent +*/ +void QCPLayerable::mousePressEvent(QMouseEvent *event, const QVariant &details) +{ + Q_UNUSED(details) + event->ignore(); +} + +/*! + This event gets called when the user moves the mouse while holding a mouse button, after this + layerable has become the mouse grabber by accepting the preceding \ref mousePressEvent. + + The current pixel position of the cursor on the QCustomPlot widget is accessible via \c + event->pos(). The parameter \a startPos indicates the position where the initial \ref + mousePressEvent occured, that started the mouse interaction. + + The default implementation does nothing. + + \see mousePressEvent, mouseReleaseEvent, mouseDoubleClickEvent, wheelEvent +*/ +void QCPLayerable::mouseMoveEvent(QMouseEvent *event, const QPointF &startPos) +{ + Q_UNUSED(startPos) + event->ignore(); +} + +/*! + This event gets called when the user releases the mouse button, after this layerable has become + the mouse grabber by accepting the preceding \ref mousePressEvent. + + The current pixel position of the cursor on the QCustomPlot widget is accessible via \c + event->pos(). The parameter \a startPos indicates the position where the initial \ref + mousePressEvent occured, that started the mouse interaction. + + The default implementation does nothing. + + \see mousePressEvent, mouseMoveEvent, mouseDoubleClickEvent, wheelEvent +*/ +void QCPLayerable::mouseReleaseEvent(QMouseEvent *event, const QPointF &startPos) +{ + Q_UNUSED(startPos) + event->ignore(); +} + +/*! + This event gets called when the user presses the mouse button a second time in a double-click, + while the cursor is over the layerable. Whether a cursor is over the layerable is decided by a + preceding call to \ref selectTest. + + The \ref mouseDoubleClickEvent is called instead of the second \ref mousePressEvent. So in the + case of a double-click, the event succession is + pressEvent – releaseEvent – doubleClickEvent – releaseEvent. + + The current pixel position of the cursor on the QCustomPlot widget is accessible via \c + event->pos(). The parameter \a details contains layerable-specific details about the hit, which + were generated in the previous call to \ref selectTest. For example, One-dimensional plottables + like \ref QCPGraph or \ref QCPBars convey the clicked data point in the \a details parameter, as + \ref QCPDataSelection packed as QVariant. Multi-part objects convey the specific \c + SelectablePart that was hit (e.g. \ref QCPAxis::SelectablePart in the case of axes). + + Similarly to \ref mousePressEvent, once a layerable has accepted the \ref mouseDoubleClickEvent, + it is considered the mouse grabber and will receive all following calls to \ref mouseMoveEvent + and \ref mouseReleaseEvent for this mouse interaction (a "mouse interaction" in this context ends + with the release). + + The default implementation does nothing except explicitly ignoring the event with \c + event->ignore(). + + \see mousePressEvent, mouseMoveEvent, mouseReleaseEvent, wheelEvent +*/ +void QCPLayerable::mouseDoubleClickEvent(QMouseEvent *event, const QVariant &details) +{ + Q_UNUSED(details) + event->ignore(); +} + +/*! + This event gets called when the user turns the mouse scroll wheel while the cursor is over the + layerable. Whether a cursor is over the layerable is decided by a preceding call to \ref + selectTest. + + The current pixel position of the cursor on the QCustomPlot widget is accessible via \c + event->pos(). + + The \c event->delta() indicates how far the mouse wheel was turned, which is usually +/- 120 for + single rotation steps. However, if the mouse wheel is turned rapidly, multiple steps may + accumulate to one event, making \c event->delta() larger. On the other hand, if the wheel has + very smooth steps or none at all, the delta may be smaller. + + The default implementation does nothing. + + \see mousePressEvent, mouseMoveEvent, mouseReleaseEvent, mouseDoubleClickEvent +*/ +void QCPLayerable::wheelEvent(QWheelEvent *event) +{ + event->ignore(); +} +/* end of 'src/layer.cpp' */ + + +/* including file 'src/axis/range.cpp', size 12221 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPRange +//////////////////////////////////////////////////////////////////////////////////////////////////// +/*! \class QCPRange + \brief Represents the range an axis is encompassing. + + contains a \a lower and \a upper double value and provides convenience input, output and + modification functions. + + \see QCPAxis::setRange +*/ + +/* start of documentation of inline functions */ + +/*! \fn double QCPRange::size() const + + Returns the size of the range, i.e. \a upper-\a lower +*/ + +/*! \fn double QCPRange::center() const + + Returns the center of the range, i.e. (\a upper+\a lower)*0.5 +*/ + +/*! \fn void QCPRange::normalize() + + Makes sure \a lower is numerically smaller than \a upper. If this is not the case, the values are + swapped. +*/ + +/*! \fn bool QCPRange::contains(double value) const + + Returns true when \a value lies within or exactly on the borders of the range. +*/ + +/*! \fn QCPRange &QCPRange::operator+=(const double& value) + + Adds \a value to both boundaries of the range. +*/ + +/*! \fn QCPRange &QCPRange::operator-=(const double& value) + + Subtracts \a value from both boundaries of the range. +*/ + +/*! \fn QCPRange &QCPRange::operator*=(const double& value) + + Multiplies both boundaries of the range by \a value. +*/ + +/*! \fn QCPRange &QCPRange::operator/=(const double& value) + + Divides both boundaries of the range by \a value. +*/ + +/* end of documentation of inline functions */ + +/*! + Minimum range size (\a upper - \a lower) the range changing functions will accept. Smaller + intervals would cause errors due to the 11-bit exponent of double precision numbers, + corresponding to a minimum magnitude of roughly 1e-308. + + \warning Do not use this constant to indicate "arbitrarily small" values in plotting logic (as + values that will appear in the plot)! It is intended only as a bound to compare against, e.g. to + prevent axis ranges from obtaining underflowing ranges. + + \see validRange, maxRange +*/ +const double QCPRange::minRange = 1e-280; + +/*! + Maximum values (negative and positive) the range will accept in range-changing functions. + Larger absolute values would cause errors due to the 11-bit exponent of double precision numbers, + corresponding to a maximum magnitude of roughly 1e308. + + \warning Do not use this constant to indicate "arbitrarily large" values in plotting logic (as + values that will appear in the plot)! It is intended only as a bound to compare against, e.g. to + prevent axis ranges from obtaining overflowing ranges. + + \see validRange, minRange +*/ +const double QCPRange::maxRange = 1e250; + +/*! + Constructs a range with \a lower and \a upper set to zero. +*/ +QCPRange::QCPRange() : + lower(0), + upper(0) +{ +} + +/*! \overload + + Constructs a range with the specified \a lower and \a upper values. + + The resulting range will be normalized (see \ref normalize), so if \a lower is not numerically + smaller than \a upper, they will be swapped. +*/ +QCPRange::QCPRange(double lower, double upper) : + lower(lower), + upper(upper) +{ + normalize(); +} + +/*! \overload + + Expands this range such that \a otherRange is contained in the new range. It is assumed that both + this range and \a otherRange are normalized (see \ref normalize). + + If this range contains NaN as lower or upper bound, it will be replaced by the respective bound + of \a otherRange. + + If \a otherRange is already inside the current range, this function does nothing. + + \see expanded +*/ +void QCPRange::expand(const QCPRange &otherRange) +{ + if (lower > otherRange.lower || qIsNaN(lower)) + lower = otherRange.lower; + if (upper < otherRange.upper || qIsNaN(upper)) + upper = otherRange.upper; +} + +/*! \overload + + Expands this range such that \a includeCoord is contained in the new range. It is assumed that + this range is normalized (see \ref normalize). + + If this range contains NaN as lower or upper bound, the respective bound will be set to \a + includeCoord. + + If \a includeCoord is already inside the current range, this function does nothing. + + \see expand +*/ +void QCPRange::expand(double includeCoord) +{ + if (lower > includeCoord || qIsNaN(lower)) + lower = includeCoord; + if (upper < includeCoord || qIsNaN(upper)) + upper = includeCoord; +} + + +/*! \overload + + Returns an expanded range that contains this and \a otherRange. It is assumed that both this + range and \a otherRange are normalized (see \ref normalize). + + If this range contains NaN as lower or upper bound, the returned range's bound will be taken from + \a otherRange. + + \see expand +*/ +QCPRange QCPRange::expanded(const QCPRange &otherRange) const +{ + QCPRange result = *this; + result.expand(otherRange); + return result; +} + +/*! \overload + + Returns an expanded range that includes the specified \a includeCoord. It is assumed that this + range is normalized (see \ref normalize). + + If this range contains NaN as lower or upper bound, the returned range's bound will be set to \a + includeCoord. + + \see expand +*/ +QCPRange QCPRange::expanded(double includeCoord) const +{ + QCPRange result = *this; + result.expand(includeCoord); + return result; +} + +/*! + Returns this range, possibly modified to not exceed the bounds provided as \a lowerBound and \a + upperBound. If possible, the size of the current range is preserved in the process. + + If the range shall only be bounded at the lower side, you can set \a upperBound to \ref + QCPRange::maxRange. If it shall only be bounded at the upper side, set \a lowerBound to -\ref + QCPRange::maxRange. +*/ +QCPRange QCPRange::bounded(double lowerBound, double upperBound) const +{ + if (lowerBound > upperBound) + qSwap(lowerBound, upperBound); + + QCPRange result(lower, upper); + if (result.lower < lowerBound) + { + result.lower = lowerBound; + result.upper = lowerBound + size(); + if (result.upper > upperBound || qFuzzyCompare(size(), upperBound-lowerBound)) + result.upper = upperBound; + } else if (result.upper > upperBound) + { + result.upper = upperBound; + result.lower = upperBound - size(); + if (result.lower < lowerBound || qFuzzyCompare(size(), upperBound-lowerBound)) + result.lower = lowerBound; + } + + return result; +} + +/*! + Returns a sanitized version of the range. Sanitized means for logarithmic scales, that + the range won't span the positive and negative sign domain, i.e. contain zero. Further + \a lower will always be numerically smaller (or equal) to \a upper. + + If the original range does span positive and negative sign domains or contains zero, + the returned range will try to approximate the original range as good as possible. + If the positive interval of the original range is wider than the negative interval, the + returned range will only contain the positive interval, with lower bound set to \a rangeFac or + \a rangeFac *\a upper, whichever is closer to zero. Same procedure is used if the negative interval + is wider than the positive interval, this time by changing the \a upper bound. +*/ +QCPRange QCPRange::sanitizedForLogScale() const +{ + double rangeFac = 1e-3; + QCPRange sanitizedRange(lower, upper); + sanitizedRange.normalize(); + // can't have range spanning negative and positive values in log plot, so change range to fix it + //if (qFuzzyCompare(sanitizedRange.lower+1, 1) && !qFuzzyCompare(sanitizedRange.upper+1, 1)) + if (sanitizedRange.lower == 0.0 && sanitizedRange.upper != 0.0) + { + // case lower is 0 + if (rangeFac < sanitizedRange.upper*rangeFac) + sanitizedRange.lower = rangeFac; + else + sanitizedRange.lower = sanitizedRange.upper*rangeFac; + } //else if (!qFuzzyCompare(lower+1, 1) && qFuzzyCompare(upper+1, 1)) + else if (sanitizedRange.lower != 0.0 && sanitizedRange.upper == 0.0) + { + // case upper is 0 + if (-rangeFac > sanitizedRange.lower*rangeFac) + sanitizedRange.upper = -rangeFac; + else + sanitizedRange.upper = sanitizedRange.lower*rangeFac; + } else if (sanitizedRange.lower < 0 && sanitizedRange.upper > 0) + { + // find out whether negative or positive interval is wider to decide which sign domain will be chosen + if (-sanitizedRange.lower > sanitizedRange.upper) + { + // negative is wider, do same as in case upper is 0 + if (-rangeFac > sanitizedRange.lower*rangeFac) + sanitizedRange.upper = -rangeFac; + else + sanitizedRange.upper = sanitizedRange.lower*rangeFac; + } else + { + // positive is wider, do same as in case lower is 0 + if (rangeFac < sanitizedRange.upper*rangeFac) + sanitizedRange.lower = rangeFac; + else + sanitizedRange.lower = sanitizedRange.upper*rangeFac; + } + } + // due to normalization, case lower>0 && upper<0 should never occur, because that implies upper -maxRange && + upper < maxRange && + qAbs(lower-upper) > minRange && + qAbs(lower-upper) < maxRange && + !(lower > 0 && qIsInf(upper/lower)) && + !(upper < 0 && qIsInf(lower/upper))); +} + +/*! + \overload + Checks, whether the specified range is within valid bounds, which are defined + as QCPRange::maxRange and QCPRange::minRange. + A valid range means: + \li range bounds within -maxRange and maxRange + \li range size above minRange + \li range size below maxRange +*/ +bool QCPRange::validRange(const QCPRange &range) +{ + return (range.lower > -maxRange && + range.upper < maxRange && + qAbs(range.lower-range.upper) > minRange && + qAbs(range.lower-range.upper) < maxRange && + !(range.lower > 0 && qIsInf(range.upper/range.lower)) && + !(range.upper < 0 && qIsInf(range.lower/range.upper))); +} +/* end of 'src/axis/range.cpp' */ + + +/* including file 'src/selection.cpp', size 21941 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPDataRange +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPDataRange + \brief Describes a data range given by begin and end index + + QCPDataRange holds two integers describing the begin (\ref setBegin) and end (\ref setEnd) index + of a contiguous set of data points. The end index points to the data point just after the last + data point that's part of the data range, similarly to the nomenclature used in standard + iterators. + + Data Ranges are not bound to a certain plottable, thus they can be freely exchanged, created and + modified. If a non-contiguous data set shall be described, the class \ref QCPDataSelection is + used, which holds and manages multiple instances of \ref QCPDataRange. In most situations, \ref + QCPDataSelection is thus used. + + Both \ref QCPDataRange and \ref QCPDataSelection offer convenience methods to work with them, + e.g. \ref bounded, \ref expanded, \ref intersects, \ref intersection, \ref adjusted, \ref + contains. Further, addition and subtraction operators (defined in \ref QCPDataSelection) can be + used to join/subtract data ranges and data selections (or mixtures), to retrieve a corresponding + \ref QCPDataSelection. + + %QCustomPlot's \ref dataselection "data selection mechanism" is based on \ref QCPDataSelection and + QCPDataRange. + + \note Do not confuse \ref QCPDataRange with \ref QCPRange. A \ref QCPRange describes an interval + in floating point plot coordinates, e.g. the current axis range. +*/ + +/* start documentation of inline functions */ + +/*! \fn int QCPDataRange::size() const + + Returns the number of data points described by this data range. This is equal to the end index + minus the begin index. + + \see length +*/ + +/*! \fn int QCPDataRange::length() const + + Returns the number of data points described by this data range. Equivalent to \ref size. +*/ + +/*! \fn void QCPDataRange::setBegin(int begin) + + Sets the begin of this data range. The \a begin index points to the first data point that is part + of the data range. + + No checks or corrections are made to ensure the resulting range is valid (\ref isValid). + + \see setEnd +*/ + +/*! \fn void QCPDataRange::setEnd(int end) + + Sets the end of this data range. The \a end index points to the data point just after the last + data point that is part of the data range. + + No checks or corrections are made to ensure the resulting range is valid (\ref isValid). + + \see setBegin +*/ + +/*! \fn bool QCPDataRange::isValid() const + + Returns whether this range is valid. A valid range has a begin index greater or equal to 0, and + an end index greater or equal to the begin index. + + \note Invalid ranges should be avoided and are never the result of any of QCustomPlot's methods + (unless they are themselves fed with invalid ranges). Do not pass invalid ranges to QCustomPlot's + methods. The invalid range is not inherently prevented in QCPDataRange, to allow temporary + invalid begin/end values while manipulating the range. An invalid range is not necessarily empty + (\ref isEmpty), since its \ref length can be negative and thus non-zero. +*/ + +/*! \fn bool QCPDataRange::isEmpty() const + + Returns whether this range is empty, i.e. whether its begin index equals its end index. + + \see size, length +*/ + +/*! \fn QCPDataRange QCPDataRange::adjusted(int changeBegin, int changeEnd) const + + Returns a data range where \a changeBegin and \a changeEnd were added to the begin and end + indices, respectively. +*/ + +/* end documentation of inline functions */ + +/*! + Creates an empty QCPDataRange, with begin and end set to 0. +*/ +QCPDataRange::QCPDataRange() : + mBegin(0), + mEnd(0) +{ +} + +/*! + Creates a QCPDataRange, initialized with the specified \a begin and \a end. + + No checks or corrections are made to ensure the resulting range is valid (\ref isValid). +*/ +QCPDataRange::QCPDataRange(int begin, int end) : + mBegin(begin), + mEnd(end) +{ +} + +/*! + Returns a data range that matches this data range, except that parts exceeding \a other are + excluded. + + This method is very similar to \ref intersection, with one distinction: If this range and the \a + other range share no intersection, the returned data range will be empty with begin and end set + to the respective boundary side of \a other, at which this range is residing. (\ref intersection + would just return a range with begin and end set to 0.) +*/ +QCPDataRange QCPDataRange::bounded(const QCPDataRange &other) const +{ + QCPDataRange result(intersection(other)); + if (result.isEmpty()) // no intersection, preserve respective bounding side of otherRange as both begin and end of return value + { + if (mEnd <= other.mBegin) + result = QCPDataRange(other.mBegin, other.mBegin); + else + result = QCPDataRange(other.mEnd, other.mEnd); + } + return result; +} + +/*! + Returns a data range that contains both this data range as well as \a other. +*/ +QCPDataRange QCPDataRange::expanded(const QCPDataRange &other) const +{ + return QCPDataRange(qMin(mBegin, other.mBegin), qMax(mEnd, other.mEnd)); +} + +/*! + Returns the data range which is contained in both this data range and \a other. + + This method is very similar to \ref bounded, with one distinction: If this range and the \a other + range share no intersection, the returned data range will be empty with begin and end set to 0. + (\ref bounded would return a range with begin and end set to one of the boundaries of \a other, + depending on which side this range is on.) + + \see QCPDataSelection::intersection +*/ +QCPDataRange QCPDataRange::intersection(const QCPDataRange &other) const +{ + QCPDataRange result(qMax(mBegin, other.mBegin), qMin(mEnd, other.mEnd)); + if (result.isValid()) + return result; + else + return QCPDataRange(); +} + +/*! + Returns whether this data range and \a other share common data points. + + \see intersection, contains +*/ +bool QCPDataRange::intersects(const QCPDataRange &other) const +{ + return !( (mBegin > other.mBegin && mBegin >= other.mEnd) || + (mEnd <= other.mBegin && mEnd < other.mEnd) ); +} + +/*! + Returns whether all data points of \a other are also contained inside this data range. + + \see intersects +*/ +bool QCPDataRange::contains(const QCPDataRange &other) const +{ + return mBegin <= other.mBegin && mEnd >= other.mEnd; +} + + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPDataSelection +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPDataSelection + \brief Describes a data set by holding multiple QCPDataRange instances + + QCPDataSelection manages multiple instances of QCPDataRange in order to represent any (possibly + disjoint) set of data selection. + + The data selection can be modified with addition and subtraction operators which take + QCPDataSelection and QCPDataRange instances, as well as methods such as \ref addDataRange and + \ref clear. Read access is provided by \ref dataRange, \ref dataRanges, \ref dataRangeCount, etc. + + The method \ref simplify is used to join directly adjacent or even overlapping QCPDataRange + instances. QCPDataSelection automatically simplifies when using the addition/subtraction + operators. The only case when \ref simplify is left to the user, is when calling \ref + addDataRange, with the parameter \a simplify explicitly set to false. This is useful if many data + ranges will be added to the selection successively and the overhead for simplifying after each + iteration shall be avoided. In this case, you should make sure to call \ref simplify after + completing the operation. + + Use \ref enforceType to bring the data selection into a state complying with the constraints for + selections defined in \ref QCP::SelectionType. + + %QCustomPlot's \ref dataselection "data selection mechanism" is based on QCPDataSelection and + QCPDataRange. + + \section qcpdataselection-iterating Iterating over a data selection + + As an example, the following code snippet calculates the average value of a graph's data + \ref QCPAbstractPlottable::selection "selection": + + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpdataselection-iterating-1 + +*/ + +/* start documentation of inline functions */ + +/*! \fn int QCPDataSelection::dataRangeCount() const + + Returns the number of ranges that make up the data selection. The ranges can be accessed by \ref + dataRange via their index. + + \see dataRange, dataPointCount +*/ + +/*! \fn QList QCPDataSelection::dataRanges() const + + Returns all data ranges that make up the data selection. If the data selection is simplified (the + usual state of the selection, see \ref simplify), the ranges are sorted by ascending data point + index. + + \see dataRange +*/ + +/*! \fn bool QCPDataSelection::isEmpty() const + + Returns true if there are no data ranges, and thus no data points, in this QCPDataSelection + instance. + + \see dataRangeCount +*/ + +/* end documentation of inline functions */ + +/*! + Creates an empty QCPDataSelection. +*/ +QCPDataSelection::QCPDataSelection() +{ +} + +/*! + Creates a QCPDataSelection containing the provided \a range. +*/ +QCPDataSelection::QCPDataSelection(const QCPDataRange &range) +{ + mDataRanges.append(range); +} + +/*! + Returns true if this selection is identical (contains the same data ranges with the same begin + and end indices) to \a other. + + Note that both data selections must be in simplified state (the usual state of the selection, see + \ref simplify) for this operator to return correct results. +*/ +bool QCPDataSelection::operator==(const QCPDataSelection &other) const +{ + if (mDataRanges.size() != other.mDataRanges.size()) + return false; + for (int i=0; i= other.end()) + break; // since data ranges are sorted after the simplify() call, no ranges which contain other will come after this + + if (thisEnd > other.begin()) // ranges which don't fulfill this are entirely before other and can be ignored + { + if (thisBegin >= other.begin()) // range leading segment is encompassed + { + if (thisEnd <= other.end()) // range fully encompassed, remove completely + { + mDataRanges.removeAt(i); + continue; + } else // only leading segment is encompassed, trim accordingly + mDataRanges[i].setBegin(other.end()); + } else // leading segment is not encompassed + { + if (thisEnd <= other.end()) // only trailing segment is encompassed, trim accordingly + { + mDataRanges[i].setEnd(other.begin()); + } else // other lies inside this range, so split range + { + mDataRanges[i].setEnd(other.begin()); + mDataRanges.insert(i+1, QCPDataRange(other.end(), thisEnd)); + break; // since data ranges are sorted (and don't overlap) after simplify() call, we're done here + } + } + } + ++i; + } + + return *this; +} + +/*! + Returns the total number of data points contained in all data ranges that make up this data + selection. +*/ +int QCPDataSelection::dataPointCount() const +{ + int result = 0; + for (int i=0; i= 0 && index < mDataRanges.size()) + { + return mDataRanges.at(index); + } else + { + qDebug() << Q_FUNC_INFO << "index out of range:" << index; + return QCPDataRange(); + } +} + +/*! + Returns a \ref QCPDataRange which spans the entire data selection, including possible + intermediate segments which are not part of the original data selection. +*/ +QCPDataRange QCPDataSelection::span() const +{ + if (isEmpty()) + return QCPDataRange(); + else + return QCPDataRange(mDataRanges.first().begin(), mDataRanges.last().end()); +} + +/*! + Adds the given \a dataRange to this data selection. This is equivalent to the += operator but + allows disabling immediate simplification by setting \a simplify to false. This can improve + performance if adding a very large amount of data ranges successively. In this case, make sure to + call \ref simplify manually, after the operation. +*/ +void QCPDataSelection::addDataRange(const QCPDataRange &dataRange, bool simplify) +{ + mDataRanges.append(dataRange); + if (simplify) + this->simplify(); +} + +/*! + Removes all data ranges. The data selection then contains no data points. + + \ref isEmpty +*/ +void QCPDataSelection::clear() +{ + mDataRanges.clear(); +} + +/*! + Sorts all data ranges by range begin index in ascending order, and then joins directly adjacent + or overlapping ranges. This can reduce the number of individual data ranges in the selection, and + prevents possible double-counting when iterating over the data points held by the data ranges. + + This method is automatically called when using the addition/subtraction operators. The only case + when \ref simplify is left to the user, is when calling \ref addDataRange, with the parameter \a + simplify explicitly set to false. +*/ +void QCPDataSelection::simplify() +{ + // remove any empty ranges: + for (int i=mDataRanges.size()-1; i>=0; --i) + { + if (mDataRanges.at(i).isEmpty()) + mDataRanges.removeAt(i); + } + if (mDataRanges.isEmpty()) + return; + + // sort ranges by starting value, ascending: + std::sort(mDataRanges.begin(), mDataRanges.end(), lessThanDataRangeBegin); + + // join overlapping/contiguous ranges: + int i = 1; + while (i < mDataRanges.size()) + { + if (mDataRanges.at(i-1).end() >= mDataRanges.at(i).begin()) // range i overlaps/joins with i-1, so expand range i-1 appropriately and remove range i from list + { + mDataRanges[i-1].setEnd(qMax(mDataRanges.at(i-1).end(), mDataRanges.at(i).end())); + mDataRanges.removeAt(i); + } else + ++i; + } +} + +/*! + Makes sure this data selection conforms to the specified \a type selection type. Before the type + is enforced, \ref simplify is called. + + Depending on \a type, enforcing means adding new data points that were previously not part of the + selection, or removing data points from the selection. If the current selection already conforms + to \a type, the data selection is not changed. + + \see QCP::SelectionType +*/ +void QCPDataSelection::enforceType(QCP::SelectionType type) +{ + simplify(); + switch (type) + { + case QCP::stNone: + { + mDataRanges.clear(); + break; + } + case QCP::stWhole: + { + // whole selection isn't defined by data range, so don't change anything (is handled in plottable methods) + break; + } + case QCP::stSingleData: + { + // reduce all data ranges to the single first data point: + if (!mDataRanges.isEmpty()) + { + if (mDataRanges.size() > 1) + mDataRanges = QList() << mDataRanges.first(); + if (mDataRanges.first().length() > 1) + mDataRanges.first().setEnd(mDataRanges.first().begin()+1); + } + break; + } + case QCP::stDataRange: + { + if (!isEmpty()) + mDataRanges = QList() << span(); + break; + } + case QCP::stMultipleDataRanges: + { + // this is the selection type that allows all concievable combinations of ranges, so do nothing + break; + } + } +} + +/*! + Returns true if the data selection \a other is contained entirely in this data selection, i.e. + all data point indices that are in \a other are also in this data selection. + + \see QCPDataRange::contains +*/ +bool QCPDataSelection::contains(const QCPDataSelection &other) const +{ + if (other.isEmpty()) return false; + + int otherIndex = 0; + int thisIndex = 0; + while (thisIndex < mDataRanges.size() && otherIndex < other.mDataRanges.size()) + { + if (mDataRanges.at(thisIndex).contains(other.mDataRanges.at(otherIndex))) + ++otherIndex; + else + ++thisIndex; + } + return thisIndex < mDataRanges.size(); // if thisIndex ran all the way to the end to find a containing range for the current otherIndex, other is not contained in this +} + +/*! + Returns a data selection containing the points which are both in this data selection and in the + data range \a other. + + A common use case is to limit an unknown data selection to the valid range of a data container, + using \ref QCPDataContainer::dataRange as \a other. One can then safely iterate over the returned + data selection without exceeding the data container's bounds. +*/ +QCPDataSelection QCPDataSelection::intersection(const QCPDataRange &other) const +{ + QCPDataSelection result; + for (int i=0; iorientation() == Qt::Horizontal) + return QCPRange(axis->pixelToCoord(mRect.left()), axis->pixelToCoord(mRect.left()+mRect.width())); + else + return QCPRange(axis->pixelToCoord(mRect.top()+mRect.height()), axis->pixelToCoord(mRect.top())); + } else + { + qDebug() << Q_FUNC_INFO << "called with axis zero"; + return QCPRange(); + } +} + +/*! + Sets the pen that will be used to draw the selection rect outline. + + \see setBrush +*/ +void QCPSelectionRect::setPen(const QPen &pen) +{ + mPen = pen; +} + +/*! + Sets the brush that will be used to fill the selection rect. By default the selection rect is not + filled, i.e. \a brush is Qt::NoBrush. + + \see setPen +*/ +void QCPSelectionRect::setBrush(const QBrush &brush) +{ + mBrush = brush; +} + +/*! + If there is currently a selection interaction going on (\ref isActive), the interaction is + canceled. The selection rect will emit the \ref canceled signal. +*/ +void QCPSelectionRect::cancel() +{ + if (mActive) + { + mActive = false; + emit canceled(mRect, 0); + } +} + +/*! \internal + + This method is called by QCustomPlot to indicate that a selection rect interaction was initiated. + The default implementation sets the selection rect to active, initializes the selection rect + geometry and emits the \ref started signal. +*/ +void QCPSelectionRect::startSelection(QMouseEvent *event) +{ + mActive = true; + mRect = QRect(event->pos(), event->pos()); + emit started(event); +} + +/*! \internal + + This method is called by QCustomPlot to indicate that an ongoing selection rect interaction needs + to update its geometry. The default implementation updates the rect and emits the \ref changed + signal. +*/ +void QCPSelectionRect::moveSelection(QMouseEvent *event) +{ + mRect.setBottomRight(event->pos()); + emit changed(mRect, event); + layer()->replot(); +} + +/*! \internal + + This method is called by QCustomPlot to indicate that an ongoing selection rect interaction has + finished by the user releasing the mouse button. The default implementation deactivates the + selection rect and emits the \ref accepted signal. +*/ +void QCPSelectionRect::endSelection(QMouseEvent *event) +{ + mRect.setBottomRight(event->pos()); + mActive = false; + emit accepted(mRect, event); +} + +/*! \internal + + This method is called by QCustomPlot when a key has been pressed by the user while the selection + rect interaction is active. The default implementation allows to \ref cancel the interaction by + hitting the escape key. +*/ +void QCPSelectionRect::keyPressEvent(QKeyEvent *event) +{ + if (event->key() == Qt::Key_Escape && mActive) + { + mActive = false; + emit canceled(mRect, event); + } +} + +/* inherits documentation from base class */ +void QCPSelectionRect::applyDefaultAntialiasingHint(QCPPainter *painter) const +{ + applyAntialiasingHint(painter, mAntialiased, QCP::aeOther); +} + +/*! \internal + + If the selection rect is active (\ref isActive), draws the selection rect defined by \a mRect. + + \seebaseclassmethod +*/ +void QCPSelectionRect::draw(QCPPainter *painter) +{ + if (mActive) + { + painter->setPen(mPen); + painter->setBrush(mBrush); + painter->drawRect(mRect); + } +} +/* end of 'src/selectionrect.cpp' */ + + +/* including file 'src/layout.cpp', size 79139 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPMarginGroup +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPMarginGroup + \brief A margin group allows synchronization of margin sides if working with multiple layout elements. + + QCPMarginGroup allows you to tie a margin side of two or more layout elements together, such that + they will all have the same size, based on the largest required margin in the group. + + \n + \image html QCPMarginGroup.png "Demonstration of QCPMarginGroup" + \n + + In certain situations it is desirable that margins at specific sides are synchronized across + layout elements. For example, if one QCPAxisRect is below another one in a grid layout, it will + provide a cleaner look to the user if the left and right margins of the two axis rects are of the + same size. The left axis of the top axis rect will then be at the same horizontal position as the + left axis of the lower axis rect, making them appear aligned. The same applies for the right + axes. This is what QCPMarginGroup makes possible. + + To add/remove a specific side of a layout element to/from a margin group, use the \ref + QCPLayoutElement::setMarginGroup method. To completely break apart the margin group, either call + \ref clear, or just delete the margin group. + + \section QCPMarginGroup-example Example + + First create a margin group: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpmargingroup-creation-1 + Then set this group on the layout element sides: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpmargingroup-creation-2 + Here, we've used the first two axis rects of the plot and synchronized their left margins with + each other and their right margins with each other. +*/ + +/* start documentation of inline functions */ + +/*! \fn QList QCPMarginGroup::elements(QCP::MarginSide side) const + + Returns a list of all layout elements that have their margin \a side associated with this margin + group. +*/ + +/* end documentation of inline functions */ + +/*! + Creates a new QCPMarginGroup instance in \a parentPlot. +*/ +QCPMarginGroup::QCPMarginGroup(QCustomPlot *parentPlot) : + QObject(parentPlot), + mParentPlot(parentPlot) +{ + mChildren.insert(QCP::msLeft, QList()); + mChildren.insert(QCP::msRight, QList()); + mChildren.insert(QCP::msTop, QList()); + mChildren.insert(QCP::msBottom, QList()); +} + +QCPMarginGroup::~QCPMarginGroup() +{ + clear(); +} + +/*! + Returns whether this margin group is empty. If this function returns true, no layout elements use + this margin group to synchronize margin sides. +*/ +bool QCPMarginGroup::isEmpty() const +{ + QHashIterator > it(mChildren); + while (it.hasNext()) + { + it.next(); + if (!it.value().isEmpty()) + return false; + } + return true; +} + +/*! + Clears this margin group. The synchronization of the margin sides that use this margin group is + lifted and they will use their individual margin sizes again. +*/ +void QCPMarginGroup::clear() +{ + // make all children remove themselves from this margin group: + QHashIterator > it(mChildren); + while (it.hasNext()) + { + it.next(); + const QList elements = it.value(); + for (int i=elements.size()-1; i>=0; --i) + elements.at(i)->setMarginGroup(it.key(), 0); // removes itself from mChildren via removeChild + } +} + +/*! \internal + + Returns the synchronized common margin for \a side. This is the margin value that will be used by + the layout element on the respective side, if it is part of this margin group. + + The common margin is calculated by requesting the automatic margin (\ref + QCPLayoutElement::calculateAutoMargin) of each element associated with \a side in this margin + group, and choosing the largest returned value. (QCPLayoutElement::minimumMargins is taken into + account, too.) +*/ +int QCPMarginGroup::commonMargin(QCP::MarginSide side) const +{ + // query all automatic margins of the layout elements in this margin group side and find maximum: + int result = 0; + const QList elements = mChildren.value(side); + for (int i=0; iautoMargins().testFlag(side)) + continue; + int m = qMax(elements.at(i)->calculateAutoMargin(side), QCP::getMarginValue(elements.at(i)->minimumMargins(), side)); + if (m > result) + result = m; + } + return result; +} + +/*! \internal + + Adds \a element to the internal list of child elements, for the margin \a side. + + This function does not modify the margin group property of \a element. +*/ +void QCPMarginGroup::addChild(QCP::MarginSide side, QCPLayoutElement *element) +{ + if (!mChildren[side].contains(element)) + mChildren[side].append(element); + else + qDebug() << Q_FUNC_INFO << "element is already child of this margin group side" << reinterpret_cast(element); +} + +/*! \internal + + Removes \a element from the internal list of child elements, for the margin \a side. + + This function does not modify the margin group property of \a element. +*/ +void QCPMarginGroup::removeChild(QCP::MarginSide side, QCPLayoutElement *element) +{ + if (!mChildren[side].removeOne(element)) + qDebug() << Q_FUNC_INFO << "element is not child of this margin group side" << reinterpret_cast(element); +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPLayoutElement +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPLayoutElement + \brief The abstract base class for all objects that form \ref thelayoutsystem "the layout system". + + This is an abstract base class. As such, it can't be instantiated directly, rather use one of its subclasses. + + A Layout element is a rectangular object which can be placed in layouts. It has an outer rect + (QCPLayoutElement::outerRect) and an inner rect (\ref QCPLayoutElement::rect). The difference + between outer and inner rect is called its margin. The margin can either be set to automatic or + manual (\ref setAutoMargins) on a per-side basis. If a side is set to manual, that margin can be + set explicitly with \ref setMargins and will stay fixed at that value. If it's set to automatic, + the layout element subclass will control the value itself (via \ref calculateAutoMargin). + + Layout elements can be placed in layouts (base class QCPLayout) like QCPLayoutGrid. The top level + layout is reachable via \ref QCustomPlot::plotLayout, and is a \ref QCPLayoutGrid. Since \ref + QCPLayout itself derives from \ref QCPLayoutElement, layouts can be nested. + + Thus in QCustomPlot one can divide layout elements into two categories: The ones that are + invisible by themselves, because they don't draw anything. Their only purpose is to manage the + position and size of other layout elements. This category of layout elements usually use + QCPLayout as base class. Then there is the category of layout elements which actually draw + something. For example, QCPAxisRect, QCPLegend and QCPTextElement are of this category. This does + not necessarily mean that the latter category can't have child layout elements. QCPLegend for + instance, actually derives from QCPLayoutGrid and the individual legend items are child layout + elements in the grid layout. +*/ + +/* start documentation of inline functions */ + +/*! \fn QCPLayout *QCPLayoutElement::layout() const + + Returns the parent layout of this layout element. +*/ + +/*! \fn QRect QCPLayoutElement::rect() const + + Returns the inner rect of this layout element. The inner rect is the outer rect (\ref outerRect, \ref + setOuterRect) shrinked by the margins (\ref setMargins, \ref setAutoMargins). + + In some cases, the area between outer and inner rect is left blank. In other cases the margin + area is used to display peripheral graphics while the main content is in the inner rect. This is + where automatic margin calculation becomes interesting because it allows the layout element to + adapt the margins to the peripheral graphics it wants to draw. For example, \ref QCPAxisRect + draws the axis labels and tick labels in the margin area, thus needs to adjust the margins (if + \ref setAutoMargins is enabled) according to the space required by the labels of the axes. + + \see outerRect +*/ + +/*! \fn QRect QCPLayoutElement::outerRect() const + + Returns the outer rect of this layout element. The outer rect is the inner rect expanded by the + margins (\ref setMargins, \ref setAutoMargins). The outer rect is used (and set via \ref + setOuterRect) by the parent \ref QCPLayout to control the size of this layout element. + + \see rect +*/ + +/* end documentation of inline functions */ + +/*! + Creates an instance of QCPLayoutElement and sets default values. +*/ +QCPLayoutElement::QCPLayoutElement(QCustomPlot *parentPlot) : + QCPLayerable(parentPlot), // parenthood is changed as soon as layout element gets inserted into a layout (except for top level layout) + mParentLayout(0), + mMinimumSize(), + mMaximumSize(QWIDGETSIZE_MAX, QWIDGETSIZE_MAX), + mSizeConstraintRect(scrInnerRect), + mRect(0, 0, 0, 0), + mOuterRect(0, 0, 0, 0), + mMargins(0, 0, 0, 0), + mMinimumMargins(0, 0, 0, 0), + mAutoMargins(QCP::msAll) +{ +} + +QCPLayoutElement::~QCPLayoutElement() +{ + setMarginGroup(QCP::msAll, 0); // unregister at margin groups, if there are any + // unregister at layout: + if (qobject_cast(mParentLayout)) // the qobject_cast is just a safeguard in case the layout forgets to call clear() in its dtor and this dtor is called by QObject dtor + mParentLayout->take(this); +} + +/*! + Sets the outer rect of this layout element. If the layout element is inside a layout, the layout + sets the position and size of this layout element using this function. + + Calling this function externally has no effect, since the layout will overwrite any changes to + the outer rect upon the next replot. + + The layout element will adapt its inner \ref rect by applying the margins inward to the outer rect. + + \see rect +*/ +void QCPLayoutElement::setOuterRect(const QRect &rect) +{ + if (mOuterRect != rect) + { + mOuterRect = rect; + mRect = mOuterRect.adjusted(mMargins.left(), mMargins.top(), -mMargins.right(), -mMargins.bottom()); + } +} + +/*! + Sets the margins of this layout element. If \ref setAutoMargins is disabled for some or all + sides, this function is used to manually set the margin on those sides. Sides that are still set + to be handled automatically are ignored and may have any value in \a margins. + + The margin is the distance between the outer rect (controlled by the parent layout via \ref + setOuterRect) and the inner \ref rect (which usually contains the main content of this layout + element). + + \see setAutoMargins +*/ +void QCPLayoutElement::setMargins(const QMargins &margins) +{ + if (mMargins != margins) + { + mMargins = margins; + mRect = mOuterRect.adjusted(mMargins.left(), mMargins.top(), -mMargins.right(), -mMargins.bottom()); + } +} + +/*! + If \ref setAutoMargins is enabled on some or all margins, this function is used to provide + minimum values for those margins. + + The minimum values are not enforced on margin sides that were set to be under manual control via + \ref setAutoMargins. + + \see setAutoMargins +*/ +void QCPLayoutElement::setMinimumMargins(const QMargins &margins) +{ + if (mMinimumMargins != margins) + { + mMinimumMargins = margins; + } +} + +/*! + Sets on which sides the margin shall be calculated automatically. If a side is calculated + automatically, a minimum margin value may be provided with \ref setMinimumMargins. If a side is + set to be controlled manually, the value may be specified with \ref setMargins. + + Margin sides that are under automatic control may participate in a \ref QCPMarginGroup (see \ref + setMarginGroup), to synchronize (align) it with other layout elements in the plot. + + \see setMinimumMargins, setMargins, QCP::MarginSide +*/ +void QCPLayoutElement::setAutoMargins(QCP::MarginSides sides) +{ + mAutoMargins = sides; +} + +/*! + Sets the minimum size of this layout element. A parent layout tries to respect the \a size here + by changing row/column sizes in the layout accordingly. + + If the parent layout size is not sufficient to satisfy all minimum size constraints of its child + layout elements, the layout may set a size that is actually smaller than \a size. QCustomPlot + propagates the layout's size constraints to the outside by setting its own minimum QWidget size + accordingly, so violations of \a size should be exceptions. + + Whether this constraint applies to the inner or the outer rect can be specified with \ref + setSizeConstraintRect (see \ref rect and \ref outerRect). +*/ +void QCPLayoutElement::setMinimumSize(const QSize &size) +{ + if (mMinimumSize != size) + { + mMinimumSize = size; + if (mParentLayout) + mParentLayout->sizeConstraintsChanged(); + } +} + +/*! \overload + + Sets the minimum size of this layout element. + + Whether this constraint applies to the inner or the outer rect can be specified with \ref + setSizeConstraintRect (see \ref rect and \ref outerRect). +*/ +void QCPLayoutElement::setMinimumSize(int width, int height) +{ + setMinimumSize(QSize(width, height)); +} + +/*! + Sets the maximum size of this layout element. A parent layout tries to respect the \a size here + by changing row/column sizes in the layout accordingly. + + Whether this constraint applies to the inner or the outer rect can be specified with \ref + setSizeConstraintRect (see \ref rect and \ref outerRect). +*/ +void QCPLayoutElement::setMaximumSize(const QSize &size) +{ + if (mMaximumSize != size) + { + mMaximumSize = size; + if (mParentLayout) + mParentLayout->sizeConstraintsChanged(); + } +} + +/*! \overload + + Sets the maximum size of this layout element. + + Whether this constraint applies to the inner or the outer rect can be specified with \ref + setSizeConstraintRect (see \ref rect and \ref outerRect). +*/ +void QCPLayoutElement::setMaximumSize(int width, int height) +{ + setMaximumSize(QSize(width, height)); +} + +/*! + Sets to which rect of a layout element the size constraints apply. Size constraints can be set + via \ref setMinimumSize and \ref setMaximumSize. + + The outer rect (\ref outerRect) includes the margins (e.g. in the case of a QCPAxisRect the axis + labels), whereas the inner rect (\ref rect) does not. + + \see setMinimumSize, setMaximumSize +*/ +void QCPLayoutElement::setSizeConstraintRect(SizeConstraintRect constraintRect) +{ + if (mSizeConstraintRect != constraintRect) + { + mSizeConstraintRect = constraintRect; + if (mParentLayout) + mParentLayout->sizeConstraintsChanged(); + } +} + +/*! + Sets the margin \a group of the specified margin \a sides. + + Margin groups allow synchronizing specified margins across layout elements, see the documentation + of \ref QCPMarginGroup. + + To unset the margin group of \a sides, set \a group to 0. + + Note that margin groups only work for margin sides that are set to automatic (\ref + setAutoMargins). + + \see QCP::MarginSide +*/ +void QCPLayoutElement::setMarginGroup(QCP::MarginSides sides, QCPMarginGroup *group) +{ + QVector sideVector; + if (sides.testFlag(QCP::msLeft)) sideVector.append(QCP::msLeft); + if (sides.testFlag(QCP::msRight)) sideVector.append(QCP::msRight); + if (sides.testFlag(QCP::msTop)) sideVector.append(QCP::msTop); + if (sides.testFlag(QCP::msBottom)) sideVector.append(QCP::msBottom); + + for (int i=0; iremoveChild(side, this); + + if (!group) // if setting to 0, remove hash entry. Else set hash entry to new group and register there + { + mMarginGroups.remove(side); + } else // setting to a new group + { + mMarginGroups[side] = group; + group->addChild(side, this); + } + } + } +} + +/*! + Updates the layout element and sub-elements. This function is automatically called before every + replot by the parent layout element. It is called multiple times, once for every \ref + UpdatePhase. The phases are run through in the order of the enum values. For details about what + happens at the different phases, see the documentation of \ref UpdatePhase. + + Layout elements that have child elements should call the \ref update method of their child + elements, and pass the current \a phase unchanged. + + The default implementation executes the automatic margin mechanism in the \ref upMargins phase. + Subclasses should make sure to call the base class implementation. +*/ +void QCPLayoutElement::update(UpdatePhase phase) +{ + if (phase == upMargins) + { + if (mAutoMargins != QCP::msNone) + { + // set the margins of this layout element according to automatic margin calculation, either directly or via a margin group: + QMargins newMargins = mMargins; + QList allMarginSides = QList() << QCP::msLeft << QCP::msRight << QCP::msTop << QCP::msBottom; + foreach (QCP::MarginSide side, allMarginSides) + { + if (mAutoMargins.testFlag(side)) // this side's margin shall be calculated automatically + { + if (mMarginGroups.contains(side)) + QCP::setMarginValue(newMargins, side, mMarginGroups[side]->commonMargin(side)); // this side is part of a margin group, so get the margin value from that group + else + QCP::setMarginValue(newMargins, side, calculateAutoMargin(side)); // this side is not part of a group, so calculate the value directly + // apply minimum margin restrictions: + if (QCP::getMarginValue(newMargins, side) < QCP::getMarginValue(mMinimumMargins, side)) + QCP::setMarginValue(newMargins, side, QCP::getMarginValue(mMinimumMargins, side)); + } + } + setMargins(newMargins); + } + } +} + +/*! + Returns the suggested minimum size this layout element (the \ref outerRect) may be compressed to, + if no manual minimum size is set. + + if a minimum size (\ref setMinimumSize) was not set manually, parent layouts use the returned size + (usually indirectly through \ref QCPLayout::getFinalMinimumOuterSize) to determine the minimum + allowed size of this layout element. + + A manual minimum size is considered set if it is non-zero. + + The default implementation simply returns the sum of the horizontal margins for the width and the + sum of the vertical margins for the height. Reimplementations may use their detailed knowledge + about the layout element's content to provide size hints. +*/ +QSize QCPLayoutElement::minimumOuterSizeHint() const +{ + return QSize(mMargins.left()+mMargins.right(), mMargins.top()+mMargins.bottom()); +} + +/*! + Returns the suggested maximum size this layout element (the \ref outerRect) may be expanded to, + if no manual maximum size is set. + + if a maximum size (\ref setMaximumSize) was not set manually, parent layouts use the returned + size (usually indirectly through \ref QCPLayout::getFinalMaximumOuterSize) to determine the + maximum allowed size of this layout element. + + A manual maximum size is considered set if it is smaller than Qt's \c QWIDGETSIZE_MAX. + + The default implementation simply returns \c QWIDGETSIZE_MAX for both width and height, implying + no suggested maximum size. Reimplementations may use their detailed knowledge about the layout + element's content to provide size hints. +*/ +QSize QCPLayoutElement::maximumOuterSizeHint() const +{ + return QSize(QWIDGETSIZE_MAX, QWIDGETSIZE_MAX); +} + +/*! + Returns a list of all child elements in this layout element. If \a recursive is true, all + sub-child elements are included in the list, too. + + \warning There may be entries with value 0 in the returned list. (For example, QCPLayoutGrid may have + empty cells which yield 0 at the respective index.) +*/ +QList QCPLayoutElement::elements(bool recursive) const +{ + Q_UNUSED(recursive) + return QList(); +} + +/*! + Layout elements are sensitive to events inside their outer rect. If \a pos is within the outer + rect, this method returns a value corresponding to 0.99 times the parent plot's selection + tolerance. However, layout elements are not selectable by default. So if \a onlySelectable is + true, -1.0 is returned. + + See \ref QCPLayerable::selectTest for a general explanation of this virtual method. + + QCPLayoutElement subclasses may reimplement this method to provide more specific selection test + behaviour. +*/ +double QCPLayoutElement::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + + if (onlySelectable) + return -1; + + if (QRectF(mOuterRect).contains(pos)) + { + if (mParentPlot) + return mParentPlot->selectionTolerance()*0.99; + else + { + qDebug() << Q_FUNC_INFO << "parent plot not defined"; + return -1; + } + } else + return -1; +} + +/*! \internal + + propagates the parent plot initialization to all child elements, by calling \ref + QCPLayerable::initializeParentPlot on them. +*/ +void QCPLayoutElement::parentPlotInitialized(QCustomPlot *parentPlot) +{ + foreach (QCPLayoutElement* el, elements(false)) + { + if (!el->parentPlot()) + el->initializeParentPlot(parentPlot); + } +} + +/*! \internal + + Returns the margin size for this \a side. It is used if automatic margins is enabled for this \a + side (see \ref setAutoMargins). If a minimum margin was set with \ref setMinimumMargins, the + returned value will not be smaller than the specified minimum margin. + + The default implementation just returns the respective manual margin (\ref setMargins) or the + minimum margin, whichever is larger. +*/ +int QCPLayoutElement::calculateAutoMargin(QCP::MarginSide side) +{ + return qMax(QCP::getMarginValue(mMargins, side), QCP::getMarginValue(mMinimumMargins, side)); +} + +/*! \internal + + This virtual method is called when this layout element was moved to a different QCPLayout, or + when this layout element has changed its logical position (e.g. row and/or column) within the + same QCPLayout. Subclasses may use this to react accordingly. + + Since this method is called after the completion of the move, you can access the new parent + layout via \ref layout(). + + The default implementation does nothing. +*/ +void QCPLayoutElement::layoutChanged() +{ +} + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPLayout +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPLayout + \brief The abstract base class for layouts + + This is an abstract base class for layout elements whose main purpose is to define the position + and size of other child layout elements. In most cases, layouts don't draw anything themselves + (but there are exceptions to this, e.g. QCPLegend). + + QCPLayout derives from QCPLayoutElement, and thus can itself be nested in other layouts. + + QCPLayout introduces a common interface for accessing and manipulating the child elements. Those + functions are most notably \ref elementCount, \ref elementAt, \ref takeAt, \ref take, \ref + simplify, \ref removeAt, \ref remove and \ref clear. Individual subclasses may add more functions + to this interface which are more specialized to the form of the layout. For example, \ref + QCPLayoutGrid adds functions that take row and column indices to access cells of the layout grid + more conveniently. + + Since this is an abstract base class, you can't instantiate it directly. Rather use one of its + subclasses like QCPLayoutGrid or QCPLayoutInset. + + For a general introduction to the layout system, see the dedicated documentation page \ref + thelayoutsystem "The Layout System". +*/ + +/* start documentation of pure virtual functions */ + +/*! \fn virtual int QCPLayout::elementCount() const = 0 + + Returns the number of elements/cells in the layout. + + \see elements, elementAt +*/ + +/*! \fn virtual QCPLayoutElement* QCPLayout::elementAt(int index) const = 0 + + Returns the element in the cell with the given \a index. If \a index is invalid, returns 0. + + Note that even if \a index is valid, the respective cell may be empty in some layouts (e.g. + QCPLayoutGrid), so this function may return 0 in those cases. You may use this function to check + whether a cell is empty or not. + + \see elements, elementCount, takeAt +*/ + +/*! \fn virtual QCPLayoutElement* QCPLayout::takeAt(int index) = 0 + + Removes the element with the given \a index from the layout and returns it. + + If the \a index is invalid or the cell with that index is empty, returns 0. + + Note that some layouts don't remove the respective cell right away but leave an empty cell after + successful removal of the layout element. To collapse empty cells, use \ref simplify. + + \see elementAt, take +*/ + +/*! \fn virtual bool QCPLayout::take(QCPLayoutElement* element) = 0 + + Removes the specified \a element from the layout and returns true on success. + + If the \a element isn't in this layout, returns false. + + Note that some layouts don't remove the respective cell right away but leave an empty cell after + successful removal of the layout element. To collapse empty cells, use \ref simplify. + + \see takeAt +*/ + +/* end documentation of pure virtual functions */ + +/*! + Creates an instance of QCPLayout and sets default values. Note that since QCPLayout + is an abstract base class, it can't be instantiated directly. +*/ +QCPLayout::QCPLayout() +{ +} + +/*! + If \a phase is \ref upLayout, calls \ref updateLayout, which subclasses may reimplement to + reposition and resize their cells. + + Finally, the call is propagated down to all child \ref QCPLayoutElement "QCPLayoutElements". + + For details about this method and the update phases, see the documentation of \ref + QCPLayoutElement::update. +*/ +void QCPLayout::update(UpdatePhase phase) +{ + QCPLayoutElement::update(phase); + + // set child element rects according to layout: + if (phase == upLayout) + updateLayout(); + + // propagate update call to child elements: + const int elCount = elementCount(); + for (int i=0; iupdate(phase); + } +} + +/* inherits documentation from base class */ +QList QCPLayout::elements(bool recursive) const +{ + const int c = elementCount(); + QList result; +#if QT_VERSION >= QT_VERSION_CHECK(4, 7, 0) + result.reserve(c); +#endif + for (int i=0; ielements(recursive); + } + } + return result; +} + +/*! + Simplifies the layout by collapsing empty cells. The exact behavior depends on subclasses, the + default implementation does nothing. + + Not all layouts need simplification. For example, QCPLayoutInset doesn't use explicit + simplification while QCPLayoutGrid does. +*/ +void QCPLayout::simplify() +{ +} + +/*! + Removes and deletes the element at the provided \a index. Returns true on success. If \a index is + invalid or points to an empty cell, returns false. + + This function internally uses \ref takeAt to remove the element from the layout and then deletes + the returned element. Note that some layouts don't remove the respective cell right away but leave an + empty cell after successful removal of the layout element. To collapse empty cells, use \ref + simplify. + + \see remove, takeAt +*/ +bool QCPLayout::removeAt(int index) +{ + if (QCPLayoutElement *el = takeAt(index)) + { + delete el; + return true; + } else + return false; +} + +/*! + Removes and deletes the provided \a element. Returns true on success. If \a element is not in the + layout, returns false. + + This function internally uses \ref takeAt to remove the element from the layout and then deletes + the element. Note that some layouts don't remove the respective cell right away but leave an + empty cell after successful removal of the layout element. To collapse empty cells, use \ref + simplify. + + \see removeAt, take +*/ +bool QCPLayout::remove(QCPLayoutElement *element) +{ + if (take(element)) + { + delete element; + return true; + } else + return false; +} + +/*! + Removes and deletes all layout elements in this layout. Finally calls \ref simplify to make sure + all empty cells are collapsed. + + \see remove, removeAt +*/ +void QCPLayout::clear() +{ + for (int i=elementCount()-1; i>=0; --i) + { + if (elementAt(i)) + removeAt(i); + } + simplify(); +} + +/*! + Subclasses call this method to report changed (minimum/maximum) size constraints. + + If the parent of this layout is again a QCPLayout, forwards the call to the parent's \ref + sizeConstraintsChanged. If the parent is a QWidget (i.e. is the \ref QCustomPlot::plotLayout of + QCustomPlot), calls QWidget::updateGeometry, so if the QCustomPlot widget is inside a Qt QLayout, + it may update itself and resize cells accordingly. +*/ +void QCPLayout::sizeConstraintsChanged() const +{ + if (QWidget *w = qobject_cast(parent())) + w->updateGeometry(); + else if (QCPLayout *l = qobject_cast(parent())) + l->sizeConstraintsChanged(); +} + +/*! \internal + + Subclasses reimplement this method to update the position and sizes of the child elements/cells + via calling their \ref QCPLayoutElement::setOuterRect. The default implementation does nothing. + + The geometry used as a reference is the inner \ref rect of this layout. Child elements should stay + within that rect. + + \ref getSectionSizes may help with the reimplementation of this function. + + \see update +*/ +void QCPLayout::updateLayout() +{ +} + + +/*! \internal + + Associates \a el with this layout. This is done by setting the \ref QCPLayoutElement::layout, the + \ref QCPLayerable::parentLayerable and the QObject parent to this layout. + + Further, if \a el didn't previously have a parent plot, calls \ref + QCPLayerable::initializeParentPlot on \a el to set the paret plot. + + This method is used by subclass specific methods that add elements to the layout. Note that this + method only changes properties in \a el. The removal from the old layout and the insertion into + the new layout must be done additionally. +*/ +void QCPLayout::adoptElement(QCPLayoutElement *el) +{ + if (el) + { + el->mParentLayout = this; + el->setParentLayerable(this); + el->setParent(this); + if (!el->parentPlot()) + el->initializeParentPlot(mParentPlot); + el->layoutChanged(); + } else + qDebug() << Q_FUNC_INFO << "Null element passed"; +} + +/*! \internal + + Disassociates \a el from this layout. This is done by setting the \ref QCPLayoutElement::layout + and the \ref QCPLayerable::parentLayerable to zero. The QObject parent is set to the parent + QCustomPlot. + + This method is used by subclass specific methods that remove elements from the layout (e.g. \ref + take or \ref takeAt). Note that this method only changes properties in \a el. The removal from + the old layout must be done additionally. +*/ +void QCPLayout::releaseElement(QCPLayoutElement *el) +{ + if (el) + { + el->mParentLayout = 0; + el->setParentLayerable(0); + el->setParent(mParentPlot); + // Note: Don't initializeParentPlot(0) here, because layout element will stay in same parent plot + } else + qDebug() << Q_FUNC_INFO << "Null element passed"; +} + +/*! \internal + + This is a helper function for the implementation of \ref updateLayout in subclasses. + + It calculates the sizes of one-dimensional sections with provided constraints on maximum section + sizes, minimum section sizes, relative stretch factors and the final total size of all sections. + + The QVector entries refer to the sections. Thus all QVectors must have the same size. + + \a maxSizes gives the maximum allowed size of each section. If there shall be no maximum size + imposed, set all vector values to Qt's QWIDGETSIZE_MAX. + + \a minSizes gives the minimum allowed size of each section. If there shall be no minimum size + imposed, set all vector values to zero. If the \a minSizes entries add up to a value greater than + \a totalSize, sections will be scaled smaller than the proposed minimum sizes. (In other words, + not exceeding the allowed total size is taken to be more important than not going below minimum + section sizes.) + + \a stretchFactors give the relative proportions of the sections to each other. If all sections + shall be scaled equally, set all values equal. If the first section shall be double the size of + each individual other section, set the first number of \a stretchFactors to double the value of + the other individual values (e.g. {2, 1, 1, 1}). + + \a totalSize is the value that the final section sizes will add up to. Due to rounding, the + actual sum may differ slightly. If you want the section sizes to sum up to exactly that value, + you could distribute the remaining difference on the sections. + + The return value is a QVector containing the section sizes. +*/ +QVector QCPLayout::getSectionSizes(QVector maxSizes, QVector minSizes, QVector stretchFactors, int totalSize) const +{ + if (maxSizes.size() != minSizes.size() || minSizes.size() != stretchFactors.size()) + { + qDebug() << Q_FUNC_INFO << "Passed vector sizes aren't equal:" << maxSizes << minSizes << stretchFactors; + return QVector(); + } + if (stretchFactors.isEmpty()) + return QVector(); + int sectionCount = stretchFactors.size(); + QVector sectionSizes(sectionCount); + // if provided total size is forced smaller than total minimum size, ignore minimum sizes (squeeze sections): + int minSizeSum = 0; + for (int i=0; i minimumLockedSections; + QList unfinishedSections; + for (int i=0; i result(sectionCount); + for (int i=0; iminimumOuterSizeHint(); + QSize minOuter = el->minimumSize(); // depending on sizeConstraitRect this might be with respect to inner rect, so possibly add margins in next four lines (preserving unset minimum of 0) + if (minOuter.width() > 0 && el->sizeConstraintRect() == QCPLayoutElement::scrInnerRect) + minOuter.rwidth() += el->margins().left() + el->margins().right(); + if (minOuter.height() > 0 && el->sizeConstraintRect() == QCPLayoutElement::scrInnerRect) + minOuter.rheight() += el->margins().top() + el->margins().bottom(); + + return QSize(minOuter.width() > 0 ? minOuter.width() : minOuterHint.width(), + minOuter.height() > 0 ? minOuter.height() : minOuterHint.height());; +} + +/*! \internal + + This is a helper function for the implementation of subclasses. + + It returns the maximum size that should finally be used for the outer rect of the passed layout + element \a el. + + It takes into account whether a manual maximum size is set (\ref + QCPLayoutElement::setMaximumSize), which size constraint is set (\ref + QCPLayoutElement::setSizeConstraintRect), as well as the maximum size hint, if no manual maximum + size was set (\ref QCPLayoutElement::maximumOuterSizeHint). +*/ +QSize QCPLayout::getFinalMaximumOuterSize(const QCPLayoutElement *el) +{ + QSize maxOuterHint = el->maximumOuterSizeHint(); + QSize maxOuter = el->maximumSize(); // depending on sizeConstraitRect this might be with respect to inner rect, so possibly add margins in next four lines (preserving unset maximum of QWIDGETSIZE_MAX) + if (maxOuter.width() < QWIDGETSIZE_MAX && el->sizeConstraintRect() == QCPLayoutElement::scrInnerRect) + maxOuter.rwidth() += el->margins().left() + el->margins().right(); + if (maxOuter.height() < QWIDGETSIZE_MAX && el->sizeConstraintRect() == QCPLayoutElement::scrInnerRect) + maxOuter.rheight() += el->margins().top() + el->margins().bottom(); + + return QSize(maxOuter.width() < QWIDGETSIZE_MAX ? maxOuter.width() : maxOuterHint.width(), + maxOuter.height() < QWIDGETSIZE_MAX ? maxOuter.height() : maxOuterHint.height()); +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPLayoutGrid +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPLayoutGrid + \brief A layout that arranges child elements in a grid + + Elements are laid out in a grid with configurable stretch factors (\ref setColumnStretchFactor, + \ref setRowStretchFactor) and spacing (\ref setColumnSpacing, \ref setRowSpacing). + + Elements can be added to cells via \ref addElement. The grid is expanded if the specified row or + column doesn't exist yet. Whether a cell contains a valid layout element can be checked with \ref + hasElement, that element can be retrieved with \ref element. If rows and columns that only have + empty cells shall be removed, call \ref simplify. Removal of elements is either done by just + adding the element to a different layout or by using the QCPLayout interface \ref take or \ref + remove. + + If you use \ref addElement(QCPLayoutElement*) without explicit parameters for \a row and \a + column, the grid layout will choose the position according to the current \ref setFillOrder and + the wrapping (\ref setWrap). + + Row and column insertion can be performed with \ref insertRow and \ref insertColumn. +*/ + +/* start documentation of inline functions */ + +/*! \fn int QCPLayoutGrid::rowCount() const + + Returns the number of rows in the layout. + + \see columnCount +*/ + +/*! \fn int QCPLayoutGrid::columnCount() const + + Returns the number of columns in the layout. + + \see rowCount +*/ + +/* end documentation of inline functions */ + +/*! + Creates an instance of QCPLayoutGrid and sets default values. +*/ +QCPLayoutGrid::QCPLayoutGrid() : + mColumnSpacing(5), + mRowSpacing(5), + mWrap(0), + mFillOrder(foColumnsFirst) +{ +} + +QCPLayoutGrid::~QCPLayoutGrid() +{ + // clear all child layout elements. This is important because only the specific layouts know how + // to handle removing elements (clear calls virtual removeAt method to do that). + clear(); +} + +/*! + Returns the element in the cell in \a row and \a column. + + Returns 0 if either the row/column is invalid or if the cell is empty. In those cases, a qDebug + message is printed. To check whether a cell exists and isn't empty, use \ref hasElement. + + \see addElement, hasElement +*/ +QCPLayoutElement *QCPLayoutGrid::element(int row, int column) const +{ + if (row >= 0 && row < mElements.size()) + { + if (column >= 0 && column < mElements.first().size()) + { + if (QCPLayoutElement *result = mElements.at(row).at(column)) + return result; + else + qDebug() << Q_FUNC_INFO << "Requested cell is empty. Row:" << row << "Column:" << column; + } else + qDebug() << Q_FUNC_INFO << "Invalid column. Row:" << row << "Column:" << column; + } else + qDebug() << Q_FUNC_INFO << "Invalid row. Row:" << row << "Column:" << column; + return 0; +} + + +/*! \overload + + Adds the \a element to cell with \a row and \a column. If \a element is already in a layout, it + is first removed from there. If \a row or \a column don't exist yet, the layout is expanded + accordingly. + + Returns true if the element was added successfully, i.e. if the cell at \a row and \a column + didn't already have an element. + + Use the overload of this method without explicit row/column index to place the element according + to the configured fill order and wrapping settings. + + \see element, hasElement, take, remove +*/ +bool QCPLayoutGrid::addElement(int row, int column, QCPLayoutElement *element) +{ + if (!hasElement(row, column)) + { + if (element && element->layout()) // remove from old layout first + element->layout()->take(element); + expandTo(row+1, column+1); + mElements[row][column] = element; + if (element) + adoptElement(element); + return true; + } else + qDebug() << Q_FUNC_INFO << "There is already an element in the specified row/column:" << row << column; + return false; +} + +/*! \overload + + Adds the \a element to the next empty cell according to the current fill order (\ref + setFillOrder) and wrapping (\ref setWrap). If \a element is already in a layout, it is first + removed from there. If necessary, the layout is expanded to hold the new element. + + Returns true if the element was added successfully. + + \see setFillOrder, setWrap, element, hasElement, take, remove +*/ +bool QCPLayoutGrid::addElement(QCPLayoutElement *element) +{ + int rowIndex = 0; + int colIndex = 0; + if (mFillOrder == foColumnsFirst) + { + while (hasElement(rowIndex, colIndex)) + { + ++colIndex; + if (colIndex >= mWrap && mWrap > 0) + { + colIndex = 0; + ++rowIndex; + } + } + } else + { + while (hasElement(rowIndex, colIndex)) + { + ++rowIndex; + if (rowIndex >= mWrap && mWrap > 0) + { + rowIndex = 0; + ++colIndex; + } + } + } + return addElement(rowIndex, colIndex, element); +} + +/*! + Returns whether the cell at \a row and \a column exists and contains a valid element, i.e. isn't + empty. + + \see element +*/ +bool QCPLayoutGrid::hasElement(int row, int column) +{ + if (row >= 0 && row < rowCount() && column >= 0 && column < columnCount()) + return mElements.at(row).at(column); + else + return false; +} + +/*! + Sets the stretch \a factor of \a column. + + Stretch factors control the relative sizes of rows and columns. Cells will not be resized beyond + their minimum and maximum widths/heights, regardless of the stretch factor. (see \ref + QCPLayoutElement::setMinimumSize, \ref QCPLayoutElement::setMaximumSize, \ref + QCPLayoutElement::setSizeConstraintRect.) + + The default stretch factor of newly created rows/columns is 1. + + \see setColumnStretchFactors, setRowStretchFactor +*/ +void QCPLayoutGrid::setColumnStretchFactor(int column, double factor) +{ + if (column >= 0 && column < columnCount()) + { + if (factor > 0) + mColumnStretchFactors[column] = factor; + else + qDebug() << Q_FUNC_INFO << "Invalid stretch factor, must be positive:" << factor; + } else + qDebug() << Q_FUNC_INFO << "Invalid column:" << column; +} + +/*! + Sets the stretch \a factors of all columns. \a factors must have the size \ref columnCount. + + Stretch factors control the relative sizes of rows and columns. Cells will not be resized beyond + their minimum and maximum widths/heights, regardless of the stretch factor. (see \ref + QCPLayoutElement::setMinimumSize, \ref QCPLayoutElement::setMaximumSize, \ref + QCPLayoutElement::setSizeConstraintRect.) + + The default stretch factor of newly created rows/columns is 1. + + \see setColumnStretchFactor, setRowStretchFactors +*/ +void QCPLayoutGrid::setColumnStretchFactors(const QList &factors) +{ + if (factors.size() == mColumnStretchFactors.size()) + { + mColumnStretchFactors = factors; + for (int i=0; i= 0 && row < rowCount()) + { + if (factor > 0) + mRowStretchFactors[row] = factor; + else + qDebug() << Q_FUNC_INFO << "Invalid stretch factor, must be positive:" << factor; + } else + qDebug() << Q_FUNC_INFO << "Invalid row:" << row; +} + +/*! + Sets the stretch \a factors of all rows. \a factors must have the size \ref rowCount. + + Stretch factors control the relative sizes of rows and columns. Cells will not be resized beyond + their minimum and maximum widths/heights, regardless of the stretch factor. (see \ref + QCPLayoutElement::setMinimumSize, \ref QCPLayoutElement::setMaximumSize, \ref + QCPLayoutElement::setSizeConstraintRect.) + + The default stretch factor of newly created rows/columns is 1. + + \see setRowStretchFactor, setColumnStretchFactors +*/ +void QCPLayoutGrid::setRowStretchFactors(const QList &factors) +{ + if (factors.size() == mRowStretchFactors.size()) + { + mRowStretchFactors = factors; + for (int i=0; i tempElements; + if (rearrange) + { + tempElements.reserve(elCount); + for (int i=0; i()); + mRowStretchFactors.append(1); + } + // go through rows and expand columns as necessary: + int newColCount = qMax(columnCount(), newColumnCount); + for (int i=0; i rowCount()) + newIndex = rowCount(); + + mRowStretchFactors.insert(newIndex, 1); + QList newRow; + for (int col=0; col columnCount()) + newIndex = columnCount(); + + mColumnStretchFactors.insert(newIndex, 1); + for (int row=0; row= 0 && row < rowCount()) + { + if (column >= 0 && column < columnCount()) + { + switch (mFillOrder) + { + case foRowsFirst: return column*rowCount() + row; + case foColumnsFirst: return row*columnCount() + column; + } + } else + qDebug() << Q_FUNC_INFO << "row index out of bounds:" << row; + } else + qDebug() << Q_FUNC_INFO << "column index out of bounds:" << column; + return 0; +} + +/*! + Converts the linear index to row and column indices and writes the result to \a row and \a + column. + + The way the cells are indexed depends on \ref setFillOrder. If it is \ref foRowsFirst, the + indices increase left to right and then top to bottom. If it is \ref foColumnsFirst, the indices + increase top to bottom and then left to right. + + If there are no cells (i.e. column or row count is zero), sets \a row and \a column to -1. + + For the retrieved \a row and \a column to be valid, the passed \a index must be valid itself, + i.e. greater or equal to zero and smaller than the current \ref elementCount. + + \see rowColToIndex +*/ +void QCPLayoutGrid::indexToRowCol(int index, int &row, int &column) const +{ + row = -1; + column = -1; + const int nCols = columnCount(); + const int nRows = rowCount(); + if (nCols == 0 || nRows == 0) + return; + if (index < 0 || index >= elementCount()) + { + qDebug() << Q_FUNC_INFO << "index out of bounds:" << index; + return; + } + + switch (mFillOrder) + { + case foRowsFirst: + { + column = index / nRows; + row = index % nRows; + break; + } + case foColumnsFirst: + { + row = index / nCols; + column = index % nCols; + break; + } + } +} + +/* inherits documentation from base class */ +void QCPLayoutGrid::updateLayout() +{ + QVector minColWidths, minRowHeights, maxColWidths, maxRowHeights; + getMinimumRowColSizes(&minColWidths, &minRowHeights); + getMaximumRowColSizes(&maxColWidths, &maxRowHeights); + + int totalRowSpacing = (rowCount()-1) * mRowSpacing; + int totalColSpacing = (columnCount()-1) * mColumnSpacing; + QVector colWidths = getSectionSizes(maxColWidths, minColWidths, mColumnStretchFactors.toVector(), mRect.width()-totalColSpacing); + QVector rowHeights = getSectionSizes(maxRowHeights, minRowHeights, mRowStretchFactors.toVector(), mRect.height()-totalRowSpacing); + + // go through cells and set rects accordingly: + int yOffset = mRect.top(); + for (int row=0; row 0) + yOffset += rowHeights.at(row-1)+mRowSpacing; + int xOffset = mRect.left(); + for (int col=0; col 0) + xOffset += colWidths.at(col-1)+mColumnSpacing; + if (mElements.at(row).at(col)) + mElements.at(row).at(col)->setOuterRect(QRect(xOffset, yOffset, colWidths.at(col), rowHeights.at(row))); + } + } +} + +/*! + \seebaseclassmethod + + Note that the association of the linear \a index to the row/column based cells depends on the + current setting of \ref setFillOrder. + + \see rowColToIndex +*/ +QCPLayoutElement *QCPLayoutGrid::elementAt(int index) const +{ + if (index >= 0 && index < elementCount()) + { + int row, col; + indexToRowCol(index, row, col); + return mElements.at(row).at(col); + } else + return 0; +} + +/*! + \seebaseclassmethod + + Note that the association of the linear \a index to the row/column based cells depends on the + current setting of \ref setFillOrder. + + \see rowColToIndex +*/ +QCPLayoutElement *QCPLayoutGrid::takeAt(int index) +{ + if (QCPLayoutElement *el = elementAt(index)) + { + releaseElement(el); + int row, col; + indexToRowCol(index, row, col); + mElements[row][col] = 0; + return el; + } else + { + qDebug() << Q_FUNC_INFO << "Attempt to take invalid index:" << index; + return 0; + } +} + +/* inherits documentation from base class */ +bool QCPLayoutGrid::take(QCPLayoutElement *element) +{ + if (element) + { + for (int i=0; i QCPLayoutGrid::elements(bool recursive) const +{ + QList result; + const int elCount = elementCount(); +#if QT_VERSION >= QT_VERSION_CHECK(4, 7, 0) + result.reserve(elCount); +#endif + for (int i=0; ielements(recursive); + } + } + return result; +} + +/*! + Simplifies the layout by collapsing rows and columns which only contain empty cells. +*/ +void QCPLayoutGrid::simplify() +{ + // remove rows with only empty cells: + for (int row=rowCount()-1; row>=0; --row) + { + bool hasElements = false; + for (int col=0; col=0; --col) + { + bool hasElements = false; + for (int row=0; row minColWidths, minRowHeights; + getMinimumRowColSizes(&minColWidths, &minRowHeights); + QSize result(0, 0); + for (int i=0; i maxColWidths, maxRowHeights; + getMaximumRowColSizes(&maxColWidths, &maxRowHeights); + + QSize result(0, 0); + for (int i=0; i QWIDGETSIZE_MAX) + result.setHeight(QWIDGETSIZE_MAX); + if (result.width() > QWIDGETSIZE_MAX) + result.setWidth(QWIDGETSIZE_MAX); + return result; +} + +/*! \internal + + Places the minimum column widths and row heights into \a minColWidths and \a minRowHeights + respectively. + + The minimum height of a row is the largest minimum height of any element's outer rect in that + row. The minimum width of a column is the largest minimum width of any element's outer rect in + that column. + + This is a helper function for \ref updateLayout. + + \see getMaximumRowColSizes +*/ +void QCPLayoutGrid::getMinimumRowColSizes(QVector *minColWidths, QVector *minRowHeights) const +{ + *minColWidths = QVector(columnCount(), 0); + *minRowHeights = QVector(rowCount(), 0); + for (int row=0; rowat(col) < minSize.width()) + (*minColWidths)[col] = minSize.width(); + if (minRowHeights->at(row) < minSize.height()) + (*minRowHeights)[row] = minSize.height(); + } + } + } +} + +/*! \internal + + Places the maximum column widths and row heights into \a maxColWidths and \a maxRowHeights + respectively. + + The maximum height of a row is the smallest maximum height of any element's outer rect in that + row. The maximum width of a column is the smallest maximum width of any element's outer rect in + that column. + + This is a helper function for \ref updateLayout. + + \see getMinimumRowColSizes +*/ +void QCPLayoutGrid::getMaximumRowColSizes(QVector *maxColWidths, QVector *maxRowHeights) const +{ + *maxColWidths = QVector(columnCount(), QWIDGETSIZE_MAX); + *maxRowHeights = QVector(rowCount(), QWIDGETSIZE_MAX); + for (int row=0; rowat(col) > maxSize.width()) + (*maxColWidths)[col] = maxSize.width(); + if (maxRowHeights->at(row) > maxSize.height()) + (*maxRowHeights)[row] = maxSize.height(); + } + } + } +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPLayoutInset +//////////////////////////////////////////////////////////////////////////////////////////////////// +/*! \class QCPLayoutInset + \brief A layout that places child elements aligned to the border or arbitrarily positioned + + Elements are placed either aligned to the border or at arbitrary position in the area of the + layout. Which placement applies is controlled with the \ref InsetPlacement (\ref + setInsetPlacement). + + Elements are added via \ref addElement(QCPLayoutElement *element, Qt::Alignment alignment) or + addElement(QCPLayoutElement *element, const QRectF &rect). If the first method is used, the inset + placement will default to \ref ipBorderAligned and the element will be aligned according to the + \a alignment parameter. The second method defaults to \ref ipFree and allows placing elements at + arbitrary position and size, defined by \a rect. + + The alignment or rect can be set via \ref setInsetAlignment or \ref setInsetRect, respectively. + + This is the layout that every QCPAxisRect has as \ref QCPAxisRect::insetLayout. +*/ + +/* start documentation of inline functions */ + +/*! \fn virtual void QCPLayoutInset::simplify() + + The QCPInsetLayout does not need simplification since it can never have empty cells due to its + linear index structure. This method does nothing. +*/ + +/* end documentation of inline functions */ + +/*! + Creates an instance of QCPLayoutInset and sets default values. +*/ +QCPLayoutInset::QCPLayoutInset() +{ +} + +QCPLayoutInset::~QCPLayoutInset() +{ + // clear all child layout elements. This is important because only the specific layouts know how + // to handle removing elements (clear calls virtual removeAt method to do that). + clear(); +} + +/*! + Returns the placement type of the element with the specified \a index. +*/ +QCPLayoutInset::InsetPlacement QCPLayoutInset::insetPlacement(int index) const +{ + if (elementAt(index)) + return mInsetPlacement.at(index); + else + { + qDebug() << Q_FUNC_INFO << "Invalid element index:" << index; + return ipFree; + } +} + +/*! + Returns the alignment of the element with the specified \a index. The alignment only has a + meaning, if the inset placement (\ref setInsetPlacement) is \ref ipBorderAligned. +*/ +Qt::Alignment QCPLayoutInset::insetAlignment(int index) const +{ + if (elementAt(index)) + return mInsetAlignment.at(index); + else + { + qDebug() << Q_FUNC_INFO << "Invalid element index:" << index; + return 0; + } +} + +/*! + Returns the rect of the element with the specified \a index. The rect only has a + meaning, if the inset placement (\ref setInsetPlacement) is \ref ipFree. +*/ +QRectF QCPLayoutInset::insetRect(int index) const +{ + if (elementAt(index)) + return mInsetRect.at(index); + else + { + qDebug() << Q_FUNC_INFO << "Invalid element index:" << index; + return QRectF(); + } +} + +/*! + Sets the inset placement type of the element with the specified \a index to \a placement. + + \see InsetPlacement +*/ +void QCPLayoutInset::setInsetPlacement(int index, QCPLayoutInset::InsetPlacement placement) +{ + if (elementAt(index)) + mInsetPlacement[index] = placement; + else + qDebug() << Q_FUNC_INFO << "Invalid element index:" << index; +} + +/*! + If the inset placement (\ref setInsetPlacement) is \ref ipBorderAligned, this function + is used to set the alignment of the element with the specified \a index to \a alignment. + + \a alignment is an or combination of the following alignment flags: Qt::AlignLeft, + Qt::AlignHCenter, Qt::AlighRight, Qt::AlignTop, Qt::AlignVCenter, Qt::AlignBottom. Any other + alignment flags will be ignored. +*/ +void QCPLayoutInset::setInsetAlignment(int index, Qt::Alignment alignment) +{ + if (elementAt(index)) + mInsetAlignment[index] = alignment; + else + qDebug() << Q_FUNC_INFO << "Invalid element index:" << index; +} + +/*! + If the inset placement (\ref setInsetPlacement) is \ref ipFree, this function is used to set the + position and size of the element with the specified \a index to \a rect. + + \a rect is given in fractions of the whole inset layout rect. So an inset with rect (0, 0, 1, 1) + will span the entire layout. An inset with rect (0.6, 0.1, 0.35, 0.35) will be in the top right + corner of the layout, with 35% width and height of the parent layout. + + Note that the minimum and maximum sizes of the embedded element (\ref + QCPLayoutElement::setMinimumSize, \ref QCPLayoutElement::setMaximumSize) are enforced. +*/ +void QCPLayoutInset::setInsetRect(int index, const QRectF &rect) +{ + if (elementAt(index)) + mInsetRect[index] = rect; + else + qDebug() << Q_FUNC_INFO << "Invalid element index:" << index; +} + +/* inherits documentation from base class */ +void QCPLayoutInset::updateLayout() +{ + for (int i=0; i finalMaxSize.width()) + insetRect.setWidth(finalMaxSize.width()); + if (insetRect.size().height() > finalMaxSize.height()) + insetRect.setHeight(finalMaxSize.height()); + } else if (mInsetPlacement.at(i) == ipBorderAligned) + { + insetRect.setSize(finalMinSize); + Qt::Alignment al = mInsetAlignment.at(i); + if (al.testFlag(Qt::AlignLeft)) insetRect.moveLeft(rect().x()); + else if (al.testFlag(Qt::AlignRight)) insetRect.moveRight(rect().x()+rect().width()); + else insetRect.moveLeft(rect().x()+rect().width()*0.5-finalMinSize.width()*0.5); // default to Qt::AlignHCenter + if (al.testFlag(Qt::AlignTop)) insetRect.moveTop(rect().y()); + else if (al.testFlag(Qt::AlignBottom)) insetRect.moveBottom(rect().y()+rect().height()); + else insetRect.moveTop(rect().y()+rect().height()*0.5-finalMinSize.height()*0.5); // default to Qt::AlignVCenter + } + mElements.at(i)->setOuterRect(insetRect); + } +} + +/* inherits documentation from base class */ +int QCPLayoutInset::elementCount() const +{ + return mElements.size(); +} + +/* inherits documentation from base class */ +QCPLayoutElement *QCPLayoutInset::elementAt(int index) const +{ + if (index >= 0 && index < mElements.size()) + return mElements.at(index); + else + return 0; +} + +/* inherits documentation from base class */ +QCPLayoutElement *QCPLayoutInset::takeAt(int index) +{ + if (QCPLayoutElement *el = elementAt(index)) + { + releaseElement(el); + mElements.removeAt(index); + mInsetPlacement.removeAt(index); + mInsetAlignment.removeAt(index); + mInsetRect.removeAt(index); + return el; + } else + { + qDebug() << Q_FUNC_INFO << "Attempt to take invalid index:" << index; + return 0; + } +} + +/* inherits documentation from base class */ +bool QCPLayoutInset::take(QCPLayoutElement *element) +{ + if (element) + { + for (int i=0; irealVisibility() && mElements.at(i)->selectTest(pos, onlySelectable) >= 0) + return mParentPlot->selectionTolerance()*0.99; + } + return -1; +} + +/*! + Adds the specified \a element to the layout as an inset aligned at the border (\ref + setInsetAlignment is initialized with \ref ipBorderAligned). The alignment is set to \a + alignment. + + \a alignment is an or combination of the following alignment flags: Qt::AlignLeft, + Qt::AlignHCenter, Qt::AlighRight, Qt::AlignTop, Qt::AlignVCenter, Qt::AlignBottom. Any other + alignment flags will be ignored. + + \see addElement(QCPLayoutElement *element, const QRectF &rect) +*/ +void QCPLayoutInset::addElement(QCPLayoutElement *element, Qt::Alignment alignment) +{ + if (element) + { + if (element->layout()) // remove from old layout first + element->layout()->take(element); + mElements.append(element); + mInsetPlacement.append(ipBorderAligned); + mInsetAlignment.append(alignment); + mInsetRect.append(QRectF(0.6, 0.6, 0.4, 0.4)); + adoptElement(element); + } else + qDebug() << Q_FUNC_INFO << "Can't add null element"; +} + +/*! + Adds the specified \a element to the layout as an inset with free positioning/sizing (\ref + setInsetAlignment is initialized with \ref ipFree). The position and size is set to \a + rect. + + \a rect is given in fractions of the whole inset layout rect. So an inset with rect (0, 0, 1, 1) + will span the entire layout. An inset with rect (0.6, 0.1, 0.35, 0.35) will be in the top right + corner of the layout, with 35% width and height of the parent layout. + + \see addElement(QCPLayoutElement *element, Qt::Alignment alignment) +*/ +void QCPLayoutInset::addElement(QCPLayoutElement *element, const QRectF &rect) +{ + if (element) + { + if (element->layout()) // remove from old layout first + element->layout()->take(element); + mElements.append(element); + mInsetPlacement.append(ipFree); + mInsetAlignment.append(Qt::AlignRight|Qt::AlignTop); + mInsetRect.append(rect); + adoptElement(element); + } else + qDebug() << Q_FUNC_INFO << "Can't add null element"; +} +/* end of 'src/layout.cpp' */ + + +/* including file 'src/lineending.cpp', size 11536 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPLineEnding +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPLineEnding + \brief Handles the different ending decorations for line-like items + + \image html QCPLineEnding.png "The various ending styles currently supported" + + For every ending a line-like item has, an instance of this class exists. For example, QCPItemLine + has two endings which can be set with QCPItemLine::setHead and QCPItemLine::setTail. + + The styles themselves are defined via the enum QCPLineEnding::EndingStyle. Most decorations can + be modified regarding width and length, see \ref setWidth and \ref setLength. The direction of + the ending decoration (e.g. direction an arrow is pointing) is controlled by the line-like item. + For example, when both endings of a QCPItemLine are set to be arrows, they will point to opposite + directions, e.g. "outward". This can be changed by \ref setInverted, which would make the + respective arrow point inward. + + Note that due to the overloaded QCPLineEnding constructor, you may directly specify a + QCPLineEnding::EndingStyle where actually a QCPLineEnding is expected, e.g. + \snippet documentation/doc-code-snippets/mainwindow.cpp qcplineending-sethead +*/ + +/*! + Creates a QCPLineEnding instance with default values (style \ref esNone). +*/ +QCPLineEnding::QCPLineEnding() : + mStyle(esNone), + mWidth(8), + mLength(10), + mInverted(false) +{ +} + +/*! + Creates a QCPLineEnding instance with the specified values. +*/ +QCPLineEnding::QCPLineEnding(QCPLineEnding::EndingStyle style, double width, double length, bool inverted) : + mStyle(style), + mWidth(width), + mLength(length), + mInverted(inverted) +{ +} + +/*! + Sets the style of the ending decoration. +*/ +void QCPLineEnding::setStyle(QCPLineEnding::EndingStyle style) +{ + mStyle = style; +} + +/*! + Sets the width of the ending decoration, if the style supports it. On arrows, for example, the + width defines the size perpendicular to the arrow's pointing direction. + + \see setLength +*/ +void QCPLineEnding::setWidth(double width) +{ + mWidth = width; +} + +/*! + Sets the length of the ending decoration, if the style supports it. On arrows, for example, the + length defines the size in pointing direction. + + \see setWidth +*/ +void QCPLineEnding::setLength(double length) +{ + mLength = length; +} + +/*! + Sets whether the ending decoration shall be inverted. For example, an arrow decoration will point + inward when \a inverted is set to true. + + Note that also the \a width direction is inverted. For symmetrical ending styles like arrows or + discs, this doesn't make a difference. However, asymmetric styles like \ref esHalfBar are + affected by it, which can be used to control to which side the half bar points to. +*/ +void QCPLineEnding::setInverted(bool inverted) +{ + mInverted = inverted; +} + +/*! \internal + + Returns the maximum pixel radius the ending decoration might cover, starting from the position + the decoration is drawn at (typically a line ending/\ref QCPItemPosition of an item). + + This is relevant for clipping. Only omit painting of the decoration when the position where the + decoration is supposed to be drawn is farther away from the clipping rect than the returned + distance. +*/ +double QCPLineEnding::boundingDistance() const +{ + switch (mStyle) + { + case esNone: + return 0; + + case esFlatArrow: + case esSpikeArrow: + case esLineArrow: + case esSkewedBar: + return qSqrt(mWidth*mWidth+mLength*mLength); // items that have width and length + + case esDisc: + case esSquare: + case esDiamond: + case esBar: + case esHalfBar: + return mWidth*1.42; // items that only have a width -> width*sqrt(2) + + } + return 0; +} + +/*! + Starting from the origin of this line ending (which is style specific), returns the length + covered by the line ending symbol, in backward direction. + + For example, the \ref esSpikeArrow has a shorter real length than a \ref esFlatArrow, even if + both have the same \ref setLength value, because the spike arrow has an inward curved back, which + reduces the length along its center axis (the drawing origin for arrows is at the tip). + + This function is used for precise, style specific placement of line endings, for example in + QCPAxes. +*/ +double QCPLineEnding::realLength() const +{ + switch (mStyle) + { + case esNone: + case esLineArrow: + case esSkewedBar: + case esBar: + case esHalfBar: + return 0; + + case esFlatArrow: + return mLength; + + case esDisc: + case esSquare: + case esDiamond: + return mWidth*0.5; + + case esSpikeArrow: + return mLength*0.8; + } + return 0; +} + +/*! \internal + + Draws the line ending with the specified \a painter at the position \a pos. The direction of the + line ending is controlled with \a dir. +*/ +void QCPLineEnding::draw(QCPPainter *painter, const QCPVector2D &pos, const QCPVector2D &dir) const +{ + if (mStyle == esNone) + return; + + QCPVector2D lengthVec = dir.normalized() * mLength*(mInverted ? -1 : 1); + if (lengthVec.isNull()) + lengthVec = QCPVector2D(1, 0); + QCPVector2D widthVec = dir.normalized().perpendicular() * mWidth*0.5*(mInverted ? -1 : 1); + + QPen penBackup = painter->pen(); + QBrush brushBackup = painter->brush(); + QPen miterPen = penBackup; + miterPen.setJoinStyle(Qt::MiterJoin); // to make arrow heads spikey + QBrush brush(painter->pen().color(), Qt::SolidPattern); + switch (mStyle) + { + case esNone: break; + case esFlatArrow: + { + QPointF points[3] = {pos.toPointF(), + (pos-lengthVec+widthVec).toPointF(), + (pos-lengthVec-widthVec).toPointF() + }; + painter->setPen(miterPen); + painter->setBrush(brush); + painter->drawConvexPolygon(points, 3); + painter->setBrush(brushBackup); + painter->setPen(penBackup); + break; + } + case esSpikeArrow: + { + QPointF points[4] = {pos.toPointF(), + (pos-lengthVec+widthVec).toPointF(), + (pos-lengthVec*0.8).toPointF(), + (pos-lengthVec-widthVec).toPointF() + }; + painter->setPen(miterPen); + painter->setBrush(brush); + painter->drawConvexPolygon(points, 4); + painter->setBrush(brushBackup); + painter->setPen(penBackup); + break; + } + case esLineArrow: + { + QPointF points[3] = {(pos-lengthVec+widthVec).toPointF(), + pos.toPointF(), + (pos-lengthVec-widthVec).toPointF() + }; + painter->setPen(miterPen); + painter->drawPolyline(points, 3); + painter->setPen(penBackup); + break; + } + case esDisc: + { + painter->setBrush(brush); + painter->drawEllipse(pos.toPointF(), mWidth*0.5, mWidth*0.5); + painter->setBrush(brushBackup); + break; + } + case esSquare: + { + QCPVector2D widthVecPerp = widthVec.perpendicular(); + QPointF points[4] = {(pos-widthVecPerp+widthVec).toPointF(), + (pos-widthVecPerp-widthVec).toPointF(), + (pos+widthVecPerp-widthVec).toPointF(), + (pos+widthVecPerp+widthVec).toPointF() + }; + painter->setPen(miterPen); + painter->setBrush(brush); + painter->drawConvexPolygon(points, 4); + painter->setBrush(brushBackup); + painter->setPen(penBackup); + break; + } + case esDiamond: + { + QCPVector2D widthVecPerp = widthVec.perpendicular(); + QPointF points[4] = {(pos-widthVecPerp).toPointF(), + (pos-widthVec).toPointF(), + (pos+widthVecPerp).toPointF(), + (pos+widthVec).toPointF() + }; + painter->setPen(miterPen); + painter->setBrush(brush); + painter->drawConvexPolygon(points, 4); + painter->setBrush(brushBackup); + painter->setPen(penBackup); + break; + } + case esBar: + { + painter->drawLine((pos+widthVec).toPointF(), (pos-widthVec).toPointF()); + break; + } + case esHalfBar: + { + painter->drawLine((pos+widthVec).toPointF(), pos.toPointF()); + break; + } + case esSkewedBar: + { + if (qFuzzyIsNull(painter->pen().widthF()) && !painter->modes().testFlag(QCPPainter::pmNonCosmetic)) + { + // if drawing with cosmetic pen (perfectly thin stroke, happens only in vector exports), draw bar exactly on tip of line + painter->drawLine((pos+widthVec+lengthVec*0.2*(mInverted?-1:1)).toPointF(), + (pos-widthVec-lengthVec*0.2*(mInverted?-1:1)).toPointF()); + } else + { + // if drawing with thick (non-cosmetic) pen, shift bar a little in line direction to prevent line from sticking through bar slightly + painter->drawLine((pos+widthVec+lengthVec*0.2*(mInverted?-1:1)+dir.normalized()*qMax(1.0f, (float)painter->pen().widthF())*0.5f).toPointF(), + (pos-widthVec-lengthVec*0.2*(mInverted?-1:1)+dir.normalized()*qMax(1.0f, (float)painter->pen().widthF())*0.5f).toPointF()); + } + break; + } + } +} + +/*! \internal + \overload + + Draws the line ending. The direction is controlled with the \a angle parameter in radians. +*/ +void QCPLineEnding::draw(QCPPainter *painter, const QCPVector2D &pos, double angle) const +{ + draw(painter, pos, QCPVector2D(qCos(angle), qSin(angle))); +} +/* end of 'src/lineending.cpp' */ + + +/* including file 'src/axis/axisticker.cpp', size 18664 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPAxisTicker +//////////////////////////////////////////////////////////////////////////////////////////////////// +/*! \class QCPAxisTicker + \brief The base class tick generator used by QCPAxis to create tick positions and tick labels + + Each QCPAxis has an internal QCPAxisTicker (or a subclass) in order to generate tick positions + and tick labels for the current axis range. The ticker of an axis can be set via \ref + QCPAxis::setTicker. Since that method takes a QSharedPointer, multiple + axes can share the same ticker instance. + + This base class generates normal tick coordinates and numeric labels for linear axes. It picks a + reasonable tick step (the separation between ticks) which results in readable tick labels. The + number of ticks that should be approximately generated can be set via \ref setTickCount. + Depending on the current tick step strategy (\ref setTickStepStrategy), the algorithm either + sacrifices readability to better match the specified tick count (\ref + QCPAxisTicker::tssMeetTickCount) or relaxes the tick count in favor of better tick steps (\ref + QCPAxisTicker::tssReadability), which is the default. + + The following more specialized axis ticker subclasses are available, see details in the + respective class documentation: + +
+ + + + + + + +
QCPAxisTickerFixed\image html axisticker-fixed.png
QCPAxisTickerLog\image html axisticker-log.png
QCPAxisTickerPi\image html axisticker-pi.png
QCPAxisTickerText\image html axisticker-text.png
QCPAxisTickerDateTime\image html axisticker-datetime.png
QCPAxisTickerTime\image html axisticker-time.png + \image html axisticker-time2.png
+
+ + \section axisticker-subclassing Creating own axis tickers + + Creating own axis tickers can be achieved very easily by sublassing QCPAxisTicker and + reimplementing some or all of the available virtual methods. + + In the simplest case you might wish to just generate different tick steps than the other tickers, + so you only reimplement the method \ref getTickStep. If you additionally want control over the + string that will be shown as tick label, reimplement \ref getTickLabel. + + If you wish to have complete control, you can generate the tick vectors and tick label vectors + yourself by reimplementing \ref createTickVector and \ref createLabelVector. The default + implementations use the previously mentioned virtual methods \ref getTickStep and \ref + getTickLabel, but your reimplementations don't necessarily need to do so. For example in the case + of unequal tick steps, the method \ref getTickStep loses its usefulness and can be ignored. + + The sub tick count between major ticks can be controlled with \ref getSubTickCount. Full sub tick + placement control is obtained by reimplementing \ref createSubTickVector. + + See the documentation of all these virtual methods in QCPAxisTicker for detailed information + about the parameters and expected return values. +*/ + +/*! + Constructs the ticker and sets reasonable default values. Axis tickers are commonly created + managed by a QSharedPointer, which then can be passed to QCPAxis::setTicker. +*/ +QCPAxisTicker::QCPAxisTicker() : + mTickStepStrategy(tssReadability), + mTickCount(5), + mTickOrigin(0) +{ +} + +QCPAxisTicker::~QCPAxisTicker() +{ + +} + +/*! + Sets which strategy the axis ticker follows when choosing the size of the tick step. For the + available strategies, see \ref TickStepStrategy. +*/ +void QCPAxisTicker::setTickStepStrategy(QCPAxisTicker::TickStepStrategy strategy) +{ + mTickStepStrategy = strategy; +} + +/*! + Sets how many ticks this ticker shall aim to generate across the axis range. Note that \a count + is not guaranteed to be matched exactly, as generating readable tick intervals may conflict with + the requested number of ticks. + + Whether the readability has priority over meeting the requested \a count can be specified with + \ref setTickStepStrategy. +*/ +void QCPAxisTicker::setTickCount(int count) +{ + if (count > 0) + mTickCount = count; + else + qDebug() << Q_FUNC_INFO << "tick count must be greater than zero:" << count; +} + +/*! + Sets the mathematical coordinate (or "offset") of the zeroth tick. This tick coordinate is just a + concept and doesn't need to be inside the currently visible axis range. + + By default \a origin is zero, which for example yields ticks {-5, 0, 5, 10, 15,...} when the tick + step is five. If \a origin is now set to 1 instead, the correspondingly generated ticks would be + {-4, 1, 6, 11, 16,...}. +*/ +void QCPAxisTicker::setTickOrigin(double origin) +{ + mTickOrigin = origin; +} + +/*! + This is the method called by QCPAxis in order to actually generate tick coordinates (\a ticks), + tick label strings (\a tickLabels) and sub tick coordinates (\a subTicks). + + The ticks are generated for the specified \a range. The generated labels typically follow the + specified \a locale, \a formatChar and number \a precision, however this might be different (or + even irrelevant) for certain QCPAxisTicker subclasses. + + The output parameter \a ticks is filled with the generated tick positions in axis coordinates. + The output parameters \a subTicks and \a tickLabels are optional (set them to 0 if not needed) + and are respectively filled with sub tick coordinates, and tick label strings belonging to \a + ticks by index. +*/ +void QCPAxisTicker::generate(const QCPRange &range, const QLocale &locale, QChar formatChar, int precision, QVector &ticks, QVector *subTicks, QVector *tickLabels) +{ + // generate (major) ticks: + double tickStep = getTickStep(range); + ticks = createTickVector(tickStep, range); + trimTicks(range, ticks, true); // trim ticks to visible range plus one outer tick on each side (incase a subclass createTickVector creates more) + + // generate sub ticks between major ticks: + if (subTicks) + { + if (ticks.size() > 0) + { + *subTicks = createSubTickVector(getSubTickCount(tickStep), ticks); + trimTicks(range, *subTicks, false); + } else + *subTicks = QVector(); + } + + // finally trim also outliers (no further clipping happens in axis drawing): + trimTicks(range, ticks, false); + // generate labels for visible ticks if requested: + if (tickLabels) + *tickLabels = createLabelVector(ticks, locale, formatChar, precision); +} + +/*! \internal + + Takes the entire currently visible axis range and returns a sensible tick step in + order to provide readable tick labels as well as a reasonable number of tick counts (see \ref + setTickCount, \ref setTickStepStrategy). + + If a QCPAxisTicker subclass only wants a different tick step behaviour than the default + implementation, it should reimplement this method. See \ref cleanMantissa for a possible helper + function. +*/ +double QCPAxisTicker::getTickStep(const QCPRange &range) +{ + double exactStep = range.size()/(double)(mTickCount+1e-10); // mTickCount ticks on average, the small addition is to prevent jitter on exact integers + return cleanMantissa(exactStep); +} + +/*! \internal + + Takes the \a tickStep, i.e. the distance between two consecutive ticks, and returns + an appropriate number of sub ticks for that specific tick step. + + Note that a returned sub tick count of e.g. 4 will split each tick interval into 5 sections. +*/ +int QCPAxisTicker::getSubTickCount(double tickStep) +{ + int result = 1; // default to 1, if no proper value can be found + + // separate integer and fractional part of mantissa: + double epsilon = 0.01; + double intPartf; + int intPart; + double fracPart = modf(getMantissa(tickStep), &intPartf); + intPart = intPartf; + + // handle cases with (almost) integer mantissa: + if (fracPart < epsilon || 1.0-fracPart < epsilon) + { + if (1.0-fracPart < epsilon) + ++intPart; + switch (intPart) + { + case 1: result = 4; break; // 1.0 -> 0.2 substep + case 2: result = 3; break; // 2.0 -> 0.5 substep + case 3: result = 2; break; // 3.0 -> 1.0 substep + case 4: result = 3; break; // 4.0 -> 1.0 substep + case 5: result = 4; break; // 5.0 -> 1.0 substep + case 6: result = 2; break; // 6.0 -> 2.0 substep + case 7: result = 6; break; // 7.0 -> 1.0 substep + case 8: result = 3; break; // 8.0 -> 2.0 substep + case 9: result = 2; break; // 9.0 -> 3.0 substep + } + } else + { + // handle cases with significantly fractional mantissa: + if (qAbs(fracPart-0.5) < epsilon) // *.5 mantissa + { + switch (intPart) + { + case 1: result = 2; break; // 1.5 -> 0.5 substep + case 2: result = 4; break; // 2.5 -> 0.5 substep + case 3: result = 4; break; // 3.5 -> 0.7 substep + case 4: result = 2; break; // 4.5 -> 1.5 substep + case 5: result = 4; break; // 5.5 -> 1.1 substep (won't occur with default getTickStep from here on) + case 6: result = 4; break; // 6.5 -> 1.3 substep + case 7: result = 2; break; // 7.5 -> 2.5 substep + case 8: result = 4; break; // 8.5 -> 1.7 substep + case 9: result = 4; break; // 9.5 -> 1.9 substep + } + } + // if mantissa fraction isn't 0.0 or 0.5, don't bother finding good sub tick marks, leave default + } + + return result; +} + +/*! \internal + + This method returns the tick label string as it should be printed under the \a tick coordinate. + If a textual number is returned, it should respect the provided \a locale, \a formatChar and \a + precision. + + If the returned value contains exponentials of the form "2e5" and beautifully typeset powers is + enabled in the QCPAxis number format (\ref QCPAxis::setNumberFormat), the exponential part will + be formatted accordingly using multiplication symbol and superscript during rendering of the + label automatically. +*/ +QString QCPAxisTicker::getTickLabel(double tick, const QLocale &locale, QChar formatChar, int precision) +{ + return locale.toString(tick, formatChar.toLatin1(), precision); +} + +/*! \internal + + Returns a vector containing all coordinates of sub ticks that should be drawn. It generates \a + subTickCount sub ticks between each tick pair given in \a ticks. + + If a QCPAxisTicker subclass needs maximal control over the generated sub ticks, it should + reimplement this method. Depending on the purpose of the subclass it doesn't necessarily need to + base its result on \a subTickCount or \a ticks. +*/ +QVector QCPAxisTicker::createSubTickVector(int subTickCount, const QVector &ticks) +{ + QVector result; + if (subTickCount <= 0 || ticks.size() < 2) + return result; + + result.reserve((ticks.size()-1)*subTickCount); + for (int i=1; i QCPAxisTicker::createTickVector(double tickStep, const QCPRange &range) +{ + QVector result; + // Generate tick positions according to tickStep: + qint64 firstStep = floor((range.lower-mTickOrigin)/tickStep); // do not use qFloor here, or we'll lose 64 bit precision + qint64 lastStep = ceil((range.upper-mTickOrigin)/tickStep); // do not use qCeil here, or we'll lose 64 bit precision + int tickcount = lastStep-firstStep+1; + if (tickcount < 0) tickcount = 0; + result.resize(tickcount); + for (int i=0; i QCPAxisTicker::createLabelVector(const QVector &ticks, const QLocale &locale, QChar formatChar, int precision) +{ + QVector result; + result.reserve(ticks.size()); + for (int i=0; i &ticks, bool keepOneOutlier) const +{ + bool lowFound = false; + bool highFound = false; + int lowIndex = 0; + int highIndex = -1; + + for (int i=0; i < ticks.size(); ++i) + { + if (ticks.at(i) >= range.lower) + { + lowFound = true; + lowIndex = i; + break; + } + } + for (int i=ticks.size()-1; i >= 0; --i) + { + if (ticks.at(i) <= range.upper) + { + highFound = true; + highIndex = i; + break; + } + } + + if (highFound && lowFound) + { + int trimFront = qMax(0, lowIndex-(keepOneOutlier ? 1 : 0)); + int trimBack = qMax(0, ticks.size()-(keepOneOutlier ? 2 : 1)-highIndex); + if (trimFront > 0 || trimBack > 0) + ticks = ticks.mid(trimFront, ticks.size()-trimFront-trimBack); + } else // all ticks are either all below or all above the range + ticks.clear(); +} + +/*! \internal + + Returns the coordinate contained in \a candidates which is closest to the provided \a target. + + This method assumes \a candidates is not empty and sorted in ascending order. +*/ +double QCPAxisTicker::pickClosest(double target, const QVector &candidates) const +{ + if (candidates.size() == 1) + return candidates.first(); + QVector::const_iterator it = std::lower_bound(candidates.constBegin(), candidates.constEnd(), target); + if (it == candidates.constEnd()) + return *(it-1); + else if (it == candidates.constBegin()) + return *it; + else + return target-*(it-1) < *it-target ? *(it-1) : *it; +} + +/*! \internal + + Returns the decimal mantissa of \a input. Optionally, if \a magnitude is not set to zero, it also + returns the magnitude of \a input as a power of 10. + + For example, an input of 142.6 will return a mantissa of 1.426 and a magnitude of 100. +*/ +double QCPAxisTicker::getMantissa(double input, double *magnitude) const +{ + const double mag = qPow(10.0, qFloor(qLn(input)/qLn(10.0))); + if (magnitude) *magnitude = mag; + return input/mag; +} + +/*! \internal + + Returns a number that is close to \a input but has a clean, easier human readable mantissa. How + strongly the mantissa is altered, and thus how strong the result deviates from the original \a + input, depends on the current tick step strategy (see \ref setTickStepStrategy). +*/ +double QCPAxisTicker::cleanMantissa(double input) const +{ + double magnitude; + const double mantissa = getMantissa(input, &magnitude); + switch (mTickStepStrategy) + { + case tssReadability: + { + return pickClosest(mantissa, QVector() << 1.0 << 2.0 << 2.5 << 5.0 << 10.0)*magnitude; + } + case tssMeetTickCount: + { + // this gives effectively a mantissa of 1.0, 1.5, 2.0, 2.5, 3.0, 3.5, 4.0, 4.5, 5.0, 6.0, 8.0, 10.0 + if (mantissa <= 5.0) + return (int)(mantissa*2)/2.0*magnitude; // round digit after decimal point to 0.5 + else + return (int)(mantissa/2.0)*2.0*magnitude; // round to first digit in multiples of 2 + } + } + return input; +} +/* end of 'src/axis/axisticker.cpp' */ + + +/* including file 'src/axis/axistickerdatetime.cpp', size 14443 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPAxisTickerDateTime +//////////////////////////////////////////////////////////////////////////////////////////////////// +/*! \class QCPAxisTickerDateTime + \brief Specialized axis ticker for calendar dates and times as axis ticks + + \image html axisticker-datetime.png + + This QCPAxisTicker subclass generates ticks that correspond to real calendar dates and times. The + plot axis coordinate is interpreted as Unix Time, so seconds since Epoch (January 1, 1970, 00:00 + UTC). This is also used for example by QDateTime in the toTime_t()/setTime_t() methods + with a precision of one second. Since Qt 4.7, millisecond accuracy can be obtained from QDateTime + by using QDateTime::fromMSecsSinceEpoch()/1000.0. The static methods \ref dateTimeToKey + and \ref keyToDateTime conveniently perform this conversion achieving a precision of one + millisecond on all Qt versions. + + The format of the date/time display in the tick labels is controlled with \ref setDateTimeFormat. + If a different time spec (time zone) shall be used, see \ref setDateTimeSpec. + + This ticker produces unequal tick spacing in order to provide intuitive date and time-of-day + ticks. For example, if the axis range spans a few years such that there is one tick per year, + ticks will be positioned on 1. January of every year. This is intuitive but, due to leap years, + will result in slightly unequal tick intervals (visually unnoticeable). The same can be seen in + the image above: even though the number of days varies month by month, this ticker generates + ticks on the same day of each month. + + If you would like to change the date/time that is used as a (mathematical) starting date for the + ticks, use the \ref setTickOrigin(const QDateTime &origin) method overload, which takes a + QDateTime. If you pass 15. July, 9:45 to this method, the yearly ticks will end up on 15. July at + 9:45 of every year. + + The ticker can be created and assigned to an axis like this: + \snippet documentation/doc-image-generator/mainwindow.cpp axistickerdatetime-creation + + \note If you rather wish to display relative times in terms of days, hours, minutes, seconds and + milliseconds, and are not interested in the intricacies of real calendar dates with months and + (leap) years, have a look at QCPAxisTickerTime instead. +*/ + +/*! + Constructs the ticker and sets reasonable default values. Axis tickers are commonly created + managed by a QSharedPointer, which then can be passed to QCPAxis::setTicker. +*/ +QCPAxisTickerDateTime::QCPAxisTickerDateTime() : + mDateTimeFormat(QLatin1String("hh:mm:ss\ndd.MM.yy")), + mDateTimeSpec(Qt::LocalTime), + mDateStrategy(dsNone) +{ + setTickCount(4); +} + +/*! + Sets the format in which dates and times are displayed as tick labels. For details about the \a + format string, see the documentation of QDateTime::toString(). + + Newlines can be inserted with "\n". + + \see setDateTimeSpec +*/ +void QCPAxisTickerDateTime::setDateTimeFormat(const QString &format) +{ + mDateTimeFormat = format; +} + +/*! + Sets the time spec that is used for creating the tick labels from corresponding dates/times. + + The default value of QDateTime objects (and also QCPAxisTickerDateTime) is + Qt::LocalTime. However, if the date time values passed to QCustomPlot (e.g. in the form + of axis ranges or keys of a plottable) are given in the UTC spec, set \a spec to Qt::UTC + to get the correct axis labels. + + \see setDateTimeFormat +*/ +void QCPAxisTickerDateTime::setDateTimeSpec(Qt::TimeSpec spec) +{ + mDateTimeSpec = spec; +} + +/*! + Sets the tick origin (see \ref QCPAxisTicker::setTickOrigin) in seconds since Epoch (1. Jan 1970, + 00:00 UTC). For the date time ticker it might be more intuitive to use the overload which + directly takes a QDateTime, see \ref setTickOrigin(const QDateTime &origin). + + This is useful to define the month/day/time recurring at greater tick interval steps. For + example, If you pass 15. July, 9:45 to this method and the tick interval happens to be one tick + per year, the ticks will end up on 15. July at 9:45 of every year. +*/ +void QCPAxisTickerDateTime::setTickOrigin(double origin) +{ + QCPAxisTicker::setTickOrigin(origin); +} + +/*! + Sets the tick origin (see \ref QCPAxisTicker::setTickOrigin) as a QDateTime \a origin. + + This is useful to define the month/day/time recurring at greater tick interval steps. For + example, If you pass 15. July, 9:45 to this method and the tick interval happens to be one tick + per year, the ticks will end up on 15. July at 9:45 of every year. +*/ +void QCPAxisTickerDateTime::setTickOrigin(const QDateTime &origin) +{ + setTickOrigin(dateTimeToKey(origin)); +} + +/*! \internal + + Returns a sensible tick step with intervals appropriate for a date-time-display, such as weekly, + monthly, bi-monthly, etc. + + Note that this tick step isn't used exactly when generating the tick vector in \ref + createTickVector, but only as a guiding value requiring some correction for each individual tick + interval. Otherwise this would lead to unintuitive date displays, e.g. jumping between first day + in the month to the last day in the previous month from tick to tick, due to the non-uniform + length of months. The same problem arises with leap years. + + \seebaseclassmethod +*/ +double QCPAxisTickerDateTime::getTickStep(const QCPRange &range) +{ + double result = range.size()/(double)(mTickCount+1e-10); // mTickCount ticks on average, the small addition is to prevent jitter on exact integers + + mDateStrategy = dsNone; + if (result < 1) // ideal tick step is below 1 second -> use normal clean mantissa algorithm in units of seconds + { + result = cleanMantissa(result); + } else if (result < 86400*30.4375*12) // below a year + { + result = pickClosest(result, QVector() + << 1 << 2.5 << 5 << 10 << 15 << 30 << 60 << 2.5*60 << 5*60 << 10*60 << 15*60 << 30*60 << 60*60 // second, minute, hour range + << 3600*2 << 3600*3 << 3600*6 << 3600*12 << 3600*24 // hour to day range + << 86400*2 << 86400*5 << 86400*7 << 86400*14 << 86400*30.4375 << 86400*30.4375*2 << 86400*30.4375*3 << 86400*30.4375*6 << 86400*30.4375*12); // day, week, month range (avg. days per month includes leap years) + if (result > 86400*30.4375-1) // month tick intervals or larger + mDateStrategy = dsUniformDayInMonth; + else if (result > 3600*24-1) // day tick intervals or larger + mDateStrategy = dsUniformTimeInDay; + } else // more than a year, go back to normal clean mantissa algorithm but in units of years + { + const double secondsPerYear = 86400*30.4375*12; // average including leap years + result = cleanMantissa(result/secondsPerYear)*secondsPerYear; + mDateStrategy = dsUniformDayInMonth; + } + return result; +} + +/*! \internal + + Returns a sensible sub tick count with intervals appropriate for a date-time-display, such as weekly, + monthly, bi-monthly, etc. + + \seebaseclassmethod +*/ +int QCPAxisTickerDateTime::getSubTickCount(double tickStep) +{ + int result = QCPAxisTicker::getSubTickCount(tickStep); + switch (qRound(tickStep)) // hand chosen subticks for specific minute/hour/day/week/month range (as specified in getTickStep) + { + case 5*60: result = 4; break; + case 10*60: result = 1; break; + case 15*60: result = 2; break; + case 30*60: result = 1; break; + case 60*60: result = 3; break; + case 3600*2: result = 3; break; + case 3600*3: result = 2; break; + case 3600*6: result = 1; break; + case 3600*12: result = 3; break; + case 3600*24: result = 3; break; + case 86400*2: result = 1; break; + case 86400*5: result = 4; break; + case 86400*7: result = 6; break; + case 86400*14: result = 1; break; + case (int)(86400*30.4375+0.5): result = 3; break; + case (int)(86400*30.4375*2+0.5): result = 1; break; + case (int)(86400*30.4375*3+0.5): result = 2; break; + case (int)(86400*30.4375*6+0.5): result = 5; break; + case (int)(86400*30.4375*12+0.5): result = 3; break; + } + return result; +} + +/*! \internal + + Generates a date/time tick label for tick coordinate \a tick, based on the currently set format + (\ref setDateTimeFormat) and time spec (\ref setDateTimeSpec). + + \seebaseclassmethod +*/ +QString QCPAxisTickerDateTime::getTickLabel(double tick, const QLocale &locale, QChar formatChar, int precision) +{ + Q_UNUSED(precision) + Q_UNUSED(formatChar) + return locale.toString(keyToDateTime(tick).toTimeSpec(mDateTimeSpec), mDateTimeFormat); +} + +/*! \internal + + Uses the passed \a tickStep as a guiding value and applies corrections in order to obtain + non-uniform tick intervals but intuitive tick labels, e.g. falling on the same day of each month. + + \seebaseclassmethod +*/ +QVector QCPAxisTickerDateTime::createTickVector(double tickStep, const QCPRange &range) +{ + QVector result = QCPAxisTicker::createTickVector(tickStep, range); + if (!result.isEmpty()) + { + if (mDateStrategy == dsUniformTimeInDay) + { + QDateTime uniformDateTime = keyToDateTime(mTickOrigin); // the time of this datetime will be set for all other ticks, if possible + QDateTime tickDateTime; + for (int i=0; i 15) // with leap years involved, date month may jump backwards or forwards, and needs to be corrected before setting day + tickDateTime = tickDateTime.addMonths(-1); + tickDateTime.setDate(QDate(tickDateTime.date().year(), tickDateTime.date().month(), thisUniformDay)); + result[i] = dateTimeToKey(tickDateTime); + } + } + } + return result; +} + +/*! + A convenience method which turns \a key (in seconds since Epoch 1. Jan 1970, 00:00 UTC) into a + QDateTime object. This can be used to turn axis coordinates to actual QDateTimes. + + The accuracy achieved by this method is one millisecond, irrespective of the used Qt version (it + works around the lack of a QDateTime::fromMSecsSinceEpoch in Qt 4.6) + + \see dateTimeToKey +*/ +QDateTime QCPAxisTickerDateTime::keyToDateTime(double key) +{ +# if QT_VERSION < QT_VERSION_CHECK(4, 7, 0) + return QDateTime::fromTime_t(key).addMSecs((key-(qint64)key)*1000); +# else + return QDateTime::fromMSecsSinceEpoch(key*1000.0); +# endif +} + +/*! \overload + + A convenience method which turns a QDateTime object into a double value that corresponds to + seconds since Epoch (1. Jan 1970, 00:00 UTC). This is the format used as axis coordinates by + QCPAxisTickerDateTime. + + The accuracy achieved by this method is one millisecond, irrespective of the used Qt version (it + works around the lack of a QDateTime::toMSecsSinceEpoch in Qt 4.6) + + \see keyToDateTime +*/ +double QCPAxisTickerDateTime::dateTimeToKey(const QDateTime dateTime) +{ +# if QT_VERSION < QT_VERSION_CHECK(4, 7, 0) + return dateTime.toTime_t()+dateTime.time().msec()/1000.0; +# else + return dateTime.toMSecsSinceEpoch()/1000.0; +# endif +} + +/*! \overload + + A convenience method which turns a QDate object into a double value that corresponds to + seconds since Epoch (1. Jan 1970, 00:00 UTC). This is the format used as axis coordinates by + QCPAxisTickerDateTime. + + \see keyToDateTime +*/ +double QCPAxisTickerDateTime::dateTimeToKey(const QDate date) +{ +# if QT_VERSION < QT_VERSION_CHECK(4, 7, 0) + return QDateTime(date).toTime_t(); +# else + return QDateTime(date).toMSecsSinceEpoch()/1000.0; +# endif +} +/* end of 'src/axis/axistickerdatetime.cpp' */ + + +/* including file 'src/axis/axistickertime.cpp', size 11747 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPAxisTickerTime +//////////////////////////////////////////////////////////////////////////////////////////////////// +/*! \class QCPAxisTickerTime + \brief Specialized axis ticker for time spans in units of milliseconds to days + + \image html axisticker-time.png + + This QCPAxisTicker subclass generates ticks that corresponds to time intervals. + + The format of the time display in the tick labels is controlled with \ref setTimeFormat and \ref + setFieldWidth. The time coordinate is in the unit of seconds with respect to the time coordinate + zero. Unlike with QCPAxisTickerDateTime, the ticks don't correspond to a specific calendar date + and time. + + The time can be displayed in milliseconds, seconds, minutes, hours and days. Depending on the + largest available unit in the format specified with \ref setTimeFormat, any time spans above will + be carried in that largest unit. So for example if the format string is "%m:%s" and a tick at + coordinate value 7815 (being 2 hours, 10 minutes and 15 seconds) is created, the resulting tick + label will show "130:15" (130 minutes, 15 seconds). If the format string is "%h:%m:%s", the hour + unit will be used and the label will thus be "02:10:15". Negative times with respect to the axis + zero will carry a leading minus sign. + + The ticker can be created and assigned to an axis like this: + \snippet documentation/doc-image-generator/mainwindow.cpp axistickertime-creation + + Here is an example of a time axis providing time information in days, hours and minutes. Due to + the axis range spanning a few days and the wanted tick count (\ref setTickCount), the ticker + decided to use tick steps of 12 hours: + + \image html axisticker-time2.png + + The format string for this example is + \snippet documentation/doc-image-generator/mainwindow.cpp axistickertime-creation-2 + + \note If you rather wish to display calendar dates and times, have a look at QCPAxisTickerDateTime + instead. +*/ + +/*! + Constructs the ticker and sets reasonable default values. Axis tickers are commonly created + managed by a QSharedPointer, which then can be passed to QCPAxis::setTicker. +*/ +QCPAxisTickerTime::QCPAxisTickerTime() : + mTimeFormat(QLatin1String("%h:%m:%s")), + mSmallestUnit(tuSeconds), + mBiggestUnit(tuHours) +{ + setTickCount(4); + mFieldWidth[tuMilliseconds] = 3; + mFieldWidth[tuSeconds] = 2; + mFieldWidth[tuMinutes] = 2; + mFieldWidth[tuHours] = 2; + mFieldWidth[tuDays] = 1; + + mFormatPattern[tuMilliseconds] = QLatin1String("%z"); + mFormatPattern[tuSeconds] = QLatin1String("%s"); + mFormatPattern[tuMinutes] = QLatin1String("%m"); + mFormatPattern[tuHours] = QLatin1String("%h"); + mFormatPattern[tuDays] = QLatin1String("%d"); +} + +/*! + Sets the format that will be used to display time in the tick labels. + + The available patterns are: + - %%z for milliseconds + - %%s for seconds + - %%m for minutes + - %%h for hours + - %%d for days + + The field width (zero padding) can be controlled for each unit with \ref setFieldWidth. + + The largest unit that appears in \a format will carry all the remaining time of a certain tick + coordinate, even if it overflows the natural limit of the unit. For example, if %%m is the + largest unit it might become larger than 59 in order to consume larger time values. If on the + other hand %%h is available, the minutes will wrap around to zero after 59 and the time will + carry to the hour digit. +*/ +void QCPAxisTickerTime::setTimeFormat(const QString &format) +{ + mTimeFormat = format; + + // determine smallest and biggest unit in format, to optimize unit replacement and allow biggest + // unit to consume remaining time of a tick value and grow beyond its modulo (e.g. min > 59) + mSmallestUnit = tuMilliseconds; + mBiggestUnit = tuMilliseconds; + bool hasSmallest = false; + for (int i = tuMilliseconds; i <= tuDays; ++i) + { + TimeUnit unit = static_cast(i); + if (mTimeFormat.contains(mFormatPattern.value(unit))) + { + if (!hasSmallest) + { + mSmallestUnit = unit; + hasSmallest = true; + } + mBiggestUnit = unit; + } + } +} + +/*! + Sets the field widh of the specified \a unit to be \a width digits, when displayed in the tick + label. If the number for the specific unit is shorter than \a width, it will be padded with an + according number of zeros to the left in order to reach the field width. + + \see setTimeFormat +*/ +void QCPAxisTickerTime::setFieldWidth(QCPAxisTickerTime::TimeUnit unit, int width) +{ + mFieldWidth[unit] = qMax(width, 1); +} + +/*! \internal + + Returns the tick step appropriate for time displays, depending on the provided \a range and the + smallest available time unit in the current format (\ref setTimeFormat). For example if the unit + of seconds isn't available in the format, this method will not generate steps (like 2.5 minutes) + that require sub-minute precision to be displayed correctly. + + \seebaseclassmethod +*/ +double QCPAxisTickerTime::getTickStep(const QCPRange &range) +{ + double result = range.size()/(double)(mTickCount+1e-10); // mTickCount ticks on average, the small addition is to prevent jitter on exact integers + + if (result < 1) // ideal tick step is below 1 second -> use normal clean mantissa algorithm in units of seconds + { + if (mSmallestUnit == tuMilliseconds) + result = qMax(cleanMantissa(result), 0.001); // smallest tick step is 1 millisecond + else // have no milliseconds available in format, so stick with 1 second tickstep + result = 1.0; + } else if (result < 3600*24) // below a day + { + // the filling of availableSteps seems a bit contorted but it fills in a sorted fashion and thus saves a post-fill sorting run + QVector availableSteps; + // seconds range: + if (mSmallestUnit <= tuSeconds) + availableSteps << 1; + if (mSmallestUnit == tuMilliseconds) + availableSteps << 2.5; // only allow half second steps if milliseconds are there to display it + else if (mSmallestUnit == tuSeconds) + availableSteps << 2; + if (mSmallestUnit <= tuSeconds) + availableSteps << 5 << 10 << 15 << 30; + // minutes range: + if (mSmallestUnit <= tuMinutes) + availableSteps << 1*60; + if (mSmallestUnit <= tuSeconds) + availableSteps << 2.5*60; // only allow half minute steps if seconds are there to display it + else if (mSmallestUnit == tuMinutes) + availableSteps << 2*60; + if (mSmallestUnit <= tuMinutes) + availableSteps << 5*60 << 10*60 << 15*60 << 30*60; + // hours range: + if (mSmallestUnit <= tuHours) + availableSteps << 1*3600 << 2*3600 << 3*3600 << 6*3600 << 12*3600 << 24*3600; + // pick available step that is most appropriate to approximate ideal step: + result = pickClosest(result, availableSteps); + } else // more than a day, go back to normal clean mantissa algorithm but in units of days + { + const double secondsPerDay = 3600*24; + result = cleanMantissa(result/secondsPerDay)*secondsPerDay; + } + return result; +} + +/*! \internal + + Returns the sub tick count appropriate for the provided \a tickStep and time displays. + + \seebaseclassmethod +*/ +int QCPAxisTickerTime::getSubTickCount(double tickStep) +{ + int result = QCPAxisTicker::getSubTickCount(tickStep); + switch (qRound(tickStep)) // hand chosen subticks for specific minute/hour/day range (as specified in getTickStep) + { + case 5*60: result = 4; break; + case 10*60: result = 1; break; + case 15*60: result = 2; break; + case 30*60: result = 1; break; + case 60*60: result = 3; break; + case 3600*2: result = 3; break; + case 3600*3: result = 2; break; + case 3600*6: result = 1; break; + case 3600*12: result = 3; break; + case 3600*24: result = 3; break; + } + return result; +} + +/*! \internal + + Returns the tick label corresponding to the provided \a tick and the configured format and field + widths (\ref setTimeFormat, \ref setFieldWidth). + + \seebaseclassmethod +*/ +QString QCPAxisTickerTime::getTickLabel(double tick, const QLocale &locale, QChar formatChar, int precision) +{ + Q_UNUSED(precision) + Q_UNUSED(formatChar) + Q_UNUSED(locale) + bool negative = tick < 0; + if (negative) tick *= -1; + double values[tuDays+1]; // contains the msec/sec/min/... value with its respective modulo (e.g. minute 0..59) + double restValues[tuDays+1]; // contains the msec/sec/min/... value as if it's the largest available unit and thus consumes the remaining time + + restValues[tuMilliseconds] = tick*1000; + values[tuMilliseconds] = modf(restValues[tuMilliseconds]/1000, &restValues[tuSeconds])*1000; + values[tuSeconds] = modf(restValues[tuSeconds]/60, &restValues[tuMinutes])*60; + values[tuMinutes] = modf(restValues[tuMinutes]/60, &restValues[tuHours])*60; + values[tuHours] = modf(restValues[tuHours]/24, &restValues[tuDays])*24; + // no need to set values[tuDays] because days are always a rest value (there is no higher unit so it consumes all remaining time) + + QString result = mTimeFormat; + for (int i = mSmallestUnit; i <= mBiggestUnit; ++i) + { + TimeUnit iUnit = static_cast(i); + replaceUnit(result, iUnit, qRound(iUnit == mBiggestUnit ? restValues[iUnit] : values[iUnit])); + } + if (negative) + result.prepend(QLatin1Char('-')); + return result; +} + +/*! \internal + + Replaces all occurrences of the format pattern belonging to \a unit in \a text with the specified + \a value, using the field width as specified with \ref setFieldWidth for the \a unit. +*/ +void QCPAxisTickerTime::replaceUnit(QString &text, QCPAxisTickerTime::TimeUnit unit, int value) const +{ + QString valueStr = QString::number(value); + while (valueStr.size() < mFieldWidth.value(unit)) + valueStr.prepend(QLatin1Char('0')); + + text.replace(mFormatPattern.value(unit), valueStr); +} +/* end of 'src/axis/axistickertime.cpp' */ + + +/* including file 'src/axis/axistickerfixed.cpp', size 5583 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPAxisTickerFixed +//////////////////////////////////////////////////////////////////////////////////////////////////// +/*! \class QCPAxisTickerFixed + \brief Specialized axis ticker with a fixed tick step + + \image html axisticker-fixed.png + + This QCPAxisTicker subclass generates ticks with a fixed tick step set with \ref setTickStep. It + is also possible to allow integer multiples and integer powers of the specified tick step with + \ref setScaleStrategy. + + A typical application of this ticker is to make an axis only display integers, by setting the + tick step of the ticker to 1.0 and the scale strategy to \ref ssMultiples. + + Another case is when a certain number has a special meaning and axis ticks should only appear at + multiples of that value. In this case you might also want to consider \ref QCPAxisTickerPi + because despite the name it is not limited to only pi symbols/values. + + The ticker can be created and assigned to an axis like this: + \snippet documentation/doc-image-generator/mainwindow.cpp axistickerfixed-creation +*/ + +/*! + Constructs the ticker and sets reasonable default values. Axis tickers are commonly created + managed by a QSharedPointer, which then can be passed to QCPAxis::setTicker. +*/ +QCPAxisTickerFixed::QCPAxisTickerFixed() : + mTickStep(1.0), + mScaleStrategy(ssNone) +{ +} + +/*! + Sets the fixed tick interval to \a step. + + The axis ticker will only use this tick step when generating axis ticks. This might cause a very + high tick density and overlapping labels if the axis range is zoomed out. Using \ref + setScaleStrategy it is possible to relax the fixed step and also allow multiples or powers of \a + step. This will enable the ticker to reduce the number of ticks to a reasonable amount (see \ref + setTickCount). +*/ +void QCPAxisTickerFixed::setTickStep(double step) +{ + if (step > 0) + mTickStep = step; + else + qDebug() << Q_FUNC_INFO << "tick step must be greater than zero:" << step; +} + +/*! + Sets whether the specified tick step (\ref setTickStep) is absolutely fixed or whether + modifications may be applied to it before calculating the finally used tick step, such as + permitting multiples or powers. See \ref ScaleStrategy for details. + + The default strategy is \ref ssNone, which means the tick step is absolutely fixed. +*/ +void QCPAxisTickerFixed::setScaleStrategy(QCPAxisTickerFixed::ScaleStrategy strategy) +{ + mScaleStrategy = strategy; +} + +/*! \internal + + Determines the actually used tick step from the specified tick step and scale strategy (\ref + setTickStep, \ref setScaleStrategy). + + This method either returns the specified tick step exactly, or, if the scale strategy is not \ref + ssNone, a modification of it to allow varying the number of ticks in the current axis range. + + \seebaseclassmethod +*/ +double QCPAxisTickerFixed::getTickStep(const QCPRange &range) +{ + switch (mScaleStrategy) + { + case ssNone: + { + return mTickStep; + } + case ssMultiples: + { + double exactStep = range.size()/(double)(mTickCount+1e-10); // mTickCount ticks on average, the small addition is to prevent jitter on exact integers + if (exactStep < mTickStep) + return mTickStep; + else + return (qint64)(cleanMantissa(exactStep/mTickStep)+0.5)*mTickStep; + } + case ssPowers: + { + double exactStep = range.size()/(double)(mTickCount+1e-10); // mTickCount ticks on average, the small addition is to prevent jitter on exact integers + return qPow(mTickStep, (int)(qLn(exactStep)/qLn(mTickStep)+0.5)); + } + } + return mTickStep; +} +/* end of 'src/axis/axistickerfixed.cpp' */ + + +/* including file 'src/axis/axistickertext.cpp', size 8661 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPAxisTickerText +//////////////////////////////////////////////////////////////////////////////////////////////////// +/*! \class QCPAxisTickerText + \brief Specialized axis ticker which allows arbitrary labels at specified coordinates + + \image html axisticker-text.png + + This QCPAxisTicker subclass generates ticks which can be directly specified by the user as + coordinates and associated strings. They can be passed as a whole with \ref setTicks or one at a + time with \ref addTick. Alternatively you can directly access the internal storage via \ref ticks + and modify the tick/label data there. + + This is useful for cases where the axis represents categories rather than numerical values. + + If you are updating the ticks of this ticker regularly and in a dynamic fasion (e.g. dependent on + the axis range), it is a sign that you should probably create an own ticker by subclassing + QCPAxisTicker, instead of using this one. + + The ticker can be created and assigned to an axis like this: + \snippet documentation/doc-image-generator/mainwindow.cpp axistickertext-creation +*/ + +/* start of documentation of inline functions */ + +/*! \fn QMap &QCPAxisTickerText::ticks() + + Returns a non-const reference to the internal map which stores the tick coordinates and their + labels. + + You can access the map directly in order to add, remove or manipulate ticks, as an alternative to + using the methods provided by QCPAxisTickerText, such as \ref setTicks and \ref addTick. +*/ + +/* end of documentation of inline functions */ + +/*! + Constructs the ticker and sets reasonable default values. Axis tickers are commonly created + managed by a QSharedPointer, which then can be passed to QCPAxis::setTicker. +*/ +QCPAxisTickerText::QCPAxisTickerText() : + mSubTickCount(0) +{ +} + +/*! \overload + + Sets the ticks that shall appear on the axis. The map key of \a ticks corresponds to the axis + coordinate, and the map value is the string that will appear as tick label. + + An alternative to manipulate ticks is to directly access the internal storage with the \ref ticks + getter. + + \see addTicks, addTick, clear +*/ +void QCPAxisTickerText::setTicks(const QMap &ticks) +{ + mTicks = ticks; +} + +/*! \overload + + Sets the ticks that shall appear on the axis. The entries of \a positions correspond to the axis + coordinates, and the entries of \a labels are the respective strings that will appear as tick + labels. + + \see addTicks, addTick, clear +*/ +void QCPAxisTickerText::setTicks(const QVector &positions, const QVector &labels) +{ + clear(); + addTicks(positions, labels); +} + +/*! + Sets the number of sub ticks that shall appear between ticks. For QCPAxisTickerText, there is no + automatic sub tick count calculation. So if sub ticks are needed, they must be configured with this + method. +*/ +void QCPAxisTickerText::setSubTickCount(int subTicks) +{ + if (subTicks >= 0) + mSubTickCount = subTicks; + else + qDebug() << Q_FUNC_INFO << "sub tick count can't be negative:" << subTicks; +} + +/*! + Clears all ticks. + + An alternative to manipulate ticks is to directly access the internal storage with the \ref ticks + getter. + + \see setTicks, addTicks, addTick +*/ +void QCPAxisTickerText::clear() +{ + mTicks.clear(); +} + +/*! + Adds a single tick to the axis at the given axis coordinate \a position, with the provided tick \a + label. + + \see addTicks, setTicks, clear +*/ +void QCPAxisTickerText::addTick(double position, const QString &label) +{ + mTicks.insert(position, label); +} + +/*! \overload + + Adds the provided \a ticks to the ones already existing. The map key of \a ticks corresponds to + the axis coordinate, and the map value is the string that will appear as tick label. + + An alternative to manipulate ticks is to directly access the internal storage with the \ref ticks + getter. + + \see addTick, setTicks, clear +*/ +void QCPAxisTickerText::addTicks(const QMap &ticks) +{ + mTicks.unite(ticks); +} + +/*! \overload + + Adds the provided ticks to the ones already existing. The entries of \a positions correspond to + the axis coordinates, and the entries of \a labels are the respective strings that will appear as + tick labels. + + An alternative to manipulate ticks is to directly access the internal storage with the \ref ticks + getter. + + \see addTick, setTicks, clear +*/ +void QCPAxisTickerText::addTicks(const QVector &positions, const QVector &labels) +{ + if (positions.size() != labels.size()) + qDebug() << Q_FUNC_INFO << "passed unequal length vectors for positions and labels:" << positions.size() << labels.size(); + int n = qMin(positions.size(), labels.size()); + for (int i=0; i QCPAxisTickerText::createTickVector(double tickStep, const QCPRange &range) +{ + Q_UNUSED(tickStep) + QVector result; + if (mTicks.isEmpty()) + return result; + + QMap::const_iterator start = mTicks.lowerBound(range.lower); + QMap::const_iterator end = mTicks.upperBound(range.upper); + // this method should try to give one tick outside of range so proper subticks can be generated: + if (start != mTicks.constBegin()) --start; + if (end != mTicks.constEnd()) ++end; + for (QMap::const_iterator it = start; it != end; ++it) + result.append(it.key()); + + return result; +} +/* end of 'src/axis/axistickertext.cpp' */ + + +/* including file 'src/axis/axistickerpi.cpp', size 11170 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPAxisTickerPi +//////////////////////////////////////////////////////////////////////////////////////////////////// +/*! \class QCPAxisTickerPi + \brief Specialized axis ticker to display ticks in units of an arbitrary constant, for example pi + + \image html axisticker-pi.png + + This QCPAxisTicker subclass generates ticks that are expressed with respect to a given symbolic + constant with a numerical value specified with \ref setPiValue and an appearance in the tick + labels specified with \ref setPiSymbol. + + Ticks may be generated at fractions of the symbolic constant. How these fractions appear in the + tick label can be configured with \ref setFractionStyle. + + The ticker can be created and assigned to an axis like this: + \snippet documentation/doc-image-generator/mainwindow.cpp axistickerpi-creation +*/ + +/*! + Constructs the ticker and sets reasonable default values. Axis tickers are commonly created + managed by a QSharedPointer, which then can be passed to QCPAxis::setTicker. +*/ +QCPAxisTickerPi::QCPAxisTickerPi() : + mPiSymbol(QLatin1String(" ")+QChar(0x03C0)), + mPiValue(M_PI), + mPeriodicity(0), + mFractionStyle(fsUnicodeFractions), + mPiTickStep(0) +{ + setTickCount(4); +} + +/*! + Sets how the symbol part (which is always a suffix to the number) shall appear in the axis tick + label. + + If a space shall appear between the number and the symbol, make sure the space is contained in \a + symbol. +*/ +void QCPAxisTickerPi::setPiSymbol(QString symbol) +{ + mPiSymbol = symbol; +} + +/*! + Sets the numerical value that the symbolic constant has. + + This will be used to place the appropriate fractions of the symbol at the respective axis + coordinates. +*/ +void QCPAxisTickerPi::setPiValue(double pi) +{ + mPiValue = pi; +} + +/*! + Sets whether the axis labels shall appear periodicly and if so, at which multiplicity of the + symbolic constant. + + To disable periodicity, set \a multiplesOfPi to zero. + + For example, an axis that identifies 0 with 2pi would set \a multiplesOfPi to two. +*/ +void QCPAxisTickerPi::setPeriodicity(int multiplesOfPi) +{ + mPeriodicity = qAbs(multiplesOfPi); +} + +/*! + Sets how the numerical/fractional part preceding the symbolic constant is displayed in tick + labels. See \ref FractionStyle for the various options. +*/ +void QCPAxisTickerPi::setFractionStyle(QCPAxisTickerPi::FractionStyle style) +{ + mFractionStyle = style; +} + +/*! \internal + + Returns the tick step, using the constant's value (\ref setPiValue) as base unit. In consequence + the numerical/fractional part preceding the symbolic constant is made to have a readable + mantissa. + + \seebaseclassmethod +*/ +double QCPAxisTickerPi::getTickStep(const QCPRange &range) +{ + mPiTickStep = range.size()/mPiValue/(double)(mTickCount+1e-10); // mTickCount ticks on average, the small addition is to prevent jitter on exact integers + mPiTickStep = cleanMantissa(mPiTickStep); + return mPiTickStep*mPiValue; +} + +/*! \internal + + Returns the sub tick count, using the constant's value (\ref setPiValue) as base unit. In + consequence the sub ticks divide the numerical/fractional part preceding the symbolic constant + reasonably, and not the total tick coordinate. + + \seebaseclassmethod +*/ +int QCPAxisTickerPi::getSubTickCount(double tickStep) +{ + return QCPAxisTicker::getSubTickCount(tickStep/mPiValue); +} + +/*! \internal + + Returns the tick label as a fractional/numerical part and a symbolic string as suffix. The + formatting of the fraction is done according to the specified \ref setFractionStyle. The appended + symbol is specified with \ref setPiSymbol. + + \seebaseclassmethod +*/ +QString QCPAxisTickerPi::getTickLabel(double tick, const QLocale &locale, QChar formatChar, int precision) +{ + double tickInPis = tick/mPiValue; + if (mPeriodicity > 0) + tickInPis = fmod(tickInPis, mPeriodicity); + + if (mFractionStyle != fsFloatingPoint && mPiTickStep > 0.09 && mPiTickStep < 50) + { + // simply construct fraction from decimal like 1.234 -> 1234/1000 and then simplify fraction, smaller digits are irrelevant due to mPiTickStep conditional above + int denominator = 1000; + int numerator = qRound(tickInPis*denominator); + simplifyFraction(numerator, denominator); + if (qAbs(numerator) == 1 && denominator == 1) + return (numerator < 0 ? QLatin1String("-") : QLatin1String("")) + mPiSymbol.trimmed(); + else if (numerator == 0) + return QLatin1String("0"); + else + return fractionToString(numerator, denominator) + mPiSymbol; + } else + { + if (qFuzzyIsNull(tickInPis)) + return QLatin1String("0"); + else if (qFuzzyCompare(qAbs(tickInPis), 1.0)) + return (tickInPis < 0 ? QLatin1String("-") : QLatin1String("")) + mPiSymbol.trimmed(); + else + return QCPAxisTicker::getTickLabel(tickInPis, locale, formatChar, precision) + mPiSymbol; + } +} + +/*! \internal + + Takes the fraction given by \a numerator and \a denominator and modifies the values to make sure + the fraction is in irreducible form, i.e. numerator and denominator don't share any common + factors which could be cancelled. +*/ +void QCPAxisTickerPi::simplifyFraction(int &numerator, int &denominator) const +{ + if (numerator == 0 || denominator == 0) + return; + + int num = numerator; + int denom = denominator; + while (denom != 0) // euclidean gcd algorithm + { + int oldDenom = denom; + denom = num % denom; + num = oldDenom; + } + // num is now gcd of numerator and denominator + numerator /= num; + denominator /= num; +} + +/*! \internal + + Takes the fraction given by \a numerator and \a denominator and returns a string representation. + The result depends on the configured fraction style (\ref setFractionStyle). + + This method is used to format the numerical/fractional part when generating tick labels. It + simplifies the passed fraction to an irreducible form using \ref simplifyFraction and factors out + any integer parts of the fraction (e.g. "10/4" becomes "2 1/2"). +*/ +QString QCPAxisTickerPi::fractionToString(int numerator, int denominator) const +{ + if (denominator == 0) + { + qDebug() << Q_FUNC_INFO << "called with zero denominator"; + return QString(); + } + if (mFractionStyle == fsFloatingPoint) // should never be the case when calling this function + { + qDebug() << Q_FUNC_INFO << "shouldn't be called with fraction style fsDecimal"; + return QString::number(numerator/(double)denominator); // failsafe + } + int sign = numerator*denominator < 0 ? -1 : 1; + numerator = qAbs(numerator); + denominator = qAbs(denominator); + + if (denominator == 1) + { + return QString::number(sign*numerator); + } else + { + int integerPart = numerator/denominator; + int remainder = numerator%denominator; + if (remainder == 0) + { + return QString::number(sign*integerPart); + } else + { + if (mFractionStyle == fsAsciiFractions) + { + return QString(QLatin1String("%1%2%3/%4")) + .arg(sign == -1 ? QLatin1String("-") : QLatin1String("")) + .arg(integerPart > 0 ? QString::number(integerPart)+QLatin1String(" ") : QLatin1String("")) + .arg(remainder) + .arg(denominator); + } else if (mFractionStyle == fsUnicodeFractions) + { + return QString(QLatin1String("%1%2%3")) + .arg(sign == -1 ? QLatin1String("-") : QLatin1String("")) + .arg(integerPart > 0 ? QString::number(integerPart) : QLatin1String("")) + .arg(unicodeFraction(remainder, denominator)); + } + } + } + return QString(); +} + +/*! \internal + + Returns the unicode string representation of the fraction given by \a numerator and \a + denominator. This is the representation used in \ref fractionToString when the fraction style + (\ref setFractionStyle) is \ref fsUnicodeFractions. + + This method doesn't use the single-character common fractions but builds each fraction from a + superscript unicode number, the unicode fraction character, and a subscript unicode number. +*/ +QString QCPAxisTickerPi::unicodeFraction(int numerator, int denominator) const +{ + return unicodeSuperscript(numerator)+QChar(0x2044)+unicodeSubscript(denominator); +} + +/*! \internal + + Returns the unicode string representing \a number as superscript. This is used to build + unicode fractions in \ref unicodeFraction. +*/ +QString QCPAxisTickerPi::unicodeSuperscript(int number) const +{ + if (number == 0) + return QString(QChar(0x2070)); + + QString result; + while (number > 0) + { + const int digit = number%10; + switch (digit) + { + case 1: { result.prepend(QChar(0x00B9)); break; } + case 2: { result.prepend(QChar(0x00B2)); break; } + case 3: { result.prepend(QChar(0x00B3)); break; } + default: { result.prepend(QChar(0x2070+digit)); break; } + } + number /= 10; + } + return result; +} + +/*! \internal + + Returns the unicode string representing \a number as subscript. This is used to build unicode + fractions in \ref unicodeFraction. +*/ +QString QCPAxisTickerPi::unicodeSubscript(int number) const +{ + if (number == 0) + return QString(QChar(0x2080)); + + QString result; + while (number > 0) + { + result.prepend(QChar(0x2080+number%10)); + number /= 10; + } + return result; +} +/* end of 'src/axis/axistickerpi.cpp' */ + + +/* including file 'src/axis/axistickerlog.cpp', size 7106 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPAxisTickerLog +//////////////////////////////////////////////////////////////////////////////////////////////////// +/*! \class QCPAxisTickerLog + \brief Specialized axis ticker suited for logarithmic axes + + \image html axisticker-log.png + + This QCPAxisTicker subclass generates ticks with unequal tick intervals suited for logarithmic + axis scales. The ticks are placed at powers of the specified log base (\ref setLogBase). + + Especially in the case of a log base equal to 10 (the default), it might be desirable to have + tick labels in the form of powers of ten without mantissa display. To achieve this, set the + number precision (\ref QCPAxis::setNumberPrecision) to zero and the number format (\ref + QCPAxis::setNumberFormat) to scientific (exponential) display with beautifully typeset decimal + powers, so a format string of "eb". This will result in the following axis tick labels: + + \image html axisticker-log-powers.png + + The ticker can be created and assigned to an axis like this: + \snippet documentation/doc-image-generator/mainwindow.cpp axistickerlog-creation +*/ + +/*! + Constructs the ticker and sets reasonable default values. Axis tickers are commonly created + managed by a QSharedPointer, which then can be passed to QCPAxis::setTicker. +*/ +QCPAxisTickerLog::QCPAxisTickerLog() : + mLogBase(10.0), + mSubTickCount(8), // generates 10 intervals + mLogBaseLnInv(1.0/qLn(mLogBase)) +{ +} + +/*! + Sets the logarithm base used for tick coordinate generation. The ticks will be placed at integer + powers of \a base. +*/ +void QCPAxisTickerLog::setLogBase(double base) +{ + if (base > 0) + { + mLogBase = base; + mLogBaseLnInv = 1.0/qLn(mLogBase); + } else + qDebug() << Q_FUNC_INFO << "log base has to be greater than zero:" << base; +} + +/*! + Sets the number of sub ticks in a tick interval. Within each interval, the sub ticks are spaced + linearly to provide a better visual guide, so the sub tick density increases toward the higher + tick. + + Note that \a subTicks is the number of sub ticks (not sub intervals) in one tick interval. So in + the case of logarithm base 10 an intuitive sub tick spacing would be achieved with eight sub + ticks (the default). This means e.g. between the ticks 10 and 100 there will be eight ticks, + namely at 20, 30, 40, 50, 60, 70, 80 and 90. +*/ +void QCPAxisTickerLog::setSubTickCount(int subTicks) +{ + if (subTicks >= 0) + mSubTickCount = subTicks; + else + qDebug() << Q_FUNC_INFO << "sub tick count can't be negative:" << subTicks; +} + +/*! \internal + + Since logarithmic tick steps are necessarily different for each tick interval, this method does + nothing in the case of QCPAxisTickerLog + + \seebaseclassmethod +*/ +double QCPAxisTickerLog::getTickStep(const QCPRange &range) +{ + // Logarithmic axis ticker has unequal tick spacing, so doesn't need this method + Q_UNUSED(range) + return 1.0; +} + +/*! \internal + + Returns the sub tick count specified in \ref setSubTickCount. For QCPAxisTickerLog, there is no + automatic sub tick count calculation necessary. + + \seebaseclassmethod +*/ +int QCPAxisTickerLog::getSubTickCount(double tickStep) +{ + Q_UNUSED(tickStep) + return mSubTickCount; +} + +/*! \internal + + Creates ticks with a spacing given by the logarithm base and an increasing integer power in the + provided \a range. The step in which the power increases tick by tick is chosen in order to keep + the total number of ticks as close as possible to the tick count (\ref setTickCount). The + parameter \a tickStep is ignored for QCPAxisTickerLog + + \seebaseclassmethod +*/ +QVector QCPAxisTickerLog::createTickVector(double tickStep, const QCPRange &range) +{ + Q_UNUSED(tickStep) + QVector result; + if (range.lower > 0 && range.upper > 0) // positive range + { + double exactPowerStep = qLn(range.upper/range.lower)*mLogBaseLnInv/(double)(mTickCount+1e-10); + double newLogBase = qPow(mLogBase, qMax((int)cleanMantissa(exactPowerStep), 1)); + double currentTick = qPow(newLogBase, qFloor(qLn(range.lower)/qLn(newLogBase))); + result.append(currentTick); + while (currentTick < range.upper && currentTick > 0) // currentMag might be zero for ranges ~1e-300, just cancel in that case + { + currentTick *= newLogBase; + result.append(currentTick); + } + } else if (range.lower < 0 && range.upper < 0) // negative range + { + double exactPowerStep = qLn(range.lower/range.upper)*mLogBaseLnInv/(double)(mTickCount+1e-10); + double newLogBase = qPow(mLogBase, qMax((int)cleanMantissa(exactPowerStep), 1)); + double currentTick = -qPow(newLogBase, qCeil(qLn(-range.lower)/qLn(newLogBase))); + result.append(currentTick); + while (currentTick < range.upper && currentTick < 0) // currentMag might be zero for ranges ~1e-300, just cancel in that case + { + currentTick /= newLogBase; + result.append(currentTick); + } + } else // invalid range for logarithmic scale, because lower and upper have different sign + { + qDebug() << Q_FUNC_INFO << "Invalid range for logarithmic plot: " << range.lower << ".." << range.upper; + } + + return result; +} +/* end of 'src/axis/axistickerlog.cpp' */ + + +/* including file 'src/axis/axis.cpp', size 99515 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPGrid +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPGrid + \brief Responsible for drawing the grid of a QCPAxis. + + This class is tightly bound to QCPAxis. Every axis owns a grid instance and uses it to draw the + grid lines, sub grid lines and zero-line. You can interact with the grid of an axis via \ref + QCPAxis::grid. Normally, you don't need to create an instance of QCPGrid yourself. + + The axis and grid drawing was split into two classes to allow them to be placed on different + layers (both QCPAxis and QCPGrid inherit from QCPLayerable). Thus it is possible to have the grid + in the background and the axes in the foreground, and any plottables/items in between. This + described situation is the default setup, see the QCPLayer documentation. +*/ + +/*! + Creates a QCPGrid instance and sets default values. + + You shouldn't instantiate grids on their own, since every QCPAxis brings its own QCPGrid. +*/ +QCPGrid::QCPGrid(QCPAxis *parentAxis) : + QCPLayerable(parentAxis->parentPlot(), QString(), parentAxis), + mParentAxis(parentAxis) +{ + // warning: this is called in QCPAxis constructor, so parentAxis members should not be accessed/called + setParent(parentAxis); + setPen(QPen(QColor(200,200,200), 0, Qt::DotLine)); + setSubGridPen(QPen(QColor(220,220,220), 0, Qt::DotLine)); + setZeroLinePen(QPen(QColor(200,200,200), 0, Qt::SolidLine)); + setSubGridVisible(false); + setAntialiased(false); + setAntialiasedSubGrid(false); + setAntialiasedZeroLine(false); +} + +/*! + Sets whether grid lines at sub tick marks are drawn. + + \see setSubGridPen +*/ +void QCPGrid::setSubGridVisible(bool visible) +{ + mSubGridVisible = visible; +} + +/*! + Sets whether sub grid lines are drawn antialiased. +*/ +void QCPGrid::setAntialiasedSubGrid(bool enabled) +{ + mAntialiasedSubGrid = enabled; +} + +/*! + Sets whether zero lines are drawn antialiased. +*/ +void QCPGrid::setAntialiasedZeroLine(bool enabled) +{ + mAntialiasedZeroLine = enabled; +} + +/*! + Sets the pen with which (major) grid lines are drawn. +*/ +void QCPGrid::setPen(const QPen &pen) +{ + mPen = pen; +} + +/*! + Sets the pen with which sub grid lines are drawn. +*/ +void QCPGrid::setSubGridPen(const QPen &pen) +{ + mSubGridPen = pen; +} + +/*! + Sets the pen with which zero lines are drawn. + + Zero lines are lines at value coordinate 0 which may be drawn with a different pen than other grid + lines. To disable zero lines and just draw normal grid lines at zero, set \a pen to Qt::NoPen. +*/ +void QCPGrid::setZeroLinePen(const QPen &pen) +{ + mZeroLinePen = pen; +} + +/*! \internal + + A convenience function to easily set the QPainter::Antialiased hint on the provided \a painter + before drawing the major grid lines. + + This is the antialiasing state the painter passed to the \ref draw method is in by default. + + This function takes into account the local setting of the antialiasing flag as well as the + overrides set with \ref QCustomPlot::setAntialiasedElements and \ref + QCustomPlot::setNotAntialiasedElements. + + \see setAntialiased +*/ +void QCPGrid::applyDefaultAntialiasingHint(QCPPainter *painter) const +{ + applyAntialiasingHint(painter, mAntialiased, QCP::aeGrid); +} + +/*! \internal + + Draws grid lines and sub grid lines at the positions of (sub) ticks of the parent axis, spanning + over the complete axis rect. Also draws the zero line, if appropriate (\ref setZeroLinePen). +*/ +void QCPGrid::draw(QCPPainter *painter) +{ + if (!mParentAxis) { qDebug() << Q_FUNC_INFO << "invalid parent axis"; return; } + + if (mParentAxis->subTicks() && mSubGridVisible) + drawSubGridLines(painter); + drawGridLines(painter); +} + +/*! \internal + + Draws the main grid lines and possibly a zero line with the specified painter. + + This is a helper function called by \ref draw. +*/ +void QCPGrid::drawGridLines(QCPPainter *painter) const +{ + if (!mParentAxis) { qDebug() << Q_FUNC_INFO << "invalid parent axis"; return; } + + const int tickCount = mParentAxis->mTickVector.size(); + double t; // helper variable, result of coordinate-to-pixel transforms + if (mParentAxis->orientation() == Qt::Horizontal) + { + // draw zeroline: + int zeroLineIndex = -1; + if (mZeroLinePen.style() != Qt::NoPen && mParentAxis->mRange.lower < 0 && mParentAxis->mRange.upper > 0) + { + applyAntialiasingHint(painter, mAntialiasedZeroLine, QCP::aeZeroLine); + painter->setPen(mZeroLinePen); + double epsilon = mParentAxis->range().size()*1E-6; // for comparing double to zero + for (int i=0; imTickVector.at(i)) < epsilon) + { + zeroLineIndex = i; + t = mParentAxis->coordToPixel(mParentAxis->mTickVector.at(i)); // x + painter->drawLine(QLineF(t, mParentAxis->mAxisRect->bottom(), t, mParentAxis->mAxisRect->top())); + break; + } + } + } + // draw grid lines: + applyDefaultAntialiasingHint(painter); + painter->setPen(mPen); + for (int i=0; icoordToPixel(mParentAxis->mTickVector.at(i)); // x + painter->drawLine(QLineF(t, mParentAxis->mAxisRect->bottom(), t, mParentAxis->mAxisRect->top())); + } + } else + { + // draw zeroline: + int zeroLineIndex = -1; + if (mZeroLinePen.style() != Qt::NoPen && mParentAxis->mRange.lower < 0 && mParentAxis->mRange.upper > 0) + { + applyAntialiasingHint(painter, mAntialiasedZeroLine, QCP::aeZeroLine); + painter->setPen(mZeroLinePen); + double epsilon = mParentAxis->mRange.size()*1E-6; // for comparing double to zero + for (int i=0; imTickVector.at(i)) < epsilon) + { + zeroLineIndex = i; + t = mParentAxis->coordToPixel(mParentAxis->mTickVector.at(i)); // y + painter->drawLine(QLineF(mParentAxis->mAxisRect->left(), t, mParentAxis->mAxisRect->right(), t)); + break; + } + } + } + // draw grid lines: + applyDefaultAntialiasingHint(painter); + painter->setPen(mPen); + for (int i=0; icoordToPixel(mParentAxis->mTickVector.at(i)); // y + painter->drawLine(QLineF(mParentAxis->mAxisRect->left(), t, mParentAxis->mAxisRect->right(), t)); + } + } +} + +/*! \internal + + Draws the sub grid lines with the specified painter. + + This is a helper function called by \ref draw. +*/ +void QCPGrid::drawSubGridLines(QCPPainter *painter) const +{ + if (!mParentAxis) { qDebug() << Q_FUNC_INFO << "invalid parent axis"; return; } + + applyAntialiasingHint(painter, mAntialiasedSubGrid, QCP::aeSubGrid); + double t; // helper variable, result of coordinate-to-pixel transforms + painter->setPen(mSubGridPen); + if (mParentAxis->orientation() == Qt::Horizontal) + { + for (int i=0; imSubTickVector.size(); ++i) + { + t = mParentAxis->coordToPixel(mParentAxis->mSubTickVector.at(i)); // x + painter->drawLine(QLineF(t, mParentAxis->mAxisRect->bottom(), t, mParentAxis->mAxisRect->top())); + } + } else + { + for (int i=0; imSubTickVector.size(); ++i) + { + t = mParentAxis->coordToPixel(mParentAxis->mSubTickVector.at(i)); // y + painter->drawLine(QLineF(mParentAxis->mAxisRect->left(), t, mParentAxis->mAxisRect->right(), t)); + } + } +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPAxis +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPAxis + \brief Manages a single axis inside a QCustomPlot. + + Usually doesn't need to be instantiated externally. Access %QCustomPlot's default four axes via + QCustomPlot::xAxis (bottom), QCustomPlot::yAxis (left), QCustomPlot::xAxis2 (top) and + QCustomPlot::yAxis2 (right). + + Axes are always part of an axis rect, see QCPAxisRect. + \image html AxisNamesOverview.png +
Naming convention of axis parts
+ \n + + \image html AxisRectSpacingOverview.png +
Overview of the spacings and paddings that define the geometry of an axis. The dashed gray line + on the left represents the QCustomPlot widget border.
+ + Each axis holds an instance of QCPAxisTicker which is used to generate the tick coordinates and + tick labels. You can access the currently installed \ref ticker or set a new one (possibly one of + the specialized subclasses, or your own subclass) via \ref setTicker. For details, see the + documentation of QCPAxisTicker. +*/ + +/* start of documentation of inline functions */ + +/*! \fn Qt::Orientation QCPAxis::orientation() const + + Returns the orientation of this axis. The axis orientation (horizontal or vertical) is deduced + from the axis type (left, top, right or bottom). + + \see orientation(AxisType type), pixelOrientation +*/ + +/*! \fn QCPGrid *QCPAxis::grid() const + + Returns the \ref QCPGrid instance belonging to this axis. Access it to set details about the way the + grid is displayed. +*/ + +/*! \fn static Qt::Orientation QCPAxis::orientation(AxisType type) + + Returns the orientation of the specified axis type + + \see orientation(), pixelOrientation +*/ + +/*! \fn int QCPAxis::pixelOrientation() const + + Returns which direction points towards higher coordinate values/keys, in pixel space. + + This method returns either 1 or -1. If it returns 1, then going in the positive direction along + the orientation of the axis in pixels corresponds to going from lower to higher axis coordinates. + On the other hand, if this method returns -1, going to smaller pixel values corresponds to going + from lower to higher axis coordinates. + + For example, this is useful to easily shift axis coordinates by a certain amount given in pixels, + without having to care about reversed or vertically aligned axes: + + \code + double newKey = keyAxis->pixelToCoord(keyAxis->coordToPixel(oldKey)+10*keyAxis->pixelOrientation()); + \endcode + + \a newKey will then contain a key that is ten pixels towards higher keys, starting from \a oldKey. +*/ + +/*! \fn QSharedPointer QCPAxis::ticker() const + + Returns a modifiable shared pointer to the currently installed axis ticker. The axis ticker is + responsible for generating the tick positions and tick labels of this axis. You can access the + \ref QCPAxisTicker with this method and modify basic properties such as the approximate tick count + (\ref QCPAxisTicker::setTickCount). + + You can gain more control over the axis ticks by setting a different \ref QCPAxisTicker subclass, see + the documentation there. A new axis ticker can be set with \ref setTicker. + + Since the ticker is stored in the axis as a shared pointer, multiple axes may share the same axis + ticker simply by passing the same shared pointer to multiple axes. + + \see setTicker +*/ + +/* end of documentation of inline functions */ +/* start of documentation of signals */ + +/*! \fn void QCPAxis::rangeChanged(const QCPRange &newRange) + + This signal is emitted when the range of this axis has changed. You can connect it to the \ref + setRange slot of another axis to communicate the new range to the other axis, in order for it to + be synchronized. + + You may also manipulate/correct the range with \ref setRange in a slot connected to this signal. + This is useful if for example a maximum range span shall not be exceeded, or if the lower/upper + range shouldn't go beyond certain values (see \ref QCPRange::bounded). For example, the following + slot would limit the x axis to ranges between 0 and 10: + \code + customPlot->xAxis->setRange(newRange.bounded(0, 10)) + \endcode +*/ + +/*! \fn void QCPAxis::rangeChanged(const QCPRange &newRange, const QCPRange &oldRange) + \overload + + Additionally to the new range, this signal also provides the previous range held by the axis as + \a oldRange. +*/ + +/*! \fn void QCPAxis::scaleTypeChanged(QCPAxis::ScaleType scaleType); + + This signal is emitted when the scale type changes, by calls to \ref setScaleType +*/ + +/*! \fn void QCPAxis::selectionChanged(QCPAxis::SelectableParts selection) + + This signal is emitted when the selection state of this axis has changed, either by user interaction + or by a direct call to \ref setSelectedParts. +*/ + +/*! \fn void QCPAxis::selectableChanged(const QCPAxis::SelectableParts &parts); + + This signal is emitted when the selectability changes, by calls to \ref setSelectableParts +*/ + +/* end of documentation of signals */ + +/*! + Constructs an Axis instance of Type \a type for the axis rect \a parent. + + Usually it isn't necessary to instantiate axes directly, because you can let QCustomPlot create + them for you with \ref QCPAxisRect::addAxis. If you want to use own QCPAxis-subclasses however, + create them manually and then inject them also via \ref QCPAxisRect::addAxis. +*/ +QCPAxis::QCPAxis(QCPAxisRect *parent, AxisType type) : + QCPLayerable(parent->parentPlot(), QString(), parent), + // axis base: + mAxisType(type), + mAxisRect(parent), + mPadding(5), + mOrientation(orientation(type)), + mSelectableParts(spAxis | spTickLabels | spAxisLabel), + mSelectedParts(spNone), + mBasePen(QPen(Qt::black, 0, Qt::SolidLine, Qt::SquareCap)), + mSelectedBasePen(QPen(Qt::blue, 2)), + // axis label: + mLabel(), + mLabelFont(mParentPlot->font()), + mSelectedLabelFont(QFont(mLabelFont.family(), mLabelFont.pointSize(), QFont::Bold)), + mLabelColor(Qt::black), + mSelectedLabelColor(Qt::blue), + // tick labels: + mTickLabels(true), + mTickLabelFont(mParentPlot->font()), + mSelectedTickLabelFont(QFont(mTickLabelFont.family(), mTickLabelFont.pointSize(), QFont::Bold)), + mTickLabelColor(Qt::black), + mSelectedTickLabelColor(Qt::blue), + mNumberPrecision(6), + mNumberFormatChar('g'), + mNumberBeautifulPowers(true), + // ticks and subticks: + mTicks(true), + mSubTicks(true), + mTickPen(QPen(Qt::black, 0, Qt::SolidLine, Qt::SquareCap)), + mSelectedTickPen(QPen(Qt::blue, 2)), + mSubTickPen(QPen(Qt::black, 0, Qt::SolidLine, Qt::SquareCap)), + mSelectedSubTickPen(QPen(Qt::blue, 2)), + // scale and range: + mRange(0, 5), + mRangeReversed(false), + mScaleType(stLinear), + // internal members: + mGrid(new QCPGrid(this)), + mAxisPainter(new QCPAxisPainterPrivate(parent->parentPlot())), + mTicker(new QCPAxisTicker), + mCachedMarginValid(false), + mCachedMargin(0) +{ + setParent(parent); + mGrid->setVisible(false); + setAntialiased(false); + setLayer(mParentPlot->currentLayer()); // it's actually on that layer already, but we want it in front of the grid, so we place it on there again + + if (type == atTop) + { + setTickLabelPadding(3); + setLabelPadding(6); + } else if (type == atRight) + { + setTickLabelPadding(7); + setLabelPadding(12); + } else if (type == atBottom) + { + setTickLabelPadding(3); + setLabelPadding(3); + } else if (type == atLeft) + { + setTickLabelPadding(5); + setLabelPadding(10); + } +} + +QCPAxis::~QCPAxis() +{ + delete mAxisPainter; + delete mGrid; // delete grid here instead of via parent ~QObject for better defined deletion order +} + +/* No documentation as it is a property getter */ +int QCPAxis::tickLabelPadding() const +{ + return mAxisPainter->tickLabelPadding; +} + +/* No documentation as it is a property getter */ +double QCPAxis::tickLabelRotation() const +{ + return mAxisPainter->tickLabelRotation; +} + +/* No documentation as it is a property getter */ +QCPAxis::LabelSide QCPAxis::tickLabelSide() const +{ + return mAxisPainter->tickLabelSide; +} + +/* No documentation as it is a property getter */ +QString QCPAxis::numberFormat() const +{ + QString result; + result.append(mNumberFormatChar); + if (mNumberBeautifulPowers) + { + result.append(QLatin1Char('b')); + if (mAxisPainter->numberMultiplyCross) + result.append(QLatin1Char('c')); + } + return result; +} + +/* No documentation as it is a property getter */ +int QCPAxis::tickLengthIn() const +{ + return mAxisPainter->tickLengthIn; +} + +/* No documentation as it is a property getter */ +int QCPAxis::tickLengthOut() const +{ + return mAxisPainter->tickLengthOut; +} + +/* No documentation as it is a property getter */ +int QCPAxis::subTickLengthIn() const +{ + return mAxisPainter->subTickLengthIn; +} + +/* No documentation as it is a property getter */ +int QCPAxis::subTickLengthOut() const +{ + return mAxisPainter->subTickLengthOut; +} + +/* No documentation as it is a property getter */ +int QCPAxis::labelPadding() const +{ + return mAxisPainter->labelPadding; +} + +/* No documentation as it is a property getter */ +int QCPAxis::offset() const +{ + return mAxisPainter->offset; +} + +/* No documentation as it is a property getter */ +QCPLineEnding QCPAxis::lowerEnding() const +{ + return mAxisPainter->lowerEnding; +} + +/* No documentation as it is a property getter */ +QCPLineEnding QCPAxis::upperEnding() const +{ + return mAxisPainter->upperEnding; +} + +/*! + Sets whether the axis uses a linear scale or a logarithmic scale. + + Note that this method controls the coordinate transformation. For logarithmic scales, you will + likely also want to use a logarithmic tick spacing and labeling, which can be achieved by setting + the axis ticker to an instance of \ref QCPAxisTickerLog : + + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpaxisticker-log-creation + + See the documentation of \ref QCPAxisTickerLog about the details of logarithmic axis tick + creation. + + \ref setNumberPrecision +*/ +void QCPAxis::setScaleType(QCPAxis::ScaleType type) +{ + if (mScaleType != type) + { + mScaleType = type; + if (mScaleType == stLogarithmic) + setRange(mRange.sanitizedForLogScale()); + mCachedMarginValid = false; + emit scaleTypeChanged(mScaleType); + } +} + +/*! + Sets the range of the axis. + + This slot may be connected with the \ref rangeChanged signal of another axis so this axis + is always synchronized with the other axis range, when it changes. + + To invert the direction of an axis, use \ref setRangeReversed. +*/ +void QCPAxis::setRange(const QCPRange &range) +{ + if (range.lower == mRange.lower && range.upper == mRange.upper) + return; + + if (!QCPRange::validRange(range)) return; + QCPRange oldRange = mRange; + if (mScaleType == stLogarithmic) + { + mRange = range.sanitizedForLogScale(); + } else + { + mRange = range.sanitizedForLinScale(); + } + emit rangeChanged(mRange); + emit rangeChanged(mRange, oldRange); +} + +/*! + Sets whether the user can (de-)select the parts in \a selectable by clicking on the QCustomPlot surface. + (When \ref QCustomPlot::setInteractions contains iSelectAxes.) + + However, even when \a selectable is set to a value not allowing the selection of a specific part, + it is still possible to set the selection of this part manually, by calling \ref setSelectedParts + directly. + + \see SelectablePart, setSelectedParts +*/ +void QCPAxis::setSelectableParts(const SelectableParts &selectable) +{ + if (mSelectableParts != selectable) + { + mSelectableParts = selectable; + emit selectableChanged(mSelectableParts); + } +} + +/*! + Sets the selected state of the respective axis parts described by \ref SelectablePart. When a part + is selected, it uses a different pen/font. + + The entire selection mechanism for axes is handled automatically when \ref + QCustomPlot::setInteractions contains iSelectAxes. You only need to call this function when you + wish to change the selection state manually. + + This function can change the selection state of a part, independent of the \ref setSelectableParts setting. + + emits the \ref selectionChanged signal when \a selected is different from the previous selection state. + + \see SelectablePart, setSelectableParts, selectTest, setSelectedBasePen, setSelectedTickPen, setSelectedSubTickPen, + setSelectedTickLabelFont, setSelectedLabelFont, setSelectedTickLabelColor, setSelectedLabelColor +*/ +void QCPAxis::setSelectedParts(const SelectableParts &selected) +{ + if (mSelectedParts != selected) + { + mSelectedParts = selected; + emit selectionChanged(mSelectedParts); + } +} + +/*! + \overload + + Sets the lower and upper bound of the axis range. + + To invert the direction of an axis, use \ref setRangeReversed. + + There is also a slot to set a range, see \ref setRange(const QCPRange &range). +*/ +void QCPAxis::setRange(double lower, double upper) +{ + if (lower == mRange.lower && upper == mRange.upper) + return; + + if (!QCPRange::validRange(lower, upper)) return; + QCPRange oldRange = mRange; + mRange.lower = lower; + mRange.upper = upper; + if (mScaleType == stLogarithmic) + { + mRange = mRange.sanitizedForLogScale(); + } else + { + mRange = mRange.sanitizedForLinScale(); + } + emit rangeChanged(mRange); + emit rangeChanged(mRange, oldRange); +} + +/*! + \overload + + Sets the range of the axis. + + The \a position coordinate indicates together with the \a alignment parameter, where the new + range will be positioned. \a size defines the size of the new axis range. \a alignment may be + Qt::AlignLeft, Qt::AlignRight or Qt::AlignCenter. This will cause the left border, right border, + or center of the range to be aligned with \a position. Any other values of \a alignment will + default to Qt::AlignCenter. +*/ +void QCPAxis::setRange(double position, double size, Qt::AlignmentFlag alignment) +{ + if (alignment == Qt::AlignLeft) + setRange(position, position+size); + else if (alignment == Qt::AlignRight) + setRange(position-size, position); + else // alignment == Qt::AlignCenter + setRange(position-size/2.0, position+size/2.0); +} + +/*! + Sets the lower bound of the axis range. The upper bound is not changed. + \see setRange +*/ +void QCPAxis::setRangeLower(double lower) +{ + if (mRange.lower == lower) + return; + + QCPRange oldRange = mRange; + mRange.lower = lower; + if (mScaleType == stLogarithmic) + { + mRange = mRange.sanitizedForLogScale(); + } else + { + mRange = mRange.sanitizedForLinScale(); + } + emit rangeChanged(mRange); + emit rangeChanged(mRange, oldRange); +} + +/*! + Sets the upper bound of the axis range. The lower bound is not changed. + \see setRange +*/ +void QCPAxis::setRangeUpper(double upper) +{ + if (mRange.upper == upper) + return; + + QCPRange oldRange = mRange; + mRange.upper = upper; + if (mScaleType == stLogarithmic) + { + mRange = mRange.sanitizedForLogScale(); + } else + { + mRange = mRange.sanitizedForLinScale(); + } + emit rangeChanged(mRange); + emit rangeChanged(mRange, oldRange); +} + +/*! + Sets whether the axis range (direction) is displayed reversed. Normally, the values on horizontal + axes increase left to right, on vertical axes bottom to top. When \a reversed is set to true, the + direction of increasing values is inverted. + + Note that the range and data interface stays the same for reversed axes, e.g. the \a lower part + of the \ref setRange interface will still reference the mathematically smaller number than the \a + upper part. +*/ +void QCPAxis::setRangeReversed(bool reversed) +{ + mRangeReversed = reversed; +} + +/*! + The axis ticker is responsible for generating the tick positions and tick labels. See the + documentation of QCPAxisTicker for details on how to work with axis tickers. + + You can change the tick positioning/labeling behaviour of this axis by setting a different + QCPAxisTicker subclass using this method. If you only wish to modify the currently installed axis + ticker, access it via \ref ticker. + + Since the ticker is stored in the axis as a shared pointer, multiple axes may share the same axis + ticker simply by passing the same shared pointer to multiple axes. + + \see ticker +*/ +void QCPAxis::setTicker(QSharedPointer ticker) +{ + if (ticker) + mTicker = ticker; + else + qDebug() << Q_FUNC_INFO << "can not set 0 as axis ticker"; + // no need to invalidate margin cache here because produced tick labels are checked for changes in setupTickVector +} + +/*! + Sets whether tick marks are displayed. + + Note that setting \a show to false does not imply that tick labels are invisible, too. To achieve + that, see \ref setTickLabels. + + \see setSubTicks +*/ +void QCPAxis::setTicks(bool show) +{ + if (mTicks != show) + { + mTicks = show; + mCachedMarginValid = false; + } +} + +/*! + Sets whether tick labels are displayed. Tick labels are the numbers drawn next to tick marks. +*/ +void QCPAxis::setTickLabels(bool show) +{ + if (mTickLabels != show) + { + mTickLabels = show; + mCachedMarginValid = false; + if (!mTickLabels) + mTickVectorLabels.clear(); + } +} + +/*! + Sets the distance between the axis base line (including any outward ticks) and the tick labels. + \see setLabelPadding, setPadding +*/ +void QCPAxis::setTickLabelPadding(int padding) +{ + if (mAxisPainter->tickLabelPadding != padding) + { + mAxisPainter->tickLabelPadding = padding; + mCachedMarginValid = false; + } +} + +/*! + Sets the font of the tick labels. + + \see setTickLabels, setTickLabelColor +*/ +void QCPAxis::setTickLabelFont(const QFont &font) +{ + if (font != mTickLabelFont) + { + mTickLabelFont = font; + mCachedMarginValid = false; + } +} + +/*! + Sets the color of the tick labels. + + \see setTickLabels, setTickLabelFont +*/ +void QCPAxis::setTickLabelColor(const QColor &color) +{ + mTickLabelColor = color; +} + +/*! + Sets the rotation of the tick labels. If \a degrees is zero, the labels are drawn normally. Else, + the tick labels are drawn rotated by \a degrees clockwise. The specified angle is bound to values + from -90 to 90 degrees. + + If \a degrees is exactly -90, 0 or 90, the tick labels are centered on the tick coordinate. For + other angles, the label is drawn with an offset such that it seems to point toward or away from + the tick mark. +*/ +void QCPAxis::setTickLabelRotation(double degrees) +{ + if (!qFuzzyIsNull(degrees-mAxisPainter->tickLabelRotation)) + { + mAxisPainter->tickLabelRotation = qBound(-90.0, degrees, 90.0); + mCachedMarginValid = false; + } +} + +/*! + Sets whether the tick labels (numbers) shall appear inside or outside the axis rect. + + The usual and default setting is \ref lsOutside. Very compact plots sometimes require tick labels + to be inside the axis rect, to save space. If \a side is set to \ref lsInside, the tick labels + appear on the inside are additionally clipped to the axis rect. +*/ +void QCPAxis::setTickLabelSide(LabelSide side) +{ + mAxisPainter->tickLabelSide = side; + mCachedMarginValid = false; +} + +/*! + Sets the number format for the numbers in tick labels. This \a formatCode is an extended version + of the format code used e.g. by QString::number() and QLocale::toString(). For reference about + that, see the "Argument Formats" section in the detailed description of the QString class. + + \a formatCode is a string of one, two or three characters. The first character is identical to + the normal format code used by Qt. In short, this means: 'e'/'E' scientific format, 'f' fixed + format, 'g'/'G' scientific or fixed, whichever is shorter. + + The second and third characters are optional and specific to QCustomPlot:\n + If the first char was 'e' or 'g', numbers are/might be displayed in the scientific format, e.g. + "5.5e9", which is ugly in a plot. So when the second char of \a formatCode is set to 'b' (for + "beautiful"), those exponential numbers are formatted in a more natural way, i.e. "5.5 + [multiplication sign] 10 [superscript] 9". By default, the multiplication sign is a centered dot. + If instead a cross should be shown (as is usual in the USA), the third char of \a formatCode can + be set to 'c'. The inserted multiplication signs are the UTF-8 characters 215 (0xD7) for the + cross and 183 (0xB7) for the dot. + + Examples for \a formatCode: + \li \c g normal format code behaviour. If number is small, fixed format is used, if number is large, + normal scientific format is used + \li \c gb If number is small, fixed format is used, if number is large, scientific format is used with + beautifully typeset decimal powers and a dot as multiplication sign + \li \c ebc All numbers are in scientific format with beautifully typeset decimal power and a cross as + multiplication sign + \li \c fb illegal format code, since fixed format doesn't support (or need) beautifully typeset decimal + powers. Format code will be reduced to 'f'. + \li \c hello illegal format code, since first char is not 'e', 'E', 'f', 'g' or 'G'. Current format + code will not be changed. +*/ +void QCPAxis::setNumberFormat(const QString &formatCode) +{ + if (formatCode.isEmpty()) + { + qDebug() << Q_FUNC_INFO << "Passed formatCode is empty"; + return; + } + mCachedMarginValid = false; + + // interpret first char as number format char: + QString allowedFormatChars(QLatin1String("eEfgG")); + if (allowedFormatChars.contains(formatCode.at(0))) + { + mNumberFormatChar = QLatin1Char(formatCode.at(0).toLatin1()); + } else + { + qDebug() << Q_FUNC_INFO << "Invalid number format code (first char not in 'eEfgG'):" << formatCode; + return; + } + if (formatCode.length() < 2) + { + mNumberBeautifulPowers = false; + mAxisPainter->numberMultiplyCross = false; + return; + } + + // interpret second char as indicator for beautiful decimal powers: + if (formatCode.at(1) == QLatin1Char('b') && (mNumberFormatChar == QLatin1Char('e') || mNumberFormatChar == QLatin1Char('g'))) + { + mNumberBeautifulPowers = true; + } else + { + qDebug() << Q_FUNC_INFO << "Invalid number format code (second char not 'b' or first char neither 'e' nor 'g'):" << formatCode; + return; + } + if (formatCode.length() < 3) + { + mAxisPainter->numberMultiplyCross = false; + return; + } + + // interpret third char as indicator for dot or cross multiplication symbol: + if (formatCode.at(2) == QLatin1Char('c')) + { + mAxisPainter->numberMultiplyCross = true; + } else if (formatCode.at(2) == QLatin1Char('d')) + { + mAxisPainter->numberMultiplyCross = false; + } else + { + qDebug() << Q_FUNC_INFO << "Invalid number format code (third char neither 'c' nor 'd'):" << formatCode; + return; + } +} + +/*! + Sets the precision of the tick label numbers. See QLocale::toString(double i, char f, int prec) + for details. The effect of precisions are most notably for number Formats starting with 'e', see + \ref setNumberFormat +*/ +void QCPAxis::setNumberPrecision(int precision) +{ + if (mNumberPrecision != precision) + { + mNumberPrecision = precision; + mCachedMarginValid = false; + } +} + +/*! + Sets the length of the ticks in pixels. \a inside is the length the ticks will reach inside the + plot and \a outside is the length they will reach outside the plot. If \a outside is greater than + zero, the tick labels and axis label will increase their distance to the axis accordingly, so + they won't collide with the ticks. + + \see setSubTickLength, setTickLengthIn, setTickLengthOut +*/ +void QCPAxis::setTickLength(int inside, int outside) +{ + setTickLengthIn(inside); + setTickLengthOut(outside); +} + +/*! + Sets the length of the inward ticks in pixels. \a inside is the length the ticks will reach + inside the plot. + + \see setTickLengthOut, setTickLength, setSubTickLength +*/ +void QCPAxis::setTickLengthIn(int inside) +{ + if (mAxisPainter->tickLengthIn != inside) + { + mAxisPainter->tickLengthIn = inside; + } +} + +/*! + Sets the length of the outward ticks in pixels. \a outside is the length the ticks will reach + outside the plot. If \a outside is greater than zero, the tick labels and axis label will + increase their distance to the axis accordingly, so they won't collide with the ticks. + + \see setTickLengthIn, setTickLength, setSubTickLength +*/ +void QCPAxis::setTickLengthOut(int outside) +{ + if (mAxisPainter->tickLengthOut != outside) + { + mAxisPainter->tickLengthOut = outside; + mCachedMarginValid = false; // only outside tick length can change margin + } +} + +/*! + Sets whether sub tick marks are displayed. + + Sub ticks are only potentially visible if (major) ticks are also visible (see \ref setTicks) + + \see setTicks +*/ +void QCPAxis::setSubTicks(bool show) +{ + if (mSubTicks != show) + { + mSubTicks = show; + mCachedMarginValid = false; + } +} + +/*! + Sets the length of the subticks in pixels. \a inside is the length the subticks will reach inside + the plot and \a outside is the length they will reach outside the plot. If \a outside is greater + than zero, the tick labels and axis label will increase their distance to the axis accordingly, + so they won't collide with the ticks. + + \see setTickLength, setSubTickLengthIn, setSubTickLengthOut +*/ +void QCPAxis::setSubTickLength(int inside, int outside) +{ + setSubTickLengthIn(inside); + setSubTickLengthOut(outside); +} + +/*! + Sets the length of the inward subticks in pixels. \a inside is the length the subticks will reach inside + the plot. + + \see setSubTickLengthOut, setSubTickLength, setTickLength +*/ +void QCPAxis::setSubTickLengthIn(int inside) +{ + if (mAxisPainter->subTickLengthIn != inside) + { + mAxisPainter->subTickLengthIn = inside; + } +} + +/*! + Sets the length of the outward subticks in pixels. \a outside is the length the subticks will reach + outside the plot. If \a outside is greater than zero, the tick labels will increase their + distance to the axis accordingly, so they won't collide with the ticks. + + \see setSubTickLengthIn, setSubTickLength, setTickLength +*/ +void QCPAxis::setSubTickLengthOut(int outside) +{ + if (mAxisPainter->subTickLengthOut != outside) + { + mAxisPainter->subTickLengthOut = outside; + mCachedMarginValid = false; // only outside tick length can change margin + } +} + +/*! + Sets the pen, the axis base line is drawn with. + + \see setTickPen, setSubTickPen +*/ +void QCPAxis::setBasePen(const QPen &pen) +{ + mBasePen = pen; +} + +/*! + Sets the pen, tick marks will be drawn with. + + \see setTickLength, setBasePen +*/ +void QCPAxis::setTickPen(const QPen &pen) +{ + mTickPen = pen; +} + +/*! + Sets the pen, subtick marks will be drawn with. + + \see setSubTickCount, setSubTickLength, setBasePen +*/ +void QCPAxis::setSubTickPen(const QPen &pen) +{ + mSubTickPen = pen; +} + +/*! + Sets the font of the axis label. + + \see setLabelColor +*/ +void QCPAxis::setLabelFont(const QFont &font) +{ + if (mLabelFont != font) + { + mLabelFont = font; + mCachedMarginValid = false; + } +} + +/*! + Sets the color of the axis label. + + \see setLabelFont +*/ +void QCPAxis::setLabelColor(const QColor &color) +{ + mLabelColor = color; +} + +/*! + Sets the text of the axis label that will be shown below/above or next to the axis, depending on + its orientation. To disable axis labels, pass an empty string as \a str. +*/ +void QCPAxis::setLabel(const QString &str) +{ + if (mLabel != str) + { + mLabel = str; + mCachedMarginValid = false; + } +} + +/*! + Sets the distance between the tick labels and the axis label. + + \see setTickLabelPadding, setPadding +*/ +void QCPAxis::setLabelPadding(int padding) +{ + if (mAxisPainter->labelPadding != padding) + { + mAxisPainter->labelPadding = padding; + mCachedMarginValid = false; + } +} + +/*! + Sets the padding of the axis. + + When \ref QCPAxisRect::setAutoMargins is enabled, the padding is the additional outer most space, + that is left blank. + + The axis padding has no meaning if \ref QCPAxisRect::setAutoMargins is disabled. + + \see setLabelPadding, setTickLabelPadding +*/ +void QCPAxis::setPadding(int padding) +{ + if (mPadding != padding) + { + mPadding = padding; + mCachedMarginValid = false; + } +} + +/*! + Sets the offset the axis has to its axis rect side. + + If an axis rect side has multiple axes and automatic margin calculation is enabled for that side, + only the offset of the inner most axis has meaning (even if it is set to be invisible). The + offset of the other, outer axes is controlled automatically, to place them at appropriate + positions. +*/ +void QCPAxis::setOffset(int offset) +{ + mAxisPainter->offset = offset; +} + +/*! + Sets the font that is used for tick labels when they are selected. + + \see setTickLabelFont, setSelectableParts, setSelectedParts, QCustomPlot::setInteractions +*/ +void QCPAxis::setSelectedTickLabelFont(const QFont &font) +{ + if (font != mSelectedTickLabelFont) + { + mSelectedTickLabelFont = font; + // don't set mCachedMarginValid to false here because margin calculation is always done with non-selected fonts + } +} + +/*! + Sets the font that is used for the axis label when it is selected. + + \see setLabelFont, setSelectableParts, setSelectedParts, QCustomPlot::setInteractions +*/ +void QCPAxis::setSelectedLabelFont(const QFont &font) +{ + mSelectedLabelFont = font; + // don't set mCachedMarginValid to false here because margin calculation is always done with non-selected fonts +} + +/*! + Sets the color that is used for tick labels when they are selected. + + \see setTickLabelColor, setSelectableParts, setSelectedParts, QCustomPlot::setInteractions +*/ +void QCPAxis::setSelectedTickLabelColor(const QColor &color) +{ + if (color != mSelectedTickLabelColor) + { + mSelectedTickLabelColor = color; + } +} + +/*! + Sets the color that is used for the axis label when it is selected. + + \see setLabelColor, setSelectableParts, setSelectedParts, QCustomPlot::setInteractions +*/ +void QCPAxis::setSelectedLabelColor(const QColor &color) +{ + mSelectedLabelColor = color; +} + +/*! + Sets the pen that is used to draw the axis base line when selected. + + \see setBasePen, setSelectableParts, setSelectedParts, QCustomPlot::setInteractions +*/ +void QCPAxis::setSelectedBasePen(const QPen &pen) +{ + mSelectedBasePen = pen; +} + +/*! + Sets the pen that is used to draw the (major) ticks when selected. + + \see setTickPen, setSelectableParts, setSelectedParts, QCustomPlot::setInteractions +*/ +void QCPAxis::setSelectedTickPen(const QPen &pen) +{ + mSelectedTickPen = pen; +} + +/*! + Sets the pen that is used to draw the subticks when selected. + + \see setSubTickPen, setSelectableParts, setSelectedParts, QCustomPlot::setInteractions +*/ +void QCPAxis::setSelectedSubTickPen(const QPen &pen) +{ + mSelectedSubTickPen = pen; +} + +/*! + Sets the style for the lower axis ending. See the documentation of QCPLineEnding for available + styles. + + For horizontal axes, this method refers to the left ending, for vertical axes the bottom ending. + Note that this meaning does not change when the axis range is reversed with \ref + setRangeReversed. + + \see setUpperEnding +*/ +void QCPAxis::setLowerEnding(const QCPLineEnding &ending) +{ + mAxisPainter->lowerEnding = ending; +} + +/*! + Sets the style for the upper axis ending. See the documentation of QCPLineEnding for available + styles. + + For horizontal axes, this method refers to the right ending, for vertical axes the top ending. + Note that this meaning does not change when the axis range is reversed with \ref + setRangeReversed. + + \see setLowerEnding +*/ +void QCPAxis::setUpperEnding(const QCPLineEnding &ending) +{ + mAxisPainter->upperEnding = ending; +} + +/*! + If the scale type (\ref setScaleType) is \ref stLinear, \a diff is added to the lower and upper + bounds of the range. The range is simply moved by \a diff. + + If the scale type is \ref stLogarithmic, the range bounds are multiplied by \a diff. This + corresponds to an apparent "linear" move in logarithmic scaling by a distance of log(diff). +*/ +void QCPAxis::moveRange(double diff) +{ + QCPRange oldRange = mRange; + if (mScaleType == stLinear) + { + mRange.lower += diff; + mRange.upper += diff; + } else // mScaleType == stLogarithmic + { + mRange.lower *= diff; + mRange.upper *= diff; + } + emit rangeChanged(mRange); + emit rangeChanged(mRange, oldRange); +} + +/*! + Scales the range of this axis by \a factor around the center of the current axis range. For + example, if \a factor is 2.0, then the axis range will double its size, and the point at the axis + range center won't have changed its position in the QCustomPlot widget (i.e. coordinates around + the center will have moved symmetrically closer). + + If you wish to scale around a different coordinate than the current axis range center, use the + overload \ref scaleRange(double factor, double center). +*/ +void QCPAxis::scaleRange(double factor) +{ + scaleRange(factor, range().center()); +} + +/*! \overload + + Scales the range of this axis by \a factor around the coordinate \a center. For example, if \a + factor is 2.0, \a center is 1.0, then the axis range will double its size, and the point at + coordinate 1.0 won't have changed its position in the QCustomPlot widget (i.e. coordinates + around 1.0 will have moved symmetrically closer to 1.0). + + \see scaleRange(double factor) +*/ +void QCPAxis::scaleRange(double factor, double center) +{ + QCPRange oldRange = mRange; + if (mScaleType == stLinear) + { + QCPRange newRange; + newRange.lower = (mRange.lower-center)*factor + center; + newRange.upper = (mRange.upper-center)*factor + center; + if (QCPRange::validRange(newRange)) + mRange = newRange.sanitizedForLinScale(); + } else // mScaleType == stLogarithmic + { + if ((mRange.upper < 0 && center < 0) || (mRange.upper > 0 && center > 0)) // make sure center has same sign as range + { + QCPRange newRange; + newRange.lower = qPow(mRange.lower/center, factor)*center; + newRange.upper = qPow(mRange.upper/center, factor)*center; + if (QCPRange::validRange(newRange)) + mRange = newRange.sanitizedForLogScale(); + } else + qDebug() << Q_FUNC_INFO << "Center of scaling operation doesn't lie in same logarithmic sign domain as range:" << center; + } + emit rangeChanged(mRange); + emit rangeChanged(mRange, oldRange); +} + +/*! + Scales the range of this axis to have a certain scale \a ratio to \a otherAxis. The scaling will + be done around the center of the current axis range. + + For example, if \a ratio is 1, this axis is the \a yAxis and \a otherAxis is \a xAxis, graphs + plotted with those axes will appear in a 1:1 aspect ratio, independent of the aspect ratio the + axis rect has. + + This is an operation that changes the range of this axis once, it doesn't fix the scale ratio + indefinitely. Note that calling this function in the constructor of the QCustomPlot's parent + won't have the desired effect, since the widget dimensions aren't defined yet, and a resizeEvent + will follow. +*/ +void QCPAxis::setScaleRatio(const QCPAxis *otherAxis, double ratio) +{ + int otherPixelSize, ownPixelSize; + + if (otherAxis->orientation() == Qt::Horizontal) + otherPixelSize = otherAxis->axisRect()->width(); + else + otherPixelSize = otherAxis->axisRect()->height(); + + if (orientation() == Qt::Horizontal) + ownPixelSize = axisRect()->width(); + else + ownPixelSize = axisRect()->height(); + + double newRangeSize = ratio*otherAxis->range().size()*ownPixelSize/(double)otherPixelSize; + setRange(range().center(), newRangeSize, Qt::AlignCenter); +} + +/*! + Changes the axis range such that all plottables associated with this axis are fully visible in + that dimension. + + \see QCPAbstractPlottable::rescaleAxes, QCustomPlot::rescaleAxes +*/ +void QCPAxis::rescale(bool onlyVisiblePlottables) +{ + QList p = plottables(); + QCPRange newRange; + bool haveRange = false; + for (int i=0; irealVisibility() && onlyVisiblePlottables) + continue; + QCPRange plottableRange; + bool currentFoundRange; + QCP::SignDomain signDomain = QCP::sdBoth; + if (mScaleType == stLogarithmic) + signDomain = (mRange.upper < 0 ? QCP::sdNegative : QCP::sdPositive); + if (p.at(i)->keyAxis() == this) + plottableRange = p.at(i)->getKeyRange(currentFoundRange, signDomain); + else + plottableRange = p.at(i)->getValueRange(currentFoundRange, signDomain); + if (currentFoundRange) + { + if (!haveRange) + newRange = plottableRange; + else + newRange.expand(plottableRange); + haveRange = true; + } + } + if (haveRange) + { + if (!QCPRange::validRange(newRange)) // likely due to range being zero (plottable has only constant data in this axis dimension), shift current range to at least center the plottable + { + double center = (newRange.lower+newRange.upper)*0.5; // upper and lower should be equal anyway, but just to make sure, incase validRange returned false for other reason + if (mScaleType == stLinear) + { + newRange.lower = center-mRange.size()/2.0; + newRange.upper = center+mRange.size()/2.0; + } else // mScaleType == stLogarithmic + { + newRange.lower = center/qSqrt(mRange.upper/mRange.lower); + newRange.upper = center*qSqrt(mRange.upper/mRange.lower); + } + } + setRange(newRange); + } +} + +/*! + Transforms \a value, in pixel coordinates of the QCustomPlot widget, to axis coordinates. +*/ +double QCPAxis::pixelToCoord(double value) const +{ + if (orientation() == Qt::Horizontal) + { + if (mScaleType == stLinear) + { + if (!mRangeReversed) + return (value-mAxisRect->left())/(double)mAxisRect->width()*mRange.size()+mRange.lower; + else + return -(value-mAxisRect->left())/(double)mAxisRect->width()*mRange.size()+mRange.upper; + } else // mScaleType == stLogarithmic + { + if (!mRangeReversed) + return qPow(mRange.upper/mRange.lower, (value-mAxisRect->left())/(double)mAxisRect->width())*mRange.lower; + else + return qPow(mRange.upper/mRange.lower, (mAxisRect->left()-value)/(double)mAxisRect->width())*mRange.upper; + } + } else // orientation() == Qt::Vertical + { + if (mScaleType == stLinear) + { + if (!mRangeReversed) + return (mAxisRect->bottom()-value)/(double)mAxisRect->height()*mRange.size()+mRange.lower; + else + return -(mAxisRect->bottom()-value)/(double)mAxisRect->height()*mRange.size()+mRange.upper; + } else // mScaleType == stLogarithmic + { + if (!mRangeReversed) + return qPow(mRange.upper/mRange.lower, (mAxisRect->bottom()-value)/(double)mAxisRect->height())*mRange.lower; + else + return qPow(mRange.upper/mRange.lower, (value-mAxisRect->bottom())/(double)mAxisRect->height())*mRange.upper; + } + } +} + +/*! + Transforms \a value, in coordinates of the axis, to pixel coordinates of the QCustomPlot widget. +*/ +double QCPAxis::coordToPixel(double value) const +{ + if (orientation() == Qt::Horizontal) + { + if (mScaleType == stLinear) + { + if (!mRangeReversed) + return (value-mRange.lower)/mRange.size()*mAxisRect->width()+mAxisRect->left(); + else + return (mRange.upper-value)/mRange.size()*mAxisRect->width()+mAxisRect->left(); + } else // mScaleType == stLogarithmic + { + if (value >= 0.0 && mRange.upper < 0.0) // invalid value for logarithmic scale, just draw it outside visible range + return !mRangeReversed ? mAxisRect->right()+200 : mAxisRect->left()-200; + else if (value <= 0.0 && mRange.upper >= 0.0) // invalid value for logarithmic scale, just draw it outside visible range + return !mRangeReversed ? mAxisRect->left()-200 : mAxisRect->right()+200; + else + { + if (!mRangeReversed) + return qLn(value/mRange.lower)/qLn(mRange.upper/mRange.lower)*mAxisRect->width()+mAxisRect->left(); + else + return qLn(mRange.upper/value)/qLn(mRange.upper/mRange.lower)*mAxisRect->width()+mAxisRect->left(); + } + } + } else // orientation() == Qt::Vertical + { + if (mScaleType == stLinear) + { + if (!mRangeReversed) + return mAxisRect->bottom()-(value-mRange.lower)/mRange.size()*mAxisRect->height(); + else + return mAxisRect->bottom()-(mRange.upper-value)/mRange.size()*mAxisRect->height(); + } else // mScaleType == stLogarithmic + { + if (value >= 0.0 && mRange.upper < 0.0) // invalid value for logarithmic scale, just draw it outside visible range + return !mRangeReversed ? mAxisRect->top()-200 : mAxisRect->bottom()+200; + else if (value <= 0.0 && mRange.upper >= 0.0) // invalid value for logarithmic scale, just draw it outside visible range + return !mRangeReversed ? mAxisRect->bottom()+200 : mAxisRect->top()-200; + else + { + if (!mRangeReversed) + return mAxisRect->bottom()-qLn(value/mRange.lower)/qLn(mRange.upper/mRange.lower)*mAxisRect->height(); + else + return mAxisRect->bottom()-qLn(mRange.upper/value)/qLn(mRange.upper/mRange.lower)*mAxisRect->height(); + } + } + } +} + +/*! + Returns the part of the axis that is hit by \a pos (in pixels). The return value of this function + is independent of the user-selectable parts defined with \ref setSelectableParts. Further, this + function does not change the current selection state of the axis. + + If the axis is not visible (\ref setVisible), this function always returns \ref spNone. + + \see setSelectedParts, setSelectableParts, QCustomPlot::setInteractions +*/ +QCPAxis::SelectablePart QCPAxis::getPartAt(const QPointF &pos) const +{ + if (!mVisible) + return spNone; + + if (mAxisPainter->axisSelectionBox().contains(pos.toPoint())) + return spAxis; + else if (mAxisPainter->tickLabelsSelectionBox().contains(pos.toPoint())) + return spTickLabels; + else if (mAxisPainter->labelSelectionBox().contains(pos.toPoint())) + return spAxisLabel; + else + return spNone; +} + +/* inherits documentation from base class */ +double QCPAxis::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + if (!mParentPlot) return -1; + SelectablePart part = getPartAt(pos); + if ((onlySelectable && !mSelectableParts.testFlag(part)) || part == spNone) + return -1; + + if (details) + details->setValue(part); + return mParentPlot->selectionTolerance()*0.99; +} + +/*! + Returns a list of all the plottables that have this axis as key or value axis. + + If you are only interested in plottables of type QCPGraph, see \ref graphs. + + \see graphs, items +*/ +QList QCPAxis::plottables() const +{ + QList result; + if (!mParentPlot) return result; + + for (int i=0; imPlottables.size(); ++i) + { + if (mParentPlot->mPlottables.at(i)->keyAxis() == this ||mParentPlot->mPlottables.at(i)->valueAxis() == this) + result.append(mParentPlot->mPlottables.at(i)); + } + return result; +} + +/*! + Returns a list of all the graphs that have this axis as key or value axis. + + \see plottables, items +*/ +QList QCPAxis::graphs() const +{ + QList result; + if (!mParentPlot) return result; + + for (int i=0; imGraphs.size(); ++i) + { + if (mParentPlot->mGraphs.at(i)->keyAxis() == this || mParentPlot->mGraphs.at(i)->valueAxis() == this) + result.append(mParentPlot->mGraphs.at(i)); + } + return result; +} + +/*! + Returns a list of all the items that are associated with this axis. An item is considered + associated with an axis if at least one of its positions uses the axis as key or value axis. + + \see plottables, graphs +*/ +QList QCPAxis::items() const +{ + QList result; + if (!mParentPlot) return result; + + for (int itemId=0; itemIdmItems.size(); ++itemId) + { + QList positions = mParentPlot->mItems.at(itemId)->positions(); + for (int posId=0; posIdkeyAxis() == this || positions.at(posId)->valueAxis() == this) + { + result.append(mParentPlot->mItems.at(itemId)); + break; + } + } + } + return result; +} + +/*! + Transforms a margin side to the logically corresponding axis type. (QCP::msLeft to + QCPAxis::atLeft, QCP::msRight to QCPAxis::atRight, etc.) +*/ +QCPAxis::AxisType QCPAxis::marginSideToAxisType(QCP::MarginSide side) +{ + switch (side) + { + case QCP::msLeft: return atLeft; + case QCP::msRight: return atRight; + case QCP::msTop: return atTop; + case QCP::msBottom: return atBottom; + default: break; + } + qDebug() << Q_FUNC_INFO << "Invalid margin side passed:" << (int)side; + return atLeft; +} + +/*! + Returns the axis type that describes the opposite axis of an axis with the specified \a type. +*/ +QCPAxis::AxisType QCPAxis::opposite(QCPAxis::AxisType type) +{ + switch (type) + { + case atLeft: return atRight; break; + case atRight: return atLeft; break; + case atBottom: return atTop; break; + case atTop: return atBottom; break; + default: qDebug() << Q_FUNC_INFO << "invalid axis type"; return atLeft; break; + } +} + +/* inherits documentation from base class */ +void QCPAxis::selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) +{ + Q_UNUSED(event) + SelectablePart part = details.value(); + if (mSelectableParts.testFlag(part)) + { + SelectableParts selBefore = mSelectedParts; + setSelectedParts(additive ? mSelectedParts^part : part); + if (selectionStateChanged) + *selectionStateChanged = mSelectedParts != selBefore; + } +} + +/* inherits documentation from base class */ +void QCPAxis::deselectEvent(bool *selectionStateChanged) +{ + SelectableParts selBefore = mSelectedParts; + setSelectedParts(mSelectedParts & ~mSelectableParts); + if (selectionStateChanged) + *selectionStateChanged = mSelectedParts != selBefore; +} + +/*! \internal + + This mouse event reimplementation provides the functionality to let the user drag individual axes + exclusively, by startig the drag on top of the axis. + + For the axis to accept this event and perform the single axis drag, the parent \ref QCPAxisRect + must be configured accordingly, i.e. it must allow range dragging in the orientation of this axis + (\ref QCPAxisRect::setRangeDrag) and this axis must be a draggable axis (\ref + QCPAxisRect::setRangeDragAxes) + + \seebaseclassmethod + + \note The dragging of possibly multiple axes at once by starting the drag anywhere in the axis + rect is handled by the axis rect's mouse event, e.g. \ref QCPAxisRect::mousePressEvent. +*/ +void QCPAxis::mousePressEvent(QMouseEvent *event, const QVariant &details) +{ + Q_UNUSED(details) + if (!mParentPlot->interactions().testFlag(QCP::iRangeDrag) || + !mAxisRect->rangeDrag().testFlag(orientation()) || + !mAxisRect->rangeDragAxes(orientation()).contains(this)) + { + event->ignore(); + return; + } + + if (event->buttons() & Qt::LeftButton) + { + mDragging = true; + // initialize antialiasing backup in case we start dragging: + if (mParentPlot->noAntialiasingOnDrag()) + { + mAADragBackup = mParentPlot->antialiasedElements(); + mNotAADragBackup = mParentPlot->notAntialiasedElements(); + } + // Mouse range dragging interaction: + if (mParentPlot->interactions().testFlag(QCP::iRangeDrag)) + mDragStartRange = mRange; + } +} + +/*! \internal + + This mouse event reimplementation provides the functionality to let the user drag individual axes + exclusively, by startig the drag on top of the axis. + + \seebaseclassmethod + + \note The dragging of possibly multiple axes at once by starting the drag anywhere in the axis + rect is handled by the axis rect's mouse event, e.g. \ref QCPAxisRect::mousePressEvent. + + \see QCPAxis::mousePressEvent +*/ +void QCPAxis::mouseMoveEvent(QMouseEvent *event, const QPointF &startPos) +{ + if (mDragging) + { + const double startPixel = orientation() == Qt::Horizontal ? startPos.x() : startPos.y(); + const double currentPixel = orientation() == Qt::Horizontal ? event->pos().x() : event->pos().y(); + if (mScaleType == QCPAxis::stLinear) + { + const double diff = pixelToCoord(startPixel) - pixelToCoord(currentPixel); + setRange(mDragStartRange.lower+diff, mDragStartRange.upper+diff); + } else if (mScaleType == QCPAxis::stLogarithmic) + { + const double diff = pixelToCoord(startPixel) / pixelToCoord(currentPixel); + setRange(mDragStartRange.lower*diff, mDragStartRange.upper*diff); + } + + if (mParentPlot->noAntialiasingOnDrag()) + mParentPlot->setNotAntialiasedElements(QCP::aeAll); + mParentPlot->replot(QCustomPlot::rpQueuedReplot); + } +} + +/*! \internal + + This mouse event reimplementation provides the functionality to let the user drag individual axes + exclusively, by startig the drag on top of the axis. + + \seebaseclassmethod + + \note The dragging of possibly multiple axes at once by starting the drag anywhere in the axis + rect is handled by the axis rect's mouse event, e.g. \ref QCPAxisRect::mousePressEvent. + + \see QCPAxis::mousePressEvent +*/ +void QCPAxis::mouseReleaseEvent(QMouseEvent *event, const QPointF &startPos) +{ + Q_UNUSED(event) + Q_UNUSED(startPos) + mDragging = false; + if (mParentPlot->noAntialiasingOnDrag()) + { + mParentPlot->setAntialiasedElements(mAADragBackup); + mParentPlot->setNotAntialiasedElements(mNotAADragBackup); + } +} + +/*! \internal + + This mouse event reimplementation provides the functionality to let the user zoom individual axes + exclusively, by performing the wheel event on top of the axis. + + For the axis to accept this event and perform the single axis zoom, the parent \ref QCPAxisRect + must be configured accordingly, i.e. it must allow range zooming in the orientation of this axis + (\ref QCPAxisRect::setRangeZoom) and this axis must be a zoomable axis (\ref + QCPAxisRect::setRangeZoomAxes) + + \seebaseclassmethod + + \note The zooming of possibly multiple axes at once by performing the wheel event anywhere in the + axis rect is handled by the axis rect's mouse event, e.g. \ref QCPAxisRect::wheelEvent. +*/ +void QCPAxis::wheelEvent(QWheelEvent *event) +{ + // Mouse range zooming interaction: + if (!mParentPlot->interactions().testFlag(QCP::iRangeZoom) || + !mAxisRect->rangeZoom().testFlag(orientation()) || + !mAxisRect->rangeZoomAxes(orientation()).contains(this)) + { + event->ignore(); + return; + } + + const double wheelSteps = event->delta()/120.0; // a single step delta is +/-120 usually + const double factor = qPow(mAxisRect->rangeZoomFactor(orientation()), wheelSteps); + scaleRange(factor, pixelToCoord(orientation() == Qt::Horizontal ? event->pos().x() : event->pos().y())); + mParentPlot->replot(); +} + +/*! \internal + + A convenience function to easily set the QPainter::Antialiased hint on the provided \a painter + before drawing axis lines. + + This is the antialiasing state the painter passed to the \ref draw method is in by default. + + This function takes into account the local setting of the antialiasing flag as well as the + overrides set with \ref QCustomPlot::setAntialiasedElements and \ref + QCustomPlot::setNotAntialiasedElements. + + \seebaseclassmethod + + \see setAntialiased +*/ +void QCPAxis::applyDefaultAntialiasingHint(QCPPainter *painter) const +{ + applyAntialiasingHint(painter, mAntialiased, QCP::aeAxes); +} + +/*! \internal + + Draws the axis with the specified \a painter, using the internal QCPAxisPainterPrivate instance. + + \seebaseclassmethod +*/ +void QCPAxis::draw(QCPPainter *painter) +{ + QVector subTickPositions; // the final coordToPixel transformed vector passed to QCPAxisPainter + QVector tickPositions; // the final coordToPixel transformed vector passed to QCPAxisPainter + QVector tickLabels; // the final vector passed to QCPAxisPainter + tickPositions.reserve(mTickVector.size()); + tickLabels.reserve(mTickVector.size()); + subTickPositions.reserve(mSubTickVector.size()); + + if (mTicks) + { + for (int i=0; itype = mAxisType; + mAxisPainter->basePen = getBasePen(); + mAxisPainter->labelFont = getLabelFont(); + mAxisPainter->labelColor = getLabelColor(); + mAxisPainter->label = mLabel; + mAxisPainter->substituteExponent = mNumberBeautifulPowers; + mAxisPainter->tickPen = getTickPen(); + mAxisPainter->subTickPen = getSubTickPen(); + mAxisPainter->tickLabelFont = getTickLabelFont(); + mAxisPainter->tickLabelColor = getTickLabelColor(); + mAxisPainter->axisRect = mAxisRect->rect(); + mAxisPainter->viewportRect = mParentPlot->viewport(); + mAxisPainter->abbreviateDecimalPowers = mScaleType == stLogarithmic; + mAxisPainter->reversedEndings = mRangeReversed; + mAxisPainter->tickPositions = tickPositions; + mAxisPainter->tickLabels = tickLabels; + mAxisPainter->subTickPositions = subTickPositions; + mAxisPainter->draw(painter); +} + +/*! \internal + + Prepares the internal tick vector, sub tick vector and tick label vector. This is done by calling + QCPAxisTicker::generate on the currently installed ticker. + + If a change in the label text/count is detected, the cached axis margin is invalidated to make + sure the next margin calculation recalculates the label sizes and returns an up-to-date value. +*/ +void QCPAxis::setupTickVectors() +{ + if (!mParentPlot) return; + if ((!mTicks && !mTickLabels && !mGrid->visible()) || mRange.size() <= 0) return; + + QVector oldLabels = mTickVectorLabels; + mTicker->generate(mRange, mParentPlot->locale(), mNumberFormatChar, mNumberPrecision, mTickVector, mSubTicks ? &mSubTickVector : 0, mTickLabels ? &mTickVectorLabels : 0); + mCachedMarginValid &= mTickVectorLabels == oldLabels; // if labels have changed, margin might have changed, too +} + +/*! \internal + + Returns the pen that is used to draw the axis base line. Depending on the selection state, this + is either mSelectedBasePen or mBasePen. +*/ +QPen QCPAxis::getBasePen() const +{ + return mSelectedParts.testFlag(spAxis) ? mSelectedBasePen : mBasePen; +} + +/*! \internal + + Returns the pen that is used to draw the (major) ticks. Depending on the selection state, this + is either mSelectedTickPen or mTickPen. +*/ +QPen QCPAxis::getTickPen() const +{ + return mSelectedParts.testFlag(spAxis) ? mSelectedTickPen : mTickPen; +} + +/*! \internal + + Returns the pen that is used to draw the subticks. Depending on the selection state, this + is either mSelectedSubTickPen or mSubTickPen. +*/ +QPen QCPAxis::getSubTickPen() const +{ + return mSelectedParts.testFlag(spAxis) ? mSelectedSubTickPen : mSubTickPen; +} + +/*! \internal + + Returns the font that is used to draw the tick labels. Depending on the selection state, this + is either mSelectedTickLabelFont or mTickLabelFont. +*/ +QFont QCPAxis::getTickLabelFont() const +{ + return mSelectedParts.testFlag(spTickLabels) ? mSelectedTickLabelFont : mTickLabelFont; +} + +/*! \internal + + Returns the font that is used to draw the axis label. Depending on the selection state, this + is either mSelectedLabelFont or mLabelFont. +*/ +QFont QCPAxis::getLabelFont() const +{ + return mSelectedParts.testFlag(spAxisLabel) ? mSelectedLabelFont : mLabelFont; +} + +/*! \internal + + Returns the color that is used to draw the tick labels. Depending on the selection state, this + is either mSelectedTickLabelColor or mTickLabelColor. +*/ +QColor QCPAxis::getTickLabelColor() const +{ + return mSelectedParts.testFlag(spTickLabels) ? mSelectedTickLabelColor : mTickLabelColor; +} + +/*! \internal + + Returns the color that is used to draw the axis label. Depending on the selection state, this + is either mSelectedLabelColor or mLabelColor. +*/ +QColor QCPAxis::getLabelColor() const +{ + return mSelectedParts.testFlag(spAxisLabel) ? mSelectedLabelColor : mLabelColor; +} + +/*! \internal + + Returns the appropriate outward margin for this axis. It is needed if \ref + QCPAxisRect::setAutoMargins is set to true on the parent axis rect. An axis with axis type \ref + atLeft will return an appropriate left margin, \ref atBottom will return an appropriate bottom + margin and so forth. For the calculation, this function goes through similar steps as \ref draw, + so changing one function likely requires the modification of the other one as well. + + The margin consists of the outward tick length, tick label padding, tick label size, label + padding, label size, and padding. + + The margin is cached internally, so repeated calls while leaving the axis range, fonts, etc. + unchanged are very fast. +*/ +int QCPAxis::calculateMargin() +{ + if (!mVisible) // if not visible, directly return 0, don't cache 0 because we can't react to setVisible in QCPAxis + return 0; + + if (mCachedMarginValid) + return mCachedMargin; + + // run through similar steps as QCPAxis::draw, and calculate margin needed to fit axis and its labels + int margin = 0; + + QVector tickPositions; // the final coordToPixel transformed vector passed to QCPAxisPainter + QVector tickLabels; // the final vector passed to QCPAxisPainter + tickPositions.reserve(mTickVector.size()); + tickLabels.reserve(mTickVector.size()); + + if (mTicks) + { + for (int i=0; itype = mAxisType; + mAxisPainter->labelFont = getLabelFont(); + mAxisPainter->label = mLabel; + mAxisPainter->tickLabelFont = mTickLabelFont; + mAxisPainter->axisRect = mAxisRect->rect(); + mAxisPainter->viewportRect = mParentPlot->viewport(); + mAxisPainter->tickPositions = tickPositions; + mAxisPainter->tickLabels = tickLabels; + margin += mAxisPainter->size(); + margin += mPadding; + + mCachedMargin = margin; + mCachedMarginValid = true; + return margin; +} + +/* inherits documentation from base class */ +QCP::Interaction QCPAxis::selectionCategory() const +{ + return QCP::iSelectAxes; +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPAxisPainterPrivate +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPAxisPainterPrivate + + \internal + \brief (Private) + + This is a private class and not part of the public QCustomPlot interface. + + It is used by QCPAxis to do the low-level drawing of axis backbone, tick marks, tick labels and + axis label. It also buffers the labels to reduce replot times. The parameters are configured by + directly accessing the public member variables. +*/ + +/*! + Constructs a QCPAxisPainterPrivate instance. Make sure to not create a new instance on every + redraw, to utilize the caching mechanisms. +*/ +QCPAxisPainterPrivate::QCPAxisPainterPrivate(QCustomPlot *parentPlot) : + type(QCPAxis::atLeft), + basePen(QPen(Qt::black, 0, Qt::SolidLine, Qt::SquareCap)), + lowerEnding(QCPLineEnding::esNone), + upperEnding(QCPLineEnding::esNone), + labelPadding(0), + tickLabelPadding(0), + tickLabelRotation(0), + tickLabelSide(QCPAxis::lsOutside), + substituteExponent(true), + numberMultiplyCross(false), + tickLengthIn(5), + tickLengthOut(0), + subTickLengthIn(2), + subTickLengthOut(0), + tickPen(QPen(Qt::black, 0, Qt::SolidLine, Qt::SquareCap)), + subTickPen(QPen(Qt::black, 0, Qt::SolidLine, Qt::SquareCap)), + offset(0), + abbreviateDecimalPowers(false), + reversedEndings(false), + mParentPlot(parentPlot), + mLabelCache(16) // cache at most 16 (tick) labels +{ +} + +QCPAxisPainterPrivate::~QCPAxisPainterPrivate() +{ +} + +/*! \internal + + Draws the axis with the specified \a painter. + + The selection boxes (mAxisSelectionBox, mTickLabelsSelectionBox, mLabelSelectionBox) are set + here, too. +*/ +void QCPAxisPainterPrivate::draw(QCPPainter *painter) +{ + QByteArray newHash = generateLabelParameterHash(); + if (newHash != mLabelParameterHash) + { + mLabelCache.clear(); + mLabelParameterHash = newHash; + } + + QPoint origin; + switch (type) + { + case QCPAxis::atLeft: origin = axisRect.bottomLeft() +QPoint(-offset, 0); break; + case QCPAxis::atRight: origin = axisRect.bottomRight()+QPoint(+offset, 0); break; + case QCPAxis::atTop: origin = axisRect.topLeft() +QPoint(0, -offset); break; + case QCPAxis::atBottom: origin = axisRect.bottomLeft() +QPoint(0, +offset); break; + } + + double xCor = 0, yCor = 0; // paint system correction, for pixel exact matches (affects baselines and ticks of top/right axes) + switch (type) + { + case QCPAxis::atTop: yCor = -1; break; + case QCPAxis::atRight: xCor = 1; break; + default: break; + } + int margin = 0; + // draw baseline: + QLineF baseLine; + painter->setPen(basePen); + if (QCPAxis::orientation(type) == Qt::Horizontal) + baseLine.setPoints(origin+QPointF(xCor, yCor), origin+QPointF(axisRect.width()+xCor, yCor)); + else + baseLine.setPoints(origin+QPointF(xCor, yCor), origin+QPointF(xCor, -axisRect.height()+yCor)); + if (reversedEndings) + baseLine = QLineF(baseLine.p2(), baseLine.p1()); // won't make a difference for line itself, but for line endings later + painter->drawLine(baseLine); + + // draw ticks: + if (!tickPositions.isEmpty()) + { + painter->setPen(tickPen); + int tickDir = (type == QCPAxis::atBottom || type == QCPAxis::atRight) ? -1 : 1; // direction of ticks ("inward" is right for left axis and left for right axis) + if (QCPAxis::orientation(type) == Qt::Horizontal) + { + for (int i=0; idrawLine(QLineF(tickPositions.at(i)+xCor, origin.y()-tickLengthOut*tickDir+yCor, tickPositions.at(i)+xCor, origin.y()+tickLengthIn*tickDir+yCor)); + } else + { + for (int i=0; idrawLine(QLineF(origin.x()-tickLengthOut*tickDir+xCor, tickPositions.at(i)+yCor, origin.x()+tickLengthIn*tickDir+xCor, tickPositions.at(i)+yCor)); + } + } + + // draw subticks: + if (!subTickPositions.isEmpty()) + { + painter->setPen(subTickPen); + // direction of ticks ("inward" is right for left axis and left for right axis) + int tickDir = (type == QCPAxis::atBottom || type == QCPAxis::atRight) ? -1 : 1; + if (QCPAxis::orientation(type) == Qt::Horizontal) + { + for (int i=0; idrawLine(QLineF(subTickPositions.at(i)+xCor, origin.y()-subTickLengthOut*tickDir+yCor, subTickPositions.at(i)+xCor, origin.y()+subTickLengthIn*tickDir+yCor)); + } else + { + for (int i=0; idrawLine(QLineF(origin.x()-subTickLengthOut*tickDir+xCor, subTickPositions.at(i)+yCor, origin.x()+subTickLengthIn*tickDir+xCor, subTickPositions.at(i)+yCor)); + } + } + margin += qMax(0, qMax(tickLengthOut, subTickLengthOut)); + + // draw axis base endings: + bool antialiasingBackup = painter->antialiasing(); + painter->setAntialiasing(true); // always want endings to be antialiased, even if base and ticks themselves aren't + painter->setBrush(QBrush(basePen.color())); + QCPVector2D baseLineVector(baseLine.dx(), baseLine.dy()); + if (lowerEnding.style() != QCPLineEnding::esNone) + lowerEnding.draw(painter, QCPVector2D(baseLine.p1())-baseLineVector.normalized()*lowerEnding.realLength()*(lowerEnding.inverted()?-1:1), -baseLineVector); + if (upperEnding.style() != QCPLineEnding::esNone) + upperEnding.draw(painter, QCPVector2D(baseLine.p2())+baseLineVector.normalized()*upperEnding.realLength()*(upperEnding.inverted()?-1:1), baseLineVector); + painter->setAntialiasing(antialiasingBackup); + + // tick labels: + QRect oldClipRect; + if (tickLabelSide == QCPAxis::lsInside) // if using inside labels, clip them to the axis rect + { + oldClipRect = painter->clipRegion().boundingRect(); + painter->setClipRect(axisRect); + } + QSize tickLabelsSize(0, 0); // size of largest tick label, for offset calculation of axis label + if (!tickLabels.isEmpty()) + { + if (tickLabelSide == QCPAxis::lsOutside) + margin += tickLabelPadding; + painter->setFont(tickLabelFont); + painter->setPen(QPen(tickLabelColor)); + const int maxLabelIndex = qMin(tickPositions.size(), tickLabels.size()); + int distanceToAxis = margin; + if (tickLabelSide == QCPAxis::lsInside) + distanceToAxis = -(qMax(tickLengthIn, subTickLengthIn)+tickLabelPadding); + for (int i=0; isetClipRect(oldClipRect); + + // axis label: + QRect labelBounds; + if (!label.isEmpty()) + { + margin += labelPadding; + painter->setFont(labelFont); + painter->setPen(QPen(labelColor)); + labelBounds = painter->fontMetrics().boundingRect(0, 0, 0, 0, Qt::TextDontClip, label); + if (type == QCPAxis::atLeft) + { + QTransform oldTransform = painter->transform(); + painter->translate((origin.x()-margin-labelBounds.height()), origin.y()); + painter->rotate(-90); + painter->drawText(0, 0, axisRect.height(), labelBounds.height(), Qt::TextDontClip | Qt::AlignCenter, label); + painter->setTransform(oldTransform); + } + else if (type == QCPAxis::atRight) + { + QTransform oldTransform = painter->transform(); + painter->translate((origin.x()+margin+labelBounds.height()), origin.y()-axisRect.height()); + painter->rotate(90); + painter->drawText(0, 0, axisRect.height(), labelBounds.height(), Qt::TextDontClip | Qt::AlignCenter, label); + painter->setTransform(oldTransform); + } + else if (type == QCPAxis::atTop) + painter->drawText(origin.x(), origin.y()-margin-labelBounds.height(), axisRect.width(), labelBounds.height(), Qt::TextDontClip | Qt::AlignCenter, label); + else if (type == QCPAxis::atBottom) + painter->drawText(origin.x(), origin.y()+margin, axisRect.width(), labelBounds.height(), Qt::TextDontClip | Qt::AlignCenter, label); + } + + // set selection boxes: + int selectionTolerance = 0; + if (mParentPlot) + selectionTolerance = mParentPlot->selectionTolerance(); + else + qDebug() << Q_FUNC_INFO << "mParentPlot is null"; + int selAxisOutSize = qMax(qMax(tickLengthOut, subTickLengthOut), selectionTolerance); + int selAxisInSize = selectionTolerance; + int selTickLabelSize; + int selTickLabelOffset; + if (tickLabelSide == QCPAxis::lsOutside) + { + selTickLabelSize = (QCPAxis::orientation(type) == Qt::Horizontal ? tickLabelsSize.height() : tickLabelsSize.width()); + selTickLabelOffset = qMax(tickLengthOut, subTickLengthOut)+tickLabelPadding; + } else + { + selTickLabelSize = -(QCPAxis::orientation(type) == Qt::Horizontal ? tickLabelsSize.height() : tickLabelsSize.width()); + selTickLabelOffset = -(qMax(tickLengthIn, subTickLengthIn)+tickLabelPadding); + } + int selLabelSize = labelBounds.height(); + int selLabelOffset = qMax(tickLengthOut, subTickLengthOut)+(!tickLabels.isEmpty() && tickLabelSide == QCPAxis::lsOutside ? tickLabelPadding+selTickLabelSize : 0)+labelPadding; + if (type == QCPAxis::atLeft) + { + mAxisSelectionBox.setCoords(origin.x()-selAxisOutSize, axisRect.top(), origin.x()+selAxisInSize, axisRect.bottom()); + mTickLabelsSelectionBox.setCoords(origin.x()-selTickLabelOffset-selTickLabelSize, axisRect.top(), origin.x()-selTickLabelOffset, axisRect.bottom()); + mLabelSelectionBox.setCoords(origin.x()-selLabelOffset-selLabelSize, axisRect.top(), origin.x()-selLabelOffset, axisRect.bottom()); + } else if (type == QCPAxis::atRight) + { + mAxisSelectionBox.setCoords(origin.x()-selAxisInSize, axisRect.top(), origin.x()+selAxisOutSize, axisRect.bottom()); + mTickLabelsSelectionBox.setCoords(origin.x()+selTickLabelOffset+selTickLabelSize, axisRect.top(), origin.x()+selTickLabelOffset, axisRect.bottom()); + mLabelSelectionBox.setCoords(origin.x()+selLabelOffset+selLabelSize, axisRect.top(), origin.x()+selLabelOffset, axisRect.bottom()); + } else if (type == QCPAxis::atTop) + { + mAxisSelectionBox.setCoords(axisRect.left(), origin.y()-selAxisOutSize, axisRect.right(), origin.y()+selAxisInSize); + mTickLabelsSelectionBox.setCoords(axisRect.left(), origin.y()-selTickLabelOffset-selTickLabelSize, axisRect.right(), origin.y()-selTickLabelOffset); + mLabelSelectionBox.setCoords(axisRect.left(), origin.y()-selLabelOffset-selLabelSize, axisRect.right(), origin.y()-selLabelOffset); + } else if (type == QCPAxis::atBottom) + { + mAxisSelectionBox.setCoords(axisRect.left(), origin.y()-selAxisInSize, axisRect.right(), origin.y()+selAxisOutSize); + mTickLabelsSelectionBox.setCoords(axisRect.left(), origin.y()+selTickLabelOffset+selTickLabelSize, axisRect.right(), origin.y()+selTickLabelOffset); + mLabelSelectionBox.setCoords(axisRect.left(), origin.y()+selLabelOffset+selLabelSize, axisRect.right(), origin.y()+selLabelOffset); + } + mAxisSelectionBox = mAxisSelectionBox.normalized(); + mTickLabelsSelectionBox = mTickLabelsSelectionBox.normalized(); + mLabelSelectionBox = mLabelSelectionBox.normalized(); + // draw hitboxes for debug purposes: + //painter->setBrush(Qt::NoBrush); + //painter->drawRects(QVector() << mAxisSelectionBox << mTickLabelsSelectionBox << mLabelSelectionBox); +} + +/*! \internal + + Returns the size ("margin" in QCPAxisRect context, so measured perpendicular to the axis backbone + direction) needed to fit the axis. +*/ +int QCPAxisPainterPrivate::size() const +{ + int result = 0; + + // get length of tick marks pointing outwards: + if (!tickPositions.isEmpty()) + result += qMax(0, qMax(tickLengthOut, subTickLengthOut)); + + // calculate size of tick labels: + if (tickLabelSide == QCPAxis::lsOutside) + { + QSize tickLabelsSize(0, 0); + if (!tickLabels.isEmpty()) + { + for (int i=0; ibufferDevicePixelRatio())); + result.append(QByteArray::number(tickLabelRotation)); + result.append(QByteArray::number((int)tickLabelSide)); + result.append(QByteArray::number((int)substituteExponent)); + result.append(QByteArray::number((int)numberMultiplyCross)); + result.append(tickLabelColor.name().toLatin1()+QByteArray::number(tickLabelColor.alpha(), 16)); + result.append(tickLabelFont.toString().toLatin1()); + return result; +} + +/*! \internal + + Draws a single tick label with the provided \a painter, utilizing the internal label cache to + significantly speed up drawing of labels that were drawn in previous calls. The tick label is + always bound to an axis, the distance to the axis is controllable via \a distanceToAxis in + pixels. The pixel position in the axis direction is passed in the \a position parameter. Hence + for the bottom axis, \a position would indicate the horizontal pixel position (not coordinate), + at which the label should be drawn. + + In order to later draw the axis label in a place that doesn't overlap with the tick labels, the + largest tick label size is needed. This is acquired by passing a \a tickLabelsSize to the \ref + drawTickLabel calls during the process of drawing all tick labels of one axis. In every call, \a + tickLabelsSize is expanded, if the drawn label exceeds the value \a tickLabelsSize currently + holds. + + The label is drawn with the font and pen that are currently set on the \a painter. To draw + superscripted powers, the font is temporarily made smaller by a fixed factor (see \ref + getTickLabelData). +*/ +void QCPAxisPainterPrivate::placeTickLabel(QCPPainter *painter, double position, int distanceToAxis, const QString &text, QSize *tickLabelsSize) +{ + // warning: if you change anything here, also adapt getMaxTickLabelSize() accordingly! + if (text.isEmpty()) return; + QSize finalSize; + QPointF labelAnchor; + switch (type) + { + case QCPAxis::atLeft: labelAnchor = QPointF(axisRect.left()-distanceToAxis-offset, position); break; + case QCPAxis::atRight: labelAnchor = QPointF(axisRect.right()+distanceToAxis+offset, position); break; + case QCPAxis::atTop: labelAnchor = QPointF(position, axisRect.top()-distanceToAxis-offset); break; + case QCPAxis::atBottom: labelAnchor = QPointF(position, axisRect.bottom()+distanceToAxis+offset); break; + } + if (mParentPlot->plottingHints().testFlag(QCP::phCacheLabels) && !painter->modes().testFlag(QCPPainter::pmNoCaching)) // label caching enabled + { + CachedLabel *cachedLabel = mLabelCache.take(text); // attempt to get label from cache + if (!cachedLabel) // no cached label existed, create it + { + cachedLabel = new CachedLabel; + TickLabelData labelData = getTickLabelData(painter->font(), text); + cachedLabel->offset = getTickLabelDrawOffset(labelData)+labelData.rotatedTotalBounds.topLeft(); + if (!qFuzzyCompare(1.0, mParentPlot->bufferDevicePixelRatio())) + { + cachedLabel->pixmap = QPixmap(labelData.rotatedTotalBounds.size()*mParentPlot->bufferDevicePixelRatio()); +#ifdef QCP_DEVICEPIXELRATIO_SUPPORTED +# ifdef QCP_DEVICEPIXELRATIO_FLOAT + cachedLabel->pixmap.setDevicePixelRatio(mParentPlot->devicePixelRatioF()); +# else + cachedLabel->pixmap.setDevicePixelRatio(mParentPlot->devicePixelRatio()); +# endif +#endif + } else + cachedLabel->pixmap = QPixmap(labelData.rotatedTotalBounds.size()); + cachedLabel->pixmap.fill(Qt::transparent); + QCPPainter cachePainter(&cachedLabel->pixmap); + cachePainter.setPen(painter->pen()); + drawTickLabel(&cachePainter, -labelData.rotatedTotalBounds.topLeft().x(), -labelData.rotatedTotalBounds.topLeft().y(), labelData); + } + // if label would be partly clipped by widget border on sides, don't draw it (only for outside tick labels): + bool labelClippedByBorder = false; + if (tickLabelSide == QCPAxis::lsOutside) + { + if (QCPAxis::orientation(type) == Qt::Horizontal) + labelClippedByBorder = labelAnchor.x()+cachedLabel->offset.x()+cachedLabel->pixmap.width()/mParentPlot->bufferDevicePixelRatio() > viewportRect.right() || labelAnchor.x()+cachedLabel->offset.x() < viewportRect.left(); + else + labelClippedByBorder = labelAnchor.y()+cachedLabel->offset.y()+cachedLabel->pixmap.height()/mParentPlot->bufferDevicePixelRatio() > viewportRect.bottom() || labelAnchor.y()+cachedLabel->offset.y() < viewportRect.top(); + } + if (!labelClippedByBorder) + { + painter->drawPixmap(labelAnchor+cachedLabel->offset, cachedLabel->pixmap); + finalSize = cachedLabel->pixmap.size()/mParentPlot->bufferDevicePixelRatio(); + } + mLabelCache.insert(text, cachedLabel); // return label to cache or insert for the first time if newly created + } else // label caching disabled, draw text directly on surface: + { + TickLabelData labelData = getTickLabelData(painter->font(), text); + QPointF finalPosition = labelAnchor + getTickLabelDrawOffset(labelData); + // if label would be partly clipped by widget border on sides, don't draw it (only for outside tick labels): + bool labelClippedByBorder = false; + if (tickLabelSide == QCPAxis::lsOutside) + { + if (QCPAxis::orientation(type) == Qt::Horizontal) + labelClippedByBorder = finalPosition.x()+(labelData.rotatedTotalBounds.width()+labelData.rotatedTotalBounds.left()) > viewportRect.right() || finalPosition.x()+labelData.rotatedTotalBounds.left() < viewportRect.left(); + else + labelClippedByBorder = finalPosition.y()+(labelData.rotatedTotalBounds.height()+labelData.rotatedTotalBounds.top()) > viewportRect.bottom() || finalPosition.y()+labelData.rotatedTotalBounds.top() < viewportRect.top(); + } + if (!labelClippedByBorder) + { + drawTickLabel(painter, finalPosition.x(), finalPosition.y(), labelData); + finalSize = labelData.rotatedTotalBounds.size(); + } + } + + // expand passed tickLabelsSize if current tick label is larger: + if (finalSize.width() > tickLabelsSize->width()) + tickLabelsSize->setWidth(finalSize.width()); + if (finalSize.height() > tickLabelsSize->height()) + tickLabelsSize->setHeight(finalSize.height()); +} + +/*! \internal + + This is a \ref placeTickLabel helper function. + + Draws the tick label specified in \a labelData with \a painter at the pixel positions \a x and \a + y. This function is used by \ref placeTickLabel to create new tick labels for the cache, or to + directly draw the labels on the QCustomPlot surface when label caching is disabled, i.e. when + QCP::phCacheLabels plotting hint is not set. +*/ +void QCPAxisPainterPrivate::drawTickLabel(QCPPainter *painter, double x, double y, const TickLabelData &labelData) const +{ + // backup painter settings that we're about to change: + QTransform oldTransform = painter->transform(); + QFont oldFont = painter->font(); + + // transform painter to position/rotation: + painter->translate(x, y); + if (!qFuzzyIsNull(tickLabelRotation)) + painter->rotate(tickLabelRotation); + + // draw text: + if (!labelData.expPart.isEmpty()) // indicator that beautiful powers must be used + { + painter->setFont(labelData.baseFont); + painter->drawText(0, 0, 0, 0, Qt::TextDontClip, labelData.basePart); + if (!labelData.suffixPart.isEmpty()) + painter->drawText(labelData.baseBounds.width()+1+labelData.expBounds.width(), 0, 0, 0, Qt::TextDontClip, labelData.suffixPart); + painter->setFont(labelData.expFont); + painter->drawText(labelData.baseBounds.width()+1, 0, labelData.expBounds.width(), labelData.expBounds.height(), Qt::TextDontClip, labelData.expPart); + } else + { + painter->setFont(labelData.baseFont); + painter->drawText(0, 0, labelData.totalBounds.width(), labelData.totalBounds.height(), Qt::TextDontClip | Qt::AlignHCenter, labelData.basePart); + } + + // reset painter settings to what it was before: + painter->setTransform(oldTransform); + painter->setFont(oldFont); +} + +/*! \internal + + This is a \ref placeTickLabel helper function. + + Transforms the passed \a text and \a font to a tickLabelData structure that can then be further + processed by \ref getTickLabelDrawOffset and \ref drawTickLabel. It splits the text into base and + exponent if necessary (member substituteExponent) and calculates appropriate bounding boxes. +*/ +QCPAxisPainterPrivate::TickLabelData QCPAxisPainterPrivate::getTickLabelData(const QFont &font, const QString &text) const +{ + TickLabelData result; + + // determine whether beautiful decimal powers should be used + bool useBeautifulPowers = false; + int ePos = -1; // first index of exponent part, text before that will be basePart, text until eLast will be expPart + int eLast = -1; // last index of exponent part, rest of text after this will be suffixPart + if (substituteExponent) + { + ePos = text.indexOf(QLatin1Char('e')); + if (ePos > 0 && text.at(ePos-1).isDigit()) + { + eLast = ePos; + while (eLast+1 < text.size() && (text.at(eLast+1) == QLatin1Char('+') || text.at(eLast+1) == QLatin1Char('-') || text.at(eLast+1).isDigit())) + ++eLast; + if (eLast > ePos) // only if also to right of 'e' is a digit/+/- interpret it as beautifiable power + useBeautifulPowers = true; + } + } + + // calculate text bounding rects and do string preparation for beautiful decimal powers: + result.baseFont = font; + if (result.baseFont.pointSizeF() > 0) // might return -1 if specified with setPixelSize, in that case we can't do correction in next line + result.baseFont.setPointSizeF(result.baseFont.pointSizeF()+0.05); // QFontMetrics.boundingRect has a bug for exact point sizes that make the results oscillate due to internal rounding + if (useBeautifulPowers) + { + // split text into parts of number/symbol that will be drawn normally and part that will be drawn as exponent: + result.basePart = text.left(ePos); + result.suffixPart = text.mid(eLast+1); // also drawn normally but after exponent + // in log scaling, we want to turn "1*10^n" into "10^n", else add multiplication sign and decimal base: + if (abbreviateDecimalPowers && result.basePart == QLatin1String("1")) + result.basePart = QLatin1String("10"); + else + result.basePart += (numberMultiplyCross ? QString(QChar(215)) : QString(QChar(183))) + QLatin1String("10"); + result.expPart = text.mid(ePos+1, eLast-ePos); + // clip "+" and leading zeros off expPart: + while (result.expPart.length() > 2 && result.expPart.at(1) == QLatin1Char('0')) // length > 2 so we leave one zero when numberFormatChar is 'e' + result.expPart.remove(1, 1); + if (!result.expPart.isEmpty() && result.expPart.at(0) == QLatin1Char('+')) + result.expPart.remove(0, 1); + // prepare smaller font for exponent: + result.expFont = font; + if (result.expFont.pointSize() > 0) + result.expFont.setPointSize(result.expFont.pointSize()*0.75); + else + result.expFont.setPixelSize(result.expFont.pixelSize()*0.75); + // calculate bounding rects of base part(s), exponent part and total one: + result.baseBounds = QFontMetrics(result.baseFont).boundingRect(0, 0, 0, 0, Qt::TextDontClip, result.basePart); + result.expBounds = QFontMetrics(result.expFont).boundingRect(0, 0, 0, 0, Qt::TextDontClip, result.expPart); + if (!result.suffixPart.isEmpty()) + result.suffixBounds = QFontMetrics(result.baseFont).boundingRect(0, 0, 0, 0, Qt::TextDontClip, result.suffixPart); + result.totalBounds = result.baseBounds.adjusted(0, 0, result.expBounds.width()+result.suffixBounds.width()+2, 0); // +2 consists of the 1 pixel spacing between base and exponent (see drawTickLabel) and an extra pixel to include AA + } else // useBeautifulPowers == false + { + result.basePart = text; + result.totalBounds = QFontMetrics(result.baseFont).boundingRect(0, 0, 0, 0, Qt::TextDontClip | Qt::AlignHCenter, result.basePart); + } + result.totalBounds.moveTopLeft(QPoint(0, 0)); // want bounding box aligned top left at origin, independent of how it was created, to make further processing simpler + + // calculate possibly different bounding rect after rotation: + result.rotatedTotalBounds = result.totalBounds; + if (!qFuzzyIsNull(tickLabelRotation)) + { + QTransform transform; + transform.rotate(tickLabelRotation); + result.rotatedTotalBounds = transform.mapRect(result.rotatedTotalBounds); + } + + return result; +} + +/*! \internal + + This is a \ref placeTickLabel helper function. + + Calculates the offset at which the top left corner of the specified tick label shall be drawn. + The offset is relative to a point right next to the tick the label belongs to. + + This function is thus responsible for e.g. centering tick labels under ticks and positioning them + appropriately when they are rotated. +*/ +QPointF QCPAxisPainterPrivate::getTickLabelDrawOffset(const TickLabelData &labelData) const +{ + /* + calculate label offset from base point at tick (non-trivial, for best visual appearance): short + explanation for bottom axis: The anchor, i.e. the point in the label that is placed + horizontally under the corresponding tick is always on the label side that is closer to the + axis (e.g. the left side of the text when we're rotating clockwise). On that side, the height + is halved and the resulting point is defined the anchor. This way, a 90 degree rotated text + will be centered under the tick (i.e. displaced horizontally by half its height). At the same + time, a 45 degree rotated text will "point toward" its tick, as is typical for rotated tick + labels. + */ + bool doRotation = !qFuzzyIsNull(tickLabelRotation); + bool flip = qFuzzyCompare(qAbs(tickLabelRotation), 90.0); // perfect +/-90 degree flip. Indicates vertical label centering on vertical axes. + double radians = tickLabelRotation/180.0*M_PI; + int x=0, y=0; + if ((type == QCPAxis::atLeft && tickLabelSide == QCPAxis::lsOutside) || (type == QCPAxis::atRight && tickLabelSide == QCPAxis::lsInside)) // Anchor at right side of tick label + { + if (doRotation) + { + if (tickLabelRotation > 0) + { + x = -qCos(radians)*labelData.totalBounds.width(); + y = flip ? -labelData.totalBounds.width()/2.0 : -qSin(radians)*labelData.totalBounds.width()-qCos(radians)*labelData.totalBounds.height()/2.0; + } else + { + x = -qCos(-radians)*labelData.totalBounds.width()-qSin(-radians)*labelData.totalBounds.height(); + y = flip ? +labelData.totalBounds.width()/2.0 : +qSin(-radians)*labelData.totalBounds.width()-qCos(-radians)*labelData.totalBounds.height()/2.0; + } + } else + { + x = -labelData.totalBounds.width(); + y = -labelData.totalBounds.height()/2.0; + } + } else if ((type == QCPAxis::atRight && tickLabelSide == QCPAxis::lsOutside) || (type == QCPAxis::atLeft && tickLabelSide == QCPAxis::lsInside)) // Anchor at left side of tick label + { + if (doRotation) + { + if (tickLabelRotation > 0) + { + x = +qSin(radians)*labelData.totalBounds.height(); + y = flip ? -labelData.totalBounds.width()/2.0 : -qCos(radians)*labelData.totalBounds.height()/2.0; + } else + { + x = 0; + y = flip ? +labelData.totalBounds.width()/2.0 : -qCos(-radians)*labelData.totalBounds.height()/2.0; + } + } else + { + x = 0; + y = -labelData.totalBounds.height()/2.0; + } + } else if ((type == QCPAxis::atTop && tickLabelSide == QCPAxis::lsOutside) || (type == QCPAxis::atBottom && tickLabelSide == QCPAxis::lsInside)) // Anchor at bottom side of tick label + { + if (doRotation) + { + if (tickLabelRotation > 0) + { + x = -qCos(radians)*labelData.totalBounds.width()+qSin(radians)*labelData.totalBounds.height()/2.0; + y = -qSin(radians)*labelData.totalBounds.width()-qCos(radians)*labelData.totalBounds.height(); + } else + { + x = -qSin(-radians)*labelData.totalBounds.height()/2.0; + y = -qCos(-radians)*labelData.totalBounds.height(); + } + } else + { + x = -labelData.totalBounds.width()/2.0; + y = -labelData.totalBounds.height(); + } + } else if ((type == QCPAxis::atBottom && tickLabelSide == QCPAxis::lsOutside) || (type == QCPAxis::atTop && tickLabelSide == QCPAxis::lsInside)) // Anchor at top side of tick label + { + if (doRotation) + { + if (tickLabelRotation > 0) + { + x = +qSin(radians)*labelData.totalBounds.height()/2.0; + y = 0; + } else + { + x = -qCos(-radians)*labelData.totalBounds.width()-qSin(-radians)*labelData.totalBounds.height()/2.0; + y = +qSin(-radians)*labelData.totalBounds.width(); + } + } else + { + x = -labelData.totalBounds.width()/2.0; + y = 0; + } + } + + return QPointF(x, y); +} + +/*! \internal + + Simulates the steps done by \ref placeTickLabel by calculating bounding boxes of the text label + to be drawn, depending on number format etc. Since only the largest tick label is wanted for the + margin calculation, the passed \a tickLabelsSize is only expanded, if it's currently set to a + smaller width/height. +*/ +void QCPAxisPainterPrivate::getMaxTickLabelSize(const QFont &font, const QString &text, QSize *tickLabelsSize) const +{ + // note: this function must return the same tick label sizes as the placeTickLabel function. + QSize finalSize; + if (mParentPlot->plottingHints().testFlag(QCP::phCacheLabels) && mLabelCache.contains(text)) // label caching enabled and have cached label + { + const CachedLabel *cachedLabel = mLabelCache.object(text); + finalSize = cachedLabel->pixmap.size()/mParentPlot->bufferDevicePixelRatio(); + } else // label caching disabled or no label with this text cached: + { + TickLabelData labelData = getTickLabelData(font, text); + finalSize = labelData.rotatedTotalBounds.size(); + } + + // expand passed tickLabelsSize if current tick label is larger: + if (finalSize.width() > tickLabelsSize->width()) + tickLabelsSize->setWidth(finalSize.width()); + if (finalSize.height() > tickLabelsSize->height()) + tickLabelsSize->setHeight(finalSize.height()); +} +/* end of 'src/axis/axis.cpp' */ + + +/* including file 'src/scatterstyle.cpp', size 17450 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPScatterStyle +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPScatterStyle + \brief Represents the visual appearance of scatter points + + This class holds information about shape, color and size of scatter points. In plottables like + QCPGraph it is used to store how scatter points shall be drawn. For example, \ref + QCPGraph::setScatterStyle takes a QCPScatterStyle instance. + + A scatter style consists of a shape (\ref setShape), a line color (\ref setPen) and possibly a + fill (\ref setBrush), if the shape provides a fillable area. Further, the size of the shape can + be controlled with \ref setSize. + + \section QCPScatterStyle-defining Specifying a scatter style + + You can set all these configurations either by calling the respective functions on an instance: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpscatterstyle-creation-1 + + Or you can use one of the various constructors that take different parameter combinations, making + it easy to specify a scatter style in a single call, like so: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpscatterstyle-creation-2 + + \section QCPScatterStyle-undefinedpen Leaving the color/pen up to the plottable + + There are two constructors which leave the pen undefined: \ref QCPScatterStyle() and \ref + QCPScatterStyle(ScatterShape shape, double size). If those constructors are used, a call to \ref + isPenDefined will return false. It leads to scatter points that inherit the pen from the + plottable that uses the scatter style. Thus, if such a scatter style is passed to QCPGraph, the line + color of the graph (\ref QCPGraph::setPen) will be used by the scatter points. This makes + it very convenient to set up typical scatter settings: + + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpscatterstyle-shortcreation + + Notice that it wasn't even necessary to explicitly call a QCPScatterStyle constructor. This works + because QCPScatterStyle provides a constructor that can transform a \ref ScatterShape directly + into a QCPScatterStyle instance (that's the \ref QCPScatterStyle(ScatterShape shape, double size) + constructor with a default for \a size). In those cases, C++ allows directly supplying a \ref + ScatterShape, where actually a QCPScatterStyle is expected. + + \section QCPScatterStyle-custompath-and-pixmap Custom shapes and pixmaps + + QCPScatterStyle supports drawing custom shapes and arbitrary pixmaps as scatter points. + + For custom shapes, you can provide a QPainterPath with the desired shape to the \ref + setCustomPath function or call the constructor that takes a painter path. The scatter shape will + automatically be set to \ref ssCustom. + + For pixmaps, you call \ref setPixmap with the desired QPixmap. Alternatively you can use the + constructor that takes a QPixmap. The scatter shape will automatically be set to \ref ssPixmap. + Note that \ref setSize does not influence the appearance of the pixmap. +*/ + +/* start documentation of inline functions */ + +/*! \fn bool QCPScatterStyle::isNone() const + + Returns whether the scatter shape is \ref ssNone. + + \see setShape +*/ + +/*! \fn bool QCPScatterStyle::isPenDefined() const + + Returns whether a pen has been defined for this scatter style. + + The pen is undefined if a constructor is called that does not carry \a pen as parameter. Those + are \ref QCPScatterStyle() and \ref QCPScatterStyle(ScatterShape shape, double size). If the pen + is undefined, the pen of the respective plottable will be used for drawing scatters. + + If a pen was defined for this scatter style instance, and you now wish to undefine the pen, call + \ref undefinePen. + + \see setPen +*/ + +/* end documentation of inline functions */ + +/*! + Creates a new QCPScatterStyle instance with size set to 6. No shape, pen or brush is defined. + + Since the pen is undefined (\ref isPenDefined returns false), the scatter color will be inherited + from the plottable that uses this scatter style. +*/ +QCPScatterStyle::QCPScatterStyle() : + mSize(6), + mShape(ssNone), + mPen(Qt::NoPen), + mBrush(Qt::NoBrush), + mPenDefined(false) +{ +} + +/*! + Creates a new QCPScatterStyle instance with shape set to \a shape and size to \a size. No pen or + brush is defined. + + Since the pen is undefined (\ref isPenDefined returns false), the scatter color will be inherited + from the plottable that uses this scatter style. +*/ +QCPScatterStyle::QCPScatterStyle(ScatterShape shape, double size) : + mSize(size), + mShape(shape), + mPen(Qt::NoPen), + mBrush(Qt::NoBrush), + mPenDefined(false) +{ +} + +/*! + Creates a new QCPScatterStyle instance with shape set to \a shape, the pen color set to \a color, + and size to \a size. No brush is defined, i.e. the scatter point will not be filled. +*/ +QCPScatterStyle::QCPScatterStyle(ScatterShape shape, const QColor &color, double size) : + mSize(size), + mShape(shape), + mPen(QPen(color)), + mBrush(Qt::NoBrush), + mPenDefined(true) +{ +} + +/*! + Creates a new QCPScatterStyle instance with shape set to \a shape, the pen color set to \a color, + the brush color to \a fill (with a solid pattern), and size to \a size. +*/ +QCPScatterStyle::QCPScatterStyle(ScatterShape shape, const QColor &color, const QColor &fill, double size) : + mSize(size), + mShape(shape), + mPen(QPen(color)), + mBrush(QBrush(fill)), + mPenDefined(true) +{ +} + +/*! + Creates a new QCPScatterStyle instance with shape set to \a shape, the pen set to \a pen, the + brush to \a brush, and size to \a size. + + \warning In some cases it might be tempting to directly use a pen style like Qt::NoPen as \a pen + and a color like Qt::blue as \a brush. Notice however, that the corresponding call\n + QCPScatterStyle(QCPScatterShape::ssCircle, Qt::NoPen, Qt::blue, 5)\n + doesn't necessarily lead C++ to use this constructor in some cases, but might mistake + Qt::NoPen for a QColor and use the + \ref QCPScatterStyle(ScatterShape shape, const QColor &color, const QColor &fill, double size) + constructor instead (which will lead to an unexpected look of the scatter points). To prevent + this, be more explicit with the parameter types. For example, use QBrush(Qt::blue) + instead of just Qt::blue, to clearly point out to the compiler that this constructor is + wanted. +*/ +QCPScatterStyle::QCPScatterStyle(ScatterShape shape, const QPen &pen, const QBrush &brush, double size) : + mSize(size), + mShape(shape), + mPen(pen), + mBrush(brush), + mPenDefined(pen.style() != Qt::NoPen) +{ +} + +/*! + Creates a new QCPScatterStyle instance which will show the specified \a pixmap. The scatter shape + is set to \ref ssPixmap. +*/ +QCPScatterStyle::QCPScatterStyle(const QPixmap &pixmap) : + mSize(5), + mShape(ssPixmap), + mPen(Qt::NoPen), + mBrush(Qt::NoBrush), + mPixmap(pixmap), + mPenDefined(false) +{ +} + +/*! + Creates a new QCPScatterStyle instance with a custom shape that is defined via \a customPath. The + scatter shape is set to \ref ssCustom. + + The custom shape line will be drawn with \a pen and filled with \a brush. The size has a slightly + different meaning than for built-in scatter points: The custom path will be drawn scaled by a + factor of \a size/6.0. Since the default \a size is 6, the custom path will appear in its + original size by default. To for example double the size of the path, set \a size to 12. +*/ +QCPScatterStyle::QCPScatterStyle(const QPainterPath &customPath, const QPen &pen, const QBrush &brush, double size) : + mSize(size), + mShape(ssCustom), + mPen(pen), + mBrush(brush), + mCustomPath(customPath), + mPenDefined(pen.style() != Qt::NoPen) +{ +} + +/*! + Copies the specified \a properties from the \a other scatter style to this scatter style. +*/ +void QCPScatterStyle::setFromOther(const QCPScatterStyle &other, ScatterProperties properties) +{ + if (properties.testFlag(spPen)) + { + setPen(other.pen()); + if (!other.isPenDefined()) + undefinePen(); + } + if (properties.testFlag(spBrush)) + setBrush(other.brush()); + if (properties.testFlag(spSize)) + setSize(other.size()); + if (properties.testFlag(spShape)) + { + setShape(other.shape()); + if (other.shape() == ssPixmap) + setPixmap(other.pixmap()); + else if (other.shape() == ssCustom) + setCustomPath(other.customPath()); + } +} + +/*! + Sets the size (pixel diameter) of the drawn scatter points to \a size. + + \see setShape +*/ +void QCPScatterStyle::setSize(double size) +{ + mSize = size; +} + +/*! + Sets the shape to \a shape. + + Note that the calls \ref setPixmap and \ref setCustomPath automatically set the shape to \ref + ssPixmap and \ref ssCustom, respectively. + + \see setSize +*/ +void QCPScatterStyle::setShape(QCPScatterStyle::ScatterShape shape) +{ + mShape = shape; +} + +/*! + Sets the pen that will be used to draw scatter points to \a pen. + + If the pen was previously undefined (see \ref isPenDefined), the pen is considered defined after + a call to this function, even if \a pen is Qt::NoPen. If you have defined a pen + previously by calling this function and now wish to undefine the pen, call \ref undefinePen. + + \see setBrush +*/ +void QCPScatterStyle::setPen(const QPen &pen) +{ + mPenDefined = true; + mPen = pen; +} + +/*! + Sets the brush that will be used to fill scatter points to \a brush. Note that not all scatter + shapes have fillable areas. For example, \ref ssPlus does not while \ref ssCircle does. + + \see setPen +*/ +void QCPScatterStyle::setBrush(const QBrush &brush) +{ + mBrush = brush; +} + +/*! + Sets the pixmap that will be drawn as scatter point to \a pixmap. + + Note that \ref setSize does not influence the appearance of the pixmap. + + The scatter shape is automatically set to \ref ssPixmap. +*/ +void QCPScatterStyle::setPixmap(const QPixmap &pixmap) +{ + setShape(ssPixmap); + mPixmap = pixmap; +} + +/*! + Sets the custom shape that will be drawn as scatter point to \a customPath. + + The scatter shape is automatically set to \ref ssCustom. +*/ +void QCPScatterStyle::setCustomPath(const QPainterPath &customPath) +{ + setShape(ssCustom); + mCustomPath = customPath; +} + +/*! + Sets this scatter style to have an undefined pen (see \ref isPenDefined for what an undefined pen + implies). + + A call to \ref setPen will define a pen. +*/ +void QCPScatterStyle::undefinePen() +{ + mPenDefined = false; +} + +/*! + Applies the pen and the brush of this scatter style to \a painter. If this scatter style has an + undefined pen (\ref isPenDefined), sets the pen of \a painter to \a defaultPen instead. + + This function is used by plottables (or any class that wants to draw scatters) just before a + number of scatters with this style shall be drawn with the \a painter. + + \see drawShape +*/ +void QCPScatterStyle::applyTo(QCPPainter *painter, const QPen &defaultPen) const +{ + painter->setPen(mPenDefined ? mPen : defaultPen); + painter->setBrush(mBrush); +} + +/*! + Draws the scatter shape with \a painter at position \a pos. + + This function does not modify the pen or the brush on the painter, as \ref applyTo is meant to be + called before scatter points are drawn with \ref drawShape. + + \see applyTo +*/ +void QCPScatterStyle::drawShape(QCPPainter *painter, const QPointF &pos) const +{ + drawShape(painter, pos.x(), pos.y()); +} + +/*! \overload + Draws the scatter shape with \a painter at position \a x and \a y. +*/ +void QCPScatterStyle::drawShape(QCPPainter *painter, double x, double y) const +{ + double w = mSize/2.0; + switch (mShape) + { + case ssNone: break; + case ssDot: + { + painter->drawLine(QPointF(x, y), QPointF(x+0.0001, y)); + break; + } + case ssCross: + { + painter->drawLine(QLineF(x-w, y-w, x+w, y+w)); + painter->drawLine(QLineF(x-w, y+w, x+w, y-w)); + break; + } + case ssPlus: + { + painter->drawLine(QLineF(x-w, y, x+w, y)); + painter->drawLine(QLineF( x, y+w, x, y-w)); + break; + } + case ssCircle: + { + painter->drawEllipse(QPointF(x , y), w, w); + break; + } + case ssDisc: + { + QBrush b = painter->brush(); + painter->setBrush(painter->pen().color()); + painter->drawEllipse(QPointF(x , y), w, w); + painter->setBrush(b); + break; + } + case ssSquare: + { + painter->drawRect(QRectF(x-w, y-w, mSize, mSize)); + break; + } + case ssDiamond: + { + QPointF lineArray[4] = {QPointF(x-w, y), + QPointF( x, y-w), + QPointF(x+w, y), + QPointF( x, y+w)}; + painter->drawPolygon(lineArray, 4); + break; + } + case ssStar: + { + painter->drawLine(QLineF(x-w, y, x+w, y)); + painter->drawLine(QLineF( x, y+w, x, y-w)); + painter->drawLine(QLineF(x-w*0.707, y-w*0.707, x+w*0.707, y+w*0.707)); + painter->drawLine(QLineF(x-w*0.707, y+w*0.707, x+w*0.707, y-w*0.707)); + break; + } + case ssTriangle: + { + QPointF lineArray[3] = {QPointF(x-w, y+0.755*w), + QPointF(x+w, y+0.755*w), + QPointF( x, y-0.977*w)}; + painter->drawPolygon(lineArray, 3); + break; + } + case ssTriangleInverted: + { + QPointF lineArray[3] = {QPointF(x-w, y-0.755*w), + QPointF(x+w, y-0.755*w), + QPointF( x, y+0.977*w)}; + painter->drawPolygon(lineArray, 3); + break; + } + case ssCrossSquare: + { + painter->drawRect(QRectF(x-w, y-w, mSize, mSize)); + painter->drawLine(QLineF(x-w, y-w, x+w*0.95, y+w*0.95)); + painter->drawLine(QLineF(x-w, y+w*0.95, x+w*0.95, y-w)); + break; + } + case ssPlusSquare: + { + painter->drawRect(QRectF(x-w, y-w, mSize, mSize)); + painter->drawLine(QLineF(x-w, y, x+w*0.95, y)); + painter->drawLine(QLineF( x, y+w, x, y-w)); + break; + } + case ssCrossCircle: + { + painter->drawEllipse(QPointF(x, y), w, w); + painter->drawLine(QLineF(x-w*0.707, y-w*0.707, x+w*0.670, y+w*0.670)); + painter->drawLine(QLineF(x-w*0.707, y+w*0.670, x+w*0.670, y-w*0.707)); + break; + } + case ssPlusCircle: + { + painter->drawEllipse(QPointF(x, y), w, w); + painter->drawLine(QLineF(x-w, y, x+w, y)); + painter->drawLine(QLineF( x, y+w, x, y-w)); + break; + } + case ssPeace: + { + painter->drawEllipse(QPointF(x, y), w, w); + painter->drawLine(QLineF(x, y-w, x, y+w)); + painter->drawLine(QLineF(x, y, x-w*0.707, y+w*0.707)); + painter->drawLine(QLineF(x, y, x+w*0.707, y+w*0.707)); + break; + } + case ssPixmap: + { + const double widthHalf = mPixmap.width()*0.5; + const double heightHalf = mPixmap.height()*0.5; +#if QT_VERSION < QT_VERSION_CHECK(4, 8, 0) + const QRectF clipRect = painter->clipRegion().boundingRect().adjusted(-widthHalf, -heightHalf, widthHalf, heightHalf); +#else + const QRectF clipRect = painter->clipBoundingRect().adjusted(-widthHalf, -heightHalf, widthHalf, heightHalf); +#endif + if (clipRect.contains(x, y)) + painter->drawPixmap(x-widthHalf, y-heightHalf, mPixmap); + break; + } + case ssCustom: + { + QTransform oldTransform = painter->transform(); + painter->translate(x, y); + painter->scale(mSize/6.0, mSize/6.0); + painter->drawPath(mCustomPath); + painter->setTransform(oldTransform); + break; + } + } +} +/* end of 'src/scatterstyle.cpp' */ + +//amalgamation: add datacontainer.cpp + +/* including file 'src/plottable.cpp', size 38845 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPSelectionDecorator +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPSelectionDecorator + \brief Controls how a plottable's data selection is drawn + + Each \ref QCPAbstractPlottable instance has one \ref QCPSelectionDecorator (accessible via \ref + QCPAbstractPlottable::selectionDecorator) and uses it when drawing selected segments of its data. + + The selection decorator controls both pen (\ref setPen) and brush (\ref setBrush), as well as the + scatter style (\ref setScatterStyle) if the plottable draws scatters. Since a \ref + QCPScatterStyle is itself composed of different properties such as color shape and size, the + decorator allows specifying exactly which of those properties shall be used for the selected data + point, via \ref setUsedScatterProperties. + + A \ref QCPSelectionDecorator subclass instance can be passed to a plottable via \ref + QCPAbstractPlottable::setSelectionDecorator, allowing greater customizability of the appearance + of selected segments. + + Use \ref copyFrom to easily transfer the settings of one decorator to another one. This is + especially useful since plottables take ownership of the passed selection decorator, and thus the + same decorator instance can not be passed to multiple plottables. + + Selection decorators can also themselves perform drawing operations by reimplementing \ref + drawDecoration, which is called by the plottable's draw method. The base class \ref + QCPSelectionDecorator does not make use of this however. For example, \ref + QCPSelectionDecoratorBracket draws brackets around selected data segments. +*/ + +/*! + Creates a new QCPSelectionDecorator instance with default values +*/ +QCPSelectionDecorator::QCPSelectionDecorator() : + mPen(QColor(80, 80, 255), 2.5), + mBrush(Qt::NoBrush), + mScatterStyle(), + mUsedScatterProperties(QCPScatterStyle::spNone), + mPlottable(0) +{ +} + +QCPSelectionDecorator::~QCPSelectionDecorator() +{ +} + +/*! + Sets the pen that will be used by the parent plottable to draw selected data segments. +*/ +void QCPSelectionDecorator::setPen(const QPen &pen) +{ + mPen = pen; +} + +/*! + Sets the brush that will be used by the parent plottable to draw selected data segments. +*/ +void QCPSelectionDecorator::setBrush(const QBrush &brush) +{ + mBrush = brush; +} + +/*! + Sets the scatter style that will be used by the parent plottable to draw scatters in selected + data segments. + + \a usedProperties specifies which parts of the passed \a scatterStyle will be used by the + plottable. The used properties can also be changed via \ref setUsedScatterProperties. +*/ +void QCPSelectionDecorator::setScatterStyle(const QCPScatterStyle &scatterStyle, QCPScatterStyle::ScatterProperties usedProperties) +{ + mScatterStyle = scatterStyle; + setUsedScatterProperties(usedProperties); +} + +/*! + Use this method to define which properties of the scatter style (set via \ref setScatterStyle) + will be used for selected data segments. All properties of the scatter style that are not + specified in \a properties will remain as specified in the plottable's original scatter style. + + \see QCPScatterStyle::ScatterProperty +*/ +void QCPSelectionDecorator::setUsedScatterProperties(const QCPScatterStyle::ScatterProperties &properties) +{ + mUsedScatterProperties = properties; +} + +/*! + Sets the pen of \a painter to the pen of this selection decorator. + + \see applyBrush, getFinalScatterStyle +*/ +void QCPSelectionDecorator::applyPen(QCPPainter *painter) const +{ + painter->setPen(mPen); +} + +/*! + Sets the brush of \a painter to the brush of this selection decorator. + + \see applyPen, getFinalScatterStyle +*/ +void QCPSelectionDecorator::applyBrush(QCPPainter *painter) const +{ + painter->setBrush(mBrush); +} + +/*! + Returns the scatter style that the parent plottable shall use for selected scatter points. The + plottable's original (unselected) scatter style must be passed as \a unselectedStyle. Depending + on the setting of \ref setUsedScatterProperties, the returned scatter style is a mixture of this + selecion decorator's scatter style (\ref setScatterStyle), and \a unselectedStyle. + + \see applyPen, applyBrush, setScatterStyle +*/ +QCPScatterStyle QCPSelectionDecorator::getFinalScatterStyle(const QCPScatterStyle &unselectedStyle) const +{ + QCPScatterStyle result(unselectedStyle); + result.setFromOther(mScatterStyle, mUsedScatterProperties); + + // if style shall inherit pen from plottable (has no own pen defined), give it the selected + // plottable pen explicitly, so it doesn't use the unselected plottable pen when used in the + // plottable: + if (!result.isPenDefined()) + result.setPen(mPen); + + return result; +} + +/*! + Copies all properties (e.g. color, fill, scatter style) of the \a other selection decorator to + this selection decorator. +*/ +void QCPSelectionDecorator::copyFrom(const QCPSelectionDecorator *other) +{ + setPen(other->pen()); + setBrush(other->brush()); + setScatterStyle(other->scatterStyle(), other->usedScatterProperties()); +} + +/*! + This method is called by all plottables' draw methods to allow custom selection decorations to be + drawn. Use the passed \a painter to perform the drawing operations. \a selection carries the data + selection for which the decoration shall be drawn. + + The default base class implementation of \ref QCPSelectionDecorator has no special decoration, so + this method does nothing. +*/ +void QCPSelectionDecorator::drawDecoration(QCPPainter *painter, QCPDataSelection selection) +{ + Q_UNUSED(painter) + Q_UNUSED(selection) +} + +/*! \internal + + This method is called as soon as a selection decorator is associated with a plottable, by a call + to \ref QCPAbstractPlottable::setSelectionDecorator. This way the selection decorator can obtain a pointer to the plottable that uses it (e.g. to access + data points via the \ref QCPAbstractPlottable::interface1D interface). + + If the selection decorator was already added to a different plottable before, this method aborts + the registration and returns false. +*/ +bool QCPSelectionDecorator::registerWithPlottable(QCPAbstractPlottable *plottable) +{ + if (!mPlottable) + { + mPlottable = plottable; + return true; + } else + { + qDebug() << Q_FUNC_INFO << "This selection decorator is already registered with plottable:" << reinterpret_cast(mPlottable); + return false; + } +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPAbstractPlottable +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPAbstractPlottable + \brief The abstract base class for all data representing objects in a plot. + + It defines a very basic interface like name, pen, brush, visibility etc. Since this class is + abstract, it can't be instantiated. Use one of the subclasses or create a subclass yourself to + create new ways of displaying data (see "Creating own plottables" below). Plottables that display + one-dimensional data (i.e. data points have a single key dimension and one or multiple values at + each key) are based off of the template subclass \ref QCPAbstractPlottable1D, see details + there. + + All further specifics are in the subclasses, for example: + \li A normal graph with possibly a line and/or scatter points \ref QCPGraph + (typically created with \ref QCustomPlot::addGraph) + \li A parametric curve: \ref QCPCurve + \li A bar chart: \ref QCPBars + \li A statistical box plot: \ref QCPStatisticalBox + \li A color encoded two-dimensional map: \ref QCPColorMap + \li An OHLC/Candlestick chart: \ref QCPFinancial + + \section plottables-subclassing Creating own plottables + + Subclassing directly from QCPAbstractPlottable is only recommended if you wish to display + two-dimensional data like \ref QCPColorMap, i.e. two logical key dimensions and one (or more) + data dimensions. If you want to display data with only one logical key dimension, you should + rather derive from \ref QCPAbstractPlottable1D. + + If subclassing QCPAbstractPlottable directly, these are the pure virtual functions you must + implement: + \li \ref selectTest + \li \ref draw + \li \ref drawLegendIcon + \li \ref getKeyRange + \li \ref getValueRange + + See the documentation of those functions for what they need to do. + + For drawing your plot, you can use the \ref coordsToPixels functions to translate a point in plot + coordinates to pixel coordinates. This function is quite convenient, because it takes the + orientation of the key and value axes into account for you (x and y are swapped when the key axis + is vertical and the value axis horizontal). If you are worried about performance (i.e. you need + to translate many points in a loop like QCPGraph), you can directly use \ref + QCPAxis::coordToPixel. However, you must then take care about the orientation of the axis + yourself. + + Here are some important members you inherit from QCPAbstractPlottable: + + + + + + + + + + + + + + + + + + + + + + + + + + +
QCustomPlot *\b mParentPlotA pointer to the parent QCustomPlot instance. The parent plot is inferred from the axes that are passed in the constructor.
QString \b mNameThe name of the plottable.
QPen \b mPenThe generic pen of the plottable. You should use this pen for the most prominent data representing lines in the plottable + (e.g QCPGraph uses this pen for its graph lines and scatters)
QBrush \b mBrushThe generic brush of the plottable. You should use this brush for the most prominent fillable structures in the plottable + (e.g. QCPGraph uses this brush to control filling under the graph)
QPointer<\ref QCPAxis> \b mKeyAxis, \b mValueAxisThe key and value axes this plottable is attached to. Call their QCPAxis::coordToPixel functions to translate coordinates + to pixels in either the key or value dimension. Make sure to check whether the pointer is null before using it. If one of + the axes is null, don't draw the plottable.
\ref QCPSelectionDecorator \b mSelectionDecoratorThe currently set selection decorator which specifies how selected data of the plottable shall be drawn and decorated. + When drawing your data, you must consult this decorator for the appropriate pen/brush before drawing unselected/selected data segments. + Finally, you should call its \ref QCPSelectionDecorator::drawDecoration method at the end of your \ref draw implementation.
\ref QCP::SelectionType \b mSelectableIn which composition, if at all, this plottable's data may be selected. Enforcing this setting on the data selection is done + by QCPAbstractPlottable automatically.
\ref QCPDataSelection \b mSelectionHolds the current selection state of the plottable's data, i.e. the selected data ranges (\ref QCPDataRange).
+*/ + +/* start of documentation of inline functions */ + +/*! \fn QCPSelectionDecorator *QCPAbstractPlottable::selectionDecorator() const + + Provides access to the selection decorator of this plottable. The selection decorator controls + how selected data ranges are drawn (e.g. their pen color and fill), see \ref + QCPSelectionDecorator for details. + + If you wish to use an own \ref QCPSelectionDecorator subclass, pass an instance of it to \ref + setSelectionDecorator. +*/ + +/*! \fn bool QCPAbstractPlottable::selected() const + + Returns true if there are any data points of the plottable currently selected. Use \ref selection + to retrieve the current \ref QCPDataSelection. +*/ + +/*! \fn QCPDataSelection QCPAbstractPlottable::selection() const + + Returns a \ref QCPDataSelection encompassing all the data points that are currently selected on + this plottable. + + \see selected, setSelection, setSelectable +*/ + +/*! \fn virtual QCPPlottableInterface1D *QCPAbstractPlottable::interface1D() + + If this plottable is a one-dimensional plottable, i.e. it implements the \ref + QCPPlottableInterface1D, returns the \a this pointer with that type. Otherwise (e.g. in the case + of a \ref QCPColorMap) returns zero. + + You can use this method to gain read access to data coordinates while holding a pointer to the + abstract base class only. +*/ + +/* end of documentation of inline functions */ +/* start of documentation of pure virtual functions */ + +/*! \fn void QCPAbstractPlottable::drawLegendIcon(QCPPainter *painter, const QRect &rect) const = 0 + \internal + + called by QCPLegend::draw (via QCPPlottableLegendItem::draw) to create a graphical representation + of this plottable inside \a rect, next to the plottable name. + + The passed \a painter has its cliprect set to \a rect, so painting outside of \a rect won't + appear outside the legend icon border. +*/ + +/*! \fn QCPRange QCPAbstractPlottable::getKeyRange(bool &foundRange, QCP::SignDomain inSignDomain) const = 0 + + Returns the coordinate range that all data in this plottable span in the key axis dimension. For + logarithmic plots, one can set \a inSignDomain to either \ref QCP::sdNegative or \ref + QCP::sdPositive in order to restrict the returned range to that sign domain. E.g. when only + negative range is wanted, set \a inSignDomain to \ref QCP::sdNegative and all positive points + will be ignored for range calculation. For no restriction, just set \a inSignDomain to \ref + QCP::sdBoth (default). \a foundRange is an output parameter that indicates whether a range could + be found or not. If this is false, you shouldn't use the returned range (e.g. no points in data). + + Note that \a foundRange is not the same as \ref QCPRange::validRange, since the range returned by + this function may have size zero (e.g. when there is only one data point). In this case \a + foundRange would return true, but the returned range is not a valid range in terms of \ref + QCPRange::validRange. + + \see rescaleAxes, getValueRange +*/ + +/*! \fn QCPRange QCPAbstractPlottable::getValueRange(bool &foundRange, QCP::SignDomain inSignDomain, const QCPRange &inKeyRange) const = 0 + + Returns the coordinate range that the data points in the specified key range (\a inKeyRange) span + in the value axis dimension. For logarithmic plots, one can set \a inSignDomain to either \ref + QCP::sdNegative or \ref QCP::sdPositive in order to restrict the returned range to that sign + domain. E.g. when only negative range is wanted, set \a inSignDomain to \ref QCP::sdNegative and + all positive points will be ignored for range calculation. For no restriction, just set \a + inSignDomain to \ref QCP::sdBoth (default). \a foundRange is an output parameter that indicates + whether a range could be found or not. If this is false, you shouldn't use the returned range + (e.g. no points in data). + + If \a inKeyRange has both lower and upper bound set to zero (is equal to QCPRange()), + all data points are considered, without any restriction on the keys. + + Note that \a foundRange is not the same as \ref QCPRange::validRange, since the range returned by + this function may have size zero (e.g. when there is only one data point). In this case \a + foundRange would return true, but the returned range is not a valid range in terms of \ref + QCPRange::validRange. + + \see rescaleAxes, getKeyRange +*/ + +/* end of documentation of pure virtual functions */ +/* start of documentation of signals */ + +/*! \fn void QCPAbstractPlottable::selectionChanged(bool selected) + + This signal is emitted when the selection state of this plottable has changed, either by user + interaction or by a direct call to \ref setSelection. The parameter \a selected indicates whether + there are any points selected or not. + + \see selectionChanged(const QCPDataSelection &selection) +*/ + +/*! \fn void QCPAbstractPlottable::selectionChanged(const QCPDataSelection &selection) + + This signal is emitted when the selection state of this plottable has changed, either by user + interaction or by a direct call to \ref setSelection. The parameter \a selection holds the + currently selected data ranges. + + \see selectionChanged(bool selected) +*/ + +/*! \fn void QCPAbstractPlottable::selectableChanged(QCP::SelectionType selectable); + + This signal is emitted when the selectability of this plottable has changed. + + \see setSelectable +*/ + +/* end of documentation of signals */ + +/*! + Constructs an abstract plottable which uses \a keyAxis as its key axis ("x") and \a valueAxis as + its value axis ("y"). \a keyAxis and \a valueAxis must reside in the same QCustomPlot instance + and have perpendicular orientations. If either of these restrictions is violated, a corresponding + message is printed to the debug output (qDebug), the construction is not aborted, though. + + Since QCPAbstractPlottable is an abstract class that defines the basic interface to plottables, + it can't be directly instantiated. + + You probably want one of the subclasses like \ref QCPGraph or \ref QCPCurve instead. +*/ +QCPAbstractPlottable::QCPAbstractPlottable(QCPAxis *keyAxis, QCPAxis *valueAxis) : + QCPLayerable(keyAxis->parentPlot(), QString(), keyAxis->axisRect()), + mName(), + mAntialiasedFill(true), + mAntialiasedScatters(true), + mPen(Qt::black), + mBrush(Qt::NoBrush), + mKeyAxis(keyAxis), + mValueAxis(valueAxis), + mSelectable(QCP::stWhole), + mSelectionDecorator(0) +{ + if (keyAxis->parentPlot() != valueAxis->parentPlot()) + qDebug() << Q_FUNC_INFO << "Parent plot of keyAxis is not the same as that of valueAxis."; + if (keyAxis->orientation() == valueAxis->orientation()) + qDebug() << Q_FUNC_INFO << "keyAxis and valueAxis must be orthogonal to each other."; + + mParentPlot->registerPlottable(this); + setSelectionDecorator(new QCPSelectionDecorator); +} + +QCPAbstractPlottable::~QCPAbstractPlottable() +{ + if (mSelectionDecorator) + { + delete mSelectionDecorator; + mSelectionDecorator = 0; + } +} + +/*! + The name is the textual representation of this plottable as it is displayed in the legend + (\ref QCPLegend). It may contain any UTF-8 characters, including newlines. +*/ +void QCPAbstractPlottable::setName(const QString &name) +{ + mName = name; +} + +/*! + Sets whether fills of this plottable are drawn antialiased or not. + + Note that this setting may be overridden by \ref QCustomPlot::setAntialiasedElements and \ref + QCustomPlot::setNotAntialiasedElements. +*/ +void QCPAbstractPlottable::setAntialiasedFill(bool enabled) +{ + mAntialiasedFill = enabled; +} + +/*! + Sets whether the scatter symbols of this plottable are drawn antialiased or not. + + Note that this setting may be overridden by \ref QCustomPlot::setAntialiasedElements and \ref + QCustomPlot::setNotAntialiasedElements. +*/ +void QCPAbstractPlottable::setAntialiasedScatters(bool enabled) +{ + mAntialiasedScatters = enabled; +} + +/*! + The pen is used to draw basic lines that make up the plottable representation in the + plot. + + For example, the \ref QCPGraph subclass draws its graph lines with this pen. + + \see setBrush +*/ +void QCPAbstractPlottable::setPen(const QPen &pen) +{ + mPen = pen; +} + +/*! + The brush is used to draw basic fills of the plottable representation in the + plot. The Fill can be a color, gradient or texture, see the usage of QBrush. + + For example, the \ref QCPGraph subclass draws the fill under the graph with this brush, when + it's not set to Qt::NoBrush. + + \see setPen +*/ +void QCPAbstractPlottable::setBrush(const QBrush &brush) +{ + mBrush = brush; +} + +/*! + The key axis of a plottable can be set to any axis of a QCustomPlot, as long as it is orthogonal + to the plottable's value axis. This function performs no checks to make sure this is the case. + The typical mathematical choice is to use the x-axis (QCustomPlot::xAxis) as key axis and the + y-axis (QCustomPlot::yAxis) as value axis. + + Normally, the key and value axes are set in the constructor of the plottable (or \ref + QCustomPlot::addGraph when working with QCPGraphs through the dedicated graph interface). + + \see setValueAxis +*/ +void QCPAbstractPlottable::setKeyAxis(QCPAxis *axis) +{ + mKeyAxis = axis; +} + +/*! + The value axis of a plottable can be set to any axis of a QCustomPlot, as long as it is + orthogonal to the plottable's key axis. This function performs no checks to make sure this is the + case. The typical mathematical choice is to use the x-axis (QCustomPlot::xAxis) as key axis and + the y-axis (QCustomPlot::yAxis) as value axis. + + Normally, the key and value axes are set in the constructor of the plottable (or \ref + QCustomPlot::addGraph when working with QCPGraphs through the dedicated graph interface). + + \see setKeyAxis +*/ +void QCPAbstractPlottable::setValueAxis(QCPAxis *axis) +{ + mValueAxis = axis; +} + + +/*! + Sets which data ranges of this plottable are selected. Selected data ranges are drawn differently + (e.g. color) in the plot. This can be controlled via the selection decorator (see \ref + selectionDecorator). + + The entire selection mechanism for plottables is handled automatically when \ref + QCustomPlot::setInteractions contains iSelectPlottables. You only need to call this function when + you wish to change the selection state programmatically. + + Using \ref setSelectable you can further specify for each plottable whether and to which + granularity it is selectable. If \a selection is not compatible with the current \ref + QCP::SelectionType set via \ref setSelectable, the resulting selection will be adjusted + accordingly (see \ref QCPDataSelection::enforceType). + + emits the \ref selectionChanged signal when \a selected is different from the previous selection state. + + \see setSelectable, selectTest +*/ +void QCPAbstractPlottable::setSelection(QCPDataSelection selection) +{ + selection.enforceType(mSelectable); + if (mSelection != selection) + { + mSelection = selection; + emit selectionChanged(selected()); + emit selectionChanged(mSelection); + } +} + +/*! + Use this method to set an own QCPSelectionDecorator (subclass) instance. This allows you to + customize the visual representation of selected data ranges further than by using the default + QCPSelectionDecorator. + + The plottable takes ownership of the \a decorator. + + The currently set decorator can be accessed via \ref selectionDecorator. +*/ +void QCPAbstractPlottable::setSelectionDecorator(QCPSelectionDecorator *decorator) +{ + if (decorator) + { + if (decorator->registerWithPlottable(this)) + { + if (mSelectionDecorator) // delete old decorator if necessary + delete mSelectionDecorator; + mSelectionDecorator = decorator; + } + } else if (mSelectionDecorator) // just clear decorator + { + delete mSelectionDecorator; + mSelectionDecorator = 0; + } +} + +/*! + Sets whether and to which granularity this plottable can be selected. + + A selection can happen by clicking on the QCustomPlot surface (When \ref + QCustomPlot::setInteractions contains \ref QCP::iSelectPlottables), by dragging a selection rect + (When \ref QCustomPlot::setSelectionRectMode is \ref QCP::srmSelect), or programmatically by + calling \ref setSelection. + + \see setSelection, QCP::SelectionType +*/ +void QCPAbstractPlottable::setSelectable(QCP::SelectionType selectable) +{ + if (mSelectable != selectable) + { + mSelectable = selectable; + QCPDataSelection oldSelection = mSelection; + mSelection.enforceType(mSelectable); + emit selectableChanged(mSelectable); + if (mSelection != oldSelection) + { + emit selectionChanged(selected()); + emit selectionChanged(mSelection); + } + } +} + + +/*! + Convenience function for transforming a key/value pair to pixels on the QCustomPlot surface, + taking the orientations of the axes associated with this plottable into account (e.g. whether key + represents x or y). + + \a key and \a value are transformed to the coodinates in pixels and are written to \a x and \a y. + + \see pixelsToCoords, QCPAxis::coordToPixel +*/ +void QCPAbstractPlottable::coordsToPixels(double key, double value, double &x, double &y) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + + if (keyAxis->orientation() == Qt::Horizontal) + { + x = keyAxis->coordToPixel(key); + y = valueAxis->coordToPixel(value); + } else + { + y = keyAxis->coordToPixel(key); + x = valueAxis->coordToPixel(value); + } +} + +/*! \overload + + Transforms the given \a key and \a value to pixel coordinates and returns them in a QPointF. +*/ +const QPointF QCPAbstractPlottable::coordsToPixels(double key, double value) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return QPointF(); } + + if (keyAxis->orientation() == Qt::Horizontal) + return QPointF(keyAxis->coordToPixel(key), valueAxis->coordToPixel(value)); + else + return QPointF(valueAxis->coordToPixel(value), keyAxis->coordToPixel(key)); +} + +/*! + Convenience function for transforming a x/y pixel pair on the QCustomPlot surface to plot coordinates, + taking the orientations of the axes associated with this plottable into account (e.g. whether key + represents x or y). + + \a x and \a y are transformed to the plot coodinates and are written to \a key and \a value. + + \see coordsToPixels, QCPAxis::coordToPixel +*/ +void QCPAbstractPlottable::pixelsToCoords(double x, double y, double &key, double &value) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + + if (keyAxis->orientation() == Qt::Horizontal) + { + key = keyAxis->pixelToCoord(x); + value = valueAxis->pixelToCoord(y); + } else + { + key = keyAxis->pixelToCoord(y); + value = valueAxis->pixelToCoord(x); + } +} + +/*! \overload + + Returns the pixel input \a pixelPos as plot coordinates \a key and \a value. +*/ +void QCPAbstractPlottable::pixelsToCoords(const QPointF &pixelPos, double &key, double &value) const +{ + pixelsToCoords(pixelPos.x(), pixelPos.y(), key, value); +} + +/*! + Rescales the key and value axes associated with this plottable to contain all displayed data, so + the whole plottable is visible. If the scaling of an axis is logarithmic, rescaleAxes will make + sure not to rescale to an illegal range i.e. a range containing different signs and/or zero. + Instead it will stay in the current sign domain and ignore all parts of the plottable that lie + outside of that domain. + + \a onlyEnlarge makes sure the ranges are only expanded, never reduced. So it's possible to show + multiple plottables in their entirety by multiple calls to rescaleAxes where the first call has + \a onlyEnlarge set to false (the default), and all subsequent set to true. + + \see rescaleKeyAxis, rescaleValueAxis, QCustomPlot::rescaleAxes, QCPAxis::rescale +*/ +void QCPAbstractPlottable::rescaleAxes(bool onlyEnlarge) const +{ + rescaleKeyAxis(onlyEnlarge); + rescaleValueAxis(onlyEnlarge); +} + +/*! + Rescales the key axis of the plottable so the whole plottable is visible. + + See \ref rescaleAxes for detailed behaviour. +*/ +void QCPAbstractPlottable::rescaleKeyAxis(bool onlyEnlarge) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + if (!keyAxis) { qDebug() << Q_FUNC_INFO << "invalid key axis"; return; } + + QCP::SignDomain signDomain = QCP::sdBoth; + if (keyAxis->scaleType() == QCPAxis::stLogarithmic) + signDomain = (keyAxis->range().upper < 0 ? QCP::sdNegative : QCP::sdPositive); + + bool foundRange; + QCPRange newRange = getKeyRange(foundRange, signDomain); + if (foundRange) + { + if (onlyEnlarge) + newRange.expand(keyAxis->range()); + if (!QCPRange::validRange(newRange)) // likely due to range being zero (plottable has only constant data in this axis dimension), shift current range to at least center the plottable + { + double center = (newRange.lower+newRange.upper)*0.5; // upper and lower should be equal anyway, but just to make sure, incase validRange returned false for other reason + if (keyAxis->scaleType() == QCPAxis::stLinear) + { + newRange.lower = center-keyAxis->range().size()/2.0; + newRange.upper = center+keyAxis->range().size()/2.0; + } else // scaleType() == stLogarithmic + { + newRange.lower = center/qSqrt(keyAxis->range().upper/keyAxis->range().lower); + newRange.upper = center*qSqrt(keyAxis->range().upper/keyAxis->range().lower); + } + } + keyAxis->setRange(newRange); + } +} + +/*! + Rescales the value axis of the plottable so the whole plottable is visible. If \a inKeyRange is + set to true, only the data points which are in the currently visible key axis range are + considered. + + Returns true if the axis was actually scaled. This might not be the case if this plottable has an + invalid range, e.g. because it has no data points. + + See \ref rescaleAxes for detailed behaviour. +*/ +void QCPAbstractPlottable::rescaleValueAxis(bool onlyEnlarge, bool inKeyRange) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + + QCP::SignDomain signDomain = QCP::sdBoth; + if (valueAxis->scaleType() == QCPAxis::stLogarithmic) + signDomain = (valueAxis->range().upper < 0 ? QCP::sdNegative : QCP::sdPositive); + + bool foundRange; + QCPRange newRange = getValueRange(foundRange, signDomain, inKeyRange ? keyAxis->range() : QCPRange()); + if (foundRange) + { + if (onlyEnlarge) + newRange.expand(valueAxis->range()); + if (!QCPRange::validRange(newRange)) // likely due to range being zero (plottable has only constant data in this axis dimension), shift current range to at least center the plottable + { + double center = (newRange.lower+newRange.upper)*0.5; // upper and lower should be equal anyway, but just to make sure, incase validRange returned false for other reason + if (valueAxis->scaleType() == QCPAxis::stLinear) + { + newRange.lower = center-valueAxis->range().size()/2.0; + newRange.upper = center+valueAxis->range().size()/2.0; + } else // scaleType() == stLogarithmic + { + newRange.lower = center/qSqrt(valueAxis->range().upper/valueAxis->range().lower); + newRange.upper = center*qSqrt(valueAxis->range().upper/valueAxis->range().lower); + } + } + valueAxis->setRange(newRange); + } +} + +/*! \overload + + Adds this plottable to the specified \a legend. + + Creates a QCPPlottableLegendItem which is inserted into the legend. Returns true on success, i.e. + when the legend exists and a legend item associated with this plottable isn't already in the + legend. + + If the plottable needs a more specialized representation in the legend, you can create a + corresponding subclass of \ref QCPPlottableLegendItem and add it to the legend manually instead + of calling this method. + + \see removeFromLegend, QCPLegend::addItem +*/ +bool QCPAbstractPlottable::addToLegend(QCPLegend *legend) +{ + if (!legend) + { + qDebug() << Q_FUNC_INFO << "passed legend is null"; + return false; + } + if (legend->parentPlot() != mParentPlot) + { + qDebug() << Q_FUNC_INFO << "passed legend isn't in the same QCustomPlot as this plottable"; + return false; + } + + if (!legend->hasItemWithPlottable(this)) + { + legend->addItem(new QCPPlottableLegendItem(legend, this)); + return true; + } else + return false; +} + +/*! \overload + + Adds this plottable to the legend of the parent QCustomPlot (\ref QCustomPlot::legend). + + \see removeFromLegend +*/ +bool QCPAbstractPlottable::addToLegend() +{ + if (!mParentPlot || !mParentPlot->legend) + return false; + else + return addToLegend(mParentPlot->legend); +} + +/*! \overload + + Removes the plottable from the specifed \a legend. This means the \ref QCPPlottableLegendItem + that is associated with this plottable is removed. + + Returns true on success, i.e. if the legend exists and a legend item associated with this + plottable was found and removed. + + \see addToLegend, QCPLegend::removeItem +*/ +bool QCPAbstractPlottable::removeFromLegend(QCPLegend *legend) const +{ + if (!legend) + { + qDebug() << Q_FUNC_INFO << "passed legend is null"; + return false; + } + + if (QCPPlottableLegendItem *lip = legend->itemWithPlottable(this)) + return legend->removeItem(lip); + else + return false; +} + +/*! \overload + + Removes the plottable from the legend of the parent QCustomPlot. + + \see addToLegend +*/ +bool QCPAbstractPlottable::removeFromLegend() const +{ + if (!mParentPlot || !mParentPlot->legend) + return false; + else + return removeFromLegend(mParentPlot->legend); +} + +/* inherits documentation from base class */ +QRect QCPAbstractPlottable::clipRect() const +{ + if (mKeyAxis && mValueAxis) + return mKeyAxis.data()->axisRect()->rect() & mValueAxis.data()->axisRect()->rect(); + else + return QRect(); +} + +/* inherits documentation from base class */ +QCP::Interaction QCPAbstractPlottable::selectionCategory() const +{ + return QCP::iSelectPlottables; +} + +/*! \internal + + A convenience function to easily set the QPainter::Antialiased hint on the provided \a painter + before drawing plottable lines. + + This is the antialiasing state the painter passed to the \ref draw method is in by default. + + This function takes into account the local setting of the antialiasing flag as well as the + overrides set with \ref QCustomPlot::setAntialiasedElements and \ref + QCustomPlot::setNotAntialiasedElements. + + \seebaseclassmethod + + \see setAntialiased, applyFillAntialiasingHint, applyScattersAntialiasingHint +*/ +void QCPAbstractPlottable::applyDefaultAntialiasingHint(QCPPainter *painter) const +{ + applyAntialiasingHint(painter, mAntialiased, QCP::aePlottables); +} + +/*! \internal + + A convenience function to easily set the QPainter::Antialiased hint on the provided \a painter + before drawing plottable fills. + + This function takes into account the local setting of the antialiasing flag as well as the + overrides set with \ref QCustomPlot::setAntialiasedElements and \ref + QCustomPlot::setNotAntialiasedElements. + + \see setAntialiased, applyDefaultAntialiasingHint, applyScattersAntialiasingHint +*/ +void QCPAbstractPlottable::applyFillAntialiasingHint(QCPPainter *painter) const +{ + applyAntialiasingHint(painter, mAntialiasedFill, QCP::aeFills); +} + +/*! \internal + + A convenience function to easily set the QPainter::Antialiased hint on the provided \a painter + before drawing plottable scatter points. + + This function takes into account the local setting of the antialiasing flag as well as the + overrides set with \ref QCustomPlot::setAntialiasedElements and \ref + QCustomPlot::setNotAntialiasedElements. + + \see setAntialiased, applyFillAntialiasingHint, applyDefaultAntialiasingHint +*/ +void QCPAbstractPlottable::applyScattersAntialiasingHint(QCPPainter *painter) const +{ + applyAntialiasingHint(painter, mAntialiasedScatters, QCP::aeScatters); +} + +/* inherits documentation from base class */ +void QCPAbstractPlottable::selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) +{ + Q_UNUSED(event) + + if (mSelectable != QCP::stNone) + { + QCPDataSelection newSelection = details.value(); + QCPDataSelection selectionBefore = mSelection; + if (additive) + { + if (mSelectable == QCP::stWhole) // in whole selection mode, we toggle to no selection even if currently unselected point was hit + { + if (selected()) + setSelection(QCPDataSelection()); + else + setSelection(newSelection); + } else // in all other selection modes we toggle selections of homogeneously selected/unselected segments + { + if (mSelection.contains(newSelection)) // if entire newSelection is already selected, toggle selection + setSelection(mSelection-newSelection); + else + setSelection(mSelection+newSelection); + } + } else + setSelection(newSelection); + if (selectionStateChanged) + *selectionStateChanged = mSelection != selectionBefore; + } +} + +/* inherits documentation from base class */ +void QCPAbstractPlottable::deselectEvent(bool *selectionStateChanged) +{ + if (mSelectable != QCP::stNone) + { + QCPDataSelection selectionBefore = mSelection; + setSelection(QCPDataSelection()); + if (selectionStateChanged) + *selectionStateChanged = mSelection != selectionBefore; + } +} +/* end of 'src/plottable.cpp' */ + + +/* including file 'src/item.cpp', size 49271 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPItemAnchor +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPItemAnchor + \brief An anchor of an item to which positions can be attached to. + + An item (QCPAbstractItem) may have one or more anchors. Unlike QCPItemPosition, an anchor doesn't + control anything on its item, but provides a way to tie other items via their positions to the + anchor. + + For example, a QCPItemRect is defined by its positions \a topLeft and \a bottomRight. + Additionally it has various anchors like \a top, \a topRight or \a bottomLeft etc. So you can + attach the \a start (which is a QCPItemPosition) of a QCPItemLine to one of the anchors by + calling QCPItemPosition::setParentAnchor on \a start, passing the wanted anchor of the + QCPItemRect. This way the start of the line will now always follow the respective anchor location + on the rect item. + + Note that QCPItemPosition derives from QCPItemAnchor, so every position can also serve as an + anchor to other positions. + + To learn how to provide anchors in your own item subclasses, see the subclassing section of the + QCPAbstractItem documentation. +*/ + +/* start documentation of inline functions */ + +/*! \fn virtual QCPItemPosition *QCPItemAnchor::toQCPItemPosition() + + Returns 0 if this instance is merely a QCPItemAnchor, and a valid pointer of type QCPItemPosition* if + it actually is a QCPItemPosition (which is a subclass of QCPItemAnchor). + + This safe downcast functionality could also be achieved with a dynamic_cast. However, QCustomPlot avoids + dynamic_cast to work with projects that don't have RTTI support enabled (e.g. -fno-rtti flag with + gcc compiler). +*/ + +/* end documentation of inline functions */ + +/*! + Creates a new QCPItemAnchor. You shouldn't create QCPItemAnchor instances directly, even if + you want to make a new item subclass. Use \ref QCPAbstractItem::createAnchor instead, as + explained in the subclassing section of the QCPAbstractItem documentation. +*/ +QCPItemAnchor::QCPItemAnchor(QCustomPlot *parentPlot, QCPAbstractItem *parentItem, const QString &name, int anchorId) : + mName(name), + mParentPlot(parentPlot), + mParentItem(parentItem), + mAnchorId(anchorId) +{ +} + +QCPItemAnchor::~QCPItemAnchor() +{ + // unregister as parent at children: + foreach (QCPItemPosition *child, mChildrenX.toList()) + { + if (child->parentAnchorX() == this) + child->setParentAnchorX(0); // this acts back on this anchor and child removes itself from mChildrenX + } + foreach (QCPItemPosition *child, mChildrenY.toList()) + { + if (child->parentAnchorY() == this) + child->setParentAnchorY(0); // this acts back on this anchor and child removes itself from mChildrenY + } +} + +/*! + Returns the final absolute pixel position of the QCPItemAnchor on the QCustomPlot surface. + + The pixel information is internally retrieved via QCPAbstractItem::anchorPixelPosition of the + parent item, QCPItemAnchor is just an intermediary. +*/ +QPointF QCPItemAnchor::pixelPosition() const +{ + if (mParentItem) + { + if (mAnchorId > -1) + { + return mParentItem->anchorPixelPosition(mAnchorId); + } else + { + qDebug() << Q_FUNC_INFO << "no valid anchor id set:" << mAnchorId; + return QPointF(); + } + } else + { + qDebug() << Q_FUNC_INFO << "no parent item set"; + return QPointF(); + } +} + +/*! \internal + + Adds \a pos to the childX list of this anchor, which keeps track of which children use this + anchor as parent anchor for the respective coordinate. This is necessary to notify the children + prior to destruction of the anchor. + + Note that this function does not change the parent setting in \a pos. +*/ +void QCPItemAnchor::addChildX(QCPItemPosition *pos) +{ + if (!mChildrenX.contains(pos)) + mChildrenX.insert(pos); + else + qDebug() << Q_FUNC_INFO << "provided pos is child already" << reinterpret_cast(pos); +} + +/*! \internal + + Removes \a pos from the childX list of this anchor. + + Note that this function does not change the parent setting in \a pos. +*/ +void QCPItemAnchor::removeChildX(QCPItemPosition *pos) +{ + if (!mChildrenX.remove(pos)) + qDebug() << Q_FUNC_INFO << "provided pos isn't child" << reinterpret_cast(pos); +} + +/*! \internal + + Adds \a pos to the childY list of this anchor, which keeps track of which children use this + anchor as parent anchor for the respective coordinate. This is necessary to notify the children + prior to destruction of the anchor. + + Note that this function does not change the parent setting in \a pos. +*/ +void QCPItemAnchor::addChildY(QCPItemPosition *pos) +{ + if (!mChildrenY.contains(pos)) + mChildrenY.insert(pos); + else + qDebug() << Q_FUNC_INFO << "provided pos is child already" << reinterpret_cast(pos); +} + +/*! \internal + + Removes \a pos from the childY list of this anchor. + + Note that this function does not change the parent setting in \a pos. +*/ +void QCPItemAnchor::removeChildY(QCPItemPosition *pos) +{ + if (!mChildrenY.remove(pos)) + qDebug() << Q_FUNC_INFO << "provided pos isn't child" << reinterpret_cast(pos); +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPItemPosition +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPItemPosition + \brief Manages the position of an item. + + Every item has at least one public QCPItemPosition member pointer which provides ways to position the + item on the QCustomPlot surface. Some items have multiple positions, for example QCPItemRect has two: + \a topLeft and \a bottomRight. + + QCPItemPosition has a type (\ref PositionType) that can be set with \ref setType. This type + defines how coordinates passed to \ref setCoords are to be interpreted, e.g. as absolute pixel + coordinates, as plot coordinates of certain axes, etc. For more advanced plots it is also + possible to assign different types per X/Y coordinate of the position (see \ref setTypeX, \ref + setTypeY). This way an item could be positioned at a fixed pixel distance from the top in the Y + direction, while following a plot coordinate in the X direction. + + A QCPItemPosition may have a parent QCPItemAnchor, see \ref setParentAnchor. This way you can tie + multiple items together. If the QCPItemPosition has a parent, its coordinates (\ref setCoords) + are considered to be absolute pixels in the reference frame of the parent anchor, where (0, 0) + means directly ontop of the parent anchor. For example, You could attach the \a start position of + a QCPItemLine to the \a bottom anchor of a QCPItemText to make the starting point of the line + always be centered under the text label, no matter where the text is moved to. For more advanced + plots, it is possible to assign different parent anchors per X/Y coordinate of the position, see + \ref setParentAnchorX, \ref setParentAnchorY. This way an item could follow another item in the X + direction but stay at a fixed position in the Y direction. Or even follow item A in X, and item B + in Y. + + Note that every QCPItemPosition inherits from QCPItemAnchor and thus can itself be used as parent + anchor for other positions. + + To set the apparent pixel position on the QCustomPlot surface directly, use \ref setPixelPosition. This + works no matter what type this QCPItemPosition is or what parent-child situation it is in, as \ref + setPixelPosition transforms the coordinates appropriately, to make the position appear at the specified + pixel values. +*/ + +/* start documentation of inline functions */ + +/*! \fn QCPItemPosition::PositionType *QCPItemPosition::type() const + + Returns the current position type. + + If different types were set for X and Y (\ref setTypeX, \ref setTypeY), this method returns the + type of the X coordinate. In that case rather use \a typeX() and \a typeY(). + + \see setType +*/ + +/*! \fn QCPItemAnchor *QCPItemPosition::parentAnchor() const + + Returns the current parent anchor. + + If different parent anchors were set for X and Y (\ref setParentAnchorX, \ref setParentAnchorY), + this method returns the parent anchor of the Y coordinate. In that case rather use \a + parentAnchorX() and \a parentAnchorY(). + + \see setParentAnchor +*/ + +/* end documentation of inline functions */ + +/*! + Creates a new QCPItemPosition. You shouldn't create QCPItemPosition instances directly, even if + you want to make a new item subclass. Use \ref QCPAbstractItem::createPosition instead, as + explained in the subclassing section of the QCPAbstractItem documentation. +*/ +QCPItemPosition::QCPItemPosition(QCustomPlot *parentPlot, QCPAbstractItem *parentItem, const QString &name) : + QCPItemAnchor(parentPlot, parentItem, name), + mPositionTypeX(ptAbsolute), + mPositionTypeY(ptAbsolute), + mKey(0), + mValue(0), + mParentAnchorX(0), + mParentAnchorY(0) +{ +} + +QCPItemPosition::~QCPItemPosition() +{ + // unregister as parent at children: + // Note: this is done in ~QCPItemAnchor again, but it's important QCPItemPosition does it itself, because only then + // the setParentAnchor(0) call the correct QCPItemPosition::pixelPosition function instead of QCPItemAnchor::pixelPosition + foreach (QCPItemPosition *child, mChildrenX.toList()) + { + if (child->parentAnchorX() == this) + child->setParentAnchorX(0); // this acts back on this anchor and child removes itself from mChildrenX + } + foreach (QCPItemPosition *child, mChildrenY.toList()) + { + if (child->parentAnchorY() == this) + child->setParentAnchorY(0); // this acts back on this anchor and child removes itself from mChildrenY + } + // unregister as child in parent: + if (mParentAnchorX) + mParentAnchorX->removeChildX(this); + if (mParentAnchorY) + mParentAnchorY->removeChildY(this); +} + +/* can't make this a header inline function, because QPointer breaks with forward declared types, see QTBUG-29588 */ +QCPAxisRect *QCPItemPosition::axisRect() const +{ + return mAxisRect.data(); +} + +/*! + Sets the type of the position. The type defines how the coordinates passed to \ref setCoords + should be handled and how the QCPItemPosition should behave in the plot. + + The possible values for \a type can be separated in two main categories: + + \li The position is regarded as a point in plot coordinates. This corresponds to \ref ptPlotCoords + and requires two axes that define the plot coordinate system. They can be specified with \ref setAxes. + By default, the QCustomPlot's x- and yAxis are used. + + \li The position is fixed on the QCustomPlot surface, i.e. independent of axis ranges. This + corresponds to all other types, i.e. \ref ptAbsolute, \ref ptViewportRatio and \ref + ptAxisRectRatio. They differ only in the way the absolute position is described, see the + documentation of \ref PositionType for details. For \ref ptAxisRectRatio, note that you can specify + the axis rect with \ref setAxisRect. By default this is set to the main axis rect. + + Note that the position type \ref ptPlotCoords is only available (and sensible) when the position + has no parent anchor (\ref setParentAnchor). + + If the type is changed, the apparent pixel position on the plot is preserved. This means + the coordinates as retrieved with coords() and set with \ref setCoords may change in the process. + + This method sets the type for both X and Y directions. It is also possible to set different types + for X and Y, see \ref setTypeX, \ref setTypeY. +*/ +void QCPItemPosition::setType(QCPItemPosition::PositionType type) +{ + setTypeX(type); + setTypeY(type); +} + +/*! + This method sets the position type of the X coordinate to \a type. + + For a detailed description of what a position type is, see the documentation of \ref setType. + + \see setType, setTypeY +*/ +void QCPItemPosition::setTypeX(QCPItemPosition::PositionType type) +{ + if (mPositionTypeX != type) + { + // if switching from or to coordinate type that isn't valid (e.g. because axes or axis rect + // were deleted), don't try to recover the pixelPosition() because it would output a qDebug warning. + bool retainPixelPosition = true; + if ((mPositionTypeX == ptPlotCoords || type == ptPlotCoords) && (!mKeyAxis || !mValueAxis)) + retainPixelPosition = false; + if ((mPositionTypeX == ptAxisRectRatio || type == ptAxisRectRatio) && (!mAxisRect)) + retainPixelPosition = false; + + QPointF pixel; + if (retainPixelPosition) + pixel = pixelPosition(); + + mPositionTypeX = type; + + if (retainPixelPosition) + setPixelPosition(pixel); + } +} + +/*! + This method sets the position type of the Y coordinate to \a type. + + For a detailed description of what a position type is, see the documentation of \ref setType. + + \see setType, setTypeX +*/ +void QCPItemPosition::setTypeY(QCPItemPosition::PositionType type) +{ + if (mPositionTypeY != type) + { + // if switching from or to coordinate type that isn't valid (e.g. because axes or axis rect + // were deleted), don't try to recover the pixelPosition() because it would output a qDebug warning. + bool retainPixelPosition = true; + if ((mPositionTypeY == ptPlotCoords || type == ptPlotCoords) && (!mKeyAxis || !mValueAxis)) + retainPixelPosition = false; + if ((mPositionTypeY == ptAxisRectRatio || type == ptAxisRectRatio) && (!mAxisRect)) + retainPixelPosition = false; + + QPointF pixel; + if (retainPixelPosition) + pixel = pixelPosition(); + + mPositionTypeY = type; + + if (retainPixelPosition) + setPixelPosition(pixel); + } +} + +/*! + Sets the parent of this QCPItemPosition to \a parentAnchor. This means the position will now + follow any position changes of the anchor. The local coordinate system of positions with a parent + anchor always is absolute pixels, with (0, 0) being exactly on top of the parent anchor. (Hence + the type shouldn't be set to \ref ptPlotCoords for positions with parent anchors.) + + if \a keepPixelPosition is true, the current pixel position of the QCPItemPosition is preserved + during reparenting. If it's set to false, the coordinates are set to (0, 0), i.e. the position + will be exactly on top of the parent anchor. + + To remove this QCPItemPosition from any parent anchor, set \a parentAnchor to 0. + + If the QCPItemPosition previously had no parent and the type is \ref ptPlotCoords, the type is + set to \ref ptAbsolute, to keep the position in a valid state. + + This method sets the parent anchor for both X and Y directions. It is also possible to set + different parents for X and Y, see \ref setParentAnchorX, \ref setParentAnchorY. +*/ +bool QCPItemPosition::setParentAnchor(QCPItemAnchor *parentAnchor, bool keepPixelPosition) +{ + bool successX = setParentAnchorX(parentAnchor, keepPixelPosition); + bool successY = setParentAnchorY(parentAnchor, keepPixelPosition); + return successX && successY; +} + +/*! + This method sets the parent anchor of the X coordinate to \a parentAnchor. + + For a detailed description of what a parent anchor is, see the documentation of \ref setParentAnchor. + + \see setParentAnchor, setParentAnchorY +*/ +bool QCPItemPosition::setParentAnchorX(QCPItemAnchor *parentAnchor, bool keepPixelPosition) +{ + // make sure self is not assigned as parent: + if (parentAnchor == this) + { + qDebug() << Q_FUNC_INFO << "can't set self as parent anchor" << reinterpret_cast(parentAnchor); + return false; + } + // make sure no recursive parent-child-relationships are created: + QCPItemAnchor *currentParent = parentAnchor; + while (currentParent) + { + if (QCPItemPosition *currentParentPos = currentParent->toQCPItemPosition()) + { + // is a QCPItemPosition, might have further parent, so keep iterating + if (currentParentPos == this) + { + qDebug() << Q_FUNC_INFO << "can't create recursive parent-child-relationship" << reinterpret_cast(parentAnchor); + return false; + } + currentParent = currentParentPos->parentAnchorX(); + } else + { + // is a QCPItemAnchor, can't have further parent. Now make sure the parent items aren't the + // same, to prevent a position being child of an anchor which itself depends on the position, + // because they're both on the same item: + if (currentParent->mParentItem == mParentItem) + { + qDebug() << Q_FUNC_INFO << "can't set parent to be an anchor which itself depends on this position" << reinterpret_cast(parentAnchor); + return false; + } + break; + } + } + + // if previously no parent set and PosType is still ptPlotCoords, set to ptAbsolute: + if (!mParentAnchorX && mPositionTypeX == ptPlotCoords) + setTypeX(ptAbsolute); + + // save pixel position: + QPointF pixelP; + if (keepPixelPosition) + pixelP = pixelPosition(); + // unregister at current parent anchor: + if (mParentAnchorX) + mParentAnchorX->removeChildX(this); + // register at new parent anchor: + if (parentAnchor) + parentAnchor->addChildX(this); + mParentAnchorX = parentAnchor; + // restore pixel position under new parent: + if (keepPixelPosition) + setPixelPosition(pixelP); + else + setCoords(0, coords().y()); + return true; +} + +/*! + This method sets the parent anchor of the Y coordinate to \a parentAnchor. + + For a detailed description of what a parent anchor is, see the documentation of \ref setParentAnchor. + + \see setParentAnchor, setParentAnchorX +*/ +bool QCPItemPosition::setParentAnchorY(QCPItemAnchor *parentAnchor, bool keepPixelPosition) +{ + // make sure self is not assigned as parent: + if (parentAnchor == this) + { + qDebug() << Q_FUNC_INFO << "can't set self as parent anchor" << reinterpret_cast(parentAnchor); + return false; + } + // make sure no recursive parent-child-relationships are created: + QCPItemAnchor *currentParent = parentAnchor; + while (currentParent) + { + if (QCPItemPosition *currentParentPos = currentParent->toQCPItemPosition()) + { + // is a QCPItemPosition, might have further parent, so keep iterating + if (currentParentPos == this) + { + qDebug() << Q_FUNC_INFO << "can't create recursive parent-child-relationship" << reinterpret_cast(parentAnchor); + return false; + } + currentParent = currentParentPos->parentAnchorY(); + } else + { + // is a QCPItemAnchor, can't have further parent. Now make sure the parent items aren't the + // same, to prevent a position being child of an anchor which itself depends on the position, + // because they're both on the same item: + if (currentParent->mParentItem == mParentItem) + { + qDebug() << Q_FUNC_INFO << "can't set parent to be an anchor which itself depends on this position" << reinterpret_cast(parentAnchor); + return false; + } + break; + } + } + + // if previously no parent set and PosType is still ptPlotCoords, set to ptAbsolute: + if (!mParentAnchorY && mPositionTypeY == ptPlotCoords) + setTypeY(ptAbsolute); + + // save pixel position: + QPointF pixelP; + if (keepPixelPosition) + pixelP = pixelPosition(); + // unregister at current parent anchor: + if (mParentAnchorY) + mParentAnchorY->removeChildY(this); + // register at new parent anchor: + if (parentAnchor) + parentAnchor->addChildY(this); + mParentAnchorY = parentAnchor; + // restore pixel position under new parent: + if (keepPixelPosition) + setPixelPosition(pixelP); + else + setCoords(coords().x(), 0); + return true; +} + +/*! + Sets the coordinates of this QCPItemPosition. What the coordinates mean, is defined by the type + (\ref setType, \ref setTypeX, \ref setTypeY). + + For example, if the type is \ref ptAbsolute, \a key and \a value mean the x and y pixel position + on the QCustomPlot surface. In that case the origin (0, 0) is in the top left corner of the + QCustomPlot viewport. If the type is \ref ptPlotCoords, \a key and \a value mean a point in the + plot coordinate system defined by the axes set by \ref setAxes. By default those are the + QCustomPlot's xAxis and yAxis. See the documentation of \ref setType for other available + coordinate types and their meaning. + + If different types were configured for X and Y (\ref setTypeX, \ref setTypeY), \a key and \a + value must also be provided in the different coordinate systems. Here, the X type refers to \a + key, and the Y type refers to \a value. + + \see setPixelPosition +*/ +void QCPItemPosition::setCoords(double key, double value) +{ + mKey = key; + mValue = value; +} + +/*! \overload + + Sets the coordinates as a QPointF \a pos where pos.x has the meaning of \a key and pos.y the + meaning of \a value of the \ref setCoords(double key, double value) method. +*/ +void QCPItemPosition::setCoords(const QPointF &pos) +{ + setCoords(pos.x(), pos.y()); +} + +/*! + Returns the final absolute pixel position of the QCPItemPosition on the QCustomPlot surface. It + includes all effects of type (\ref setType) and possible parent anchors (\ref setParentAnchor). + + \see setPixelPosition +*/ +QPointF QCPItemPosition::pixelPosition() const +{ + QPointF result; + + // determine X: + switch (mPositionTypeX) + { + case ptAbsolute: + { + result.rx() = mKey; + if (mParentAnchorX) + result.rx() += mParentAnchorX->pixelPosition().x(); + break; + } + case ptViewportRatio: + { + result.rx() = mKey*mParentPlot->viewport().width(); + if (mParentAnchorX) + result.rx() += mParentAnchorX->pixelPosition().x(); + else + result.rx() += mParentPlot->viewport().left(); + break; + } + case ptAxisRectRatio: + { + if (mAxisRect) + { + result.rx() = mKey*mAxisRect.data()->width(); + if (mParentAnchorX) + result.rx() += mParentAnchorX->pixelPosition().x(); + else + result.rx() += mAxisRect.data()->left(); + } else + qDebug() << Q_FUNC_INFO << "Item position type x is ptAxisRectRatio, but no axis rect was defined"; + break; + } + case ptPlotCoords: + { + if (mKeyAxis && mKeyAxis.data()->orientation() == Qt::Horizontal) + result.rx() = mKeyAxis.data()->coordToPixel(mKey); + else if (mValueAxis && mValueAxis.data()->orientation() == Qt::Horizontal) + result.rx() = mValueAxis.data()->coordToPixel(mValue); + else + qDebug() << Q_FUNC_INFO << "Item position type x is ptPlotCoords, but no axes were defined"; + break; + } + } + + // determine Y: + switch (mPositionTypeY) + { + case ptAbsolute: + { + result.ry() = mValue; + if (mParentAnchorY) + result.ry() += mParentAnchorY->pixelPosition().y(); + break; + } + case ptViewportRatio: + { + result.ry() = mValue*mParentPlot->viewport().height(); + if (mParentAnchorY) + result.ry() += mParentAnchorY->pixelPosition().y(); + else + result.ry() += mParentPlot->viewport().top(); + break; + } + case ptAxisRectRatio: + { + if (mAxisRect) + { + result.ry() = mValue*mAxisRect.data()->height(); + if (mParentAnchorY) + result.ry() += mParentAnchorY->pixelPosition().y(); + else + result.ry() += mAxisRect.data()->top(); + } else + qDebug() << Q_FUNC_INFO << "Item position type y is ptAxisRectRatio, but no axis rect was defined"; + break; + } + case ptPlotCoords: + { + if (mKeyAxis && mKeyAxis.data()->orientation() == Qt::Vertical) + result.ry() = mKeyAxis.data()->coordToPixel(mKey); + else if (mValueAxis && mValueAxis.data()->orientation() == Qt::Vertical) + result.ry() = mValueAxis.data()->coordToPixel(mValue); + else + qDebug() << Q_FUNC_INFO << "Item position type y is ptPlotCoords, but no axes were defined"; + break; + } + } + + return result; +} + +/*! + When \ref setType is \ref ptPlotCoords, this function may be used to specify the axes the + coordinates set with \ref setCoords relate to. By default they are set to the initial xAxis and + yAxis of the QCustomPlot. +*/ +void QCPItemPosition::setAxes(QCPAxis *keyAxis, QCPAxis *valueAxis) +{ + mKeyAxis = keyAxis; + mValueAxis = valueAxis; +} + +/*! + When \ref setType is \ref ptAxisRectRatio, this function may be used to specify the axis rect the + coordinates set with \ref setCoords relate to. By default this is set to the main axis rect of + the QCustomPlot. +*/ +void QCPItemPosition::setAxisRect(QCPAxisRect *axisRect) +{ + mAxisRect = axisRect; +} + +/*! + Sets the apparent pixel position. This works no matter what type (\ref setType) this + QCPItemPosition is or what parent-child situation it is in, as coordinates are transformed + appropriately, to make the position finally appear at the specified pixel values. + + Only if the type is \ref ptAbsolute and no parent anchor is set, this function's effect is + identical to that of \ref setCoords. + + \see pixelPosition, setCoords +*/ +void QCPItemPosition::setPixelPosition(const QPointF &pixelPosition) +{ + double x = pixelPosition.x(); + double y = pixelPosition.y(); + + switch (mPositionTypeX) + { + case ptAbsolute: + { + if (mParentAnchorX) + x -= mParentAnchorX->pixelPosition().x(); + break; + } + case ptViewportRatio: + { + if (mParentAnchorX) + x -= mParentAnchorX->pixelPosition().x(); + else + x -= mParentPlot->viewport().left(); + x /= (double)mParentPlot->viewport().width(); + break; + } + case ptAxisRectRatio: + { + if (mAxisRect) + { + if (mParentAnchorX) + x -= mParentAnchorX->pixelPosition().x(); + else + x -= mAxisRect.data()->left(); + x /= (double)mAxisRect.data()->width(); + } else + qDebug() << Q_FUNC_INFO << "Item position type x is ptAxisRectRatio, but no axis rect was defined"; + break; + } + case ptPlotCoords: + { + if (mKeyAxis && mKeyAxis.data()->orientation() == Qt::Horizontal) + x = mKeyAxis.data()->pixelToCoord(x); + else if (mValueAxis && mValueAxis.data()->orientation() == Qt::Horizontal) + y = mValueAxis.data()->pixelToCoord(x); + else + qDebug() << Q_FUNC_INFO << "Item position type x is ptPlotCoords, but no axes were defined"; + break; + } + } + + switch (mPositionTypeY) + { + case ptAbsolute: + { + if (mParentAnchorY) + y -= mParentAnchorY->pixelPosition().y(); + break; + } + case ptViewportRatio: + { + if (mParentAnchorY) + y -= mParentAnchorY->pixelPosition().y(); + else + y -= mParentPlot->viewport().top(); + y /= (double)mParentPlot->viewport().height(); + break; + } + case ptAxisRectRatio: + { + if (mAxisRect) + { + if (mParentAnchorY) + y -= mParentAnchorY->pixelPosition().y(); + else + y -= mAxisRect.data()->top(); + y /= (double)mAxisRect.data()->height(); + } else + qDebug() << Q_FUNC_INFO << "Item position type y is ptAxisRectRatio, but no axis rect was defined"; + break; + } + case ptPlotCoords: + { + if (mKeyAxis && mKeyAxis.data()->orientation() == Qt::Vertical) + x = mKeyAxis.data()->pixelToCoord(y); + else if (mValueAxis && mValueAxis.data()->orientation() == Qt::Vertical) + y = mValueAxis.data()->pixelToCoord(y); + else + qDebug() << Q_FUNC_INFO << "Item position type y is ptPlotCoords, but no axes were defined"; + break; + } + } + + setCoords(x, y); +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPAbstractItem +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPAbstractItem + \brief The abstract base class for all items in a plot. + + In QCustomPlot, items are supplemental graphical elements that are neither plottables + (QCPAbstractPlottable) nor axes (QCPAxis). While plottables are always tied to two axes and thus + plot coordinates, items can also be placed in absolute coordinates independent of any axes. Each + specific item has at least one QCPItemPosition member which controls the positioning. Some items + are defined by more than one coordinate and thus have two or more QCPItemPosition members (For + example, QCPItemRect has \a topLeft and \a bottomRight). + + This abstract base class defines a very basic interface like visibility and clipping. Since this + class is abstract, it can't be instantiated. Use one of the subclasses or create a subclass + yourself to create new items. + + The built-in items are: + + + + + + + + + + +
QCPItemLineA line defined by a start and an end point. May have different ending styles on each side (e.g. arrows).
QCPItemStraightLineA straight line defined by a start and a direction point. Unlike QCPItemLine, the straight line is infinitely long and has no endings.
QCPItemCurveA curve defined by start, end and two intermediate control points. May have different ending styles on each side (e.g. arrows).
QCPItemRectA rectangle
QCPItemEllipseAn ellipse
QCPItemPixmapAn arbitrary pixmap
QCPItemTextA text label
QCPItemBracketA bracket which may be used to reference/highlight certain parts in the plot.
QCPItemTracerAn item that can be attached to a QCPGraph and sticks to its data points, given a key coordinate.
+ + \section items-clipping Clipping + + Items are by default clipped to the main axis rect (they are only visible inside the axis rect). + To make an item visible outside that axis rect, disable clipping via \ref setClipToAxisRect + "setClipToAxisRect(false)". + + On the other hand if you want the item to be clipped to a different axis rect, specify it via + \ref setClipAxisRect. This clipAxisRect property of an item is only used for clipping behaviour, and + in principle is independent of the coordinate axes the item might be tied to via its position + members (\ref QCPItemPosition::setAxes). However, it is common that the axis rect for clipping + also contains the axes used for the item positions. + + \section items-using Using items + + First you instantiate the item you want to use and add it to the plot: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpitemline-creation-1 + by default, the positions of the item are bound to the x- and y-Axis of the plot. So we can just + set the plot coordinates where the line should start/end: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpitemline-creation-2 + If we don't want the line to be positioned in plot coordinates but a different coordinate system, + e.g. absolute pixel positions on the QCustomPlot surface, we need to change the position type like this: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpitemline-creation-3 + Then we can set the coordinates, this time in pixels: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpitemline-creation-4 + and make the line visible on the entire QCustomPlot, by disabling clipping to the axis rect: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpitemline-creation-5 + + For more advanced plots, it is even possible to set different types and parent anchors per X/Y + coordinate of an item position, using for example \ref QCPItemPosition::setTypeX or \ref + QCPItemPosition::setParentAnchorX. For details, see the documentation of \ref QCPItemPosition. + + \section items-subclassing Creating own items + + To create an own item, you implement a subclass of QCPAbstractItem. These are the pure + virtual functions, you must implement: + \li \ref selectTest + \li \ref draw + + See the documentation of those functions for what they need to do. + + \subsection items-positioning Allowing the item to be positioned + + As mentioned, item positions are represented by QCPItemPosition members. Let's assume the new item shall + have only one point as its position (as opposed to two like a rect or multiple like a polygon). You then add + a public member of type QCPItemPosition like so: + + \code QCPItemPosition * const myPosition;\endcode + + the const makes sure the pointer itself can't be modified from the user of your new item (the QCPItemPosition + instance it points to, can be modified, of course). + The initialization of this pointer is made easy with the \ref createPosition function. Just assign + the return value of this function to each QCPItemPosition in the constructor of your item. \ref createPosition + takes a string which is the name of the position, typically this is identical to the variable name. + For example, the constructor of QCPItemExample could look like this: + + \code + QCPItemExample::QCPItemExample(QCustomPlot *parentPlot) : + QCPAbstractItem(parentPlot), + myPosition(createPosition("myPosition")) + { + // other constructor code + } + \endcode + + \subsection items-drawing The draw function + + To give your item a visual representation, reimplement the \ref draw function and use the passed + QCPPainter to draw the item. You can retrieve the item position in pixel coordinates from the + position member(s) via \ref QCPItemPosition::pixelPosition. + + To optimize performance you should calculate a bounding rect first (don't forget to take the pen + width into account), check whether it intersects the \ref clipRect, and only draw the item at all + if this is the case. + + \subsection items-selection The selectTest function + + Your implementation of the \ref selectTest function may use the helpers \ref + QCPVector2D::distanceSquaredToLine and \ref rectDistance. With these, the implementation of the + selection test becomes significantly simpler for most items. See the documentation of \ref + selectTest for what the function parameters mean and what the function should return. + + \subsection anchors Providing anchors + + Providing anchors (QCPItemAnchor) starts off like adding a position. First you create a public + member, e.g. + + \code QCPItemAnchor * const bottom;\endcode + + and create it in the constructor with the \ref createAnchor function, assigning it a name and an + anchor id (an integer enumerating all anchors on the item, you may create an own enum for this). + Since anchors can be placed anywhere, relative to the item's position(s), your item needs to + provide the position of every anchor with the reimplementation of the \ref anchorPixelPosition(int + anchorId) function. + + In essence the QCPItemAnchor is merely an intermediary that itself asks your item for the pixel + position when anything attached to the anchor needs to know the coordinates. +*/ + +/* start of documentation of inline functions */ + +/*! \fn QList QCPAbstractItem::positions() const + + Returns all positions of the item in a list. + + \see anchors, position +*/ + +/*! \fn QList QCPAbstractItem::anchors() const + + Returns all anchors of the item in a list. Note that since a position (QCPItemPosition) is always + also an anchor, the list will also contain the positions of this item. + + \see positions, anchor +*/ + +/* end of documentation of inline functions */ +/* start documentation of pure virtual functions */ + +/*! \fn void QCPAbstractItem::draw(QCPPainter *painter) = 0 + \internal + + Draws this item with the provided \a painter. + + The cliprect of the provided painter is set to the rect returned by \ref clipRect before this + function is called. The clipRect depends on the clipping settings defined by \ref + setClipToAxisRect and \ref setClipAxisRect. +*/ + +/* end documentation of pure virtual functions */ +/* start documentation of signals */ + +/*! \fn void QCPAbstractItem::selectionChanged(bool selected) + This signal is emitted when the selection state of this item has changed, either by user interaction + or by a direct call to \ref setSelected. +*/ + +/* end documentation of signals */ + +/*! + Base class constructor which initializes base class members. +*/ +QCPAbstractItem::QCPAbstractItem(QCustomPlot *parentPlot) : + QCPLayerable(parentPlot), + mClipToAxisRect(false), + mSelectable(true), + mSelected(false) +{ + parentPlot->registerItem(this); + + QList rects = parentPlot->axisRects(); + if (rects.size() > 0) + { + setClipToAxisRect(true); + setClipAxisRect(rects.first()); + } +} + +QCPAbstractItem::~QCPAbstractItem() +{ + // don't delete mPositions because every position is also an anchor and thus in mAnchors + qDeleteAll(mAnchors); +} + +/* can't make this a header inline function, because QPointer breaks with forward declared types, see QTBUG-29588 */ +QCPAxisRect *QCPAbstractItem::clipAxisRect() const +{ + return mClipAxisRect.data(); +} + +/*! + Sets whether the item shall be clipped to an axis rect or whether it shall be visible on the + entire QCustomPlot. The axis rect can be set with \ref setClipAxisRect. + + \see setClipAxisRect +*/ +void QCPAbstractItem::setClipToAxisRect(bool clip) +{ + mClipToAxisRect = clip; + if (mClipToAxisRect) + setParentLayerable(mClipAxisRect.data()); +} + +/*! + Sets the clip axis rect. It defines the rect that will be used to clip the item when \ref + setClipToAxisRect is set to true. + + \see setClipToAxisRect +*/ +void QCPAbstractItem::setClipAxisRect(QCPAxisRect *rect) +{ + mClipAxisRect = rect; + if (mClipToAxisRect) + setParentLayerable(mClipAxisRect.data()); +} + +/*! + Sets whether the user can (de-)select this item by clicking on the QCustomPlot surface. + (When \ref QCustomPlot::setInteractions contains QCustomPlot::iSelectItems.) + + However, even when \a selectable was set to false, it is possible to set the selection manually, + by calling \ref setSelected. + + \see QCustomPlot::setInteractions, setSelected +*/ +void QCPAbstractItem::setSelectable(bool selectable) +{ + if (mSelectable != selectable) + { + mSelectable = selectable; + emit selectableChanged(mSelectable); + } +} + +/*! + Sets whether this item is selected or not. When selected, it might use a different visual + appearance (e.g. pen and brush), this depends on the specific item though. + + The entire selection mechanism for items is handled automatically when \ref + QCustomPlot::setInteractions contains QCustomPlot::iSelectItems. You only need to call this + function when you wish to change the selection state manually. + + This function can change the selection state even when \ref setSelectable was set to false. + + emits the \ref selectionChanged signal when \a selected is different from the previous selection state. + + \see setSelectable, selectTest +*/ +void QCPAbstractItem::setSelected(bool selected) +{ + if (mSelected != selected) + { + mSelected = selected; + emit selectionChanged(mSelected); + } +} + +/*! + Returns the QCPItemPosition with the specified \a name. If this item doesn't have a position by + that name, returns 0. + + This function provides an alternative way to access item positions. Normally, you access + positions direcly by their member pointers (which typically have the same variable name as \a + name). + + \see positions, anchor +*/ +QCPItemPosition *QCPAbstractItem::position(const QString &name) const +{ + for (int i=0; iname() == name) + return mPositions.at(i); + } + qDebug() << Q_FUNC_INFO << "position with name not found:" << name; + return 0; +} + +/*! + Returns the QCPItemAnchor with the specified \a name. If this item doesn't have an anchor by + that name, returns 0. + + This function provides an alternative way to access item anchors. Normally, you access + anchors direcly by their member pointers (which typically have the same variable name as \a + name). + + \see anchors, position +*/ +QCPItemAnchor *QCPAbstractItem::anchor(const QString &name) const +{ + for (int i=0; iname() == name) + return mAnchors.at(i); + } + qDebug() << Q_FUNC_INFO << "anchor with name not found:" << name; + return 0; +} + +/*! + Returns whether this item has an anchor with the specified \a name. + + Note that you can check for positions with this function, too. This is because every position is + also an anchor (QCPItemPosition inherits from QCPItemAnchor). + + \see anchor, position +*/ +bool QCPAbstractItem::hasAnchor(const QString &name) const +{ + for (int i=0; iname() == name) + return true; + } + return false; +} + +/*! \internal + + Returns the rect the visual representation of this item is clipped to. This depends on the + current setting of \ref setClipToAxisRect as well as the axis rect set with \ref setClipAxisRect. + + If the item is not clipped to an axis rect, QCustomPlot's viewport rect is returned. + + \see draw +*/ +QRect QCPAbstractItem::clipRect() const +{ + if (mClipToAxisRect && mClipAxisRect) + return mClipAxisRect.data()->rect(); + else + return mParentPlot->viewport(); +} + +/*! \internal + + A convenience function to easily set the QPainter::Antialiased hint on the provided \a painter + before drawing item lines. + + This is the antialiasing state the painter passed to the \ref draw method is in by default. + + This function takes into account the local setting of the antialiasing flag as well as the + overrides set with \ref QCustomPlot::setAntialiasedElements and \ref + QCustomPlot::setNotAntialiasedElements. + + \see setAntialiased +*/ +void QCPAbstractItem::applyDefaultAntialiasingHint(QCPPainter *painter) const +{ + applyAntialiasingHint(painter, mAntialiased, QCP::aeItems); +} + +/*! \internal + + A convenience function which returns the selectTest value for a specified \a rect and a specified + click position \a pos. \a filledRect defines whether a click inside the rect should also be + considered a hit or whether only the rect border is sensitive to hits. + + This function may be used to help with the implementation of the \ref selectTest function for + specific items. + + For example, if your item consists of four rects, call this function four times, once for each + rect, in your \ref selectTest reimplementation. Finally, return the minimum (non -1) of all four + returned values. +*/ +double QCPAbstractItem::rectDistance(const QRectF &rect, const QPointF &pos, bool filledRect) const +{ + double result = -1; + + // distance to border: + QList lines; + lines << QLineF(rect.topLeft(), rect.topRight()) << QLineF(rect.bottomLeft(), rect.bottomRight()) + << QLineF(rect.topLeft(), rect.bottomLeft()) << QLineF(rect.topRight(), rect.bottomRight()); + double minDistSqr = (std::numeric_limits::max)(); + for (int i=0; i mParentPlot->selectionTolerance()*0.99) + { + if (rect.contains(pos)) + result = mParentPlot->selectionTolerance()*0.99; + } + return result; +} + +/*! \internal + + Returns the pixel position of the anchor with Id \a anchorId. This function must be reimplemented in + item subclasses if they want to provide anchors (QCPItemAnchor). + + For example, if the item has two anchors with id 0 and 1, this function takes one of these anchor + ids and returns the respective pixel points of the specified anchor. + + \see createAnchor +*/ +QPointF QCPAbstractItem::anchorPixelPosition(int anchorId) const +{ + qDebug() << Q_FUNC_INFO << "called on item which shouldn't have any anchors (this method not reimplemented). anchorId" << anchorId; + return QPointF(); +} + +/*! \internal + + Creates a QCPItemPosition, registers it with this item and returns a pointer to it. The specified + \a name must be a unique string that is usually identical to the variable name of the position + member (This is needed to provide the name-based \ref position access to positions). + + Don't delete positions created by this function manually, as the item will take care of it. + + Use this function in the constructor (initialization list) of the specific item subclass to + create each position member. Don't create QCPItemPositions with \b new yourself, because they + won't be registered with the item properly. + + \see createAnchor +*/ +QCPItemPosition *QCPAbstractItem::createPosition(const QString &name) +{ + if (hasAnchor(name)) + qDebug() << Q_FUNC_INFO << "anchor/position with name exists already:" << name; + QCPItemPosition *newPosition = new QCPItemPosition(mParentPlot, this, name); + mPositions.append(newPosition); + mAnchors.append(newPosition); // every position is also an anchor + newPosition->setAxes(mParentPlot->xAxis, mParentPlot->yAxis); + newPosition->setType(QCPItemPosition::ptPlotCoords); + if (mParentPlot->axisRect()) + newPosition->setAxisRect(mParentPlot->axisRect()); + newPosition->setCoords(0, 0); + return newPosition; +} + +/*! \internal + + Creates a QCPItemAnchor, registers it with this item and returns a pointer to it. The specified + \a name must be a unique string that is usually identical to the variable name of the anchor + member (This is needed to provide the name based \ref anchor access to anchors). + + The \a anchorId must be a number identifying the created anchor. It is recommended to create an + enum (e.g. "AnchorIndex") for this on each item that uses anchors. This id is used by the anchor + to identify itself when it calls QCPAbstractItem::anchorPixelPosition. That function then returns + the correct pixel coordinates for the passed anchor id. + + Don't delete anchors created by this function manually, as the item will take care of it. + + Use this function in the constructor (initialization list) of the specific item subclass to + create each anchor member. Don't create QCPItemAnchors with \b new yourself, because then they + won't be registered with the item properly. + + \see createPosition +*/ +QCPItemAnchor *QCPAbstractItem::createAnchor(const QString &name, int anchorId) +{ + if (hasAnchor(name)) + qDebug() << Q_FUNC_INFO << "anchor/position with name exists already:" << name; + QCPItemAnchor *newAnchor = new QCPItemAnchor(mParentPlot, this, name, anchorId); + mAnchors.append(newAnchor); + return newAnchor; +} + +/* inherits documentation from base class */ +void QCPAbstractItem::selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) +{ + Q_UNUSED(event) + Q_UNUSED(details) + if (mSelectable) + { + bool selBefore = mSelected; + setSelected(additive ? !mSelected : true); + if (selectionStateChanged) + *selectionStateChanged = mSelected != selBefore; + } +} + +/* inherits documentation from base class */ +void QCPAbstractItem::deselectEvent(bool *selectionStateChanged) +{ + if (mSelectable) + { + bool selBefore = mSelected; + setSelected(false); + if (selectionStateChanged) + *selectionStateChanged = mSelected != selBefore; + } +} + +/* inherits documentation from base class */ +QCP::Interaction QCPAbstractItem::selectionCategory() const +{ + return QCP::iSelectItems; +} +/* end of 'src/item.cpp' */ + + +/* including file 'src/core.cpp', size 126207 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCustomPlot +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCustomPlot + + \brief The central class of the library. This is the QWidget which displays the plot and + interacts with the user. + + For tutorials on how to use QCustomPlot, see the website\n + http://www.qcustomplot.com/ +*/ + +/* start of documentation of inline functions */ + +/*! \fn QCPSelectionRect *QCustomPlot::selectionRect() const + + Allows access to the currently used QCPSelectionRect instance (or subclass thereof), that is used + to handle and draw selection rect interactions (see \ref setSelectionRectMode). + + \see setSelectionRect +*/ + +/*! \fn QCPLayoutGrid *QCustomPlot::plotLayout() const + + Returns the top level layout of this QCustomPlot instance. It is a \ref QCPLayoutGrid, initially containing just + one cell with the main QCPAxisRect inside. +*/ + +/* end of documentation of inline functions */ +/* start of documentation of signals */ + +/*! \fn void QCustomPlot::mouseDoubleClick(QMouseEvent *event) + + This signal is emitted when the QCustomPlot receives a mouse double click event. +*/ + +/*! \fn void QCustomPlot::mousePress(QMouseEvent *event) + + This signal is emitted when the QCustomPlot receives a mouse press event. + + It is emitted before QCustomPlot handles any other mechanism like range dragging. So a slot + connected to this signal can still influence the behaviour e.g. with \ref QCPAxisRect::setRangeDrag or \ref + QCPAxisRect::setRangeDragAxes. +*/ + +/*! \fn void QCustomPlot::mouseMove(QMouseEvent *event) + + This signal is emitted when the QCustomPlot receives a mouse move event. + + It is emitted before QCustomPlot handles any other mechanism like range dragging. So a slot + connected to this signal can still influence the behaviour e.g. with \ref QCPAxisRect::setRangeDrag or \ref + QCPAxisRect::setRangeDragAxes. + + \warning It is discouraged to change the drag-axes with \ref QCPAxisRect::setRangeDragAxes here, + because the dragging starting point was saved the moment the mouse was pressed. Thus it only has + a meaning for the range drag axes that were set at that moment. If you want to change the drag + axes, consider doing this in the \ref mousePress signal instead. +*/ + +/*! \fn void QCustomPlot::mouseRelease(QMouseEvent *event) + + This signal is emitted when the QCustomPlot receives a mouse release event. + + It is emitted before QCustomPlot handles any other mechanisms like object selection. So a + slot connected to this signal can still influence the behaviour e.g. with \ref setInteractions or + \ref QCPAbstractPlottable::setSelectable. +*/ + +/*! \fn void QCustomPlot::mouseWheel(QMouseEvent *event) + + This signal is emitted when the QCustomPlot receives a mouse wheel event. + + It is emitted before QCustomPlot handles any other mechanisms like range zooming. So a slot + connected to this signal can still influence the behaviour e.g. with \ref QCPAxisRect::setRangeZoom, \ref + QCPAxisRect::setRangeZoomAxes or \ref QCPAxisRect::setRangeZoomFactor. +*/ + +/*! \fn void QCustomPlot::plottableClick(QCPAbstractPlottable *plottable, int dataIndex, QMouseEvent *event) + + This signal is emitted when a plottable is clicked. + + \a event is the mouse event that caused the click and \a plottable is the plottable that received + the click. The parameter \a dataIndex indicates the data point that was closest to the click + position. + + \see plottableDoubleClick +*/ + +/*! \fn void QCustomPlot::plottableDoubleClick(QCPAbstractPlottable *plottable, int dataIndex, QMouseEvent *event) + + This signal is emitted when a plottable is double clicked. + + \a event is the mouse event that caused the click and \a plottable is the plottable that received + the click. The parameter \a dataIndex indicates the data point that was closest to the click + position. + + \see plottableClick +*/ + +/*! \fn void QCustomPlot::itemClick(QCPAbstractItem *item, QMouseEvent *event) + + This signal is emitted when an item is clicked. + + \a event is the mouse event that caused the click and \a item is the item that received the + click. + + \see itemDoubleClick +*/ + +/*! \fn void QCustomPlot::itemDoubleClick(QCPAbstractItem *item, QMouseEvent *event) + + This signal is emitted when an item is double clicked. + + \a event is the mouse event that caused the click and \a item is the item that received the + click. + + \see itemClick +*/ + +/*! \fn void QCustomPlot::axisClick(QCPAxis *axis, QCPAxis::SelectablePart part, QMouseEvent *event) + + This signal is emitted when an axis is clicked. + + \a event is the mouse event that caused the click, \a axis is the axis that received the click and + \a part indicates the part of the axis that was clicked. + + \see axisDoubleClick +*/ + +/*! \fn void QCustomPlot::axisDoubleClick(QCPAxis *axis, QCPAxis::SelectablePart part, QMouseEvent *event) + + This signal is emitted when an axis is double clicked. + + \a event is the mouse event that caused the click, \a axis is the axis that received the click and + \a part indicates the part of the axis that was clicked. + + \see axisClick +*/ + +/*! \fn void QCustomPlot::legendClick(QCPLegend *legend, QCPAbstractLegendItem *item, QMouseEvent *event) + + This signal is emitted when a legend (item) is clicked. + + \a event is the mouse event that caused the click, \a legend is the legend that received the + click and \a item is the legend item that received the click. If only the legend and no item is + clicked, \a item is 0. This happens for a click inside the legend padding or the space between + two items. + + \see legendDoubleClick +*/ + +/*! \fn void QCustomPlot::legendDoubleClick(QCPLegend *legend, QCPAbstractLegendItem *item, QMouseEvent *event) + + This signal is emitted when a legend (item) is double clicked. + + \a event is the mouse event that caused the click, \a legend is the legend that received the + click and \a item is the legend item that received the click. If only the legend and no item is + clicked, \a item is 0. This happens for a click inside the legend padding or the space between + two items. + + \see legendClick +*/ + +/*! \fn void QCustomPlot::selectionChangedByUser() + + This signal is emitted after the user has changed the selection in the QCustomPlot, e.g. by + clicking. It is not emitted when the selection state of an object has changed programmatically by + a direct call to setSelected()/setSelection() on an object or by calling \ref + deselectAll. + + In addition to this signal, selectable objects also provide individual signals, for example \ref + QCPAxis::selectionChanged or \ref QCPAbstractPlottable::selectionChanged. Note that those signals + are emitted even if the selection state is changed programmatically. + + See the documentation of \ref setInteractions for details about the selection mechanism. + + \see selectedPlottables, selectedGraphs, selectedItems, selectedAxes, selectedLegends +*/ + +/*! \fn void QCustomPlot::beforeReplot() + + This signal is emitted immediately before a replot takes place (caused by a call to the slot \ref + replot). + + It is safe to mutually connect the replot slot with this signal on two QCustomPlots to make them + replot synchronously, it won't cause an infinite recursion. + + \see replot, afterReplot +*/ + +/*! \fn void QCustomPlot::afterReplot() + + This signal is emitted immediately after a replot has taken place (caused by a call to the slot \ref + replot). + + It is safe to mutually connect the replot slot with this signal on two QCustomPlots to make them + replot synchronously, it won't cause an infinite recursion. + + \see replot, beforeReplot +*/ + +/* end of documentation of signals */ +/* start of documentation of public members */ + +/*! \var QCPAxis *QCustomPlot::xAxis + + A pointer to the primary x Axis (bottom) of the main axis rect of the plot. + + QCustomPlot offers convenient pointers to the axes (\ref xAxis, \ref yAxis, \ref xAxis2, \ref + yAxis2) and the \ref legend. They make it very easy working with plots that only have a single + axis rect and at most one axis at each axis rect side. If you use \link thelayoutsystem the + layout system\endlink to add multiple axis rects or multiple axes to one side, use the \ref + QCPAxisRect::axis interface to access the new axes. If one of the four default axes or the + default legend is removed due to manipulation of the layout system (e.g. by removing the main + axis rect), the corresponding pointers become 0. + + If an axis convenience pointer is currently zero and a new axis rect or a corresponding axis is + added in the place of the main axis rect, QCustomPlot resets the convenience pointers to the + according new axes. Similarly the \ref legend convenience pointer will be reset if a legend is + added after the main legend was removed before. +*/ + +/*! \var QCPAxis *QCustomPlot::yAxis + + A pointer to the primary y Axis (left) of the main axis rect of the plot. + + QCustomPlot offers convenient pointers to the axes (\ref xAxis, \ref yAxis, \ref xAxis2, \ref + yAxis2) and the \ref legend. They make it very easy working with plots that only have a single + axis rect and at most one axis at each axis rect side. If you use \link thelayoutsystem the + layout system\endlink to add multiple axis rects or multiple axes to one side, use the \ref + QCPAxisRect::axis interface to access the new axes. If one of the four default axes or the + default legend is removed due to manipulation of the layout system (e.g. by removing the main + axis rect), the corresponding pointers become 0. + + If an axis convenience pointer is currently zero and a new axis rect or a corresponding axis is + added in the place of the main axis rect, QCustomPlot resets the convenience pointers to the + according new axes. Similarly the \ref legend convenience pointer will be reset if a legend is + added after the main legend was removed before. +*/ + +/*! \var QCPAxis *QCustomPlot::xAxis2 + + A pointer to the secondary x Axis (top) of the main axis rect of the plot. Secondary axes are + invisible by default. Use QCPAxis::setVisible to change this (or use \ref + QCPAxisRect::setupFullAxesBox). + + QCustomPlot offers convenient pointers to the axes (\ref xAxis, \ref yAxis, \ref xAxis2, \ref + yAxis2) and the \ref legend. They make it very easy working with plots that only have a single + axis rect and at most one axis at each axis rect side. If you use \link thelayoutsystem the + layout system\endlink to add multiple axis rects or multiple axes to one side, use the \ref + QCPAxisRect::axis interface to access the new axes. If one of the four default axes or the + default legend is removed due to manipulation of the layout system (e.g. by removing the main + axis rect), the corresponding pointers become 0. + + If an axis convenience pointer is currently zero and a new axis rect or a corresponding axis is + added in the place of the main axis rect, QCustomPlot resets the convenience pointers to the + according new axes. Similarly the \ref legend convenience pointer will be reset if a legend is + added after the main legend was removed before. +*/ + +/*! \var QCPAxis *QCustomPlot::yAxis2 + + A pointer to the secondary y Axis (right) of the main axis rect of the plot. Secondary axes are + invisible by default. Use QCPAxis::setVisible to change this (or use \ref + QCPAxisRect::setupFullAxesBox). + + QCustomPlot offers convenient pointers to the axes (\ref xAxis, \ref yAxis, \ref xAxis2, \ref + yAxis2) and the \ref legend. They make it very easy working with plots that only have a single + axis rect and at most one axis at each axis rect side. If you use \link thelayoutsystem the + layout system\endlink to add multiple axis rects or multiple axes to one side, use the \ref + QCPAxisRect::axis interface to access the new axes. If one of the four default axes or the + default legend is removed due to manipulation of the layout system (e.g. by removing the main + axis rect), the corresponding pointers become 0. + + If an axis convenience pointer is currently zero and a new axis rect or a corresponding axis is + added in the place of the main axis rect, QCustomPlot resets the convenience pointers to the + according new axes. Similarly the \ref legend convenience pointer will be reset if a legend is + added after the main legend was removed before. +*/ + +/*! \var QCPLegend *QCustomPlot::legend + + A pointer to the default legend of the main axis rect. The legend is invisible by default. Use + QCPLegend::setVisible to change this. + + QCustomPlot offers convenient pointers to the axes (\ref xAxis, \ref yAxis, \ref xAxis2, \ref + yAxis2) and the \ref legend. They make it very easy working with plots that only have a single + axis rect and at most one axis at each axis rect side. If you use \link thelayoutsystem the + layout system\endlink to add multiple legends to the plot, use the layout system interface to + access the new legend. For example, legends can be placed inside an axis rect's \ref + QCPAxisRect::insetLayout "inset layout", and must then also be accessed via the inset layout. If + the default legend is removed due to manipulation of the layout system (e.g. by removing the main + axis rect), the corresponding pointer becomes 0. + + If an axis convenience pointer is currently zero and a new axis rect or a corresponding axis is + added in the place of the main axis rect, QCustomPlot resets the convenience pointers to the + according new axes. Similarly the \ref legend convenience pointer will be reset if a legend is + added after the main legend was removed before. +*/ + +/* end of documentation of public members */ + +/*! + Constructs a QCustomPlot and sets reasonable default values. +*/ +QCustomPlot::QCustomPlot(QWidget *parent) : + QWidget(parent), + xAxis(0), + yAxis(0), + xAxis2(0), + yAxis2(0), + legend(0), + mBufferDevicePixelRatio(1.0), // will be adapted to primary screen below + mPlotLayout(0), + mAutoAddPlottableToLegend(true), + mAntialiasedElements(QCP::aeNone), + mNotAntialiasedElements(QCP::aeNone), + mInteractions(0), + mSelectionTolerance(8), + mNoAntialiasingOnDrag(false), + mBackgroundBrush(Qt::white, Qt::SolidPattern), + mBackgroundScaled(true), + mBackgroundScaledMode(Qt::KeepAspectRatioByExpanding), + mCurrentLayer(0), + mPlottingHints(QCP::phCacheLabels|QCP::phImmediateRefresh), + mMultiSelectModifier(Qt::ControlModifier), + mSelectionRectMode(QCP::srmNone), + mSelectionRect(0), + mOpenGl(false), + mMouseHasMoved(false), + mMouseEventLayerable(0), + mMouseSignalLayerable(0), + mReplotting(false), + mReplotQueued(false), + mOpenGlMultisamples(16), + mOpenGlAntialiasedElementsBackup(QCP::aeNone), + mOpenGlCacheLabelsBackup(true) +{ + setAttribute(Qt::WA_NoMousePropagation); + setAttribute(Qt::WA_OpaquePaintEvent); + setFocusPolicy(Qt::ClickFocus); + setMouseTracking(true); + QLocale currentLocale = locale(); + currentLocale.setNumberOptions(QLocale::OmitGroupSeparator); + setLocale(currentLocale); +#ifdef QCP_DEVICEPIXELRATIO_SUPPORTED +# ifdef QCP_DEVICEPIXELRATIO_FLOAT + setBufferDevicePixelRatio(QWidget::devicePixelRatioF()); +# else + setBufferDevicePixelRatio(QWidget::devicePixelRatio()); +# endif +#endif + + mOpenGlAntialiasedElementsBackup = mAntialiasedElements; + mOpenGlCacheLabelsBackup = mPlottingHints.testFlag(QCP::phCacheLabels); + // create initial layers: + mLayers.append(new QCPLayer(this, QLatin1String("background"))); + mLayers.append(new QCPLayer(this, QLatin1String("grid"))); + mLayers.append(new QCPLayer(this, QLatin1String("main"))); + mLayers.append(new QCPLayer(this, QLatin1String("axes"))); + mLayers.append(new QCPLayer(this, QLatin1String("legend"))); + mLayers.append(new QCPLayer(this, QLatin1String("overlay"))); + updateLayerIndices(); + setCurrentLayer(QLatin1String("main")); + layer(QLatin1String("overlay"))->setMode(QCPLayer::lmBuffered); + + // create initial layout, axis rect and legend: + mPlotLayout = new QCPLayoutGrid; + mPlotLayout->initializeParentPlot(this); + mPlotLayout->setParent(this); // important because if parent is QWidget, QCPLayout::sizeConstraintsChanged will call QWidget::updateGeometry + mPlotLayout->setLayer(QLatin1String("main")); + QCPAxisRect *defaultAxisRect = new QCPAxisRect(this, true); + mPlotLayout->addElement(0, 0, defaultAxisRect); + xAxis = defaultAxisRect->axis(QCPAxis::atBottom); + yAxis = defaultAxisRect->axis(QCPAxis::atLeft); + xAxis2 = defaultAxisRect->axis(QCPAxis::atTop); + yAxis2 = defaultAxisRect->axis(QCPAxis::atRight); + legend = new QCPLegend; + legend->setVisible(false); + defaultAxisRect->insetLayout()->addElement(legend, Qt::AlignRight|Qt::AlignTop); + defaultAxisRect->insetLayout()->setMargins(QMargins(12, 12, 12, 12)); + + defaultAxisRect->setLayer(QLatin1String("background")); + xAxis->setLayer(QLatin1String("axes")); + yAxis->setLayer(QLatin1String("axes")); + xAxis2->setLayer(QLatin1String("axes")); + yAxis2->setLayer(QLatin1String("axes")); + xAxis->grid()->setLayer(QLatin1String("grid")); + yAxis->grid()->setLayer(QLatin1String("grid")); + xAxis2->grid()->setLayer(QLatin1String("grid")); + yAxis2->grid()->setLayer(QLatin1String("grid")); + legend->setLayer(QLatin1String("legend")); + + // create selection rect instance: + mSelectionRect = new QCPSelectionRect(this); + mSelectionRect->setLayer(QLatin1String("overlay")); + + setViewport(rect()); // needs to be called after mPlotLayout has been created + + replot(rpQueuedReplot); +} + +QCustomPlot::~QCustomPlot() +{ + clearPlottables(); + clearItems(); + + if (mPlotLayout) + { + delete mPlotLayout; + mPlotLayout = 0; + } + + mCurrentLayer = 0; + qDeleteAll(mLayers); // don't use removeLayer, because it would prevent the last layer to be removed + mLayers.clear(); +} + +/*! + Sets which elements are forcibly drawn antialiased as an \a or combination of QCP::AntialiasedElement. + + This overrides the antialiasing settings for whole element groups, normally controlled with the + \a setAntialiasing function on the individual elements. If an element is neither specified in + \ref setAntialiasedElements nor in \ref setNotAntialiasedElements, the antialiasing setting on + each individual element instance is used. + + For example, if \a antialiasedElements contains \ref QCP::aePlottables, all plottables will be + drawn antialiased, no matter what the specific QCPAbstractPlottable::setAntialiased value was set + to. + + if an element in \a antialiasedElements is already set in \ref setNotAntialiasedElements, it is + removed from there. + + \see setNotAntialiasedElements +*/ +void QCustomPlot::setAntialiasedElements(const QCP::AntialiasedElements &antialiasedElements) +{ + mAntialiasedElements = antialiasedElements; + + // make sure elements aren't in mNotAntialiasedElements and mAntialiasedElements simultaneously: + if ((mNotAntialiasedElements & mAntialiasedElements) != 0) + mNotAntialiasedElements |= ~mAntialiasedElements; +} + +/*! + Sets whether the specified \a antialiasedElement is forcibly drawn antialiased. + + See \ref setAntialiasedElements for details. + + \see setNotAntialiasedElement +*/ +void QCustomPlot::setAntialiasedElement(QCP::AntialiasedElement antialiasedElement, bool enabled) +{ + if (!enabled && mAntialiasedElements.testFlag(antialiasedElement)) + mAntialiasedElements &= ~antialiasedElement; + else if (enabled && !mAntialiasedElements.testFlag(antialiasedElement)) + mAntialiasedElements |= antialiasedElement; + + // make sure elements aren't in mNotAntialiasedElements and mAntialiasedElements simultaneously: + if ((mNotAntialiasedElements & mAntialiasedElements) != 0) + mNotAntialiasedElements |= ~mAntialiasedElements; +} + +/*! + Sets which elements are forcibly drawn not antialiased as an \a or combination of + QCP::AntialiasedElement. + + This overrides the antialiasing settings for whole element groups, normally controlled with the + \a setAntialiasing function on the individual elements. If an element is neither specified in + \ref setAntialiasedElements nor in \ref setNotAntialiasedElements, the antialiasing setting on + each individual element instance is used. + + For example, if \a notAntialiasedElements contains \ref QCP::aePlottables, no plottables will be + drawn antialiased, no matter what the specific QCPAbstractPlottable::setAntialiased value was set + to. + + if an element in \a notAntialiasedElements is already set in \ref setAntialiasedElements, it is + removed from there. + + \see setAntialiasedElements +*/ +void QCustomPlot::setNotAntialiasedElements(const QCP::AntialiasedElements ¬AntialiasedElements) +{ + mNotAntialiasedElements = notAntialiasedElements; + + // make sure elements aren't in mNotAntialiasedElements and mAntialiasedElements simultaneously: + if ((mNotAntialiasedElements & mAntialiasedElements) != 0) + mAntialiasedElements |= ~mNotAntialiasedElements; +} + +/*! + Sets whether the specified \a notAntialiasedElement is forcibly drawn not antialiased. + + See \ref setNotAntialiasedElements for details. + + \see setAntialiasedElement +*/ +void QCustomPlot::setNotAntialiasedElement(QCP::AntialiasedElement notAntialiasedElement, bool enabled) +{ + if (!enabled && mNotAntialiasedElements.testFlag(notAntialiasedElement)) + mNotAntialiasedElements &= ~notAntialiasedElement; + else if (enabled && !mNotAntialiasedElements.testFlag(notAntialiasedElement)) + mNotAntialiasedElements |= notAntialiasedElement; + + // make sure elements aren't in mNotAntialiasedElements and mAntialiasedElements simultaneously: + if ((mNotAntialiasedElements & mAntialiasedElements) != 0) + mAntialiasedElements |= ~mNotAntialiasedElements; +} + +/*! + If set to true, adding a plottable (e.g. a graph) to the QCustomPlot automatically also adds the + plottable to the legend (QCustomPlot::legend). + + \see addGraph, QCPLegend::addItem +*/ +void QCustomPlot::setAutoAddPlottableToLegend(bool on) +{ + mAutoAddPlottableToLegend = on; +} + +/*! + Sets the possible interactions of this QCustomPlot as an or-combination of \ref QCP::Interaction + enums. There are the following types of interactions: + + Axis range manipulation is controlled via \ref QCP::iRangeDrag and \ref QCP::iRangeZoom. When the + respective interaction is enabled, the user may drag axes ranges and zoom with the mouse wheel. + For details how to control which axes the user may drag/zoom and in what orientations, see \ref + QCPAxisRect::setRangeDrag, \ref QCPAxisRect::setRangeZoom, \ref QCPAxisRect::setRangeDragAxes, + \ref QCPAxisRect::setRangeZoomAxes. + + Plottable data selection is controlled by \ref QCP::iSelectPlottables. If \ref + QCP::iSelectPlottables is set, the user may select plottables (graphs, curves, bars,...) and + their data by clicking on them or in their vicinity (\ref setSelectionTolerance). Whether the + user can actually select a plottable and its data can further be restricted with the \ref + QCPAbstractPlottable::setSelectable method on the specific plottable. For details, see the + special page about the \ref dataselection "data selection mechanism". To retrieve a list of all + currently selected plottables, call \ref selectedPlottables. If you're only interested in + QCPGraphs, you may use the convenience function \ref selectedGraphs. + + Item selection is controlled by \ref QCP::iSelectItems. If \ref QCP::iSelectItems is set, the user + may select items (QCPItemLine, QCPItemText,...) by clicking on them or in their vicinity. To find + out whether a specific item is selected, call QCPAbstractItem::selected(). To retrieve a list of + all currently selected items, call \ref selectedItems. + + Axis selection is controlled with \ref QCP::iSelectAxes. If \ref QCP::iSelectAxes is set, the user + may select parts of the axes by clicking on them. What parts exactly (e.g. Axis base line, tick + labels, axis label) are selectable can be controlled via \ref QCPAxis::setSelectableParts for + each axis. To retrieve a list of all axes that currently contain selected parts, call \ref + selectedAxes. Which parts of an axis are selected, can be retrieved with QCPAxis::selectedParts(). + + Legend selection is controlled with \ref QCP::iSelectLegend. If this is set, the user may + select the legend itself or individual items by clicking on them. What parts exactly are + selectable can be controlled via \ref QCPLegend::setSelectableParts. To find out whether the + legend or any of its child items are selected, check the value of QCPLegend::selectedParts. To + find out which child items are selected, call \ref QCPLegend::selectedItems. + + All other selectable elements The selection of all other selectable objects (e.g. + QCPTextElement, or your own layerable subclasses) is controlled with \ref QCP::iSelectOther. If set, the + user may select those objects by clicking on them. To find out which are currently selected, you + need to check their selected state explicitly. + + If the selection state has changed by user interaction, the \ref selectionChangedByUser signal is + emitted. Each selectable object additionally emits an individual selectionChanged signal whenever + their selection state has changed, i.e. not only by user interaction. + + To allow multiple objects to be selected by holding the selection modifier (\ref + setMultiSelectModifier), set the flag \ref QCP::iMultiSelect. + + \note In addition to the selection mechanism presented here, QCustomPlot always emits + corresponding signals, when an object is clicked or double clicked. see \ref plottableClick and + \ref plottableDoubleClick for example. + + \see setInteraction, setSelectionTolerance +*/ +void QCustomPlot::setInteractions(const QCP::Interactions &interactions) +{ + mInteractions = interactions; +} + +/*! + Sets the single \a interaction of this QCustomPlot to \a enabled. + + For details about the interaction system, see \ref setInteractions. + + \see setInteractions +*/ +void QCustomPlot::setInteraction(const QCP::Interaction &interaction, bool enabled) +{ + if (!enabled && mInteractions.testFlag(interaction)) + mInteractions &= ~interaction; + else if (enabled && !mInteractions.testFlag(interaction)) + mInteractions |= interaction; +} + +/*! + Sets the tolerance that is used to decide whether a click selects an object (e.g. a plottable) or + not. + + If the user clicks in the vicinity of the line of e.g. a QCPGraph, it's only regarded as a + potential selection when the minimum distance between the click position and the graph line is + smaller than \a pixels. Objects that are defined by an area (e.g. QCPBars) only react to clicks + directly inside the area and ignore this selection tolerance. In other words, it only has meaning + for parts of objects that are too thin to exactly hit with a click and thus need such a + tolerance. + + \see setInteractions, QCPLayerable::selectTest +*/ +void QCustomPlot::setSelectionTolerance(int pixels) +{ + mSelectionTolerance = pixels; +} + +/*! + Sets whether antialiasing is disabled for this QCustomPlot while the user is dragging axes + ranges. If many objects, especially plottables, are drawn antialiased, this greatly improves + performance during dragging. Thus it creates a more responsive user experience. As soon as the + user stops dragging, the last replot is done with normal antialiasing, to restore high image + quality. + + \see setAntialiasedElements, setNotAntialiasedElements +*/ +void QCustomPlot::setNoAntialiasingOnDrag(bool enabled) +{ + mNoAntialiasingOnDrag = enabled; +} + +/*! + Sets the plotting hints for this QCustomPlot instance as an \a or combination of QCP::PlottingHint. + + \see setPlottingHint +*/ +void QCustomPlot::setPlottingHints(const QCP::PlottingHints &hints) +{ + mPlottingHints = hints; +} + +/*! + Sets the specified plotting \a hint to \a enabled. + + \see setPlottingHints +*/ +void QCustomPlot::setPlottingHint(QCP::PlottingHint hint, bool enabled) +{ + QCP::PlottingHints newHints = mPlottingHints; + if (!enabled) + newHints &= ~hint; + else + newHints |= hint; + + if (newHints != mPlottingHints) + setPlottingHints(newHints); +} + +/*! + Sets the keyboard modifier that will be recognized as multi-select-modifier. + + If \ref QCP::iMultiSelect is specified in \ref setInteractions, the user may select multiple + objects (or data points) by clicking on them one after the other while holding down \a modifier. + + By default the multi-select-modifier is set to Qt::ControlModifier. + + \see setInteractions +*/ +void QCustomPlot::setMultiSelectModifier(Qt::KeyboardModifier modifier) +{ + mMultiSelectModifier = modifier; +} + +/*! + Sets how QCustomPlot processes mouse click-and-drag interactions by the user. + + If \a mode is \ref QCP::srmNone, the mouse drag is forwarded to the underlying objects. For + example, QCPAxisRect may process a mouse drag by dragging axis ranges, see \ref + QCPAxisRect::setRangeDrag. If \a mode is not \ref QCP::srmNone, the current selection rect (\ref + selectionRect) becomes activated and allows e.g. rect zooming and data point selection. + + If you wish to provide your user both with axis range dragging and data selection/range zooming, + use this method to switch between the modes just before the interaction is processed, e.g. in + reaction to the \ref mousePress or \ref mouseMove signals. For example you could check whether + the user is holding a certain keyboard modifier, and then decide which \a mode shall be set. + + If a selection rect interaction is currently active, and \a mode is set to \ref QCP::srmNone, the + interaction is canceled (\ref QCPSelectionRect::cancel). Switching between any of the other modes + will keep the selection rect active. Upon completion of the interaction, the behaviour is as + defined by the currently set \a mode, not the mode that was set when the interaction started. + + \see setInteractions, setSelectionRect, QCPSelectionRect +*/ +void QCustomPlot::setSelectionRectMode(QCP::SelectionRectMode mode) +{ + if (mSelectionRect) + { + if (mode == QCP::srmNone) + mSelectionRect->cancel(); // when switching to none, we immediately want to abort a potentially active selection rect + + // disconnect old connections: + if (mSelectionRectMode == QCP::srmSelect) + disconnect(mSelectionRect, SIGNAL(accepted(QRect,QMouseEvent*)), this, SLOT(processRectSelection(QRect,QMouseEvent*))); + else if (mSelectionRectMode == QCP::srmZoom) + disconnect(mSelectionRect, SIGNAL(accepted(QRect,QMouseEvent*)), this, SLOT(processRectZoom(QRect,QMouseEvent*))); + + // establish new ones: + if (mode == QCP::srmSelect) + connect(mSelectionRect, SIGNAL(accepted(QRect,QMouseEvent*)), this, SLOT(processRectSelection(QRect,QMouseEvent*))); + else if (mode == QCP::srmZoom) + connect(mSelectionRect, SIGNAL(accepted(QRect,QMouseEvent*)), this, SLOT(processRectZoom(QRect,QMouseEvent*))); + } + + mSelectionRectMode = mode; +} + +/*! + Sets the \ref QCPSelectionRect instance that QCustomPlot will use if \a mode is not \ref + QCP::srmNone and the user performs a click-and-drag interaction. QCustomPlot takes ownership of + the passed \a selectionRect. It can be accessed later via \ref selectionRect. + + This method is useful if you wish to replace the default QCPSelectionRect instance with an + instance of a QCPSelectionRect subclass, to introduce custom behaviour of the selection rect. + + \see setSelectionRectMode +*/ +void QCustomPlot::setSelectionRect(QCPSelectionRect *selectionRect) +{ + if (mSelectionRect) + delete mSelectionRect; + + mSelectionRect = selectionRect; + + if (mSelectionRect) + { + // establish connections with new selection rect: + if (mSelectionRectMode == QCP::srmSelect) + connect(mSelectionRect, SIGNAL(accepted(QRect,QMouseEvent*)), this, SLOT(processRectSelection(QRect,QMouseEvent*))); + else if (mSelectionRectMode == QCP::srmZoom) + connect(mSelectionRect, SIGNAL(accepted(QRect,QMouseEvent*)), this, SLOT(processRectZoom(QRect,QMouseEvent*))); + } +} + +/*! + \warning This is still an experimental feature and its performance depends on the system that it + runs on. Having multiple QCustomPlot widgets in one application with enabled OpenGL rendering + might cause context conflicts on some systems. + + This method allows to enable OpenGL plot rendering, for increased plotting performance of + graphically demanding plots (thick lines, translucent fills, etc.). + + If \a enabled is set to true, QCustomPlot will try to initialize OpenGL and, if successful, + continue plotting with hardware acceleration. The parameter \a multisampling controls how many + samples will be used per pixel, it essentially controls the antialiasing quality. If \a + multisampling is set too high for the current graphics hardware, the maximum allowed value will + be used. + + You can test whether switching to OpenGL rendering was successful by checking whether the + according getter \a QCustomPlot::openGl() returns true. If the OpenGL initialization fails, + rendering continues with the regular software rasterizer, and an according qDebug output is + generated. + + If switching to OpenGL was successful, this method disables label caching (\ref setPlottingHint + "setPlottingHint(QCP::phCacheLabels, false)") and turns on QCustomPlot's antialiasing override + for all elements (\ref setAntialiasedElements "setAntialiasedElements(QCP::aeAll)"), leading to a + higher quality output. The antialiasing override allows for pixel-grid aligned drawing in the + OpenGL paint device. As stated before, in OpenGL rendering the actual antialiasing of the plot is + controlled with \a multisampling. If \a enabled is set to false, the antialiasing/label caching + settings are restored to what they were before OpenGL was enabled, if they weren't altered in the + meantime. + + \note OpenGL support is only enabled if QCustomPlot is compiled with the macro \c QCUSTOMPLOT_USE_OPENGL + defined. This define must be set before including the QCustomPlot header both during compilation + of the QCustomPlot library as well as when compiling your application. It is best to just include + the line DEFINES += QCUSTOMPLOT_USE_OPENGL in the respective qmake project files. + \note If you are using a Qt version before 5.0, you must also add the module "opengl" to your \c + QT variable in the qmake project files. For Qt versions 5.0 and higher, QCustomPlot switches to a + newer OpenGL interface which is already in the "gui" module. +*/ +void QCustomPlot::setOpenGl(bool enabled, int multisampling) +{ + mOpenGlMultisamples = qMax(0, multisampling); +#ifdef QCUSTOMPLOT_USE_OPENGL + mOpenGl = enabled; + if (mOpenGl) + { + if (setupOpenGl()) + { + // backup antialiasing override and labelcaching setting so we can restore upon disabling OpenGL + mOpenGlAntialiasedElementsBackup = mAntialiasedElements; + mOpenGlCacheLabelsBackup = mPlottingHints.testFlag(QCP::phCacheLabels); + // set antialiasing override to antialias all (aligns gl pixel grid properly), and disable label caching (would use software rasterizer for pixmap caches): + setAntialiasedElements(QCP::aeAll); + setPlottingHint(QCP::phCacheLabels, false); + } else + { + qDebug() << Q_FUNC_INFO << "Failed to enable OpenGL, continuing plotting without hardware acceleration."; + mOpenGl = false; + } + } else + { + // restore antialiasing override and labelcaching to what it was before enabling OpenGL, if nobody changed it in the meantime: + if (mAntialiasedElements == QCP::aeAll) + setAntialiasedElements(mOpenGlAntialiasedElementsBackup); + if (!mPlottingHints.testFlag(QCP::phCacheLabels)) + setPlottingHint(QCP::phCacheLabels, mOpenGlCacheLabelsBackup); + freeOpenGl(); + } + // recreate all paint buffers: + mPaintBuffers.clear(); + setupPaintBuffers(); +#else + Q_UNUSED(enabled) + qDebug() << Q_FUNC_INFO << "QCustomPlot can't use OpenGL because QCUSTOMPLOT_USE_OPENGL was not defined during compilation (add 'DEFINES += QCUSTOMPLOT_USE_OPENGL' to your qmake .pro file)"; +#endif +} + +/*! + Sets the viewport of this QCustomPlot. Usually users of QCustomPlot don't need to change the + viewport manually. + + The viewport is the area in which the plot is drawn. All mechanisms, e.g. margin caluclation take + the viewport to be the outer border of the plot. The viewport normally is the rect() of the + QCustomPlot widget, i.e. a rect with top left (0, 0) and size of the QCustomPlot widget. + + Don't confuse the viewport with the axis rect (QCustomPlot::axisRect). An axis rect is typically + an area enclosed by four axes, where the graphs/plottables are drawn in. The viewport is larger + and contains also the axes themselves, their tick numbers, their labels, or even additional axis + rects, color scales and other layout elements. + + This function is used to allow arbitrary size exports with \ref toPixmap, \ref savePng, \ref + savePdf, etc. by temporarily changing the viewport size. +*/ +void QCustomPlot::setViewport(const QRect &rect) +{ + mViewport = rect; + if (mPlotLayout) + mPlotLayout->setOuterRect(mViewport); +} + +/*! + Sets the device pixel ratio used by the paint buffers of this QCustomPlot instance. + + Normally, this doesn't need to be set manually, because it is initialized with the regular \a + QWidget::devicePixelRatio which is configured by Qt to fit the display device (e.g. 1 for normal + displays, 2 for High-DPI displays). + + Device pixel ratios are supported by Qt only for Qt versions since 5.4. If this method is called + when QCustomPlot is being used with older Qt versions, outputs an according qDebug message and + leaves the internal buffer device pixel ratio at 1.0. +*/ +void QCustomPlot::setBufferDevicePixelRatio(double ratio) +{ + if (!qFuzzyCompare(ratio, mBufferDevicePixelRatio)) + { +#ifdef QCP_DEVICEPIXELRATIO_SUPPORTED + mBufferDevicePixelRatio = ratio; + for (int i=0; isetDevicePixelRatio(mBufferDevicePixelRatio); + // Note: axis label cache has devicePixelRatio as part of cache hash, so no need to manually clear cache here +#else + qDebug() << Q_FUNC_INFO << "Device pixel ratios not supported for Qt versions before 5.4"; + mBufferDevicePixelRatio = 1.0; +#endif + } +} + +/*! + Sets \a pm as the viewport background pixmap (see \ref setViewport). The pixmap is always drawn + below all other objects in the plot. + + For cases where the provided pixmap doesn't have the same size as the viewport, scaling can be + enabled with \ref setBackgroundScaled and the scaling mode (whether and how the aspect ratio is + preserved) can be set with \ref setBackgroundScaledMode. To set all these options in one call, + consider using the overloaded version of this function. + + If a background brush was set with \ref setBackground(const QBrush &brush), the viewport will + first be filled with that brush, before drawing the background pixmap. This can be useful for + background pixmaps with translucent areas. + + \see setBackgroundScaled, setBackgroundScaledMode +*/ +void QCustomPlot::setBackground(const QPixmap &pm) +{ + mBackgroundPixmap = pm; + mScaledBackgroundPixmap = QPixmap(); +} + +/*! + Sets the background brush of the viewport (see \ref setViewport). + + Before drawing everything else, the background is filled with \a brush. If a background pixmap + was set with \ref setBackground(const QPixmap &pm), this brush will be used to fill the viewport + before the background pixmap is drawn. This can be useful for background pixmaps with translucent + areas. + + Set \a brush to Qt::NoBrush or Qt::Transparent to leave background transparent. This can be + useful for exporting to image formats which support transparency, e.g. \ref savePng. + + \see setBackgroundScaled, setBackgroundScaledMode +*/ +void QCustomPlot::setBackground(const QBrush &brush) +{ + mBackgroundBrush = brush; +} + +/*! \overload + + Allows setting the background pixmap of the viewport, whether it shall be scaled and how it + shall be scaled in one call. + + \see setBackground(const QPixmap &pm), setBackgroundScaled, setBackgroundScaledMode +*/ +void QCustomPlot::setBackground(const QPixmap &pm, bool scaled, Qt::AspectRatioMode mode) +{ + mBackgroundPixmap = pm; + mScaledBackgroundPixmap = QPixmap(); + mBackgroundScaled = scaled; + mBackgroundScaledMode = mode; +} + +/*! + Sets whether the viewport background pixmap shall be scaled to fit the viewport. If \a scaled is + set to true, control whether and how the aspect ratio of the original pixmap is preserved with + \ref setBackgroundScaledMode. + + Note that the scaled version of the original pixmap is buffered, so there is no performance + penalty on replots. (Except when the viewport dimensions are changed continuously.) + + \see setBackground, setBackgroundScaledMode +*/ +void QCustomPlot::setBackgroundScaled(bool scaled) +{ + mBackgroundScaled = scaled; +} + +/*! + If scaling of the viewport background pixmap is enabled (\ref setBackgroundScaled), use this + function to define whether and how the aspect ratio of the original pixmap is preserved. + + \see setBackground, setBackgroundScaled +*/ +void QCustomPlot::setBackgroundScaledMode(Qt::AspectRatioMode mode) +{ + mBackgroundScaledMode = mode; +} + +/*! + Returns the plottable with \a index. If the index is invalid, returns 0. + + There is an overloaded version of this function with no parameter which returns the last added + plottable, see QCustomPlot::plottable() + + \see plottableCount +*/ +QCPAbstractPlottable *QCustomPlot::plottable(int index) +{ + if (index >= 0 && index < mPlottables.size()) + { + return mPlottables.at(index); + } else + { + qDebug() << Q_FUNC_INFO << "index out of bounds:" << index; + return 0; + } +} + +/*! \overload + + Returns the last plottable that was added to the plot. If there are no plottables in the plot, + returns 0. + + \see plottableCount +*/ +QCPAbstractPlottable *QCustomPlot::plottable() +{ + if (!mPlottables.isEmpty()) + { + return mPlottables.last(); + } else + return 0; +} + +/*! + Removes the specified plottable from the plot and deletes it. If necessary, the corresponding + legend item is also removed from the default legend (QCustomPlot::legend). + + Returns true on success. + + \see clearPlottables +*/ +bool QCustomPlot::removePlottable(QCPAbstractPlottable *plottable) +{ + if (!mPlottables.contains(plottable)) + { + qDebug() << Q_FUNC_INFO << "plottable not in list:" << reinterpret_cast(plottable); + return false; + } + + // remove plottable from legend: + plottable->removeFromLegend(); + // special handling for QCPGraphs to maintain the simple graph interface: + if (QCPGraph *graph = qobject_cast(plottable)) + mGraphs.removeOne(graph); + // remove plottable: + delete plottable; + mPlottables.removeOne(plottable); + return true; +} + +/*! \overload + + Removes and deletes the plottable by its \a index. +*/ +bool QCustomPlot::removePlottable(int index) +{ + if (index >= 0 && index < mPlottables.size()) + return removePlottable(mPlottables[index]); + else + { + qDebug() << Q_FUNC_INFO << "index out of bounds:" << index; + return false; + } +} + +/*! + Removes all plottables from the plot and deletes them. Corresponding legend items are also + removed from the default legend (QCustomPlot::legend). + + Returns the number of plottables removed. + + \see removePlottable +*/ +int QCustomPlot::clearPlottables() +{ + int c = mPlottables.size(); + for (int i=c-1; i >= 0; --i) + removePlottable(mPlottables[i]); + return c; +} + +/*! + Returns the number of currently existing plottables in the plot + + \see plottable +*/ +int QCustomPlot::plottableCount() const +{ + return mPlottables.size(); +} + +/*! + Returns a list of the selected plottables. If no plottables are currently selected, the list is empty. + + There is a convenience function if you're only interested in selected graphs, see \ref selectedGraphs. + + \see setInteractions, QCPAbstractPlottable::setSelectable, QCPAbstractPlottable::setSelection +*/ +QList QCustomPlot::selectedPlottables() const +{ + QList result; + foreach (QCPAbstractPlottable *plottable, mPlottables) + { + if (plottable->selected()) + result.append(plottable); + } + return result; +} + +/*! + Returns the plottable at the pixel position \a pos. Plottables that only consist of single lines + (like graphs) have a tolerance band around them, see \ref setSelectionTolerance. If multiple + plottables come into consideration, the one closest to \a pos is returned. + + If \a onlySelectable is true, only plottables that are selectable + (QCPAbstractPlottable::setSelectable) are considered. + + If there is no plottable at \a pos, the return value is 0. + + \see itemAt, layoutElementAt +*/ +QCPAbstractPlottable *QCustomPlot::plottableAt(const QPointF &pos, bool onlySelectable) const +{ + QCPAbstractPlottable *resultPlottable = 0; + double resultDistance = mSelectionTolerance; // only regard clicks with distances smaller than mSelectionTolerance as selections, so initialize with that value + + foreach (QCPAbstractPlottable *plottable, mPlottables) + { + if (onlySelectable && !plottable->selectable()) // we could have also passed onlySelectable to the selectTest function, but checking here is faster, because we have access to QCPabstractPlottable::selectable + continue; + if ((plottable->keyAxis()->axisRect()->rect() & plottable->valueAxis()->axisRect()->rect()).contains(pos.toPoint())) // only consider clicks inside the rect that is spanned by the plottable's key/value axes + { + double currentDistance = plottable->selectTest(pos, false); + if (currentDistance >= 0 && currentDistance < resultDistance) + { + resultPlottable = plottable; + resultDistance = currentDistance; + } + } + } + + return resultPlottable; +} + +/*! + Returns whether this QCustomPlot instance contains the \a plottable. +*/ +bool QCustomPlot::hasPlottable(QCPAbstractPlottable *plottable) const +{ + return mPlottables.contains(plottable); +} + +/*! + Returns the graph with \a index. If the index is invalid, returns 0. + + There is an overloaded version of this function with no parameter which returns the last created + graph, see QCustomPlot::graph() + + \see graphCount, addGraph +*/ +QCPGraph *QCustomPlot::graph(int index) const +{ + if (index >= 0 && index < mGraphs.size()) + { + return mGraphs.at(index); + } else + { + qDebug() << Q_FUNC_INFO << "index out of bounds:" << index; + return 0; + } +} + +/*! \overload + + Returns the last graph, that was created with \ref addGraph. If there are no graphs in the plot, + returns 0. + + \see graphCount, addGraph +*/ +QCPGraph *QCustomPlot::graph() const +{ + if (!mGraphs.isEmpty()) + { + return mGraphs.last(); + } else + return 0; +} + +/*! + Creates a new graph inside the plot. If \a keyAxis and \a valueAxis are left unspecified (0), the + bottom (xAxis) is used as key and the left (yAxis) is used as value axis. If specified, \a + keyAxis and \a valueAxis must reside in this QCustomPlot. + + \a keyAxis will be used as key axis (typically "x") and \a valueAxis as value axis (typically + "y") for the graph. + + Returns a pointer to the newly created graph, or 0 if adding the graph failed. + + \see graph, graphCount, removeGraph, clearGraphs +*/ +QCPGraph *QCustomPlot::addGraph(QCPAxis *keyAxis, QCPAxis *valueAxis) +{ + if (!keyAxis) keyAxis = xAxis; + if (!valueAxis) valueAxis = yAxis; + if (!keyAxis || !valueAxis) + { + qDebug() << Q_FUNC_INFO << "can't use default QCustomPlot xAxis or yAxis, because at least one is invalid (has been deleted)"; + return 0; + } + if (keyAxis->parentPlot() != this || valueAxis->parentPlot() != this) + { + qDebug() << Q_FUNC_INFO << "passed keyAxis or valueAxis doesn't have this QCustomPlot as parent"; + return 0; + } + + QCPGraph *newGraph = new QCPGraph(keyAxis, valueAxis); + newGraph->setName(QLatin1String("Graph ")+QString::number(mGraphs.size())); + return newGraph; +} + +/*! + Removes the specified \a graph from the plot and deletes it. If necessary, the corresponding + legend item is also removed from the default legend (QCustomPlot::legend). If any other graphs in + the plot have a channel fill set towards the removed graph, the channel fill property of those + graphs is reset to zero (no channel fill). + + Returns true on success. + + \see clearGraphs +*/ +bool QCustomPlot::removeGraph(QCPGraph *graph) +{ + return removePlottable(graph); +} + +/*! \overload + + Removes and deletes the graph by its \a index. +*/ +bool QCustomPlot::removeGraph(int index) +{ + if (index >= 0 && index < mGraphs.size()) + return removeGraph(mGraphs[index]); + else + return false; +} + +/*! + Removes all graphs from the plot and deletes them. Corresponding legend items are also removed + from the default legend (QCustomPlot::legend). + + Returns the number of graphs removed. + + \see removeGraph +*/ +int QCustomPlot::clearGraphs() +{ + int c = mGraphs.size(); + for (int i=c-1; i >= 0; --i) + removeGraph(mGraphs[i]); + return c; +} + +/*! + Returns the number of currently existing graphs in the plot + + \see graph, addGraph +*/ +int QCustomPlot::graphCount() const +{ + return mGraphs.size(); +} + +/*! + Returns a list of the selected graphs. If no graphs are currently selected, the list is empty. + + If you are not only interested in selected graphs but other plottables like QCPCurve, QCPBars, + etc., use \ref selectedPlottables. + + \see setInteractions, selectedPlottables, QCPAbstractPlottable::setSelectable, QCPAbstractPlottable::setSelection +*/ +QList QCustomPlot::selectedGraphs() const +{ + QList result; + foreach (QCPGraph *graph, mGraphs) + { + if (graph->selected()) + result.append(graph); + } + return result; +} + +/*! + Returns the item with \a index. If the index is invalid, returns 0. + + There is an overloaded version of this function with no parameter which returns the last added + item, see QCustomPlot::item() + + \see itemCount +*/ +QCPAbstractItem *QCustomPlot::item(int index) const +{ + if (index >= 0 && index < mItems.size()) + { + return mItems.at(index); + } else + { + qDebug() << Q_FUNC_INFO << "index out of bounds:" << index; + return 0; + } +} + +/*! \overload + + Returns the last item that was added to this plot. If there are no items in the plot, + returns 0. + + \see itemCount +*/ +QCPAbstractItem *QCustomPlot::item() const +{ + if (!mItems.isEmpty()) + { + return mItems.last(); + } else + return 0; +} + +/*! + Removes the specified item from the plot and deletes it. + + Returns true on success. + + \see clearItems +*/ +bool QCustomPlot::removeItem(QCPAbstractItem *item) +{ + if (mItems.contains(item)) + { + delete item; + mItems.removeOne(item); + return true; + } else + { + qDebug() << Q_FUNC_INFO << "item not in list:" << reinterpret_cast(item); + return false; + } +} + +/*! \overload + + Removes and deletes the item by its \a index. +*/ +bool QCustomPlot::removeItem(int index) +{ + if (index >= 0 && index < mItems.size()) + return removeItem(mItems[index]); + else + { + qDebug() << Q_FUNC_INFO << "index out of bounds:" << index; + return false; + } +} + +/*! + Removes all items from the plot and deletes them. + + Returns the number of items removed. + + \see removeItem +*/ +int QCustomPlot::clearItems() +{ + int c = mItems.size(); + for (int i=c-1; i >= 0; --i) + removeItem(mItems[i]); + return c; +} + +/*! + Returns the number of currently existing items in the plot + + \see item +*/ +int QCustomPlot::itemCount() const +{ + return mItems.size(); +} + +/*! + Returns a list of the selected items. If no items are currently selected, the list is empty. + + \see setInteractions, QCPAbstractItem::setSelectable, QCPAbstractItem::setSelected +*/ +QList QCustomPlot::selectedItems() const +{ + QList result; + foreach (QCPAbstractItem *item, mItems) + { + if (item->selected()) + result.append(item); + } + return result; +} + +/*! + Returns the item at the pixel position \a pos. Items that only consist of single lines (e.g. \ref + QCPItemLine or \ref QCPItemCurve) have a tolerance band around them, see \ref + setSelectionTolerance. If multiple items come into consideration, the one closest to \a pos is + returned. + + If \a onlySelectable is true, only items that are selectable (QCPAbstractItem::setSelectable) are + considered. + + If there is no item at \a pos, the return value is 0. + + \see plottableAt, layoutElementAt +*/ +QCPAbstractItem *QCustomPlot::itemAt(const QPointF &pos, bool onlySelectable) const +{ + QCPAbstractItem *resultItem = 0; + double resultDistance = mSelectionTolerance; // only regard clicks with distances smaller than mSelectionTolerance as selections, so initialize with that value + + foreach (QCPAbstractItem *item, mItems) + { + if (onlySelectable && !item->selectable()) // we could have also passed onlySelectable to the selectTest function, but checking here is faster, because we have access to QCPAbstractItem::selectable + continue; + if (!item->clipToAxisRect() || item->clipRect().contains(pos.toPoint())) // only consider clicks inside axis cliprect of the item if actually clipped to it + { + double currentDistance = item->selectTest(pos, false); + if (currentDistance >= 0 && currentDistance < resultDistance) + { + resultItem = item; + resultDistance = currentDistance; + } + } + } + + return resultItem; +} + +/*! + Returns whether this QCustomPlot contains the \a item. + + \see item +*/ +bool QCustomPlot::hasItem(QCPAbstractItem *item) const +{ + return mItems.contains(item); +} + +/*! + Returns the layer with the specified \a name. If there is no layer with the specified name, 0 is + returned. + + Layer names are case-sensitive. + + \see addLayer, moveLayer, removeLayer +*/ +QCPLayer *QCustomPlot::layer(const QString &name) const +{ + foreach (QCPLayer *layer, mLayers) + { + if (layer->name() == name) + return layer; + } + return 0; +} + +/*! \overload + + Returns the layer by \a index. If the index is invalid, 0 is returned. + + \see addLayer, moveLayer, removeLayer +*/ +QCPLayer *QCustomPlot::layer(int index) const +{ + if (index >= 0 && index < mLayers.size()) + { + return mLayers.at(index); + } else + { + qDebug() << Q_FUNC_INFO << "index out of bounds:" << index; + return 0; + } +} + +/*! + Returns the layer that is set as current layer (see \ref setCurrentLayer). +*/ +QCPLayer *QCustomPlot::currentLayer() const +{ + return mCurrentLayer; +} + +/*! + Sets the layer with the specified \a name to be the current layer. All layerables (\ref + QCPLayerable), e.g. plottables and items, are created on the current layer. + + Returns true on success, i.e. if there is a layer with the specified \a name in the QCustomPlot. + + Layer names are case-sensitive. + + \see addLayer, moveLayer, removeLayer, QCPLayerable::setLayer +*/ +bool QCustomPlot::setCurrentLayer(const QString &name) +{ + if (QCPLayer *newCurrentLayer = layer(name)) + { + return setCurrentLayer(newCurrentLayer); + } else + { + qDebug() << Q_FUNC_INFO << "layer with name doesn't exist:" << name; + return false; + } +} + +/*! \overload + + Sets the provided \a layer to be the current layer. + + Returns true on success, i.e. when \a layer is a valid layer in the QCustomPlot. + + \see addLayer, moveLayer, removeLayer +*/ +bool QCustomPlot::setCurrentLayer(QCPLayer *layer) +{ + if (!mLayers.contains(layer)) + { + qDebug() << Q_FUNC_INFO << "layer not a layer of this QCustomPlot:" << reinterpret_cast(layer); + return false; + } + + mCurrentLayer = layer; + return true; +} + +/*! + Returns the number of currently existing layers in the plot + + \see layer, addLayer +*/ +int QCustomPlot::layerCount() const +{ + return mLayers.size(); +} + +/*! + Adds a new layer to this QCustomPlot instance. The new layer will have the name \a name, which + must be unique. Depending on \a insertMode, it is positioned either below or above \a otherLayer. + + Returns true on success, i.e. if there is no other layer named \a name and \a otherLayer is a + valid layer inside this QCustomPlot. + + If \a otherLayer is 0, the highest layer in the QCustomPlot will be used. + + For an explanation of what layers are in QCustomPlot, see the documentation of \ref QCPLayer. + + \see layer, moveLayer, removeLayer +*/ +bool QCustomPlot::addLayer(const QString &name, QCPLayer *otherLayer, QCustomPlot::LayerInsertMode insertMode) +{ + if (!otherLayer) + otherLayer = mLayers.last(); + if (!mLayers.contains(otherLayer)) + { + qDebug() << Q_FUNC_INFO << "otherLayer not a layer of this QCustomPlot:" << reinterpret_cast(otherLayer); + return false; + } + if (layer(name)) + { + qDebug() << Q_FUNC_INFO << "A layer exists already with the name" << name; + return false; + } + + QCPLayer *newLayer = new QCPLayer(this, name); + mLayers.insert(otherLayer->index() + (insertMode==limAbove ? 1:0), newLayer); + updateLayerIndices(); + setupPaintBuffers(); // associates new layer with the appropriate paint buffer + return true; +} + +/*! + Removes the specified \a layer and returns true on success. + + All layerables (e.g. plottables and items) on the removed layer will be moved to the layer below + \a layer. If \a layer is the bottom layer, the layerables are moved to the layer above. In both + cases, the total rendering order of all layerables in the QCustomPlot is preserved. + + If \a layer is the current layer (\ref setCurrentLayer), the layer below (or above, if bottom + layer) becomes the new current layer. + + It is not possible to remove the last layer of the plot. + + \see layer, addLayer, moveLayer +*/ +bool QCustomPlot::removeLayer(QCPLayer *layer) +{ + if (!mLayers.contains(layer)) + { + qDebug() << Q_FUNC_INFO << "layer not a layer of this QCustomPlot:" << reinterpret_cast(layer); + return false; + } + if (mLayers.size() < 2) + { + qDebug() << Q_FUNC_INFO << "can't remove last layer"; + return false; + } + + // append all children of this layer to layer below (if this is lowest layer, prepend to layer above) + int removedIndex = layer->index(); + bool isFirstLayer = removedIndex==0; + QCPLayer *targetLayer = isFirstLayer ? mLayers.at(removedIndex+1) : mLayers.at(removedIndex-1); + QList children = layer->children(); + if (isFirstLayer) // prepend in reverse order (so order relative to each other stays the same) + { + for (int i=children.size()-1; i>=0; --i) + children.at(i)->moveToLayer(targetLayer, true); + } else // append normally + { + for (int i=0; imoveToLayer(targetLayer, false); + } + // if removed layer is current layer, change current layer to layer below/above: + if (layer == mCurrentLayer) + setCurrentLayer(targetLayer); + // invalidate the paint buffer that was responsible for this layer: + if (!layer->mPaintBuffer.isNull()) + layer->mPaintBuffer.data()->setInvalidated(); + // remove layer: + delete layer; + mLayers.removeOne(layer); + updateLayerIndices(); + return true; +} + +/*! + Moves the specified \a layer either above or below \a otherLayer. Whether it's placed above or + below is controlled with \a insertMode. + + Returns true on success, i.e. when both \a layer and \a otherLayer are valid layers in the + QCustomPlot. + + \see layer, addLayer, moveLayer +*/ +bool QCustomPlot::moveLayer(QCPLayer *layer, QCPLayer *otherLayer, QCustomPlot::LayerInsertMode insertMode) +{ + if (!mLayers.contains(layer)) + { + qDebug() << Q_FUNC_INFO << "layer not a layer of this QCustomPlot:" << reinterpret_cast(layer); + return false; + } + if (!mLayers.contains(otherLayer)) + { + qDebug() << Q_FUNC_INFO << "otherLayer not a layer of this QCustomPlot:" << reinterpret_cast(otherLayer); + return false; + } + + if (layer->index() > otherLayer->index()) + mLayers.move(layer->index(), otherLayer->index() + (insertMode==limAbove ? 1:0)); + else if (layer->index() < otherLayer->index()) + mLayers.move(layer->index(), otherLayer->index() + (insertMode==limAbove ? 0:-1)); + + // invalidate the paint buffers that are responsible for the layers: + if (!layer->mPaintBuffer.isNull()) + layer->mPaintBuffer.data()->setInvalidated(); + if (!otherLayer->mPaintBuffer.isNull()) + otherLayer->mPaintBuffer.data()->setInvalidated(); + + updateLayerIndices(); + return true; +} + +/*! + Returns the number of axis rects in the plot. + + All axis rects can be accessed via QCustomPlot::axisRect(). + + Initially, only one axis rect exists in the plot. + + \see axisRect, axisRects +*/ +int QCustomPlot::axisRectCount() const +{ + return axisRects().size(); +} + +/*! + Returns the axis rect with \a index. + + Initially, only one axis rect (with index 0) exists in the plot. If multiple axis rects were + added, all of them may be accessed with this function in a linear fashion (even when they are + nested in a layout hierarchy or inside other axis rects via QCPAxisRect::insetLayout). + + The order of the axis rects is given by the fill order of the \ref QCPLayout that is holding + them. For example, if the axis rects are in the top level grid layout (accessible via \ref + QCustomPlot::plotLayout), they are ordered from left to right, top to bottom, if the layout's + default \ref QCPLayoutGrid::setFillOrder "setFillOrder" of \ref QCPLayoutGrid::foColumnsFirst + "foColumnsFirst" wasn't changed. + + If you want to access axis rects by their row and column index, use the layout interface. For + example, use \ref QCPLayoutGrid::element of the top level grid layout, and \c qobject_cast the + returned layout element to \ref QCPAxisRect. (See also \ref thelayoutsystem.) + + \see axisRectCount, axisRects, QCPLayoutGrid::setFillOrder +*/ +QCPAxisRect *QCustomPlot::axisRect(int index) const +{ + const QList rectList = axisRects(); + if (index >= 0 && index < rectList.size()) + { + return rectList.at(index); + } else + { + qDebug() << Q_FUNC_INFO << "invalid axis rect index" << index; + return 0; + } +} + +/*! + Returns all axis rects in the plot. + + The order of the axis rects is given by the fill order of the \ref QCPLayout that is holding + them. For example, if the axis rects are in the top level grid layout (accessible via \ref + QCustomPlot::plotLayout), they are ordered from left to right, top to bottom, if the layout's + default \ref QCPLayoutGrid::setFillOrder "setFillOrder" of \ref QCPLayoutGrid::foColumnsFirst + "foColumnsFirst" wasn't changed. + + \see axisRectCount, axisRect, QCPLayoutGrid::setFillOrder +*/ +QList QCustomPlot::axisRects() const +{ + QList result; + QStack elementStack; + if (mPlotLayout) + elementStack.push(mPlotLayout); + + while (!elementStack.isEmpty()) + { + foreach (QCPLayoutElement *element, elementStack.pop()->elements(false)) + { + if (element) + { + elementStack.push(element); + if (QCPAxisRect *ar = qobject_cast(element)) + result.append(ar); + } + } + } + + return result; +} + +/*! + Returns the layout element at pixel position \a pos. If there is no element at that position, + returns 0. + + Only visible elements are used. If \ref QCPLayoutElement::setVisible on the element itself or on + any of its parent elements is set to false, it will not be considered. + + \see itemAt, plottableAt +*/ +QCPLayoutElement *QCustomPlot::layoutElementAt(const QPointF &pos) const +{ + QCPLayoutElement *currentElement = mPlotLayout; + bool searchSubElements = true; + while (searchSubElements && currentElement) + { + searchSubElements = false; + foreach (QCPLayoutElement *subElement, currentElement->elements(false)) + { + if (subElement && subElement->realVisibility() && subElement->selectTest(pos, false) >= 0) + { + currentElement = subElement; + searchSubElements = true; + break; + } + } + } + return currentElement; +} + +/*! + Returns the layout element of type \ref QCPAxisRect at pixel position \a pos. This method ignores + other layout elements even if they are visually in front of the axis rect (e.g. a \ref + QCPLegend). If there is no axis rect at that position, returns 0. + + Only visible axis rects are used. If \ref QCPLayoutElement::setVisible on the axis rect itself or + on any of its parent elements is set to false, it will not be considered. + + \see layoutElementAt +*/ +QCPAxisRect *QCustomPlot::axisRectAt(const QPointF &pos) const +{ + QCPAxisRect *result = 0; + QCPLayoutElement *currentElement = mPlotLayout; + bool searchSubElements = true; + while (searchSubElements && currentElement) + { + searchSubElements = false; + foreach (QCPLayoutElement *subElement, currentElement->elements(false)) + { + if (subElement && subElement->realVisibility() && subElement->selectTest(pos, false) >= 0) + { + currentElement = subElement; + searchSubElements = true; + if (QCPAxisRect *ar = qobject_cast(currentElement)) + result = ar; + break; + } + } + } + return result; +} + +/*! + Returns the axes that currently have selected parts, i.e. whose selection state is not \ref + QCPAxis::spNone. + + \see selectedPlottables, selectedLegends, setInteractions, QCPAxis::setSelectedParts, + QCPAxis::setSelectableParts +*/ +QList QCustomPlot::selectedAxes() const +{ + QList result, allAxes; + foreach (QCPAxisRect *rect, axisRects()) + allAxes << rect->axes(); + + foreach (QCPAxis *axis, allAxes) + { + if (axis->selectedParts() != QCPAxis::spNone) + result.append(axis); + } + + return result; +} + +/*! + Returns the legends that currently have selected parts, i.e. whose selection state is not \ref + QCPLegend::spNone. + + \see selectedPlottables, selectedAxes, setInteractions, QCPLegend::setSelectedParts, + QCPLegend::setSelectableParts, QCPLegend::selectedItems +*/ +QList QCustomPlot::selectedLegends() const +{ + QList result; + + QStack elementStack; + if (mPlotLayout) + elementStack.push(mPlotLayout); + + while (!elementStack.isEmpty()) + { + foreach (QCPLayoutElement *subElement, elementStack.pop()->elements(false)) + { + if (subElement) + { + elementStack.push(subElement); + if (QCPLegend *leg = qobject_cast(subElement)) + { + if (leg->selectedParts() != QCPLegend::spNone) + result.append(leg); + } + } + } + } + + return result; +} + +/*! + Deselects all layerables (plottables, items, axes, legends,...) of the QCustomPlot. + + Since calling this function is not a user interaction, this does not emit the \ref + selectionChangedByUser signal. The individual selectionChanged signals are emitted though, if the + objects were previously selected. + + \see setInteractions, selectedPlottables, selectedItems, selectedAxes, selectedLegends +*/ +void QCustomPlot::deselectAll() +{ + foreach (QCPLayer *layer, mLayers) + { + foreach (QCPLayerable *layerable, layer->children()) + layerable->deselectEvent(0); + } +} + +/*! + Causes a complete replot into the internal paint buffer(s). Finally, the widget surface is + refreshed with the new buffer contents. This is the method that must be called to make changes to + the plot, e.g. on the axis ranges or data points of graphs, visible. + + The parameter \a refreshPriority can be used to fine-tune the timing of the replot. For example + if your application calls \ref replot very quickly in succession (e.g. multiple independent + functions change some aspects of the plot and each wants to make sure the change gets replotted), + it is advisable to set \a refreshPriority to \ref QCustomPlot::rpQueuedReplot. This way, the + actual replotting is deferred to the next event loop iteration. Multiple successive calls of \ref + replot with this priority will only cause a single replot, avoiding redundant replots and + improving performance. + + Under a few circumstances, QCustomPlot causes a replot by itself. Those are resize events of the + QCustomPlot widget and user interactions (object selection and range dragging/zooming). + + Before the replot happens, the signal \ref beforeReplot is emitted. After the replot, \ref + afterReplot is emitted. It is safe to mutually connect the replot slot with any of those two + signals on two QCustomPlots to make them replot synchronously, it won't cause an infinite + recursion. + + If a layer is in mode \ref QCPLayer::lmBuffered (\ref QCPLayer::setMode), it is also possible to + replot only that specific layer via \ref QCPLayer::replot. See the documentation there for + details. +*/ +void QCustomPlot::replot(QCustomPlot::RefreshPriority refreshPriority) +{ + if (refreshPriority == QCustomPlot::rpQueuedReplot) + { + if (!mReplotQueued) + { + mReplotQueued = true; + QTimer::singleShot(0, this, SLOT(replot())); + } + return; + } + + if (mReplotting) // incase signals loop back to replot slot + return; + mReplotting = true; + mReplotQueued = false; + emit beforeReplot(); + + updateLayout(); + // draw all layered objects (grid, axes, plottables, items, legend,...) into their buffers: + setupPaintBuffers(); + foreach (QCPLayer *layer, mLayers) + layer->drawToPaintBuffer(); + for (int i=0; isetInvalidated(false); + + if ((refreshPriority == rpRefreshHint && mPlottingHints.testFlag(QCP::phImmediateRefresh)) || refreshPriority==rpImmediateRefresh) + repaint(); + else + update(); + + emit afterReplot(); + mReplotting = false; +} + +/*! + Rescales the axes such that all plottables (like graphs) in the plot are fully visible. + + if \a onlyVisiblePlottables is set to true, only the plottables that have their visibility set to true + (QCPLayerable::setVisible), will be used to rescale the axes. + + \see QCPAbstractPlottable::rescaleAxes, QCPAxis::rescale +*/ +void QCustomPlot::rescaleAxes(bool onlyVisiblePlottables) +{ + QList allAxes; + foreach (QCPAxisRect *rect, axisRects()) + allAxes << rect->axes(); + + foreach (QCPAxis *axis, allAxes) + axis->rescale(onlyVisiblePlottables); +} + +/*! + Saves a PDF with the vectorized plot to the file \a fileName. The axis ratio as well as the scale + of texts and lines will be derived from the specified \a width and \a height. This means, the + output will look like the normal on-screen output of a QCustomPlot widget with the corresponding + pixel width and height. If either \a width or \a height is zero, the exported image will have the + same dimensions as the QCustomPlot widget currently has. + + Setting \a exportPen to \ref QCP::epNoCosmetic allows to disable the use of cosmetic pens when + drawing to the PDF file. Cosmetic pens are pens with numerical width 0, which are always drawn as + a one pixel wide line, no matter what zoom factor is set in the PDF-Viewer. For more information + about cosmetic pens, see the QPainter and QPen documentation. + + The objects of the plot will appear in the current selection state. If you don't want any + selected objects to be painted in their selected look, deselect everything with \ref deselectAll + before calling this function. + + Returns true on success. + + \warning + \li If you plan on editing the exported PDF file with a vector graphics editor like Inkscape, it + is advised to set \a exportPen to \ref QCP::epNoCosmetic to avoid losing those cosmetic lines + (which might be quite many, because cosmetic pens are the default for e.g. axes and tick marks). + \li If calling this function inside the constructor of the parent of the QCustomPlot widget + (i.e. the MainWindow constructor, if QCustomPlot is inside the MainWindow), always provide + explicit non-zero widths and heights. If you leave \a width or \a height as 0 (default), this + function uses the current width and height of the QCustomPlot widget. However, in Qt, these + aren't defined yet inside the constructor, so you would get an image that has strange + widths/heights. + + \a pdfCreator and \a pdfTitle may be used to set the according metadata fields in the resulting + PDF file. + + \note On Android systems, this method does nothing and issues an according qDebug warning + message. This is also the case if for other reasons the define flag \c QT_NO_PRINTER is set. + + \see savePng, saveBmp, saveJpg, saveRastered +*/ +bool QCustomPlot::savePdf(const QString &fileName, int width, int height, QCP::ExportPen exportPen, const QString &pdfCreator, const QString &pdfTitle) +{ + bool success = false; +#ifdef QT_NO_PRINTER + Q_UNUSED(fileName) + Q_UNUSED(exportPen) + Q_UNUSED(width) + Q_UNUSED(height) + Q_UNUSED(pdfCreator) + Q_UNUSED(pdfTitle) + qDebug() << Q_FUNC_INFO << "Qt was built without printer support (QT_NO_PRINTER). PDF not created."; +#else + int newWidth, newHeight; + if (width == 0 || height == 0) + { + newWidth = this->width(); + newHeight = this->height(); + } else + { + newWidth = width; + newHeight = height; + } + + QPrinter printer(QPrinter::ScreenResolution); + printer.setOutputFileName(fileName); + printer.setOutputFormat(QPrinter::PdfFormat); + printer.setColorMode(QPrinter::Color); + printer.printEngine()->setProperty(QPrintEngine::PPK_Creator, pdfCreator); + printer.printEngine()->setProperty(QPrintEngine::PPK_DocumentName, pdfTitle); + QRect oldViewport = viewport(); + setViewport(QRect(0, 0, newWidth, newHeight)); +#if QT_VERSION < QT_VERSION_CHECK(5, 3, 0) + printer.setFullPage(true); + printer.setPaperSize(viewport().size(), QPrinter::DevicePixel); +#else + QPageLayout pageLayout; + pageLayout.setMode(QPageLayout::FullPageMode); + pageLayout.setOrientation(QPageLayout::Portrait); + pageLayout.setMargins(QMarginsF(0, 0, 0, 0)); + pageLayout.setPageSize(QPageSize(viewport().size(), QPageSize::Point, QString(), QPageSize::ExactMatch)); + printer.setPageLayout(pageLayout); +#endif + QCPPainter printpainter; + if (printpainter.begin(&printer)) + { + printpainter.setMode(QCPPainter::pmVectorized); + printpainter.setMode(QCPPainter::pmNoCaching); + printpainter.setMode(QCPPainter::pmNonCosmetic, exportPen==QCP::epNoCosmetic); + printpainter.setWindow(mViewport); + if (mBackgroundBrush.style() != Qt::NoBrush && + mBackgroundBrush.color() != Qt::white && + mBackgroundBrush.color() != Qt::transparent && + mBackgroundBrush.color().alpha() > 0) // draw pdf background color if not white/transparent + printpainter.fillRect(viewport(), mBackgroundBrush); + draw(&printpainter); + printpainter.end(); + success = true; + } + setViewport(oldViewport); +#endif // QT_NO_PRINTER + return success; +} + +/*! + Saves a PNG image file to \a fileName on disc. The output plot will have the dimensions \a width + and \a height in pixels, multiplied by \a scale. If either \a width or \a height is zero, the + current width and height of the QCustomPlot widget is used instead. Line widths and texts etc. + are not scaled up when larger widths/heights are used. If you want that effect, use the \a scale + parameter. + + For example, if you set both \a width and \a height to 100 and \a scale to 2, you will end up with an + image file of size 200*200 in which all graphical elements are scaled up by factor 2 (line widths, + texts, etc.). This scaling is not done by stretching a 100*100 image, the result will have full + 200*200 pixel resolution. + + If you use a high scaling factor, it is recommended to enable antialiasing for all elements by + temporarily setting \ref QCustomPlot::setAntialiasedElements to \ref QCP::aeAll as this allows + QCustomPlot to place objects with sub-pixel accuracy. + + image compression can be controlled with the \a quality parameter which must be between 0 and 100 + or -1 to use the default setting. + + The \a resolution will be written to the image file header and has no direct consequence for the + quality or the pixel size. However, if opening the image with a tool which respects the metadata, + it will be able to scale the image to match either a given size in real units of length (inch, + centimeters, etc.), or the target display DPI. You can specify in which units \a resolution is + given, by setting \a resolutionUnit. The \a resolution is converted to the format's expected + resolution unit internally. + + Returns true on success. If this function fails, most likely the PNG format isn't supported by + the system, see Qt docs about QImageWriter::supportedImageFormats(). + + The objects of the plot will appear in the current selection state. If you don't want any selected + objects to be painted in their selected look, deselect everything with \ref deselectAll before calling + this function. + + If you want the PNG to have a transparent background, call \ref setBackground(const QBrush &brush) + with no brush (Qt::NoBrush) or a transparent color (Qt::transparent), before saving. + + \warning If calling this function inside the constructor of the parent of the QCustomPlot widget + (i.e. the MainWindow constructor, if QCustomPlot is inside the MainWindow), always provide + explicit non-zero widths and heights. If you leave \a width or \a height as 0 (default), this + function uses the current width and height of the QCustomPlot widget. However, in Qt, these + aren't defined yet inside the constructor, so you would get an image that has strange + widths/heights. + + \see savePdf, saveBmp, saveJpg, saveRastered +*/ +bool QCustomPlot::savePng(const QString &fileName, int width, int height, double scale, int quality, int resolution, QCP::ResolutionUnit resolutionUnit) +{ + return saveRastered(fileName, width, height, scale, "PNG", quality, resolution, resolutionUnit); +} + +/*! + Saves a JPEG image file to \a fileName on disc. The output plot will have the dimensions \a width + and \a height in pixels, multiplied by \a scale. If either \a width or \a height is zero, the + current width and height of the QCustomPlot widget is used instead. Line widths and texts etc. + are not scaled up when larger widths/heights are used. If you want that effect, use the \a scale + parameter. + + For example, if you set both \a width and \a height to 100 and \a scale to 2, you will end up with an + image file of size 200*200 in which all graphical elements are scaled up by factor 2 (line widths, + texts, etc.). This scaling is not done by stretching a 100*100 image, the result will have full + 200*200 pixel resolution. + + If you use a high scaling factor, it is recommended to enable antialiasing for all elements by + temporarily setting \ref QCustomPlot::setAntialiasedElements to \ref QCP::aeAll as this allows + QCustomPlot to place objects with sub-pixel accuracy. + + image compression can be controlled with the \a quality parameter which must be between 0 and 100 + or -1 to use the default setting. + + The \a resolution will be written to the image file header and has no direct consequence for the + quality or the pixel size. However, if opening the image with a tool which respects the metadata, + it will be able to scale the image to match either a given size in real units of length (inch, + centimeters, etc.), or the target display DPI. You can specify in which units \a resolution is + given, by setting \a resolutionUnit. The \a resolution is converted to the format's expected + resolution unit internally. + + Returns true on success. If this function fails, most likely the JPEG format isn't supported by + the system, see Qt docs about QImageWriter::supportedImageFormats(). + + The objects of the plot will appear in the current selection state. If you don't want any selected + objects to be painted in their selected look, deselect everything with \ref deselectAll before calling + this function. + + \warning If calling this function inside the constructor of the parent of the QCustomPlot widget + (i.e. the MainWindow constructor, if QCustomPlot is inside the MainWindow), always provide + explicit non-zero widths and heights. If you leave \a width or \a height as 0 (default), this + function uses the current width and height of the QCustomPlot widget. However, in Qt, these + aren't defined yet inside the constructor, so you would get an image that has strange + widths/heights. + + \see savePdf, savePng, saveBmp, saveRastered +*/ +bool QCustomPlot::saveJpg(const QString &fileName, int width, int height, double scale, int quality, int resolution, QCP::ResolutionUnit resolutionUnit) +{ + return saveRastered(fileName, width, height, scale, "JPG", quality, resolution, resolutionUnit); +} + +/*! + Saves a BMP image file to \a fileName on disc. The output plot will have the dimensions \a width + and \a height in pixels, multiplied by \a scale. If either \a width or \a height is zero, the + current width and height of the QCustomPlot widget is used instead. Line widths and texts etc. + are not scaled up when larger widths/heights are used. If you want that effect, use the \a scale + parameter. + + For example, if you set both \a width and \a height to 100 and \a scale to 2, you will end up with an + image file of size 200*200 in which all graphical elements are scaled up by factor 2 (line widths, + texts, etc.). This scaling is not done by stretching a 100*100 image, the result will have full + 200*200 pixel resolution. + + If you use a high scaling factor, it is recommended to enable antialiasing for all elements by + temporarily setting \ref QCustomPlot::setAntialiasedElements to \ref QCP::aeAll as this allows + QCustomPlot to place objects with sub-pixel accuracy. + + The \a resolution will be written to the image file header and has no direct consequence for the + quality or the pixel size. However, if opening the image with a tool which respects the metadata, + it will be able to scale the image to match either a given size in real units of length (inch, + centimeters, etc.), or the target display DPI. You can specify in which units \a resolution is + given, by setting \a resolutionUnit. The \a resolution is converted to the format's expected + resolution unit internally. + + Returns true on success. If this function fails, most likely the BMP format isn't supported by + the system, see Qt docs about QImageWriter::supportedImageFormats(). + + The objects of the plot will appear in the current selection state. If you don't want any selected + objects to be painted in their selected look, deselect everything with \ref deselectAll before calling + this function. + + \warning If calling this function inside the constructor of the parent of the QCustomPlot widget + (i.e. the MainWindow constructor, if QCustomPlot is inside the MainWindow), always provide + explicit non-zero widths and heights. If you leave \a width or \a height as 0 (default), this + function uses the current width and height of the QCustomPlot widget. However, in Qt, these + aren't defined yet inside the constructor, so you would get an image that has strange + widths/heights. + + \see savePdf, savePng, saveJpg, saveRastered +*/ +bool QCustomPlot::saveBmp(const QString &fileName, int width, int height, double scale, int resolution, QCP::ResolutionUnit resolutionUnit) +{ + return saveRastered(fileName, width, height, scale, "BMP", -1, resolution, resolutionUnit); +} + +/*! \internal + + Returns a minimum size hint that corresponds to the minimum size of the top level layout + (\ref plotLayout). To prevent QCustomPlot from being collapsed to size/width zero, set a minimum + size (setMinimumSize) either on the whole QCustomPlot or on any layout elements inside the plot. + This is especially important, when placed in a QLayout where other components try to take in as + much space as possible (e.g. QMdiArea). +*/ +QSize QCustomPlot::minimumSizeHint() const +{ + return mPlotLayout->minimumOuterSizeHint(); +} + +/*! \internal + + Returns a size hint that is the same as \ref minimumSizeHint. + +*/ +QSize QCustomPlot::sizeHint() const +{ + return mPlotLayout->minimumOuterSizeHint(); +} + +/*! \internal + + Event handler for when the QCustomPlot widget needs repainting. This does not cause a \ref replot, but + draws the internal buffer on the widget surface. +*/ +void QCustomPlot::paintEvent(QPaintEvent *event) +{ + Q_UNUSED(event); + QCPPainter painter(this); + if (painter.isActive()) + { + painter.setRenderHint(QPainter::HighQualityAntialiasing); // to make Antialiasing look good if using the OpenGL graphicssystem + if (mBackgroundBrush.style() != Qt::NoBrush) + painter.fillRect(mViewport, mBackgroundBrush); + drawBackground(&painter); + for (int bufferIndex = 0; bufferIndex < mPaintBuffers.size(); ++bufferIndex) + mPaintBuffers.at(bufferIndex)->draw(&painter); + } +} + +/*! \internal + + Event handler for a resize of the QCustomPlot widget. The viewport (which becomes the outer rect + of mPlotLayout) is resized appropriately. Finally a \ref replot is performed. +*/ +void QCustomPlot::resizeEvent(QResizeEvent *event) +{ + Q_UNUSED(event) + // resize and repaint the buffer: + setViewport(rect()); + replot(rpQueuedRefresh); // queued refresh is important here, to prevent painting issues in some contexts (e.g. MDI subwindow) +} + +/*! \internal + + Event handler for when a double click occurs. Emits the \ref mouseDoubleClick signal, then + determines the layerable under the cursor and forwards the event to it. Finally, emits the + specialized signals when certain objecs are clicked (e.g. \ref plottableDoubleClick, \ref + axisDoubleClick, etc.). + + \see mousePressEvent, mouseReleaseEvent +*/ +void QCustomPlot::mouseDoubleClickEvent(QMouseEvent *event) +{ + emit mouseDoubleClick(event); + mMouseHasMoved = false; + mMousePressPos = event->pos(); + + // determine layerable under the cursor (this event is called instead of the second press event in a double-click): + QList details; + QList candidates = layerableListAt(mMousePressPos, false, &details); + for (int i=0; iaccept(); // default impl of QCPLayerable's mouse events ignore the event, in that case propagate to next candidate in list + candidates.at(i)->mouseDoubleClickEvent(event, details.at(i)); + if (event->isAccepted()) + { + mMouseEventLayerable = candidates.at(i); + mMouseEventLayerableDetails = details.at(i); + break; + } + } + + // emit specialized object double click signals: + if (!candidates.isEmpty()) + { + if (QCPAbstractPlottable *ap = qobject_cast(candidates.first())) + { + int dataIndex = 0; + if (!details.first().value().isEmpty()) + dataIndex = details.first().value().dataRange().begin(); + emit plottableDoubleClick(ap, dataIndex, event); + } else if (QCPAxis *ax = qobject_cast(candidates.first())) + emit axisDoubleClick(ax, details.first().value(), event); + else if (QCPAbstractItem *ai = qobject_cast(candidates.first())) + emit itemDoubleClick(ai, event); + else if (QCPLegend *lg = qobject_cast(candidates.first())) + emit legendDoubleClick(lg, 0, event); + else if (QCPAbstractLegendItem *li = qobject_cast(candidates.first())) + emit legendDoubleClick(li->parentLegend(), li, event); + } + + event->accept(); // in case QCPLayerable reimplementation manipulates event accepted state. In QWidget event system, QCustomPlot wants to accept the event. +} + +/*! \internal + + Event handler for when a mouse button is pressed. Emits the mousePress signal. + + If the current \ref setSelectionRectMode is not \ref QCP::srmNone, passes the event to the + selection rect. Otherwise determines the layerable under the cursor and forwards the event to it. + + \see mouseMoveEvent, mouseReleaseEvent +*/ +void QCustomPlot::mousePressEvent(QMouseEvent *event) +{ + emit mousePress(event); + // save some state to tell in releaseEvent whether it was a click: + mMouseHasMoved = false; + mMousePressPos = event->pos(); + + if (mSelectionRect && mSelectionRectMode != QCP::srmNone) + { + if (mSelectionRectMode != QCP::srmZoom || qobject_cast(axisRectAt(mMousePressPos))) // in zoom mode only activate selection rect if on an axis rect + mSelectionRect->startSelection(event); + } else + { + // no selection rect interaction, prepare for click signal emission and forward event to layerable under the cursor: + QList details; + QList candidates = layerableListAt(mMousePressPos, false, &details); + if (!candidates.isEmpty()) + { + mMouseSignalLayerable = candidates.first(); // candidate for signal emission is always topmost hit layerable (signal emitted in release event) + mMouseSignalLayerableDetails = details.first(); + } + // forward event to topmost candidate which accepts the event: + for (int i=0; iaccept(); // default impl of QCPLayerable's mouse events call ignore() on the event, in that case propagate to next candidate in list + candidates.at(i)->mousePressEvent(event, details.at(i)); + if (event->isAccepted()) + { + mMouseEventLayerable = candidates.at(i); + mMouseEventLayerableDetails = details.at(i); + break; + } + } + } + + event->accept(); // in case QCPLayerable reimplementation manipulates event accepted state. In QWidget event system, QCustomPlot wants to accept the event. +} + +/*! \internal + + Event handler for when the cursor is moved. Emits the \ref mouseMove signal. + + If the selection rect (\ref setSelectionRect) is currently active, the event is forwarded to it + in order to update the rect geometry. + + Otherwise, if a layout element has mouse capture focus (a mousePressEvent happened on top of the + layout element before), the mouseMoveEvent is forwarded to that element. + + \see mousePressEvent, mouseReleaseEvent +*/ +void QCustomPlot::mouseMoveEvent(QMouseEvent *event) +{ + emit mouseMove(event); + + if (!mMouseHasMoved && (mMousePressPos-event->pos()).manhattanLength() > 3) + mMouseHasMoved = true; // moved too far from mouse press position, don't handle as click on mouse release + + if (mSelectionRect && mSelectionRect->isActive()) + mSelectionRect->moveSelection(event); + else if (mMouseEventLayerable) // call event of affected layerable: + mMouseEventLayerable->mouseMoveEvent(event, mMousePressPos); + + event->accept(); // in case QCPLayerable reimplementation manipulates event accepted state. In QWidget event system, QCustomPlot wants to accept the event. +} + +/*! \internal + + Event handler for when a mouse button is released. Emits the \ref mouseRelease signal. + + If the mouse was moved less than a certain threshold in any direction since the \ref + mousePressEvent, it is considered a click which causes the selection mechanism (if activated via + \ref setInteractions) to possibly change selection states accordingly. Further, specialized mouse + click signals are emitted (e.g. \ref plottableClick, \ref axisClick, etc.) + + If a layerable is the mouse capturer (a \ref mousePressEvent happened on top of the layerable + before), the \ref mouseReleaseEvent is forwarded to that element. + + \see mousePressEvent, mouseMoveEvent +*/ +void QCustomPlot::mouseReleaseEvent(QMouseEvent *event) +{ + emit mouseRelease(event); + + if (!mMouseHasMoved) // mouse hasn't moved (much) between press and release, so handle as click + { + if (mSelectionRect && mSelectionRect->isActive()) // a simple click shouldn't successfully finish a selection rect, so cancel it here + mSelectionRect->cancel(); + if (event->button() == Qt::LeftButton) + processPointSelection(event); + + // emit specialized click signals of QCustomPlot instance: + if (QCPAbstractPlottable *ap = qobject_cast(mMouseSignalLayerable)) + { + int dataIndex = 0; + if (!mMouseSignalLayerableDetails.value().isEmpty()) + dataIndex = mMouseSignalLayerableDetails.value().dataRange().begin(); + emit plottableClick(ap, dataIndex, event); + } else if (QCPAxis *ax = qobject_cast(mMouseSignalLayerable)) + emit axisClick(ax, mMouseSignalLayerableDetails.value(), event); + else if (QCPAbstractItem *ai = qobject_cast(mMouseSignalLayerable)) + emit itemClick(ai, event); + else if (QCPLegend *lg = qobject_cast(mMouseSignalLayerable)) + emit legendClick(lg, 0, event); + else if (QCPAbstractLegendItem *li = qobject_cast(mMouseSignalLayerable)) + emit legendClick(li->parentLegend(), li, event); + mMouseSignalLayerable = 0; + } + + if (mSelectionRect && mSelectionRect->isActive()) // Note: if a click was detected above, the selection rect is canceled there + { + // finish selection rect, the appropriate action will be taken via signal-slot connection: + mSelectionRect->endSelection(event); + } else + { + // call event of affected layerable: + if (mMouseEventLayerable) + { + mMouseEventLayerable->mouseReleaseEvent(event, mMousePressPos); + mMouseEventLayerable = 0; + } + } + + if (noAntialiasingOnDrag()) + replot(rpQueuedReplot); + + event->accept(); // in case QCPLayerable reimplementation manipulates event accepted state. In QWidget event system, QCustomPlot wants to accept the event. +} + +/*! \internal + + Event handler for mouse wheel events. First, the \ref mouseWheel signal is emitted. Then + determines the affected layerable and forwards the event to it. +*/ +void QCustomPlot::wheelEvent(QWheelEvent *event) +{ + emit mouseWheel(event); + // forward event to layerable under cursor: + QList candidates = layerableListAt(event->pos(), false); + for (int i=0; iaccept(); // default impl of QCPLayerable's mouse events ignore the event, in that case propagate to next candidate in list + candidates.at(i)->wheelEvent(event); + if (event->isAccepted()) + break; + } + event->accept(); // in case QCPLayerable reimplementation manipulates event accepted state. In QWidget event system, QCustomPlot wants to accept the event. +} + +/*! \internal + + This function draws the entire plot, including background pixmap, with the specified \a painter. + It does not make use of the paint buffers like \ref replot, so this is the function typically + used by saving/exporting methods such as \ref savePdf or \ref toPainter. + + Note that it does not fill the background with the background brush (as the user may specify with + \ref setBackground(const QBrush &brush)), this is up to the respective functions calling this + method. +*/ +void QCustomPlot::draw(QCPPainter *painter) +{ + updateLayout(); + + // draw viewport background pixmap: + drawBackground(painter); + + // draw all layered objects (grid, axes, plottables, items, legend,...): + foreach (QCPLayer *layer, mLayers) + layer->draw(painter); + + /* Debug code to draw all layout element rects + foreach (QCPLayoutElement* el, findChildren()) + { + painter->setBrush(Qt::NoBrush); + painter->setPen(QPen(QColor(0, 0, 0, 100), 0, Qt::DashLine)); + painter->drawRect(el->rect()); + painter->setPen(QPen(QColor(255, 0, 0, 100), 0, Qt::DashLine)); + painter->drawRect(el->outerRect()); + } + */ +} + +/*! \internal + + Performs the layout update steps defined by \ref QCPLayoutElement::UpdatePhase, by calling \ref + QCPLayoutElement::update on the main plot layout. + + Here, the layout elements calculate their positions and margins, and prepare for the following + draw call. +*/ +void QCustomPlot::updateLayout() +{ + // run through layout phases: + mPlotLayout->update(QCPLayoutElement::upPreparation); + mPlotLayout->update(QCPLayoutElement::upMargins); + mPlotLayout->update(QCPLayoutElement::upLayout); +} + +/*! \internal + + Draws the viewport background pixmap of the plot. + + If a pixmap was provided via \ref setBackground, this function buffers the scaled version + depending on \ref setBackgroundScaled and \ref setBackgroundScaledMode and then draws it inside + the viewport with the provided \a painter. The scaled version is buffered in + mScaledBackgroundPixmap to prevent expensive rescaling at every redraw. It is only updated, when + the axis rect has changed in a way that requires a rescale of the background pixmap (this is + dependent on the \ref setBackgroundScaledMode), or when a differend axis background pixmap was + set. + + Note that this function does not draw a fill with the background brush + (\ref setBackground(const QBrush &brush)) beneath the pixmap. + + \see setBackground, setBackgroundScaled, setBackgroundScaledMode +*/ +void QCustomPlot::drawBackground(QCPPainter *painter) +{ + // Note: background color is handled in individual replot/save functions + + // draw background pixmap (on top of fill, if brush specified): + if (!mBackgroundPixmap.isNull()) + { + if (mBackgroundScaled) + { + // check whether mScaledBackground needs to be updated: + QSize scaledSize(mBackgroundPixmap.size()); + scaledSize.scale(mViewport.size(), mBackgroundScaledMode); + if (mScaledBackgroundPixmap.size() != scaledSize) + mScaledBackgroundPixmap = mBackgroundPixmap.scaled(mViewport.size(), mBackgroundScaledMode, Qt::SmoothTransformation); + painter->drawPixmap(mViewport.topLeft(), mScaledBackgroundPixmap, QRect(0, 0, mViewport.width(), mViewport.height()) & mScaledBackgroundPixmap.rect()); + } else + { + painter->drawPixmap(mViewport.topLeft(), mBackgroundPixmap, QRect(0, 0, mViewport.width(), mViewport.height())); + } + } +} + +/*! \internal + + Goes through the layers and makes sure this QCustomPlot instance holds the correct number of + paint buffers and that they have the correct configuration (size, pixel ratio, etc.). + Allocations, reallocations and deletions of paint buffers are performed as necessary. It also + associates the paint buffers with the layers, so they draw themselves into the right buffer when + \ref QCPLayer::drawToPaintBuffer is called. This means it associates adjacent \ref + QCPLayer::lmLogical layers to a mutual paint buffer and creates dedicated paint buffers for + layers in \ref QCPLayer::lmBuffered mode. + + This method uses \ref createPaintBuffer to create new paint buffers. + + After this method, the paint buffers are empty (filled with \c Qt::transparent) and invalidated + (so an attempt to replot only a single buffered layer causes a full replot). + + This method is called in every \ref replot call, prior to actually drawing the layers (into their + associated paint buffer). If the paint buffers don't need changing/reallocating, this method + basically leaves them alone and thus finishes very fast. +*/ +void QCustomPlot::setupPaintBuffers() +{ + int bufferIndex = 0; + if (mPaintBuffers.isEmpty()) + mPaintBuffers.append(QSharedPointer(createPaintBuffer())); + + for (int layerIndex = 0; layerIndex < mLayers.size(); ++layerIndex) + { + QCPLayer *layer = mLayers.at(layerIndex); + if (layer->mode() == QCPLayer::lmLogical) + { + layer->mPaintBuffer = mPaintBuffers.at(bufferIndex).toWeakRef(); + } else if (layer->mode() == QCPLayer::lmBuffered) + { + ++bufferIndex; + if (bufferIndex >= mPaintBuffers.size()) + mPaintBuffers.append(QSharedPointer(createPaintBuffer())); + layer->mPaintBuffer = mPaintBuffers.at(bufferIndex).toWeakRef(); + if (layerIndex < mLayers.size()-1 && mLayers.at(layerIndex+1)->mode() == QCPLayer::lmLogical) // not last layer, and next one is logical, so prepare another buffer for next layerables + { + ++bufferIndex; + if (bufferIndex >= mPaintBuffers.size()) + mPaintBuffers.append(QSharedPointer(createPaintBuffer())); + } + } + } + // remove unneeded buffers: + while (mPaintBuffers.size()-1 > bufferIndex) + mPaintBuffers.removeLast(); + // resize buffers to viewport size and clear contents: + for (int i=0; isetSize(viewport().size()); // won't do anything if already correct size + mPaintBuffers.at(i)->clear(Qt::transparent); + mPaintBuffers.at(i)->setInvalidated(); + } +} + +/*! \internal + + This method is used by \ref setupPaintBuffers when it needs to create new paint buffers. + + Depending on the current setting of \ref setOpenGl, and the current Qt version, different + backends (subclasses of \ref QCPAbstractPaintBuffer) are created, initialized with the proper + size and device pixel ratio, and returned. +*/ +QCPAbstractPaintBuffer *QCustomPlot::createPaintBuffer() +{ + if (mOpenGl) + { +#if defined(QCP_OPENGL_FBO) + return new QCPPaintBufferGlFbo(viewport().size(), mBufferDevicePixelRatio, mGlContext, mGlPaintDevice); +#elif defined(QCP_OPENGL_PBUFFER) + return new QCPPaintBufferGlPbuffer(viewport().size(), mBufferDevicePixelRatio, mOpenGlMultisamples); +#else + qDebug() << Q_FUNC_INFO << "OpenGL enabled even though no support for it compiled in, this shouldn't have happened. Falling back to pixmap paint buffer."; + return new QCPPaintBufferPixmap(viewport().size(), mBufferDevicePixelRatio); +#endif + } else + return new QCPPaintBufferPixmap(viewport().size(), mBufferDevicePixelRatio); +} + +/*! + This method returns whether any of the paint buffers held by this QCustomPlot instance are + invalidated. + + If any buffer is invalidated, a partial replot (\ref QCPLayer::replot) is not allowed and always + causes a full replot (\ref QCustomPlot::replot) of all layers. This is the case when for example + the layer order has changed, new layers were added, layers were removed, or layer modes were + changed (\ref QCPLayer::setMode). + + \see QCPAbstractPaintBuffer::setInvalidated +*/ +bool QCustomPlot::hasInvalidatedPaintBuffers() +{ + for (int i=0; iinvalidated()) + return true; + } + return false; +} + +/*! \internal + + When \ref setOpenGl is set to true, this method is used to initialize OpenGL (create a context, + surface, paint device). + + Returns true on success. + + If this method is successful, all paint buffers should be deleted and then reallocated by calling + \ref setupPaintBuffers, so the OpenGL-based paint buffer subclasses (\ref + QCPPaintBufferGlPbuffer, \ref QCPPaintBufferGlFbo) are used for subsequent replots. + + \see freeOpenGl +*/ +bool QCustomPlot::setupOpenGl() +{ +#ifdef QCP_OPENGL_FBO + freeOpenGl(); + QSurfaceFormat proposedSurfaceFormat; + proposedSurfaceFormat.setSamples(mOpenGlMultisamples); +#ifdef QCP_OPENGL_OFFSCREENSURFACE + QOffscreenSurface *surface = new QOffscreenSurface; +#else + QWindow *surface = new QWindow; + surface->setSurfaceType(QSurface::OpenGLSurface); +#endif + surface->setFormat(proposedSurfaceFormat); + surface->create(); + mGlSurface = QSharedPointer(surface); + mGlContext = QSharedPointer(new QOpenGLContext); + mGlContext->setFormat(mGlSurface->format()); + if (!mGlContext->create()) + { + qDebug() << Q_FUNC_INFO << "Failed to create OpenGL context"; + mGlContext.clear(); + mGlSurface.clear(); + return false; + } + if (!mGlContext->makeCurrent(mGlSurface.data())) // context needs to be current to create paint device + { + qDebug() << Q_FUNC_INFO << "Failed to make opengl context current"; + mGlContext.clear(); + mGlSurface.clear(); + return false; + } + if (!QOpenGLFramebufferObject::hasOpenGLFramebufferObjects()) + { + qDebug() << Q_FUNC_INFO << "OpenGL of this system doesn't support frame buffer objects"; + mGlContext.clear(); + mGlSurface.clear(); + return false; + } + mGlPaintDevice = QSharedPointer(new QOpenGLPaintDevice); + return true; +#elif defined(QCP_OPENGL_PBUFFER) + return QGLFormat::hasOpenGL(); +#else + return false; +#endif +} + +/*! \internal + + When \ref setOpenGl is set to false, this method is used to deinitialize OpenGL (releases the + context and frees resources). + + After OpenGL is disabled, all paint buffers should be deleted and then reallocated by calling + \ref setupPaintBuffers, so the standard software rendering paint buffer subclass (\ref + QCPPaintBufferPixmap) is used for subsequent replots. + + \see setupOpenGl +*/ +void QCustomPlot::freeOpenGl() +{ +#ifdef QCP_OPENGL_FBO + mGlPaintDevice.clear(); + mGlContext.clear(); + mGlSurface.clear(); +#endif +} + +/*! \internal + + This method is used by \ref QCPAxisRect::removeAxis to report removed axes to the QCustomPlot + so it may clear its QCustomPlot::xAxis, yAxis, xAxis2 and yAxis2 members accordingly. +*/ +void QCustomPlot::axisRemoved(QCPAxis *axis) +{ + if (xAxis == axis) + xAxis = 0; + if (xAxis2 == axis) + xAxis2 = 0; + if (yAxis == axis) + yAxis = 0; + if (yAxis2 == axis) + yAxis2 = 0; + + // Note: No need to take care of range drag axes and range zoom axes, because they are stored in smart pointers +} + +/*! \internal + + This method is used by the QCPLegend destructor to report legend removal to the QCustomPlot so + it may clear its QCustomPlot::legend member accordingly. +*/ +void QCustomPlot::legendRemoved(QCPLegend *legend) +{ + if (this->legend == legend) + this->legend = 0; +} + +/*! \internal + + This slot is connected to the selection rect's \ref QCPSelectionRect::accepted signal when \ref + setSelectionRectMode is set to \ref QCP::srmSelect. + + First, it determines which axis rect was the origin of the selection rect judging by the starting + point of the selection. Then it goes through the plottables (\ref QCPAbstractPlottable1D to be + precise) associated with that axis rect and finds the data points that are in \a rect. It does + this by querying their \ref QCPAbstractPlottable1D::selectTestRect method. + + Then, the actual selection is done by calling the plottables' \ref + QCPAbstractPlottable::selectEvent, placing the found selected data points in the \a details + parameter as QVariant(\ref QCPDataSelection). All plottables that weren't touched by \a + rect receive a \ref QCPAbstractPlottable::deselectEvent. + + \see processRectZoom +*/ +void QCustomPlot::processRectSelection(QRect rect, QMouseEvent *event) +{ + bool selectionStateChanged = false; + + if (mInteractions.testFlag(QCP::iSelectPlottables)) + { + QMap > potentialSelections; // map key is number of selected data points, so we have selections sorted by size + QRectF rectF(rect.normalized()); + if (QCPAxisRect *affectedAxisRect = axisRectAt(rectF.topLeft())) + { + // determine plottables that were hit by the rect and thus are candidates for selection: + foreach (QCPAbstractPlottable *plottable, affectedAxisRect->plottables()) + { + if (QCPPlottableInterface1D *plottableInterface = plottable->interface1D()) + { + QCPDataSelection dataSel = plottableInterface->selectTestRect(rectF, true); + if (!dataSel.isEmpty()) + potentialSelections.insertMulti(dataSel.dataPointCount(), QPair(plottable, dataSel)); + } + } + + if (!mInteractions.testFlag(QCP::iMultiSelect)) + { + // only leave plottable with most selected points in map, since we will only select a single plottable: + if (!potentialSelections.isEmpty()) + { + QMap >::iterator it = potentialSelections.begin(); + while (it != potentialSelections.end()-1) // erase all except last element + it = potentialSelections.erase(it); + } + } + + bool additive = event->modifiers().testFlag(mMultiSelectModifier); + // deselect all other layerables if not additive selection: + if (!additive) + { + // emit deselection except to those plottables who will be selected afterwards: + foreach (QCPLayer *layer, mLayers) + { + foreach (QCPLayerable *layerable, layer->children()) + { + if ((potentialSelections.isEmpty() || potentialSelections.constBegin()->first != layerable) && mInteractions.testFlag(layerable->selectionCategory())) + { + bool selChanged = false; + layerable->deselectEvent(&selChanged); + selectionStateChanged |= selChanged; + } + } + } + } + + // go through selections in reverse (largest selection first) and emit select events: + QMap >::const_iterator it = potentialSelections.constEnd(); + while (it != potentialSelections.constBegin()) + { + --it; + if (mInteractions.testFlag(it.value().first->selectionCategory())) + { + bool selChanged = false; + it.value().first->selectEvent(event, additive, QVariant::fromValue(it.value().second), &selChanged); + selectionStateChanged |= selChanged; + } + } + } + } + + if (selectionStateChanged) + { + emit selectionChangedByUser(); + replot(rpQueuedReplot); + } else if (mSelectionRect) + mSelectionRect->layer()->replot(); +} + +/*! \internal + + This slot is connected to the selection rect's \ref QCPSelectionRect::accepted signal when \ref + setSelectionRectMode is set to \ref QCP::srmZoom. + + It determines which axis rect was the origin of the selection rect judging by the starting point + of the selection, and then zooms the axes defined via \ref QCPAxisRect::setRangeZoomAxes to the + provided \a rect (see \ref QCPAxisRect::zoom). + + \see processRectSelection +*/ +void QCustomPlot::processRectZoom(QRect rect, QMouseEvent *event) +{ + Q_UNUSED(event) + if (QCPAxisRect *axisRect = axisRectAt(rect.topLeft())) + { + QList affectedAxes = QList() << axisRect->rangeZoomAxes(Qt::Horizontal) << axisRect->rangeZoomAxes(Qt::Vertical); + affectedAxes.removeAll(static_cast(0)); + axisRect->zoom(QRectF(rect), affectedAxes); + } + replot(rpQueuedReplot); // always replot to make selection rect disappear +} + +/*! \internal + + This method is called when a simple left mouse click was detected on the QCustomPlot surface. + + It first determines the layerable that was hit by the click, and then calls its \ref + QCPLayerable::selectEvent. All other layerables receive a QCPLayerable::deselectEvent (unless the + multi-select modifier was pressed, see \ref setMultiSelectModifier). + + In this method the hit layerable is determined a second time using \ref layerableAt (after the + one in \ref mousePressEvent), because we want \a onlySelectable set to true this time. This + implies that the mouse event grabber (mMouseEventLayerable) may be a different one from the + clicked layerable determined here. For example, if a non-selectable layerable is in front of a + selectable layerable at the click position, the front layerable will receive mouse events but the + selectable one in the back will receive the \ref QCPLayerable::selectEvent. + + \see processRectSelection, QCPLayerable::selectTest +*/ +void QCustomPlot::processPointSelection(QMouseEvent *event) +{ + QVariant details; + QCPLayerable *clickedLayerable = layerableAt(event->pos(), true, &details); + bool selectionStateChanged = false; + bool additive = mInteractions.testFlag(QCP::iMultiSelect) && event->modifiers().testFlag(mMultiSelectModifier); + // deselect all other layerables if not additive selection: + if (!additive) + { + foreach (QCPLayer *layer, mLayers) + { + foreach (QCPLayerable *layerable, layer->children()) + { + if (layerable != clickedLayerable && mInteractions.testFlag(layerable->selectionCategory())) + { + bool selChanged = false; + layerable->deselectEvent(&selChanged); + selectionStateChanged |= selChanged; + } + } + } + } + if (clickedLayerable && mInteractions.testFlag(clickedLayerable->selectionCategory())) + { + // a layerable was actually clicked, call its selectEvent: + bool selChanged = false; + clickedLayerable->selectEvent(event, additive, details, &selChanged); + selectionStateChanged |= selChanged; + } + if (selectionStateChanged) + { + emit selectionChangedByUser(); + replot(rpQueuedReplot); + } +} + +/*! \internal + + Registers the specified plottable with this QCustomPlot and, if \ref setAutoAddPlottableToLegend + is enabled, adds it to the legend (QCustomPlot::legend). QCustomPlot takes ownership of the + plottable. + + Returns true on success, i.e. when \a plottable isn't already in this plot and the parent plot of + \a plottable is this QCustomPlot. + + This method is called automatically in the QCPAbstractPlottable base class constructor. +*/ +bool QCustomPlot::registerPlottable(QCPAbstractPlottable *plottable) +{ + if (mPlottables.contains(plottable)) + { + qDebug() << Q_FUNC_INFO << "plottable already added to this QCustomPlot:" << reinterpret_cast(plottable); + return false; + } + if (plottable->parentPlot() != this) + { + qDebug() << Q_FUNC_INFO << "plottable not created with this QCustomPlot as parent:" << reinterpret_cast(plottable); + return false; + } + + mPlottables.append(plottable); + // possibly add plottable to legend: + if (mAutoAddPlottableToLegend) + plottable->addToLegend(); + if (!plottable->layer()) // usually the layer is already set in the constructor of the plottable (via QCPLayerable constructor) + plottable->setLayer(currentLayer()); + return true; +} + +/*! \internal + + In order to maintain the simplified graph interface of QCustomPlot, this method is called by the + QCPGraph constructor to register itself with this QCustomPlot's internal graph list. Returns true + on success, i.e. if \a graph is valid and wasn't already registered with this QCustomPlot. + + This graph specific registration happens in addition to the call to \ref registerPlottable by the + QCPAbstractPlottable base class. +*/ +bool QCustomPlot::registerGraph(QCPGraph *graph) +{ + if (!graph) + { + qDebug() << Q_FUNC_INFO << "passed graph is zero"; + return false; + } + if (mGraphs.contains(graph)) + { + qDebug() << Q_FUNC_INFO << "graph already registered with this QCustomPlot"; + return false; + } + + mGraphs.append(graph); + return true; +} + + +/*! \internal + + Registers the specified item with this QCustomPlot. QCustomPlot takes ownership of the item. + + Returns true on success, i.e. when \a item wasn't already in the plot and the parent plot of \a + item is this QCustomPlot. + + This method is called automatically in the QCPAbstractItem base class constructor. +*/ +bool QCustomPlot::registerItem(QCPAbstractItem *item) +{ + if (mItems.contains(item)) + { + qDebug() << Q_FUNC_INFO << "item already added to this QCustomPlot:" << reinterpret_cast(item); + return false; + } + if (item->parentPlot() != this) + { + qDebug() << Q_FUNC_INFO << "item not created with this QCustomPlot as parent:" << reinterpret_cast(item); + return false; + } + + mItems.append(item); + if (!item->layer()) // usually the layer is already set in the constructor of the item (via QCPLayerable constructor) + item->setLayer(currentLayer()); + return true; +} + +/*! \internal + + Assigns all layers their index (QCPLayer::mIndex) in the mLayers list. This method is thus called + after every operation that changes the layer indices, like layer removal, layer creation, layer + moving. +*/ +void QCustomPlot::updateLayerIndices() const +{ + for (int i=0; imIndex = i; +} + +/*! \internal + + Returns the top-most layerable at pixel position \a pos. If \a onlySelectable is set to true, + only those layerables that are selectable will be considered. (Layerable subclasses communicate + their selectability via the QCPLayerable::selectTest method, by returning -1.) + + \a selectionDetails is an output parameter that contains selection specifics of the affected + layerable. This is useful if the respective layerable shall be given a subsequent + QCPLayerable::selectEvent (like in \ref mouseReleaseEvent). \a selectionDetails usually contains + information about which part of the layerable was hit, in multi-part layerables (e.g. + QCPAxis::SelectablePart). If the layerable is a plottable, \a selectionDetails contains a \ref + QCPDataSelection instance with the single data point which is closest to \a pos. + + \see layerableListAt, layoutElementAt, axisRectAt +*/ +QCPLayerable *QCustomPlot::layerableAt(const QPointF &pos, bool onlySelectable, QVariant *selectionDetails) const +{ + QList details; + QList candidates = layerableListAt(pos, onlySelectable, selectionDetails ? &details : 0); + if (selectionDetails && !details.isEmpty()) + *selectionDetails = details.first(); + if (!candidates.isEmpty()) + return candidates.first(); + else + return 0; +} + +/*! \internal + + Returns the layerables at pixel position \a pos. If \a onlySelectable is set to true, only those + layerables that are selectable will be considered. (Layerable subclasses communicate their + selectability via the QCPLayerable::selectTest method, by returning -1.) + + The returned list is sorted by the layerable/drawing order. If you only need to know the top-most + layerable, rather use \ref layerableAt. + + \a selectionDetails is an output parameter that contains selection specifics of the affected + layerable. This is useful if the respective layerable shall be given a subsequent + QCPLayerable::selectEvent (like in \ref mouseReleaseEvent). \a selectionDetails usually contains + information about which part of the layerable was hit, in multi-part layerables (e.g. + QCPAxis::SelectablePart). If the layerable is a plottable, \a selectionDetails contains a \ref + QCPDataSelection instance with the single data point which is closest to \a pos. + + \see layerableAt, layoutElementAt, axisRectAt +*/ +QList QCustomPlot::layerableListAt(const QPointF &pos, bool onlySelectable, QList *selectionDetails) const +{ + QList result; + for (int layerIndex=mLayers.size()-1; layerIndex>=0; --layerIndex) + { + const QList layerables = mLayers.at(layerIndex)->children(); + for (int i=layerables.size()-1; i>=0; --i) + { + if (!layerables.at(i)->realVisibility()) + continue; + QVariant details; + double dist = layerables.at(i)->selectTest(pos, onlySelectable, selectionDetails ? &details : 0); + if (dist >= 0 && dist < selectionTolerance()) + { + result.append(layerables.at(i)); + if (selectionDetails) + selectionDetails->append(details); + } + } + } + return result; +} + +/*! + Saves the plot to a rastered image file \a fileName in the image format \a format. The plot is + sized to \a width and \a height in pixels and scaled with \a scale. (width 100 and scale 2.0 lead + to a full resolution file with width 200.) If the \a format supports compression, \a quality may + be between 0 and 100 to control it. + + Returns true on success. If this function fails, most likely the given \a format isn't supported + by the system, see Qt docs about QImageWriter::supportedImageFormats(). + + The \a resolution will be written to the image file header (if the file format supports this) and + has no direct consequence for the quality or the pixel size. However, if opening the image with a + tool which respects the metadata, it will be able to scale the image to match either a given size + in real units of length (inch, centimeters, etc.), or the target display DPI. You can specify in + which units \a resolution is given, by setting \a resolutionUnit. The \a resolution is converted + to the format's expected resolution unit internally. + + \see saveBmp, saveJpg, savePng, savePdf +*/ +bool QCustomPlot::saveRastered(const QString &fileName, int width, int height, double scale, const char *format, int quality, int resolution, QCP::ResolutionUnit resolutionUnit) +{ + QImage buffer = toPixmap(width, height, scale).toImage(); + + int dotsPerMeter = 0; + switch (resolutionUnit) + { + case QCP::ruDotsPerMeter: dotsPerMeter = resolution; break; + case QCP::ruDotsPerCentimeter: dotsPerMeter = resolution*100; break; + case QCP::ruDotsPerInch: dotsPerMeter = resolution/0.0254; break; + } + buffer.setDotsPerMeterX(dotsPerMeter); // this is saved together with some image formats, e.g. PNG, and is relevant when opening image in other tools + buffer.setDotsPerMeterY(dotsPerMeter); // this is saved together with some image formats, e.g. PNG, and is relevant when opening image in other tools + if (!buffer.isNull()) + return buffer.save(fileName, format, quality); + else + return false; +} + +/*! + Renders the plot to a pixmap and returns it. + + The plot is sized to \a width and \a height in pixels and scaled with \a scale. (width 100 and + scale 2.0 lead to a full resolution pixmap with width 200.) + + \see toPainter, saveRastered, saveBmp, savePng, saveJpg, savePdf +*/ +QPixmap QCustomPlot::toPixmap(int width, int height, double scale) +{ + // this method is somewhat similar to toPainter. Change something here, and a change in toPainter might be necessary, too. + int newWidth, newHeight; + if (width == 0 || height == 0) + { + newWidth = this->width(); + newHeight = this->height(); + } else + { + newWidth = width; + newHeight = height; + } + int scaledWidth = qRound(scale*newWidth); + int scaledHeight = qRound(scale*newHeight); + + QPixmap result(scaledWidth, scaledHeight); + result.fill(mBackgroundBrush.style() == Qt::SolidPattern ? mBackgroundBrush.color() : Qt::transparent); // if using non-solid pattern, make transparent now and draw brush pattern later + QCPPainter painter; + painter.begin(&result); + if (painter.isActive()) + { + QRect oldViewport = viewport(); + setViewport(QRect(0, 0, newWidth, newHeight)); + painter.setMode(QCPPainter::pmNoCaching); + if (!qFuzzyCompare(scale, 1.0)) + { + if (scale > 1.0) // for scale < 1 we always want cosmetic pens where possible, because else lines might disappear for very small scales + painter.setMode(QCPPainter::pmNonCosmetic); + painter.scale(scale, scale); + } + if (mBackgroundBrush.style() != Qt::SolidPattern && mBackgroundBrush.style() != Qt::NoBrush) // solid fills were done a few lines above with QPixmap::fill + painter.fillRect(mViewport, mBackgroundBrush); + draw(&painter); + setViewport(oldViewport); + painter.end(); + } else // might happen if pixmap has width or height zero + { + qDebug() << Q_FUNC_INFO << "Couldn't activate painter on pixmap"; + return QPixmap(); + } + return result; +} + +/*! + Renders the plot using the passed \a painter. + + The plot is sized to \a width and \a height in pixels. If the \a painter's scale is not 1.0, the resulting plot will + appear scaled accordingly. + + \note If you are restricted to using a QPainter (instead of QCPPainter), create a temporary QPicture and open a QCPPainter + on it. Then call \ref toPainter with this QCPPainter. After ending the paint operation on the picture, draw it with + the QPainter. This will reproduce the painter actions the QCPPainter took, with a QPainter. + + \see toPixmap +*/ +void QCustomPlot::toPainter(QCPPainter *painter, int width, int height) +{ + // this method is somewhat similar to toPixmap. Change something here, and a change in toPixmap might be necessary, too. + int newWidth, newHeight; + if (width == 0 || height == 0) + { + newWidth = this->width(); + newHeight = this->height(); + } else + { + newWidth = width; + newHeight = height; + } + + if (painter->isActive()) + { + QRect oldViewport = viewport(); + setViewport(QRect(0, 0, newWidth, newHeight)); + painter->setMode(QCPPainter::pmNoCaching); + if (mBackgroundBrush.style() != Qt::NoBrush) // unlike in toPixmap, we can't do QPixmap::fill for Qt::SolidPattern brush style, so we also draw solid fills with fillRect here + painter->fillRect(mViewport, mBackgroundBrush); + draw(painter); + setViewport(oldViewport); + } else + qDebug() << Q_FUNC_INFO << "Passed painter is not active"; +} +/* end of 'src/core.cpp' */ + +//amalgamation: add plottable1d.cpp + +/* including file 'src/colorgradient.cpp', size 25342 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPColorGradient +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPColorGradient + \brief Defines a color gradient for use with e.g. \ref QCPColorMap + + This class describes a color gradient which can be used to encode data with color. For example, + QCPColorMap and QCPColorScale have \ref QCPColorMap::setGradient "setGradient" methods which + take an instance of this class. Colors are set with \ref setColorStopAt(double position, const QColor &color) + with a \a position from 0 to 1. In between these defined color positions, the + color will be interpolated linearly either in RGB or HSV space, see \ref setColorInterpolation. + + Alternatively, load one of the preset color gradients shown in the image below, with \ref + loadPreset, or by directly specifying the preset in the constructor. + + Apart from red, green and blue components, the gradient also interpolates the alpha values of the + configured color stops. This allows to display some portions of the data range as transparent in + the plot. + + \image html QCPColorGradient.png + + The \ref QCPColorGradient(GradientPreset preset) constructor allows directly converting a \ref + GradientPreset to a QCPColorGradient. This means that you can directly pass \ref GradientPreset + to all the \a setGradient methods, e.g.: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpcolorgradient-setgradient + + The total number of levels used in the gradient can be set with \ref setLevelCount. Whether the + color gradient shall be applied periodically (wrapping around) to data values that lie outside + the data range specified on the plottable instance can be controlled with \ref setPeriodic. +*/ + +/*! + Constructs a new, empty QCPColorGradient with no predefined color stops. You can add own color + stops with \ref setColorStopAt. + + The color level count is initialized to 350. +*/ +QCPColorGradient::QCPColorGradient() : + mLevelCount(350), + mColorInterpolation(ciRGB), + mPeriodic(false), + mColorBufferInvalidated(true) +{ + mColorBuffer.fill(qRgb(0, 0, 0), mLevelCount); +} + +/*! + Constructs a new QCPColorGradient initialized with the colors and color interpolation according + to \a preset. + + The color level count is initialized to 350. +*/ +QCPColorGradient::QCPColorGradient(GradientPreset preset) : + mLevelCount(350), + mColorInterpolation(ciRGB), + mPeriodic(false), + mColorBufferInvalidated(true) +{ + mColorBuffer.fill(qRgb(0, 0, 0), mLevelCount); + loadPreset(preset); +} + +/* undocumented operator */ +bool QCPColorGradient::operator==(const QCPColorGradient &other) const +{ + return ((other.mLevelCount == this->mLevelCount) && + (other.mColorInterpolation == this->mColorInterpolation) && + (other.mPeriodic == this->mPeriodic) && + (other.mColorStops == this->mColorStops)); +} + +/*! + Sets the number of discretization levels of the color gradient to \a n. The default is 350 which + is typically enough to create a smooth appearance. The minimum number of levels is 2. + + \image html QCPColorGradient-levelcount.png +*/ +void QCPColorGradient::setLevelCount(int n) +{ + if (n < 2) + { + qDebug() << Q_FUNC_INFO << "n must be greater or equal 2 but was" << n; + n = 2; + } + if (n != mLevelCount) + { + mLevelCount = n; + mColorBufferInvalidated = true; + } +} + +/*! + Sets at which positions from 0 to 1 which color shall occur. The positions are the keys, the + colors are the values of the passed QMap \a colorStops. In between these color stops, the color + is interpolated according to \ref setColorInterpolation. + + A more convenient way to create a custom gradient may be to clear all color stops with \ref + clearColorStops (or creating a new, empty QCPColorGradient) and then adding them one by one with + \ref setColorStopAt. + + \see clearColorStops +*/ +void QCPColorGradient::setColorStops(const QMap &colorStops) +{ + mColorStops = colorStops; + mColorBufferInvalidated = true; +} + +/*! + Sets the \a color the gradient will have at the specified \a position (from 0 to 1). In between + these color stops, the color is interpolated according to \ref setColorInterpolation. + + \see setColorStops, clearColorStops +*/ +void QCPColorGradient::setColorStopAt(double position, const QColor &color) +{ + mColorStops.insert(position, color); + mColorBufferInvalidated = true; +} + +/*! + Sets whether the colors in between the configured color stops (see \ref setColorStopAt) shall be + interpolated linearly in RGB or in HSV color space. + + For example, a sweep in RGB space from red to green will have a muddy brown intermediate color, + whereas in HSV space the intermediate color is yellow. +*/ +void QCPColorGradient::setColorInterpolation(QCPColorGradient::ColorInterpolation interpolation) +{ + if (interpolation != mColorInterpolation) + { + mColorInterpolation = interpolation; + mColorBufferInvalidated = true; + } +} + +/*! + Sets whether data points that are outside the configured data range (e.g. \ref + QCPColorMap::setDataRange) are colored by periodically repeating the color gradient or whether + they all have the same color, corresponding to the respective gradient boundary color. + + \image html QCPColorGradient-periodic.png + + As shown in the image above, gradients that have the same start and end color are especially + suitable for a periodic gradient mapping, since they produce smooth color transitions throughout + the color map. A preset that has this property is \ref gpHues. + + In practice, using periodic color gradients makes sense when the data corresponds to a periodic + dimension, such as an angle or a phase. If this is not the case, the color encoding might become + ambiguous, because multiple different data values are shown as the same color. +*/ +void QCPColorGradient::setPeriodic(bool enabled) +{ + mPeriodic = enabled; +} + +/*! \overload + + This method is used to quickly convert a \a data array to colors. The colors will be output in + the array \a scanLine. Both \a data and \a scanLine must have the length \a n when passed to this + function. The data range that shall be used for mapping the data value to the gradient is passed + in \a range. \a logarithmic indicates whether the data values shall be mapped to colors + logarithmically. + + if \a data actually contains 2D-data linearized via [row*columnCount + column], you can + set \a dataIndexFactor to columnCount to convert a column instead of a row of the data + array, in \a scanLine. \a scanLine will remain a regular (1D) array. This works because \a data + is addressed data[i*dataIndexFactor]. + + Use the overloaded method to additionally provide alpha map data. + + The QRgb values that are placed in \a scanLine have their r, g and b components premultiplied + with alpha (see QImage::Format_ARGB32_Premultiplied). +*/ +void QCPColorGradient::colorize(const double *data, const QCPRange &range, QRgb *scanLine, int n, int dataIndexFactor, bool logarithmic) +{ + // If you change something here, make sure to also adapt color() and the other colorize() overload + if (!data) + { + qDebug() << Q_FUNC_INFO << "null pointer given as data"; + return; + } + if (!scanLine) + { + qDebug() << Q_FUNC_INFO << "null pointer given as scanLine"; + return; + } + if (mColorBufferInvalidated) + updateColorBuffer(); + + if (!logarithmic) + { + const double posToIndexFactor = (mLevelCount-1)/range.size(); + if (mPeriodic) + { + for (int i=0; i= mLevelCount) + index = mLevelCount-1; + scanLine[i] = mColorBuffer.at(index); + } + } + } else // logarithmic == true + { + if (mPeriodic) + { + for (int i=0; i= mLevelCount) + index = mLevelCount-1; + scanLine[i] = mColorBuffer.at(index); + } + } + } +} + +/*! \overload + + Additionally to the other overload of \ref colorize, this method takes the array \a alpha, which + has the same size and structure as \a data and encodes the alpha information per data point. + + The QRgb values that are placed in \a scanLine have their r, g and b components premultiplied + with alpha (see QImage::Format_ARGB32_Premultiplied). +*/ +void QCPColorGradient::colorize(const double *data, const unsigned char *alpha, const QCPRange &range, QRgb *scanLine, int n, int dataIndexFactor, bool logarithmic) +{ + // If you change something here, make sure to also adapt color() and the other colorize() overload + if (!data) + { + qDebug() << Q_FUNC_INFO << "null pointer given as data"; + return; + } + if (!alpha) + { + qDebug() << Q_FUNC_INFO << "null pointer given as alpha"; + return; + } + if (!scanLine) + { + qDebug() << Q_FUNC_INFO << "null pointer given as scanLine"; + return; + } + if (mColorBufferInvalidated) + updateColorBuffer(); + + if (!logarithmic) + { + const double posToIndexFactor = (mLevelCount-1)/range.size(); + if (mPeriodic) + { + for (int i=0; i= mLevelCount) + index = mLevelCount-1; + if (alpha[dataIndexFactor*i] == 255) + { + scanLine[i] = mColorBuffer.at(index); + } else + { + const QRgb rgb = mColorBuffer.at(index); + const float alphaF = alpha[dataIndexFactor*i]/255.0f; + scanLine[i] = qRgba(qRed(rgb)*alphaF, qGreen(rgb)*alphaF, qBlue(rgb)*alphaF, qAlpha(rgb)*alphaF); + } + } + } + } else // logarithmic == true + { + if (mPeriodic) + { + for (int i=0; i= mLevelCount) + index = mLevelCount-1; + if (alpha[dataIndexFactor*i] == 255) + { + scanLine[i] = mColorBuffer.at(index); + } else + { + const QRgb rgb = mColorBuffer.at(index); + const float alphaF = alpha[dataIndexFactor*i]/255.0f; + scanLine[i] = qRgba(qRed(rgb)*alphaF, qGreen(rgb)*alphaF, qBlue(rgb)*alphaF, qAlpha(rgb)*alphaF); + } + } + } + } +} + +/*! \internal + + This method is used to colorize a single data value given in \a position, to colors. The data + range that shall be used for mapping the data value to the gradient is passed in \a range. \a + logarithmic indicates whether the data value shall be mapped to a color logarithmically. + + If an entire array of data values shall be converted, rather use \ref colorize, for better + performance. + + The returned QRgb has its r, g and b components premultiplied with alpha (see + QImage::Format_ARGB32_Premultiplied). +*/ +QRgb QCPColorGradient::color(double position, const QCPRange &range, bool logarithmic) +{ + // If you change something here, make sure to also adapt ::colorize() + if (mColorBufferInvalidated) + updateColorBuffer(); + int index = 0; + if (!logarithmic) + index = (position-range.lower)*(mLevelCount-1)/range.size(); + else + index = qLn(position/range.lower)/qLn(range.upper/range.lower)*(mLevelCount-1); + if (mPeriodic) + { + index = index % mLevelCount; + if (index < 0) + index += mLevelCount; + } else + { + if (index < 0) + index = 0; + else if (index >= mLevelCount) + index = mLevelCount-1; + } + return mColorBuffer.at(index); +} + +/*! + Clears the current color stops and loads the specified \a preset. A preset consists of predefined + color stops and the corresponding color interpolation method. + + The available presets are: + \image html QCPColorGradient.png +*/ +void QCPColorGradient::loadPreset(GradientPreset preset) +{ + clearColorStops(); + switch (preset) + { + case gpGrayscale: + setColorInterpolation(ciRGB); + setColorStopAt(0, Qt::black); + setColorStopAt(1, Qt::white); + break; + case gpHot: + setColorInterpolation(ciRGB); + setColorStopAt(0, QColor(50, 0, 0)); + setColorStopAt(0.2, QColor(180, 10, 0)); + setColorStopAt(0.4, QColor(245, 50, 0)); + setColorStopAt(0.6, QColor(255, 150, 10)); + setColorStopAt(0.8, QColor(255, 255, 50)); + setColorStopAt(1, QColor(255, 255, 255)); + break; + case gpCold: + setColorInterpolation(ciRGB); + setColorStopAt(0, QColor(0, 0, 50)); + setColorStopAt(0.2, QColor(0, 10, 180)); + setColorStopAt(0.4, QColor(0, 50, 245)); + setColorStopAt(0.6, QColor(10, 150, 255)); + setColorStopAt(0.8, QColor(50, 255, 255)); + setColorStopAt(1, QColor(255, 255, 255)); + break; + case gpNight: + setColorInterpolation(ciHSV); + setColorStopAt(0, QColor(10, 20, 30)); + setColorStopAt(1, QColor(250, 255, 250)); + break; + case gpCandy: + setColorInterpolation(ciHSV); + setColorStopAt(0, QColor(0, 0, 255)); + setColorStopAt(1, QColor(255, 250, 250)); + break; + case gpGeography: + setColorInterpolation(ciRGB); + setColorStopAt(0, QColor(70, 170, 210)); + setColorStopAt(0.20, QColor(90, 160, 180)); + setColorStopAt(0.25, QColor(45, 130, 175)); + setColorStopAt(0.30, QColor(100, 140, 125)); + setColorStopAt(0.5, QColor(100, 140, 100)); + setColorStopAt(0.6, QColor(130, 145, 120)); + setColorStopAt(0.7, QColor(140, 130, 120)); + setColorStopAt(0.9, QColor(180, 190, 190)); + setColorStopAt(1, QColor(210, 210, 230)); + break; + case gpIon: + setColorInterpolation(ciHSV); + setColorStopAt(0, QColor(50, 10, 10)); + setColorStopAt(0.45, QColor(0, 0, 255)); + setColorStopAt(0.8, QColor(0, 255, 255)); + setColorStopAt(1, QColor(0, 255, 0)); + break; + case gpThermal: + setColorInterpolation(ciRGB); + setColorStopAt(0, QColor(0, 0, 50)); + setColorStopAt(0.15, QColor(20, 0, 120)); + setColorStopAt(0.33, QColor(200, 30, 140)); + setColorStopAt(0.6, QColor(255, 100, 0)); + setColorStopAt(0.85, QColor(255, 255, 40)); + setColorStopAt(1, QColor(255, 255, 255)); + break; + case gpPolar: + setColorInterpolation(ciRGB); + setColorStopAt(0, QColor(50, 255, 255)); + setColorStopAt(0.18, QColor(10, 70, 255)); + setColorStopAt(0.28, QColor(10, 10, 190)); + setColorStopAt(0.5, QColor(0, 0, 0)); + setColorStopAt(0.72, QColor(190, 10, 10)); + setColorStopAt(0.82, QColor(255, 70, 10)); + setColorStopAt(1, QColor(255, 255, 50)); + break; + case gpSpectrum: + setColorInterpolation(ciHSV); + setColorStopAt(0, QColor(50, 0, 50)); + setColorStopAt(0.15, QColor(0, 0, 255)); + setColorStopAt(0.35, QColor(0, 255, 255)); + setColorStopAt(0.6, QColor(255, 255, 0)); + setColorStopAt(0.75, QColor(255, 30, 0)); + setColorStopAt(1, QColor(50, 0, 0)); + break; + case gpJet: + setColorInterpolation(ciRGB); + setColorStopAt(0, QColor(0, 0, 100)); + setColorStopAt(0.15, QColor(0, 50, 255)); + setColorStopAt(0.35, QColor(0, 255, 255)); + setColorStopAt(0.65, QColor(255, 255, 0)); + setColorStopAt(0.85, QColor(255, 30, 0)); + setColorStopAt(1, QColor(100, 0, 0)); + break; + case gpHues: + setColorInterpolation(ciHSV); + setColorStopAt(0, QColor(255, 0, 0)); + setColorStopAt(1.0/3.0, QColor(0, 0, 255)); + setColorStopAt(2.0/3.0, QColor(0, 255, 0)); + setColorStopAt(1, QColor(255, 0, 0)); + break; + } +} + +/*! + Clears all color stops. + + \see setColorStops, setColorStopAt +*/ +void QCPColorGradient::clearColorStops() +{ + mColorStops.clear(); + mColorBufferInvalidated = true; +} + +/*! + Returns an inverted gradient. The inverted gradient has all properties as this \ref + QCPColorGradient, but the order of the color stops is inverted. + + \see setColorStops, setColorStopAt +*/ +QCPColorGradient QCPColorGradient::inverted() const +{ + QCPColorGradient result(*this); + result.clearColorStops(); + for (QMap::const_iterator it=mColorStops.constBegin(); it!=mColorStops.constEnd(); ++it) + result.setColorStopAt(1.0-it.key(), it.value()); + return result; +} + +/*! \internal + + Returns true if the color gradient uses transparency, i.e. if any of the configured color stops + has an alpha value below 255. +*/ +bool QCPColorGradient::stopsUseAlpha() const +{ + for (QMap::const_iterator it=mColorStops.constBegin(); it!=mColorStops.constEnd(); ++it) + { + if (it.value().alpha() < 255) + return true; + } + return false; +} + +/*! \internal + + Updates the internal color buffer which will be used by \ref colorize and \ref color, to quickly + convert positions to colors. This is where the interpolation between color stops is calculated. +*/ +void QCPColorGradient::updateColorBuffer() +{ + if (mColorBuffer.size() != mLevelCount) + mColorBuffer.resize(mLevelCount); + if (mColorStops.size() > 1) + { + double indexToPosFactor = 1.0/(double)(mLevelCount-1); + const bool useAlpha = stopsUseAlpha(); + for (int i=0; i::const_iterator it = mColorStops.lowerBound(position); + if (it == mColorStops.constEnd()) // position is on or after last stop, use color of last stop + { + if (useAlpha) + { + const QColor col = (it-1).value(); + const float alphaPremultiplier = col.alpha()/255.0f; // since we use QImage::Format_ARGB32_Premultiplied + mColorBuffer[i] = qRgba(col.red()*alphaPremultiplier, col.green()*alphaPremultiplier, col.blue()*alphaPremultiplier, col.alpha()); + } else + mColorBuffer[i] = (it-1).value().rgba(); + } else if (it == mColorStops.constBegin()) // position is on or before first stop, use color of first stop + { + if (useAlpha) + { + const QColor col = it.value(); + const float alphaPremultiplier = col.alpha()/255.0f; // since we use QImage::Format_ARGB32_Premultiplied + mColorBuffer[i] = qRgba(col.red()*alphaPremultiplier, col.green()*alphaPremultiplier, col.blue()*alphaPremultiplier, col.alpha()); + } else + mColorBuffer[i] = it.value().rgba(); + } else // position is in between stops (or on an intermediate stop), interpolate color + { + QMap::const_iterator high = it; + QMap::const_iterator low = it-1; + double t = (position-low.key())/(high.key()-low.key()); // interpolation factor 0..1 + switch (mColorInterpolation) + { + case ciRGB: + { + if (useAlpha) + { + const int alpha = (1-t)*low.value().alpha() + t*high.value().alpha(); + const float alphaPremultiplier = alpha/255.0f; // since we use QImage::Format_ARGB32_Premultiplied + mColorBuffer[i] = qRgba(((1-t)*low.value().red() + t*high.value().red())*alphaPremultiplier, + ((1-t)*low.value().green() + t*high.value().green())*alphaPremultiplier, + ((1-t)*low.value().blue() + t*high.value().blue())*alphaPremultiplier, + alpha); + } else + { + mColorBuffer[i] = qRgb(((1-t)*low.value().red() + t*high.value().red()), + ((1-t)*low.value().green() + t*high.value().green()), + ((1-t)*low.value().blue() + t*high.value().blue())); + } + break; + } + case ciHSV: + { + QColor lowHsv = low.value().toHsv(); + QColor highHsv = high.value().toHsv(); + double hue = 0; + double hueDiff = highHsv.hueF()-lowHsv.hueF(); + if (hueDiff > 0.5) + hue = lowHsv.hueF() - t*(1.0-hueDiff); + else if (hueDiff < -0.5) + hue = lowHsv.hueF() + t*(1.0+hueDiff); + else + hue = lowHsv.hueF() + t*hueDiff; + if (hue < 0) hue += 1.0; + else if (hue >= 1.0) hue -= 1.0; + if (useAlpha) + { + const QRgb rgb = QColor::fromHsvF(hue, + (1-t)*lowHsv.saturationF() + t*highHsv.saturationF(), + (1-t)*lowHsv.valueF() + t*highHsv.valueF()).rgb(); + const float alpha = (1-t)*lowHsv.alphaF() + t*highHsv.alphaF(); + mColorBuffer[i] = qRgba(qRed(rgb)*alpha, qGreen(rgb)*alpha, qBlue(rgb)*alpha, 255*alpha); + } + else + { + mColorBuffer[i] = QColor::fromHsvF(hue, + (1-t)*lowHsv.saturationF() + t*highHsv.saturationF(), + (1-t)*lowHsv.valueF() + t*highHsv.valueF()).rgb(); + } + break; + } + } + } + } + } else if (mColorStops.size() == 1) + { + const QRgb rgb = mColorStops.constBegin().value().rgb(); + const float alpha = mColorStops.constBegin().value().alphaF(); + mColorBuffer.fill(qRgba(qRed(rgb)*alpha, qGreen(rgb)*alpha, qBlue(rgb)*alpha, 255*alpha)); + } else // mColorStops is empty, fill color buffer with black + { + mColorBuffer.fill(qRgb(0, 0, 0)); + } + mColorBufferInvalidated = false; +} +/* end of 'src/colorgradient.cpp' */ + + +/* including file 'src/selectiondecorator-bracket.cpp', size 12313 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPSelectionDecoratorBracket +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPSelectionDecoratorBracket + \brief A selection decorator which draws brackets around each selected data segment + + Additionally to the regular highlighting of selected segments via color, fill and scatter style, + this \ref QCPSelectionDecorator subclass draws markers at the begin and end of each selected data + segment of the plottable. + + The shape of the markers can be controlled with \ref setBracketStyle, \ref setBracketWidth and + \ref setBracketHeight. The color/fill can be controlled with \ref setBracketPen and \ref + setBracketBrush. + + To introduce custom bracket styles, it is only necessary to sublcass \ref + QCPSelectionDecoratorBracket and reimplement \ref drawBracket. The rest will be managed by the + base class. +*/ + +/*! + Creates a new QCPSelectionDecoratorBracket instance with default values. +*/ +QCPSelectionDecoratorBracket::QCPSelectionDecoratorBracket() : + mBracketPen(QPen(Qt::black)), + mBracketBrush(Qt::NoBrush), + mBracketWidth(5), + mBracketHeight(50), + mBracketStyle(bsSquareBracket), + mTangentToData(false), + mTangentAverage(2) +{ + +} + +QCPSelectionDecoratorBracket::~QCPSelectionDecoratorBracket() +{ +} + +/*! + Sets the pen that will be used to draw the brackets at the beginning and end of each selected + data segment. +*/ +void QCPSelectionDecoratorBracket::setBracketPen(const QPen &pen) +{ + mBracketPen = pen; +} + +/*! + Sets the brush that will be used to draw the brackets at the beginning and end of each selected + data segment. +*/ +void QCPSelectionDecoratorBracket::setBracketBrush(const QBrush &brush) +{ + mBracketBrush = brush; +} + +/*! + Sets the width of the drawn bracket. The width dimension is always parallel to the key axis of + the data, or the tangent direction of the current data slope, if \ref setTangentToData is + enabled. +*/ +void QCPSelectionDecoratorBracket::setBracketWidth(int width) +{ + mBracketWidth = width; +} + +/*! + Sets the height of the drawn bracket. The height dimension is always perpendicular to the key axis + of the data, or the tangent direction of the current data slope, if \ref setTangentToData is + enabled. +*/ +void QCPSelectionDecoratorBracket::setBracketHeight(int height) +{ + mBracketHeight = height; +} + +/*! + Sets the shape that the bracket/marker will have. + + \see setBracketWidth, setBracketHeight +*/ +void QCPSelectionDecoratorBracket::setBracketStyle(QCPSelectionDecoratorBracket::BracketStyle style) +{ + mBracketStyle = style; +} + +/*! + Sets whether the brackets will be rotated such that they align with the slope of the data at the + position that they appear in. + + For noisy data, it might be more visually appealing to average the slope over multiple data + points. This can be configured via \ref setTangentAverage. +*/ +void QCPSelectionDecoratorBracket::setTangentToData(bool enabled) +{ + mTangentToData = enabled; +} + +/*! + Controls over how many data points the slope shall be averaged, when brackets shall be aligned + with the data (if \ref setTangentToData is true). + + From the position of the bracket, \a pointCount points towards the selected data range will be + taken into account. The smallest value of \a pointCount is 1, which is effectively equivalent to + disabling \ref setTangentToData. +*/ +void QCPSelectionDecoratorBracket::setTangentAverage(int pointCount) +{ + mTangentAverage = pointCount; + if (mTangentAverage < 1) + mTangentAverage = 1; +} + +/*! + Draws the bracket shape with \a painter. The parameter \a direction is either -1 or 1 and + indicates whether the bracket shall point to the left or the right (i.e. is a closing or opening + bracket, respectively). + + The passed \a painter already contains all transformations that are necessary to position and + rotate the bracket appropriately. Painting operations can be performed as if drawing upright + brackets on flat data with horizontal key axis, with (0, 0) being the center of the bracket. + + If you wish to sublcass \ref QCPSelectionDecoratorBracket in order to provide custom bracket + shapes (see \ref QCPSelectionDecoratorBracket::bsUserStyle), this is the method you should + reimplement. +*/ +void QCPSelectionDecoratorBracket::drawBracket(QCPPainter *painter, int direction) const +{ + switch (mBracketStyle) + { + case bsSquareBracket: + { + painter->drawLine(QLineF(mBracketWidth*direction, -mBracketHeight*0.5, 0, -mBracketHeight*0.5)); + painter->drawLine(QLineF(mBracketWidth*direction, mBracketHeight*0.5, 0, mBracketHeight*0.5)); + painter->drawLine(QLineF(0, -mBracketHeight*0.5, 0, mBracketHeight*0.5)); + break; + } + case bsHalfEllipse: + { + painter->drawArc(-mBracketWidth*0.5, -mBracketHeight*0.5, mBracketWidth, mBracketHeight, -90*16, -180*16*direction); + break; + } + case bsEllipse: + { + painter->drawEllipse(-mBracketWidth*0.5, -mBracketHeight*0.5, mBracketWidth, mBracketHeight); + break; + } + case bsPlus: + { + painter->drawLine(QLineF(0, -mBracketHeight*0.5, 0, mBracketHeight*0.5)); + painter->drawLine(QLineF(-mBracketWidth*0.5, 0, mBracketWidth*0.5, 0)); + break; + } + default: + { + qDebug() << Q_FUNC_INFO << "unknown/custom bracket style can't be handeld by default implementation:" << static_cast(mBracketStyle); + break; + } + } +} + +/*! + Draws the bracket decoration on the data points at the begin and end of each selected data + segment given in \a seletion. + + It uses the method \ref drawBracket to actually draw the shapes. + + \seebaseclassmethod +*/ +void QCPSelectionDecoratorBracket::drawDecoration(QCPPainter *painter, QCPDataSelection selection) +{ + if (!mPlottable || selection.isEmpty()) return; + + if (QCPPlottableInterface1D *interface1d = mPlottable->interface1D()) + { + foreach (const QCPDataRange &dataRange, selection.dataRanges()) + { + // determine position and (if tangent mode is enabled) angle of brackets: + int openBracketDir = (mPlottable->keyAxis() && !mPlottable->keyAxis()->rangeReversed()) ? 1 : -1; + int closeBracketDir = -openBracketDir; + QPointF openBracketPos = getPixelCoordinates(interface1d, dataRange.begin()); + QPointF closeBracketPos = getPixelCoordinates(interface1d, dataRange.end()-1); + double openBracketAngle = 0; + double closeBracketAngle = 0; + if (mTangentToData) + { + openBracketAngle = getTangentAngle(interface1d, dataRange.begin(), openBracketDir); + closeBracketAngle = getTangentAngle(interface1d, dataRange.end()-1, closeBracketDir); + } + // draw opening bracket: + QTransform oldTransform = painter->transform(); + painter->setPen(mBracketPen); + painter->setBrush(mBracketBrush); + painter->translate(openBracketPos); + painter->rotate(openBracketAngle/M_PI*180.0); + drawBracket(painter, openBracketDir); + painter->setTransform(oldTransform); + // draw closing bracket: + painter->setPen(mBracketPen); + painter->setBrush(mBracketBrush); + painter->translate(closeBracketPos); + painter->rotate(closeBracketAngle/M_PI*180.0); + drawBracket(painter, closeBracketDir); + painter->setTransform(oldTransform); + } + } +} + +/*! \internal + + If \ref setTangentToData is enabled, brackets need to be rotated according to the data slope. + This method returns the angle in radians by which a bracket at the given \a dataIndex must be + rotated. + + The parameter \a direction must be set to either -1 or 1, representing whether it is an opening + or closing bracket. Since for slope calculation multiple data points are required, this defines + the direction in which the algorithm walks, starting at \a dataIndex, to average those data + points. (see \ref setTangentToData and \ref setTangentAverage) + + \a interface1d is the interface to the plottable's data which is used to query data coordinates. +*/ +double QCPSelectionDecoratorBracket::getTangentAngle(const QCPPlottableInterface1D *interface1d, int dataIndex, int direction) const +{ + if (!interface1d || dataIndex < 0 || dataIndex >= interface1d->dataCount()) + return 0; + direction = direction < 0 ? -1 : 1; // enforce direction is either -1 or 1 + + // how many steps we can actually go from index in the given direction without exceeding data bounds: + int averageCount; + if (direction < 0) + averageCount = qMin(mTangentAverage, dataIndex); + else + averageCount = qMin(mTangentAverage, interface1d->dataCount()-1-dataIndex); + qDebug() << averageCount; + // calculate point average of averageCount points: + QVector points(averageCount); + QPointF pointsAverage; + int currentIndex = dataIndex; + for (int i=0; ikeyAxis(); + QCPAxis *valueAxis = mPlottable->valueAxis(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return QPointF(0, 0); } + + if (keyAxis->orientation() == Qt::Horizontal) + return QPointF(keyAxis->coordToPixel(interface1d->dataMainKey(dataIndex)), valueAxis->coordToPixel(interface1d->dataMainValue(dataIndex))); + else + return QPointF(valueAxis->coordToPixel(interface1d->dataMainValue(dataIndex)), keyAxis->coordToPixel(interface1d->dataMainKey(dataIndex))); +} +/* end of 'src/selectiondecorator-bracket.cpp' */ + + +/* including file 'src/layoutelements/layoutelement-axisrect.cpp', size 47584 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPAxisRect +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPAxisRect + \brief Holds multiple axes and arranges them in a rectangular shape. + + This class represents an axis rect, a rectangular area that is bounded on all sides with an + arbitrary number of axes. + + Initially QCustomPlot has one axis rect, accessible via QCustomPlot::axisRect(). However, the + layout system allows to have multiple axis rects, e.g. arranged in a grid layout + (QCustomPlot::plotLayout). + + By default, QCPAxisRect comes with four axes, at bottom, top, left and right. They can be + accessed via \ref axis by providing the respective axis type (\ref QCPAxis::AxisType) and index. + If you need all axes in the axis rect, use \ref axes. The top and right axes are set to be + invisible initially (QCPAxis::setVisible). To add more axes to a side, use \ref addAxis or \ref + addAxes. To remove an axis, use \ref removeAxis. + + The axis rect layerable itself only draws a background pixmap or color, if specified (\ref + setBackground). It is placed on the "background" layer initially (see \ref QCPLayer for an + explanation of the QCustomPlot layer system). The axes that are held by the axis rect can be + placed on other layers, independently of the axis rect. + + Every axis rect has a child layout of type \ref QCPLayoutInset. It is accessible via \ref + insetLayout and can be used to have other layout elements (or even other layouts with multiple + elements) hovering inside the axis rect. + + If an axis rect is clicked and dragged, it processes this by moving certain axis ranges. The + behaviour can be controlled with \ref setRangeDrag and \ref setRangeDragAxes. If the mouse wheel + is scrolled while the cursor is on the axis rect, certain axes are scaled. This is controllable + via \ref setRangeZoom, \ref setRangeZoomAxes and \ref setRangeZoomFactor. These interactions are + only enabled if \ref QCustomPlot::setInteractions contains \ref QCP::iRangeDrag and \ref + QCP::iRangeZoom. + + \image html AxisRectSpacingOverview.png +
Overview of the spacings and paddings that define the geometry of an axis. The dashed + line on the far left indicates the viewport/widget border.
+*/ + +/* start documentation of inline functions */ + +/*! \fn QCPLayoutInset *QCPAxisRect::insetLayout() const + + Returns the inset layout of this axis rect. It can be used to place other layout elements (or + even layouts with multiple other elements) inside/on top of an axis rect. + + \see QCPLayoutInset +*/ + +/*! \fn int QCPAxisRect::left() const + + Returns the pixel position of the left border of this axis rect. Margins are not taken into + account here, so the returned value is with respect to the inner \ref rect. +*/ + +/*! \fn int QCPAxisRect::right() const + + Returns the pixel position of the right border of this axis rect. Margins are not taken into + account here, so the returned value is with respect to the inner \ref rect. +*/ + +/*! \fn int QCPAxisRect::top() const + + Returns the pixel position of the top border of this axis rect. Margins are not taken into + account here, so the returned value is with respect to the inner \ref rect. +*/ + +/*! \fn int QCPAxisRect::bottom() const + + Returns the pixel position of the bottom border of this axis rect. Margins are not taken into + account here, so the returned value is with respect to the inner \ref rect. +*/ + +/*! \fn int QCPAxisRect::width() const + + Returns the pixel width of this axis rect. Margins are not taken into account here, so the + returned value is with respect to the inner \ref rect. +*/ + +/*! \fn int QCPAxisRect::height() const + + Returns the pixel height of this axis rect. Margins are not taken into account here, so the + returned value is with respect to the inner \ref rect. +*/ + +/*! \fn QSize QCPAxisRect::size() const + + Returns the pixel size of this axis rect. Margins are not taken into account here, so the + returned value is with respect to the inner \ref rect. +*/ + +/*! \fn QPoint QCPAxisRect::topLeft() const + + Returns the top left corner of this axis rect in pixels. Margins are not taken into account here, + so the returned value is with respect to the inner \ref rect. +*/ + +/*! \fn QPoint QCPAxisRect::topRight() const + + Returns the top right corner of this axis rect in pixels. Margins are not taken into account + here, so the returned value is with respect to the inner \ref rect. +*/ + +/*! \fn QPoint QCPAxisRect::bottomLeft() const + + Returns the bottom left corner of this axis rect in pixels. Margins are not taken into account + here, so the returned value is with respect to the inner \ref rect. +*/ + +/*! \fn QPoint QCPAxisRect::bottomRight() const + + Returns the bottom right corner of this axis rect in pixels. Margins are not taken into account + here, so the returned value is with respect to the inner \ref rect. +*/ + +/*! \fn QPoint QCPAxisRect::center() const + + Returns the center of this axis rect in pixels. Margins are not taken into account here, so the + returned value is with respect to the inner \ref rect. +*/ + +/* end documentation of inline functions */ + +/*! + Creates a QCPAxisRect instance and sets default values. An axis is added for each of the four + sides, the top and right axes are set invisible initially. +*/ +QCPAxisRect::QCPAxisRect(QCustomPlot *parentPlot, bool setupDefaultAxes) : + QCPLayoutElement(parentPlot), + mBackgroundBrush(Qt::NoBrush), + mBackgroundScaled(true), + mBackgroundScaledMode(Qt::KeepAspectRatioByExpanding), + mInsetLayout(new QCPLayoutInset), + mRangeDrag(Qt::Horizontal|Qt::Vertical), + mRangeZoom(Qt::Horizontal|Qt::Vertical), + mRangeZoomFactorHorz(0.85), + mRangeZoomFactorVert(0.85), + mDragging(false) +{ + mInsetLayout->initializeParentPlot(mParentPlot); + mInsetLayout->setParentLayerable(this); + mInsetLayout->setParent(this); + + setMinimumSize(50, 50); + setMinimumMargins(QMargins(15, 15, 15, 15)); + mAxes.insert(QCPAxis::atLeft, QList()); + mAxes.insert(QCPAxis::atRight, QList()); + mAxes.insert(QCPAxis::atTop, QList()); + mAxes.insert(QCPAxis::atBottom, QList()); + + if (setupDefaultAxes) + { + QCPAxis *xAxis = addAxis(QCPAxis::atBottom); + QCPAxis *yAxis = addAxis(QCPAxis::atLeft); + QCPAxis *xAxis2 = addAxis(QCPAxis::atTop); + QCPAxis *yAxis2 = addAxis(QCPAxis::atRight); + setRangeDragAxes(xAxis, yAxis); + setRangeZoomAxes(xAxis, yAxis); + xAxis2->setVisible(false); + yAxis2->setVisible(false); + xAxis->grid()->setVisible(true); + yAxis->grid()->setVisible(true); + xAxis2->grid()->setVisible(false); + yAxis2->grid()->setVisible(false); + xAxis2->grid()->setZeroLinePen(Qt::NoPen); + yAxis2->grid()->setZeroLinePen(Qt::NoPen); + xAxis2->grid()->setVisible(false); + yAxis2->grid()->setVisible(false); + } +} + +QCPAxisRect::~QCPAxisRect() +{ + delete mInsetLayout; + mInsetLayout = 0; + + QList axesList = axes(); + for (int i=0; i ax(mAxes.value(type)); + if (index >= 0 && index < ax.size()) + { + return ax.at(index); + } else + { + qDebug() << Q_FUNC_INFO << "Axis index out of bounds:" << index; + return 0; + } +} + +/*! + Returns all axes on the axis rect sides specified with \a types. + + \a types may be a single \ref QCPAxis::AxisType or an or-combination, to get the axes of + multiple sides. + + \see axis +*/ +QList QCPAxisRect::axes(QCPAxis::AxisTypes types) const +{ + QList result; + if (types.testFlag(QCPAxis::atLeft)) + result << mAxes.value(QCPAxis::atLeft); + if (types.testFlag(QCPAxis::atRight)) + result << mAxes.value(QCPAxis::atRight); + if (types.testFlag(QCPAxis::atTop)) + result << mAxes.value(QCPAxis::atTop); + if (types.testFlag(QCPAxis::atBottom)) + result << mAxes.value(QCPAxis::atBottom); + return result; +} + +/*! \overload + + Returns all axes of this axis rect. +*/ +QList QCPAxisRect::axes() const +{ + QList result; + QHashIterator > it(mAxes); + while (it.hasNext()) + { + it.next(); + result << it.value(); + } + return result; +} + +/*! + Adds a new axis to the axis rect side specified with \a type, and returns it. If \a axis is 0, a + new QCPAxis instance is created internally. QCustomPlot owns the returned axis, so if you want to + remove an axis, use \ref removeAxis instead of deleting it manually. + + You may inject QCPAxis instances (or subclasses of QCPAxis) by setting \a axis to an axis that was + previously created outside QCustomPlot. It is important to note that QCustomPlot takes ownership + of the axis, so you may not delete it afterwards. Further, the \a axis must have been created + with this axis rect as parent and with the same axis type as specified in \a type. If this is not + the case, a debug output is generated, the axis is not added, and the method returns 0. + + This method can not be used to move \a axis between axis rects. The same \a axis instance must + not be added multiple times to the same or different axis rects. + + If an axis rect side already contains one or more axes, the lower and upper endings of the new + axis (\ref QCPAxis::setLowerEnding, \ref QCPAxis::setUpperEnding) are set to \ref + QCPLineEnding::esHalfBar. + + \see addAxes, setupFullAxesBox +*/ +QCPAxis *QCPAxisRect::addAxis(QCPAxis::AxisType type, QCPAxis *axis) +{ + QCPAxis *newAxis = axis; + if (!newAxis) + { + newAxis = new QCPAxis(this, type); + } else // user provided existing axis instance, do some sanity checks + { + if (newAxis->axisType() != type) + { + qDebug() << Q_FUNC_INFO << "passed axis has different axis type than specified in type parameter"; + return 0; + } + if (newAxis->axisRect() != this) + { + qDebug() << Q_FUNC_INFO << "passed axis doesn't have this axis rect as parent axis rect"; + return 0; + } + if (axes().contains(newAxis)) + { + qDebug() << Q_FUNC_INFO << "passed axis is already owned by this axis rect"; + return 0; + } + } + if (mAxes[type].size() > 0) // multiple axes on one side, add half-bar axis ending to additional axes with offset + { + bool invert = (type == QCPAxis::atRight) || (type == QCPAxis::atBottom); + newAxis->setLowerEnding(QCPLineEnding(QCPLineEnding::esHalfBar, 6, 10, !invert)); + newAxis->setUpperEnding(QCPLineEnding(QCPLineEnding::esHalfBar, 6, 10, invert)); + } + mAxes[type].append(newAxis); + + // reset convenience axis pointers on parent QCustomPlot if they are unset: + if (mParentPlot && mParentPlot->axisRectCount() > 0 && mParentPlot->axisRect(0) == this) + { + switch (type) + { + case QCPAxis::atBottom: { if (!mParentPlot->xAxis) mParentPlot->xAxis = newAxis; break; } + case QCPAxis::atLeft: { if (!mParentPlot->yAxis) mParentPlot->yAxis = newAxis; break; } + case QCPAxis::atTop: { if (!mParentPlot->xAxis2) mParentPlot->xAxis2 = newAxis; break; } + case QCPAxis::atRight: { if (!mParentPlot->yAxis2) mParentPlot->yAxis2 = newAxis; break; } + } + } + + return newAxis; +} + +/*! + Adds a new axis with \ref addAxis to each axis rect side specified in \a types. This may be an + or-combination of QCPAxis::AxisType, so axes can be added to multiple sides at once. + + Returns a list of the added axes. + + \see addAxis, setupFullAxesBox +*/ +QList QCPAxisRect::addAxes(QCPAxis::AxisTypes types) +{ + QList result; + if (types.testFlag(QCPAxis::atLeft)) + result << addAxis(QCPAxis::atLeft); + if (types.testFlag(QCPAxis::atRight)) + result << addAxis(QCPAxis::atRight); + if (types.testFlag(QCPAxis::atTop)) + result << addAxis(QCPAxis::atTop); + if (types.testFlag(QCPAxis::atBottom)) + result << addAxis(QCPAxis::atBottom); + return result; +} + +/*! + Removes the specified \a axis from the axis rect and deletes it. + + Returns true on success, i.e. if \a axis was a valid axis in this axis rect. + + \see addAxis +*/ +bool QCPAxisRect::removeAxis(QCPAxis *axis) +{ + // don't access axis->axisType() to provide safety when axis is an invalid pointer, rather go through all axis containers: + QHashIterator > it(mAxes); + while (it.hasNext()) + { + it.next(); + if (it.value().contains(axis)) + { + if (it.value().first() == axis && it.value().size() > 1) // if removing first axis, transfer axis offset to the new first axis (which at this point is the second axis, if it exists) + it.value()[1]->setOffset(axis->offset()); + mAxes[it.key()].removeOne(axis); + if (qobject_cast(parentPlot())) // make sure this isn't called from QObject dtor when QCustomPlot is already destructed (happens when the axis rect is not in any layout and thus QObject-child of QCustomPlot) + parentPlot()->axisRemoved(axis); + delete axis; + return true; + } + } + qDebug() << Q_FUNC_INFO << "Axis isn't in axis rect:" << reinterpret_cast(axis); + return false; +} + +/*! + Zooms in (or out) to the passed rectangular region \a pixelRect, given in pixel coordinates. + + All axes of this axis rect will have their range zoomed accordingly. If you only wish to zoom + specific axes, use the overloaded version of this method. + + \see QCustomPlot::setSelectionRectMode +*/ +void QCPAxisRect::zoom(const QRectF &pixelRect) +{ + zoom(pixelRect, axes()); +} + +/*! \overload + + Zooms in (or out) to the passed rectangular region \a pixelRect, given in pixel coordinates. + + Only the axes passed in \a affectedAxes will have their ranges zoomed accordingly. + + \see QCustomPlot::setSelectionRectMode +*/ +void QCPAxisRect::zoom(const QRectF &pixelRect, const QList &affectedAxes) +{ + foreach (QCPAxis *axis, affectedAxes) + { + if (!axis) + { + qDebug() << Q_FUNC_INFO << "a passed axis was zero"; + continue; + } + QCPRange pixelRange; + if (axis->orientation() == Qt::Horizontal) + pixelRange = QCPRange(pixelRect.left(), pixelRect.right()); + else + pixelRange = QCPRange(pixelRect.top(), pixelRect.bottom()); + axis->setRange(axis->pixelToCoord(pixelRange.lower), axis->pixelToCoord(pixelRange.upper)); + } +} + +/*! + Convenience function to create an axis on each side that doesn't have any axes yet and set their + visibility to true. Further, the top/right axes are assigned the following properties of the + bottom/left axes: + + \li range (\ref QCPAxis::setRange) + \li range reversed (\ref QCPAxis::setRangeReversed) + \li scale type (\ref QCPAxis::setScaleType) + \li tick visibility (\ref QCPAxis::setTicks) + \li number format (\ref QCPAxis::setNumberFormat) + \li number precision (\ref QCPAxis::setNumberPrecision) + \li tick count of ticker (\ref QCPAxisTicker::setTickCount) + \li tick origin of ticker (\ref QCPAxisTicker::setTickOrigin) + + Tick label visibility (\ref QCPAxis::setTickLabels) of the right and top axes are set to false. + + If \a connectRanges is true, the \ref QCPAxis::rangeChanged "rangeChanged" signals of the bottom + and left axes are connected to the \ref QCPAxis::setRange slots of the top and right axes. +*/ +void QCPAxisRect::setupFullAxesBox(bool connectRanges) +{ + QCPAxis *xAxis, *yAxis, *xAxis2, *yAxis2; + if (axisCount(QCPAxis::atBottom) == 0) + xAxis = addAxis(QCPAxis::atBottom); + else + xAxis = axis(QCPAxis::atBottom); + + if (axisCount(QCPAxis::atLeft) == 0) + yAxis = addAxis(QCPAxis::atLeft); + else + yAxis = axis(QCPAxis::atLeft); + + if (axisCount(QCPAxis::atTop) == 0) + xAxis2 = addAxis(QCPAxis::atTop); + else + xAxis2 = axis(QCPAxis::atTop); + + if (axisCount(QCPAxis::atRight) == 0) + yAxis2 = addAxis(QCPAxis::atRight); + else + yAxis2 = axis(QCPAxis::atRight); + + xAxis->setVisible(true); + yAxis->setVisible(true); + xAxis2->setVisible(true); + yAxis2->setVisible(true); + xAxis2->setTickLabels(false); + yAxis2->setTickLabels(false); + + xAxis2->setRange(xAxis->range()); + xAxis2->setRangeReversed(xAxis->rangeReversed()); + xAxis2->setScaleType(xAxis->scaleType()); + xAxis2->setTicks(xAxis->ticks()); + xAxis2->setNumberFormat(xAxis->numberFormat()); + xAxis2->setNumberPrecision(xAxis->numberPrecision()); + xAxis2->ticker()->setTickCount(xAxis->ticker()->tickCount()); + xAxis2->ticker()->setTickOrigin(xAxis->ticker()->tickOrigin()); + + yAxis2->setRange(yAxis->range()); + yAxis2->setRangeReversed(yAxis->rangeReversed()); + yAxis2->setScaleType(yAxis->scaleType()); + yAxis2->setTicks(yAxis->ticks()); + yAxis2->setNumberFormat(yAxis->numberFormat()); + yAxis2->setNumberPrecision(yAxis->numberPrecision()); + yAxis2->ticker()->setTickCount(yAxis->ticker()->tickCount()); + yAxis2->ticker()->setTickOrigin(yAxis->ticker()->tickOrigin()); + + if (connectRanges) + { + connect(xAxis, SIGNAL(rangeChanged(QCPRange)), xAxis2, SLOT(setRange(QCPRange))); + connect(yAxis, SIGNAL(rangeChanged(QCPRange)), yAxis2, SLOT(setRange(QCPRange))); + } +} + +/*! + Returns a list of all the plottables that are associated with this axis rect. + + A plottable is considered associated with an axis rect if its key or value axis (or both) is in + this axis rect. + + \see graphs, items +*/ +QList QCPAxisRect::plottables() const +{ + // Note: don't append all QCPAxis::plottables() into a list, because we might get duplicate entries + QList result; + for (int i=0; imPlottables.size(); ++i) + { + if (mParentPlot->mPlottables.at(i)->keyAxis()->axisRect() == this || mParentPlot->mPlottables.at(i)->valueAxis()->axisRect() == this) + result.append(mParentPlot->mPlottables.at(i)); + } + return result; +} + +/*! + Returns a list of all the graphs that are associated with this axis rect. + + A graph is considered associated with an axis rect if its key or value axis (or both) is in + this axis rect. + + \see plottables, items +*/ +QList QCPAxisRect::graphs() const +{ + // Note: don't append all QCPAxis::graphs() into a list, because we might get duplicate entries + QList result; + for (int i=0; imGraphs.size(); ++i) + { + if (mParentPlot->mGraphs.at(i)->keyAxis()->axisRect() == this || mParentPlot->mGraphs.at(i)->valueAxis()->axisRect() == this) + result.append(mParentPlot->mGraphs.at(i)); + } + return result; +} + +/*! + Returns a list of all the items that are associated with this axis rect. + + An item is considered associated with an axis rect if any of its positions has key or value axis + set to an axis that is in this axis rect, or if any of its positions has \ref + QCPItemPosition::setAxisRect set to the axis rect, or if the clip axis rect (\ref + QCPAbstractItem::setClipAxisRect) is set to this axis rect. + + \see plottables, graphs +*/ +QList QCPAxisRect::items() const +{ + // Note: don't just append all QCPAxis::items() into a list, because we might get duplicate entries + // and miss those items that have this axis rect as clipAxisRect. + QList result; + for (int itemId=0; itemIdmItems.size(); ++itemId) + { + if (mParentPlot->mItems.at(itemId)->clipAxisRect() == this) + { + result.append(mParentPlot->mItems.at(itemId)); + continue; + } + QList positions = mParentPlot->mItems.at(itemId)->positions(); + for (int posId=0; posIdaxisRect() == this || + positions.at(posId)->keyAxis()->axisRect() == this || + positions.at(posId)->valueAxis()->axisRect() == this) + { + result.append(mParentPlot->mItems.at(itemId)); + break; + } + } + } + return result; +} + +/*! + This method is called automatically upon replot and doesn't need to be called by users of + QCPAxisRect. + + Calls the base class implementation to update the margins (see \ref QCPLayoutElement::update), + and finally passes the \ref rect to the inset layout (\ref insetLayout) and calls its + QCPInsetLayout::update function. + + \seebaseclassmethod +*/ +void QCPAxisRect::update(UpdatePhase phase) +{ + QCPLayoutElement::update(phase); + + switch (phase) + { + case upPreparation: + { + QList allAxes = axes(); + for (int i=0; isetupTickVectors(); + break; + } + case upLayout: + { + mInsetLayout->setOuterRect(rect()); + break; + } + default: break; + } + + // pass update call on to inset layout (doesn't happen automatically, because QCPAxisRect doesn't derive from QCPLayout): + mInsetLayout->update(phase); +} + +/* inherits documentation from base class */ +QList QCPAxisRect::elements(bool recursive) const +{ + QList result; + if (mInsetLayout) + { + result << mInsetLayout; + if (recursive) + result << mInsetLayout->elements(recursive); + } + return result; +} + +/* inherits documentation from base class */ +void QCPAxisRect::applyDefaultAntialiasingHint(QCPPainter *painter) const +{ + painter->setAntialiasing(false); +} + +/* inherits documentation from base class */ +void QCPAxisRect::draw(QCPPainter *painter) +{ + drawBackground(painter); +} + +/*! + Sets \a pm as the axis background pixmap. The axis background pixmap will be drawn inside the + axis rect. Since axis rects place themselves on the "background" layer by default, the axis rect + backgrounds are usually drawn below everything else. + + For cases where the provided pixmap doesn't have the same size as the axis rect, scaling can be + enabled with \ref setBackgroundScaled and the scaling mode (i.e. whether and how the aspect ratio + is preserved) can be set with \ref setBackgroundScaledMode. To set all these options in one call, + consider using the overloaded version of this function. + + Below the pixmap, the axis rect may be optionally filled with a brush, if specified with \ref + setBackground(const QBrush &brush). + + \see setBackgroundScaled, setBackgroundScaledMode, setBackground(const QBrush &brush) +*/ +void QCPAxisRect::setBackground(const QPixmap &pm) +{ + mBackgroundPixmap = pm; + mScaledBackgroundPixmap = QPixmap(); +} + +/*! \overload + + Sets \a brush as the background brush. The axis rect background will be filled with this brush. + Since axis rects place themselves on the "background" layer by default, the axis rect backgrounds + are usually drawn below everything else. + + The brush will be drawn before (under) any background pixmap, which may be specified with \ref + setBackground(const QPixmap &pm). + + To disable drawing of a background brush, set \a brush to Qt::NoBrush. + + \see setBackground(const QPixmap &pm) +*/ +void QCPAxisRect::setBackground(const QBrush &brush) +{ + mBackgroundBrush = brush; +} + +/*! \overload + + Allows setting the background pixmap of the axis rect, whether it shall be scaled and how it + shall be scaled in one call. + + \see setBackground(const QPixmap &pm), setBackgroundScaled, setBackgroundScaledMode +*/ +void QCPAxisRect::setBackground(const QPixmap &pm, bool scaled, Qt::AspectRatioMode mode) +{ + mBackgroundPixmap = pm; + mScaledBackgroundPixmap = QPixmap(); + mBackgroundScaled = scaled; + mBackgroundScaledMode = mode; +} + +/*! + Sets whether the axis background pixmap shall be scaled to fit the axis rect or not. If \a scaled + is set to true, you may control whether and how the aspect ratio of the original pixmap is + preserved with \ref setBackgroundScaledMode. + + Note that the scaled version of the original pixmap is buffered, so there is no performance + penalty on replots. (Except when the axis rect dimensions are changed continuously.) + + \see setBackground, setBackgroundScaledMode +*/ +void QCPAxisRect::setBackgroundScaled(bool scaled) +{ + mBackgroundScaled = scaled; +} + +/*! + If scaling of the axis background pixmap is enabled (\ref setBackgroundScaled), use this function to + define whether and how the aspect ratio of the original pixmap passed to \ref setBackground is preserved. + \see setBackground, setBackgroundScaled +*/ +void QCPAxisRect::setBackgroundScaledMode(Qt::AspectRatioMode mode) +{ + mBackgroundScaledMode = mode; +} + +/*! + Returns the range drag axis of the \a orientation provided. If multiple axes were set, returns + the first one (use \ref rangeDragAxes to retrieve a list with all set axes). + + \see setRangeDragAxes +*/ +QCPAxis *QCPAxisRect::rangeDragAxis(Qt::Orientation orientation) +{ + if (orientation == Qt::Horizontal) + return mRangeDragHorzAxis.isEmpty() ? 0 : mRangeDragHorzAxis.first().data(); + else + return mRangeDragVertAxis.isEmpty() ? 0 : mRangeDragVertAxis.first().data(); +} + +/*! + Returns the range zoom axis of the \a orientation provided. If multiple axes were set, returns + the first one (use \ref rangeZoomAxes to retrieve a list with all set axes). + + \see setRangeZoomAxes +*/ +QCPAxis *QCPAxisRect::rangeZoomAxis(Qt::Orientation orientation) +{ + if (orientation == Qt::Horizontal) + return mRangeZoomHorzAxis.isEmpty() ? 0 : mRangeZoomHorzAxis.first().data(); + else + return mRangeZoomVertAxis.isEmpty() ? 0 : mRangeZoomVertAxis.first().data(); +} + +/*! + Returns all range drag axes of the \a orientation provided. + + \see rangeZoomAxis, setRangeZoomAxes +*/ +QList QCPAxisRect::rangeDragAxes(Qt::Orientation orientation) +{ + QList result; + if (orientation == Qt::Horizontal) + { + for (int i=0; i QCPAxisRect::rangeZoomAxes(Qt::Orientation orientation) +{ + QList result; + if (orientation == Qt::Horizontal) + { + for (int i=0; iQt::Horizontal | + Qt::Vertical as \a orientations. + + In addition to setting \a orientations to a non-zero value, make sure \ref QCustomPlot::setInteractions + contains \ref QCP::iRangeDrag to enable the range dragging interaction. + + \see setRangeZoom, setRangeDragAxes, QCustomPlot::setNoAntialiasingOnDrag +*/ +void QCPAxisRect::setRangeDrag(Qt::Orientations orientations) +{ + mRangeDrag = orientations; +} + +/*! + Sets which axis orientation may be zoomed by the user with the mouse wheel. What orientation + corresponds to which specific axis can be set with \ref setRangeZoomAxes(QCPAxis *horizontal, + QCPAxis *vertical). By default, the horizontal axis is the bottom axis (xAxis) and the vertical + axis is the left axis (yAxis). + + To disable range zooming entirely, pass 0 as \a orientations or remove \ref QCP::iRangeZoom from \ref + QCustomPlot::setInteractions. To enable range zooming for both directions, pass Qt::Horizontal | + Qt::Vertical as \a orientations. + + In addition to setting \a orientations to a non-zero value, make sure \ref QCustomPlot::setInteractions + contains \ref QCP::iRangeZoom to enable the range zooming interaction. + + \see setRangeZoomFactor, setRangeZoomAxes, setRangeDrag +*/ +void QCPAxisRect::setRangeZoom(Qt::Orientations orientations) +{ + mRangeZoom = orientations; +} + +/*! \overload + + Sets the axes whose range will be dragged when \ref setRangeDrag enables mouse range dragging on + the QCustomPlot widget. Pass 0 if no axis shall be dragged in the respective orientation. + + Use the overload taking a list of axes, if multiple axes (more than one per orientation) shall + react to dragging interactions. + + \see setRangeZoomAxes +*/ +void QCPAxisRect::setRangeDragAxes(QCPAxis *horizontal, QCPAxis *vertical) +{ + QList horz, vert; + if (horizontal) + horz.append(horizontal); + if (vertical) + vert.append(vertical); + setRangeDragAxes(horz, vert); +} + +/*! \overload + + This method allows to set up multiple axes to react to horizontal and vertical dragging. The drag + orientation that the respective axis will react to is deduced from its orientation (\ref + QCPAxis::orientation). + + In the unusual case that you wish to e.g. drag a vertically oriented axis with a horizontal drag + motion, use the overload taking two separate lists for horizontal and vertical dragging. +*/ +void QCPAxisRect::setRangeDragAxes(QList axes) +{ + QList horz, vert; + foreach (QCPAxis *ax, axes) + { + if (ax->orientation() == Qt::Horizontal) + horz.append(ax); + else + vert.append(ax); + } + setRangeDragAxes(horz, vert); +} + +/*! \overload + + This method allows to set multiple axes up to react to horizontal and vertical dragging, and + define specifically which axis reacts to which drag orientation (irrespective of the axis + orientation). +*/ +void QCPAxisRect::setRangeDragAxes(QList horizontal, QList vertical) +{ + mRangeDragHorzAxis.clear(); + foreach (QCPAxis *ax, horizontal) + { + QPointer axPointer(ax); + if (!axPointer.isNull()) + mRangeDragHorzAxis.append(axPointer); + else + qDebug() << Q_FUNC_INFO << "invalid axis passed in horizontal list:" << reinterpret_cast(ax); + } + mRangeDragVertAxis.clear(); + foreach (QCPAxis *ax, vertical) + { + QPointer axPointer(ax); + if (!axPointer.isNull()) + mRangeDragVertAxis.append(axPointer); + else + qDebug() << Q_FUNC_INFO << "invalid axis passed in vertical list:" << reinterpret_cast(ax); + } +} + +/*! + Sets the axes whose range will be zoomed when \ref setRangeZoom enables mouse wheel zooming on + the QCustomPlot widget. Pass 0 if no axis shall be zoomed in the respective orientation. + + The two axes can be zoomed with different strengths, when different factors are passed to \ref + setRangeZoomFactor(double horizontalFactor, double verticalFactor). + + Use the overload taking a list of axes, if multiple axes (more than one per orientation) shall + react to zooming interactions. + + \see setRangeDragAxes +*/ +void QCPAxisRect::setRangeZoomAxes(QCPAxis *horizontal, QCPAxis *vertical) +{ + QList horz, vert; + if (horizontal) + horz.append(horizontal); + if (vertical) + vert.append(vertical); + setRangeZoomAxes(horz, vert); +} + +/*! \overload + + This method allows to set up multiple axes to react to horizontal and vertical range zooming. The + zoom orientation that the respective axis will react to is deduced from its orientation (\ref + QCPAxis::orientation). + + In the unusual case that you wish to e.g. zoom a vertically oriented axis with a horizontal zoom + interaction, use the overload taking two separate lists for horizontal and vertical zooming. +*/ +void QCPAxisRect::setRangeZoomAxes(QList axes) +{ + QList horz, vert; + foreach (QCPAxis *ax, axes) + { + if (ax->orientation() == Qt::Horizontal) + horz.append(ax); + else + vert.append(ax); + } + setRangeZoomAxes(horz, vert); +} + +/*! \overload + + This method allows to set multiple axes up to react to horizontal and vertical zooming, and + define specifically which axis reacts to which zoom orientation (irrespective of the axis + orientation). +*/ +void QCPAxisRect::setRangeZoomAxes(QList horizontal, QList vertical) +{ + mRangeZoomHorzAxis.clear(); + foreach (QCPAxis *ax, horizontal) + { + QPointer axPointer(ax); + if (!axPointer.isNull()) + mRangeZoomHorzAxis.append(axPointer); + else + qDebug() << Q_FUNC_INFO << "invalid axis passed in horizontal list:" << reinterpret_cast(ax); + } + mRangeZoomVertAxis.clear(); + foreach (QCPAxis *ax, vertical) + { + QPointer axPointer(ax); + if (!axPointer.isNull()) + mRangeZoomVertAxis.append(axPointer); + else + qDebug() << Q_FUNC_INFO << "invalid axis passed in vertical list:" << reinterpret_cast(ax); + } +} + +/*! + Sets how strong one rotation step of the mouse wheel zooms, when range zoom was activated with + \ref setRangeZoom. The two parameters \a horizontalFactor and \a verticalFactor provide a way to + let the horizontal axis zoom at different rates than the vertical axis. Which axis is horizontal + and which is vertical, can be set with \ref setRangeZoomAxes. + + When the zoom factor is greater than one, scrolling the mouse wheel backwards (towards the user) + will zoom in (make the currently visible range smaller). For zoom factors smaller than one, the + same scrolling direction will zoom out. +*/ +void QCPAxisRect::setRangeZoomFactor(double horizontalFactor, double verticalFactor) +{ + mRangeZoomFactorHorz = horizontalFactor; + mRangeZoomFactorVert = verticalFactor; +} + +/*! \overload + + Sets both the horizontal and vertical zoom \a factor. +*/ +void QCPAxisRect::setRangeZoomFactor(double factor) +{ + mRangeZoomFactorHorz = factor; + mRangeZoomFactorVert = factor; +} + +/*! \internal + + Draws the background of this axis rect. It may consist of a background fill (a QBrush) and a + pixmap. + + If a brush was given via \ref setBackground(const QBrush &brush), this function first draws an + according filling inside the axis rect with the provided \a painter. + + Then, if a pixmap was provided via \ref setBackground, this function buffers the scaled version + depending on \ref setBackgroundScaled and \ref setBackgroundScaledMode and then draws it inside + the axis rect with the provided \a painter. The scaled version is buffered in + mScaledBackgroundPixmap to prevent expensive rescaling at every redraw. It is only updated, when + the axis rect has changed in a way that requires a rescale of the background pixmap (this is + dependent on the \ref setBackgroundScaledMode), or when a differend axis background pixmap was + set. + + \see setBackground, setBackgroundScaled, setBackgroundScaledMode +*/ +void QCPAxisRect::drawBackground(QCPPainter *painter) +{ + // draw background fill: + if (mBackgroundBrush != Qt::NoBrush) + painter->fillRect(mRect, mBackgroundBrush); + + // draw background pixmap (on top of fill, if brush specified): + if (!mBackgroundPixmap.isNull()) + { + if (mBackgroundScaled) + { + // check whether mScaledBackground needs to be updated: + QSize scaledSize(mBackgroundPixmap.size()); + scaledSize.scale(mRect.size(), mBackgroundScaledMode); + if (mScaledBackgroundPixmap.size() != scaledSize) + mScaledBackgroundPixmap = mBackgroundPixmap.scaled(mRect.size(), mBackgroundScaledMode, Qt::SmoothTransformation); + painter->drawPixmap(mRect.topLeft()+QPoint(0, -1), mScaledBackgroundPixmap, QRect(0, 0, mRect.width(), mRect.height()) & mScaledBackgroundPixmap.rect()); + } else + { + painter->drawPixmap(mRect.topLeft()+QPoint(0, -1), mBackgroundPixmap, QRect(0, 0, mRect.width(), mRect.height())); + } + } +} + +/*! \internal + + This function makes sure multiple axes on the side specified with \a type don't collide, but are + distributed according to their respective space requirement (QCPAxis::calculateMargin). + + It does this by setting an appropriate offset (\ref QCPAxis::setOffset) on all axes except the + one with index zero. + + This function is called by \ref calculateAutoMargin. +*/ +void QCPAxisRect::updateAxesOffset(QCPAxis::AxisType type) +{ + const QList axesList = mAxes.value(type); + if (axesList.isEmpty()) + return; + + bool isFirstVisible = !axesList.first()->visible(); // if the first axis is visible, the second axis (which is where the loop starts) isn't the first visible axis, so initialize with false + for (int i=1; ioffset() + axesList.at(i-1)->calculateMargin(); + if (axesList.at(i)->visible()) // only add inner tick length to offset if this axis is visible and it's not the first visible one (might happen if true first axis is invisible) + { + if (!isFirstVisible) + offset += axesList.at(i)->tickLengthIn(); + isFirstVisible = false; + } + axesList.at(i)->setOffset(offset); + } +} + +/* inherits documentation from base class */ +int QCPAxisRect::calculateAutoMargin(QCP::MarginSide side) +{ + if (!mAutoMargins.testFlag(side)) + qDebug() << Q_FUNC_INFO << "Called with side that isn't specified as auto margin"; + + updateAxesOffset(QCPAxis::marginSideToAxisType(side)); + + // note: only need to look at the last (outer most) axis to determine the total margin, due to updateAxisOffset call + const QList axesList = mAxes.value(QCPAxis::marginSideToAxisType(side)); + if (axesList.size() > 0) + return axesList.last()->offset() + axesList.last()->calculateMargin(); + else + return 0; +} + +/*! \internal + + Reacts to a change in layout to potentially set the convenience axis pointers \ref + QCustomPlot::xAxis, \ref QCustomPlot::yAxis, etc. of the parent QCustomPlot to the respective + axes of this axis rect. This is only done if the respective convenience pointer is currently zero + and if there is no QCPAxisRect at position (0, 0) of the plot layout. + + This automation makes it simpler to replace the main axis rect with a newly created one, without + the need to manually reset the convenience pointers. +*/ +void QCPAxisRect::layoutChanged() +{ + if (mParentPlot && mParentPlot->axisRectCount() > 0 && mParentPlot->axisRect(0) == this) + { + if (axisCount(QCPAxis::atBottom) > 0 && !mParentPlot->xAxis) + mParentPlot->xAxis = axis(QCPAxis::atBottom); + if (axisCount(QCPAxis::atLeft) > 0 && !mParentPlot->yAxis) + mParentPlot->yAxis = axis(QCPAxis::atLeft); + if (axisCount(QCPAxis::atTop) > 0 && !mParentPlot->xAxis2) + mParentPlot->xAxis2 = axis(QCPAxis::atTop); + if (axisCount(QCPAxis::atRight) > 0 && !mParentPlot->yAxis2) + mParentPlot->yAxis2 = axis(QCPAxis::atRight); + } +} + +/*! \internal + + Event handler for when a mouse button is pressed on the axis rect. If the left mouse button is + pressed, the range dragging interaction is initialized (the actual range manipulation happens in + the \ref mouseMoveEvent). + + The mDragging flag is set to true and some anchor points are set that are needed to determine the + distance the mouse was dragged in the mouse move/release events later. + + \see mouseMoveEvent, mouseReleaseEvent +*/ +void QCPAxisRect::mousePressEvent(QMouseEvent *event, const QVariant &details) +{ + Q_UNUSED(details) + if (event->buttons() & Qt::LeftButton) + { + mDragging = true; + // initialize antialiasing backup in case we start dragging: + if (mParentPlot->noAntialiasingOnDrag()) + { + mAADragBackup = mParentPlot->antialiasedElements(); + mNotAADragBackup = mParentPlot->notAntialiasedElements(); + } + // Mouse range dragging interaction: + if (mParentPlot->interactions().testFlag(QCP::iRangeDrag)) + { + mDragStartHorzRange.clear(); + for (int i=0; irange()); + mDragStartVertRange.clear(); + for (int i=0; irange()); + } + } +} + +/*! \internal + + Event handler for when the mouse is moved on the axis rect. If range dragging was activated in a + preceding \ref mousePressEvent, the range is moved accordingly. + + \see mousePressEvent, mouseReleaseEvent +*/ +void QCPAxisRect::mouseMoveEvent(QMouseEvent *event, const QPointF &startPos) +{ + Q_UNUSED(startPos) + // Mouse range dragging interaction: + if (mDragging && mParentPlot->interactions().testFlag(QCP::iRangeDrag)) + { + + if (mRangeDrag.testFlag(Qt::Horizontal)) + { + for (int i=0; i= mDragStartHorzRange.size()) + break; + if (ax->mScaleType == QCPAxis::stLinear) + { + double diff = ax->pixelToCoord(startPos.x()) - ax->pixelToCoord(event->pos().x()); + ax->setRange(mDragStartHorzRange.at(i).lower+diff, mDragStartHorzRange.at(i).upper+diff); + } else if (ax->mScaleType == QCPAxis::stLogarithmic) + { + double diff = ax->pixelToCoord(startPos.x()) / ax->pixelToCoord(event->pos().x()); + ax->setRange(mDragStartHorzRange.at(i).lower*diff, mDragStartHorzRange.at(i).upper*diff); + } + } + } + + if (mRangeDrag.testFlag(Qt::Vertical)) + { + for (int i=0; i= mDragStartVertRange.size()) + break; + if (ax->mScaleType == QCPAxis::stLinear) + { + double diff = ax->pixelToCoord(startPos.y()) - ax->pixelToCoord(event->pos().y()); + ax->setRange(mDragStartVertRange.at(i).lower+diff, mDragStartVertRange.at(i).upper+diff); + } else if (ax->mScaleType == QCPAxis::stLogarithmic) + { + double diff = ax->pixelToCoord(startPos.y()) / ax->pixelToCoord(event->pos().y()); + ax->setRange(mDragStartVertRange.at(i).lower*diff, mDragStartVertRange.at(i).upper*diff); + } + } + } + + if (mRangeDrag != 0) // if either vertical or horizontal drag was enabled, do a replot + { + if (mParentPlot->noAntialiasingOnDrag()) + mParentPlot->setNotAntialiasedElements(QCP::aeAll); + mParentPlot->replot(QCustomPlot::rpQueuedReplot); + } + + } +} + +/* inherits documentation from base class */ +void QCPAxisRect::mouseReleaseEvent(QMouseEvent *event, const QPointF &startPos) +{ + Q_UNUSED(event) + Q_UNUSED(startPos) + mDragging = false; + if (mParentPlot->noAntialiasingOnDrag()) + { + mParentPlot->setAntialiasedElements(mAADragBackup); + mParentPlot->setNotAntialiasedElements(mNotAADragBackup); + } +} + +/*! \internal + + Event handler for mouse wheel events. If rangeZoom is Qt::Horizontal, Qt::Vertical or both, the + ranges of the axes defined as rangeZoomHorzAxis and rangeZoomVertAxis are scaled. The center of + the scaling operation is the current cursor position inside the axis rect. The scaling factor is + dependent on the mouse wheel delta (which direction the wheel was rotated) to provide a natural + zooming feel. The Strength of the zoom can be controlled via \ref setRangeZoomFactor. + + Note, that event->delta() is usually +/-120 for single rotation steps. However, if the mouse + wheel is turned rapidly, many steps may bunch up to one event, so the event->delta() may then be + multiples of 120. This is taken into account here, by calculating \a wheelSteps and using it as + exponent of the range zoom factor. This takes care of the wheel direction automatically, by + inverting the factor, when the wheel step is negative (f^-1 = 1/f). +*/ +void QCPAxisRect::wheelEvent(QWheelEvent *event) +{ + // Mouse range zooming interaction: + if (mParentPlot->interactions().testFlag(QCP::iRangeZoom)) + { + if (mRangeZoom != 0) + { + double factor; + double wheelSteps = event->delta()/120.0; // a single step delta is +/-120 usually + if (mRangeZoom.testFlag(Qt::Horizontal)) + { + factor = qPow(mRangeZoomFactorHorz, wheelSteps); + for (int i=0; iscaleRange(factor, mRangeZoomHorzAxis.at(i)->pixelToCoord(event->pos().x())); + } + } + if (mRangeZoom.testFlag(Qt::Vertical)) + { + factor = qPow(mRangeZoomFactorVert, wheelSteps); + for (int i=0; iscaleRange(factor, mRangeZoomVertAxis.at(i)->pixelToCoord(event->pos().y())); + } + } + mParentPlot->replot(); + } + } +} +/* end of 'src/layoutelements/layoutelement-axisrect.cpp' */ + + +/* including file 'src/layoutelements/layoutelement-legend.cpp', size 31153 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPAbstractLegendItem +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPAbstractLegendItem + \brief The abstract base class for all entries in a QCPLegend. + + It defines a very basic interface for entries in a QCPLegend. For representing plottables in the + legend, the subclass \ref QCPPlottableLegendItem is more suitable. + + Only derive directly from this class when you need absolute freedom (e.g. a custom legend entry + that's not even associated with a plottable). + + You must implement the following pure virtual functions: + \li \ref draw (from QCPLayerable) + + You inherit the following members you may use: + + + + + + + + +
QCPLegend *\b mParentLegendA pointer to the parent QCPLegend.
QFont \b mFontThe generic font of the item. You should use this font for all or at least the most prominent text of the item.
+*/ + +/* start of documentation of signals */ + +/*! \fn void QCPAbstractLegendItem::selectionChanged(bool selected) + + This signal is emitted when the selection state of this legend item has changed, either by user + interaction or by a direct call to \ref setSelected. +*/ + +/* end of documentation of signals */ + +/*! + Constructs a QCPAbstractLegendItem and associates it with the QCPLegend \a parent. This does not + cause the item to be added to \a parent, so \ref QCPLegend::addItem must be called separately. +*/ +QCPAbstractLegendItem::QCPAbstractLegendItem(QCPLegend *parent) : + QCPLayoutElement(parent->parentPlot()), + mParentLegend(parent), + mFont(parent->font()), + mTextColor(parent->textColor()), + mSelectedFont(parent->selectedFont()), + mSelectedTextColor(parent->selectedTextColor()), + mSelectable(true), + mSelected(false) +{ + setLayer(QLatin1String("legend")); + setMargins(QMargins(0, 0, 0, 0)); +} + +/*! + Sets the default font of this specific legend item to \a font. + + \see setTextColor, QCPLegend::setFont +*/ +void QCPAbstractLegendItem::setFont(const QFont &font) +{ + mFont = font; +} + +/*! + Sets the default text color of this specific legend item to \a color. + + \see setFont, QCPLegend::setTextColor +*/ +void QCPAbstractLegendItem::setTextColor(const QColor &color) +{ + mTextColor = color; +} + +/*! + When this legend item is selected, \a font is used to draw generic text, instead of the normal + font set with \ref setFont. + + \see setFont, QCPLegend::setSelectedFont +*/ +void QCPAbstractLegendItem::setSelectedFont(const QFont &font) +{ + mSelectedFont = font; +} + +/*! + When this legend item is selected, \a color is used to draw generic text, instead of the normal + color set with \ref setTextColor. + + \see setTextColor, QCPLegend::setSelectedTextColor +*/ +void QCPAbstractLegendItem::setSelectedTextColor(const QColor &color) +{ + mSelectedTextColor = color; +} + +/*! + Sets whether this specific legend item is selectable. + + \see setSelectedParts, QCustomPlot::setInteractions +*/ +void QCPAbstractLegendItem::setSelectable(bool selectable) +{ + if (mSelectable != selectable) + { + mSelectable = selectable; + emit selectableChanged(mSelectable); + } +} + +/*! + Sets whether this specific legend item is selected. + + It is possible to set the selection state of this item by calling this function directly, even if + setSelectable is set to false. + + \see setSelectableParts, QCustomPlot::setInteractions +*/ +void QCPAbstractLegendItem::setSelected(bool selected) +{ + if (mSelected != selected) + { + mSelected = selected; + emit selectionChanged(mSelected); + } +} + +/* inherits documentation from base class */ +double QCPAbstractLegendItem::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (!mParentPlot) return -1; + if (onlySelectable && (!mSelectable || !mParentLegend->selectableParts().testFlag(QCPLegend::spItems))) + return -1; + + if (mRect.contains(pos.toPoint())) + return mParentPlot->selectionTolerance()*0.99; + else + return -1; +} + +/* inherits documentation from base class */ +void QCPAbstractLegendItem::applyDefaultAntialiasingHint(QCPPainter *painter) const +{ + applyAntialiasingHint(painter, mAntialiased, QCP::aeLegendItems); +} + +/* inherits documentation from base class */ +QRect QCPAbstractLegendItem::clipRect() const +{ + return mOuterRect; +} + +/* inherits documentation from base class */ +void QCPAbstractLegendItem::selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) +{ + Q_UNUSED(event) + Q_UNUSED(details) + if (mSelectable && mParentLegend->selectableParts().testFlag(QCPLegend::spItems)) + { + bool selBefore = mSelected; + setSelected(additive ? !mSelected : true); + if (selectionStateChanged) + *selectionStateChanged = mSelected != selBefore; + } +} + +/* inherits documentation from base class */ +void QCPAbstractLegendItem::deselectEvent(bool *selectionStateChanged) +{ + if (mSelectable && mParentLegend->selectableParts().testFlag(QCPLegend::spItems)) + { + bool selBefore = mSelected; + setSelected(false); + if (selectionStateChanged) + *selectionStateChanged = mSelected != selBefore; + } +} + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPPlottableLegendItem +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPPlottableLegendItem + \brief A legend item representing a plottable with an icon and the plottable name. + + This is the standard legend item for plottables. It displays an icon of the plottable next to the + plottable name. The icon is drawn by the respective plottable itself (\ref + QCPAbstractPlottable::drawLegendIcon), and tries to give an intuitive symbol for the plottable. + For example, the QCPGraph draws a centered horizontal line and/or a single scatter point in the + middle. + + Legend items of this type are always associated with one plottable (retrievable via the + plottable() function and settable with the constructor). You may change the font of the plottable + name with \ref setFont. Icon padding and border pen is taken from the parent QCPLegend, see \ref + QCPLegend::setIconBorderPen and \ref QCPLegend::setIconTextPadding. + + The function \ref QCPAbstractPlottable::addToLegend/\ref QCPAbstractPlottable::removeFromLegend + creates/removes legend items of this type. + + Since QCPLegend is based on QCPLayoutGrid, a legend item itself is just a subclass of + QCPLayoutElement. While it could be added to a legend (or any other layout) via the normal layout + interface, QCPLegend has specialized functions for handling legend items conveniently, see the + documentation of \ref QCPLegend. +*/ + +/*! + Creates a new legend item associated with \a plottable. + + Once it's created, it can be added to the legend via \ref QCPLegend::addItem. + + A more convenient way of adding/removing a plottable to/from the legend is via the functions \ref + QCPAbstractPlottable::addToLegend and \ref QCPAbstractPlottable::removeFromLegend. +*/ +QCPPlottableLegendItem::QCPPlottableLegendItem(QCPLegend *parent, QCPAbstractPlottable *plottable) : + QCPAbstractLegendItem(parent), + mPlottable(plottable) +{ + setAntialiased(false); +} + +/*! \internal + + Returns the pen that shall be used to draw the icon border, taking into account the selection + state of this item. +*/ +QPen QCPPlottableLegendItem::getIconBorderPen() const +{ + return mSelected ? mParentLegend->selectedIconBorderPen() : mParentLegend->iconBorderPen(); +} + +/*! \internal + + Returns the text color that shall be used to draw text, taking into account the selection state + of this item. +*/ +QColor QCPPlottableLegendItem::getTextColor() const +{ + return mSelected ? mSelectedTextColor : mTextColor; +} + +/*! \internal + + Returns the font that shall be used to draw text, taking into account the selection state of this + item. +*/ +QFont QCPPlottableLegendItem::getFont() const +{ + return mSelected ? mSelectedFont : mFont; +} + +/*! \internal + + Draws the item with \a painter. The size and position of the drawn legend item is defined by the + parent layout (typically a \ref QCPLegend) and the \ref minimumOuterSizeHint and \ref + maximumOuterSizeHint of this legend item. +*/ +void QCPPlottableLegendItem::draw(QCPPainter *painter) +{ + if (!mPlottable) return; + painter->setFont(getFont()); + painter->setPen(QPen(getTextColor())); + QSizeF iconSize = mParentLegend->iconSize(); + QRectF textRect = painter->fontMetrics().boundingRect(0, 0, 0, iconSize.height(), Qt::TextDontClip, mPlottable->name()); + QRectF iconRect(mRect.topLeft(), iconSize); + int textHeight = qMax(textRect.height(), iconSize.height()); // if text has smaller height than icon, center text vertically in icon height, else align tops + painter->drawText(mRect.x()+iconSize.width()+mParentLegend->iconTextPadding(), mRect.y(), textRect.width(), textHeight, Qt::TextDontClip, mPlottable->name()); + // draw icon: + painter->save(); + painter->setClipRect(iconRect, Qt::IntersectClip); + mPlottable->drawLegendIcon(painter, iconRect); + painter->restore(); + // draw icon border: + if (getIconBorderPen().style() != Qt::NoPen) + { + painter->setPen(getIconBorderPen()); + painter->setBrush(Qt::NoBrush); + int halfPen = qCeil(painter->pen().widthF()*0.5)+1; + painter->setClipRect(mOuterRect.adjusted(-halfPen, -halfPen, halfPen, halfPen)); // extend default clip rect so thicker pens (especially during selection) are not clipped + painter->drawRect(iconRect); + } +} + +/*! \internal + + Calculates and returns the size of this item. This includes the icon, the text and the padding in + between. + + \seebaseclassmethod +*/ +QSize QCPPlottableLegendItem::minimumOuterSizeHint() const +{ + if (!mPlottable) return QSize(); + QSize result(0, 0); + QRect textRect; + QFontMetrics fontMetrics(getFont()); + QSize iconSize = mParentLegend->iconSize(); + textRect = fontMetrics.boundingRect(0, 0, 0, iconSize.height(), Qt::TextDontClip, mPlottable->name()); + result.setWidth(iconSize.width() + mParentLegend->iconTextPadding() + textRect.width()); + result.setHeight(qMax(textRect.height(), iconSize.height())); + result.rwidth() += mMargins.left()+mMargins.right(); + result.rheight() += mMargins.top()+mMargins.bottom(); + return result; +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPLegend +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPLegend + \brief Manages a legend inside a QCustomPlot. + + A legend is a small box somewhere in the plot which lists plottables with their name and icon. + + A legend is populated with legend items by calling \ref QCPAbstractPlottable::addToLegend on the + plottable, for which a legend item shall be created. In the case of the main legend (\ref + QCustomPlot::legend), simply adding plottables to the plot while \ref + QCustomPlot::setAutoAddPlottableToLegend is set to true (the default) creates corresponding + legend items. The legend item associated with a certain plottable can be removed with \ref + QCPAbstractPlottable::removeFromLegend. However, QCPLegend also offers an interface to add and + manipulate legend items directly: \ref item, \ref itemWithPlottable, \ref itemCount, \ref + addItem, \ref removeItem, etc. + + Since \ref QCPLegend derives from \ref QCPLayoutGrid, it can be placed in any position a \ref + QCPLayoutElement may be positioned. The legend items are themselves \ref QCPLayoutElement + "QCPLayoutElements" which are placed in the grid layout of the legend. \ref QCPLegend only adds + an interface specialized for handling child elements of type \ref QCPAbstractLegendItem, as + mentioned above. In principle, any other layout elements may also be added to a legend via the + normal \ref QCPLayoutGrid interface. See the special page about \link thelayoutsystem The Layout + System\endlink for examples on how to add other elements to the legend and move it outside the axis + rect. + + Use the methods \ref setFillOrder and \ref setWrap inherited from \ref QCPLayoutGrid to control + in which order (column first or row first) the legend is filled up when calling \ref addItem, and + at which column or row wrapping occurs. The default fill order for legends is \ref foRowsFirst. + + By default, every QCustomPlot has one legend (\ref QCustomPlot::legend) which is placed in the + inset layout of the main axis rect (\ref QCPAxisRect::insetLayout). To move the legend to another + position inside the axis rect, use the methods of the \ref QCPLayoutInset. To move the legend + outside of the axis rect, place it anywhere else with the \ref QCPLayout/\ref QCPLayoutElement + interface. +*/ + +/* start of documentation of signals */ + +/*! \fn void QCPLegend::selectionChanged(QCPLegend::SelectableParts selection); + + This signal is emitted when the selection state of this legend has changed. + + \see setSelectedParts, setSelectableParts +*/ + +/* end of documentation of signals */ + +/*! + Constructs a new QCPLegend instance with default values. + + Note that by default, QCustomPlot already contains a legend ready to be used as \ref + QCustomPlot::legend +*/ +QCPLegend::QCPLegend() +{ + setFillOrder(QCPLayoutGrid::foRowsFirst); + setWrap(0); + + setRowSpacing(3); + setColumnSpacing(8); + setMargins(QMargins(7, 5, 7, 4)); + setAntialiased(false); + setIconSize(32, 18); + + setIconTextPadding(7); + + setSelectableParts(spLegendBox | spItems); + setSelectedParts(spNone); + + setBorderPen(QPen(Qt::black, 0)); + setSelectedBorderPen(QPen(Qt::blue, 2)); + setIconBorderPen(Qt::NoPen); + setSelectedIconBorderPen(QPen(Qt::blue, 2)); + setBrush(Qt::white); + setSelectedBrush(Qt::white); + setTextColor(Qt::black); + setSelectedTextColor(Qt::blue); +} + +QCPLegend::~QCPLegend() +{ + clearItems(); + if (qobject_cast(mParentPlot)) // make sure this isn't called from QObject dtor when QCustomPlot is already destructed (happens when the legend is not in any layout and thus QObject-child of QCustomPlot) + mParentPlot->legendRemoved(this); +} + +/* no doc for getter, see setSelectedParts */ +QCPLegend::SelectableParts QCPLegend::selectedParts() const +{ + // check whether any legend elements selected, if yes, add spItems to return value + bool hasSelectedItems = false; + for (int i=0; iselected()) + { + hasSelectedItems = true; + break; + } + } + if (hasSelectedItems) + return mSelectedParts | spItems; + else + return mSelectedParts & ~spItems; +} + +/*! + Sets the pen, the border of the entire legend is drawn with. +*/ +void QCPLegend::setBorderPen(const QPen &pen) +{ + mBorderPen = pen; +} + +/*! + Sets the brush of the legend background. +*/ +void QCPLegend::setBrush(const QBrush &brush) +{ + mBrush = brush; +} + +/*! + Sets the default font of legend text. Legend items that draw text (e.g. the name of a graph) will + use this font by default. However, a different font can be specified on a per-item-basis by + accessing the specific legend item. + + This function will also set \a font on all already existing legend items. + + \see QCPAbstractLegendItem::setFont +*/ +void QCPLegend::setFont(const QFont &font) +{ + mFont = font; + for (int i=0; isetFont(mFont); + } +} + +/*! + Sets the default color of legend text. Legend items that draw text (e.g. the name of a graph) + will use this color by default. However, a different colors can be specified on a per-item-basis + by accessing the specific legend item. + + This function will also set \a color on all already existing legend items. + + \see QCPAbstractLegendItem::setTextColor +*/ +void QCPLegend::setTextColor(const QColor &color) +{ + mTextColor = color; + for (int i=0; isetTextColor(color); + } +} + +/*! + Sets the size of legend icons. Legend items that draw an icon (e.g. a visual + representation of the graph) will use this size by default. +*/ +void QCPLegend::setIconSize(const QSize &size) +{ + mIconSize = size; +} + +/*! \overload +*/ +void QCPLegend::setIconSize(int width, int height) +{ + mIconSize.setWidth(width); + mIconSize.setHeight(height); +} + +/*! + Sets the horizontal space in pixels between the legend icon and the text next to it. + Legend items that draw an icon (e.g. a visual representation of the graph) and text (e.g. the + name of the graph) will use this space by default. +*/ +void QCPLegend::setIconTextPadding(int padding) +{ + mIconTextPadding = padding; +} + +/*! + Sets the pen used to draw a border around each legend icon. Legend items that draw an + icon (e.g. a visual representation of the graph) will use this pen by default. + + If no border is wanted, set this to \a Qt::NoPen. +*/ +void QCPLegend::setIconBorderPen(const QPen &pen) +{ + mIconBorderPen = pen; +} + +/*! + Sets whether the user can (de-)select the parts in \a selectable by clicking on the QCustomPlot surface. + (When \ref QCustomPlot::setInteractions contains \ref QCP::iSelectLegend.) + + However, even when \a selectable is set to a value not allowing the selection of a specific part, + it is still possible to set the selection of this part manually, by calling \ref setSelectedParts + directly. + + \see SelectablePart, setSelectedParts +*/ +void QCPLegend::setSelectableParts(const SelectableParts &selectable) +{ + if (mSelectableParts != selectable) + { + mSelectableParts = selectable; + emit selectableChanged(mSelectableParts); + } +} + +/*! + Sets the selected state of the respective legend parts described by \ref SelectablePart. When a part + is selected, it uses a different pen/font and brush. If some legend items are selected and \a selected + doesn't contain \ref spItems, those items become deselected. + + The entire selection mechanism is handled automatically when \ref QCustomPlot::setInteractions + contains iSelectLegend. You only need to call this function when you wish to change the selection + state manually. + + This function can change the selection state of a part even when \ref setSelectableParts was set to a + value that actually excludes the part. + + emits the \ref selectionChanged signal when \a selected is different from the previous selection state. + + Note that it doesn't make sense to set the selected state \ref spItems here when it wasn't set + before, because there's no way to specify which exact items to newly select. Do this by calling + \ref QCPAbstractLegendItem::setSelected directly on the legend item you wish to select. + + \see SelectablePart, setSelectableParts, selectTest, setSelectedBorderPen, setSelectedIconBorderPen, setSelectedBrush, + setSelectedFont +*/ +void QCPLegend::setSelectedParts(const SelectableParts &selected) +{ + SelectableParts newSelected = selected; + mSelectedParts = this->selectedParts(); // update mSelectedParts in case item selection changed + + if (mSelectedParts != newSelected) + { + if (!mSelectedParts.testFlag(spItems) && newSelected.testFlag(spItems)) // attempt to set spItems flag (can't do that) + { + qDebug() << Q_FUNC_INFO << "spItems flag can not be set, it can only be unset with this function"; + newSelected &= ~spItems; + } + if (mSelectedParts.testFlag(spItems) && !newSelected.testFlag(spItems)) // spItems flag was unset, so clear item selection + { + for (int i=0; isetSelected(false); + } + } + mSelectedParts = newSelected; + emit selectionChanged(mSelectedParts); + } +} + +/*! + When the legend box is selected, this pen is used to draw the border instead of the normal pen + set via \ref setBorderPen. + + \see setSelectedParts, setSelectableParts, setSelectedBrush +*/ +void QCPLegend::setSelectedBorderPen(const QPen &pen) +{ + mSelectedBorderPen = pen; +} + +/*! + Sets the pen legend items will use to draw their icon borders, when they are selected. + + \see setSelectedParts, setSelectableParts, setSelectedFont +*/ +void QCPLegend::setSelectedIconBorderPen(const QPen &pen) +{ + mSelectedIconBorderPen = pen; +} + +/*! + When the legend box is selected, this brush is used to draw the legend background instead of the normal brush + set via \ref setBrush. + + \see setSelectedParts, setSelectableParts, setSelectedBorderPen +*/ +void QCPLegend::setSelectedBrush(const QBrush &brush) +{ + mSelectedBrush = brush; +} + +/*! + Sets the default font that is used by legend items when they are selected. + + This function will also set \a font on all already existing legend items. + + \see setFont, QCPAbstractLegendItem::setSelectedFont +*/ +void QCPLegend::setSelectedFont(const QFont &font) +{ + mSelectedFont = font; + for (int i=0; isetSelectedFont(font); + } +} + +/*! + Sets the default text color that is used by legend items when they are selected. + + This function will also set \a color on all already existing legend items. + + \see setTextColor, QCPAbstractLegendItem::setSelectedTextColor +*/ +void QCPLegend::setSelectedTextColor(const QColor &color) +{ + mSelectedTextColor = color; + for (int i=0; isetSelectedTextColor(color); + } +} + +/*! + Returns the item with index \a i. + + Note that the linear index depends on the current fill order (\ref setFillOrder). + + \see itemCount, addItem, itemWithPlottable +*/ +QCPAbstractLegendItem *QCPLegend::item(int index) const +{ + return qobject_cast(elementAt(index)); +} + +/*! + Returns the QCPPlottableLegendItem which is associated with \a plottable (e.g. a \ref QCPGraph*). + If such an item isn't in the legend, returns 0. + + \see hasItemWithPlottable +*/ +QCPPlottableLegendItem *QCPLegend::itemWithPlottable(const QCPAbstractPlottable *plottable) const +{ + for (int i=0; i(item(i))) + { + if (pli->plottable() == plottable) + return pli; + } + } + return 0; +} + +/*! + Returns the number of items currently in the legend. + + Note that if empty cells are in the legend (e.g. by calling methods of the \ref QCPLayoutGrid + base class which allows creating empty cells), they are included in the returned count. + + \see item +*/ +int QCPLegend::itemCount() const +{ + return elementCount(); +} + +/*! + Returns whether the legend contains \a item. + + \see hasItemWithPlottable +*/ +bool QCPLegend::hasItem(QCPAbstractLegendItem *item) const +{ + for (int i=0; iitem(i)) + return true; + } + return false; +} + +/*! + Returns whether the legend contains a QCPPlottableLegendItem which is associated with \a plottable (e.g. a \ref QCPGraph*). + If such an item isn't in the legend, returns false. + + \see itemWithPlottable +*/ +bool QCPLegend::hasItemWithPlottable(const QCPAbstractPlottable *plottable) const +{ + return itemWithPlottable(plottable); +} + +/*! + Adds \a item to the legend, if it's not present already. The element is arranged according to the + current fill order (\ref setFillOrder) and wrapping (\ref setWrap). + + Returns true on sucess, i.e. if the item wasn't in the list already and has been successfuly added. + + The legend takes ownership of the item. + + \see removeItem, item, hasItem +*/ +bool QCPLegend::addItem(QCPAbstractLegendItem *item) +{ + return addElement(item); +} + +/*! \overload + + Removes the item with the specified \a index from the legend and deletes it. + + After successful removal, the legend is reordered according to the current fill order (\ref + setFillOrder) and wrapping (\ref setWrap), so no empty cell remains where the removed \a item + was. If you don't want this, rather use the raw element interface of \ref QCPLayoutGrid. + + Returns true, if successful. Unlike \ref QCPLayoutGrid::removeAt, this method only removes + elements derived from \ref QCPAbstractLegendItem. + + \see itemCount, clearItems +*/ +bool QCPLegend::removeItem(int index) +{ + if (QCPAbstractLegendItem *ali = item(index)) + { + bool success = remove(ali); + if (success) + setFillOrder(fillOrder(), true); // gets rid of empty cell by reordering + return success; + } else + return false; +} + +/*! \overload + + Removes \a item from the legend and deletes it. + + After successful removal, the legend is reordered according to the current fill order (\ref + setFillOrder) and wrapping (\ref setWrap), so no empty cell remains where the removed \a item + was. If you don't want this, rather use the raw element interface of \ref QCPLayoutGrid. + + Returns true, if successful. + + \see clearItems +*/ +bool QCPLegend::removeItem(QCPAbstractLegendItem *item) +{ + bool success = remove(item); + if (success) + setFillOrder(fillOrder(), true); // gets rid of empty cell by reordering + return success; +} + +/*! + Removes all items from the legend. +*/ +void QCPLegend::clearItems() +{ + for (int i=itemCount()-1; i>=0; --i) + removeItem(i); +} + +/*! + Returns the legend items that are currently selected. If no items are selected, + the list is empty. + + \see QCPAbstractLegendItem::setSelected, setSelectable +*/ +QList QCPLegend::selectedItems() const +{ + QList result; + for (int i=0; iselected()) + result.append(ali); + } + } + return result; +} + +/*! \internal + + A convenience function to easily set the QPainter::Antialiased hint on the provided \a painter + before drawing main legend elements. + + This is the antialiasing state the painter passed to the \ref draw method is in by default. + + This function takes into account the local setting of the antialiasing flag as well as the + overrides set with \ref QCustomPlot::setAntialiasedElements and \ref + QCustomPlot::setNotAntialiasedElements. + + \seebaseclassmethod + + \see setAntialiased +*/ +void QCPLegend::applyDefaultAntialiasingHint(QCPPainter *painter) const +{ + applyAntialiasingHint(painter, mAntialiased, QCP::aeLegend); +} + +/*! \internal + + Returns the pen used to paint the border of the legend, taking into account the selection state + of the legend box. +*/ +QPen QCPLegend::getBorderPen() const +{ + return mSelectedParts.testFlag(spLegendBox) ? mSelectedBorderPen : mBorderPen; +} + +/*! \internal + + Returns the brush used to paint the background of the legend, taking into account the selection + state of the legend box. +*/ +QBrush QCPLegend::getBrush() const +{ + return mSelectedParts.testFlag(spLegendBox) ? mSelectedBrush : mBrush; +} + +/*! \internal + + Draws the legend box with the provided \a painter. The individual legend items are layerables + themselves, thus are drawn independently. +*/ +void QCPLegend::draw(QCPPainter *painter) +{ + // draw background rect: + painter->setBrush(getBrush()); + painter->setPen(getBorderPen()); + painter->drawRect(mOuterRect); +} + +/* inherits documentation from base class */ +double QCPLegend::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + if (!mParentPlot) return -1; + if (onlySelectable && !mSelectableParts.testFlag(spLegendBox)) + return -1; + + if (mOuterRect.contains(pos.toPoint())) + { + if (details) details->setValue(spLegendBox); + return mParentPlot->selectionTolerance()*0.99; + } + return -1; +} + +/* inherits documentation from base class */ +void QCPLegend::selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) +{ + Q_UNUSED(event) + mSelectedParts = selectedParts(); // in case item selection has changed + if (details.value() == spLegendBox && mSelectableParts.testFlag(spLegendBox)) + { + SelectableParts selBefore = mSelectedParts; + setSelectedParts(additive ? mSelectedParts^spLegendBox : mSelectedParts|spLegendBox); // no need to unset spItems in !additive case, because they will be deselected by QCustomPlot (they're normal QCPLayerables with own deselectEvent) + if (selectionStateChanged) + *selectionStateChanged = mSelectedParts != selBefore; + } +} + +/* inherits documentation from base class */ +void QCPLegend::deselectEvent(bool *selectionStateChanged) +{ + mSelectedParts = selectedParts(); // in case item selection has changed + if (mSelectableParts.testFlag(spLegendBox)) + { + SelectableParts selBefore = mSelectedParts; + setSelectedParts(selectedParts() & ~spLegendBox); + if (selectionStateChanged) + *selectionStateChanged = mSelectedParts != selBefore; + } +} + +/* inherits documentation from base class */ +QCP::Interaction QCPLegend::selectionCategory() const +{ + return QCP::iSelectLegend; +} + +/* inherits documentation from base class */ +QCP::Interaction QCPAbstractLegendItem::selectionCategory() const +{ + return QCP::iSelectLegend; +} + +/* inherits documentation from base class */ +void QCPLegend::parentPlotInitialized(QCustomPlot *parentPlot) +{ + if (parentPlot && !parentPlot->legend) + parentPlot->legend = this; +} +/* end of 'src/layoutelements/layoutelement-legend.cpp' */ + + +/* including file 'src/layoutelements/layoutelement-textelement.cpp', size 12761 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPTextElement +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPTextElement + \brief A layout element displaying a text + + The text may be specified with \ref setText, the formatting can be controlled with \ref setFont, + \ref setTextColor, and \ref setTextFlags. + + A text element can be added as follows: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcptextelement-creation +*/ + +/* start documentation of signals */ + +/*! \fn void QCPTextElement::selectionChanged(bool selected) + + This signal is emitted when the selection state has changed to \a selected, either by user + interaction or by a direct call to \ref setSelected. + + \see setSelected, setSelectable +*/ + +/*! \fn void QCPTextElement::clicked(QMouseEvent *event) + + This signal is emitted when the text element is clicked. + + \see doubleClicked, selectTest +*/ + +/*! \fn void QCPTextElement::doubleClicked(QMouseEvent *event) + + This signal is emitted when the text element is double clicked. + + \see clicked, selectTest +*/ + +/* end documentation of signals */ + +/*! \overload + + Creates a new QCPTextElement instance and sets default values. The initial text is empty (\ref + setText). +*/ +QCPTextElement::QCPTextElement(QCustomPlot *parentPlot) : + QCPLayoutElement(parentPlot), + mText(), + mTextFlags(Qt::AlignCenter|Qt::TextWordWrap), + mFont(QFont(QLatin1String("sans serif"), 12)), // will be taken from parentPlot if available, see below + mTextColor(Qt::black), + mSelectedFont(QFont(QLatin1String("sans serif"), 12)), // will be taken from parentPlot if available, see below + mSelectedTextColor(Qt::blue), + mSelectable(false), + mSelected(false) +{ + if (parentPlot) + { + mFont = parentPlot->font(); + mSelectedFont = parentPlot->font(); + } + setMargins(QMargins(2, 2, 2, 2)); +} + +/*! \overload + + Creates a new QCPTextElement instance and sets default values. + + The initial text is set to \a text. +*/ +QCPTextElement::QCPTextElement(QCustomPlot *parentPlot, const QString &text) : + QCPLayoutElement(parentPlot), + mText(text), + mTextFlags(Qt::AlignCenter|Qt::TextWordWrap), + mFont(QFont(QLatin1String("sans serif"), 12)), // will be taken from parentPlot if available, see below + mTextColor(Qt::black), + mSelectedFont(QFont(QLatin1String("sans serif"), 12)), // will be taken from parentPlot if available, see below + mSelectedTextColor(Qt::blue), + mSelectable(false), + mSelected(false) +{ + if (parentPlot) + { + mFont = parentPlot->font(); + mSelectedFont = parentPlot->font(); + } + setMargins(QMargins(2, 2, 2, 2)); +} + +/*! \overload + + Creates a new QCPTextElement instance and sets default values. + + The initial text is set to \a text with \a pointSize. +*/ +QCPTextElement::QCPTextElement(QCustomPlot *parentPlot, const QString &text, double pointSize) : + QCPLayoutElement(parentPlot), + mText(text), + mTextFlags(Qt::AlignCenter|Qt::TextWordWrap), + mFont(QFont(QLatin1String("sans serif"), pointSize)), // will be taken from parentPlot if available, see below + mTextColor(Qt::black), + mSelectedFont(QFont(QLatin1String("sans serif"), pointSize)), // will be taken from parentPlot if available, see below + mSelectedTextColor(Qt::blue), + mSelectable(false), + mSelected(false) +{ + if (parentPlot) + { + mFont = parentPlot->font(); + mFont.setPointSizeF(pointSize); + mSelectedFont = parentPlot->font(); + mSelectedFont.setPointSizeF(pointSize); + } + setMargins(QMargins(2, 2, 2, 2)); +} + +/*! \overload + + Creates a new QCPTextElement instance and sets default values. + + The initial text is set to \a text with \a pointSize and the specified \a fontFamily. +*/ +QCPTextElement::QCPTextElement(QCustomPlot *parentPlot, const QString &text, const QString &fontFamily, double pointSize) : + QCPLayoutElement(parentPlot), + mText(text), + mTextFlags(Qt::AlignCenter|Qt::TextWordWrap), + mFont(QFont(fontFamily, pointSize)), + mTextColor(Qt::black), + mSelectedFont(QFont(fontFamily, pointSize)), + mSelectedTextColor(Qt::blue), + mSelectable(false), + mSelected(false) +{ + setMargins(QMargins(2, 2, 2, 2)); +} + +/*! \overload + + Creates a new QCPTextElement instance and sets default values. + + The initial text is set to \a text with the specified \a font. +*/ +QCPTextElement::QCPTextElement(QCustomPlot *parentPlot, const QString &text, const QFont &font) : + QCPLayoutElement(parentPlot), + mText(text), + mTextFlags(Qt::AlignCenter|Qt::TextWordWrap), + mFont(font), + mTextColor(Qt::black), + mSelectedFont(font), + mSelectedTextColor(Qt::blue), + mSelectable(false), + mSelected(false) +{ + setMargins(QMargins(2, 2, 2, 2)); +} + +/*! + Sets the text that will be displayed to \a text. Multiple lines can be created by insertion of "\n". + + \see setFont, setTextColor, setTextFlags +*/ +void QCPTextElement::setText(const QString &text) +{ + mText = text; +} + +/*! + Sets options for text alignment and wrapping behaviour. \a flags is a bitwise OR-combination of + \c Qt::AlignmentFlag and \c Qt::TextFlag enums. + + Possible enums are: + - Qt::AlignLeft + - Qt::AlignRight + - Qt::AlignHCenter + - Qt::AlignJustify + - Qt::AlignTop + - Qt::AlignBottom + - Qt::AlignVCenter + - Qt::AlignCenter + - Qt::TextDontClip + - Qt::TextSingleLine + - Qt::TextExpandTabs + - Qt::TextShowMnemonic + - Qt::TextWordWrap + - Qt::TextIncludeTrailingSpaces +*/ +void QCPTextElement::setTextFlags(int flags) +{ + mTextFlags = flags; +} + +/*! + Sets the \a font of the text. + + \see setTextColor, setSelectedFont +*/ +void QCPTextElement::setFont(const QFont &font) +{ + mFont = font; +} + +/*! + Sets the \a color of the text. + + \see setFont, setSelectedTextColor +*/ +void QCPTextElement::setTextColor(const QColor &color) +{ + mTextColor = color; +} + +/*! + Sets the \a font of the text that will be used if the text element is selected (\ref setSelected). + + \see setFont +*/ +void QCPTextElement::setSelectedFont(const QFont &font) +{ + mSelectedFont = font; +} + +/*! + Sets the \a color of the text that will be used if the text element is selected (\ref setSelected). + + \see setTextColor +*/ +void QCPTextElement::setSelectedTextColor(const QColor &color) +{ + mSelectedTextColor = color; +} + +/*! + Sets whether the user may select this text element. + + Note that even when \a selectable is set to false, the selection state may be changed + programmatically via \ref setSelected. +*/ +void QCPTextElement::setSelectable(bool selectable) +{ + if (mSelectable != selectable) + { + mSelectable = selectable; + emit selectableChanged(mSelectable); + } +} + +/*! + Sets the selection state of this text element to \a selected. If the selection has changed, \ref + selectionChanged is emitted. + + Note that this function can change the selection state independently of the current \ref + setSelectable state. +*/ +void QCPTextElement::setSelected(bool selected) +{ + if (mSelected != selected) + { + mSelected = selected; + emit selectionChanged(mSelected); + } +} + +/* inherits documentation from base class */ +void QCPTextElement::applyDefaultAntialiasingHint(QCPPainter *painter) const +{ + applyAntialiasingHint(painter, mAntialiased, QCP::aeOther); +} + +/* inherits documentation from base class */ +void QCPTextElement::draw(QCPPainter *painter) +{ + painter->setFont(mainFont()); + painter->setPen(QPen(mainTextColor())); + painter->drawText(mRect, Qt::AlignCenter, mText, &mTextBoundingRect); +} + +/* inherits documentation from base class */ +QSize QCPTextElement::minimumOuterSizeHint() const +{ + QFontMetrics metrics(mFont); + QSize result(metrics.boundingRect(0, 0, 0, 0, Qt::AlignCenter, mText).size()); + result.rwidth() += mMargins.left()+mMargins.right(); + result.rheight() += mMargins.top()+mMargins.bottom(); + return result; +} + +/* inherits documentation from base class */ +QSize QCPTextElement::maximumOuterSizeHint() const +{ + QFontMetrics metrics(mFont); + QSize result(metrics.boundingRect(0, 0, 0, 0, Qt::AlignCenter, mText).size()); + result.setWidth(QWIDGETSIZE_MAX); + result.rheight() += mMargins.top()+mMargins.bottom(); + return result; +} + +/* inherits documentation from base class */ +void QCPTextElement::selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) +{ + Q_UNUSED(event) + Q_UNUSED(details) + if (mSelectable) + { + bool selBefore = mSelected; + setSelected(additive ? !mSelected : true); + if (selectionStateChanged) + *selectionStateChanged = mSelected != selBefore; + } +} + +/* inherits documentation from base class */ +void QCPTextElement::deselectEvent(bool *selectionStateChanged) +{ + if (mSelectable) + { + bool selBefore = mSelected; + setSelected(false); + if (selectionStateChanged) + *selectionStateChanged = mSelected != selBefore; + } +} + +/*! + Returns 0.99*selectionTolerance (see \ref QCustomPlot::setSelectionTolerance) when \a pos is + within the bounding box of the text element's text. Note that this bounding box is updated in the + draw call. + + If \a pos is outside the text's bounding box or if \a onlySelectable is true and this text + element is not selectable (\ref setSelectable), returns -1. + + \seebaseclassmethod +*/ +double QCPTextElement::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (onlySelectable && !mSelectable) + return -1; + + if (mTextBoundingRect.contains(pos.toPoint())) + return mParentPlot->selectionTolerance()*0.99; + else + return -1; +} + +/*! + Accepts the mouse event in order to emit the according click signal in the \ref + mouseReleaseEvent. + + \seebaseclassmethod +*/ +void QCPTextElement::mousePressEvent(QMouseEvent *event, const QVariant &details) +{ + Q_UNUSED(details) + event->accept(); +} + +/*! + Emits the \ref clicked signal if the cursor hasn't moved by more than a few pixels since the \ref + mousePressEvent. + + \seebaseclassmethod +*/ +void QCPTextElement::mouseReleaseEvent(QMouseEvent *event, const QPointF &startPos) +{ + if ((QPointF(event->pos())-startPos).manhattanLength() <= 3) + emit clicked(event); +} + +/*! + Emits the \ref doubleClicked signal. + + \seebaseclassmethod +*/ +void QCPTextElement::mouseDoubleClickEvent(QMouseEvent *event, const QVariant &details) +{ + Q_UNUSED(details) + emit doubleClicked(event); +} + +/*! \internal + + Returns the main font to be used. This is mSelectedFont if \ref setSelected is set to + true, else mFont is returned. +*/ +QFont QCPTextElement::mainFont() const +{ + return mSelected ? mSelectedFont : mFont; +} + +/*! \internal + + Returns the main color to be used. This is mSelectedTextColor if \ref setSelected is set to + true, else mTextColor is returned. +*/ +QColor QCPTextElement::mainTextColor() const +{ + return mSelected ? mSelectedTextColor : mTextColor; +} +/* end of 'src/layoutelements/layoutelement-textelement.cpp' */ + + +/* including file 'src/layoutelements/layoutelement-colorscale.cpp', size 26246 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPColorScale +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPColorScale + \brief A color scale for use with color coding data such as QCPColorMap + + This layout element can be placed on the plot to correlate a color gradient with data values. It + is usually used in combination with one or multiple \ref QCPColorMap "QCPColorMaps". + + \image html QCPColorScale.png + + The color scale can be either horizontal or vertical, as shown in the image above. The + orientation and the side where the numbers appear is controlled with \ref setType. + + Use \ref QCPColorMap::setColorScale to connect a color map with a color scale. Once they are + connected, they share their gradient, data range and data scale type (\ref setGradient, \ref + setDataRange, \ref setDataScaleType). Multiple color maps may be associated with a single color + scale, to make them all synchronize these properties. + + To have finer control over the number display and axis behaviour, you can directly access the + \ref axis. See the documentation of QCPAxis for details about configuring axes. For example, if + you want to change the number of automatically generated ticks, call + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpcolorscale-tickcount + + Placing a color scale next to the main axis rect works like with any other layout element: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpcolorscale-creation + In this case we have placed it to the right of the default axis rect, so it wasn't necessary to + call \ref setType, since \ref QCPAxis::atRight is already the default. The text next to the color + scale can be set with \ref setLabel. + + For optimum appearance (like in the image above), it may be desirable to line up the axis rect and + the borders of the color scale. Use a \ref QCPMarginGroup to achieve this: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpcolorscale-margingroup + + Color scales are initialized with a non-zero minimum top and bottom margin (\ref + setMinimumMargins), because vertical color scales are most common and the minimum top/bottom + margin makes sure it keeps some distance to the top/bottom widget border. So if you change to a + horizontal color scale by setting \ref setType to \ref QCPAxis::atBottom or \ref QCPAxis::atTop, you + might want to also change the minimum margins accordingly, e.g. setMinimumMargins(QMargins(6, 0, 6, 0)). +*/ + +/* start documentation of inline functions */ + +/*! \fn QCPAxis *QCPColorScale::axis() const + + Returns the internal \ref QCPAxis instance of this color scale. You can access it to alter the + appearance and behaviour of the axis. \ref QCPColorScale duplicates some properties in its + interface for convenience. Those are \ref setDataRange (\ref QCPAxis::setRange), \ref + setDataScaleType (\ref QCPAxis::setScaleType), and the method \ref setLabel (\ref + QCPAxis::setLabel). As they each are connected, it does not matter whether you use the method on + the QCPColorScale or on its QCPAxis. + + If the type of the color scale is changed with \ref setType, the axis returned by this method + will change, too, to either the left, right, bottom or top axis, depending on which type was set. +*/ + +/* end documentation of signals */ +/* start documentation of signals */ + +/*! \fn void QCPColorScale::dataRangeChanged(const QCPRange &newRange); + + This signal is emitted when the data range changes. + + \see setDataRange +*/ + +/*! \fn void QCPColorScale::dataScaleTypeChanged(QCPAxis::ScaleType scaleType); + + This signal is emitted when the data scale type changes. + + \see setDataScaleType +*/ + +/*! \fn void QCPColorScale::gradientChanged(const QCPColorGradient &newGradient); + + This signal is emitted when the gradient changes. + + \see setGradient +*/ + +/* end documentation of signals */ + +/*! + Constructs a new QCPColorScale. +*/ +QCPColorScale::QCPColorScale(QCustomPlot *parentPlot) : + QCPLayoutElement(parentPlot), + mType(QCPAxis::atTop), // set to atTop such that setType(QCPAxis::atRight) below doesn't skip work because it thinks it's already atRight + mDataScaleType(QCPAxis::stLinear), + mBarWidth(20), + mAxisRect(new QCPColorScaleAxisRectPrivate(this)) +{ + setMinimumMargins(QMargins(0, 6, 0, 6)); // for default right color scale types, keep some room at bottom and top (important if no margin group is used) + setType(QCPAxis::atRight); + setDataRange(QCPRange(0, 6)); +} + +QCPColorScale::~QCPColorScale() +{ + delete mAxisRect; +} + +/* undocumented getter */ +QString QCPColorScale::label() const +{ + if (!mColorAxis) + { + qDebug() << Q_FUNC_INFO << "internal color axis undefined"; + return QString(); + } + + return mColorAxis.data()->label(); +} + +/* undocumented getter */ +bool QCPColorScale::rangeDrag() const +{ + if (!mAxisRect) + { + qDebug() << Q_FUNC_INFO << "internal axis rect was deleted"; + return false; + } + + return mAxisRect.data()->rangeDrag().testFlag(QCPAxis::orientation(mType)) && + mAxisRect.data()->rangeDragAxis(QCPAxis::orientation(mType)) && + mAxisRect.data()->rangeDragAxis(QCPAxis::orientation(mType))->orientation() == QCPAxis::orientation(mType); +} + +/* undocumented getter */ +bool QCPColorScale::rangeZoom() const +{ + if (!mAxisRect) + { + qDebug() << Q_FUNC_INFO << "internal axis rect was deleted"; + return false; + } + + return mAxisRect.data()->rangeZoom().testFlag(QCPAxis::orientation(mType)) && + mAxisRect.data()->rangeZoomAxis(QCPAxis::orientation(mType)) && + mAxisRect.data()->rangeZoomAxis(QCPAxis::orientation(mType))->orientation() == QCPAxis::orientation(mType); +} + +/*! + Sets at which side of the color scale the axis is placed, and thus also its orientation. + + Note that after setting \a type to a different value, the axis returned by \ref axis() will + be a different one. The new axis will adopt the following properties from the previous axis: The + range, scale type, label and ticker (the latter will be shared and not copied). +*/ +void QCPColorScale::setType(QCPAxis::AxisType type) +{ + if (!mAxisRect) + { + qDebug() << Q_FUNC_INFO << "internal axis rect was deleted"; + return; + } + if (mType != type) + { + mType = type; + QCPRange rangeTransfer(0, 6); + QString labelTransfer; + QSharedPointer tickerTransfer; + // transfer/revert some settings on old axis if it exists: + bool doTransfer = (bool)mColorAxis; + if (doTransfer) + { + rangeTransfer = mColorAxis.data()->range(); + labelTransfer = mColorAxis.data()->label(); + tickerTransfer = mColorAxis.data()->ticker(); + mColorAxis.data()->setLabel(QString()); + disconnect(mColorAxis.data(), SIGNAL(rangeChanged(QCPRange)), this, SLOT(setDataRange(QCPRange))); + disconnect(mColorAxis.data(), SIGNAL(scaleTypeChanged(QCPAxis::ScaleType)), this, SLOT(setDataScaleType(QCPAxis::ScaleType))); + } + QList allAxisTypes = QList() << QCPAxis::atLeft << QCPAxis::atRight << QCPAxis::atBottom << QCPAxis::atTop; + foreach (QCPAxis::AxisType atype, allAxisTypes) + { + mAxisRect.data()->axis(atype)->setTicks(atype == mType); + mAxisRect.data()->axis(atype)->setTickLabels(atype== mType); + } + // set new mColorAxis pointer: + mColorAxis = mAxisRect.data()->axis(mType); + // transfer settings to new axis: + if (doTransfer) + { + mColorAxis.data()->setRange(rangeTransfer); // range transfer necessary if axis changes from vertical to horizontal or vice versa (axes with same orientation are synchronized via signals) + mColorAxis.data()->setLabel(labelTransfer); + mColorAxis.data()->setTicker(tickerTransfer); + } + connect(mColorAxis.data(), SIGNAL(rangeChanged(QCPRange)), this, SLOT(setDataRange(QCPRange))); + connect(mColorAxis.data(), SIGNAL(scaleTypeChanged(QCPAxis::ScaleType)), this, SLOT(setDataScaleType(QCPAxis::ScaleType))); + mAxisRect.data()->setRangeDragAxes(QList() << mColorAxis.data()); + } +} + +/*! + Sets the range spanned by the color gradient and that is shown by the axis in the color scale. + + It is equivalent to calling QCPColorMap::setDataRange on any of the connected color maps. It is + also equivalent to directly accessing the \ref axis and setting its range with \ref + QCPAxis::setRange. + + \see setDataScaleType, setGradient, rescaleDataRange +*/ +void QCPColorScale::setDataRange(const QCPRange &dataRange) +{ + if (mDataRange.lower != dataRange.lower || mDataRange.upper != dataRange.upper) + { + mDataRange = dataRange; + if (mColorAxis) + mColorAxis.data()->setRange(mDataRange); + emit dataRangeChanged(mDataRange); + } +} + +/*! + Sets the scale type of the color scale, i.e. whether values are associated with colors linearly + or logarithmically. + + It is equivalent to calling QCPColorMap::setDataScaleType on any of the connected color maps. It is + also equivalent to directly accessing the \ref axis and setting its scale type with \ref + QCPAxis::setScaleType. + + Note that this method controls the coordinate transformation. For logarithmic scales, you will + likely also want to use a logarithmic tick spacing and labeling, which can be achieved by setting + the color scale's \ref axis ticker to an instance of \ref QCPAxisTickerLog : + + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpaxisticker-log-colorscale + + See the documentation of \ref QCPAxisTickerLog about the details of logarithmic axis tick + creation. + + \see setDataRange, setGradient +*/ +void QCPColorScale::setDataScaleType(QCPAxis::ScaleType scaleType) +{ + if (mDataScaleType != scaleType) + { + mDataScaleType = scaleType; + if (mColorAxis) + mColorAxis.data()->setScaleType(mDataScaleType); + if (mDataScaleType == QCPAxis::stLogarithmic) + setDataRange(mDataRange.sanitizedForLogScale()); + emit dataScaleTypeChanged(mDataScaleType); + } +} + +/*! + Sets the color gradient that will be used to represent data values. + + It is equivalent to calling QCPColorMap::setGradient on any of the connected color maps. + + \see setDataRange, setDataScaleType +*/ +void QCPColorScale::setGradient(const QCPColorGradient &gradient) +{ + if (mGradient != gradient) + { + mGradient = gradient; + if (mAxisRect) + mAxisRect.data()->mGradientImageInvalidated = true; + emit gradientChanged(mGradient); + } +} + +/*! + Sets the axis label of the color scale. This is equivalent to calling \ref QCPAxis::setLabel on + the internal \ref axis. +*/ +void QCPColorScale::setLabel(const QString &str) +{ + if (!mColorAxis) + { + qDebug() << Q_FUNC_INFO << "internal color axis undefined"; + return; + } + + mColorAxis.data()->setLabel(str); +} + +/*! + Sets the width (or height, for horizontal color scales) the bar where the gradient is displayed + will have. +*/ +void QCPColorScale::setBarWidth(int width) +{ + mBarWidth = width; +} + +/*! + Sets whether the user can drag the data range (\ref setDataRange). + + Note that \ref QCP::iRangeDrag must be in the QCustomPlot's interactions (\ref + QCustomPlot::setInteractions) to allow range dragging. +*/ +void QCPColorScale::setRangeDrag(bool enabled) +{ + if (!mAxisRect) + { + qDebug() << Q_FUNC_INFO << "internal axis rect was deleted"; + return; + } + + if (enabled) + mAxisRect.data()->setRangeDrag(QCPAxis::orientation(mType)); + else + mAxisRect.data()->setRangeDrag(0); +} + +/*! + Sets whether the user can zoom the data range (\ref setDataRange) by scrolling the mouse wheel. + + Note that \ref QCP::iRangeZoom must be in the QCustomPlot's interactions (\ref + QCustomPlot::setInteractions) to allow range dragging. +*/ +void QCPColorScale::setRangeZoom(bool enabled) +{ + if (!mAxisRect) + { + qDebug() << Q_FUNC_INFO << "internal axis rect was deleted"; + return; + } + + if (enabled) + mAxisRect.data()->setRangeZoom(QCPAxis::orientation(mType)); + else + mAxisRect.data()->setRangeZoom(0); +} + +/*! + Returns a list of all the color maps associated with this color scale. +*/ +QList QCPColorScale::colorMaps() const +{ + QList result; + for (int i=0; iplottableCount(); ++i) + { + if (QCPColorMap *cm = qobject_cast(mParentPlot->plottable(i))) + if (cm->colorScale() == this) + result.append(cm); + } + return result; +} + +/*! + Changes the data range such that all color maps associated with this color scale are fully mapped + to the gradient in the data dimension. + + \see setDataRange +*/ +void QCPColorScale::rescaleDataRange(bool onlyVisibleMaps) +{ + QList maps = colorMaps(); + QCPRange newRange; + bool haveRange = false; + QCP::SignDomain sign = QCP::sdBoth; + if (mDataScaleType == QCPAxis::stLogarithmic) + sign = (mDataRange.upper < 0 ? QCP::sdNegative : QCP::sdPositive); + for (int i=0; irealVisibility() && onlyVisibleMaps) + continue; + QCPRange mapRange; + if (maps.at(i)->colorScale() == this) + { + bool currentFoundRange = true; + mapRange = maps.at(i)->data()->dataBounds(); + if (sign == QCP::sdPositive) + { + if (mapRange.lower <= 0 && mapRange.upper > 0) + mapRange.lower = mapRange.upper*1e-3; + else if (mapRange.lower <= 0 && mapRange.upper <= 0) + currentFoundRange = false; + } else if (sign == QCP::sdNegative) + { + if (mapRange.upper >= 0 && mapRange.lower < 0) + mapRange.upper = mapRange.lower*1e-3; + else if (mapRange.upper >= 0 && mapRange.lower >= 0) + currentFoundRange = false; + } + if (currentFoundRange) + { + if (!haveRange) + newRange = mapRange; + else + newRange.expand(mapRange); + haveRange = true; + } + } + } + if (haveRange) + { + if (!QCPRange::validRange(newRange)) // likely due to range being zero (plottable has only constant data in this dimension), shift current range to at least center the data + { + double center = (newRange.lower+newRange.upper)*0.5; // upper and lower should be equal anyway, but just to make sure, incase validRange returned false for other reason + if (mDataScaleType == QCPAxis::stLinear) + { + newRange.lower = center-mDataRange.size()/2.0; + newRange.upper = center+mDataRange.size()/2.0; + } else // mScaleType == stLogarithmic + { + newRange.lower = center/qSqrt(mDataRange.upper/mDataRange.lower); + newRange.upper = center*qSqrt(mDataRange.upper/mDataRange.lower); + } + } + setDataRange(newRange); + } +} + +/* inherits documentation from base class */ +void QCPColorScale::update(UpdatePhase phase) +{ + QCPLayoutElement::update(phase); + if (!mAxisRect) + { + qDebug() << Q_FUNC_INFO << "internal axis rect was deleted"; + return; + } + + mAxisRect.data()->update(phase); + + switch (phase) + { + case upMargins: + { + if (mType == QCPAxis::atBottom || mType == QCPAxis::atTop) + { + setMaximumSize(QWIDGETSIZE_MAX, mBarWidth+mAxisRect.data()->margins().top()+mAxisRect.data()->margins().bottom()); + setMinimumSize(0, mBarWidth+mAxisRect.data()->margins().top()+mAxisRect.data()->margins().bottom()); + } else + { + setMaximumSize(mBarWidth+mAxisRect.data()->margins().left()+mAxisRect.data()->margins().right(), QWIDGETSIZE_MAX); + setMinimumSize(mBarWidth+mAxisRect.data()->margins().left()+mAxisRect.data()->margins().right(), 0); + } + break; + } + case upLayout: + { + mAxisRect.data()->setOuterRect(rect()); + break; + } + default: break; + } +} + +/* inherits documentation from base class */ +void QCPColorScale::applyDefaultAntialiasingHint(QCPPainter *painter) const +{ + painter->setAntialiasing(false); +} + +/* inherits documentation from base class */ +void QCPColorScale::mousePressEvent(QMouseEvent *event, const QVariant &details) +{ + if (!mAxisRect) + { + qDebug() << Q_FUNC_INFO << "internal axis rect was deleted"; + return; + } + mAxisRect.data()->mousePressEvent(event, details); +} + +/* inherits documentation from base class */ +void QCPColorScale::mouseMoveEvent(QMouseEvent *event, const QPointF &startPos) +{ + if (!mAxisRect) + { + qDebug() << Q_FUNC_INFO << "internal axis rect was deleted"; + return; + } + mAxisRect.data()->mouseMoveEvent(event, startPos); +} + +/* inherits documentation from base class */ +void QCPColorScale::mouseReleaseEvent(QMouseEvent *event, const QPointF &startPos) +{ + if (!mAxisRect) + { + qDebug() << Q_FUNC_INFO << "internal axis rect was deleted"; + return; + } + mAxisRect.data()->mouseReleaseEvent(event, startPos); +} + +/* inherits documentation from base class */ +void QCPColorScale::wheelEvent(QWheelEvent *event) +{ + if (!mAxisRect) + { + qDebug() << Q_FUNC_INFO << "internal axis rect was deleted"; + return; + } + mAxisRect.data()->wheelEvent(event); +} + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPColorScaleAxisRectPrivate +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPColorScaleAxisRectPrivate + + \internal + \brief An axis rect subclass for use in a QCPColorScale + + This is a private class and not part of the public QCustomPlot interface. + + It provides the axis rect functionality for the QCPColorScale class. +*/ + + +/*! + Creates a new instance, as a child of \a parentColorScale. +*/ +QCPColorScaleAxisRectPrivate::QCPColorScaleAxisRectPrivate(QCPColorScale *parentColorScale) : + QCPAxisRect(parentColorScale->parentPlot(), true), + mParentColorScale(parentColorScale), + mGradientImageInvalidated(true) +{ + setParentLayerable(parentColorScale); + setMinimumMargins(QMargins(0, 0, 0, 0)); + QList allAxisTypes = QList() << QCPAxis::atBottom << QCPAxis::atTop << QCPAxis::atLeft << QCPAxis::atRight; + foreach (QCPAxis::AxisType type, allAxisTypes) + { + axis(type)->setVisible(true); + axis(type)->grid()->setVisible(false); + axis(type)->setPadding(0); + connect(axis(type), SIGNAL(selectionChanged(QCPAxis::SelectableParts)), this, SLOT(axisSelectionChanged(QCPAxis::SelectableParts))); + connect(axis(type), SIGNAL(selectableChanged(QCPAxis::SelectableParts)), this, SLOT(axisSelectableChanged(QCPAxis::SelectableParts))); + } + + connect(axis(QCPAxis::atLeft), SIGNAL(rangeChanged(QCPRange)), axis(QCPAxis::atRight), SLOT(setRange(QCPRange))); + connect(axis(QCPAxis::atRight), SIGNAL(rangeChanged(QCPRange)), axis(QCPAxis::atLeft), SLOT(setRange(QCPRange))); + connect(axis(QCPAxis::atBottom), SIGNAL(rangeChanged(QCPRange)), axis(QCPAxis::atTop), SLOT(setRange(QCPRange))); + connect(axis(QCPAxis::atTop), SIGNAL(rangeChanged(QCPRange)), axis(QCPAxis::atBottom), SLOT(setRange(QCPRange))); + connect(axis(QCPAxis::atLeft), SIGNAL(scaleTypeChanged(QCPAxis::ScaleType)), axis(QCPAxis::atRight), SLOT(setScaleType(QCPAxis::ScaleType))); + connect(axis(QCPAxis::atRight), SIGNAL(scaleTypeChanged(QCPAxis::ScaleType)), axis(QCPAxis::atLeft), SLOT(setScaleType(QCPAxis::ScaleType))); + connect(axis(QCPAxis::atBottom), SIGNAL(scaleTypeChanged(QCPAxis::ScaleType)), axis(QCPAxis::atTop), SLOT(setScaleType(QCPAxis::ScaleType))); + connect(axis(QCPAxis::atTop), SIGNAL(scaleTypeChanged(QCPAxis::ScaleType)), axis(QCPAxis::atBottom), SLOT(setScaleType(QCPAxis::ScaleType))); + + // make layer transfers of color scale transfer to axis rect and axes + // the axes must be set after axis rect, such that they appear above color gradient drawn by axis rect: + connect(parentColorScale, SIGNAL(layerChanged(QCPLayer*)), this, SLOT(setLayer(QCPLayer*))); + foreach (QCPAxis::AxisType type, allAxisTypes) + connect(parentColorScale, SIGNAL(layerChanged(QCPLayer*)), axis(type), SLOT(setLayer(QCPLayer*))); +} + +/*! \internal + + Updates the color gradient image if necessary, by calling \ref updateGradientImage, then draws + it. Then the axes are drawn by calling the \ref QCPAxisRect::draw base class implementation. + + \seebaseclassmethod +*/ +void QCPColorScaleAxisRectPrivate::draw(QCPPainter *painter) +{ + if (mGradientImageInvalidated) + updateGradientImage(); + + bool mirrorHorz = false; + bool mirrorVert = false; + if (mParentColorScale->mColorAxis) + { + mirrorHorz = mParentColorScale->mColorAxis.data()->rangeReversed() && (mParentColorScale->type() == QCPAxis::atBottom || mParentColorScale->type() == QCPAxis::atTop); + mirrorVert = mParentColorScale->mColorAxis.data()->rangeReversed() && (mParentColorScale->type() == QCPAxis::atLeft || mParentColorScale->type() == QCPAxis::atRight); + } + + painter->drawImage(rect().adjusted(0, -1, 0, -1), mGradientImage.mirrored(mirrorHorz, mirrorVert)); + QCPAxisRect::draw(painter); +} + +/*! \internal + + Uses the current gradient of the parent \ref QCPColorScale (specified in the constructor) to + generate a gradient image. This gradient image will be used in the \ref draw method. +*/ +void QCPColorScaleAxisRectPrivate::updateGradientImage() +{ + if (rect().isEmpty()) + return; + + const QImage::Format format = QImage::Format_ARGB32_Premultiplied; + int n = mParentColorScale->mGradient.levelCount(); + int w, h; + QVector data(n); + for (int i=0; imType == QCPAxis::atBottom || mParentColorScale->mType == QCPAxis::atTop) + { + w = n; + h = rect().height(); + mGradientImage = QImage(w, h, format); + QVector pixels; + for (int y=0; y(mGradientImage.scanLine(y))); + mParentColorScale->mGradient.colorize(data.constData(), QCPRange(0, n-1), pixels.first(), n); + for (int y=1; y(mGradientImage.scanLine(y)); + const QRgb lineColor = mParentColorScale->mGradient.color(data[h-1-y], QCPRange(0, n-1)); + for (int x=0; x allAxisTypes = QList() << QCPAxis::atBottom << QCPAxis::atTop << QCPAxis::atLeft << QCPAxis::atRight; + foreach (QCPAxis::AxisType type, allAxisTypes) + { + if (QCPAxis *senderAxis = qobject_cast(sender())) + if (senderAxis->axisType() == type) + continue; + + if (axis(type)->selectableParts().testFlag(QCPAxis::spAxis)) + { + if (selectedParts.testFlag(QCPAxis::spAxis)) + axis(type)->setSelectedParts(axis(type)->selectedParts() | QCPAxis::spAxis); + else + axis(type)->setSelectedParts(axis(type)->selectedParts() & ~QCPAxis::spAxis); + } + } +} + +/*! \internal + + This slot is connected to the selectableChanged signals of the four axes in the constructor. It + synchronizes the selectability of the axes. +*/ +void QCPColorScaleAxisRectPrivate::axisSelectableChanged(QCPAxis::SelectableParts selectableParts) +{ + // synchronize axis base selectability: + QList allAxisTypes = QList() << QCPAxis::atBottom << QCPAxis::atTop << QCPAxis::atLeft << QCPAxis::atRight; + foreach (QCPAxis::AxisType type, allAxisTypes) + { + if (QCPAxis *senderAxis = qobject_cast(sender())) + if (senderAxis->axisType() == type) + continue; + + if (axis(type)->selectableParts().testFlag(QCPAxis::spAxis)) + { + if (selectableParts.testFlag(QCPAxis::spAxis)) + axis(type)->setSelectableParts(axis(type)->selectableParts() | QCPAxis::spAxis); + else + axis(type)->setSelectableParts(axis(type)->selectableParts() & ~QCPAxis::spAxis); + } + } +} +/* end of 'src/layoutelements/layoutelement-colorscale.cpp' */ + + +/* including file 'src/plottables/plottable-graph.cpp', size 74194 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPGraphData +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPGraphData + \brief Holds the data of one single data point for QCPGraph. + + The stored data is: + \li \a key: coordinate on the key axis of this data point (this is the \a mainKey and the \a sortKey) + \li \a value: coordinate on the value axis of this data point (this is the \a mainValue) + + The container for storing multiple data points is \ref QCPGraphDataContainer. It is a typedef for + \ref QCPDataContainer with \ref QCPGraphData as the DataType template parameter. See the + documentation there for an explanation regarding the data type's generic methods. + + \see QCPGraphDataContainer +*/ + +/* start documentation of inline functions */ + +/*! \fn double QCPGraphData::sortKey() const + + Returns the \a key member of this data point. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn static QCPGraphData QCPGraphData::fromSortKey(double sortKey) + + Returns a data point with the specified \a sortKey. All other members are set to zero. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn static static bool QCPGraphData::sortKeyIsMainKey() + + Since the member \a key is both the data point key coordinate and the data ordering parameter, + this method returns true. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn double QCPGraphData::mainKey() const + + Returns the \a key member of this data point. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn double QCPGraphData::mainValue() const + + Returns the \a value member of this data point. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn QCPRange QCPGraphData::valueRange() const + + Returns a QCPRange with both lower and upper boundary set to \a value of this data point. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/* end documentation of inline functions */ + +/*! + Constructs a data point with key and value set to zero. +*/ +QCPGraphData::QCPGraphData() : + key(0), + value(0) +{ +} + +/*! + Constructs a data point with the specified \a key and \a value. +*/ +QCPGraphData::QCPGraphData(double key, double value) : + key(key), + value(value) +{ +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPGraph +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPGraph + \brief A plottable representing a graph in a plot. + + \image html QCPGraph.png + + Usually you create new graphs by calling QCustomPlot::addGraph. The resulting instance can be + accessed via QCustomPlot::graph. + + To plot data, assign it with the \ref setData or \ref addData functions. Alternatively, you can + also access and modify the data via the \ref data method, which returns a pointer to the internal + \ref QCPGraphDataContainer. + + Graphs are used to display single-valued data. Single-valued means that there should only be one + data point per unique key coordinate. In other words, the graph can't have \a loops. If you do + want to plot non-single-valued curves, rather use the QCPCurve plottable. + + Gaps in the graph line can be created by adding data points with NaN as value + (qQNaN() or std::numeric_limits::quiet_NaN()) in between the two data points that shall be + separated. + + \section qcpgraph-appearance Changing the appearance + + The appearance of the graph is mainly determined by the line style, scatter style, brush and pen + of the graph (\ref setLineStyle, \ref setScatterStyle, \ref setBrush, \ref setPen). + + \subsection filling Filling under or between graphs + + QCPGraph knows two types of fills: Normal graph fills towards the zero-value-line parallel to + the key axis of the graph, and fills between two graphs, called channel fills. To enable a fill, + just set a brush with \ref setBrush which is neither Qt::NoBrush nor fully transparent. + + By default, a normal fill towards the zero-value-line will be drawn. To set up a channel fill + between this graph and another one, call \ref setChannelFillGraph with the other graph as + parameter. + + \see QCustomPlot::addGraph, QCustomPlot::graph +*/ + +/* start of documentation of inline functions */ + +/*! \fn QSharedPointer QCPGraph::data() const + + Returns a shared pointer to the internal data storage of type \ref QCPGraphDataContainer. You may + use it to directly manipulate the data, which may be more convenient and faster than using the + regular \ref setData or \ref addData methods. +*/ + +/* end of documentation of inline functions */ + +/*! + Constructs a graph which uses \a keyAxis as its key axis ("x") and \a valueAxis as its value + axis ("y"). \a keyAxis and \a valueAxis must reside in the same QCustomPlot instance and not have + the same orientation. If either of these restrictions is violated, a corresponding message is + printed to the debug output (qDebug), the construction is not aborted, though. + + The created QCPGraph is automatically registered with the QCustomPlot instance inferred from \a + keyAxis. This QCustomPlot instance takes ownership of the QCPGraph, so do not delete it manually + but use QCustomPlot::removePlottable() instead. + + To directly create a graph inside a plot, you can also use the simpler QCustomPlot::addGraph function. +*/ +QCPGraph::QCPGraph(QCPAxis *keyAxis, QCPAxis *valueAxis) : + QCPAbstractPlottable1D(keyAxis, valueAxis) +{ + // special handling for QCPGraphs to maintain the simple graph interface: + mParentPlot->registerGraph(this); + + setPen(QPen(Qt::blue, 0)); + setBrush(Qt::NoBrush); + + setLineStyle(lsLine); + setScatterSkip(0); + setChannelFillGraph(0); + setAdaptiveSampling(true); +} + +QCPGraph::~QCPGraph() +{ +} + +/*! \overload + + Replaces the current data container with the provided \a data container. + + Since a QSharedPointer is used, multiple QCPGraphs may share the same data container safely. + Modifying the data in the container will then affect all graphs that share the container. Sharing + can be achieved by simply exchanging the data containers wrapped in shared pointers: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpgraph-datasharing-1 + + If you do not wish to share containers, but create a copy from an existing container, rather use + the \ref QCPDataContainer::set method on the graph's data container directly: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpgraph-datasharing-2 + + \see addData +*/ +void QCPGraph::setData(QSharedPointer data) +{ + mDataContainer = data; +} + +/*! \overload + + Replaces the current data with the provided points in \a keys and \a values. The provided + vectors should have equal length. Else, the number of added points will be the size of the + smallest vector. + + If you can guarantee that the passed data points are sorted by \a keys in ascending order, you + can set \a alreadySorted to true, to improve performance by saving a sorting run. + + \see addData +*/ +void QCPGraph::setData(const QVector &keys, const QVector &values, bool alreadySorted) +{ + mDataContainer->clear(); + addData(keys, values, alreadySorted); +} + +/*! + Sets how the single data points are connected in the plot. For scatter-only plots, set \a ls to + \ref lsNone and \ref setScatterStyle to the desired scatter style. + + \see setScatterStyle +*/ +void QCPGraph::setLineStyle(LineStyle ls) +{ + mLineStyle = ls; +} + +/*! + Sets the visual appearance of single data points in the plot. If set to \ref QCPScatterStyle::ssNone, no scatter points + are drawn (e.g. for line-only-plots with appropriate line style). + + \see QCPScatterStyle, setLineStyle +*/ +void QCPGraph::setScatterStyle(const QCPScatterStyle &style) +{ + mScatterStyle = style; +} + +/*! + If scatters are displayed (scatter style not \ref QCPScatterStyle::ssNone), \a skip number of + scatter points are skipped/not drawn after every drawn scatter point. + + This can be used to make the data appear sparser while for example still having a smooth line, + and to improve performance for very high density plots. + + If \a skip is set to 0 (default), all scatter points are drawn. + + \see setScatterStyle +*/ +void QCPGraph::setScatterSkip(int skip) +{ + mScatterSkip = qMax(0, skip); +} + +/*! + Sets the target graph for filling the area between this graph and \a targetGraph with the current + brush (\ref setBrush). + + When \a targetGraph is set to 0, a normal graph fill to the zero-value-line will be shown. To + disable any filling, set the brush to Qt::NoBrush. + + \see setBrush +*/ +void QCPGraph::setChannelFillGraph(QCPGraph *targetGraph) +{ + // prevent setting channel target to this graph itself: + if (targetGraph == this) + { + qDebug() << Q_FUNC_INFO << "targetGraph is this graph itself"; + mChannelFillGraph = 0; + return; + } + // prevent setting channel target to a graph not in the plot: + if (targetGraph && targetGraph->mParentPlot != mParentPlot) + { + qDebug() << Q_FUNC_INFO << "targetGraph not in same plot"; + mChannelFillGraph = 0; + return; + } + + mChannelFillGraph = targetGraph; +} + +/*! + Sets whether adaptive sampling shall be used when plotting this graph. QCustomPlot's adaptive + sampling technique can drastically improve the replot performance for graphs with a larger number + of points (e.g. above 10,000), without notably changing the appearance of the graph. + + By default, adaptive sampling is enabled. Even if enabled, QCustomPlot decides whether adaptive + sampling shall actually be used on a per-graph basis. So leaving adaptive sampling enabled has no + disadvantage in almost all cases. + + \image html adaptive-sampling-line.png "A line plot of 500,000 points without and with adaptive sampling" + + As can be seen, line plots experience no visual degradation from adaptive sampling. Outliers are + reproduced reliably, as well as the overall shape of the data set. The replot time reduces + dramatically though. This allows QCustomPlot to display large amounts of data in realtime. + + \image html adaptive-sampling-scatter.png "A scatter plot of 100,000 points without and with adaptive sampling" + + Care must be taken when using high-density scatter plots in combination with adaptive sampling. + The adaptive sampling algorithm treats scatter plots more carefully than line plots which still + gives a significant reduction of replot times, but not quite as much as for line plots. This is + because scatter plots inherently need more data points to be preserved in order to still resemble + the original, non-adaptive-sampling plot. As shown above, the results still aren't quite + identical, as banding occurs for the outer data points. This is in fact intentional, such that + the boundaries of the data cloud stay visible to the viewer. How strong the banding appears, + depends on the point density, i.e. the number of points in the plot. + + For some situations with scatter plots it might thus be desirable to manually turn adaptive + sampling off. For example, when saving the plot to disk. This can be achieved by setting \a + enabled to false before issuing a command like \ref QCustomPlot::savePng, and setting \a enabled + back to true afterwards. +*/ +void QCPGraph::setAdaptiveSampling(bool enabled) +{ + mAdaptiveSampling = enabled; +} + +/*! \overload + + Adds the provided points in \a keys and \a values to the current data. The provided vectors + should have equal length. Else, the number of added points will be the size of the smallest + vector. + + If you can guarantee that the passed data points are sorted by \a keys in ascending order, you + can set \a alreadySorted to true, to improve performance by saving a sorting run. + + Alternatively, you can also access and modify the data directly via the \ref data method, which + returns a pointer to the internal data container. +*/ +void QCPGraph::addData(const QVector &keys, const QVector &values, bool alreadySorted) +{ + if (keys.size() != values.size()) + qDebug() << Q_FUNC_INFO << "keys and values have different sizes:" << keys.size() << values.size(); + const int n = qMin(keys.size(), values.size()); + QVector tempData(n); + QVector::iterator it = tempData.begin(); + const QVector::iterator itEnd = tempData.end(); + int i = 0; + while (it != itEnd) + { + it->key = keys[i]; + it->value = values[i]; + ++it; + ++i; + } + mDataContainer->add(tempData, alreadySorted); // don't modify tempData beyond this to prevent copy on write +} + +/*! \overload + + Adds the provided data point as \a key and \a value to the current data. + + Alternatively, you can also access and modify the data directly via the \ref data method, which + returns a pointer to the internal data container. +*/ +void QCPGraph::addData(double key, double value) +{ + mDataContainer->add(QCPGraphData(key, value)); +} + +/*! + Implements a selectTest specific to this plottable's point geometry. + + If \a details is not 0, it will be set to a \ref QCPDataSelection, describing the closest data + point to \a pos. + + \seebaseclassmethod \ref QCPAbstractPlottable::selectTest +*/ +double QCPGraph::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + if ((onlySelectable && mSelectable == QCP::stNone) || mDataContainer->isEmpty()) + return -1; + if (!mKeyAxis || !mValueAxis) + return -1; + + if (mKeyAxis.data()->axisRect()->rect().contains(pos.toPoint())) + { + QCPGraphDataContainer::const_iterator closestDataPoint = mDataContainer->constEnd(); + double result = pointDistance(pos, closestDataPoint); + if (details) + { + int pointIndex = closestDataPoint-mDataContainer->constBegin(); + details->setValue(QCPDataSelection(QCPDataRange(pointIndex, pointIndex+1))); + } + return result; + } else + return -1; +} + +/* inherits documentation from base class */ +QCPRange QCPGraph::getKeyRange(bool &foundRange, QCP::SignDomain inSignDomain) const +{ + return mDataContainer->keyRange(foundRange, inSignDomain); +} + +/* inherits documentation from base class */ +QCPRange QCPGraph::getValueRange(bool &foundRange, QCP::SignDomain inSignDomain, const QCPRange &inKeyRange) const +{ + return mDataContainer->valueRange(foundRange, inSignDomain, inKeyRange); +} + +/* inherits documentation from base class */ +void QCPGraph::draw(QCPPainter *painter) +{ + if (!mKeyAxis || !mValueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + if (mKeyAxis.data()->range().size() <= 0 || mDataContainer->isEmpty()) return; + if (mLineStyle == lsNone && mScatterStyle.isNone()) return; + + QVector lines, scatters; // line and (if necessary) scatter pixel coordinates will be stored here while iterating over segments + + // loop over and draw segments of unselected/selected data: + QList selectedSegments, unselectedSegments, allSegments; + getDataSegments(selectedSegments, unselectedSegments); + allSegments << unselectedSegments << selectedSegments; + for (int i=0; i= unselectedSegments.size(); + // get line pixel points appropriate to line style: + QCPDataRange lineDataRange = isSelectedSegment ? allSegments.at(i) : allSegments.at(i).adjusted(-1, 1); // unselected segments extend lines to bordering selected data point (safe to exceed total data bounds in first/last segment, getLines takes care) + getLines(&lines, lineDataRange); + + // check data validity if flag set: +#ifdef QCUSTOMPLOT_CHECK_DATA + QCPGraphDataContainer::const_iterator it; + for (it = mDataContainer->constBegin(); it != mDataContainer->constEnd(); ++it) + { + if (QCP::isInvalidData(it->key, it->value)) + qDebug() << Q_FUNC_INFO << "Data point at" << it->key << "invalid." << "Plottable name:" << name(); + } +#endif + + // draw fill of graph: + if (isSelectedSegment && mSelectionDecorator) + mSelectionDecorator->applyBrush(painter); + else + painter->setBrush(mBrush); + painter->setPen(Qt::NoPen); + drawFill(painter, &lines); + + // draw line: + if (mLineStyle != lsNone) + { + if (isSelectedSegment && mSelectionDecorator) + mSelectionDecorator->applyPen(painter); + else + painter->setPen(mPen); + painter->setBrush(Qt::NoBrush); + if (mLineStyle == lsImpulse) + drawImpulsePlot(painter, lines); + else + drawLinePlot(painter, lines); // also step plots can be drawn as a line plot + } + + // draw scatters: + QCPScatterStyle finalScatterStyle = mScatterStyle; + if (isSelectedSegment && mSelectionDecorator) + finalScatterStyle = mSelectionDecorator->getFinalScatterStyle(mScatterStyle); + if (!finalScatterStyle.isNone()) + { + getScatters(&scatters, allSegments.at(i)); + drawScatterPlot(painter, scatters, finalScatterStyle); + } + } + + // draw other selection decoration that isn't just line/scatter pens and brushes: + if (mSelectionDecorator) + mSelectionDecorator->drawDecoration(painter, selection()); +} + +/* inherits documentation from base class */ +void QCPGraph::drawLegendIcon(QCPPainter *painter, const QRectF &rect) const +{ + // draw fill: + if (mBrush.style() != Qt::NoBrush) + { + applyFillAntialiasingHint(painter); + painter->fillRect(QRectF(rect.left(), rect.top()+rect.height()/2.0, rect.width(), rect.height()/3.0), mBrush); + } + // draw line vertically centered: + if (mLineStyle != lsNone) + { + applyDefaultAntialiasingHint(painter); + painter->setPen(mPen); + painter->drawLine(QLineF(rect.left(), rect.top()+rect.height()/2.0, rect.right()+5, rect.top()+rect.height()/2.0)); // +5 on x2 else last segment is missing from dashed/dotted pens + } + // draw scatter symbol: + if (!mScatterStyle.isNone()) + { + applyScattersAntialiasingHint(painter); + // scale scatter pixmap if it's too large to fit in legend icon rect: + if (mScatterStyle.shape() == QCPScatterStyle::ssPixmap && (mScatterStyle.pixmap().size().width() > rect.width() || mScatterStyle.pixmap().size().height() > rect.height())) + { + QCPScatterStyle scaledStyle(mScatterStyle); + scaledStyle.setPixmap(scaledStyle.pixmap().scaled(rect.size().toSize(), Qt::KeepAspectRatio, Qt::SmoothTransformation)); + scaledStyle.applyTo(painter, mPen); + scaledStyle.drawShape(painter, QRectF(rect).center()); + } else + { + mScatterStyle.applyTo(painter, mPen); + mScatterStyle.drawShape(painter, QRectF(rect).center()); + } + } +} + +/*! \internal + + This method retrieves an optimized set of data points via \ref getOptimizedLineData, an branches + out to the line style specific functions such as \ref dataToLines, \ref dataToStepLeftLines, etc. + according to the line style of the graph. + + \a lines will be filled with points in pixel coordinates, that can be drawn with the according + draw functions like \ref drawLinePlot and \ref drawImpulsePlot. The points returned in \a lines + aren't necessarily the original data points. For example, step line styles require additional + points to form the steps when drawn. If the line style of the graph is \ref lsNone, the \a + lines vector will be empty. + + \a dataRange specifies the beginning and ending data indices that will be taken into account for + conversion. In this function, the specified range may exceed the total data bounds without harm: + a correspondingly trimmed data range will be used. This takes the burden off the user of this + function to check for valid indices in \a dataRange, e.g. when extending ranges coming from \ref + getDataSegments. + + \see getScatters +*/ +void QCPGraph::getLines(QVector *lines, const QCPDataRange &dataRange) const +{ + if (!lines) return; + QCPGraphDataContainer::const_iterator begin, end; + getVisibleDataBounds(begin, end, dataRange); + if (begin == end) + { + lines->clear(); + return; + } + + QVector lineData; + if (mLineStyle != lsNone) + getOptimizedLineData(&lineData, begin, end); + + if (mKeyAxis->rangeReversed() != (mKeyAxis->orientation() == Qt::Vertical)) // make sure key pixels are sorted ascending in lineData (significantly simplifies following processing) + std::reverse(lineData.begin(), lineData.end()); + + switch (mLineStyle) + { + case lsNone: lines->clear(); break; + case lsLine: *lines = dataToLines(lineData); break; + case lsStepLeft: *lines = dataToStepLeftLines(lineData); break; + case lsStepRight: *lines = dataToStepRightLines(lineData); break; + case lsStepCenter: *lines = dataToStepCenterLines(lineData); break; + case lsImpulse: *lines = dataToImpulseLines(lineData); break; + } +} + +/*! \internal + + This method retrieves an optimized set of data points via \ref getOptimizedScatterData and then + converts them to pixel coordinates. The resulting points are returned in \a scatters, and can be + passed to \ref drawScatterPlot. + + \a dataRange specifies the beginning and ending data indices that will be taken into account for + conversion. In this function, the specified range may exceed the total data bounds without harm: + a correspondingly trimmed data range will be used. This takes the burden off the user of this + function to check for valid indices in \a dataRange, e.g. when extending ranges coming from \ref + getDataSegments. +*/ +void QCPGraph::getScatters(QVector *scatters, const QCPDataRange &dataRange) const +{ + if (!scatters) return; + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; scatters->clear(); return; } + + QCPGraphDataContainer::const_iterator begin, end; + getVisibleDataBounds(begin, end, dataRange); + if (begin == end) + { + scatters->clear(); + return; + } + + QVector data; + getOptimizedScatterData(&data, begin, end); + + if (mKeyAxis->rangeReversed() != (mKeyAxis->orientation() == Qt::Vertical)) // make sure key pixels are sorted ascending in data (significantly simplifies following processing) + std::reverse(data.begin(), data.end()); + + scatters->resize(data.size()); + if (keyAxis->orientation() == Qt::Vertical) + { + for (int i=0; icoordToPixel(data.at(i).value)); + (*scatters)[i].setY(keyAxis->coordToPixel(data.at(i).key)); + } + } + } else + { + for (int i=0; icoordToPixel(data.at(i).key)); + (*scatters)[i].setY(valueAxis->coordToPixel(data.at(i).value)); + } + } + } +} + +/*! \internal + + Takes raw data points in plot coordinates as \a data, and returns a vector containing pixel + coordinate points which are suitable for drawing the line style \ref lsLine. + + The source of \a data is usually \ref getOptimizedLineData, and this method is called in \a + getLines if the line style is set accordingly. + + \see dataToStepLeftLines, dataToStepRightLines, dataToStepCenterLines, dataToImpulseLines, getLines, drawLinePlot +*/ +QVector QCPGraph::dataToLines(const QVector &data) const +{ + QVector result; + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return result; } + + result.resize(data.size()); + + // transform data points to pixels: + if (keyAxis->orientation() == Qt::Vertical) + { + for (int i=0; icoordToPixel(data.at(i).value)); + result[i].setY(keyAxis->coordToPixel(data.at(i).key)); + } + } else // key axis is horizontal + { + for (int i=0; icoordToPixel(data.at(i).key)); + result[i].setY(valueAxis->coordToPixel(data.at(i).value)); + } + } + return result; +} + +/*! \internal + + Takes raw data points in plot coordinates as \a data, and returns a vector containing pixel + coordinate points which are suitable for drawing the line style \ref lsStepLeft. + + The source of \a data is usually \ref getOptimizedLineData, and this method is called in \a + getLines if the line style is set accordingly. + + \see dataToLines, dataToStepRightLines, dataToStepCenterLines, dataToImpulseLines, getLines, drawLinePlot +*/ +QVector QCPGraph::dataToStepLeftLines(const QVector &data) const +{ + QVector result; + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return result; } + + result.resize(data.size()*2); + + // calculate steps from data and transform to pixel coordinates: + if (keyAxis->orientation() == Qt::Vertical) + { + double lastValue = valueAxis->coordToPixel(data.first().value); + for (int i=0; icoordToPixel(data.at(i).key); + result[i*2+0].setX(lastValue); + result[i*2+0].setY(key); + lastValue = valueAxis->coordToPixel(data.at(i).value); + result[i*2+1].setX(lastValue); + result[i*2+1].setY(key); + } + } else // key axis is horizontal + { + double lastValue = valueAxis->coordToPixel(data.first().value); + for (int i=0; icoordToPixel(data.at(i).key); + result[i*2+0].setX(key); + result[i*2+0].setY(lastValue); + lastValue = valueAxis->coordToPixel(data.at(i).value); + result[i*2+1].setX(key); + result[i*2+1].setY(lastValue); + } + } + return result; +} + +/*! \internal + + Takes raw data points in plot coordinates as \a data, and returns a vector containing pixel + coordinate points which are suitable for drawing the line style \ref lsStepRight. + + The source of \a data is usually \ref getOptimizedLineData, and this method is called in \a + getLines if the line style is set accordingly. + + \see dataToLines, dataToStepLeftLines, dataToStepCenterLines, dataToImpulseLines, getLines, drawLinePlot +*/ +QVector QCPGraph::dataToStepRightLines(const QVector &data) const +{ + QVector result; + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return result; } + + result.resize(data.size()*2); + + // calculate steps from data and transform to pixel coordinates: + if (keyAxis->orientation() == Qt::Vertical) + { + double lastKey = keyAxis->coordToPixel(data.first().key); + for (int i=0; icoordToPixel(data.at(i).value); + result[i*2+0].setX(value); + result[i*2+0].setY(lastKey); + lastKey = keyAxis->coordToPixel(data.at(i).key); + result[i*2+1].setX(value); + result[i*2+1].setY(lastKey); + } + } else // key axis is horizontal + { + double lastKey = keyAxis->coordToPixel(data.first().key); + for (int i=0; icoordToPixel(data.at(i).value); + result[i*2+0].setX(lastKey); + result[i*2+0].setY(value); + lastKey = keyAxis->coordToPixel(data.at(i).key); + result[i*2+1].setX(lastKey); + result[i*2+1].setY(value); + } + } + return result; +} + +/*! \internal + + Takes raw data points in plot coordinates as \a data, and returns a vector containing pixel + coordinate points which are suitable for drawing the line style \ref lsStepCenter. + + The source of \a data is usually \ref getOptimizedLineData, and this method is called in \a + getLines if the line style is set accordingly. + + \see dataToLines, dataToStepLeftLines, dataToStepRightLines, dataToImpulseLines, getLines, drawLinePlot +*/ +QVector QCPGraph::dataToStepCenterLines(const QVector &data) const +{ + QVector result; + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return result; } + + result.resize(data.size()*2); + + // calculate steps from data and transform to pixel coordinates: + if (keyAxis->orientation() == Qt::Vertical) + { + double lastKey = keyAxis->coordToPixel(data.first().key); + double lastValue = valueAxis->coordToPixel(data.first().value); + result[0].setX(lastValue); + result[0].setY(lastKey); + for (int i=1; icoordToPixel(data.at(i).key)+lastKey)*0.5; + result[i*2-1].setX(lastValue); + result[i*2-1].setY(key); + lastValue = valueAxis->coordToPixel(data.at(i).value); + lastKey = keyAxis->coordToPixel(data.at(i).key); + result[i*2+0].setX(lastValue); + result[i*2+0].setY(key); + } + result[data.size()*2-1].setX(lastValue); + result[data.size()*2-1].setY(lastKey); + } else // key axis is horizontal + { + double lastKey = keyAxis->coordToPixel(data.first().key); + double lastValue = valueAxis->coordToPixel(data.first().value); + result[0].setX(lastKey); + result[0].setY(lastValue); + for (int i=1; icoordToPixel(data.at(i).key)+lastKey)*0.5; + result[i*2-1].setX(key); + result[i*2-1].setY(lastValue); + lastValue = valueAxis->coordToPixel(data.at(i).value); + lastKey = keyAxis->coordToPixel(data.at(i).key); + result[i*2+0].setX(key); + result[i*2+0].setY(lastValue); + } + result[data.size()*2-1].setX(lastKey); + result[data.size()*2-1].setY(lastValue); + } + return result; +} + +/*! \internal + + Takes raw data points in plot coordinates as \a data, and returns a vector containing pixel + coordinate points which are suitable for drawing the line style \ref lsImpulse. + + The source of \a data is usually \ref getOptimizedLineData, and this method is called in \a + getLines if the line style is set accordingly. + + \see dataToLines, dataToStepLeftLines, dataToStepRightLines, dataToStepCenterLines, getLines, drawImpulsePlot +*/ +QVector QCPGraph::dataToImpulseLines(const QVector &data) const +{ + QVector result; + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return result; } + + result.resize(data.size()*2); + + // transform data points to pixels: + if (keyAxis->orientation() == Qt::Vertical) + { + for (int i=0; icoordToPixel(data.at(i).key); + result[i*2+0].setX(valueAxis->coordToPixel(0)); + result[i*2+0].setY(key); + result[i*2+1].setX(valueAxis->coordToPixel(data.at(i).value)); + result[i*2+1].setY(key); + } + } else // key axis is horizontal + { + for (int i=0; icoordToPixel(data.at(i).key); + result[i*2+0].setX(key); + result[i*2+0].setY(valueAxis->coordToPixel(0)); + result[i*2+1].setX(key); + result[i*2+1].setY(valueAxis->coordToPixel(data.at(i).value)); + } + } + return result; +} + +/*! \internal + + Draws the fill of the graph using the specified \a painter, with the currently set brush. + + Depending on whether a normal fill or a channel fill (\ref setChannelFillGraph) is needed, \ref + getFillPolygon or \ref getChannelFillPolygon are used to find the according fill polygons. + + In order to handle NaN Data points correctly (the fill needs to be split into disjoint areas), + this method first determines a list of non-NaN segments with \ref getNonNanSegments, on which to + operate. In the channel fill case, \ref getOverlappingSegments is used to consolidate the non-NaN + segments of the two involved graphs, before passing the overlapping pairs to \ref + getChannelFillPolygon. + + Pass the points of this graph's line as \a lines, in pixel coordinates. + + \see drawLinePlot, drawImpulsePlot, drawScatterPlot +*/ +void QCPGraph::drawFill(QCPPainter *painter, QVector *lines) const +{ + if (mLineStyle == lsImpulse) return; // fill doesn't make sense for impulse plot + if (painter->brush().style() == Qt::NoBrush || painter->brush().color().alpha() == 0) return; + + applyFillAntialiasingHint(painter); + QVector segments = getNonNanSegments(lines, keyAxis()->orientation()); + if (!mChannelFillGraph) + { + // draw base fill under graph, fill goes all the way to the zero-value-line: + for (int i=0; idrawPolygon(getFillPolygon(lines, segments.at(i))); + } else + { + // draw fill between this graph and mChannelFillGraph: + QVector otherLines; + mChannelFillGraph->getLines(&otherLines, QCPDataRange(0, mChannelFillGraph->dataCount())); + if (!otherLines.isEmpty()) + { + QVector otherSegments = getNonNanSegments(&otherLines, mChannelFillGraph->keyAxis()->orientation()); + QVector > segmentPairs = getOverlappingSegments(segments, lines, otherSegments, &otherLines); + for (int i=0; idrawPolygon(getChannelFillPolygon(lines, segmentPairs.at(i).first, &otherLines, segmentPairs.at(i).second)); + } + } +} + +/*! \internal + + Draws scatter symbols at every point passed in \a scatters, given in pixel coordinates. The + scatters will be drawn with \a painter and have the appearance as specified in \a style. + + \see drawLinePlot, drawImpulsePlot +*/ +void QCPGraph::drawScatterPlot(QCPPainter *painter, const QVector &scatters, const QCPScatterStyle &style) const +{ + applyScattersAntialiasingHint(painter); + style.applyTo(painter, mPen); + for (int i=0; i &lines) const +{ + if (painter->pen().style() != Qt::NoPen && painter->pen().color().alpha() != 0) + { + applyDefaultAntialiasingHint(painter); + drawPolyline(painter, lines); + } +} + +/*! \internal + + Draws impulses from the provided data, i.e. it connects all line pairs in \a lines, given in + pixel coordinates. The \a lines necessary for impulses are generated by \ref dataToImpulseLines + from the regular graph data points. + + \see drawLinePlot, drawScatterPlot +*/ +void QCPGraph::drawImpulsePlot(QCPPainter *painter, const QVector &lines) const +{ + if (painter->pen().style() != Qt::NoPen && painter->pen().color().alpha() != 0) + { + applyDefaultAntialiasingHint(painter); + QPen oldPen = painter->pen(); + QPen newPen = painter->pen(); + newPen.setCapStyle(Qt::FlatCap); // so impulse line doesn't reach beyond zero-line + painter->setPen(newPen); + painter->drawLines(lines); + painter->setPen(oldPen); + } +} + +/*! \internal + + Returns via \a lineData the data points that need to be visualized for this graph when plotting + graph lines, taking into consideration the currently visible axis ranges and, if \ref + setAdaptiveSampling is enabled, local point densities. The considered data can be restricted + further by \a begin and \a end, e.g. to only plot a certain segment of the data (see \ref + getDataSegments). + + This method is used by \ref getLines to retrieve the basic working set of data. + + \see getOptimizedScatterData +*/ +void QCPGraph::getOptimizedLineData(QVector *lineData, const QCPGraphDataContainer::const_iterator &begin, const QCPGraphDataContainer::const_iterator &end) const +{ + if (!lineData) return; + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + if (begin == end) return; + + int dataCount = end-begin; + int maxCount = (std::numeric_limits::max)(); + if (mAdaptiveSampling) + { + double keyPixelSpan = qAbs(keyAxis->coordToPixel(begin->key)-keyAxis->coordToPixel((end-1)->key)); + if (2*keyPixelSpan+2 < static_cast((std::numeric_limits::max)())) + maxCount = 2*keyPixelSpan+2; + } + + if (mAdaptiveSampling && dataCount >= maxCount) // use adaptive sampling only if there are at least two points per pixel on average + { + QCPGraphDataContainer::const_iterator it = begin; + double minValue = it->value; + double maxValue = it->value; + QCPGraphDataContainer::const_iterator currentIntervalFirstPoint = it; + int reversedFactor = keyAxis->pixelOrientation(); // is used to calculate keyEpsilon pixel into the correct direction + int reversedRound = reversedFactor==-1 ? 1 : 0; // is used to switch between floor (normal) and ceil (reversed) rounding of currentIntervalStartKey + double currentIntervalStartKey = keyAxis->pixelToCoord((int)(keyAxis->coordToPixel(begin->key)+reversedRound)); + double lastIntervalEndKey = currentIntervalStartKey; + double keyEpsilon = qAbs(currentIntervalStartKey-keyAxis->pixelToCoord(keyAxis->coordToPixel(currentIntervalStartKey)+1.0*reversedFactor)); // interval of one pixel on screen when mapped to plot key coordinates + bool keyEpsilonVariable = keyAxis->scaleType() == QCPAxis::stLogarithmic; // indicates whether keyEpsilon needs to be updated after every interval (for log axes) + int intervalDataCount = 1; + ++it; // advance iterator to second data point because adaptive sampling works in 1 point retrospect + while (it != end) + { + if (it->key < currentIntervalStartKey+keyEpsilon) // data point is still within same pixel, so skip it and expand value span of this cluster if necessary + { + if (it->value < minValue) + minValue = it->value; + else if (it->value > maxValue) + maxValue = it->value; + ++intervalDataCount; + } else // new pixel interval started + { + if (intervalDataCount >= 2) // last pixel had multiple data points, consolidate them to a cluster + { + if (lastIntervalEndKey < currentIntervalStartKey-keyEpsilon) // last point is further away, so first point of this cluster must be at a real data point + lineData->append(QCPGraphData(currentIntervalStartKey+keyEpsilon*0.2, currentIntervalFirstPoint->value)); + lineData->append(QCPGraphData(currentIntervalStartKey+keyEpsilon*0.25, minValue)); + lineData->append(QCPGraphData(currentIntervalStartKey+keyEpsilon*0.75, maxValue)); + if (it->key > currentIntervalStartKey+keyEpsilon*2) // new pixel started further away from previous cluster, so make sure the last point of the cluster is at a real data point + lineData->append(QCPGraphData(currentIntervalStartKey+keyEpsilon*0.8, (it-1)->value)); + } else + lineData->append(QCPGraphData(currentIntervalFirstPoint->key, currentIntervalFirstPoint->value)); + lastIntervalEndKey = (it-1)->key; + minValue = it->value; + maxValue = it->value; + currentIntervalFirstPoint = it; + currentIntervalStartKey = keyAxis->pixelToCoord((int)(keyAxis->coordToPixel(it->key)+reversedRound)); + if (keyEpsilonVariable) + keyEpsilon = qAbs(currentIntervalStartKey-keyAxis->pixelToCoord(keyAxis->coordToPixel(currentIntervalStartKey)+1.0*reversedFactor)); + intervalDataCount = 1; + } + ++it; + } + // handle last interval: + if (intervalDataCount >= 2) // last pixel had multiple data points, consolidate them to a cluster + { + if (lastIntervalEndKey < currentIntervalStartKey-keyEpsilon) // last point wasn't a cluster, so first point of this cluster must be at a real data point + lineData->append(QCPGraphData(currentIntervalStartKey+keyEpsilon*0.2, currentIntervalFirstPoint->value)); + lineData->append(QCPGraphData(currentIntervalStartKey+keyEpsilon*0.25, minValue)); + lineData->append(QCPGraphData(currentIntervalStartKey+keyEpsilon*0.75, maxValue)); + } else + lineData->append(QCPGraphData(currentIntervalFirstPoint->key, currentIntervalFirstPoint->value)); + + } else // don't use adaptive sampling algorithm, transfer points one-to-one from the data container into the output + { + lineData->resize(dataCount); + std::copy(begin, end, lineData->begin()); + } +} + +/*! \internal + + Returns via \a scatterData the data points that need to be visualized for this graph when + plotting scatter points, taking into consideration the currently visible axis ranges and, if \ref + setAdaptiveSampling is enabled, local point densities. The considered data can be restricted + further by \a begin and \a end, e.g. to only plot a certain segment of the data (see \ref + getDataSegments). + + This method is used by \ref getScatters to retrieve the basic working set of data. + + \see getOptimizedLineData +*/ +void QCPGraph::getOptimizedScatterData(QVector *scatterData, QCPGraphDataContainer::const_iterator begin, QCPGraphDataContainer::const_iterator end) const +{ + if (!scatterData) return; + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + + const int scatterModulo = mScatterSkip+1; + const bool doScatterSkip = mScatterSkip > 0; + int beginIndex = begin-mDataContainer->constBegin(); + int endIndex = end-mDataContainer->constBegin(); + while (doScatterSkip && begin != end && beginIndex % scatterModulo != 0) // advance begin iterator to first non-skipped scatter + { + ++beginIndex; + ++begin; + } + if (begin == end) return; + int dataCount = end-begin; + int maxCount = (std::numeric_limits::max)(); + if (mAdaptiveSampling) + { + int keyPixelSpan = qAbs(keyAxis->coordToPixel(begin->key)-keyAxis->coordToPixel((end-1)->key)); + maxCount = 2*keyPixelSpan+2; + } + + if (mAdaptiveSampling && dataCount >= maxCount) // use adaptive sampling only if there are at least two points per pixel on average + { + double valueMaxRange = valueAxis->range().upper; + double valueMinRange = valueAxis->range().lower; + QCPGraphDataContainer::const_iterator it = begin; + int itIndex = beginIndex; + double minValue = it->value; + double maxValue = it->value; + QCPGraphDataContainer::const_iterator minValueIt = it; + QCPGraphDataContainer::const_iterator maxValueIt = it; + QCPGraphDataContainer::const_iterator currentIntervalStart = it; + int reversedFactor = keyAxis->pixelOrientation(); // is used to calculate keyEpsilon pixel into the correct direction + int reversedRound = reversedFactor==-1 ? 1 : 0; // is used to switch between floor (normal) and ceil (reversed) rounding of currentIntervalStartKey + double currentIntervalStartKey = keyAxis->pixelToCoord((int)(keyAxis->coordToPixel(begin->key)+reversedRound)); + double keyEpsilon = qAbs(currentIntervalStartKey-keyAxis->pixelToCoord(keyAxis->coordToPixel(currentIntervalStartKey)+1.0*reversedFactor)); // interval of one pixel on screen when mapped to plot key coordinates + bool keyEpsilonVariable = keyAxis->scaleType() == QCPAxis::stLogarithmic; // indicates whether keyEpsilon needs to be updated after every interval (for log axes) + int intervalDataCount = 1; + // advance iterator to second (non-skipped) data point because adaptive sampling works in 1 point retrospect: + if (!doScatterSkip) + ++it; + else + { + itIndex += scatterModulo; + if (itIndex < endIndex) // make sure we didn't jump over end + it += scatterModulo; + else + { + it = end; + itIndex = endIndex; + } + } + // main loop over data points: + while (it != end) + { + if (it->key < currentIntervalStartKey+keyEpsilon) // data point is still within same pixel, so skip it and expand value span of this pixel if necessary + { + if (it->value < minValue && it->value > valueMinRange && it->value < valueMaxRange) + { + minValue = it->value; + minValueIt = it; + } else if (it->value > maxValue && it->value > valueMinRange && it->value < valueMaxRange) + { + maxValue = it->value; + maxValueIt = it; + } + ++intervalDataCount; + } else // new pixel started + { + if (intervalDataCount >= 2) // last pixel had multiple data points, consolidate them + { + // determine value pixel span and add as many points in interval to maintain certain vertical data density (this is specific to scatter plot): + double valuePixelSpan = qAbs(valueAxis->coordToPixel(minValue)-valueAxis->coordToPixel(maxValue)); + int dataModulo = qMax(1, qRound(intervalDataCount/(valuePixelSpan/4.0))); // approximately every 4 value pixels one data point on average + QCPGraphDataContainer::const_iterator intervalIt = currentIntervalStart; + int c = 0; + while (intervalIt != it) + { + if ((c % dataModulo == 0 || intervalIt == minValueIt || intervalIt == maxValueIt) && intervalIt->value > valueMinRange && intervalIt->value < valueMaxRange) + scatterData->append(*intervalIt); + ++c; + if (!doScatterSkip) + ++intervalIt; + else + intervalIt += scatterModulo; // since we know indices of "currentIntervalStart", "intervalIt" and "it" are multiples of scatterModulo, we can't accidentally jump over "it" here + } + } else if (currentIntervalStart->value > valueMinRange && currentIntervalStart->value < valueMaxRange) + scatterData->append(*currentIntervalStart); + minValue = it->value; + maxValue = it->value; + currentIntervalStart = it; + currentIntervalStartKey = keyAxis->pixelToCoord((int)(keyAxis->coordToPixel(it->key)+reversedRound)); + if (keyEpsilonVariable) + keyEpsilon = qAbs(currentIntervalStartKey-keyAxis->pixelToCoord(keyAxis->coordToPixel(currentIntervalStartKey)+1.0*reversedFactor)); + intervalDataCount = 1; + } + // advance to next data point: + if (!doScatterSkip) + ++it; + else + { + itIndex += scatterModulo; + if (itIndex < endIndex) // make sure we didn't jump over end + it += scatterModulo; + else + { + it = end; + itIndex = endIndex; + } + } + } + // handle last interval: + if (intervalDataCount >= 2) // last pixel had multiple data points, consolidate them + { + // determine value pixel span and add as many points in interval to maintain certain vertical data density (this is specific to scatter plot): + double valuePixelSpan = qAbs(valueAxis->coordToPixel(minValue)-valueAxis->coordToPixel(maxValue)); + int dataModulo = qMax(1, qRound(intervalDataCount/(valuePixelSpan/4.0))); // approximately every 4 value pixels one data point on average + QCPGraphDataContainer::const_iterator intervalIt = currentIntervalStart; + int intervalItIndex = intervalIt-mDataContainer->constBegin(); + int c = 0; + while (intervalIt != it) + { + if ((c % dataModulo == 0 || intervalIt == minValueIt || intervalIt == maxValueIt) && intervalIt->value > valueMinRange && intervalIt->value < valueMaxRange) + scatterData->append(*intervalIt); + ++c; + if (!doScatterSkip) + ++intervalIt; + else // here we can't guarantee that adding scatterModulo doesn't exceed "it" (because "it" is equal to "end" here, and "end" isn't scatterModulo-aligned), so check via index comparison: + { + intervalItIndex += scatterModulo; + if (intervalItIndex < itIndex) + intervalIt += scatterModulo; + else + { + intervalIt = it; + intervalItIndex = itIndex; + } + } + } + } else if (currentIntervalStart->value > valueMinRange && currentIntervalStart->value < valueMaxRange) + scatterData->append(*currentIntervalStart); + + } else // don't use adaptive sampling algorithm, transfer points one-to-one from the data container into the output + { + QCPGraphDataContainer::const_iterator it = begin; + int itIndex = beginIndex; + scatterData->reserve(dataCount); + while (it != end) + { + scatterData->append(*it); + // advance to next data point: + if (!doScatterSkip) + ++it; + else + { + itIndex += scatterModulo; + if (itIndex < endIndex) + it += scatterModulo; + else + { + it = end; + itIndex = endIndex; + } + } + } + } +} + +/*! + This method outputs the currently visible data range via \a begin and \a end. The returned range + will also never exceed \a rangeRestriction. + + This method takes into account that the drawing of data lines at the axis rect border always + requires the points just outside the visible axis range. So \a begin and \a end may actually + indicate a range that contains one additional data point to the left and right of the visible + axis range. +*/ +void QCPGraph::getVisibleDataBounds(QCPGraphDataContainer::const_iterator &begin, QCPGraphDataContainer::const_iterator &end, const QCPDataRange &rangeRestriction) const +{ + if (rangeRestriction.isEmpty()) + { + end = mDataContainer->constEnd(); + begin = end; + } else + { + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + // get visible data range: + begin = mDataContainer->findBegin(keyAxis->range().lower); + end = mDataContainer->findEnd(keyAxis->range().upper); + // limit lower/upperEnd to rangeRestriction: + mDataContainer->limitIteratorsToDataRange(begin, end, rangeRestriction); // this also ensures rangeRestriction outside data bounds doesn't break anything + } +} + +/*! \internal + + This method goes through the passed points in \a lineData and returns a list of the segments + which don't contain NaN data points. + + \a keyOrientation defines whether the \a x or \a y member of the passed QPointF is used to check + for NaN. If \a keyOrientation is \c Qt::Horizontal, the \a y member is checked, if it is \c + Qt::Vertical, the \a x member is checked. + + \see getOverlappingSegments, drawFill +*/ +QVector QCPGraph::getNonNanSegments(const QVector *lineData, Qt::Orientation keyOrientation) const +{ + QVector result; + const int n = lineData->size(); + + QCPDataRange currentSegment(-1, -1); + int i = 0; + + if (keyOrientation == Qt::Horizontal) + { + while (i < n) + { + while (i < n && qIsNaN(lineData->at(i).y())) // seek next non-NaN data point + ++i; + if (i == n) + break; + currentSegment.setBegin(i++); + while (i < n && !qIsNaN(lineData->at(i).y())) // seek next NaN data point or end of data + ++i; + currentSegment.setEnd(i++); + result.append(currentSegment); + } + } else // keyOrientation == Qt::Vertical + { + while (i < n) + { + while (i < n && qIsNaN(lineData->at(i).x())) // seek next non-NaN data point + ++i; + if (i == n) + break; + currentSegment.setBegin(i++); + while (i < n && !qIsNaN(lineData->at(i).x())) // seek next NaN data point or end of data + ++i; + currentSegment.setEnd(i++); + result.append(currentSegment); + } + } + return result; +} + +/*! \internal + + This method takes two segment lists (e.g. created by \ref getNonNanSegments) \a thisSegments and + \a otherSegments, and their associated point data \a thisData and \a otherData. + + It returns all pairs of segments (the first from \a thisSegments, the second from \a + otherSegments), which overlap in plot coordinates. + + This method is useful in the case of a channel fill between two graphs, when only those non-NaN + segments which actually overlap in their key coordinate shall be considered for drawing a channel + fill polygon. + + It is assumed that the passed segments in \a thisSegments are ordered ascending by index, and + that the segments don't overlap themselves. The same is assumed for the segments in \a + otherSegments. This is fulfilled when the segments are obtained via \ref getNonNanSegments. + + \see getNonNanSegments, segmentsIntersect, drawFill, getChannelFillPolygon +*/ +QVector > QCPGraph::getOverlappingSegments(QVector thisSegments, const QVector *thisData, QVector otherSegments, const QVector *otherData) const +{ + QVector > result; + if (thisData->isEmpty() || otherData->isEmpty() || thisSegments.isEmpty() || otherSegments.isEmpty()) + return result; + + int thisIndex = 0; + int otherIndex = 0; + const bool verticalKey = mKeyAxis->orientation() == Qt::Vertical; + while (thisIndex < thisSegments.size() && otherIndex < otherSegments.size()) + { + if (thisSegments.at(thisIndex).size() < 2) // segments with fewer than two points won't have a fill anyhow + { + ++thisIndex; + continue; + } + if (otherSegments.at(otherIndex).size() < 2) // segments with fewer than two points won't have a fill anyhow + { + ++otherIndex; + continue; + } + double thisLower, thisUpper, otherLower, otherUpper; + if (!verticalKey) + { + thisLower = thisData->at(thisSegments.at(thisIndex).begin()).x(); + thisUpper = thisData->at(thisSegments.at(thisIndex).end()-1).x(); + otherLower = otherData->at(otherSegments.at(otherIndex).begin()).x(); + otherUpper = otherData->at(otherSegments.at(otherIndex).end()-1).x(); + } else + { + thisLower = thisData->at(thisSegments.at(thisIndex).begin()).y(); + thisUpper = thisData->at(thisSegments.at(thisIndex).end()-1).y(); + otherLower = otherData->at(otherSegments.at(otherIndex).begin()).y(); + otherUpper = otherData->at(otherSegments.at(otherIndex).end()-1).y(); + } + + int bPrecedence; + if (segmentsIntersect(thisLower, thisUpper, otherLower, otherUpper, bPrecedence)) + result.append(QPair(thisSegments.at(thisIndex), otherSegments.at(otherIndex))); + + if (bPrecedence <= 0) // otherSegment doesn't reach as far as thisSegment, so continue with next otherSegment, keeping current thisSegment + ++otherIndex; + else // otherSegment reaches further than thisSegment, so continue with next thisSegment, keeping current otherSegment + ++thisIndex; + } + + return result; +} + +/*! \internal + + Returns whether the segments defined by the coordinates (aLower, aUpper) and (bLower, bUpper) + have overlap. + + The output parameter \a bPrecedence indicates whether the \a b segment reaches farther than the + \a a segment or not. If \a bPrecedence returns 1, segment \a b reaches the farthest to higher + coordinates (i.e. bUpper > aUpper). If it returns -1, segment \a a reaches the farthest. Only if + both segment's upper bounds are identical, 0 is returned as \a bPrecedence. + + It is assumed that the lower bounds always have smaller or equal values than the upper bounds. + + \see getOverlappingSegments +*/ +bool QCPGraph::segmentsIntersect(double aLower, double aUpper, double bLower, double bUpper, int &bPrecedence) const +{ + bPrecedence = 0; + if (aLower > bUpper) + { + bPrecedence = -1; + return false; + } else if (bLower > aUpper) + { + bPrecedence = 1; + return false; + } else + { + if (aUpper > bUpper) + bPrecedence = -1; + else if (aUpper < bUpper) + bPrecedence = 1; + + return true; + } +} + +/*! \internal + + Returns the point which closes the fill polygon on the zero-value-line parallel to the key axis. + The logarithmic axis scale case is a bit special, since the zero-value-line in pixel coordinates + is in positive or negative infinity. So this case is handled separately by just closing the fill + polygon on the axis which lies in the direction towards the zero value. + + \a matchingDataPoint will provide the key (in pixels) of the returned point. Depending on whether + the key axis of this graph is horizontal or vertical, \a matchingDataPoint will provide the x or + y value of the returned point, respectively. +*/ +QPointF QCPGraph::getFillBasePoint(QPointF matchingDataPoint) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return QPointF(); } + + QPointF result; + if (valueAxis->scaleType() == QCPAxis::stLinear) + { + if (keyAxis->orientation() == Qt::Horizontal) + { + result.setX(matchingDataPoint.x()); + result.setY(valueAxis->coordToPixel(0)); + } else // keyAxis->orientation() == Qt::Vertical + { + result.setX(valueAxis->coordToPixel(0)); + result.setY(matchingDataPoint.y()); + } + } else // valueAxis->mScaleType == QCPAxis::stLogarithmic + { + // In logarithmic scaling we can't just draw to value 0 so we just fill all the way + // to the axis which is in the direction towards 0 + if (keyAxis->orientation() == Qt::Vertical) + { + if ((valueAxis->range().upper < 0 && !valueAxis->rangeReversed()) || + (valueAxis->range().upper > 0 && valueAxis->rangeReversed())) // if range is negative, zero is on opposite side of key axis + result.setX(keyAxis->axisRect()->right()); + else + result.setX(keyAxis->axisRect()->left()); + result.setY(matchingDataPoint.y()); + } else if (keyAxis->axisType() == QCPAxis::atTop || keyAxis->axisType() == QCPAxis::atBottom) + { + result.setX(matchingDataPoint.x()); + if ((valueAxis->range().upper < 0 && !valueAxis->rangeReversed()) || + (valueAxis->range().upper > 0 && valueAxis->rangeReversed())) // if range is negative, zero is on opposite side of key axis + result.setY(keyAxis->axisRect()->top()); + else + result.setY(keyAxis->axisRect()->bottom()); + } + } + return result; +} + +/*! \internal + + Returns the polygon needed for drawing normal fills between this graph and the key axis. + + Pass the graph's data points (in pixel coordinates) as \a lineData, and specify the \a segment + which shall be used for the fill. The collection of \a lineData points described by \a segment + must not contain NaN data points (see \ref getNonNanSegments). + + The returned fill polygon will be closed at the key axis (the zero-value line) for linear value + axes. For logarithmic value axes the polygon will reach just beyond the corresponding axis rect + side (see \ref getFillBasePoint). + + For increased performance (due to implicit sharing), keep the returned QPolygonF const. + + \see drawFill, getNonNanSegments +*/ +const QPolygonF QCPGraph::getFillPolygon(const QVector *lineData, QCPDataRange segment) const +{ + if (segment.size() < 2) + return QPolygonF(); + QPolygonF result(segment.size()+2); + + result[0] = getFillBasePoint(lineData->at(segment.begin())); + std::copy(lineData->constBegin()+segment.begin(), lineData->constBegin()+segment.end(), result.begin()+1); + result[result.size()-1] = getFillBasePoint(lineData->at(segment.end()-1)); + + return result; +} + +/*! \internal + + Returns the polygon needed for drawing (partial) channel fills between this graph and the graph + specified by \ref setChannelFillGraph. + + The data points of this graph are passed as pixel coordinates via \a thisData, the data of the + other graph as \a otherData. The returned polygon will be calculated for the specified data + segments \a thisSegment and \a otherSegment, pertaining to the respective \a thisData and \a + otherData, respectively. + + The passed \a thisSegment and \a otherSegment should correspond to the segment pairs returned by + \ref getOverlappingSegments, to make sure only segments that actually have key coordinate overlap + need to be processed here. + + For increased performance due to implicit sharing, keep the returned QPolygonF const. + + \see drawFill, getOverlappingSegments, getNonNanSegments +*/ +const QPolygonF QCPGraph::getChannelFillPolygon(const QVector *thisData, QCPDataRange thisSegment, const QVector *otherData, QCPDataRange otherSegment) const +{ + if (!mChannelFillGraph) + return QPolygonF(); + + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return QPolygonF(); } + if (!mChannelFillGraph.data()->mKeyAxis) { qDebug() << Q_FUNC_INFO << "channel fill target key axis invalid"; return QPolygonF(); } + + if (mChannelFillGraph.data()->mKeyAxis.data()->orientation() != keyAxis->orientation()) + return QPolygonF(); // don't have same axis orientation, can't fill that (Note: if keyAxis fits, valueAxis will fit too, because it's always orthogonal to keyAxis) + + if (thisData->isEmpty()) return QPolygonF(); + QVector thisSegmentData(thisSegment.size()); + QVector otherSegmentData(otherSegment.size()); + std::copy(thisData->constBegin()+thisSegment.begin(), thisData->constBegin()+thisSegment.end(), thisSegmentData.begin()); + std::copy(otherData->constBegin()+otherSegment.begin(), otherData->constBegin()+otherSegment.end(), otherSegmentData.begin()); + // pointers to be able to swap them, depending which data range needs cropping: + QVector *staticData = &thisSegmentData; + QVector *croppedData = &otherSegmentData; + + // crop both vectors to ranges in which the keys overlap (which coord is key, depends on axisType): + if (keyAxis->orientation() == Qt::Horizontal) + { + // x is key + // crop lower bound: + if (staticData->first().x() < croppedData->first().x()) // other one must be cropped + qSwap(staticData, croppedData); + const int lowBound = findIndexBelowX(croppedData, staticData->first().x()); + if (lowBound == -1) return QPolygonF(); // key ranges have no overlap + croppedData->remove(0, lowBound); + // set lowest point of cropped data to fit exactly key position of first static data point via linear interpolation: + if (croppedData->size() < 2) return QPolygonF(); // need at least two points for interpolation + double slope; + if (!qFuzzyCompare(croppedData->at(1).x(), croppedData->at(0).x())) + slope = (croppedData->at(1).y()-croppedData->at(0).y())/(croppedData->at(1).x()-croppedData->at(0).x()); + else + slope = 0; + (*croppedData)[0].setY(croppedData->at(0).y()+slope*(staticData->first().x()-croppedData->at(0).x())); + (*croppedData)[0].setX(staticData->first().x()); + + // crop upper bound: + if (staticData->last().x() > croppedData->last().x()) // other one must be cropped + qSwap(staticData, croppedData); + int highBound = findIndexAboveX(croppedData, staticData->last().x()); + if (highBound == -1) return QPolygonF(); // key ranges have no overlap + croppedData->remove(highBound+1, croppedData->size()-(highBound+1)); + // set highest point of cropped data to fit exactly key position of last static data point via linear interpolation: + if (croppedData->size() < 2) return QPolygonF(); // need at least two points for interpolation + const int li = croppedData->size()-1; // last index + if (!qFuzzyCompare(croppedData->at(li).x(), croppedData->at(li-1).x())) + slope = (croppedData->at(li).y()-croppedData->at(li-1).y())/(croppedData->at(li).x()-croppedData->at(li-1).x()); + else + slope = 0; + (*croppedData)[li].setY(croppedData->at(li-1).y()+slope*(staticData->last().x()-croppedData->at(li-1).x())); + (*croppedData)[li].setX(staticData->last().x()); + } else // mKeyAxis->orientation() == Qt::Vertical + { + // y is key + // crop lower bound: + if (staticData->first().y() < croppedData->first().y()) // other one must be cropped + qSwap(staticData, croppedData); + int lowBound = findIndexBelowY(croppedData, staticData->first().y()); + if (lowBound == -1) return QPolygonF(); // key ranges have no overlap + croppedData->remove(0, lowBound); + // set lowest point of cropped data to fit exactly key position of first static data point via linear interpolation: + if (croppedData->size() < 2) return QPolygonF(); // need at least two points for interpolation + double slope; + if (!qFuzzyCompare(croppedData->at(1).y(), croppedData->at(0).y())) // avoid division by zero in step plots + slope = (croppedData->at(1).x()-croppedData->at(0).x())/(croppedData->at(1).y()-croppedData->at(0).y()); + else + slope = 0; + (*croppedData)[0].setX(croppedData->at(0).x()+slope*(staticData->first().y()-croppedData->at(0).y())); + (*croppedData)[0].setY(staticData->first().y()); + + // crop upper bound: + if (staticData->last().y() > croppedData->last().y()) // other one must be cropped + qSwap(staticData, croppedData); + int highBound = findIndexAboveY(croppedData, staticData->last().y()); + if (highBound == -1) return QPolygonF(); // key ranges have no overlap + croppedData->remove(highBound+1, croppedData->size()-(highBound+1)); + // set highest point of cropped data to fit exactly key position of last static data point via linear interpolation: + if (croppedData->size() < 2) return QPolygonF(); // need at least two points for interpolation + int li = croppedData->size()-1; // last index + if (!qFuzzyCompare(croppedData->at(li).y(), croppedData->at(li-1).y())) // avoid division by zero in step plots + slope = (croppedData->at(li).x()-croppedData->at(li-1).x())/(croppedData->at(li).y()-croppedData->at(li-1).y()); + else + slope = 0; + (*croppedData)[li].setX(croppedData->at(li-1).x()+slope*(staticData->last().y()-croppedData->at(li-1).y())); + (*croppedData)[li].setY(staticData->last().y()); + } + + // return joined: + for (int i=otherSegmentData.size()-1; i>=0; --i) // insert reversed, otherwise the polygon will be twisted + thisSegmentData << otherSegmentData.at(i); + return QPolygonF(thisSegmentData); +} + +/*! \internal + + Finds the smallest index of \a data, whose points x value is just above \a x. Assumes x values in + \a data points are ordered ascending, as is ensured by \ref getLines/\ref getScatters if the key + axis is horizontal. + + Used to calculate the channel fill polygon, see \ref getChannelFillPolygon. +*/ +int QCPGraph::findIndexAboveX(const QVector *data, double x) const +{ + for (int i=data->size()-1; i>=0; --i) + { + if (data->at(i).x() < x) + { + if (isize()-1) + return i+1; + else + return data->size()-1; + } + } + return -1; +} + +/*! \internal + + Finds the highest index of \a data, whose points x value is just below \a x. Assumes x values in + \a data points are ordered ascending, as is ensured by \ref getLines/\ref getScatters if the key + axis is horizontal. + + Used to calculate the channel fill polygon, see \ref getChannelFillPolygon. +*/ +int QCPGraph::findIndexBelowX(const QVector *data, double x) const +{ + for (int i=0; isize(); ++i) + { + if (data->at(i).x() > x) + { + if (i>0) + return i-1; + else + return 0; + } + } + return -1; +} + +/*! \internal + + Finds the smallest index of \a data, whose points y value is just above \a y. Assumes y values in + \a data points are ordered ascending, as is ensured by \ref getLines/\ref getScatters if the key + axis is vertical. + + Used to calculate the channel fill polygon, see \ref getChannelFillPolygon. +*/ +int QCPGraph::findIndexAboveY(const QVector *data, double y) const +{ + for (int i=data->size()-1; i>=0; --i) + { + if (data->at(i).y() < y) + { + if (isize()-1) + return i+1; + else + return data->size()-1; + } + } + return -1; +} + +/*! \internal + + Calculates the minimum distance in pixels the graph's representation has from the given \a + pixelPoint. This is used to determine whether the graph was clicked or not, e.g. in \ref + selectTest. The closest data point to \a pixelPoint is returned in \a closestData. Note that if + the graph has a line representation, the returned distance may be smaller than the distance to + the \a closestData point, since the distance to the graph line is also taken into account. + + If either the graph has no data or if the line style is \ref lsNone and the scatter style's shape + is \ref QCPScatterStyle::ssNone (i.e. there is no visual representation of the graph), returns -1.0. +*/ +double QCPGraph::pointDistance(const QPointF &pixelPoint, QCPGraphDataContainer::const_iterator &closestData) const +{ + closestData = mDataContainer->constEnd(); + if (mDataContainer->isEmpty()) + return -1.0; + if (mLineStyle == lsNone && mScatterStyle.isNone()) + return -1.0; + + // calculate minimum distances to graph data points and find closestData iterator: + double minDistSqr = (std::numeric_limits::max)(); + // determine which key range comes into question, taking selection tolerance around pos into account: + double posKeyMin, posKeyMax, dummy; + pixelsToCoords(pixelPoint-QPointF(mParentPlot->selectionTolerance(), mParentPlot->selectionTolerance()), posKeyMin, dummy); + pixelsToCoords(pixelPoint+QPointF(mParentPlot->selectionTolerance(), mParentPlot->selectionTolerance()), posKeyMax, dummy); + if (posKeyMin > posKeyMax) + qSwap(posKeyMin, posKeyMax); + // iterate over found data points and then choose the one with the shortest distance to pos: + QCPGraphDataContainer::const_iterator begin = mDataContainer->findBegin(posKeyMin, true); + QCPGraphDataContainer::const_iterator end = mDataContainer->findEnd(posKeyMax, true); + for (QCPGraphDataContainer::const_iterator it=begin; it!=end; ++it) + { + const double currentDistSqr = QCPVector2D(coordsToPixels(it->key, it->value)-pixelPoint).lengthSquared(); + if (currentDistSqr < minDistSqr) + { + minDistSqr = currentDistSqr; + closestData = it; + } + } + + // calculate distance to graph line if there is one (if so, will probably be smaller than distance to closest data point): + if (mLineStyle != lsNone) + { + // line displayed, calculate distance to line segments: + QVector lineData; + getLines(&lineData, QCPDataRange(0, dataCount())); + QCPVector2D p(pixelPoint); + const int step = mLineStyle==lsImpulse ? 2 : 1; // impulse plot differs from other line styles in that the lineData points are only pairwise connected + for (int i=0; i *data, double y) const +{ + for (int i=0; isize(); ++i) + { + if (data->at(i).y() > y) + { + if (i>0) + return i-1; + else + return 0; + } + } + return -1; +} +/* end of 'src/plottables/plottable-graph.cpp' */ + + +/* including file 'src/plottables/plottable-curve.cpp', size 63742 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPCurveData +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPCurveData + \brief Holds the data of one single data point for QCPCurve. + + The stored data is: + \li \a t: the free ordering parameter of this curve point, like in the mathematical vector (x(t), y(t)). (This is the \a sortKey) + \li \a key: coordinate on the key axis of this curve point (this is the \a mainKey) + \li \a value: coordinate on the value axis of this curve point (this is the \a mainValue) + + The container for storing multiple data points is \ref QCPCurveDataContainer. It is a typedef for + \ref QCPDataContainer with \ref QCPCurveData as the DataType template parameter. See the + documentation there for an explanation regarding the data type's generic methods. + + \see QCPCurveDataContainer +*/ + +/* start documentation of inline functions */ + +/*! \fn double QCPCurveData::sortKey() const + + Returns the \a t member of this data point. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn static QCPCurveData QCPCurveData::fromSortKey(double sortKey) + + Returns a data point with the specified \a sortKey (assigned to the data point's \a t member). + All other members are set to zero. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn static static bool QCPCurveData::sortKeyIsMainKey() + + Since the member \a key is the data point key coordinate and the member \a t is the data ordering + parameter, this method returns false. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn double QCPCurveData::mainKey() const + + Returns the \a key member of this data point. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn double QCPCurveData::mainValue() const + + Returns the \a value member of this data point. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn QCPRange QCPCurveData::valueRange() const + + Returns a QCPRange with both lower and upper boundary set to \a value of this data point. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/* end documentation of inline functions */ + +/*! + Constructs a curve data point with t, key and value set to zero. +*/ +QCPCurveData::QCPCurveData() : + t(0), + key(0), + value(0) +{ +} + +/*! + Constructs a curve data point with the specified \a t, \a key and \a value. +*/ +QCPCurveData::QCPCurveData(double t, double key, double value) : + t(t), + key(key), + value(value) +{ +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPCurve +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPCurve + \brief A plottable representing a parametric curve in a plot. + + \image html QCPCurve.png + + Unlike QCPGraph, plottables of this type may have multiple points with the same key coordinate, + so their visual representation can have \a loops. This is realized by introducing a third + coordinate \a t, which defines the order of the points described by the other two coordinates \a + x and \a y. + + To plot data, assign it with the \ref setData or \ref addData functions. Alternatively, you can + also access and modify the curve's data via the \ref data method, which returns a pointer to the + internal \ref QCPCurveDataContainer. + + Gaps in the curve can be created by adding data points with NaN as key and value + (qQNaN() or std::numeric_limits::quiet_NaN()) in between the two data points that shall be + separated. + + \section qcpcurve-appearance Changing the appearance + + The appearance of the curve is determined by the pen and the brush (\ref setPen, \ref setBrush). + + \section qcpcurve-usage Usage + + Like all data representing objects in QCustomPlot, the QCPCurve is a plottable + (QCPAbstractPlottable). So the plottable-interface of QCustomPlot applies + (QCustomPlot::plottable, QCustomPlot::removePlottable, etc.) + + Usually, you first create an instance: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpcurve-creation-1 + which registers it with the QCustomPlot instance of the passed axes. Note that this QCustomPlot instance takes + ownership of the plottable, so do not delete it manually but use QCustomPlot::removePlottable() instead. + The newly created plottable can be modified, e.g.: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpcurve-creation-2 +*/ + +/* start of documentation of inline functions */ + +/*! \fn QSharedPointer QCPCurve::data() const + + Returns a shared pointer to the internal data storage of type \ref QCPCurveDataContainer. You may + use it to directly manipulate the data, which may be more convenient and faster than using the + regular \ref setData or \ref addData methods. +*/ + +/* end of documentation of inline functions */ + +/*! + Constructs a curve which uses \a keyAxis as its key axis ("x") and \a valueAxis as its value + axis ("y"). \a keyAxis and \a valueAxis must reside in the same QCustomPlot instance and not have + the same orientation. If either of these restrictions is violated, a corresponding message is + printed to the debug output (qDebug), the construction is not aborted, though. + + The created QCPCurve is automatically registered with the QCustomPlot instance inferred from \a + keyAxis. This QCustomPlot instance takes ownership of the QCPCurve, so do not delete it manually + but use QCustomPlot::removePlottable() instead. +*/ +QCPCurve::QCPCurve(QCPAxis *keyAxis, QCPAxis *valueAxis) : + QCPAbstractPlottable1D(keyAxis, valueAxis) +{ + // modify inherited properties from abstract plottable: + setPen(QPen(Qt::blue, 0)); + setBrush(Qt::NoBrush); + + setScatterStyle(QCPScatterStyle()); + setLineStyle(lsLine); + setScatterSkip(0); +} + +QCPCurve::~QCPCurve() +{ +} + +/*! \overload + + Replaces the current data container with the provided \a data container. + + Since a QSharedPointer is used, multiple QCPCurves may share the same data container safely. + Modifying the data in the container will then affect all curves that share the container. Sharing + can be achieved by simply exchanging the data containers wrapped in shared pointers: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpcurve-datasharing-1 + + If you do not wish to share containers, but create a copy from an existing container, rather use + the \ref QCPDataContainer::set method on the curve's data container directly: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpcurve-datasharing-2 + + \see addData +*/ +void QCPCurve::setData(QSharedPointer data) +{ + mDataContainer = data; +} + +/*! \overload + + Replaces the current data with the provided points in \a t, \a keys and \a values. The provided + vectors should have equal length. Else, the number of added points will be the size of the + smallest vector. + + If you can guarantee that the passed data points are sorted by \a t in ascending order, you can + set \a alreadySorted to true, to improve performance by saving a sorting run. + + \see addData +*/ +void QCPCurve::setData(const QVector &t, const QVector &keys, const QVector &values, bool alreadySorted) +{ + mDataContainer->clear(); + addData(t, keys, values, alreadySorted); +} + + +/*! \overload + + Replaces the current data with the provided points in \a keys and \a values. The provided vectors + should have equal length. Else, the number of added points will be the size of the smallest + vector. + + The t parameter of each data point will be set to the integer index of the respective key/value + pair. + + \see addData +*/ +void QCPCurve::setData(const QVector &keys, const QVector &values) +{ + mDataContainer->clear(); + addData(keys, values); +} + +/*! + Sets the visual appearance of single data points in the plot. If set to \ref + QCPScatterStyle::ssNone, no scatter points are drawn (e.g. for line-only plots with appropriate + line style). + + \see QCPScatterStyle, setLineStyle +*/ +void QCPCurve::setScatterStyle(const QCPScatterStyle &style) +{ + mScatterStyle = style; +} + +/*! + If scatters are displayed (scatter style not \ref QCPScatterStyle::ssNone), \a skip number of + scatter points are skipped/not drawn after every drawn scatter point. + + This can be used to make the data appear sparser while for example still having a smooth line, + and to improve performance for very high density plots. + + If \a skip is set to 0 (default), all scatter points are drawn. + + \see setScatterStyle +*/ +void QCPCurve::setScatterSkip(int skip) +{ + mScatterSkip = qMax(0, skip); +} + +/*! + Sets how the single data points are connected in the plot or how they are represented visually + apart from the scatter symbol. For scatter-only plots, set \a style to \ref lsNone and \ref + setScatterStyle to the desired scatter style. + + \see setScatterStyle +*/ +void QCPCurve::setLineStyle(QCPCurve::LineStyle style) +{ + mLineStyle = style; +} + +/*! \overload + + Adds the provided points in \a t, \a keys and \a values to the current data. The provided vectors + should have equal length. Else, the number of added points will be the size of the smallest + vector. + + If you can guarantee that the passed data points are sorted by \a keys in ascending order, you + can set \a alreadySorted to true, to improve performance by saving a sorting run. + + Alternatively, you can also access and modify the data directly via the \ref data method, which + returns a pointer to the internal data container. +*/ +void QCPCurve::addData(const QVector &t, const QVector &keys, const QVector &values, bool alreadySorted) +{ + if (t.size() != keys.size() || t.size() != values.size()) + qDebug() << Q_FUNC_INFO << "ts, keys and values have different sizes:" << t.size() << keys.size() << values.size(); + const int n = qMin(qMin(t.size(), keys.size()), values.size()); + QVector tempData(n); + QVector::iterator it = tempData.begin(); + const QVector::iterator itEnd = tempData.end(); + int i = 0; + while (it != itEnd) + { + it->t = t[i]; + it->key = keys[i]; + it->value = values[i]; + ++it; + ++i; + } + mDataContainer->add(tempData, alreadySorted); // don't modify tempData beyond this to prevent copy on write +} + +/*! \overload + + Adds the provided points in \a keys and \a values to the current data. The provided vectors + should have equal length. Else, the number of added points will be the size of the smallest + vector. + + The t parameter of each data point will be set to the integer index of the respective key/value + pair. + + Alternatively, you can also access and modify the data directly via the \ref data method, which + returns a pointer to the internal data container. +*/ +void QCPCurve::addData(const QVector &keys, const QVector &values) +{ + if (keys.size() != values.size()) + qDebug() << Q_FUNC_INFO << "keys and values have different sizes:" << keys.size() << values.size(); + const int n = qMin(keys.size(), values.size()); + double tStart; + if (!mDataContainer->isEmpty()) + tStart = (mDataContainer->constEnd()-1)->t + 1.0; + else + tStart = 0; + QVector tempData(n); + QVector::iterator it = tempData.begin(); + const QVector::iterator itEnd = tempData.end(); + int i = 0; + while (it != itEnd) + { + it->t = tStart + i; + it->key = keys[i]; + it->value = values[i]; + ++it; + ++i; + } + mDataContainer->add(tempData, true); // don't modify tempData beyond this to prevent copy on write +} + +/*! \overload + Adds the provided data point as \a t, \a key and \a value to the current data. + + Alternatively, you can also access and modify the data directly via the \ref data method, which + returns a pointer to the internal data container. +*/ +void QCPCurve::addData(double t, double key, double value) +{ + mDataContainer->add(QCPCurveData(t, key, value)); +} + +/*! \overload + + Adds the provided data point as \a key and \a value to the current data. + + The t parameter is generated automatically by increments of 1 for each point, starting at the + highest t of previously existing data or 0, if the curve data is empty. + + Alternatively, you can also access and modify the data directly via the \ref data method, which + returns a pointer to the internal data container. +*/ +void QCPCurve::addData(double key, double value) +{ + if (!mDataContainer->isEmpty()) + mDataContainer->add(QCPCurveData((mDataContainer->constEnd()-1)->t + 1.0, key, value)); + else + mDataContainer->add(QCPCurveData(0.0, key, value)); +} + +/*! + Implements a selectTest specific to this plottable's point geometry. + + If \a details is not 0, it will be set to a \ref QCPDataSelection, describing the closest data + point to \a pos. + + \seebaseclassmethod \ref QCPAbstractPlottable::selectTest +*/ +double QCPCurve::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + if ((onlySelectable && mSelectable == QCP::stNone) || mDataContainer->isEmpty()) + return -1; + if (!mKeyAxis || !mValueAxis) + return -1; + + if (mKeyAxis.data()->axisRect()->rect().contains(pos.toPoint())) + { + QCPCurveDataContainer::const_iterator closestDataPoint = mDataContainer->constEnd(); + double result = pointDistance(pos, closestDataPoint); + if (details) + { + int pointIndex = closestDataPoint-mDataContainer->constBegin(); + details->setValue(QCPDataSelection(QCPDataRange(pointIndex, pointIndex+1))); + } + return result; + } else + return -1; +} + +/* inherits documentation from base class */ +QCPRange QCPCurve::getKeyRange(bool &foundRange, QCP::SignDomain inSignDomain) const +{ + return mDataContainer->keyRange(foundRange, inSignDomain); +} + +/* inherits documentation from base class */ +QCPRange QCPCurve::getValueRange(bool &foundRange, QCP::SignDomain inSignDomain, const QCPRange &inKeyRange) const +{ + return mDataContainer->valueRange(foundRange, inSignDomain, inKeyRange); +} + +/* inherits documentation from base class */ +void QCPCurve::draw(QCPPainter *painter) +{ + if (mDataContainer->isEmpty()) return; + + // allocate line vector: + QVector lines, scatters; + + // loop over and draw segments of unselected/selected data: + QList selectedSegments, unselectedSegments, allSegments; + getDataSegments(selectedSegments, unselectedSegments); + allSegments << unselectedSegments << selectedSegments; + for (int i=0; i= unselectedSegments.size(); + + // fill with curve data: + QPen finalCurvePen = mPen; // determine the final pen already here, because the line optimization depends on its stroke width + if (isSelectedSegment && mSelectionDecorator) + finalCurvePen = mSelectionDecorator->pen(); + + QCPDataRange lineDataRange = isSelectedSegment ? allSegments.at(i) : allSegments.at(i).adjusted(-1, 1); // unselected segments extend lines to bordering selected data point (safe to exceed total data bounds in first/last segment, getCurveLines takes care) + getCurveLines(&lines, lineDataRange, finalCurvePen.widthF()); + + // check data validity if flag set: + #ifdef QCUSTOMPLOT_CHECK_DATA + for (QCPCurveDataContainer::const_iterator it = mDataContainer->constBegin(); it != mDataContainer->constEnd(); ++it) + { + if (QCP::isInvalidData(it->t) || + QCP::isInvalidData(it->key, it->value)) + qDebug() << Q_FUNC_INFO << "Data point at" << it->key << "invalid." << "Plottable name:" << name(); + } + #endif + + // draw curve fill: + applyFillAntialiasingHint(painter); + if (isSelectedSegment && mSelectionDecorator) + mSelectionDecorator->applyBrush(painter); + else + painter->setBrush(mBrush); + painter->setPen(Qt::NoPen); + if (painter->brush().style() != Qt::NoBrush && painter->brush().color().alpha() != 0) + painter->drawPolygon(QPolygonF(lines)); + + // draw curve line: + if (mLineStyle != lsNone) + { + painter->setPen(finalCurvePen); + painter->setBrush(Qt::NoBrush); + drawCurveLine(painter, lines); + } + + // draw scatters: + QCPScatterStyle finalScatterStyle = mScatterStyle; + if (isSelectedSegment && mSelectionDecorator) + finalScatterStyle = mSelectionDecorator->getFinalScatterStyle(mScatterStyle); + if (!finalScatterStyle.isNone()) + { + getScatters(&scatters, allSegments.at(i), finalScatterStyle.size()); + drawScatterPlot(painter, scatters, finalScatterStyle); + } + } + + // draw other selection decoration that isn't just line/scatter pens and brushes: + if (mSelectionDecorator) + mSelectionDecorator->drawDecoration(painter, selection()); +} + +/* inherits documentation from base class */ +void QCPCurve::drawLegendIcon(QCPPainter *painter, const QRectF &rect) const +{ + // draw fill: + if (mBrush.style() != Qt::NoBrush) + { + applyFillAntialiasingHint(painter); + painter->fillRect(QRectF(rect.left(), rect.top()+rect.height()/2.0, rect.width(), rect.height()/3.0), mBrush); + } + // draw line vertically centered: + if (mLineStyle != lsNone) + { + applyDefaultAntialiasingHint(painter); + painter->setPen(mPen); + painter->drawLine(QLineF(rect.left(), rect.top()+rect.height()/2.0, rect.right()+5, rect.top()+rect.height()/2.0)); // +5 on x2 else last segment is missing from dashed/dotted pens + } + // draw scatter symbol: + if (!mScatterStyle.isNone()) + { + applyScattersAntialiasingHint(painter); + // scale scatter pixmap if it's too large to fit in legend icon rect: + if (mScatterStyle.shape() == QCPScatterStyle::ssPixmap && (mScatterStyle.pixmap().size().width() > rect.width() || mScatterStyle.pixmap().size().height() > rect.height())) + { + QCPScatterStyle scaledStyle(mScatterStyle); + scaledStyle.setPixmap(scaledStyle.pixmap().scaled(rect.size().toSize(), Qt::KeepAspectRatio, Qt::SmoothTransformation)); + scaledStyle.applyTo(painter, mPen); + scaledStyle.drawShape(painter, QRectF(rect).center()); + } else + { + mScatterStyle.applyTo(painter, mPen); + mScatterStyle.drawShape(painter, QRectF(rect).center()); + } + } +} + +/*! \internal + + Draws lines between the points in \a lines, given in pixel coordinates. + + \see drawScatterPlot, getCurveLines +*/ +void QCPCurve::drawCurveLine(QCPPainter *painter, const QVector &lines) const +{ + if (painter->pen().style() != Qt::NoPen && painter->pen().color().alpha() != 0) + { + applyDefaultAntialiasingHint(painter); + drawPolyline(painter, lines); + } +} + +/*! \internal + + Draws scatter symbols at every point passed in \a points, given in pixel coordinates. The + scatters will be drawn with \a painter and have the appearance as specified in \a style. + + \see drawCurveLine, getCurveLines +*/ +void QCPCurve::drawScatterPlot(QCPPainter *painter, const QVector &points, const QCPScatterStyle &style) const +{ + // draw scatter point symbols: + applyScattersAntialiasingHint(painter); + style.applyTo(painter, mPen); + for (int i=0; i *lines, const QCPDataRange &dataRange, double penWidth) const +{ + if (!lines) return; + lines->clear(); + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + + // add margins to rect to compensate for stroke width + const double strokeMargin = qMax(qreal(1.0), qreal(penWidth*0.75)); // stroke radius + 50% safety + const double keyMin = keyAxis->pixelToCoord(keyAxis->coordToPixel(keyAxis->range().lower)-strokeMargin*keyAxis->pixelOrientation()); + const double keyMax = keyAxis->pixelToCoord(keyAxis->coordToPixel(keyAxis->range().upper)+strokeMargin*keyAxis->pixelOrientation()); + const double valueMin = valueAxis->pixelToCoord(valueAxis->coordToPixel(valueAxis->range().lower)-strokeMargin*valueAxis->pixelOrientation()); + const double valueMax = valueAxis->pixelToCoord(valueAxis->coordToPixel(valueAxis->range().upper)+strokeMargin*valueAxis->pixelOrientation()); + QCPCurveDataContainer::const_iterator itBegin = mDataContainer->constBegin(); + QCPCurveDataContainer::const_iterator itEnd = mDataContainer->constEnd(); + mDataContainer->limitIteratorsToDataRange(itBegin, itEnd, dataRange); + if (itBegin == itEnd) + return; + QCPCurveDataContainer::const_iterator it = itBegin; + QCPCurveDataContainer::const_iterator prevIt = itEnd-1; + int prevRegion = getRegion(prevIt->key, prevIt->value, keyMin, valueMax, keyMax, valueMin); + QVector trailingPoints; // points that must be applied after all other points (are generated only when handling first point to get virtual segment between last and first point right) + while (it != itEnd) + { + const int currentRegion = getRegion(it->key, it->value, keyMin, valueMax, keyMax, valueMin); + if (currentRegion != prevRegion) // changed region, possibly need to add some optimized edge points or original points if entering R + { + if (currentRegion != 5) // segment doesn't end in R, so it's a candidate for removal + { + QPointF crossA, crossB; + if (prevRegion == 5) // we're coming from R, so add this point optimized + { + lines->append(getOptimizedPoint(currentRegion, it->key, it->value, prevIt->key, prevIt->value, keyMin, valueMax, keyMax, valueMin)); + // in the situations 5->1/7/9/3 the segment may leave R and directly cross through two outer regions. In these cases we need to add an additional corner point + *lines << getOptimizedCornerPoints(prevRegion, currentRegion, prevIt->key, prevIt->value, it->key, it->value, keyMin, valueMax, keyMax, valueMin); + } else if (mayTraverse(prevRegion, currentRegion) && + getTraverse(prevIt->key, prevIt->value, it->key, it->value, keyMin, valueMax, keyMax, valueMin, crossA, crossB)) + { + // add the two cross points optimized if segment crosses R and if segment isn't virtual zeroth segment between last and first curve point: + QVector beforeTraverseCornerPoints, afterTraverseCornerPoints; + getTraverseCornerPoints(prevRegion, currentRegion, keyMin, valueMax, keyMax, valueMin, beforeTraverseCornerPoints, afterTraverseCornerPoints); + if (it != itBegin) + { + *lines << beforeTraverseCornerPoints; + lines->append(crossA); + lines->append(crossB); + *lines << afterTraverseCornerPoints; + } else + { + lines->append(crossB); + *lines << afterTraverseCornerPoints; + trailingPoints << beforeTraverseCornerPoints << crossA ; + } + } else // doesn't cross R, line is just moving around in outside regions, so only need to add optimized point(s) at the boundary corner(s) + { + *lines << getOptimizedCornerPoints(prevRegion, currentRegion, prevIt->key, prevIt->value, it->key, it->value, keyMin, valueMax, keyMax, valueMin); + } + } else // segment does end in R, so we add previous point optimized and this point at original position + { + if (it == itBegin) // it is first point in curve and prevIt is last one. So save optimized point for adding it to the lineData in the end + trailingPoints << getOptimizedPoint(prevRegion, prevIt->key, prevIt->value, it->key, it->value, keyMin, valueMax, keyMax, valueMin); + else + lines->append(getOptimizedPoint(prevRegion, prevIt->key, prevIt->value, it->key, it->value, keyMin, valueMax, keyMax, valueMin)); + lines->append(coordsToPixels(it->key, it->value)); + } + } else // region didn't change + { + if (currentRegion == 5) // still in R, keep adding original points + { + lines->append(coordsToPixels(it->key, it->value)); + } else // still outside R, no need to add anything + { + // see how this is not doing anything? That's the main optimization... + } + } + prevIt = it; + prevRegion = currentRegion; + ++it; + } + *lines << trailingPoints; +} + +/*! \internal + + Called by \ref draw to generate points in pixel coordinates which represent the scatters of the + curve. If a scatter skip is configured (\ref setScatterSkip), the returned points are accordingly + sparser. + + Scatters that aren't visible in the current axis rect are optimized away. + + \a scatters will be filled with points in pixel coordinates, that can be drawn with \ref + drawScatterPlot. + + \a dataRange specifies the beginning and ending data indices that will be taken into account for + conversion. + + \a scatterWidth specifies the scatter width that will be used to later draw the scatters at pixel + coordinates generated by this function. This is needed here to calculate an accordingly wider + margin around the axis rect when performing the data point reduction. + + \see draw, drawScatterPlot +*/ +void QCPCurve::getScatters(QVector *scatters, const QCPDataRange &dataRange, double scatterWidth) const +{ + if (!scatters) return; + scatters->clear(); + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + + QCPCurveDataContainer::const_iterator begin = mDataContainer->constBegin(); + QCPCurveDataContainer::const_iterator end = mDataContainer->constEnd(); + mDataContainer->limitIteratorsToDataRange(begin, end, dataRange); + if (begin == end) + return; + const int scatterModulo = mScatterSkip+1; + const bool doScatterSkip = mScatterSkip > 0; + int endIndex = end-mDataContainer->constBegin(); + + QCPRange keyRange = keyAxis->range(); + QCPRange valueRange = valueAxis->range(); + // extend range to include width of scatter symbols: + keyRange.lower = keyAxis->pixelToCoord(keyAxis->coordToPixel(keyRange.lower)-scatterWidth*keyAxis->pixelOrientation()); + keyRange.upper = keyAxis->pixelToCoord(keyAxis->coordToPixel(keyRange.upper)+scatterWidth*keyAxis->pixelOrientation()); + valueRange.lower = valueAxis->pixelToCoord(valueAxis->coordToPixel(valueRange.lower)-scatterWidth*valueAxis->pixelOrientation()); + valueRange.upper = valueAxis->pixelToCoord(valueAxis->coordToPixel(valueRange.upper)+scatterWidth*valueAxis->pixelOrientation()); + + QCPCurveDataContainer::const_iterator it = begin; + int itIndex = begin-mDataContainer->constBegin(); + while (doScatterSkip && it != end && itIndex % scatterModulo != 0) // advance begin iterator to first non-skipped scatter + { + ++itIndex; + ++it; + } + if (keyAxis->orientation() == Qt::Vertical) + { + while (it != end) + { + if (!qIsNaN(it->value) && keyRange.contains(it->key) && valueRange.contains(it->value)) + scatters->append(QPointF(valueAxis->coordToPixel(it->value), keyAxis->coordToPixel(it->key))); + + // advance iterator to next (non-skipped) data point: + if (!doScatterSkip) + ++it; + else + { + itIndex += scatterModulo; + if (itIndex < endIndex) // make sure we didn't jump over end + it += scatterModulo; + else + { + it = end; + itIndex = endIndex; + } + } + } + } else + { + while (it != end) + { + if (!qIsNaN(it->value) && keyRange.contains(it->key) && valueRange.contains(it->value)) + scatters->append(QPointF(keyAxis->coordToPixel(it->key), valueAxis->coordToPixel(it->value))); + + // advance iterator to next (non-skipped) data point: + if (!doScatterSkip) + ++it; + else + { + itIndex += scatterModulo; + if (itIndex < endIndex) // make sure we didn't jump over end + it += scatterModulo; + else + { + it = end; + itIndex = endIndex; + } + } + } + } +} + +/*! \internal + + This function is part of the curve optimization algorithm of \ref getCurveLines. + + It returns the region of the given point (\a key, \a value) with respect to a rectangle defined + by \a keyMin, \a keyMax, \a valueMin, and \a valueMax. + + The regions are enumerated from top to bottom (\a valueMin to \a valueMax) and left to right (\a + keyMin to \a keyMax): + + + + + +
147
258
369
+ + With the rectangle being region 5, and the outer regions extending infinitely outwards. In the + curve optimization algorithm, region 5 is considered to be the visible portion of the plot. +*/ +int QCPCurve::getRegion(double key, double value, double keyMin, double valueMax, double keyMax, double valueMin) const +{ + if (key < keyMin) // region 123 + { + if (value > valueMax) + return 1; + else if (value < valueMin) + return 3; + else + return 2; + } else if (key > keyMax) // region 789 + { + if (value > valueMax) + return 7; + else if (value < valueMin) + return 9; + else + return 8; + } else // region 456 + { + if (value > valueMax) + return 4; + else if (value < valueMin) + return 6; + else + return 5; + } +} + +/*! \internal + + This function is part of the curve optimization algorithm of \ref getCurveLines. + + This method is used in case the current segment passes from inside the visible rect (region 5, + see \ref getRegion) to any of the outer regions (\a otherRegion). The current segment is given by + the line connecting (\a key, \a value) with (\a otherKey, \a otherValue). + + It returns the intersection point of the segment with the border of region 5. + + For this function it doesn't matter whether (\a key, \a value) is the point inside region 5 or + whether it's (\a otherKey, \a otherValue), i.e. whether the segment is coming from region 5 or + leaving it. It is important though that \a otherRegion correctly identifies the other region not + equal to 5. +*/ +QPointF QCPCurve::getOptimizedPoint(int otherRegion, double otherKey, double otherValue, double key, double value, double keyMin, double valueMax, double keyMax, double valueMin) const +{ + // The intersection point interpolation here is done in pixel coordinates, so we don't need to + // differentiate between different axis scale types. Note that the nomenclature + // top/left/bottom/right/min/max is with respect to the rect in plot coordinates, wich may be + // different in pixel coordinates (horz/vert key axes, reversed ranges) + + const double keyMinPx = mKeyAxis->coordToPixel(keyMin); + const double keyMaxPx = mKeyAxis->coordToPixel(keyMax); + const double valueMinPx = mValueAxis->coordToPixel(valueMin); + const double valueMaxPx = mValueAxis->coordToPixel(valueMax); + const double otherValuePx = mValueAxis->coordToPixel(otherValue); + const double valuePx = mValueAxis->coordToPixel(value); + const double otherKeyPx = mKeyAxis->coordToPixel(otherKey); + const double keyPx = mKeyAxis->coordToPixel(key); + double intersectKeyPx = keyMinPx; // initial key just a fail-safe + double intersectValuePx = valueMinPx; // initial value just a fail-safe + switch (otherRegion) + { + case 1: // top and left edge + { + intersectValuePx = valueMaxPx; + intersectKeyPx = otherKeyPx + (keyPx-otherKeyPx)/(valuePx-otherValuePx)*(intersectValuePx-otherValuePx); + if (intersectKeyPx < qMin(keyMinPx, keyMaxPx) || intersectKeyPx > qMax(keyMinPx, keyMaxPx)) // check whether top edge is not intersected, then it must be left edge (qMin/qMax necessary since axes may be reversed) + { + intersectKeyPx = keyMinPx; + intersectValuePx = otherValuePx + (valuePx-otherValuePx)/(keyPx-otherKeyPx)*(intersectKeyPx-otherKeyPx); + } + break; + } + case 2: // left edge + { + intersectKeyPx = keyMinPx; + intersectValuePx = otherValuePx + (valuePx-otherValuePx)/(keyPx-otherKeyPx)*(intersectKeyPx-otherKeyPx); + break; + } + case 3: // bottom and left edge + { + intersectValuePx = valueMinPx; + intersectKeyPx = otherKeyPx + (keyPx-otherKeyPx)/(valuePx-otherValuePx)*(intersectValuePx-otherValuePx); + if (intersectKeyPx < qMin(keyMinPx, keyMaxPx) || intersectKeyPx > qMax(keyMinPx, keyMaxPx)) // check whether bottom edge is not intersected, then it must be left edge (qMin/qMax necessary since axes may be reversed) + { + intersectKeyPx = keyMinPx; + intersectValuePx = otherValuePx + (valuePx-otherValuePx)/(keyPx-otherKeyPx)*(intersectKeyPx-otherKeyPx); + } + break; + } + case 4: // top edge + { + intersectValuePx = valueMaxPx; + intersectKeyPx = otherKeyPx + (keyPx-otherKeyPx)/(valuePx-otherValuePx)*(intersectValuePx-otherValuePx); + break; + } + case 5: + { + break; // case 5 shouldn't happen for this function but we add it anyway to prevent potential discontinuity in branch table + } + case 6: // bottom edge + { + intersectValuePx = valueMinPx; + intersectKeyPx = otherKeyPx + (keyPx-otherKeyPx)/(valuePx-otherValuePx)*(intersectValuePx-otherValuePx); + break; + } + case 7: // top and right edge + { + intersectValuePx = valueMaxPx; + intersectKeyPx = otherKeyPx + (keyPx-otherKeyPx)/(valuePx-otherValuePx)*(intersectValuePx-otherValuePx); + if (intersectKeyPx < qMin(keyMinPx, keyMaxPx) || intersectKeyPx > qMax(keyMinPx, keyMaxPx)) // check whether top edge is not intersected, then it must be right edge (qMin/qMax necessary since axes may be reversed) + { + intersectKeyPx = keyMaxPx; + intersectValuePx = otherValuePx + (valuePx-otherValuePx)/(keyPx-otherKeyPx)*(intersectKeyPx-otherKeyPx); + } + break; + } + case 8: // right edge + { + intersectKeyPx = keyMaxPx; + intersectValuePx = otherValuePx + (valuePx-otherValuePx)/(keyPx-otherKeyPx)*(intersectKeyPx-otherKeyPx); + break; + } + case 9: // bottom and right edge + { + intersectValuePx = valueMinPx; + intersectKeyPx = otherKeyPx + (keyPx-otherKeyPx)/(valuePx-otherValuePx)*(intersectValuePx-otherValuePx); + if (intersectKeyPx < qMin(keyMinPx, keyMaxPx) || intersectKeyPx > qMax(keyMinPx, keyMaxPx)) // check whether bottom edge is not intersected, then it must be right edge (qMin/qMax necessary since axes may be reversed) + { + intersectKeyPx = keyMaxPx; + intersectValuePx = otherValuePx + (valuePx-otherValuePx)/(keyPx-otherKeyPx)*(intersectKeyPx-otherKeyPx); + } + break; + } + } + if (mKeyAxis->orientation() == Qt::Horizontal) + return QPointF(intersectKeyPx, intersectValuePx); + else + return QPointF(intersectValuePx, intersectKeyPx); +} + +/*! \internal + + This function is part of the curve optimization algorithm of \ref getCurveLines. + + In situations where a single segment skips over multiple regions it might become necessary to add + extra points at the corners of region 5 (see \ref getRegion) such that the optimized segment + doesn't unintentionally cut through the visible area of the axis rect and create plot artifacts. + This method provides these points that must be added, assuming the original segment doesn't + start, end, or traverse region 5. (Corner points where region 5 is traversed are calculated by + \ref getTraverseCornerPoints.) + + For example, consider a segment which directly goes from region 4 to 2 but originally is far out + to the top left such that it doesn't cross region 5. Naively optimizing these points by + projecting them on the top and left borders of region 5 will create a segment that surely crosses + 5, creating a visual artifact in the plot. This method prevents this by providing extra points at + the top left corner, making the optimized curve correctly pass from region 4 to 1 to 2 without + traversing 5. +*/ +QVector QCPCurve::getOptimizedCornerPoints(int prevRegion, int currentRegion, double prevKey, double prevValue, double key, double value, double keyMin, double valueMax, double keyMax, double valueMin) const +{ + QVector result; + switch (prevRegion) + { + case 1: + { + switch (currentRegion) + { + case 2: { result << coordsToPixels(keyMin, valueMax); break; } + case 4: { result << coordsToPixels(keyMin, valueMax); break; } + case 3: { result << coordsToPixels(keyMin, valueMax) << coordsToPixels(keyMin, valueMin); break; } + case 7: { result << coordsToPixels(keyMin, valueMax) << coordsToPixels(keyMax, valueMax); break; } + case 6: { result << coordsToPixels(keyMin, valueMax) << coordsToPixels(keyMin, valueMin); result.append(result.last()); break; } + case 8: { result << coordsToPixels(keyMin, valueMax) << coordsToPixels(keyMax, valueMax); result.append(result.last()); break; } + case 9: { // in this case we need another distinction of cases: segment may pass below or above rect, requiring either bottom right or top left corner points + if ((value-prevValue)/(key-prevKey)*(keyMin-key)+value < valueMin) // segment passes below R + { result << coordsToPixels(keyMin, valueMax) << coordsToPixels(keyMin, valueMin); result.append(result.last()); result << coordsToPixels(keyMax, valueMin); } + else + { result << coordsToPixels(keyMin, valueMax) << coordsToPixels(keyMax, valueMax); result.append(result.last()); result << coordsToPixels(keyMax, valueMin); } + break; + } + } + break; + } + case 2: + { + switch (currentRegion) + { + case 1: { result << coordsToPixels(keyMin, valueMax); break; } + case 3: { result << coordsToPixels(keyMin, valueMin); break; } + case 4: { result << coordsToPixels(keyMin, valueMax); result.append(result.last()); break; } + case 6: { result << coordsToPixels(keyMin, valueMin); result.append(result.last()); break; } + case 7: { result << coordsToPixels(keyMin, valueMax); result.append(result.last()); result << coordsToPixels(keyMax, valueMax); break; } + case 9: { result << coordsToPixels(keyMin, valueMin); result.append(result.last()); result << coordsToPixels(keyMax, valueMin); break; } + } + break; + } + case 3: + { + switch (currentRegion) + { + case 2: { result << coordsToPixels(keyMin, valueMin); break; } + case 6: { result << coordsToPixels(keyMin, valueMin); break; } + case 1: { result << coordsToPixels(keyMin, valueMin) << coordsToPixels(keyMin, valueMax); break; } + case 9: { result << coordsToPixels(keyMin, valueMin) << coordsToPixels(keyMax, valueMin); break; } + case 4: { result << coordsToPixels(keyMin, valueMin) << coordsToPixels(keyMin, valueMax); result.append(result.last()); break; } + case 8: { result << coordsToPixels(keyMin, valueMin) << coordsToPixels(keyMax, valueMin); result.append(result.last()); break; } + case 7: { // in this case we need another distinction of cases: segment may pass below or above rect, requiring either bottom right or top left corner points + if ((value-prevValue)/(key-prevKey)*(keyMax-key)+value < valueMin) // segment passes below R + { result << coordsToPixels(keyMin, valueMin) << coordsToPixels(keyMax, valueMin); result.append(result.last()); result << coordsToPixels(keyMax, valueMax); } + else + { result << coordsToPixels(keyMin, valueMin) << coordsToPixels(keyMin, valueMax); result.append(result.last()); result << coordsToPixels(keyMax, valueMax); } + break; + } + } + break; + } + case 4: + { + switch (currentRegion) + { + case 1: { result << coordsToPixels(keyMin, valueMax); break; } + case 7: { result << coordsToPixels(keyMax, valueMax); break; } + case 2: { result << coordsToPixels(keyMin, valueMax); result.append(result.last()); break; } + case 8: { result << coordsToPixels(keyMax, valueMax); result.append(result.last()); break; } + case 3: { result << coordsToPixels(keyMin, valueMax); result.append(result.last()); result << coordsToPixels(keyMin, valueMin); break; } + case 9: { result << coordsToPixels(keyMax, valueMax); result.append(result.last()); result << coordsToPixels(keyMax, valueMin); break; } + } + break; + } + case 5: + { + switch (currentRegion) + { + case 1: { result << coordsToPixels(keyMin, valueMax); break; } + case 7: { result << coordsToPixels(keyMax, valueMax); break; } + case 9: { result << coordsToPixels(keyMax, valueMin); break; } + case 3: { result << coordsToPixels(keyMin, valueMin); break; } + } + break; + } + case 6: + { + switch (currentRegion) + { + case 3: { result << coordsToPixels(keyMin, valueMin); break; } + case 9: { result << coordsToPixels(keyMax, valueMin); break; } + case 2: { result << coordsToPixels(keyMin, valueMin); result.append(result.last()); break; } + case 8: { result << coordsToPixels(keyMax, valueMin); result.append(result.last()); break; } + case 1: { result << coordsToPixels(keyMin, valueMin); result.append(result.last()); result << coordsToPixels(keyMin, valueMax); break; } + case 7: { result << coordsToPixels(keyMax, valueMin); result.append(result.last()); result << coordsToPixels(keyMax, valueMax); break; } + } + break; + } + case 7: + { + switch (currentRegion) + { + case 4: { result << coordsToPixels(keyMax, valueMax); break; } + case 8: { result << coordsToPixels(keyMax, valueMax); break; } + case 1: { result << coordsToPixels(keyMax, valueMax) << coordsToPixels(keyMin, valueMax); break; } + case 9: { result << coordsToPixels(keyMax, valueMax) << coordsToPixels(keyMax, valueMin); break; } + case 2: { result << coordsToPixels(keyMax, valueMax) << coordsToPixels(keyMin, valueMax); result.append(result.last()); break; } + case 6: { result << coordsToPixels(keyMax, valueMax) << coordsToPixels(keyMax, valueMin); result.append(result.last()); break; } + case 3: { // in this case we need another distinction of cases: segment may pass below or above rect, requiring either bottom right or top left corner points + if ((value-prevValue)/(key-prevKey)*(keyMax-key)+value < valueMin) // segment passes below R + { result << coordsToPixels(keyMax, valueMax) << coordsToPixels(keyMax, valueMin); result.append(result.last()); result << coordsToPixels(keyMin, valueMin); } + else + { result << coordsToPixels(keyMax, valueMax) << coordsToPixels(keyMin, valueMax); result.append(result.last()); result << coordsToPixels(keyMin, valueMin); } + break; + } + } + break; + } + case 8: + { + switch (currentRegion) + { + case 7: { result << coordsToPixels(keyMax, valueMax); break; } + case 9: { result << coordsToPixels(keyMax, valueMin); break; } + case 4: { result << coordsToPixels(keyMax, valueMax); result.append(result.last()); break; } + case 6: { result << coordsToPixels(keyMax, valueMin); result.append(result.last()); break; } + case 1: { result << coordsToPixels(keyMax, valueMax); result.append(result.last()); result << coordsToPixels(keyMin, valueMax); break; } + case 3: { result << coordsToPixels(keyMax, valueMin); result.append(result.last()); result << coordsToPixels(keyMin, valueMin); break; } + } + break; + } + case 9: + { + switch (currentRegion) + { + case 6: { result << coordsToPixels(keyMax, valueMin); break; } + case 8: { result << coordsToPixels(keyMax, valueMin); break; } + case 3: { result << coordsToPixels(keyMax, valueMin) << coordsToPixels(keyMin, valueMin); break; } + case 7: { result << coordsToPixels(keyMax, valueMin) << coordsToPixels(keyMax, valueMax); break; } + case 2: { result << coordsToPixels(keyMax, valueMin) << coordsToPixels(keyMin, valueMin); result.append(result.last()); break; } + case 4: { result << coordsToPixels(keyMax, valueMin) << coordsToPixels(keyMax, valueMax); result.append(result.last()); break; } + case 1: { // in this case we need another distinction of cases: segment may pass below or above rect, requiring either bottom right or top left corner points + if ((value-prevValue)/(key-prevKey)*(keyMin-key)+value < valueMin) // segment passes below R + { result << coordsToPixels(keyMax, valueMin) << coordsToPixels(keyMin, valueMin); result.append(result.last()); result << coordsToPixels(keyMin, valueMax); } + else + { result << coordsToPixels(keyMax, valueMin) << coordsToPixels(keyMax, valueMax); result.append(result.last()); result << coordsToPixels(keyMin, valueMax); } + break; + } + } + break; + } + } + return result; +} + +/*! \internal + + This function is part of the curve optimization algorithm of \ref getCurveLines. + + This method returns whether a segment going from \a prevRegion to \a currentRegion (see \ref + getRegion) may traverse the visible region 5. This function assumes that neither \a prevRegion + nor \a currentRegion is 5 itself. + + If this method returns false, the segment for sure doesn't pass region 5. If it returns true, the + segment may or may not pass region 5 and a more fine-grained calculation must be used (\ref + getTraverse). +*/ +bool QCPCurve::mayTraverse(int prevRegion, int currentRegion) const +{ + switch (prevRegion) + { + case 1: + { + switch (currentRegion) + { + case 4: + case 7: + case 2: + case 3: return false; + default: return true; + } + } + case 2: + { + switch (currentRegion) + { + case 1: + case 3: return false; + default: return true; + } + } + case 3: + { + switch (currentRegion) + { + case 1: + case 2: + case 6: + case 9: return false; + default: return true; + } + } + case 4: + { + switch (currentRegion) + { + case 1: + case 7: return false; + default: return true; + } + } + case 5: return false; // should never occur + case 6: + { + switch (currentRegion) + { + case 3: + case 9: return false; + default: return true; + } + } + case 7: + { + switch (currentRegion) + { + case 1: + case 4: + case 8: + case 9: return false; + default: return true; + } + } + case 8: + { + switch (currentRegion) + { + case 7: + case 9: return false; + default: return true; + } + } + case 9: + { + switch (currentRegion) + { + case 3: + case 6: + case 8: + case 7: return false; + default: return true; + } + } + default: return true; + } +} + + +/*! \internal + + This function is part of the curve optimization algorithm of \ref getCurveLines. + + This method assumes that the \ref mayTraverse test has returned true, so there is a chance the + segment defined by (\a prevKey, \a prevValue) and (\a key, \a value) goes through the visible + region 5. + + The return value of this method indicates whether the segment actually traverses region 5 or not. + + If the segment traverses 5, the output parameters \a crossA and \a crossB indicate the entry and + exit points of region 5. They will become the optimized points for that segment. +*/ +bool QCPCurve::getTraverse(double prevKey, double prevValue, double key, double value, double keyMin, double valueMax, double keyMax, double valueMin, QPointF &crossA, QPointF &crossB) const +{ + // The intersection point interpolation here is done in pixel coordinates, so we don't need to + // differentiate between different axis scale types. Note that the nomenclature + // top/left/bottom/right/min/max is with respect to the rect in plot coordinates, wich may be + // different in pixel coordinates (horz/vert key axes, reversed ranges) + + QList intersections; + const double valueMinPx = mValueAxis->coordToPixel(valueMin); + const double valueMaxPx = mValueAxis->coordToPixel(valueMax); + const double keyMinPx = mKeyAxis->coordToPixel(keyMin); + const double keyMaxPx = mKeyAxis->coordToPixel(keyMax); + const double keyPx = mKeyAxis->coordToPixel(key); + const double valuePx = mValueAxis->coordToPixel(value); + const double prevKeyPx = mKeyAxis->coordToPixel(prevKey); + const double prevValuePx = mValueAxis->coordToPixel(prevValue); + if (qFuzzyIsNull(key-prevKey)) // line is parallel to value axis + { + // due to region filter in mayTraverse(), if line is parallel to value or key axis, region 5 is traversed here + intersections.append(mKeyAxis->orientation() == Qt::Horizontal ? QPointF(keyPx, valueMinPx) : QPointF(valueMinPx, keyPx)); // direction will be taken care of at end of method + intersections.append(mKeyAxis->orientation() == Qt::Horizontal ? QPointF(keyPx, valueMaxPx) : QPointF(valueMaxPx, keyPx)); + } else if (qFuzzyIsNull(value-prevValue)) // line is parallel to key axis + { + // due to region filter in mayTraverse(), if line is parallel to value or key axis, region 5 is traversed here + intersections.append(mKeyAxis->orientation() == Qt::Horizontal ? QPointF(keyMinPx, valuePx) : QPointF(valuePx, keyMinPx)); // direction will be taken care of at end of method + intersections.append(mKeyAxis->orientation() == Qt::Horizontal ? QPointF(keyMaxPx, valuePx) : QPointF(valuePx, keyMaxPx)); + } else // line is skewed + { + double gamma; + double keyPerValuePx = (keyPx-prevKeyPx)/(valuePx-prevValuePx); + // check top of rect: + gamma = prevKeyPx + (valueMaxPx-prevValuePx)*keyPerValuePx; + if (gamma >= qMin(keyMinPx, keyMaxPx) && gamma <= qMax(keyMinPx, keyMaxPx)) // qMin/qMax necessary since axes may be reversed + intersections.append(mKeyAxis->orientation() == Qt::Horizontal ? QPointF(gamma, valueMaxPx) : QPointF(valueMaxPx, gamma)); + // check bottom of rect: + gamma = prevKeyPx + (valueMinPx-prevValuePx)*keyPerValuePx; + if (gamma >= qMin(keyMinPx, keyMaxPx) && gamma <= qMax(keyMinPx, keyMaxPx)) // qMin/qMax necessary since axes may be reversed + intersections.append(mKeyAxis->orientation() == Qt::Horizontal ? QPointF(gamma, valueMinPx) : QPointF(valueMinPx, gamma)); + const double valuePerKeyPx = 1.0/keyPerValuePx; + // check left of rect: + gamma = prevValuePx + (keyMinPx-prevKeyPx)*valuePerKeyPx; + if (gamma >= qMin(valueMinPx, valueMaxPx) && gamma <= qMax(valueMinPx, valueMaxPx)) // qMin/qMax necessary since axes may be reversed + intersections.append(mKeyAxis->orientation() == Qt::Horizontal ? QPointF(keyMinPx, gamma) : QPointF(gamma, keyMinPx)); + // check right of rect: + gamma = prevValuePx + (keyMaxPx-prevKeyPx)*valuePerKeyPx; + if (gamma >= qMin(valueMinPx, valueMaxPx) && gamma <= qMax(valueMinPx, valueMaxPx)) // qMin/qMax necessary since axes may be reversed + intersections.append(mKeyAxis->orientation() == Qt::Horizontal ? QPointF(keyMaxPx, gamma) : QPointF(gamma, keyMaxPx)); + } + + // handle cases where found points isn't exactly 2: + if (intersections.size() > 2) + { + // line probably goes through corner of rect, and we got duplicate points there. single out the point pair with greatest distance in between: + double distSqrMax = 0; + QPointF pv1, pv2; + for (int i=0; i distSqrMax) + { + pv1 = intersections.at(i); + pv2 = intersections.at(k); + distSqrMax = distSqr; + } + } + } + intersections = QList() << pv1 << pv2; + } else if (intersections.size() != 2) + { + // one or even zero points found (shouldn't happen unless line perfectly tangent to corner), no need to draw segment + return false; + } + + // possibly re-sort points so optimized point segment has same direction as original segment: + double xDelta = keyPx-prevKeyPx; + double yDelta = valuePx-prevValuePx; + if (mKeyAxis->orientation() != Qt::Horizontal) + qSwap(xDelta, yDelta); + if (xDelta*(intersections.at(1).x()-intersections.at(0).x()) + yDelta*(intersections.at(1).y()-intersections.at(0).y()) < 0) // scalar product of both segments < 0 -> opposite direction + intersections.move(0, 1); + crossA = intersections.at(0); + crossB = intersections.at(1); + return true; +} + +/*! \internal + + This function is part of the curve optimization algorithm of \ref getCurveLines. + + This method assumes that the \ref getTraverse test has returned true, so the segment definitely + traverses the visible region 5 when going from \a prevRegion to \a currentRegion. + + In certain situations it is not sufficient to merely generate the entry and exit points of the + segment into/out of region 5, as \ref getTraverse provides. It may happen that a single segment, in + addition to traversing region 5, skips another region outside of region 5, which makes it + necessary to add an optimized corner point there (very similar to the job \ref + getOptimizedCornerPoints does for segments that are completely in outside regions and don't + traverse 5). + + As an example, consider a segment going from region 1 to region 6, traversing the lower left + corner of region 5. In this configuration, the segment additionally crosses the border between + region 1 and 2 before entering region 5. This makes it necessary to add an additional point in + the top left corner, before adding the optimized traverse points. So in this case, the output + parameter \a beforeTraverse will contain the top left corner point, and \a afterTraverse will be + empty. + + In some cases, such as when going from region 1 to 9, it may even be necessary to add additional + corner points before and after the traverse. Then both \a beforeTraverse and \a afterTraverse + return the respective corner points. +*/ +void QCPCurve::getTraverseCornerPoints(int prevRegion, int currentRegion, double keyMin, double valueMax, double keyMax, double valueMin, QVector &beforeTraverse, QVector &afterTraverse) const +{ + switch (prevRegion) + { + case 1: + { + switch (currentRegion) + { + case 6: { beforeTraverse << coordsToPixels(keyMin, valueMax); break; } + case 9: { beforeTraverse << coordsToPixels(keyMin, valueMax); afterTraverse << coordsToPixels(keyMax, valueMin); break; } + case 8: { beforeTraverse << coordsToPixels(keyMin, valueMax); break; } + } + break; + } + case 2: + { + switch (currentRegion) + { + case 7: { afterTraverse << coordsToPixels(keyMax, valueMax); break; } + case 9: { afterTraverse << coordsToPixels(keyMax, valueMin); break; } + } + break; + } + case 3: + { + switch (currentRegion) + { + case 4: { beforeTraverse << coordsToPixels(keyMin, valueMin); break; } + case 7: { beforeTraverse << coordsToPixels(keyMin, valueMin); afterTraverse << coordsToPixels(keyMax, valueMax); break; } + case 8: { beforeTraverse << coordsToPixels(keyMin, valueMin); break; } + } + break; + } + case 4: + { + switch (currentRegion) + { + case 3: { afterTraverse << coordsToPixels(keyMin, valueMin); break; } + case 9: { afterTraverse << coordsToPixels(keyMax, valueMin); break; } + } + break; + } + case 5: { break; } // shouldn't happen because this method only handles full traverses + case 6: + { + switch (currentRegion) + { + case 1: { afterTraverse << coordsToPixels(keyMin, valueMax); break; } + case 7: { afterTraverse << coordsToPixels(keyMax, valueMax); break; } + } + break; + } + case 7: + { + switch (currentRegion) + { + case 2: { beforeTraverse << coordsToPixels(keyMax, valueMax); break; } + case 3: { beforeTraverse << coordsToPixels(keyMax, valueMax); afterTraverse << coordsToPixels(keyMin, valueMin); break; } + case 6: { beforeTraverse << coordsToPixels(keyMax, valueMax); break; } + } + break; + } + case 8: + { + switch (currentRegion) + { + case 1: { afterTraverse << coordsToPixels(keyMin, valueMax); break; } + case 3: { afterTraverse << coordsToPixels(keyMin, valueMin); break; } + } + break; + } + case 9: + { + switch (currentRegion) + { + case 2: { beforeTraverse << coordsToPixels(keyMax, valueMin); break; } + case 1: { beforeTraverse << coordsToPixels(keyMax, valueMin); afterTraverse << coordsToPixels(keyMin, valueMax); break; } + case 4: { beforeTraverse << coordsToPixels(keyMax, valueMin); break; } + } + break; + } + } +} + +/*! \internal + + Calculates the (minimum) distance (in pixels) the curve's representation has from the given \a + pixelPoint in pixels. This is used to determine whether the curve was clicked or not, e.g. in + \ref selectTest. The closest data point to \a pixelPoint is returned in \a closestData. Note that + if the curve has a line representation, the returned distance may be smaller than the distance to + the \a closestData point, since the distance to the curve line is also taken into account. + + If either the curve has no data or if the line style is \ref lsNone and the scatter style's shape + is \ref QCPScatterStyle::ssNone (i.e. there is no visual representation of the curve), returns + -1.0. +*/ +double QCPCurve::pointDistance(const QPointF &pixelPoint, QCPCurveDataContainer::const_iterator &closestData) const +{ + closestData = mDataContainer->constEnd(); + if (mDataContainer->isEmpty()) + return -1.0; + if (mLineStyle == lsNone && mScatterStyle.isNone()) + return -1.0; + + if (mDataContainer->size() == 1) + { + QPointF dataPoint = coordsToPixels(mDataContainer->constBegin()->key, mDataContainer->constBegin()->value); + closestData = mDataContainer->constBegin(); + return QCPVector2D(dataPoint-pixelPoint).length(); + } + + // calculate minimum distances to curve data points and find closestData iterator: + double minDistSqr = (std::numeric_limits::max)(); + // iterate over found data points and then choose the one with the shortest distance to pos: + QCPCurveDataContainer::const_iterator begin = mDataContainer->constBegin(); + QCPCurveDataContainer::const_iterator end = mDataContainer->constEnd(); + for (QCPCurveDataContainer::const_iterator it=begin; it!=end; ++it) + { + const double currentDistSqr = QCPVector2D(coordsToPixels(it->key, it->value)-pixelPoint).lengthSquared(); + if (currentDistSqr < minDistSqr) + { + minDistSqr = currentDistSqr; + closestData = it; + } + } + + // calculate distance to line if there is one (if so, will probably be smaller than distance to closest data point): + if (mLineStyle != lsNone) + { + QVector lines; + getCurveLines(&lines, QCPDataRange(0, dataCount()), mParentPlot->selectionTolerance()*1.2); // optimized lines outside axis rect shouldn't respond to clicks at the edge, so use 1.2*tolerance as pen width + for (int i=0; i QCPBarsGroup::bars() const + + Returns all bars currently in this group. + + \see bars(int index) +*/ + +/*! \fn int QCPBarsGroup::size() const + + Returns the number of QCPBars plottables that are part of this group. + +*/ + +/*! \fn bool QCPBarsGroup::isEmpty() const + + Returns whether this bars group is empty. + + \see size +*/ + +/*! \fn bool QCPBarsGroup::contains(QCPBars *bars) + + Returns whether the specified \a bars plottable is part of this group. + +*/ + +/* end of documentation of inline functions */ + +/*! + Constructs a new bars group for the specified QCustomPlot instance. +*/ +QCPBarsGroup::QCPBarsGroup(QCustomPlot *parentPlot) : + QObject(parentPlot), + mParentPlot(parentPlot), + mSpacingType(stAbsolute), + mSpacing(4) +{ +} + +QCPBarsGroup::~QCPBarsGroup() +{ + clear(); +} + +/*! + Sets how the spacing between adjacent bars is interpreted. See \ref SpacingType. + + The actual spacing can then be specified with \ref setSpacing. + + \see setSpacing +*/ +void QCPBarsGroup::setSpacingType(SpacingType spacingType) +{ + mSpacingType = spacingType; +} + +/*! + Sets the spacing between adjacent bars. What the number passed as \a spacing actually means, is + defined by the current \ref SpacingType, which can be set with \ref setSpacingType. + + \see setSpacingType +*/ +void QCPBarsGroup::setSpacing(double spacing) +{ + mSpacing = spacing; +} + +/*! + Returns the QCPBars instance with the specified \a index in this group. If no such QCPBars + exists, returns 0. + + \see bars(), size +*/ +QCPBars *QCPBarsGroup::bars(int index) const +{ + if (index >= 0 && index < mBars.size()) + { + return mBars.at(index); + } else + { + qDebug() << Q_FUNC_INFO << "index out of bounds:" << index; + return 0; + } +} + +/*! + Removes all QCPBars plottables from this group. + + \see isEmpty +*/ +void QCPBarsGroup::clear() +{ + foreach (QCPBars *bars, mBars) // since foreach takes a copy, removing bars in the loop is okay + bars->setBarsGroup(0); // removes itself via removeBars +} + +/*! + Adds the specified \a bars plottable to this group. Alternatively, you can also use \ref + QCPBars::setBarsGroup on the \a bars instance. + + \see insert, remove +*/ +void QCPBarsGroup::append(QCPBars *bars) +{ + if (!bars) + { + qDebug() << Q_FUNC_INFO << "bars is 0"; + return; + } + + if (!mBars.contains(bars)) + bars->setBarsGroup(this); + else + qDebug() << Q_FUNC_INFO << "bars plottable is already in this bars group:" << reinterpret_cast(bars); +} + +/*! + Inserts the specified \a bars plottable into this group at the specified index position \a i. + This gives you full control over the ordering of the bars. + + \a bars may already be part of this group. In that case, \a bars is just moved to the new index + position. + + \see append, remove +*/ +void QCPBarsGroup::insert(int i, QCPBars *bars) +{ + if (!bars) + { + qDebug() << Q_FUNC_INFO << "bars is 0"; + return; + } + + // first append to bars list normally: + if (!mBars.contains(bars)) + bars->setBarsGroup(this); + // then move to according position: + mBars.move(mBars.indexOf(bars), qBound(0, i, mBars.size()-1)); +} + +/*! + Removes the specified \a bars plottable from this group. + + \see contains, clear +*/ +void QCPBarsGroup::remove(QCPBars *bars) +{ + if (!bars) + { + qDebug() << Q_FUNC_INFO << "bars is 0"; + return; + } + + if (mBars.contains(bars)) + bars->setBarsGroup(0); + else + qDebug() << Q_FUNC_INFO << "bars plottable is not in this bars group:" << reinterpret_cast(bars); +} + +/*! \internal + + Adds the specified \a bars to the internal mBars list of bars. This method does not change the + barsGroup property on \a bars. + + \see unregisterBars +*/ +void QCPBarsGroup::registerBars(QCPBars *bars) +{ + if (!mBars.contains(bars)) + mBars.append(bars); +} + +/*! \internal + + Removes the specified \a bars from the internal mBars list of bars. This method does not change + the barsGroup property on \a bars. + + \see registerBars +*/ +void QCPBarsGroup::unregisterBars(QCPBars *bars) +{ + mBars.removeOne(bars); +} + +/*! \internal + + Returns the pixel offset in the key dimension the specified \a bars plottable should have at the + given key coordinate \a keyCoord. The offset is relative to the pixel position of the key + coordinate \a keyCoord. +*/ +double QCPBarsGroup::keyPixelOffset(const QCPBars *bars, double keyCoord) +{ + // find list of all base bars in case some mBars are stacked: + QList baseBars; + foreach (const QCPBars *b, mBars) + { + while (b->barBelow()) + b = b->barBelow(); + if (!baseBars.contains(b)) + baseBars.append(b); + } + // find base bar this "bars" is stacked on: + const QCPBars *thisBase = bars; + while (thisBase->barBelow()) + thisBase = thisBase->barBelow(); + + // determine key pixel offset of this base bars considering all other base bars in this barsgroup: + double result = 0; + int index = baseBars.indexOf(thisBase); + if (index >= 0) + { + if (baseBars.size() % 2 == 1 && index == (baseBars.size()-1)/2) // is center bar (int division on purpose) + { + return result; + } else + { + double lowerPixelWidth, upperPixelWidth; + int startIndex; + int dir = (index <= (baseBars.size()-1)/2) ? -1 : 1; // if bar is to lower keys of center, dir is negative + if (baseBars.size() % 2 == 0) // even number of bars + { + startIndex = baseBars.size()/2 + (dir < 0 ? -1 : 0); + result += getPixelSpacing(baseBars.at(startIndex), keyCoord)*0.5; // half of middle spacing + } else // uneven number of bars + { + startIndex = (baseBars.size()-1)/2+dir; + baseBars.at((baseBars.size()-1)/2)->getPixelWidth(keyCoord, lowerPixelWidth, upperPixelWidth); + result += qAbs(upperPixelWidth-lowerPixelWidth)*0.5; // half of center bar + result += getPixelSpacing(baseBars.at((baseBars.size()-1)/2), keyCoord); // center bar spacing + } + for (int i = startIndex; i != index; i += dir) // add widths and spacings of bars in between center and our bars + { + baseBars.at(i)->getPixelWidth(keyCoord, lowerPixelWidth, upperPixelWidth); + result += qAbs(upperPixelWidth-lowerPixelWidth); + result += getPixelSpacing(baseBars.at(i), keyCoord); + } + // finally half of our bars width: + baseBars.at(index)->getPixelWidth(keyCoord, lowerPixelWidth, upperPixelWidth); + result += qAbs(upperPixelWidth-lowerPixelWidth)*0.5; + // correct sign of result depending on orientation and direction of key axis: + result *= dir*thisBase->keyAxis()->pixelOrientation(); + } + } + return result; +} + +/*! \internal + + Returns the spacing in pixels which is between this \a bars and the following one, both at the + key coordinate \a keyCoord. + + \note Typically the returned value doesn't depend on \a bars or \a keyCoord. \a bars is only + needed to get access to the key axis transformation and axis rect for the modes \ref + stAxisRectRatio and \ref stPlotCoords. The \a keyCoord is only relevant for spacings given in + \ref stPlotCoords on a logarithmic axis. +*/ +double QCPBarsGroup::getPixelSpacing(const QCPBars *bars, double keyCoord) +{ + switch (mSpacingType) + { + case stAbsolute: + { + return mSpacing; + } + case stAxisRectRatio: + { + if (bars->keyAxis()->orientation() == Qt::Horizontal) + return bars->keyAxis()->axisRect()->width()*mSpacing; + else + return bars->keyAxis()->axisRect()->height()*mSpacing; + } + case stPlotCoords: + { + double keyPixel = bars->keyAxis()->coordToPixel(keyCoord); + return qAbs(bars->keyAxis()->coordToPixel(keyCoord+mSpacing)-keyPixel); + } + } + return 0; +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPBarsData +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPBarsData + \brief Holds the data of one single data point (one bar) for QCPBars. + + The stored data is: + \li \a key: coordinate on the key axis of this bar (this is the \a mainKey and the \a sortKey) + \li \a value: height coordinate on the value axis of this bar (this is the \a mainValue) + + The container for storing multiple data points is \ref QCPBarsDataContainer. It is a typedef for + \ref QCPDataContainer with \ref QCPBarsData as the DataType template parameter. See the + documentation there for an explanation regarding the data type's generic methods. + + \see QCPBarsDataContainer +*/ + +/* start documentation of inline functions */ + +/*! \fn double QCPBarsData::sortKey() const + + Returns the \a key member of this data point. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn static QCPBarsData QCPBarsData::fromSortKey(double sortKey) + + Returns a data point with the specified \a sortKey. All other members are set to zero. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn static static bool QCPBarsData::sortKeyIsMainKey() + + Since the member \a key is both the data point key coordinate and the data ordering parameter, + this method returns true. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn double QCPBarsData::mainKey() const + + Returns the \a key member of this data point. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn double QCPBarsData::mainValue() const + + Returns the \a value member of this data point. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn QCPRange QCPBarsData::valueRange() const + + Returns a QCPRange with both lower and upper boundary set to \a value of this data point. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/* end documentation of inline functions */ + +/*! + Constructs a bar data point with key and value set to zero. +*/ +QCPBarsData::QCPBarsData() : + key(0), + value(0) +{ +} + +/*! + Constructs a bar data point with the specified \a key and \a value. +*/ +QCPBarsData::QCPBarsData(double key, double value) : + key(key), + value(value) +{ +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPBars +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPBars + \brief A plottable representing a bar chart in a plot. + + \image html QCPBars.png + + To plot data, assign it with the \ref setData or \ref addData functions. + + \section qcpbars-appearance Changing the appearance + + The appearance of the bars is determined by the pen and the brush (\ref setPen, \ref setBrush). + The width of the individual bars can be controlled with \ref setWidthType and \ref setWidth. + + Bar charts are stackable. This means, two QCPBars plottables can be placed on top of each other + (see \ref QCPBars::moveAbove). So when two bars are at the same key position, they will appear + stacked. + + If you would like to group multiple QCPBars plottables together so they appear side by side as + shown below, use QCPBarsGroup. + + \image html QCPBarsGroup.png + + \section qcpbars-usage Usage + + Like all data representing objects in QCustomPlot, the QCPBars is a plottable + (QCPAbstractPlottable). So the plottable-interface of QCustomPlot applies + (QCustomPlot::plottable, QCustomPlot::removePlottable, etc.) + + Usually, you first create an instance: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpbars-creation-1 + which registers it with the QCustomPlot instance of the passed axes. Note that this QCustomPlot instance takes + ownership of the plottable, so do not delete it manually but use QCustomPlot::removePlottable() instead. + The newly created plottable can be modified, e.g.: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpbars-creation-2 +*/ + +/* start of documentation of inline functions */ + +/*! \fn QSharedPointer QCPBars::data() const + + Returns a shared pointer to the internal data storage of type \ref QCPBarsDataContainer. You may + use it to directly manipulate the data, which may be more convenient and faster than using the + regular \ref setData or \ref addData methods. +*/ + +/*! \fn QCPBars *QCPBars::barBelow() const + Returns the bars plottable that is directly below this bars plottable. + If there is no such plottable, returns 0. + + \see barAbove, moveBelow, moveAbove +*/ + +/*! \fn QCPBars *QCPBars::barAbove() const + Returns the bars plottable that is directly above this bars plottable. + If there is no such plottable, returns 0. + + \see barBelow, moveBelow, moveAbove +*/ + +/* end of documentation of inline functions */ + +/*! + Constructs a bar chart which uses \a keyAxis as its key axis ("x") and \a valueAxis as its value + axis ("y"). \a keyAxis and \a valueAxis must reside in the same QCustomPlot instance and not have + the same orientation. If either of these restrictions is violated, a corresponding message is + printed to the debug output (qDebug), the construction is not aborted, though. + + The created QCPBars is automatically registered with the QCustomPlot instance inferred from \a + keyAxis. This QCustomPlot instance takes ownership of the QCPBars, so do not delete it manually + but use QCustomPlot::removePlottable() instead. +*/ +QCPBars::QCPBars(QCPAxis *keyAxis, QCPAxis *valueAxis) : + QCPAbstractPlottable1D(keyAxis, valueAxis), + mWidth(0.75), + mWidthType(wtPlotCoords), + mBarsGroup(0), + mBaseValue(0), + mStackingGap(0) +{ + // modify inherited properties from abstract plottable: + mPen.setColor(Qt::blue); + mPen.setStyle(Qt::SolidLine); + mBrush.setColor(QColor(40, 50, 255, 30)); + mBrush.setStyle(Qt::SolidPattern); + mSelectionDecorator->setBrush(QBrush(QColor(160, 160, 255))); +} + +QCPBars::~QCPBars() +{ + setBarsGroup(0); + if (mBarBelow || mBarAbove) + connectBars(mBarBelow.data(), mBarAbove.data()); // take this bar out of any stacking +} + +/*! \overload + + Replaces the current data container with the provided \a data container. + + Since a QSharedPointer is used, multiple QCPBars may share the same data container safely. + Modifying the data in the container will then affect all bars that share the container. Sharing + can be achieved by simply exchanging the data containers wrapped in shared pointers: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpbars-datasharing-1 + + If you do not wish to share containers, but create a copy from an existing container, rather use + the \ref QCPDataContainer::set method on the bar's data container directly: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpbars-datasharing-2 + + \see addData +*/ +void QCPBars::setData(QSharedPointer data) +{ + mDataContainer = data; +} + +/*! \overload + + Replaces the current data with the provided points in \a keys and \a values. The provided + vectors should have equal length. Else, the number of added points will be the size of the + smallest vector. + + If you can guarantee that the passed data points are sorted by \a keys in ascending order, you + can set \a alreadySorted to true, to improve performance by saving a sorting run. + + \see addData +*/ +void QCPBars::setData(const QVector &keys, const QVector &values, bool alreadySorted) +{ + mDataContainer->clear(); + addData(keys, values, alreadySorted); +} + +/*! + Sets the width of the bars. + + How the number passed as \a width is interpreted (e.g. screen pixels, plot coordinates,...), + depends on the currently set width type, see \ref setWidthType and \ref WidthType. +*/ +void QCPBars::setWidth(double width) +{ + mWidth = width; +} + +/*! + Sets how the width of the bars is defined. See the documentation of \ref WidthType for an + explanation of the possible values for \a widthType. + + The default value is \ref wtPlotCoords. + + \see setWidth +*/ +void QCPBars::setWidthType(QCPBars::WidthType widthType) +{ + mWidthType = widthType; +} + +/*! + Sets to which QCPBarsGroup this QCPBars instance belongs to. Alternatively, you can also use \ref + QCPBarsGroup::append. + + To remove this QCPBars from any group, set \a barsGroup to 0. +*/ +void QCPBars::setBarsGroup(QCPBarsGroup *barsGroup) +{ + // deregister at old group: + if (mBarsGroup) + mBarsGroup->unregisterBars(this); + mBarsGroup = barsGroup; + // register at new group: + if (mBarsGroup) + mBarsGroup->registerBars(this); +} + +/*! + Sets the base value of this bars plottable. + + The base value defines where on the value coordinate the bars start. How far the bars extend from + the base value is given by their individual value data. For example, if the base value is set to + 1, a bar with data value 2 will have its lowest point at value coordinate 1 and highest point at + 3. + + For stacked bars, only the base value of the bottom-most QCPBars has meaning. + + The default base value is 0. +*/ +void QCPBars::setBaseValue(double baseValue) +{ + mBaseValue = baseValue; +} + +/*! + If this bars plottable is stacked on top of another bars plottable (\ref moveAbove), this method + allows specifying a distance in \a pixels, by which the drawn bar rectangles will be separated by + the bars below it. +*/ +void QCPBars::setStackingGap(double pixels) +{ + mStackingGap = pixels; +} + +/*! \overload + + Adds the provided points in \a keys and \a values to the current data. The provided vectors + should have equal length. Else, the number of added points will be the size of the smallest + vector. + + If you can guarantee that the passed data points are sorted by \a keys in ascending order, you + can set \a alreadySorted to true, to improve performance by saving a sorting run. + + Alternatively, you can also access and modify the data directly via the \ref data method, which + returns a pointer to the internal data container. +*/ +void QCPBars::addData(const QVector &keys, const QVector &values, bool alreadySorted) +{ + if (keys.size() != values.size()) + qDebug() << Q_FUNC_INFO << "keys and values have different sizes:" << keys.size() << values.size(); + const int n = qMin(keys.size(), values.size()); + QVector tempData(n); + QVector::iterator it = tempData.begin(); + const QVector::iterator itEnd = tempData.end(); + int i = 0; + while (it != itEnd) + { + it->key = keys[i]; + it->value = values[i]; + ++it; + ++i; + } + mDataContainer->add(tempData, alreadySorted); // don't modify tempData beyond this to prevent copy on write +} + +/*! \overload + Adds the provided data point as \a key and \a value to the current data. + + Alternatively, you can also access and modify the data directly via the \ref data method, which + returns a pointer to the internal data container. +*/ +void QCPBars::addData(double key, double value) +{ + mDataContainer->add(QCPBarsData(key, value)); +} + +/*! + Moves this bars plottable below \a bars. In other words, the bars of this plottable will appear + below the bars of \a bars. The move target \a bars must use the same key and value axis as this + plottable. + + Inserting into and removing from existing bar stacking is handled gracefully. If \a bars already + has a bars object below itself, this bars object is inserted between the two. If this bars object + is already between two other bars, the two other bars will be stacked on top of each other after + the operation. + + To remove this bars plottable from any stacking, set \a bars to 0. + + \see moveBelow, barAbove, barBelow +*/ +void QCPBars::moveBelow(QCPBars *bars) +{ + if (bars == this) return; + if (bars && (bars->keyAxis() != mKeyAxis.data() || bars->valueAxis() != mValueAxis.data())) + { + qDebug() << Q_FUNC_INFO << "passed QCPBars* doesn't have same key and value axis as this QCPBars"; + return; + } + // remove from stacking: + connectBars(mBarBelow.data(), mBarAbove.data()); // Note: also works if one (or both) of them is 0 + // if new bar given, insert this bar below it: + if (bars) + { + if (bars->mBarBelow) + connectBars(bars->mBarBelow.data(), this); + connectBars(this, bars); + } +} + +/*! + Moves this bars plottable above \a bars. In other words, the bars of this plottable will appear + above the bars of \a bars. The move target \a bars must use the same key and value axis as this + plottable. + + Inserting into and removing from existing bar stacking is handled gracefully. If \a bars already + has a bars object above itself, this bars object is inserted between the two. If this bars object + is already between two other bars, the two other bars will be stacked on top of each other after + the operation. + + To remove this bars plottable from any stacking, set \a bars to 0. + + \see moveBelow, barBelow, barAbove +*/ +void QCPBars::moveAbove(QCPBars *bars) +{ + if (bars == this) return; + if (bars && (bars->keyAxis() != mKeyAxis.data() || bars->valueAxis() != mValueAxis.data())) + { + qDebug() << Q_FUNC_INFO << "passed QCPBars* doesn't have same key and value axis as this QCPBars"; + return; + } + // remove from stacking: + connectBars(mBarBelow.data(), mBarAbove.data()); // Note: also works if one (or both) of them is 0 + // if new bar given, insert this bar above it: + if (bars) + { + if (bars->mBarAbove) + connectBars(this, bars->mBarAbove.data()); + connectBars(bars, this); + } +} + +/*! + \copydoc QCPPlottableInterface1D::selectTestRect +*/ +QCPDataSelection QCPBars::selectTestRect(const QRectF &rect, bool onlySelectable) const +{ + QCPDataSelection result; + if ((onlySelectable && mSelectable == QCP::stNone) || mDataContainer->isEmpty()) + return result; + if (!mKeyAxis || !mValueAxis) + return result; + + QCPBarsDataContainer::const_iterator visibleBegin, visibleEnd; + getVisibleDataBounds(visibleBegin, visibleEnd); + + for (QCPBarsDataContainer::const_iterator it=visibleBegin; it!=visibleEnd; ++it) + { + if (rect.intersects(getBarRect(it->key, it->value))) + result.addDataRange(QCPDataRange(it-mDataContainer->constBegin(), it-mDataContainer->constBegin()+1), false); + } + result.simplify(); + return result; +} + +/*! + Implements a selectTest specific to this plottable's point geometry. + + If \a details is not 0, it will be set to a \ref QCPDataSelection, describing the closest data + point to \a pos. + + \seebaseclassmethod \ref QCPAbstractPlottable::selectTest +*/ +double QCPBars::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if ((onlySelectable && mSelectable == QCP::stNone) || mDataContainer->isEmpty()) + return -1; + if (!mKeyAxis || !mValueAxis) + return -1; + + if (mKeyAxis.data()->axisRect()->rect().contains(pos.toPoint())) + { + // get visible data range: + QCPBarsDataContainer::const_iterator visibleBegin, visibleEnd; + getVisibleDataBounds(visibleBegin, visibleEnd); + for (QCPBarsDataContainer::const_iterator it=visibleBegin; it!=visibleEnd; ++it) + { + if (getBarRect(it->key, it->value).contains(pos)) + { + if (details) + { + int pointIndex = it-mDataContainer->constBegin(); + details->setValue(QCPDataSelection(QCPDataRange(pointIndex, pointIndex+1))); + } + return mParentPlot->selectionTolerance()*0.99; + } + } + } + return -1; +} + +/* inherits documentation from base class */ +QCPRange QCPBars::getKeyRange(bool &foundRange, QCP::SignDomain inSignDomain) const +{ + /* Note: If this QCPBars uses absolute pixels as width (or is in a QCPBarsGroup with spacing in + absolute pixels), using this method to adapt the key axis range to fit the bars into the + currently visible axis range will not work perfectly. Because in the moment the axis range is + changed to the new range, the fixed pixel widths/spacings will represent different coordinate + spans than before, which in turn would require a different key range to perfectly fit, and so on. + The only solution would be to iteratively approach the perfect fitting axis range, but the + mismatch isn't large enough in most applications, to warrant this here. If a user does need a + better fit, he should call the corresponding axis rescale multiple times in a row. + */ + QCPRange range; + range = mDataContainer->keyRange(foundRange, inSignDomain); + + // determine exact range of bars by including bar width and barsgroup offset: + if (foundRange && mKeyAxis) + { + double lowerPixelWidth, upperPixelWidth, keyPixel; + // lower range bound: + getPixelWidth(range.lower, lowerPixelWidth, upperPixelWidth); + keyPixel = mKeyAxis.data()->coordToPixel(range.lower) + lowerPixelWidth; + if (mBarsGroup) + keyPixel += mBarsGroup->keyPixelOffset(this, range.lower); + const double lowerCorrected = mKeyAxis.data()->pixelToCoord(keyPixel); + if (!qIsNaN(lowerCorrected) && qIsFinite(lowerCorrected) && range.lower > lowerCorrected) + range.lower = lowerCorrected; + // upper range bound: + getPixelWidth(range.upper, lowerPixelWidth, upperPixelWidth); + keyPixel = mKeyAxis.data()->coordToPixel(range.upper) + upperPixelWidth; + if (mBarsGroup) + keyPixel += mBarsGroup->keyPixelOffset(this, range.upper); + const double upperCorrected = mKeyAxis.data()->pixelToCoord(keyPixel); + if (!qIsNaN(upperCorrected) && qIsFinite(upperCorrected) && range.upper < upperCorrected) + range.upper = upperCorrected; + } + return range; +} + +/* inherits documentation from base class */ +QCPRange QCPBars::getValueRange(bool &foundRange, QCP::SignDomain inSignDomain, const QCPRange &inKeyRange) const +{ + // Note: can't simply use mDataContainer->valueRange here because we need to + // take into account bar base value and possible stacking of multiple bars + QCPRange range; + range.lower = mBaseValue; + range.upper = mBaseValue; + bool haveLower = true; // set to true, because baseValue should always be visible in bar charts + bool haveUpper = true; // set to true, because baseValue should always be visible in bar charts + QCPBarsDataContainer::const_iterator itBegin = mDataContainer->constBegin(); + QCPBarsDataContainer::const_iterator itEnd = mDataContainer->constEnd(); + if (inKeyRange != QCPRange()) + { + itBegin = mDataContainer->findBegin(inKeyRange.lower); + itEnd = mDataContainer->findEnd(inKeyRange.upper); + } + for (QCPBarsDataContainer::const_iterator it = itBegin; it != itEnd; ++it) + { + const double current = it->value + getStackedBaseValue(it->key, it->value >= 0); + if (qIsNaN(current)) continue; + if (inSignDomain == QCP::sdBoth || (inSignDomain == QCP::sdNegative && current < 0) || (inSignDomain == QCP::sdPositive && current > 0)) + { + if (current < range.lower || !haveLower) + { + range.lower = current; + haveLower = true; + } + if (current > range.upper || !haveUpper) + { + range.upper = current; + haveUpper = true; + } + } + } + + foundRange = true; // return true because bar charts always have the 0-line visible + return range; +} + +/* inherits documentation from base class */ +QPointF QCPBars::dataPixelPosition(int index) const +{ + if (index >= 0 && index < mDataContainer->size()) + { + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return QPointF(); } + + const QCPDataContainer::const_iterator it = mDataContainer->constBegin()+index; + const double valuePixel = valueAxis->coordToPixel(getStackedBaseValue(it->key, it->value >= 0) + it->value); + const double keyPixel = keyAxis->coordToPixel(it->key) + (mBarsGroup ? mBarsGroup->keyPixelOffset(this, it->key) : 0); + if (keyAxis->orientation() == Qt::Horizontal) + return QPointF(keyPixel, valuePixel); + else + return QPointF(valuePixel, keyPixel); + } else + { + qDebug() << Q_FUNC_INFO << "Index out of bounds" << index; + return QPointF(); + } +} + +/* inherits documentation from base class */ +void QCPBars::draw(QCPPainter *painter) +{ + if (!mKeyAxis || !mValueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + if (mDataContainer->isEmpty()) return; + + QCPBarsDataContainer::const_iterator visibleBegin, visibleEnd; + getVisibleDataBounds(visibleBegin, visibleEnd); + + // loop over and draw segments of unselected/selected data: + QList selectedSegments, unselectedSegments, allSegments; + getDataSegments(selectedSegments, unselectedSegments); + allSegments << unselectedSegments << selectedSegments; + for (int i=0; i= unselectedSegments.size(); + QCPBarsDataContainer::const_iterator begin = visibleBegin; + QCPBarsDataContainer::const_iterator end = visibleEnd; + mDataContainer->limitIteratorsToDataRange(begin, end, allSegments.at(i)); + if (begin == end) + continue; + + for (QCPBarsDataContainer::const_iterator it=begin; it!=end; ++it) + { + // check data validity if flag set: +#ifdef QCUSTOMPLOT_CHECK_DATA + if (QCP::isInvalidData(it->key, it->value)) + qDebug() << Q_FUNC_INFO << "Data point at" << it->key << "of drawn range invalid." << "Plottable name:" << name(); +#endif + // draw bar: + if (isSelectedSegment && mSelectionDecorator) + { + mSelectionDecorator->applyBrush(painter); + mSelectionDecorator->applyPen(painter); + } else + { + painter->setBrush(mBrush); + painter->setPen(mPen); + } + applyDefaultAntialiasingHint(painter); + painter->drawPolygon(getBarRect(it->key, it->value)); + } + } + + // draw other selection decoration that isn't just line/scatter pens and brushes: + if (mSelectionDecorator) + mSelectionDecorator->drawDecoration(painter, selection()); +} + +/* inherits documentation from base class */ +void QCPBars::drawLegendIcon(QCPPainter *painter, const QRectF &rect) const +{ + // draw filled rect: + applyDefaultAntialiasingHint(painter); + painter->setBrush(mBrush); + painter->setPen(mPen); + QRectF r = QRectF(0, 0, rect.width()*0.67, rect.height()*0.67); + r.moveCenter(rect.center()); + painter->drawRect(r); +} + +/*! \internal + + called by \ref draw to determine which data (key) range is visible at the current key axis range + setting, so only that needs to be processed. It also takes into account the bar width. + + \a begin returns an iterator to the lowest data point that needs to be taken into account when + plotting. Note that in order to get a clean plot all the way to the edge of the axis rect, \a + lower may still be just outside the visible range. + + \a end returns an iterator one higher than the highest visible data point. Same as before, \a end + may also lie just outside of the visible range. + + if the plottable contains no data, both \a begin and \a end point to constEnd. +*/ +void QCPBars::getVisibleDataBounds(QCPBarsDataContainer::const_iterator &begin, QCPBarsDataContainer::const_iterator &end) const +{ + if (!mKeyAxis) + { + qDebug() << Q_FUNC_INFO << "invalid key axis"; + begin = mDataContainer->constEnd(); + end = mDataContainer->constEnd(); + return; + } + if (mDataContainer->isEmpty()) + { + begin = mDataContainer->constEnd(); + end = mDataContainer->constEnd(); + return; + } + + // get visible data range as QMap iterators + begin = mDataContainer->findBegin(mKeyAxis.data()->range().lower); + end = mDataContainer->findEnd(mKeyAxis.data()->range().upper); + double lowerPixelBound = mKeyAxis.data()->coordToPixel(mKeyAxis.data()->range().lower); + double upperPixelBound = mKeyAxis.data()->coordToPixel(mKeyAxis.data()->range().upper); + bool isVisible = false; + // walk left from begin to find lower bar that actually is completely outside visible pixel range: + QCPBarsDataContainer::const_iterator it = begin; + while (it != mDataContainer->constBegin()) + { + --it; + const QRectF barRect = getBarRect(it->key, it->value); + if (mKeyAxis.data()->orientation() == Qt::Horizontal) + isVisible = ((!mKeyAxis.data()->rangeReversed() && barRect.right() >= lowerPixelBound) || (mKeyAxis.data()->rangeReversed() && barRect.left() <= lowerPixelBound)); + else // keyaxis is vertical + isVisible = ((!mKeyAxis.data()->rangeReversed() && barRect.top() <= lowerPixelBound) || (mKeyAxis.data()->rangeReversed() && barRect.bottom() >= lowerPixelBound)); + if (isVisible) + begin = it; + else + break; + } + // walk right from ubound to find upper bar that actually is completely outside visible pixel range: + it = end; + while (it != mDataContainer->constEnd()) + { + const QRectF barRect = getBarRect(it->key, it->value); + if (mKeyAxis.data()->orientation() == Qt::Horizontal) + isVisible = ((!mKeyAxis.data()->rangeReversed() && barRect.left() <= upperPixelBound) || (mKeyAxis.data()->rangeReversed() && barRect.right() >= upperPixelBound)); + else // keyaxis is vertical + isVisible = ((!mKeyAxis.data()->rangeReversed() && barRect.bottom() >= upperPixelBound) || (mKeyAxis.data()->rangeReversed() && barRect.top() <= upperPixelBound)); + if (isVisible) + end = it+1; + else + break; + ++it; + } +} + +/*! \internal + + Returns the rect in pixel coordinates of a single bar with the specified \a key and \a value. The + rect is shifted according to the bar stacking (see \ref moveAbove) and base value (see \ref + setBaseValue), and to have non-overlapping border lines with the bars stacked below. +*/ +QRectF QCPBars::getBarRect(double key, double value) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return QRectF(); } + + double lowerPixelWidth, upperPixelWidth; + getPixelWidth(key, lowerPixelWidth, upperPixelWidth); + double base = getStackedBaseValue(key, value >= 0); + double basePixel = valueAxis->coordToPixel(base); + double valuePixel = valueAxis->coordToPixel(base+value); + double keyPixel = keyAxis->coordToPixel(key); + if (mBarsGroup) + keyPixel += mBarsGroup->keyPixelOffset(this, key); + double bottomOffset = (mBarBelow && mPen != Qt::NoPen ? 1 : 0)*(mPen.isCosmetic() ? 1 : mPen.widthF()); + bottomOffset += mBarBelow ? mStackingGap : 0; + bottomOffset *= (value<0 ? -1 : 1)*valueAxis->pixelOrientation(); + if (qAbs(valuePixel-basePixel) <= qAbs(bottomOffset)) + bottomOffset = valuePixel-basePixel; + if (keyAxis->orientation() == Qt::Horizontal) + { + return QRectF(QPointF(keyPixel+lowerPixelWidth, valuePixel), QPointF(keyPixel+upperPixelWidth, basePixel+bottomOffset)).normalized(); + } else + { + return QRectF(QPointF(basePixel+bottomOffset, keyPixel+lowerPixelWidth), QPointF(valuePixel, keyPixel+upperPixelWidth)).normalized(); + } +} + +/*! \internal + + This function is used to determine the width of the bar at coordinate \a key, according to the + specified width (\ref setWidth) and width type (\ref setWidthType). + + The output parameters \a lower and \a upper return the number of pixels the bar extends to lower + and higher keys, relative to the \a key coordinate (so with a non-reversed horizontal axis, \a + lower is negative and \a upper positive). +*/ +void QCPBars::getPixelWidth(double key, double &lower, double &upper) const +{ + lower = 0; + upper = 0; + switch (mWidthType) + { + case wtAbsolute: + { + upper = mWidth*0.5*mKeyAxis.data()->pixelOrientation(); + lower = -upper; + break; + } + case wtAxisRectRatio: + { + if (mKeyAxis && mKeyAxis.data()->axisRect()) + { + if (mKeyAxis.data()->orientation() == Qt::Horizontal) + upper = mKeyAxis.data()->axisRect()->width()*mWidth*0.5*mKeyAxis.data()->pixelOrientation(); + else + upper = mKeyAxis.data()->axisRect()->height()*mWidth*0.5*mKeyAxis.data()->pixelOrientation(); + lower = -upper; + } else + qDebug() << Q_FUNC_INFO << "No key axis or axis rect defined"; + break; + } + case wtPlotCoords: + { + if (mKeyAxis) + { + double keyPixel = mKeyAxis.data()->coordToPixel(key); + upper = mKeyAxis.data()->coordToPixel(key+mWidth*0.5)-keyPixel; + lower = mKeyAxis.data()->coordToPixel(key-mWidth*0.5)-keyPixel; + // no need to qSwap(lower, higher) when range reversed, because higher/lower are gained by + // coordinate transform which includes range direction + } else + qDebug() << Q_FUNC_INFO << "No key axis defined"; + break; + } + } +} + +/*! \internal + + This function is called to find at which value to start drawing the base of a bar at \a key, when + it is stacked on top of another QCPBars (e.g. with \ref moveAbove). + + positive and negative bars are separated per stack (positive are stacked above baseValue upwards, + negative are stacked below baseValue downwards). This can be indicated with \a positive. So if the + bar for which we need the base value is negative, set \a positive to false. +*/ +double QCPBars::getStackedBaseValue(double key, bool positive) const +{ + if (mBarBelow) + { + double max = 0; // don't initialize with mBaseValue here because only base value of bottom-most bar has meaning in a bar stack + // find bars of mBarBelow that are approximately at key and find largest one: + double epsilon = qAbs(key)*(sizeof(key)==4 ? 1e-6 : 1e-14); // should be safe even when changed to use float at some point + if (key == 0) + epsilon = (sizeof(key)==4 ? 1e-6 : 1e-14); + QCPBarsDataContainer::const_iterator it = mBarBelow.data()->mDataContainer->findBegin(key-epsilon); + QCPBarsDataContainer::const_iterator itEnd = mBarBelow.data()->mDataContainer->findEnd(key+epsilon); + while (it != itEnd) + { + if (it->key > key-epsilon && it->key < key+epsilon) + { + if ((positive && it->value > max) || + (!positive && it->value < max)) + max = it->value; + } + ++it; + } + // recurse down the bar-stack to find the total height: + return max + mBarBelow.data()->getStackedBaseValue(key, positive); + } else + return mBaseValue; +} + +/*! \internal + + Connects \a below and \a above to each other via their mBarAbove/mBarBelow properties. The bar(s) + currently above lower and below upper will become disconnected to lower/upper. + + If lower is zero, upper will be disconnected at the bottom. + If upper is zero, lower will be disconnected at the top. +*/ +void QCPBars::connectBars(QCPBars *lower, QCPBars *upper) +{ + if (!lower && !upper) return; + + if (!lower) // disconnect upper at bottom + { + // disconnect old bar below upper: + if (upper->mBarBelow && upper->mBarBelow.data()->mBarAbove.data() == upper) + upper->mBarBelow.data()->mBarAbove = 0; + upper->mBarBelow = 0; + } else if (!upper) // disconnect lower at top + { + // disconnect old bar above lower: + if (lower->mBarAbove && lower->mBarAbove.data()->mBarBelow.data() == lower) + lower->mBarAbove.data()->mBarBelow = 0; + lower->mBarAbove = 0; + } else // connect lower and upper + { + // disconnect old bar above lower: + if (lower->mBarAbove && lower->mBarAbove.data()->mBarBelow.data() == lower) + lower->mBarAbove.data()->mBarBelow = 0; + // disconnect old bar below upper: + if (upper->mBarBelow && upper->mBarBelow.data()->mBarAbove.data() == upper) + upper->mBarBelow.data()->mBarAbove = 0; + lower->mBarAbove = upper; + upper->mBarBelow = lower; + } +} +/* end of 'src/plottables/plottable-bars.cpp' */ + + +/* including file 'src/plottables/plottable-statisticalbox.cpp', size 28837 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPStatisticalBoxData +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPStatisticalBoxData + \brief Holds the data of one single data point for QCPStatisticalBox. + + The stored data is: + + \li \a key: coordinate on the key axis of this data point (this is the \a mainKey and the \a sortKey) + + \li \a minimum: the position of the lower whisker, typically the minimum measurement of the + sample that's not considered an outlier. + + \li \a lowerQuartile: the lower end of the box. The lower and the upper quartiles are the two + statistical quartiles around the median of the sample, they should contain 50% of the sample + data. + + \li \a median: the value of the median mark inside the quartile box. The median separates the + sample data in half (50% of the sample data is below/above the median). (This is the \a mainValue) + + \li \a upperQuartile: the upper end of the box. The lower and the upper quartiles are the two + statistical quartiles around the median of the sample, they should contain 50% of the sample + data. + + \li \a maximum: the position of the upper whisker, typically the maximum measurement of the + sample that's not considered an outlier. + + \li \a outliers: a QVector of outlier values that will be drawn as scatter points at the \a key + coordinate of this data point (see \ref QCPStatisticalBox::setOutlierStyle) + + The container for storing multiple data points is \ref QCPStatisticalBoxDataContainer. It is a + typedef for \ref QCPDataContainer with \ref QCPStatisticalBoxData as the DataType template + parameter. See the documentation there for an explanation regarding the data type's generic + methods. + + \see QCPStatisticalBoxDataContainer +*/ + +/* start documentation of inline functions */ + +/*! \fn double QCPStatisticalBoxData::sortKey() const + + Returns the \a key member of this data point. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn static QCPStatisticalBoxData QCPStatisticalBoxData::fromSortKey(double sortKey) + + Returns a data point with the specified \a sortKey. All other members are set to zero. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn static static bool QCPStatisticalBoxData::sortKeyIsMainKey() + + Since the member \a key is both the data point key coordinate and the data ordering parameter, + this method returns true. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn double QCPStatisticalBoxData::mainKey() const + + Returns the \a key member of this data point. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn double QCPStatisticalBoxData::mainValue() const + + Returns the \a median member of this data point. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn QCPRange QCPStatisticalBoxData::valueRange() const + + Returns a QCPRange spanning from the \a minimum to the \a maximum member of this statistical box + data point, possibly further expanded by outliers. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/* end documentation of inline functions */ + +/*! + Constructs a data point with key and all values set to zero. +*/ +QCPStatisticalBoxData::QCPStatisticalBoxData() : + key(0), + minimum(0), + lowerQuartile(0), + median(0), + upperQuartile(0), + maximum(0) +{ +} + +/*! + Constructs a data point with the specified \a key, \a minimum, \a lowerQuartile, \a median, \a + upperQuartile, \a maximum and optionally a number of \a outliers. +*/ +QCPStatisticalBoxData::QCPStatisticalBoxData(double key, double minimum, double lowerQuartile, double median, double upperQuartile, double maximum, const QVector &outliers) : + key(key), + minimum(minimum), + lowerQuartile(lowerQuartile), + median(median), + upperQuartile(upperQuartile), + maximum(maximum), + outliers(outliers) +{ +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPStatisticalBox +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPStatisticalBox + \brief A plottable representing a single statistical box in a plot. + + \image html QCPStatisticalBox.png + + To plot data, assign it with the \ref setData or \ref addData functions. Alternatively, you can + also access and modify the data via the \ref data method, which returns a pointer to the internal + \ref QCPStatisticalBoxDataContainer. + + Additionally each data point can itself have a list of outliers, drawn as scatter points at the + key coordinate of the respective statistical box data point. They can either be set by using the + respective \ref addData(double,double,double,double,double,double,const QVector&) + "addData" method or accessing the individual data points through \ref data, and setting the + QVector outliers of the data points directly. + + \section qcpstatisticalbox-appearance Changing the appearance + + The appearance of each data point box, ranging from the lower to the upper quartile, is + controlled via \ref setPen and \ref setBrush. You may change the width of the boxes with \ref + setWidth in plot coordinates. + + Each data point's visual representation also consists of two whiskers. Whiskers are the lines + which reach from the upper quartile to the maximum, and from the lower quartile to the minimum. + The appearance of the whiskers can be modified with: \ref setWhiskerPen, \ref setWhiskerBarPen, + \ref setWhiskerWidth. The whisker width is the width of the bar perpendicular to the whisker at + the top (for maximum) and bottom (for minimum). If the whisker pen is changed, make sure to set + the \c capStyle to \c Qt::FlatCap. Otherwise the backbone line might exceed the whisker bars by a + few pixels due to the pen cap being not perfectly flat. + + The median indicator line inside the box has its own pen, \ref setMedianPen. + + The outlier data points are drawn as normal scatter points. Their look can be controlled with + \ref setOutlierStyle + + \section qcpstatisticalbox-usage Usage + + Like all data representing objects in QCustomPlot, the QCPStatisticalBox is a plottable + (QCPAbstractPlottable). So the plottable-interface of QCustomPlot applies + (QCustomPlot::plottable, QCustomPlot::removePlottable, etc.) + + Usually, you first create an instance: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpstatisticalbox-creation-1 + which registers it with the QCustomPlot instance of the passed axes. Note that this QCustomPlot instance takes + ownership of the plottable, so do not delete it manually but use QCustomPlot::removePlottable() instead. + The newly created plottable can be modified, e.g.: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpstatisticalbox-creation-2 +*/ + +/* start documentation of inline functions */ + +/*! \fn QSharedPointer QCPStatisticalBox::data() const + + Returns a shared pointer to the internal data storage of type \ref + QCPStatisticalBoxDataContainer. You may use it to directly manipulate the data, which may be more + convenient and faster than using the regular \ref setData or \ref addData methods. +*/ + +/* end documentation of inline functions */ + +/*! + Constructs a statistical box which uses \a keyAxis as its key axis ("x") and \a valueAxis as its + value axis ("y"). \a keyAxis and \a valueAxis must reside in the same QCustomPlot instance and + not have the same orientation. If either of these restrictions is violated, a corresponding + message is printed to the debug output (qDebug), the construction is not aborted, though. + + The created QCPStatisticalBox is automatically registered with the QCustomPlot instance inferred + from \a keyAxis. This QCustomPlot instance takes ownership of the QCPStatisticalBox, so do not + delete it manually but use QCustomPlot::removePlottable() instead. +*/ +QCPStatisticalBox::QCPStatisticalBox(QCPAxis *keyAxis, QCPAxis *valueAxis) : + QCPAbstractPlottable1D(keyAxis, valueAxis), + mWidth(0.5), + mWhiskerWidth(0.2), + mWhiskerPen(Qt::black, 0, Qt::DashLine, Qt::FlatCap), + mWhiskerBarPen(Qt::black), + mWhiskerAntialiased(false), + mMedianPen(Qt::black, 3, Qt::SolidLine, Qt::FlatCap), + mOutlierStyle(QCPScatterStyle::ssCircle, Qt::blue, 6) +{ + setPen(QPen(Qt::black)); + setBrush(Qt::NoBrush); +} + +/*! \overload + + Replaces the current data container with the provided \a data container. + + Since a QSharedPointer is used, multiple QCPStatisticalBoxes may share the same data container + safely. Modifying the data in the container will then affect all statistical boxes that share the + container. Sharing can be achieved by simply exchanging the data containers wrapped in shared + pointers: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpstatisticalbox-datasharing-1 + + If you do not wish to share containers, but create a copy from an existing container, rather use + the \ref QCPDataContainer::set method on the statistical box data container directly: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpstatisticalbox-datasharing-2 + + \see addData +*/ +void QCPStatisticalBox::setData(QSharedPointer data) +{ + mDataContainer = data; +} +/*! \overload + + Replaces the current data with the provided points in \a keys, \a minimum, \a lowerQuartile, \a + median, \a upperQuartile and \a maximum. The provided vectors should have equal length. Else, the + number of added points will be the size of the smallest vector. + + If you can guarantee that the passed data points are sorted by \a keys in ascending order, you + can set \a alreadySorted to true, to improve performance by saving a sorting run. + + \see addData +*/ +void QCPStatisticalBox::setData(const QVector &keys, const QVector &minimum, const QVector &lowerQuartile, const QVector &median, const QVector &upperQuartile, const QVector &maximum, bool alreadySorted) +{ + mDataContainer->clear(); + addData(keys, minimum, lowerQuartile, median, upperQuartile, maximum, alreadySorted); +} + +/*! + Sets the width of the boxes in key coordinates. + + \see setWhiskerWidth +*/ +void QCPStatisticalBox::setWidth(double width) +{ + mWidth = width; +} + +/*! + Sets the width of the whiskers in key coordinates. + + Whiskers are the lines which reach from the upper quartile to the maximum, and from the lower + quartile to the minimum. + + \see setWidth +*/ +void QCPStatisticalBox::setWhiskerWidth(double width) +{ + mWhiskerWidth = width; +} + +/*! + Sets the pen used for drawing the whisker backbone. + + Whiskers are the lines which reach from the upper quartile to the maximum, and from the lower + quartile to the minimum. + + Make sure to set the \c capStyle of the passed \a pen to \c Qt::FlatCap. Otherwise the backbone + line might exceed the whisker bars by a few pixels due to the pen cap being not perfectly flat. + + \see setWhiskerBarPen +*/ +void QCPStatisticalBox::setWhiskerPen(const QPen &pen) +{ + mWhiskerPen = pen; +} + +/*! + Sets the pen used for drawing the whisker bars. Those are the lines parallel to the key axis at + each end of the whisker backbone. + + Whiskers are the lines which reach from the upper quartile to the maximum, and from the lower + quartile to the minimum. + + \see setWhiskerPen +*/ +void QCPStatisticalBox::setWhiskerBarPen(const QPen &pen) +{ + mWhiskerBarPen = pen; +} + +/*! + Sets whether the statistical boxes whiskers are drawn with antialiasing or not. + + Note that antialiasing settings may be overridden by QCustomPlot::setAntialiasedElements and + QCustomPlot::setNotAntialiasedElements. +*/ +void QCPStatisticalBox::setWhiskerAntialiased(bool enabled) +{ + mWhiskerAntialiased = enabled; +} + +/*! + Sets the pen used for drawing the median indicator line inside the statistical boxes. +*/ +void QCPStatisticalBox::setMedianPen(const QPen &pen) +{ + mMedianPen = pen; +} + +/*! + Sets the appearance of the outlier data points. + + Outliers can be specified with the method + \ref addData(double key, double minimum, double lowerQuartile, double median, double upperQuartile, double maximum, const QVector &outliers) +*/ +void QCPStatisticalBox::setOutlierStyle(const QCPScatterStyle &style) +{ + mOutlierStyle = style; +} + +/*! \overload + + Adds the provided points in \a keys, \a minimum, \a lowerQuartile, \a median, \a upperQuartile and + \a maximum to the current data. The provided vectors should have equal length. Else, the number + of added points will be the size of the smallest vector. + + If you can guarantee that the passed data points are sorted by \a keys in ascending order, you + can set \a alreadySorted to true, to improve performance by saving a sorting run. + + Alternatively, you can also access and modify the data directly via the \ref data method, which + returns a pointer to the internal data container. +*/ +void QCPStatisticalBox::addData(const QVector &keys, const QVector &minimum, const QVector &lowerQuartile, const QVector &median, const QVector &upperQuartile, const QVector &maximum, bool alreadySorted) +{ + if (keys.size() != minimum.size() || minimum.size() != lowerQuartile.size() || lowerQuartile.size() != median.size() || + median.size() != upperQuartile.size() || upperQuartile.size() != maximum.size() || maximum.size() != keys.size()) + qDebug() << Q_FUNC_INFO << "keys, minimum, lowerQuartile, median, upperQuartile, maximum have different sizes:" + << keys.size() << minimum.size() << lowerQuartile.size() << median.size() << upperQuartile.size() << maximum.size(); + const int n = qMin(keys.size(), qMin(minimum.size(), qMin(lowerQuartile.size(), qMin(median.size(), qMin(upperQuartile.size(), maximum.size()))))); + QVector tempData(n); + QVector::iterator it = tempData.begin(); + const QVector::iterator itEnd = tempData.end(); + int i = 0; + while (it != itEnd) + { + it->key = keys[i]; + it->minimum = minimum[i]; + it->lowerQuartile = lowerQuartile[i]; + it->median = median[i]; + it->upperQuartile = upperQuartile[i]; + it->maximum = maximum[i]; + ++it; + ++i; + } + mDataContainer->add(tempData, alreadySorted); // don't modify tempData beyond this to prevent copy on write +} + +/*! \overload + + Adds the provided data point as \a key, \a minimum, \a lowerQuartile, \a median, \a upperQuartile + and \a maximum to the current data. + + Alternatively, you can also access and modify the data directly via the \ref data method, which + returns a pointer to the internal data container. +*/ +void QCPStatisticalBox::addData(double key, double minimum, double lowerQuartile, double median, double upperQuartile, double maximum, const QVector &outliers) +{ + mDataContainer->add(QCPStatisticalBoxData(key, minimum, lowerQuartile, median, upperQuartile, maximum, outliers)); +} + +/*! + \copydoc QCPPlottableInterface1D::selectTestRect +*/ +QCPDataSelection QCPStatisticalBox::selectTestRect(const QRectF &rect, bool onlySelectable) const +{ + QCPDataSelection result; + if ((onlySelectable && mSelectable == QCP::stNone) || mDataContainer->isEmpty()) + return result; + if (!mKeyAxis || !mValueAxis) + return result; + + QCPStatisticalBoxDataContainer::const_iterator visibleBegin, visibleEnd; + getVisibleDataBounds(visibleBegin, visibleEnd); + + for (QCPStatisticalBoxDataContainer::const_iterator it=visibleBegin; it!=visibleEnd; ++it) + { + if (rect.intersects(getQuartileBox(it))) + result.addDataRange(QCPDataRange(it-mDataContainer->constBegin(), it-mDataContainer->constBegin()+1), false); + } + result.simplify(); + return result; +} + +/*! + Implements a selectTest specific to this plottable's point geometry. + + If \a details is not 0, it will be set to a \ref QCPDataSelection, describing the closest data + point to \a pos. + + \seebaseclassmethod \ref QCPAbstractPlottable::selectTest +*/ +double QCPStatisticalBox::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if ((onlySelectable && mSelectable == QCP::stNone) || mDataContainer->isEmpty()) + return -1; + if (!mKeyAxis || !mValueAxis) + return -1; + + if (mKeyAxis->axisRect()->rect().contains(pos.toPoint())) + { + // get visible data range: + QCPStatisticalBoxDataContainer::const_iterator visibleBegin, visibleEnd; + QCPStatisticalBoxDataContainer::const_iterator closestDataPoint = mDataContainer->constEnd(); + getVisibleDataBounds(visibleBegin, visibleEnd); + double minDistSqr = (std::numeric_limits::max)(); + for (QCPStatisticalBoxDataContainer::const_iterator it=visibleBegin; it!=visibleEnd; ++it) + { + if (getQuartileBox(it).contains(pos)) // quartile box + { + double currentDistSqr = mParentPlot->selectionTolerance()*0.99 * mParentPlot->selectionTolerance()*0.99; + if (currentDistSqr < minDistSqr) + { + minDistSqr = currentDistSqr; + closestDataPoint = it; + } + } else // whiskers + { + const QVector whiskerBackbones(getWhiskerBackboneLines(it)); + for (int i=0; iconstBegin(); + details->setValue(QCPDataSelection(QCPDataRange(pointIndex, pointIndex+1))); + } + return qSqrt(minDistSqr); + } + return -1; +} + +/* inherits documentation from base class */ +QCPRange QCPStatisticalBox::getKeyRange(bool &foundRange, QCP::SignDomain inSignDomain) const +{ + QCPRange range = mDataContainer->keyRange(foundRange, inSignDomain); + // determine exact range by including width of bars/flags: + if (foundRange) + { + if (inSignDomain != QCP::sdPositive || range.lower-mWidth*0.5 > 0) + range.lower -= mWidth*0.5; + if (inSignDomain != QCP::sdNegative || range.upper+mWidth*0.5 < 0) + range.upper += mWidth*0.5; + } + return range; +} + +/* inherits documentation from base class */ +QCPRange QCPStatisticalBox::getValueRange(bool &foundRange, QCP::SignDomain inSignDomain, const QCPRange &inKeyRange) const +{ + return mDataContainer->valueRange(foundRange, inSignDomain, inKeyRange); +} + +/* inherits documentation from base class */ +void QCPStatisticalBox::draw(QCPPainter *painter) +{ + if (mDataContainer->isEmpty()) return; + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + + QCPStatisticalBoxDataContainer::const_iterator visibleBegin, visibleEnd; + getVisibleDataBounds(visibleBegin, visibleEnd); + + // loop over and draw segments of unselected/selected data: + QList selectedSegments, unselectedSegments, allSegments; + getDataSegments(selectedSegments, unselectedSegments); + allSegments << unselectedSegments << selectedSegments; + for (int i=0; i= unselectedSegments.size(); + QCPStatisticalBoxDataContainer::const_iterator begin = visibleBegin; + QCPStatisticalBoxDataContainer::const_iterator end = visibleEnd; + mDataContainer->limitIteratorsToDataRange(begin, end, allSegments.at(i)); + if (begin == end) + continue; + + for (QCPStatisticalBoxDataContainer::const_iterator it=begin; it!=end; ++it) + { + // check data validity if flag set: +# ifdef QCUSTOMPLOT_CHECK_DATA + if (QCP::isInvalidData(it->key, it->minimum) || + QCP::isInvalidData(it->lowerQuartile, it->median) || + QCP::isInvalidData(it->upperQuartile, it->maximum)) + qDebug() << Q_FUNC_INFO << "Data point at" << it->key << "of drawn range has invalid data." << "Plottable name:" << name(); + for (int i=0; ioutliers.size(); ++i) + if (QCP::isInvalidData(it->outliers.at(i))) + qDebug() << Q_FUNC_INFO << "Data point outlier at" << it->key << "of drawn range invalid." << "Plottable name:" << name(); +# endif + + if (isSelectedSegment && mSelectionDecorator) + { + mSelectionDecorator->applyPen(painter); + mSelectionDecorator->applyBrush(painter); + } else + { + painter->setPen(mPen); + painter->setBrush(mBrush); + } + QCPScatterStyle finalOutlierStyle = mOutlierStyle; + if (isSelectedSegment && mSelectionDecorator) + finalOutlierStyle = mSelectionDecorator->getFinalScatterStyle(mOutlierStyle); + drawStatisticalBox(painter, it, finalOutlierStyle); + } + } + + // draw other selection decoration that isn't just line/scatter pens and brushes: + if (mSelectionDecorator) + mSelectionDecorator->drawDecoration(painter, selection()); +} + +/* inherits documentation from base class */ +void QCPStatisticalBox::drawLegendIcon(QCPPainter *painter, const QRectF &rect) const +{ + // draw filled rect: + applyDefaultAntialiasingHint(painter); + painter->setPen(mPen); + painter->setBrush(mBrush); + QRectF r = QRectF(0, 0, rect.width()*0.67, rect.height()*0.67); + r.moveCenter(rect.center()); + painter->drawRect(r); +} + +/*! + Draws the graphical representation of a single statistical box with the data given by the + iterator \a it with the provided \a painter. + + If the statistical box has a set of outlier data points, they are drawn with \a outlierStyle. + + \see getQuartileBox, getWhiskerBackboneLines, getWhiskerBarLines +*/ +void QCPStatisticalBox::drawStatisticalBox(QCPPainter *painter, QCPStatisticalBoxDataContainer::const_iterator it, const QCPScatterStyle &outlierStyle) const +{ + // draw quartile box: + applyDefaultAntialiasingHint(painter); + const QRectF quartileBox = getQuartileBox(it); + painter->drawRect(quartileBox); + // draw median line with cliprect set to quartile box: + painter->save(); + painter->setClipRect(quartileBox, Qt::IntersectClip); + painter->setPen(mMedianPen); + painter->drawLine(QLineF(coordsToPixels(it->key-mWidth*0.5, it->median), coordsToPixels(it->key+mWidth*0.5, it->median))); + painter->restore(); + // draw whisker lines: + applyAntialiasingHint(painter, mWhiskerAntialiased, QCP::aePlottables); + painter->setPen(mWhiskerPen); + painter->drawLines(getWhiskerBackboneLines(it)); + painter->setPen(mWhiskerBarPen); + painter->drawLines(getWhiskerBarLines(it)); + // draw outliers: + applyScattersAntialiasingHint(painter); + outlierStyle.applyTo(painter, mPen); + for (int i=0; ioutliers.size(); ++i) + outlierStyle.drawShape(painter, coordsToPixels(it->key, it->outliers.at(i))); +} + +/*! \internal + + called by \ref draw to determine which data (key) range is visible at the current key axis range + setting, so only that needs to be processed. It also takes into account the bar width. + + \a begin returns an iterator to the lowest data point that needs to be taken into account when + plotting. Note that in order to get a clean plot all the way to the edge of the axis rect, \a + lower may still be just outside the visible range. + + \a end returns an iterator one higher than the highest visible data point. Same as before, \a end + may also lie just outside of the visible range. + + if the plottable contains no data, both \a begin and \a end point to constEnd. +*/ +void QCPStatisticalBox::getVisibleDataBounds(QCPStatisticalBoxDataContainer::const_iterator &begin, QCPStatisticalBoxDataContainer::const_iterator &end) const +{ + if (!mKeyAxis) + { + qDebug() << Q_FUNC_INFO << "invalid key axis"; + begin = mDataContainer->constEnd(); + end = mDataContainer->constEnd(); + return; + } + begin = mDataContainer->findBegin(mKeyAxis.data()->range().lower-mWidth*0.5); // subtract half width of box to include partially visible data points + end = mDataContainer->findEnd(mKeyAxis.data()->range().upper+mWidth*0.5); // add half width of box to include partially visible data points +} + +/*! \internal + + Returns the box in plot coordinates (keys in x, values in y of the returned rect) that covers the + value range from the lower to the upper quartile, of the data given by \a it. + + \see drawStatisticalBox, getWhiskerBackboneLines, getWhiskerBarLines +*/ +QRectF QCPStatisticalBox::getQuartileBox(QCPStatisticalBoxDataContainer::const_iterator it) const +{ + QRectF result; + result.setTopLeft(coordsToPixels(it->key-mWidth*0.5, it->upperQuartile)); + result.setBottomRight(coordsToPixels(it->key+mWidth*0.5, it->lowerQuartile)); + return result; +} + +/*! \internal + + Returns the whisker backbones (keys in x, values in y of the returned lines) that cover the value + range from the minimum to the lower quartile, and from the upper quartile to the maximum of the + data given by \a it. + + \see drawStatisticalBox, getQuartileBox, getWhiskerBarLines +*/ +QVector QCPStatisticalBox::getWhiskerBackboneLines(QCPStatisticalBoxDataContainer::const_iterator it) const +{ + QVector result(2); + result[0].setPoints(coordsToPixels(it->key, it->lowerQuartile), coordsToPixels(it->key, it->minimum)); // min backbone + result[1].setPoints(coordsToPixels(it->key, it->upperQuartile), coordsToPixels(it->key, it->maximum)); // max backbone + return result; +} + +/*! \internal + + Returns the whisker bars (keys in x, values in y of the returned lines) that are placed at the + end of the whisker backbones, at the minimum and maximum of the data given by \a it. + + \see drawStatisticalBox, getQuartileBox, getWhiskerBackboneLines +*/ +QVector QCPStatisticalBox::getWhiskerBarLines(QCPStatisticalBoxDataContainer::const_iterator it) const +{ + QVector result(2); + result[0].setPoints(coordsToPixels(it->key-mWhiskerWidth*0.5, it->minimum), coordsToPixels(it->key+mWhiskerWidth*0.5, it->minimum)); // min bar + result[1].setPoints(coordsToPixels(it->key-mWhiskerWidth*0.5, it->maximum), coordsToPixels(it->key+mWhiskerWidth*0.5, it->maximum)); // max bar + return result; +} +/* end of 'src/plottables/plottable-statisticalbox.cpp' */ + + +/* including file 'src/plottables/plottable-colormap.cpp', size 47881 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPColorMapData +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPColorMapData + \brief Holds the two-dimensional data of a QCPColorMap plottable. + + This class is a data storage for \ref QCPColorMap. It holds a two-dimensional array, which \ref + QCPColorMap then displays as a 2D image in the plot, where the array values are represented by a + color, depending on the value. + + The size of the array can be controlled via \ref setSize (or \ref setKeySize, \ref setValueSize). + Which plot coordinates these cells correspond to can be configured with \ref setRange (or \ref + setKeyRange, \ref setValueRange). + + The data cells can be accessed in two ways: They can be directly addressed by an integer index + with \ref setCell. This is the fastest method. Alternatively, they can be addressed by their plot + coordinate with \ref setData. plot coordinate to cell index transformations and vice versa are + provided by the functions \ref coordToCell and \ref cellToCoord. + + A \ref QCPColorMapData also holds an on-demand two-dimensional array of alpha values which (if + allocated) has the same size as the data map. It can be accessed via \ref setAlpha, \ref + fillAlpha and \ref clearAlpha. The memory for the alpha map is only allocated if needed, i.e. on + the first call of \ref setAlpha. \ref clearAlpha restores full opacity and frees the alpha map. + + This class also buffers the minimum and maximum values that are in the data set, to provide + QCPColorMap::rescaleDataRange with the necessary information quickly. Setting a cell to a value + that is greater than the current maximum increases this maximum to the new value. However, + setting the cell that currently holds the maximum value to a smaller value doesn't decrease the + maximum again, because finding the true new maximum would require going through the entire data + array, which might be time consuming. The same holds for the data minimum. This functionality is + given by \ref recalculateDataBounds, such that you can decide when it is sensible to find the + true current minimum and maximum. The method QCPColorMap::rescaleDataRange offers a convenience + parameter \a recalculateDataBounds which may be set to true to automatically call \ref + recalculateDataBounds internally. +*/ + +/* start of documentation of inline functions */ + +/*! \fn bool QCPColorMapData::isEmpty() const + + Returns whether this instance carries no data. This is equivalent to having a size where at least + one of the dimensions is 0 (see \ref setSize). +*/ + +/* end of documentation of inline functions */ + +/*! + Constructs a new QCPColorMapData instance. The instance has \a keySize cells in the key direction + and \a valueSize cells in the value direction. These cells will be displayed by the \ref QCPColorMap + at the coordinates \a keyRange and \a valueRange. + + \see setSize, setKeySize, setValueSize, setRange, setKeyRange, setValueRange +*/ +QCPColorMapData::QCPColorMapData(int keySize, int valueSize, const QCPRange &keyRange, const QCPRange &valueRange) : + mKeySize(0), + mValueSize(0), + mKeyRange(keyRange), + mValueRange(valueRange), + mIsEmpty(true), + mData(0), + mAlpha(0), + mDataModified(true) +{ + setSize(keySize, valueSize); + fill(0); +} + +QCPColorMapData::~QCPColorMapData() +{ + if (mData) + delete[] mData; + if (mAlpha) + delete[] mAlpha; +} + +/*! + Constructs a new QCPColorMapData instance copying the data and range of \a other. +*/ +QCPColorMapData::QCPColorMapData(const QCPColorMapData &other) : + mKeySize(0), + mValueSize(0), + mIsEmpty(true), + mData(0), + mAlpha(0), + mDataModified(true) +{ + *this = other; +} + +/*! + Overwrites this color map data instance with the data stored in \a other. The alpha map state is + transferred, too. +*/ +QCPColorMapData &QCPColorMapData::operator=(const QCPColorMapData &other) +{ + if (&other != this) + { + const int keySize = other.keySize(); + const int valueSize = other.valueSize(); + if (!other.mAlpha && mAlpha) + clearAlpha(); + setSize(keySize, valueSize); + if (other.mAlpha && !mAlpha) + createAlpha(false); + setRange(other.keyRange(), other.valueRange()); + if (!isEmpty()) + { + memcpy(mData, other.mData, sizeof(mData[0])*keySize*valueSize); + if (mAlpha) + memcpy(mAlpha, other.mAlpha, sizeof(mAlpha[0])*keySize*valueSize); + } + mDataBounds = other.mDataBounds; + mDataModified = true; + } + return *this; +} + +/* undocumented getter */ +double QCPColorMapData::data(double key, double value) +{ + int keyCell = (key-mKeyRange.lower)/(mKeyRange.upper-mKeyRange.lower)*(mKeySize-1)+0.5; + int valueCell = (value-mValueRange.lower)/(mValueRange.upper-mValueRange.lower)*(mValueSize-1)+0.5; + if (keyCell >= 0 && keyCell < mKeySize && valueCell >= 0 && valueCell < mValueSize) + return mData[valueCell*mKeySize + keyCell]; + else + return 0; +} + +/* undocumented getter */ +double QCPColorMapData::cell(int keyIndex, int valueIndex) +{ + if (keyIndex >= 0 && keyIndex < mKeySize && valueIndex >= 0 && valueIndex < mValueSize) + return mData[valueIndex*mKeySize + keyIndex]; + else + return 0; +} + +/*! + Returns the alpha map value of the cell with the indices \a keyIndex and \a valueIndex. + + If this color map data doesn't have an alpha map (because \ref setAlpha was never called after + creation or after a call to \ref clearAlpha), returns 255, which corresponds to full opacity. + + \see setAlpha +*/ +unsigned char QCPColorMapData::alpha(int keyIndex, int valueIndex) +{ + if (mAlpha && keyIndex >= 0 && keyIndex < mKeySize && valueIndex >= 0 && valueIndex < mValueSize) + return mAlpha[valueIndex*mKeySize + keyIndex]; + else + return 255; +} + +/*! + Resizes the data array to have \a keySize cells in the key dimension and \a valueSize cells in + the value dimension. + + The current data is discarded and the map cells are set to 0, unless the map had already the + requested size. + + Setting at least one of \a keySize or \a valueSize to zero frees the internal data array and \ref + isEmpty returns true. + + \see setRange, setKeySize, setValueSize +*/ +void QCPColorMapData::setSize(int keySize, int valueSize) +{ + if (keySize != mKeySize || valueSize != mValueSize) + { + mKeySize = keySize; + mValueSize = valueSize; + if (mData) + delete[] mData; + mIsEmpty = mKeySize == 0 || mValueSize == 0; + if (!mIsEmpty) + { +#ifdef __EXCEPTIONS + try { // 2D arrays get memory intensive fast. So if the allocation fails, at least output debug message +#endif + mData = new double[mKeySize*mValueSize]; +#ifdef __EXCEPTIONS + } catch (...) { mData = 0; } +#endif + if (mData) + fill(0); + else + qDebug() << Q_FUNC_INFO << "out of memory for data dimensions "<< mKeySize << "*" << mValueSize; + } else + mData = 0; + + if (mAlpha) // if we had an alpha map, recreate it with new size + createAlpha(); + + mDataModified = true; + } +} + +/*! + Resizes the data array to have \a keySize cells in the key dimension. + + The current data is discarded and the map cells are set to 0, unless the map had already the + requested size. + + Setting \a keySize to zero frees the internal data array and \ref isEmpty returns true. + + \see setKeyRange, setSize, setValueSize +*/ +void QCPColorMapData::setKeySize(int keySize) +{ + setSize(keySize, mValueSize); +} + +/*! + Resizes the data array to have \a valueSize cells in the value dimension. + + The current data is discarded and the map cells are set to 0, unless the map had already the + requested size. + + Setting \a valueSize to zero frees the internal data array and \ref isEmpty returns true. + + \see setValueRange, setSize, setKeySize +*/ +void QCPColorMapData::setValueSize(int valueSize) +{ + setSize(mKeySize, valueSize); +} + +/*! + Sets the coordinate ranges the data shall be distributed over. This defines the rectangular area + covered by the color map in plot coordinates. + + The outer cells will be centered on the range boundaries given to this function. For example, if + the key size (\ref setKeySize) is 3 and \a keyRange is set to QCPRange(2, 3) there will + be cells centered on the key coordinates 2, 2.5 and 3. + + \see setSize +*/ +void QCPColorMapData::setRange(const QCPRange &keyRange, const QCPRange &valueRange) +{ + setKeyRange(keyRange); + setValueRange(valueRange); +} + +/*! + Sets the coordinate range the data shall be distributed over in the key dimension. Together with + the value range, This defines the rectangular area covered by the color map in plot coordinates. + + The outer cells will be centered on the range boundaries given to this function. For example, if + the key size (\ref setKeySize) is 3 and \a keyRange is set to QCPRange(2, 3) there will + be cells centered on the key coordinates 2, 2.5 and 3. + + \see setRange, setValueRange, setSize +*/ +void QCPColorMapData::setKeyRange(const QCPRange &keyRange) +{ + mKeyRange = keyRange; +} + +/*! + Sets the coordinate range the data shall be distributed over in the value dimension. Together with + the key range, This defines the rectangular area covered by the color map in plot coordinates. + + The outer cells will be centered on the range boundaries given to this function. For example, if + the value size (\ref setValueSize) is 3 and \a valueRange is set to QCPRange(2, 3) there + will be cells centered on the value coordinates 2, 2.5 and 3. + + \see setRange, setKeyRange, setSize +*/ +void QCPColorMapData::setValueRange(const QCPRange &valueRange) +{ + mValueRange = valueRange; +} + +/*! + Sets the data of the cell, which lies at the plot coordinates given by \a key and \a value, to \a + z. + + \note The QCPColorMap always displays the data at equal key/value intervals, even if the key or + value axis is set to a logarithmic scaling. If you want to use QCPColorMap with logarithmic axes, + you shouldn't use the \ref QCPColorMapData::setData method as it uses a linear transformation to + determine the cell index. Rather directly access the cell index with \ref + QCPColorMapData::setCell. + + \see setCell, setRange +*/ +void QCPColorMapData::setData(double key, double value, double z) +{ + int keyCell = (key-mKeyRange.lower)/(mKeyRange.upper-mKeyRange.lower)*(mKeySize-1)+0.5; + int valueCell = (value-mValueRange.lower)/(mValueRange.upper-mValueRange.lower)*(mValueSize-1)+0.5; + if (keyCell >= 0 && keyCell < mKeySize && valueCell >= 0 && valueCell < mValueSize) + { + mData[valueCell*mKeySize + keyCell] = z; + if (z < mDataBounds.lower) + mDataBounds.lower = z; + if (z > mDataBounds.upper) + mDataBounds.upper = z; + mDataModified = true; + } +} + +/*! + Sets the data of the cell with indices \a keyIndex and \a valueIndex to \a z. The indices + enumerate the cells starting from zero, up to the map's size-1 in the respective dimension (see + \ref setSize). + + In the standard plot configuration (horizontal key axis and vertical value axis, both not + range-reversed), the cell with indices (0, 0) is in the bottom left corner and the cell with + indices (keySize-1, valueSize-1) is in the top right corner of the color map. + + \see setData, setSize +*/ +void QCPColorMapData::setCell(int keyIndex, int valueIndex, double z) +{ + if (keyIndex >= 0 && keyIndex < mKeySize && valueIndex >= 0 && valueIndex < mValueSize) + { + mData[valueIndex*mKeySize + keyIndex] = z; + if (z < mDataBounds.lower) + mDataBounds.lower = z; + if (z > mDataBounds.upper) + mDataBounds.upper = z; + mDataModified = true; + } else + qDebug() << Q_FUNC_INFO << "index out of bounds:" << keyIndex << valueIndex; +} + +/*! + Sets the alpha of the color map cell given by \a keyIndex and \a valueIndex to \a alpha. A value + of 0 for \a alpha results in a fully transparent cell, and a value of 255 results in a fully + opaque cell. + + If an alpha map doesn't exist yet for this color map data, it will be created here. If you wish + to restore full opacity and free any allocated memory of the alpha map, call \ref clearAlpha. + + Note that the cell-wise alpha which can be configured here is independent of any alpha configured + in the color map's gradient (\ref QCPColorGradient). If a cell is affected both by the cell-wise + and gradient alpha, the alpha values will be blended accordingly during rendering of the color + map. + + \see fillAlpha, clearAlpha +*/ +void QCPColorMapData::setAlpha(int keyIndex, int valueIndex, unsigned char alpha) +{ + if (keyIndex >= 0 && keyIndex < mKeySize && valueIndex >= 0 && valueIndex < mValueSize) + { + if (mAlpha || createAlpha()) + { + mAlpha[valueIndex*mKeySize + keyIndex] = alpha; + mDataModified = true; + } + } else + qDebug() << Q_FUNC_INFO << "index out of bounds:" << keyIndex << valueIndex; +} + +/*! + Goes through the data and updates the buffered minimum and maximum data values. + + Calling this method is only advised if you are about to call \ref QCPColorMap::rescaleDataRange + and can not guarantee that the cells holding the maximum or minimum data haven't been overwritten + with a smaller or larger value respectively, since the buffered maximum/minimum values have been + updated the last time. Why this is the case is explained in the class description (\ref + QCPColorMapData). + + Note that the method \ref QCPColorMap::rescaleDataRange provides a parameter \a + recalculateDataBounds for convenience. Setting this to true will call this method for you, before + doing the rescale. +*/ +void QCPColorMapData::recalculateDataBounds() +{ + if (mKeySize > 0 && mValueSize > 0) + { + double minHeight = mData[0]; + double maxHeight = mData[0]; + const int dataCount = mValueSize*mKeySize; + for (int i=0; i maxHeight) + maxHeight = mData[i]; + if (mData[i] < minHeight) + minHeight = mData[i]; + } + mDataBounds.lower = minHeight; + mDataBounds.upper = maxHeight; + } +} + +/*! + Frees the internal data memory. + + This is equivalent to calling \ref setSize "setSize(0, 0)". +*/ +void QCPColorMapData::clear() +{ + setSize(0, 0); +} + +/*! + Frees the internal alpha map. The color map will have full opacity again. +*/ +void QCPColorMapData::clearAlpha() +{ + if (mAlpha) + { + delete[] mAlpha; + mAlpha = 0; + mDataModified = true; + } +} + +/*! + Sets all cells to the value \a z. +*/ +void QCPColorMapData::fill(double z) +{ + const int dataCount = mValueSize*mKeySize; + for (int i=0; i(data); + return; + } + if (copy) + { + *mMapData = *data; + } else + { + delete mMapData; + mMapData = data; + } + mMapImageInvalidated = true; +} + +/*! + Sets the data range of this color map to \a dataRange. The data range defines which data values + are mapped to the color gradient. + + To make the data range span the full range of the data set, use \ref rescaleDataRange. + + \see QCPColorScale::setDataRange +*/ +void QCPColorMap::setDataRange(const QCPRange &dataRange) +{ + if (!QCPRange::validRange(dataRange)) return; + if (mDataRange.lower != dataRange.lower || mDataRange.upper != dataRange.upper) + { + if (mDataScaleType == QCPAxis::stLogarithmic) + mDataRange = dataRange.sanitizedForLogScale(); + else + mDataRange = dataRange.sanitizedForLinScale(); + mMapImageInvalidated = true; + emit dataRangeChanged(mDataRange); + } +} + +/*! + Sets whether the data is correlated with the color gradient linearly or logarithmically. + + \see QCPColorScale::setDataScaleType +*/ +void QCPColorMap::setDataScaleType(QCPAxis::ScaleType scaleType) +{ + if (mDataScaleType != scaleType) + { + mDataScaleType = scaleType; + mMapImageInvalidated = true; + emit dataScaleTypeChanged(mDataScaleType); + if (mDataScaleType == QCPAxis::stLogarithmic) + setDataRange(mDataRange.sanitizedForLogScale()); + } +} + +/*! + Sets the color gradient that is used to represent the data. For more details on how to create an + own gradient or use one of the preset gradients, see \ref QCPColorGradient. + + The colors defined by the gradient will be used to represent data values in the currently set + data range, see \ref setDataRange. Data points that are outside this data range will either be + colored uniformly with the respective gradient boundary color, or the gradient will repeat, + depending on \ref QCPColorGradient::setPeriodic. + + \see QCPColorScale::setGradient +*/ +void QCPColorMap::setGradient(const QCPColorGradient &gradient) +{ + if (mGradient != gradient) + { + mGradient = gradient; + mMapImageInvalidated = true; + emit gradientChanged(mGradient); + } +} + +/*! + Sets whether the color map image shall use bicubic interpolation when displaying the color map + shrinked or expanded, and not at a 1:1 pixel-to-data scale. + + \image html QCPColorMap-interpolate.png "A 10*10 color map, with interpolation and without interpolation enabled" +*/ +void QCPColorMap::setInterpolate(bool enabled) +{ + mInterpolate = enabled; + mMapImageInvalidated = true; // because oversampling factors might need to change +} + +/*! + Sets whether the outer most data rows and columns are clipped to the specified key and value + range (see \ref QCPColorMapData::setKeyRange, \ref QCPColorMapData::setValueRange). + + if \a enabled is set to false, the data points at the border of the color map are drawn with the + same width and height as all other data points. Since the data points are represented by + rectangles of one color centered on the data coordinate, this means that the shown color map + extends by half a data point over the specified key/value range in each direction. + + \image html QCPColorMap-tightboundary.png "A color map, with tight boundary enabled and disabled" +*/ +void QCPColorMap::setTightBoundary(bool enabled) +{ + mTightBoundary = enabled; +} + +/*! + Associates the color scale \a colorScale with this color map. + + This means that both the color scale and the color map synchronize their gradient, data range and + data scale type (\ref setGradient, \ref setDataRange, \ref setDataScaleType). Multiple color maps + can be associated with one single color scale. This causes the color maps to also synchronize + those properties, via the mutual color scale. + + This function causes the color map to adopt the current color gradient, data range and data scale + type of \a colorScale. After this call, you may change these properties at either the color map + or the color scale, and the setting will be applied to both. + + Pass 0 as \a colorScale to disconnect the color scale from this color map again. +*/ +void QCPColorMap::setColorScale(QCPColorScale *colorScale) +{ + if (mColorScale) // unconnect signals from old color scale + { + disconnect(this, SIGNAL(dataRangeChanged(QCPRange)), mColorScale.data(), SLOT(setDataRange(QCPRange))); + disconnect(this, SIGNAL(dataScaleTypeChanged(QCPAxis::ScaleType)), mColorScale.data(), SLOT(setDataScaleType(QCPAxis::ScaleType))); + disconnect(this, SIGNAL(gradientChanged(QCPColorGradient)), mColorScale.data(), SLOT(setGradient(QCPColorGradient))); + disconnect(mColorScale.data(), SIGNAL(dataRangeChanged(QCPRange)), this, SLOT(setDataRange(QCPRange))); + disconnect(mColorScale.data(), SIGNAL(gradientChanged(QCPColorGradient)), this, SLOT(setGradient(QCPColorGradient))); + disconnect(mColorScale.data(), SIGNAL(dataScaleTypeChanged(QCPAxis::ScaleType)), this, SLOT(setDataScaleType(QCPAxis::ScaleType))); + } + mColorScale = colorScale; + if (mColorScale) // connect signals to new color scale + { + setGradient(mColorScale.data()->gradient()); + setDataRange(mColorScale.data()->dataRange()); + setDataScaleType(mColorScale.data()->dataScaleType()); + connect(this, SIGNAL(dataRangeChanged(QCPRange)), mColorScale.data(), SLOT(setDataRange(QCPRange))); + connect(this, SIGNAL(dataScaleTypeChanged(QCPAxis::ScaleType)), mColorScale.data(), SLOT(setDataScaleType(QCPAxis::ScaleType))); + connect(this, SIGNAL(gradientChanged(QCPColorGradient)), mColorScale.data(), SLOT(setGradient(QCPColorGradient))); + connect(mColorScale.data(), SIGNAL(dataRangeChanged(QCPRange)), this, SLOT(setDataRange(QCPRange))); + connect(mColorScale.data(), SIGNAL(gradientChanged(QCPColorGradient)), this, SLOT(setGradient(QCPColorGradient))); + connect(mColorScale.data(), SIGNAL(dataScaleTypeChanged(QCPAxis::ScaleType)), this, SLOT(setDataScaleType(QCPAxis::ScaleType))); + } +} + +/*! + Sets the data range (\ref setDataRange) to span the minimum and maximum values that occur in the + current data set. This corresponds to the \ref rescaleKeyAxis or \ref rescaleValueAxis methods, + only for the third data dimension of the color map. + + The minimum and maximum values of the data set are buffered in the internal QCPColorMapData + instance (\ref data). As data is updated via its \ref QCPColorMapData::setCell or \ref + QCPColorMapData::setData, the buffered minimum and maximum values are updated, too. For + performance reasons, however, they are only updated in an expanding fashion. So the buffered + maximum can only increase and the buffered minimum can only decrease. In consequence, changes to + the data that actually lower the maximum of the data set (by overwriting the cell holding the + current maximum with a smaller value), aren't recognized and the buffered maximum overestimates + the true maximum of the data set. The same happens for the buffered minimum. To recalculate the + true minimum and maximum by explicitly looking at each cell, the method + QCPColorMapData::recalculateDataBounds can be used. For convenience, setting the parameter \a + recalculateDataBounds calls this method before setting the data range to the buffered minimum and + maximum. + + \see setDataRange +*/ +void QCPColorMap::rescaleDataRange(bool recalculateDataBounds) +{ + if (recalculateDataBounds) + mMapData->recalculateDataBounds(); + setDataRange(mMapData->dataBounds()); +} + +/*! + Takes the current appearance of the color map and updates the legend icon, which is used to + represent this color map in the legend (see \ref QCPLegend). + + The \a transformMode specifies whether the rescaling is done by a faster, low quality image + scaling algorithm (Qt::FastTransformation) or by a slower, higher quality algorithm + (Qt::SmoothTransformation). + + The current color map appearance is scaled down to \a thumbSize. Ideally, this should be equal to + the size of the legend icon (see \ref QCPLegend::setIconSize). If it isn't exactly the configured + legend icon size, the thumb will be rescaled during drawing of the legend item. + + \see setDataRange +*/ +void QCPColorMap::updateLegendIcon(Qt::TransformationMode transformMode, const QSize &thumbSize) +{ + if (mMapImage.isNull() && !data()->isEmpty()) + updateMapImage(); // try to update map image if it's null (happens if no draw has happened yet) + + if (!mMapImage.isNull()) // might still be null, e.g. if data is empty, so check here again + { + bool mirrorX = (keyAxis()->orientation() == Qt::Horizontal ? keyAxis() : valueAxis())->rangeReversed(); + bool mirrorY = (valueAxis()->orientation() == Qt::Vertical ? valueAxis() : keyAxis())->rangeReversed(); + mLegendIcon = QPixmap::fromImage(mMapImage.mirrored(mirrorX, mirrorY)).scaled(thumbSize, Qt::KeepAspectRatio, transformMode); + } +} + +/* inherits documentation from base class */ +double QCPColorMap::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if ((onlySelectable && mSelectable == QCP::stNone) || mMapData->isEmpty()) + return -1; + if (!mKeyAxis || !mValueAxis) + return -1; + + if (mKeyAxis.data()->axisRect()->rect().contains(pos.toPoint())) + { + double posKey, posValue; + pixelsToCoords(pos, posKey, posValue); + if (mMapData->keyRange().contains(posKey) && mMapData->valueRange().contains(posValue)) + { + if (details) + details->setValue(QCPDataSelection(QCPDataRange(0, 1))); // temporary solution, to facilitate whole-plottable selection. Replace in future version with segmented 2D selection. + return mParentPlot->selectionTolerance()*0.99; + } + } + return -1; +} + +/* inherits documentation from base class */ +QCPRange QCPColorMap::getKeyRange(bool &foundRange, QCP::SignDomain inSignDomain) const +{ + foundRange = true; + QCPRange result = mMapData->keyRange(); + result.normalize(); + if (inSignDomain == QCP::sdPositive) + { + if (result.lower <= 0 && result.upper > 0) + result.lower = result.upper*1e-3; + else if (result.lower <= 0 && result.upper <= 0) + foundRange = false; + } else if (inSignDomain == QCP::sdNegative) + { + if (result.upper >= 0 && result.lower < 0) + result.upper = result.lower*1e-3; + else if (result.upper >= 0 && result.lower >= 0) + foundRange = false; + } + return result; +} + +/* inherits documentation from base class */ +QCPRange QCPColorMap::getValueRange(bool &foundRange, QCP::SignDomain inSignDomain, const QCPRange &inKeyRange) const +{ + if (inKeyRange != QCPRange()) + { + if (mMapData->keyRange().upper < inKeyRange.lower || mMapData->keyRange().lower > inKeyRange.upper) + { + foundRange = false; + return QCPRange(); + } + } + + foundRange = true; + QCPRange result = mMapData->valueRange(); + result.normalize(); + if (inSignDomain == QCP::sdPositive) + { + if (result.lower <= 0 && result.upper > 0) + result.lower = result.upper*1e-3; + else if (result.lower <= 0 && result.upper <= 0) + foundRange = false; + } else if (inSignDomain == QCP::sdNegative) + { + if (result.upper >= 0 && result.lower < 0) + result.upper = result.lower*1e-3; + else if (result.upper >= 0 && result.lower >= 0) + foundRange = false; + } + return result; +} + +/*! \internal + + Updates the internal map image buffer by going through the internal \ref QCPColorMapData and + turning the data values into color pixels with \ref QCPColorGradient::colorize. + + This method is called by \ref QCPColorMap::draw if either the data has been modified or the map image + has been invalidated for a different reason (e.g. a change of the data range with \ref + setDataRange). + + If the map cell count is low, the image created will be oversampled in order to avoid a + QPainter::drawImage bug which makes inner pixel boundaries jitter when stretch-drawing images + without smooth transform enabled. Accordingly, oversampling isn't performed if \ref + setInterpolate is true. +*/ +void QCPColorMap::updateMapImage() +{ + QCPAxis *keyAxis = mKeyAxis.data(); + if (!keyAxis) return; + if (mMapData->isEmpty()) return; + + const QImage::Format format = QImage::Format_ARGB32_Premultiplied; + const int keySize = mMapData->keySize(); + const int valueSize = mMapData->valueSize(); + int keyOversamplingFactor = mInterpolate ? 1 : (int)(1.0+100.0/(double)keySize); // make mMapImage have at least size 100, factor becomes 1 if size > 200 or interpolation is on + int valueOversamplingFactor = mInterpolate ? 1 : (int)(1.0+100.0/(double)valueSize); // make mMapImage have at least size 100, factor becomes 1 if size > 200 or interpolation is on + + // resize mMapImage to correct dimensions including possible oversampling factors, according to key/value axes orientation: + if (keyAxis->orientation() == Qt::Horizontal && (mMapImage.width() != keySize*keyOversamplingFactor || mMapImage.height() != valueSize*valueOversamplingFactor)) + mMapImage = QImage(QSize(keySize*keyOversamplingFactor, valueSize*valueOversamplingFactor), format); + else if (keyAxis->orientation() == Qt::Vertical && (mMapImage.width() != valueSize*valueOversamplingFactor || mMapImage.height() != keySize*keyOversamplingFactor)) + mMapImage = QImage(QSize(valueSize*valueOversamplingFactor, keySize*keyOversamplingFactor), format); + + if (mMapImage.isNull()) + { + qDebug() << Q_FUNC_INFO << "Couldn't create map image (possibly too large for memory)"; + mMapImage = QImage(QSize(10, 10), format); + mMapImage.fill(Qt::black); + } else + { + QImage *localMapImage = &mMapImage; // this is the image on which the colorization operates. Either the final mMapImage, or if we need oversampling, mUndersampledMapImage + if (keyOversamplingFactor > 1 || valueOversamplingFactor > 1) + { + // resize undersampled map image to actual key/value cell sizes: + if (keyAxis->orientation() == Qt::Horizontal && (mUndersampledMapImage.width() != keySize || mUndersampledMapImage.height() != valueSize)) + mUndersampledMapImage = QImage(QSize(keySize, valueSize), format); + else if (keyAxis->orientation() == Qt::Vertical && (mUndersampledMapImage.width() != valueSize || mUndersampledMapImage.height() != keySize)) + mUndersampledMapImage = QImage(QSize(valueSize, keySize), format); + localMapImage = &mUndersampledMapImage; // make the colorization run on the undersampled image + } else if (!mUndersampledMapImage.isNull()) + mUndersampledMapImage = QImage(); // don't need oversampling mechanism anymore (map size has changed) but mUndersampledMapImage still has nonzero size, free it + + const double *rawData = mMapData->mData; + const unsigned char *rawAlpha = mMapData->mAlpha; + if (keyAxis->orientation() == Qt::Horizontal) + { + const int lineCount = valueSize; + const int rowCount = keySize; + for (int line=0; line(localMapImage->scanLine(lineCount-1-line)); // invert scanline index because QImage counts scanlines from top, but our vertical index counts from bottom (mathematical coordinate system) + if (rawAlpha) + mGradient.colorize(rawData+line*rowCount, rawAlpha+line*rowCount, mDataRange, pixels, rowCount, 1, mDataScaleType==QCPAxis::stLogarithmic); + else + mGradient.colorize(rawData+line*rowCount, mDataRange, pixels, rowCount, 1, mDataScaleType==QCPAxis::stLogarithmic); + } + } else // keyAxis->orientation() == Qt::Vertical + { + const int lineCount = keySize; + const int rowCount = valueSize; + for (int line=0; line(localMapImage->scanLine(lineCount-1-line)); // invert scanline index because QImage counts scanlines from top, but our vertical index counts from bottom (mathematical coordinate system) + if (rawAlpha) + mGradient.colorize(rawData+line, rawAlpha+line, mDataRange, pixels, rowCount, lineCount, mDataScaleType==QCPAxis::stLogarithmic); + else + mGradient.colorize(rawData+line, mDataRange, pixels, rowCount, lineCount, mDataScaleType==QCPAxis::stLogarithmic); + } + } + + if (keyOversamplingFactor > 1 || valueOversamplingFactor > 1) + { + if (keyAxis->orientation() == Qt::Horizontal) + mMapImage = mUndersampledMapImage.scaled(keySize*keyOversamplingFactor, valueSize*valueOversamplingFactor, Qt::IgnoreAspectRatio, Qt::FastTransformation); + else + mMapImage = mUndersampledMapImage.scaled(valueSize*valueOversamplingFactor, keySize*keyOversamplingFactor, Qt::IgnoreAspectRatio, Qt::FastTransformation); + } + } + mMapData->mDataModified = false; + mMapImageInvalidated = false; +} + +/* inherits documentation from base class */ +void QCPColorMap::draw(QCPPainter *painter) +{ + if (mMapData->isEmpty()) return; + if (!mKeyAxis || !mValueAxis) return; + applyDefaultAntialiasingHint(painter); + + if (mMapData->mDataModified || mMapImageInvalidated) + updateMapImage(); + + // use buffer if painting vectorized (PDF): + const bool useBuffer = painter->modes().testFlag(QCPPainter::pmVectorized); + QCPPainter *localPainter = painter; // will be redirected to paint on mapBuffer if painting vectorized + QRectF mapBufferTarget; // the rect in absolute widget coordinates where the visible map portion/buffer will end up in + QPixmap mapBuffer; + if (useBuffer) + { + const double mapBufferPixelRatio = 3; // factor by which DPI is increased in embedded bitmaps + mapBufferTarget = painter->clipRegion().boundingRect(); + mapBuffer = QPixmap((mapBufferTarget.size()*mapBufferPixelRatio).toSize()); + mapBuffer.fill(Qt::transparent); + localPainter = new QCPPainter(&mapBuffer); + localPainter->scale(mapBufferPixelRatio, mapBufferPixelRatio); + localPainter->translate(-mapBufferTarget.topLeft()); + } + + QRectF imageRect = QRectF(coordsToPixels(mMapData->keyRange().lower, mMapData->valueRange().lower), + coordsToPixels(mMapData->keyRange().upper, mMapData->valueRange().upper)).normalized(); + // extend imageRect to contain outer halves/quarters of bordering/cornering pixels (cells are centered on map range boundary): + double halfCellWidth = 0; // in pixels + double halfCellHeight = 0; // in pixels + if (keyAxis()->orientation() == Qt::Horizontal) + { + if (mMapData->keySize() > 1) + halfCellWidth = 0.5*imageRect.width()/(double)(mMapData->keySize()-1); + if (mMapData->valueSize() > 1) + halfCellHeight = 0.5*imageRect.height()/(double)(mMapData->valueSize()-1); + } else // keyAxis orientation is Qt::Vertical + { + if (mMapData->keySize() > 1) + halfCellHeight = 0.5*imageRect.height()/(double)(mMapData->keySize()-1); + if (mMapData->valueSize() > 1) + halfCellWidth = 0.5*imageRect.width()/(double)(mMapData->valueSize()-1); + } + imageRect.adjust(-halfCellWidth, -halfCellHeight, halfCellWidth, halfCellHeight); + const bool mirrorX = (keyAxis()->orientation() == Qt::Horizontal ? keyAxis() : valueAxis())->rangeReversed(); + const bool mirrorY = (valueAxis()->orientation() == Qt::Vertical ? valueAxis() : keyAxis())->rangeReversed(); + const bool smoothBackup = localPainter->renderHints().testFlag(QPainter::SmoothPixmapTransform); + localPainter->setRenderHint(QPainter::SmoothPixmapTransform, mInterpolate); + QRegion clipBackup; + if (mTightBoundary) + { + clipBackup = localPainter->clipRegion(); + QRectF tightClipRect = QRectF(coordsToPixels(mMapData->keyRange().lower, mMapData->valueRange().lower), + coordsToPixels(mMapData->keyRange().upper, mMapData->valueRange().upper)).normalized(); + localPainter->setClipRect(tightClipRect, Qt::IntersectClip); + } + localPainter->drawImage(imageRect, mMapImage.mirrored(mirrorX, mirrorY)); + if (mTightBoundary) + localPainter->setClipRegion(clipBackup); + localPainter->setRenderHint(QPainter::SmoothPixmapTransform, smoothBackup); + + if (useBuffer) // localPainter painted to mapBuffer, so now draw buffer with original painter + { + delete localPainter; + painter->drawPixmap(mapBufferTarget.toRect(), mapBuffer); + } +} + +/* inherits documentation from base class */ +void QCPColorMap::drawLegendIcon(QCPPainter *painter, const QRectF &rect) const +{ + applyDefaultAntialiasingHint(painter); + // draw map thumbnail: + if (!mLegendIcon.isNull()) + { + QPixmap scaledIcon = mLegendIcon.scaled(rect.size().toSize(), Qt::KeepAspectRatio, Qt::FastTransformation); + QRectF iconRect = QRectF(0, 0, scaledIcon.width(), scaledIcon.height()); + iconRect.moveCenter(rect.center()); + painter->drawPixmap(iconRect.topLeft(), scaledIcon); + } + /* + // draw frame: + painter->setBrush(Qt::NoBrush); + painter->setPen(Qt::black); + painter->drawRect(rect.adjusted(1, 1, 0, 0)); + */ +} +/* end of 'src/plottables/plottable-colormap.cpp' */ + + +/* including file 'src/plottables/plottable-financial.cpp', size 42827 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPFinancialData +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPFinancialData + \brief Holds the data of one single data point for QCPFinancial. + + The stored data is: + \li \a key: coordinate on the key axis of this data point (this is the \a mainKey and the \a sortKey) + \li \a open: The opening value at the data point (this is the \a mainValue) + \li \a high: The high/maximum value at the data point + \li \a low: The low/minimum value at the data point + \li \a close: The closing value at the data point + + The container for storing multiple data points is \ref QCPFinancialDataContainer. It is a typedef + for \ref QCPDataContainer with \ref QCPFinancialData as the DataType template parameter. See the + documentation there for an explanation regarding the data type's generic methods. + + \see QCPFinancialDataContainer +*/ + +/* start documentation of inline functions */ + +/*! \fn double QCPFinancialData::sortKey() const + + Returns the \a key member of this data point. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn static QCPFinancialData QCPFinancialData::fromSortKey(double sortKey) + + Returns a data point with the specified \a sortKey. All other members are set to zero. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn static static bool QCPFinancialData::sortKeyIsMainKey() + + Since the member \a key is both the data point key coordinate and the data ordering parameter, + this method returns true. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn double QCPFinancialData::mainKey() const + + Returns the \a key member of this data point. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn double QCPFinancialData::mainValue() const + + Returns the \a open member of this data point. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/*! \fn QCPRange QCPFinancialData::valueRange() const + + Returns a QCPRange spanning from the \a low to the \a high value of this data point. + + For a general explanation of what this method is good for in the context of the data container, + see the documentation of \ref QCPDataContainer. +*/ + +/* end documentation of inline functions */ + +/*! + Constructs a data point with key and all values set to zero. +*/ +QCPFinancialData::QCPFinancialData() : + key(0), + open(0), + high(0), + low(0), + close(0) +{ +} + +/*! + Constructs a data point with the specified \a key and OHLC values. +*/ +QCPFinancialData::QCPFinancialData(double key, double open, double high, double low, double close) : + key(key), + open(open), + high(high), + low(low), + close(close) +{ +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPFinancial +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPFinancial + \brief A plottable representing a financial stock chart + + \image html QCPFinancial.png + + This plottable represents time series data binned to certain intervals, mainly used for stock + charts. The two common representations OHLC (Open-High-Low-Close) bars and Candlesticks can be + set via \ref setChartStyle. + + The data is passed via \ref setData as a set of open/high/low/close values at certain keys + (typically times). This means the data must be already binned appropriately. If data is only + available as a series of values (e.g. \a price against \a time), you can use the static + convenience function \ref timeSeriesToOhlc to generate binned OHLC-data which can then be passed + to \ref setData. + + The width of the OHLC bars/candlesticks can be controlled with \ref setWidth and \ref + setWidthType. A typical choice is to set the width type to \ref wtPlotCoords (the default) and + the width to (or slightly less than) one time bin interval width. + + \section qcpfinancial-appearance Changing the appearance + + Charts can be either single- or two-colored (\ref setTwoColored). If set to be single-colored, + lines are drawn with the plottable's pen (\ref setPen) and fills with the brush (\ref setBrush). + + If set to two-colored, positive changes of the value during an interval (\a close >= \a open) are + represented with a different pen and brush than negative changes (\a close < \a open). These can + be configured with \ref setPenPositive, \ref setPenNegative, \ref setBrushPositive, and \ref + setBrushNegative. In two-colored mode, the normal plottable pen/brush is ignored. Upon selection + however, the normal selected pen/brush (provided by the \ref selectionDecorator) is used, + irrespective of whether the chart is single- or two-colored. + + \section qcpfinancial-usage Usage + + Like all data representing objects in QCustomPlot, the QCPFinancial is a plottable + (QCPAbstractPlottable). So the plottable-interface of QCustomPlot applies + (QCustomPlot::plottable, QCustomPlot::removePlottable, etc.) + + Usually, you first create an instance: + + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpfinancial-creation-1 + which registers it with the QCustomPlot instance of the passed axes. Note that this QCustomPlot + instance takes ownership of the plottable, so do not delete it manually but use + QCustomPlot::removePlottable() instead. The newly created plottable can be modified, e.g.: + + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpfinancial-creation-2 + Here we have used the static helper method \ref timeSeriesToOhlc, to turn a time-price data + series into a 24-hour binned open-high-low-close data series as QCPFinancial uses. +*/ + +/* start of documentation of inline functions */ + +/*! \fn QCPFinancialDataContainer *QCPFinancial::data() const + + Returns a pointer to the internal data storage of type \ref QCPFinancialDataContainer. You may + use it to directly manipulate the data, which may be more convenient and faster than using the + regular \ref setData or \ref addData methods, in certain situations. +*/ + +/* end of documentation of inline functions */ + +/*! + Constructs a financial chart which uses \a keyAxis as its key axis ("x") and \a valueAxis as its value + axis ("y"). \a keyAxis and \a valueAxis must reside in the same QCustomPlot instance and not have + the same orientation. If either of these restrictions is violated, a corresponding message is + printed to the debug output (qDebug), the construction is not aborted, though. + + The created QCPFinancial is automatically registered with the QCustomPlot instance inferred from \a + keyAxis. This QCustomPlot instance takes ownership of the QCPFinancial, so do not delete it manually + but use QCustomPlot::removePlottable() instead. +*/ +QCPFinancial::QCPFinancial(QCPAxis *keyAxis, QCPAxis *valueAxis) : + QCPAbstractPlottable1D(keyAxis, valueAxis), + mChartStyle(csCandlestick), + mWidth(0.5), + mWidthType(wtPlotCoords), + mTwoColored(true), + mBrushPositive(QBrush(QColor(50, 160, 0))), + mBrushNegative(QBrush(QColor(180, 0, 15))), + mPenPositive(QPen(QColor(40, 150, 0))), + mPenNegative(QPen(QColor(170, 5, 5))) +{ + mSelectionDecorator->setBrush(QBrush(QColor(160, 160, 255))); +} + +QCPFinancial::~QCPFinancial() +{ +} + +/*! \overload + + Replaces the current data container with the provided \a data container. + + Since a QSharedPointer is used, multiple QCPFinancials may share the same data container safely. + Modifying the data in the container will then affect all financials that share the container. + Sharing can be achieved by simply exchanging the data containers wrapped in shared pointers: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpfinancial-datasharing-1 + + If you do not wish to share containers, but create a copy from an existing container, rather use + the \ref QCPDataContainer::set method on the financial's data container directly: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcpfinancial-datasharing-2 + + \see addData, timeSeriesToOhlc +*/ +void QCPFinancial::setData(QSharedPointer data) +{ + mDataContainer = data; +} + +/*! \overload + + Replaces the current data with the provided points in \a keys, \a open, \a high, \a low and \a + close. The provided vectors should have equal length. Else, the number of added points will be + the size of the smallest vector. + + If you can guarantee that the passed data points are sorted by \a keys in ascending order, you + can set \a alreadySorted to true, to improve performance by saving a sorting run. + + \see addData, timeSeriesToOhlc +*/ +void QCPFinancial::setData(const QVector &keys, const QVector &open, const QVector &high, const QVector &low, const QVector &close, bool alreadySorted) +{ + mDataContainer->clear(); + addData(keys, open, high, low, close, alreadySorted); +} + +/*! + Sets which representation style shall be used to display the OHLC data. +*/ +void QCPFinancial::setChartStyle(QCPFinancial::ChartStyle style) +{ + mChartStyle = style; +} + +/*! + Sets the width of the individual bars/candlesticks to \a width in plot key coordinates. + + A typical choice is to set it to (or slightly less than) one bin interval width. +*/ +void QCPFinancial::setWidth(double width) +{ + mWidth = width; +} + +/*! + Sets how the width of the financial bars is defined. See the documentation of \ref WidthType for + an explanation of the possible values for \a widthType. + + The default value is \ref wtPlotCoords. + + \see setWidth +*/ +void QCPFinancial::setWidthType(QCPFinancial::WidthType widthType) +{ + mWidthType = widthType; +} + +/*! + Sets whether this chart shall contrast positive from negative trends per data point by using two + separate colors to draw the respective bars/candlesticks. + + If \a twoColored is false, the normal plottable's pen and brush are used (\ref setPen, \ref + setBrush). + + \see setPenPositive, setPenNegative, setBrushPositive, setBrushNegative +*/ +void QCPFinancial::setTwoColored(bool twoColored) +{ + mTwoColored = twoColored; +} + +/*! + If \ref setTwoColored is set to true, this function controls the brush that is used to draw fills + of data points with a positive trend (i.e. bars/candlesticks with close >= open). + + If \a twoColored is false, the normal plottable's pen and brush are used (\ref setPen, \ref + setBrush). + + \see setBrushNegative, setPenPositive, setPenNegative +*/ +void QCPFinancial::setBrushPositive(const QBrush &brush) +{ + mBrushPositive = brush; +} + +/*! + If \ref setTwoColored is set to true, this function controls the brush that is used to draw fills + of data points with a negative trend (i.e. bars/candlesticks with close < open). + + If \a twoColored is false, the normal plottable's pen and brush are used (\ref setPen, \ref + setBrush). + + \see setBrushPositive, setPenNegative, setPenPositive +*/ +void QCPFinancial::setBrushNegative(const QBrush &brush) +{ + mBrushNegative = brush; +} + +/*! + If \ref setTwoColored is set to true, this function controls the pen that is used to draw + outlines of data points with a positive trend (i.e. bars/candlesticks with close >= open). + + If \a twoColored is false, the normal plottable's pen and brush are used (\ref setPen, \ref + setBrush). + + \see setPenNegative, setBrushPositive, setBrushNegative +*/ +void QCPFinancial::setPenPositive(const QPen &pen) +{ + mPenPositive = pen; +} + +/*! + If \ref setTwoColored is set to true, this function controls the pen that is used to draw + outlines of data points with a negative trend (i.e. bars/candlesticks with close < open). + + If \a twoColored is false, the normal plottable's pen and brush are used (\ref setPen, \ref + setBrush). + + \see setPenPositive, setBrushNegative, setBrushPositive +*/ +void QCPFinancial::setPenNegative(const QPen &pen) +{ + mPenNegative = pen; +} + +/*! \overload + + Adds the provided points in \a keys, \a open, \a high, \a low and \a close to the current data. + The provided vectors should have equal length. Else, the number of added points will be the size + of the smallest vector. + + If you can guarantee that the passed data points are sorted by \a keys in ascending order, you + can set \a alreadySorted to true, to improve performance by saving a sorting run. + + Alternatively, you can also access and modify the data directly via the \ref data method, which + returns a pointer to the internal data container. + + \see timeSeriesToOhlc +*/ +void QCPFinancial::addData(const QVector &keys, const QVector &open, const QVector &high, const QVector &low, const QVector &close, bool alreadySorted) +{ + if (keys.size() != open.size() || open.size() != high.size() || high.size() != low.size() || low.size() != close.size() || close.size() != keys.size()) + qDebug() << Q_FUNC_INFO << "keys, open, high, low, close have different sizes:" << keys.size() << open.size() << high.size() << low.size() << close.size(); + const int n = qMin(keys.size(), qMin(open.size(), qMin(high.size(), qMin(low.size(), close.size())))); + QVector tempData(n); + QVector::iterator it = tempData.begin(); + const QVector::iterator itEnd = tempData.end(); + int i = 0; + while (it != itEnd) + { + it->key = keys[i]; + it->open = open[i]; + it->high = high[i]; + it->low = low[i]; + it->close = close[i]; + ++it; + ++i; + } + mDataContainer->add(tempData, alreadySorted); // don't modify tempData beyond this to prevent copy on write +} + +/*! \overload + + Adds the provided data point as \a key, \a open, \a high, \a low and \a close to the current + data. + + Alternatively, you can also access and modify the data directly via the \ref data method, which + returns a pointer to the internal data container. + + \see timeSeriesToOhlc +*/ +void QCPFinancial::addData(double key, double open, double high, double low, double close) +{ + mDataContainer->add(QCPFinancialData(key, open, high, low, close)); +} + +/*! + \copydoc QCPPlottableInterface1D::selectTestRect +*/ +QCPDataSelection QCPFinancial::selectTestRect(const QRectF &rect, bool onlySelectable) const +{ + QCPDataSelection result; + if ((onlySelectable && mSelectable == QCP::stNone) || mDataContainer->isEmpty()) + return result; + if (!mKeyAxis || !mValueAxis) + return result; + + QCPFinancialDataContainer::const_iterator visibleBegin, visibleEnd; + getVisibleDataBounds(visibleBegin, visibleEnd); + + for (QCPFinancialDataContainer::const_iterator it=visibleBegin; it!=visibleEnd; ++it) + { + if (rect.intersects(selectionHitBox(it))) + result.addDataRange(QCPDataRange(it-mDataContainer->constBegin(), it-mDataContainer->constBegin()+1), false); + } + result.simplify(); + return result; +} + +/*! + Implements a selectTest specific to this plottable's point geometry. + + If \a details is not 0, it will be set to a \ref QCPDataSelection, describing the closest data + point to \a pos. + + \seebaseclassmethod \ref QCPAbstractPlottable::selectTest +*/ +double QCPFinancial::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if ((onlySelectable && mSelectable == QCP::stNone) || mDataContainer->isEmpty()) + return -1; + if (!mKeyAxis || !mValueAxis) + return -1; + + if (mKeyAxis.data()->axisRect()->rect().contains(pos.toPoint())) + { + // get visible data range: + QCPFinancialDataContainer::const_iterator visibleBegin, visibleEnd; + QCPFinancialDataContainer::const_iterator closestDataPoint = mDataContainer->constEnd(); + getVisibleDataBounds(visibleBegin, visibleEnd); + // perform select test according to configured style: + double result = -1; + switch (mChartStyle) + { + case QCPFinancial::csOhlc: + result = ohlcSelectTest(pos, visibleBegin, visibleEnd, closestDataPoint); break; + case QCPFinancial::csCandlestick: + result = candlestickSelectTest(pos, visibleBegin, visibleEnd, closestDataPoint); break; + } + if (details) + { + int pointIndex = closestDataPoint-mDataContainer->constBegin(); + details->setValue(QCPDataSelection(QCPDataRange(pointIndex, pointIndex+1))); + } + return result; + } + + return -1; +} + +/* inherits documentation from base class */ +QCPRange QCPFinancial::getKeyRange(bool &foundRange, QCP::SignDomain inSignDomain) const +{ + QCPRange range = mDataContainer->keyRange(foundRange, inSignDomain); + // determine exact range by including width of bars/flags: + if (foundRange) + { + if (inSignDomain != QCP::sdPositive || range.lower-mWidth*0.5 > 0) + range.lower -= mWidth*0.5; + if (inSignDomain != QCP::sdNegative || range.upper+mWidth*0.5 < 0) + range.upper += mWidth*0.5; + } + return range; +} + +/* inherits documentation from base class */ +QCPRange QCPFinancial::getValueRange(bool &foundRange, QCP::SignDomain inSignDomain, const QCPRange &inKeyRange) const +{ + return mDataContainer->valueRange(foundRange, inSignDomain, inKeyRange); +} + +/*! + A convenience function that converts time series data (\a value against \a time) to OHLC binned + data points. The return value can then be passed on to \ref QCPFinancialDataContainer::set(const + QCPFinancialDataContainer&). + + The size of the bins can be controlled with \a timeBinSize in the same units as \a time is given. + For example, if the unit of \a time is seconds and single OHLC/Candlesticks should span an hour + each, set \a timeBinSize to 3600. + + \a timeBinOffset allows to control precisely at what \a time coordinate a bin should start. The + value passed as \a timeBinOffset doesn't need to be in the range encompassed by the \a time keys. + It merely defines the mathematical offset/phase of the bins that will be used to process the + data. +*/ +QCPFinancialDataContainer QCPFinancial::timeSeriesToOhlc(const QVector &time, const QVector &value, double timeBinSize, double timeBinOffset) +{ + QCPFinancialDataContainer data; + int count = qMin(time.size(), value.size()); + if (count == 0) + return QCPFinancialDataContainer(); + + QCPFinancialData currentBinData(0, value.first(), value.first(), value.first(), value.first()); + int currentBinIndex = qFloor((time.first()-timeBinOffset)/timeBinSize+0.5); + for (int i=0; i currentBinData.high) currentBinData.high = value.at(i); + if (i == count-1) // last data point is in current bin, finalize bin: + { + currentBinData.close = value.at(i); + currentBinData.key = timeBinOffset+(index)*timeBinSize; + data.add(currentBinData); + } + } else // data point not anymore in current bin, set close of old and open of new bin, and add old to map: + { + // finalize current bin: + currentBinData.close = value.at(i-1); + currentBinData.key = timeBinOffset+(index-1)*timeBinSize; + data.add(currentBinData); + // start next bin: + currentBinIndex = index; + currentBinData.open = value.at(i); + currentBinData.high = value.at(i); + currentBinData.low = value.at(i); + } + } + + return data; +} + +/* inherits documentation from base class */ +void QCPFinancial::draw(QCPPainter *painter) +{ + // get visible data range: + QCPFinancialDataContainer::const_iterator visibleBegin, visibleEnd; + getVisibleDataBounds(visibleBegin, visibleEnd); + + // loop over and draw segments of unselected/selected data: + QList selectedSegments, unselectedSegments, allSegments; + getDataSegments(selectedSegments, unselectedSegments); + allSegments << unselectedSegments << selectedSegments; + for (int i=0; i= unselectedSegments.size(); + QCPFinancialDataContainer::const_iterator begin = visibleBegin; + QCPFinancialDataContainer::const_iterator end = visibleEnd; + mDataContainer->limitIteratorsToDataRange(begin, end, allSegments.at(i)); + if (begin == end) + continue; + + // draw data segment according to configured style: + switch (mChartStyle) + { + case QCPFinancial::csOhlc: + drawOhlcPlot(painter, begin, end, isSelectedSegment); break; + case QCPFinancial::csCandlestick: + drawCandlestickPlot(painter, begin, end, isSelectedSegment); break; + } + } + + // draw other selection decoration that isn't just line/scatter pens and brushes: + if (mSelectionDecorator) + mSelectionDecorator->drawDecoration(painter, selection()); +} + +/* inherits documentation from base class */ +void QCPFinancial::drawLegendIcon(QCPPainter *painter, const QRectF &rect) const +{ + painter->setAntialiasing(false); // legend icon especially of csCandlestick looks better without antialiasing + if (mChartStyle == csOhlc) + { + if (mTwoColored) + { + // draw upper left half icon with positive color: + painter->setBrush(mBrushPositive); + painter->setPen(mPenPositive); + painter->setClipRegion(QRegion(QPolygon() << rect.bottomLeft().toPoint() << rect.topRight().toPoint() << rect.topLeft().toPoint())); + painter->drawLine(QLineF(0, rect.height()*0.5, rect.width(), rect.height()*0.5).translated(rect.topLeft())); + painter->drawLine(QLineF(rect.width()*0.2, rect.height()*0.3, rect.width()*0.2, rect.height()*0.5).translated(rect.topLeft())); + painter->drawLine(QLineF(rect.width()*0.8, rect.height()*0.5, rect.width()*0.8, rect.height()*0.7).translated(rect.topLeft())); + // draw bottom right half icon with negative color: + painter->setBrush(mBrushNegative); + painter->setPen(mPenNegative); + painter->setClipRegion(QRegion(QPolygon() << rect.bottomLeft().toPoint() << rect.topRight().toPoint() << rect.bottomRight().toPoint())); + painter->drawLine(QLineF(0, rect.height()*0.5, rect.width(), rect.height()*0.5).translated(rect.topLeft())); + painter->drawLine(QLineF(rect.width()*0.2, rect.height()*0.3, rect.width()*0.2, rect.height()*0.5).translated(rect.topLeft())); + painter->drawLine(QLineF(rect.width()*0.8, rect.height()*0.5, rect.width()*0.8, rect.height()*0.7).translated(rect.topLeft())); + } else + { + painter->setBrush(mBrush); + painter->setPen(mPen); + painter->drawLine(QLineF(0, rect.height()*0.5, rect.width(), rect.height()*0.5).translated(rect.topLeft())); + painter->drawLine(QLineF(rect.width()*0.2, rect.height()*0.3, rect.width()*0.2, rect.height()*0.5).translated(rect.topLeft())); + painter->drawLine(QLineF(rect.width()*0.8, rect.height()*0.5, rect.width()*0.8, rect.height()*0.7).translated(rect.topLeft())); + } + } else if (mChartStyle == csCandlestick) + { + if (mTwoColored) + { + // draw upper left half icon with positive color: + painter->setBrush(mBrushPositive); + painter->setPen(mPenPositive); + painter->setClipRegion(QRegion(QPolygon() << rect.bottomLeft().toPoint() << rect.topRight().toPoint() << rect.topLeft().toPoint())); + painter->drawLine(QLineF(0, rect.height()*0.5, rect.width()*0.25, rect.height()*0.5).translated(rect.topLeft())); + painter->drawLine(QLineF(rect.width()*0.75, rect.height()*0.5, rect.width(), rect.height()*0.5).translated(rect.topLeft())); + painter->drawRect(QRectF(rect.width()*0.25, rect.height()*0.25, rect.width()*0.5, rect.height()*0.5).translated(rect.topLeft())); + // draw bottom right half icon with negative color: + painter->setBrush(mBrushNegative); + painter->setPen(mPenNegative); + painter->setClipRegion(QRegion(QPolygon() << rect.bottomLeft().toPoint() << rect.topRight().toPoint() << rect.bottomRight().toPoint())); + painter->drawLine(QLineF(0, rect.height()*0.5, rect.width()*0.25, rect.height()*0.5).translated(rect.topLeft())); + painter->drawLine(QLineF(rect.width()*0.75, rect.height()*0.5, rect.width(), rect.height()*0.5).translated(rect.topLeft())); + painter->drawRect(QRectF(rect.width()*0.25, rect.height()*0.25, rect.width()*0.5, rect.height()*0.5).translated(rect.topLeft())); + } else + { + painter->setBrush(mBrush); + painter->setPen(mPen); + painter->drawLine(QLineF(0, rect.height()*0.5, rect.width()*0.25, rect.height()*0.5).translated(rect.topLeft())); + painter->drawLine(QLineF(rect.width()*0.75, rect.height()*0.5, rect.width(), rect.height()*0.5).translated(rect.topLeft())); + painter->drawRect(QRectF(rect.width()*0.25, rect.height()*0.25, rect.width()*0.5, rect.height()*0.5).translated(rect.topLeft())); + } + } +} + +/*! \internal + + Draws the data from \a begin to \a end-1 as OHLC bars with the provided \a painter. + + This method is a helper function for \ref draw. It is used when the chart style is \ref csOhlc. +*/ +void QCPFinancial::drawOhlcPlot(QCPPainter *painter, const QCPFinancialDataContainer::const_iterator &begin, const QCPFinancialDataContainer::const_iterator &end, bool isSelected) +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + + if (keyAxis->orientation() == Qt::Horizontal) + { + for (QCPFinancialDataContainer::const_iterator it = begin; it != end; ++it) + { + if (isSelected && mSelectionDecorator) + mSelectionDecorator->applyPen(painter); + else if (mTwoColored) + painter->setPen(it->close >= it->open ? mPenPositive : mPenNegative); + else + painter->setPen(mPen); + double keyPixel = keyAxis->coordToPixel(it->key); + double openPixel = valueAxis->coordToPixel(it->open); + double closePixel = valueAxis->coordToPixel(it->close); + // draw backbone: + painter->drawLine(QPointF(keyPixel, valueAxis->coordToPixel(it->high)), QPointF(keyPixel, valueAxis->coordToPixel(it->low))); + // draw open: + double pixelWidth = getPixelWidth(it->key, keyPixel); // sign of this makes sure open/close are on correct sides + painter->drawLine(QPointF(keyPixel-pixelWidth, openPixel), QPointF(keyPixel, openPixel)); + // draw close: + painter->drawLine(QPointF(keyPixel, closePixel), QPointF(keyPixel+pixelWidth, closePixel)); + } + } else + { + for (QCPFinancialDataContainer::const_iterator it = begin; it != end; ++it) + { + if (isSelected && mSelectionDecorator) + mSelectionDecorator->applyPen(painter); + else if (mTwoColored) + painter->setPen(it->close >= it->open ? mPenPositive : mPenNegative); + else + painter->setPen(mPen); + double keyPixel = keyAxis->coordToPixel(it->key); + double openPixel = valueAxis->coordToPixel(it->open); + double closePixel = valueAxis->coordToPixel(it->close); + // draw backbone: + painter->drawLine(QPointF(valueAxis->coordToPixel(it->high), keyPixel), QPointF(valueAxis->coordToPixel(it->low), keyPixel)); + // draw open: + double pixelWidth = getPixelWidth(it->key, keyPixel); // sign of this makes sure open/close are on correct sides + painter->drawLine(QPointF(openPixel, keyPixel-pixelWidth), QPointF(openPixel, keyPixel)); + // draw close: + painter->drawLine(QPointF(closePixel, keyPixel), QPointF(closePixel, keyPixel+pixelWidth)); + } + } +} + +/*! \internal + + Draws the data from \a begin to \a end-1 as Candlesticks with the provided \a painter. + + This method is a helper function for \ref draw. It is used when the chart style is \ref csCandlestick. +*/ +void QCPFinancial::drawCandlestickPlot(QCPPainter *painter, const QCPFinancialDataContainer::const_iterator &begin, const QCPFinancialDataContainer::const_iterator &end, bool isSelected) +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + + if (keyAxis->orientation() == Qt::Horizontal) + { + for (QCPFinancialDataContainer::const_iterator it = begin; it != end; ++it) + { + if (isSelected && mSelectionDecorator) + { + mSelectionDecorator->applyPen(painter); + mSelectionDecorator->applyBrush(painter); + } else if (mTwoColored) + { + painter->setPen(it->close >= it->open ? mPenPositive : mPenNegative); + painter->setBrush(it->close >= it->open ? mBrushPositive : mBrushNegative); + } else + { + painter->setPen(mPen); + painter->setBrush(mBrush); + } + double keyPixel = keyAxis->coordToPixel(it->key); + double openPixel = valueAxis->coordToPixel(it->open); + double closePixel = valueAxis->coordToPixel(it->close); + // draw high: + painter->drawLine(QPointF(keyPixel, valueAxis->coordToPixel(it->high)), QPointF(keyPixel, valueAxis->coordToPixel(qMax(it->open, it->close)))); + // draw low: + painter->drawLine(QPointF(keyPixel, valueAxis->coordToPixel(it->low)), QPointF(keyPixel, valueAxis->coordToPixel(qMin(it->open, it->close)))); + // draw open-close box: + double pixelWidth = getPixelWidth(it->key, keyPixel); + painter->drawRect(QRectF(QPointF(keyPixel-pixelWidth, closePixel), QPointF(keyPixel+pixelWidth, openPixel))); + } + } else // keyAxis->orientation() == Qt::Vertical + { + for (QCPFinancialDataContainer::const_iterator it = begin; it != end; ++it) + { + if (isSelected && mSelectionDecorator) + { + mSelectionDecorator->applyPen(painter); + mSelectionDecorator->applyBrush(painter); + } else if (mTwoColored) + { + painter->setPen(it->close >= it->open ? mPenPositive : mPenNegative); + painter->setBrush(it->close >= it->open ? mBrushPositive : mBrushNegative); + } else + { + painter->setPen(mPen); + painter->setBrush(mBrush); + } + double keyPixel = keyAxis->coordToPixel(it->key); + double openPixel = valueAxis->coordToPixel(it->open); + double closePixel = valueAxis->coordToPixel(it->close); + // draw high: + painter->drawLine(QPointF(valueAxis->coordToPixel(it->high), keyPixel), QPointF(valueAxis->coordToPixel(qMax(it->open, it->close)), keyPixel)); + // draw low: + painter->drawLine(QPointF(valueAxis->coordToPixel(it->low), keyPixel), QPointF(valueAxis->coordToPixel(qMin(it->open, it->close)), keyPixel)); + // draw open-close box: + double pixelWidth = getPixelWidth(it->key, keyPixel); + painter->drawRect(QRectF(QPointF(closePixel, keyPixel-pixelWidth), QPointF(openPixel, keyPixel+pixelWidth))); + } + } +} + +/*! \internal + + This function is used to determine the width of the bar at coordinate \a key, according to the + specified width (\ref setWidth) and width type (\ref setWidthType). Provide the pixel position of + \a key in \a keyPixel (because usually this was already calculated via \ref QCPAxis::coordToPixel + when this function is called). + + It returns the number of pixels the bar extends to higher keys, relative to the \a key + coordinate. So with a non-reversed horizontal axis, the return value is positive. With a reversed + horizontal axis, the return value is negative. This is important so the open/close flags on the + \ref csOhlc bar are drawn to the correct side. +*/ +double QCPFinancial::getPixelWidth(double key, double keyPixel) const +{ + double result = 0; + switch (mWidthType) + { + case wtAbsolute: + { + if (mKeyAxis) + result = mWidth*0.5*mKeyAxis.data()->pixelOrientation(); + break; + } + case wtAxisRectRatio: + { + if (mKeyAxis && mKeyAxis.data()->axisRect()) + { + if (mKeyAxis.data()->orientation() == Qt::Horizontal) + result = mKeyAxis.data()->axisRect()->width()*mWidth*0.5*mKeyAxis.data()->pixelOrientation(); + else + result = mKeyAxis.data()->axisRect()->height()*mWidth*0.5*mKeyAxis.data()->pixelOrientation(); + } else + qDebug() << Q_FUNC_INFO << "No key axis or axis rect defined"; + break; + } + case wtPlotCoords: + { + if (mKeyAxis) + result = mKeyAxis.data()->coordToPixel(key+mWidth*0.5)-keyPixel; + else + qDebug() << Q_FUNC_INFO << "No key axis defined"; + break; + } + } + return result; +} + +/*! \internal + + This method is a helper function for \ref selectTest. It is used to test for selection when the + chart style is \ref csOhlc. It only tests against the data points between \a begin and \a end. + + Like \ref selectTest, this method returns the shortest distance of \a pos to the graphical + representation of the plottable, and \a closestDataPoint will point to the respective data point. +*/ +double QCPFinancial::ohlcSelectTest(const QPointF &pos, const QCPFinancialDataContainer::const_iterator &begin, const QCPFinancialDataContainer::const_iterator &end, QCPFinancialDataContainer::const_iterator &closestDataPoint) const +{ + closestDataPoint = mDataContainer->constEnd(); + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return -1; } + + double minDistSqr = (std::numeric_limits::max)(); + if (keyAxis->orientation() == Qt::Horizontal) + { + for (QCPFinancialDataContainer::const_iterator it=begin; it!=end; ++it) + { + double keyPixel = keyAxis->coordToPixel(it->key); + // calculate distance to backbone: + double currentDistSqr = QCPVector2D(pos).distanceSquaredToLine(QCPVector2D(keyPixel, valueAxis->coordToPixel(it->high)), QCPVector2D(keyPixel, valueAxis->coordToPixel(it->low))); + if (currentDistSqr < minDistSqr) + { + minDistSqr = currentDistSqr; + closestDataPoint = it; + } + } + } else // keyAxis->orientation() == Qt::Vertical + { + for (QCPFinancialDataContainer::const_iterator it=begin; it!=end; ++it) + { + double keyPixel = keyAxis->coordToPixel(it->key); + // calculate distance to backbone: + double currentDistSqr = QCPVector2D(pos).distanceSquaredToLine(QCPVector2D(valueAxis->coordToPixel(it->high), keyPixel), QCPVector2D(valueAxis->coordToPixel(it->low), keyPixel)); + if (currentDistSqr < minDistSqr) + { + minDistSqr = currentDistSqr; + closestDataPoint = it; + } + } + } + return qSqrt(minDistSqr); +} + +/*! \internal + + This method is a helper function for \ref selectTest. It is used to test for selection when the + chart style is \ref csCandlestick. It only tests against the data points between \a begin and \a + end. + + Like \ref selectTest, this method returns the shortest distance of \a pos to the graphical + representation of the plottable, and \a closestDataPoint will point to the respective data point. +*/ +double QCPFinancial::candlestickSelectTest(const QPointF &pos, const QCPFinancialDataContainer::const_iterator &begin, const QCPFinancialDataContainer::const_iterator &end, QCPFinancialDataContainer::const_iterator &closestDataPoint) const +{ + closestDataPoint = mDataContainer->constEnd(); + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return -1; } + + double minDistSqr = (std::numeric_limits::max)(); + if (keyAxis->orientation() == Qt::Horizontal) + { + for (QCPFinancialDataContainer::const_iterator it=begin; it!=end; ++it) + { + double currentDistSqr; + // determine whether pos is in open-close-box: + QCPRange boxKeyRange(it->key-mWidth*0.5, it->key+mWidth*0.5); + QCPRange boxValueRange(it->close, it->open); + double posKey, posValue; + pixelsToCoords(pos, posKey, posValue); + if (boxKeyRange.contains(posKey) && boxValueRange.contains(posValue)) // is in open-close-box + { + currentDistSqr = mParentPlot->selectionTolerance()*0.99 * mParentPlot->selectionTolerance()*0.99; + } else + { + // calculate distance to high/low lines: + double keyPixel = keyAxis->coordToPixel(it->key); + double highLineDistSqr = QCPVector2D(pos).distanceSquaredToLine(QCPVector2D(keyPixel, valueAxis->coordToPixel(it->high)), QCPVector2D(keyPixel, valueAxis->coordToPixel(qMax(it->open, it->close)))); + double lowLineDistSqr = QCPVector2D(pos).distanceSquaredToLine(QCPVector2D(keyPixel, valueAxis->coordToPixel(it->low)), QCPVector2D(keyPixel, valueAxis->coordToPixel(qMin(it->open, it->close)))); + currentDistSqr = qMin(highLineDistSqr, lowLineDistSqr); + } + if (currentDistSqr < minDistSqr) + { + minDistSqr = currentDistSqr; + closestDataPoint = it; + } + } + } else // keyAxis->orientation() == Qt::Vertical + { + for (QCPFinancialDataContainer::const_iterator it=begin; it!=end; ++it) + { + double currentDistSqr; + // determine whether pos is in open-close-box: + QCPRange boxKeyRange(it->key-mWidth*0.5, it->key+mWidth*0.5); + QCPRange boxValueRange(it->close, it->open); + double posKey, posValue; + pixelsToCoords(pos, posKey, posValue); + if (boxKeyRange.contains(posKey) && boxValueRange.contains(posValue)) // is in open-close-box + { + currentDistSqr = mParentPlot->selectionTolerance()*0.99 * mParentPlot->selectionTolerance()*0.99; + } else + { + // calculate distance to high/low lines: + double keyPixel = keyAxis->coordToPixel(it->key); + double highLineDistSqr = QCPVector2D(pos).distanceSquaredToLine(QCPVector2D(valueAxis->coordToPixel(it->high), keyPixel), QCPVector2D(valueAxis->coordToPixel(qMax(it->open, it->close)), keyPixel)); + double lowLineDistSqr = QCPVector2D(pos).distanceSquaredToLine(QCPVector2D(valueAxis->coordToPixel(it->low), keyPixel), QCPVector2D(valueAxis->coordToPixel(qMin(it->open, it->close)), keyPixel)); + currentDistSqr = qMin(highLineDistSqr, lowLineDistSqr); + } + if (currentDistSqr < minDistSqr) + { + minDistSqr = currentDistSqr; + closestDataPoint = it; + } + } + } + return qSqrt(minDistSqr); +} + +/*! \internal + + called by the drawing methods to determine which data (key) range is visible at the current key + axis range setting, so only that needs to be processed. + + \a begin returns an iterator to the lowest data point that needs to be taken into account when + plotting. Note that in order to get a clean plot all the way to the edge of the axis rect, \a + begin may still be just outside the visible range. + + \a end returns the iterator just above the highest data point that needs to be taken into + account. Same as before, \a end may also lie just outside of the visible range + + if the plottable contains no data, both \a begin and \a end point to \c constEnd. +*/ +void QCPFinancial::getVisibleDataBounds(QCPFinancialDataContainer::const_iterator &begin, QCPFinancialDataContainer::const_iterator &end) const +{ + if (!mKeyAxis) + { + qDebug() << Q_FUNC_INFO << "invalid key axis"; + begin = mDataContainer->constEnd(); + end = mDataContainer->constEnd(); + return; + } + begin = mDataContainer->findBegin(mKeyAxis.data()->range().lower-mWidth*0.5); // subtract half width of ohlc/candlestick to include partially visible data points + end = mDataContainer->findEnd(mKeyAxis.data()->range().upper+mWidth*0.5); // add half width of ohlc/candlestick to include partially visible data points +} + +/*! \internal + + Returns the hit box in pixel coordinates that will be used for data selection with the selection + rect (\ref selectTestRect), of the data point given by \a it. +*/ +QRectF QCPFinancial::selectionHitBox(QCPFinancialDataContainer::const_iterator it) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return QRectF(); } + + double keyPixel = keyAxis->coordToPixel(it->key); + double highPixel = valueAxis->coordToPixel(it->high); + double lowPixel = valueAxis->coordToPixel(it->low); + double keyWidthPixels = keyPixel-keyAxis->coordToPixel(it->key-mWidth*0.5); + if (keyAxis->orientation() == Qt::Horizontal) + return QRectF(keyPixel-keyWidthPixels, highPixel, keyWidthPixels*2, lowPixel-highPixel).normalized(); + else + return QRectF(highPixel, keyPixel-keyWidthPixels, lowPixel-highPixel, keyWidthPixels*2).normalized(); +} +/* end of 'src/plottables/plottable-financial.cpp' */ + + +/* including file 'src/plottables/plottable-errorbar.cpp', size 37570 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPErrorBarsData +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPErrorBarsData + \brief Holds the data of one single error bar for QCPErrorBars. + + The stored data is: + \li \a errorMinus: how much the error bar extends towards negative coordinates from the data + point position + \li \a errorPlus: how much the error bar extends towards positive coordinates from the data point + position + + The container for storing the error bar information is \ref QCPErrorBarsDataContainer. It is a + typedef for QVector<\ref QCPErrorBarsData>. + + \see QCPErrorBarsDataContainer +*/ + +/*! + Constructs an error bar with errors set to zero. +*/ +QCPErrorBarsData::QCPErrorBarsData() : + errorMinus(0), + errorPlus(0) +{ +} + +/*! + Constructs an error bar with equal \a error in both negative and positive direction. +*/ +QCPErrorBarsData::QCPErrorBarsData(double error) : + errorMinus(error), + errorPlus(error) +{ +} + +/*! + Constructs an error bar with negative and positive errors set to \a errorMinus and \a errorPlus, + respectively. +*/ +QCPErrorBarsData::QCPErrorBarsData(double errorMinus, double errorPlus) : + errorMinus(errorMinus), + errorPlus(errorPlus) +{ +} + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPErrorBars +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPErrorBars + \brief A plottable that adds a set of error bars to other plottables. + + \image html QCPErrorBars.png + + The \ref QCPErrorBars plottable can be attached to other one-dimensional plottables (e.g. \ref + QCPGraph, \ref QCPCurve, \ref QCPBars, etc.) and equips them with error bars. + + Use \ref setDataPlottable to define for which plottable the \ref QCPErrorBars shall display the + error bars. The orientation of the error bars can be controlled with \ref setErrorType. + + By using \ref setData, you can supply the actual error data, either as symmetric error or + plus/minus asymmetric errors. \ref QCPErrorBars only stores the error data. The absolute + key/value position of each error bar will be adopted from the configured data plottable. The + error data of the \ref QCPErrorBars are associated one-to-one via their index to the data points + of the data plottable. You can directly access and manipulate the error bar data via \ref data. + + Set either of the plus/minus errors to NaN (qQNaN() or + std::numeric_limits::quiet_NaN()) to not show the respective error bar on the data point at + that index. + + \section qcperrorbars-appearance Changing the appearance + + The appearance of the error bars is defined by the pen (\ref setPen), and the width of the + whiskers (\ref setWhiskerWidth). Further, the error bar backbones may leave a gap around the data + point center to prevent that error bars are drawn too close to or even through scatter points. + This gap size can be controlled via \ref setSymbolGap. +*/ + +/* start of documentation of inline functions */ + +/*! \fn QSharedPointer QCPErrorBars::data() const + + Returns a shared pointer to the internal data storage of type \ref QCPErrorBarsDataContainer. You + may use it to directly manipulate the error values, which may be more convenient and faster than + using the regular \ref setData methods. +*/ + +/* end of documentation of inline functions */ + +/*! + Constructs an error bars plottable which uses \a keyAxis as its key axis ("x") and \a valueAxis as its value + axis ("y"). \a keyAxis and \a valueAxis must reside in the same QCustomPlot instance and not have + the same orientation. If either of these restrictions is violated, a corresponding message is + printed to the debug output (qDebug), the construction is not aborted, though. + + It is also important that the \a keyAxis and \a valueAxis are the same for the error bars + plottable and the data plottable that the error bars shall be drawn on (\ref setDataPlottable). + + The created \ref QCPErrorBars is automatically registered with the QCustomPlot instance inferred + from \a keyAxis. This QCustomPlot instance takes ownership of the \ref QCPErrorBars, so do not + delete it manually but use \ref QCustomPlot::removePlottable() instead. +*/ +QCPErrorBars::QCPErrorBars(QCPAxis *keyAxis, QCPAxis *valueAxis) : + QCPAbstractPlottable(keyAxis, valueAxis), + mDataContainer(new QVector), + mErrorType(etValueError), + mWhiskerWidth(9), + mSymbolGap(10) +{ + setPen(QPen(Qt::black, 0)); + setBrush(Qt::NoBrush); +} + +QCPErrorBars::~QCPErrorBars() +{ +} + +/*! \overload + + Replaces the current data container with the provided \a data container. + + Since a QSharedPointer is used, multiple \ref QCPErrorBars instances may share the same data + container safely. Modifying the data in the container will then affect all \ref QCPErrorBars + instances that share the container. Sharing can be achieved by simply exchanging the data + containers wrapped in shared pointers: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcperrorbars-datasharing-1 + + If you do not wish to share containers, but create a copy from an existing container, assign the + data containers directly: + \snippet documentation/doc-code-snippets/mainwindow.cpp qcperrorbars-datasharing-2 + (This uses different notation compared with other plottables, because the \ref QCPErrorBars + uses a \c QVector as its data container, instead of a \ref QCPDataContainer.) + + \see addData +*/ +void QCPErrorBars::setData(QSharedPointer data) +{ + mDataContainer = data; +} + +/*! \overload + + Sets symmetrical error values as specified in \a error. The errors will be associated one-to-one + by the data point index to the associated data plottable (\ref setDataPlottable). + + You can directly access and manipulate the error bar data via \ref data. + + \see addData +*/ +void QCPErrorBars::setData(const QVector &error) +{ + mDataContainer->clear(); + addData(error); +} + +/*! \overload + + Sets asymmetrical errors as specified in \a errorMinus and \a errorPlus. The errors will be + associated one-to-one by the data point index to the associated data plottable (\ref + setDataPlottable). + + You can directly access and manipulate the error bar data via \ref data. + + \see addData +*/ +void QCPErrorBars::setData(const QVector &errorMinus, const QVector &errorPlus) +{ + mDataContainer->clear(); + addData(errorMinus, errorPlus); +} + +/*! + Sets the data plottable to which the error bars will be applied. The error values specified e.g. + via \ref setData will be associated one-to-one by the data point index to the data points of \a + plottable. This means that the error bars will adopt the key/value coordinates of the data point + with the same index. + + The passed \a plottable must be a one-dimensional plottable, i.e. it must implement the \ref + QCPPlottableInterface1D. Further, it must not be a \ref QCPErrorBars instance itself. If either + of these restrictions is violated, a corresponding qDebug output is generated, and the data + plottable of this \ref QCPErrorBars instance is set to zero. + + For proper display, care must also be taken that the key and value axes of the \a plottable match + those configured for this \ref QCPErrorBars instance. +*/ +void QCPErrorBars::setDataPlottable(QCPAbstractPlottable *plottable) +{ + if (plottable && qobject_cast(plottable)) + { + mDataPlottable = 0; + qDebug() << Q_FUNC_INFO << "can't set another QCPErrorBars instance as data plottable"; + return; + } + if (plottable && !plottable->interface1D()) + { + mDataPlottable = 0; + qDebug() << Q_FUNC_INFO << "passed plottable doesn't implement 1d interface, can't associate with QCPErrorBars"; + return; + } + + mDataPlottable = plottable; +} + +/*! + Sets in which orientation the error bars shall appear on the data points. If your data needs both + error dimensions, create two \ref QCPErrorBars with different \a type. +*/ +void QCPErrorBars::setErrorType(ErrorType type) +{ + mErrorType = type; +} + +/*! + Sets the width of the whiskers (the short bars at the end of the actual error bar backbones) to + \a pixels. +*/ +void QCPErrorBars::setWhiskerWidth(double pixels) +{ + mWhiskerWidth = pixels; +} + +/*! + Sets the gap diameter around the data points that will be left out when drawing the error bar + backbones. This gap prevents that error bars are drawn too close to or even through scatter + points. +*/ +void QCPErrorBars::setSymbolGap(double pixels) +{ + mSymbolGap = pixels; +} + +/*! \overload + + Adds symmetrical error values as specified in \a error. The errors will be associated one-to-one + by the data point index to the associated data plottable (\ref setDataPlottable). + + You can directly access and manipulate the error bar data via \ref data. + + \see setData +*/ +void QCPErrorBars::addData(const QVector &error) +{ + addData(error, error); +} + +/*! \overload + + Adds asymmetrical errors as specified in \a errorMinus and \a errorPlus. The errors will be + associated one-to-one by the data point index to the associated data plottable (\ref + setDataPlottable). + + You can directly access and manipulate the error bar data via \ref data. + + \see setData +*/ +void QCPErrorBars::addData(const QVector &errorMinus, const QVector &errorPlus) +{ + if (errorMinus.size() != errorPlus.size()) + qDebug() << Q_FUNC_INFO << "minus and plus error vectors have different sizes:" << errorMinus.size() << errorPlus.size(); + const int n = qMin(errorMinus.size(), errorPlus.size()); + mDataContainer->reserve(n); + for (int i=0; iappend(QCPErrorBarsData(errorMinus.at(i), errorPlus.at(i))); +} + +/*! \overload + + Adds a single symmetrical error bar as specified in \a error. The errors will be associated + one-to-one by the data point index to the associated data plottable (\ref setDataPlottable). + + You can directly access and manipulate the error bar data via \ref data. + + \see setData +*/ +void QCPErrorBars::addData(double error) +{ + mDataContainer->append(QCPErrorBarsData(error)); +} + +/*! \overload + + Adds a single asymmetrical error bar as specified in \a errorMinus and \a errorPlus. The errors + will be associated one-to-one by the data point index to the associated data plottable (\ref + setDataPlottable). + + You can directly access and manipulate the error bar data via \ref data. + + \see setData +*/ +void QCPErrorBars::addData(double errorMinus, double errorPlus) +{ + mDataContainer->append(QCPErrorBarsData(errorMinus, errorPlus)); +} + +/* inherits documentation from base class */ +int QCPErrorBars::dataCount() const +{ + return mDataContainer->size(); +} + +/* inherits documentation from base class */ +double QCPErrorBars::dataMainKey(int index) const +{ + if (mDataPlottable) + return mDataPlottable->interface1D()->dataMainKey(index); + else + qDebug() << Q_FUNC_INFO << "no data plottable set"; + return 0; +} + +/* inherits documentation from base class */ +double QCPErrorBars::dataSortKey(int index) const +{ + if (mDataPlottable) + return mDataPlottable->interface1D()->dataSortKey(index); + else + qDebug() << Q_FUNC_INFO << "no data plottable set"; + return 0; +} + +/* inherits documentation from base class */ +double QCPErrorBars::dataMainValue(int index) const +{ + if (mDataPlottable) + return mDataPlottable->interface1D()->dataMainValue(index); + else + qDebug() << Q_FUNC_INFO << "no data plottable set"; + return 0; +} + +/* inherits documentation from base class */ +QCPRange QCPErrorBars::dataValueRange(int index) const +{ + if (mDataPlottable) + { + const double value = mDataPlottable->interface1D()->dataMainValue(index); + if (index >= 0 && index < mDataContainer->size() && mErrorType == etValueError) + return QCPRange(value-mDataContainer->at(index).errorMinus, value+mDataContainer->at(index).errorPlus); + else + return QCPRange(value, value); + } else + { + qDebug() << Q_FUNC_INFO << "no data plottable set"; + return QCPRange(); + } +} + +/* inherits documentation from base class */ +QPointF QCPErrorBars::dataPixelPosition(int index) const +{ + if (mDataPlottable) + return mDataPlottable->interface1D()->dataPixelPosition(index); + else + qDebug() << Q_FUNC_INFO << "no data plottable set"; + return QPointF(); +} + +/* inherits documentation from base class */ +bool QCPErrorBars::sortKeyIsMainKey() const +{ + if (mDataPlottable) + { + return mDataPlottable->interface1D()->sortKeyIsMainKey(); + } else + { + qDebug() << Q_FUNC_INFO << "no data plottable set"; + return true; + } +} + +/*! + \copydoc QCPPlottableInterface1D::selectTestRect +*/ +QCPDataSelection QCPErrorBars::selectTestRect(const QRectF &rect, bool onlySelectable) const +{ + QCPDataSelection result; + if (!mDataPlottable) + return result; + if ((onlySelectable && mSelectable == QCP::stNone) || mDataContainer->isEmpty()) + return result; + if (!mKeyAxis || !mValueAxis) + return result; + + QCPErrorBarsDataContainer::const_iterator visibleBegin, visibleEnd; + getVisibleDataBounds(visibleBegin, visibleEnd, QCPDataRange(0, dataCount())); + + QVector backbones, whiskers; + for (QCPErrorBarsDataContainer::const_iterator it=visibleBegin; it!=visibleEnd; ++it) + { + backbones.clear(); + whiskers.clear(); + getErrorBarLines(it, backbones, whiskers); + for (int i=0; iconstBegin(), it-mDataContainer->constBegin()+1), false); + break; + } + } + } + result.simplify(); + return result; +} + +/* inherits documentation from base class */ +int QCPErrorBars::findBegin(double sortKey, bool expandedRange) const +{ + if (mDataPlottable) + { + if (mDataContainer->isEmpty()) + return 0; + int beginIndex = mDataPlottable->interface1D()->findBegin(sortKey, expandedRange); + if (beginIndex >= mDataContainer->size()) + beginIndex = mDataContainer->size()-1; + return beginIndex; + } else + qDebug() << Q_FUNC_INFO << "no data plottable set"; + return 0; +} + +/* inherits documentation from base class */ +int QCPErrorBars::findEnd(double sortKey, bool expandedRange) const +{ + if (mDataPlottable) + { + if (mDataContainer->isEmpty()) + return 0; + int endIndex = mDataPlottable->interface1D()->findEnd(sortKey, expandedRange); + if (endIndex > mDataContainer->size()) + endIndex = mDataContainer->size(); + return endIndex; + } else + qDebug() << Q_FUNC_INFO << "no data plottable set"; + return 0; +} + +/*! + Implements a selectTest specific to this plottable's point geometry. + + If \a details is not 0, it will be set to a \ref QCPDataSelection, describing the closest data + point to \a pos. + + \seebaseclassmethod \ref QCPAbstractPlottable::selectTest +*/ +double QCPErrorBars::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + if (!mDataPlottable) return -1; + + if ((onlySelectable && mSelectable == QCP::stNone) || mDataContainer->isEmpty()) + return -1; + if (!mKeyAxis || !mValueAxis) + return -1; + + if (mKeyAxis.data()->axisRect()->rect().contains(pos.toPoint())) + { + QCPErrorBarsDataContainer::const_iterator closestDataPoint = mDataContainer->constEnd(); + double result = pointDistance(pos, closestDataPoint); + if (details) + { + int pointIndex = closestDataPoint-mDataContainer->constBegin(); + details->setValue(QCPDataSelection(QCPDataRange(pointIndex, pointIndex+1))); + } + return result; + } else + return -1; +} + +/* inherits documentation from base class */ +void QCPErrorBars::draw(QCPPainter *painter) +{ + if (!mDataPlottable) return; + if (!mKeyAxis || !mValueAxis) { qDebug() << Q_FUNC_INFO << "invalid key or value axis"; return; } + if (mKeyAxis.data()->range().size() <= 0 || mDataContainer->isEmpty()) return; + + // if the sort key isn't the main key, we must check the visibility for each data point/error bar individually + // (getVisibleDataBounds applies range restriction, but otherwise can only return full data range): + bool checkPointVisibility = !mDataPlottable->interface1D()->sortKeyIsMainKey(); + + // check data validity if flag set: +#ifdef QCUSTOMPLOT_CHECK_DATA + QCPErrorBarsDataContainer::const_iterator it; + for (it = mDataContainer->constBegin(); it != mDataContainer->constEnd(); ++it) + { + if (QCP::isInvalidData(it->errorMinus, it->errorPlus)) + qDebug() << Q_FUNC_INFO << "Data point at index" << it-mDataContainer->constBegin() << "invalid." << "Plottable name:" << name(); + } +#endif + + applyDefaultAntialiasingHint(painter); + painter->setBrush(Qt::NoBrush); + // loop over and draw segments of unselected/selected data: + QList selectedSegments, unselectedSegments, allSegments; + getDataSegments(selectedSegments, unselectedSegments); + allSegments << unselectedSegments << selectedSegments; + QVector backbones, whiskers; + for (int i=0; i= unselectedSegments.size(); + if (isSelectedSegment && mSelectionDecorator) + mSelectionDecorator->applyPen(painter); + else + painter->setPen(mPen); + if (painter->pen().capStyle() == Qt::SquareCap) + { + QPen capFixPen(painter->pen()); + capFixPen.setCapStyle(Qt::FlatCap); + painter->setPen(capFixPen); + } + backbones.clear(); + whiskers.clear(); + for (QCPErrorBarsDataContainer::const_iterator it=begin; it!=end; ++it) + { + if (!checkPointVisibility || errorBarVisible(it-mDataContainer->constBegin())) + getErrorBarLines(it, backbones, whiskers); + } + painter->drawLines(backbones); + painter->drawLines(whiskers); + } + + // draw other selection decoration that isn't just line/scatter pens and brushes: + if (mSelectionDecorator) + mSelectionDecorator->drawDecoration(painter, selection()); +} + +/* inherits documentation from base class */ +void QCPErrorBars::drawLegendIcon(QCPPainter *painter, const QRectF &rect) const +{ + applyDefaultAntialiasingHint(painter); + painter->setPen(mPen); + if (mErrorType == etValueError && mValueAxis && mValueAxis->orientation() == Qt::Vertical) + { + painter->drawLine(QLineF(rect.center().x(), rect.top()+2, rect.center().x(), rect.bottom()-1)); + painter->drawLine(QLineF(rect.center().x()-4, rect.top()+2, rect.center().x()+4, rect.top()+2)); + painter->drawLine(QLineF(rect.center().x()-4, rect.bottom()-1, rect.center().x()+4, rect.bottom()-1)); + } else + { + painter->drawLine(QLineF(rect.left()+2, rect.center().y(), rect.right()-2, rect.center().y())); + painter->drawLine(QLineF(rect.left()+2, rect.center().y()-4, rect.left()+2, rect.center().y()+4)); + painter->drawLine(QLineF(rect.right()-2, rect.center().y()-4, rect.right()-2, rect.center().y()+4)); + } +} + +/* inherits documentation from base class */ +QCPRange QCPErrorBars::getKeyRange(bool &foundRange, QCP::SignDomain inSignDomain) const +{ + if (!mDataPlottable) + { + foundRange = false; + return QCPRange(); + } + + QCPRange range; + bool haveLower = false; + bool haveUpper = false; + QCPErrorBarsDataContainer::const_iterator it; + for (it = mDataContainer->constBegin(); it != mDataContainer->constEnd(); ++it) + { + if (mErrorType == etValueError) + { + // error bar doesn't extend in key dimension (except whisker but we ignore that here), so only use data point center + const double current = mDataPlottable->interface1D()->dataMainKey(it-mDataContainer->constBegin()); + if (qIsNaN(current)) continue; + if (inSignDomain == QCP::sdBoth || (inSignDomain == QCP::sdNegative && current < 0) || (inSignDomain == QCP::sdPositive && current > 0)) + { + if (current < range.lower || !haveLower) + { + range.lower = current; + haveLower = true; + } + if (current > range.upper || !haveUpper) + { + range.upper = current; + haveUpper = true; + } + } + } else // mErrorType == etKeyError + { + const double dataKey = mDataPlottable->interface1D()->dataMainKey(it-mDataContainer->constBegin()); + if (qIsNaN(dataKey)) continue; + // plus error: + double current = dataKey + (qIsNaN(it->errorPlus) ? 0 : it->errorPlus); + if (inSignDomain == QCP::sdBoth || (inSignDomain == QCP::sdNegative && current < 0) || (inSignDomain == QCP::sdPositive && current > 0)) + { + if (current > range.upper || !haveUpper) + { + range.upper = current; + haveUpper = true; + } + } + // minus error: + current = dataKey - (qIsNaN(it->errorMinus) ? 0 : it->errorMinus); + if (inSignDomain == QCP::sdBoth || (inSignDomain == QCP::sdNegative && current < 0) || (inSignDomain == QCP::sdPositive && current > 0)) + { + if (current < range.lower || !haveLower) + { + range.lower = current; + haveLower = true; + } + } + } + } + + if (haveUpper && !haveLower) + { + range.lower = range.upper; + haveLower = true; + } else if (haveLower && !haveUpper) + { + range.upper = range.lower; + haveUpper = true; + } + + foundRange = haveLower && haveUpper; + return range; +} + +/* inherits documentation from base class */ +QCPRange QCPErrorBars::getValueRange(bool &foundRange, QCP::SignDomain inSignDomain, const QCPRange &inKeyRange) const +{ + if (!mDataPlottable) + { + foundRange = false; + return QCPRange(); + } + + QCPRange range; + const bool restrictKeyRange = inKeyRange != QCPRange(); + bool haveLower = false; + bool haveUpper = false; + QCPErrorBarsDataContainer::const_iterator itBegin = mDataContainer->constBegin(); + QCPErrorBarsDataContainer::const_iterator itEnd = mDataContainer->constEnd(); + if (mDataPlottable->interface1D()->sortKeyIsMainKey() && restrictKeyRange) + { + itBegin = mDataContainer->constBegin()+findBegin(inKeyRange.lower); + itEnd = mDataContainer->constBegin()+findEnd(inKeyRange.upper); + } + for (QCPErrorBarsDataContainer::const_iterator it = itBegin; it != itEnd; ++it) + { + if (restrictKeyRange) + { + const double dataKey = mDataPlottable->interface1D()->dataMainKey(it-mDataContainer->constBegin()); + if (dataKey < inKeyRange.lower || dataKey > inKeyRange.upper) + continue; + } + if (mErrorType == etValueError) + { + const double dataValue = mDataPlottable->interface1D()->dataMainValue(it-mDataContainer->constBegin()); + if (qIsNaN(dataValue)) continue; + // plus error: + double current = dataValue + (qIsNaN(it->errorPlus) ? 0 : it->errorPlus); + if (inSignDomain == QCP::sdBoth || (inSignDomain == QCP::sdNegative && current < 0) || (inSignDomain == QCP::sdPositive && current > 0)) + { + if (current > range.upper || !haveUpper) + { + range.upper = current; + haveUpper = true; + } + } + // minus error: + current = dataValue - (qIsNaN(it->errorMinus) ? 0 : it->errorMinus); + if (inSignDomain == QCP::sdBoth || (inSignDomain == QCP::sdNegative && current < 0) || (inSignDomain == QCP::sdPositive && current > 0)) + { + if (current < range.lower || !haveLower) + { + range.lower = current; + haveLower = true; + } + } + } else // mErrorType == etKeyError + { + // error bar doesn't extend in value dimension (except whisker but we ignore that here), so only use data point center + const double current = mDataPlottable->interface1D()->dataMainValue(it-mDataContainer->constBegin()); + if (qIsNaN(current)) continue; + if (inSignDomain == QCP::sdBoth || (inSignDomain == QCP::sdNegative && current < 0) || (inSignDomain == QCP::sdPositive && current > 0)) + { + if (current < range.lower || !haveLower) + { + range.lower = current; + haveLower = true; + } + if (current > range.upper || !haveUpper) + { + range.upper = current; + haveUpper = true; + } + } + } + } + + if (haveUpper && !haveLower) + { + range.lower = range.upper; + haveLower = true; + } else if (haveLower && !haveUpper) + { + range.upper = range.lower; + haveUpper = true; + } + + foundRange = haveLower && haveUpper; + return range; +} + +/*! \internal + + Calculates the lines that make up the error bar belonging to the data point \a it. + + The resulting lines are added to \a backbones and \a whiskers. The vectors are not cleared, so + calling this method with different \a it but the same \a backbones and \a whiskers allows to + accumulate lines for multiple data points. + + This method assumes that \a it is a valid iterator within the bounds of this \ref QCPErrorBars + instance and within the bounds of the associated data plottable. +*/ +void QCPErrorBars::getErrorBarLines(QCPErrorBarsDataContainer::const_iterator it, QVector &backbones, QVector &whiskers) const +{ + if (!mDataPlottable) return; + + int index = it-mDataContainer->constBegin(); + QPointF centerPixel = mDataPlottable->interface1D()->dataPixelPosition(index); + if (qIsNaN(centerPixel.x()) || qIsNaN(centerPixel.y())) + return; + QCPAxis *errorAxis = mErrorType == etValueError ? mValueAxis.data() : mKeyAxis.data(); + QCPAxis *orthoAxis = mErrorType == etValueError ? mKeyAxis.data() : mValueAxis.data(); + const double centerErrorAxisPixel = errorAxis->orientation() == Qt::Horizontal ? centerPixel.x() : centerPixel.y(); + const double centerOrthoAxisPixel = orthoAxis->orientation() == Qt::Horizontal ? centerPixel.x() : centerPixel.y(); + const double centerErrorAxisCoord = errorAxis->pixelToCoord(centerErrorAxisPixel); // depending on plottable, this might be different from just mDataPlottable->interface1D()->dataMainKey/Value + const double symbolGap = mSymbolGap*0.5*errorAxis->pixelOrientation(); + // plus error: + double errorStart, errorEnd; + if (!qIsNaN(it->errorPlus)) + { + errorStart = centerErrorAxisPixel+symbolGap; + errorEnd = errorAxis->coordToPixel(centerErrorAxisCoord+it->errorPlus); + if (errorAxis->orientation() == Qt::Vertical) + { + if ((errorStart > errorEnd) != errorAxis->rangeReversed()) + backbones.append(QLineF(centerOrthoAxisPixel, errorStart, centerOrthoAxisPixel, errorEnd)); + whiskers.append(QLineF(centerOrthoAxisPixel-mWhiskerWidth*0.5, errorEnd, centerOrthoAxisPixel+mWhiskerWidth*0.5, errorEnd)); + } else + { + if ((errorStart < errorEnd) != errorAxis->rangeReversed()) + backbones.append(QLineF(errorStart, centerOrthoAxisPixel, errorEnd, centerOrthoAxisPixel)); + whiskers.append(QLineF(errorEnd, centerOrthoAxisPixel-mWhiskerWidth*0.5, errorEnd, centerOrthoAxisPixel+mWhiskerWidth*0.5)); + } + } + // minus error: + if (!qIsNaN(it->errorMinus)) + { + errorStart = centerErrorAxisPixel-symbolGap; + errorEnd = errorAxis->coordToPixel(centerErrorAxisCoord-it->errorMinus); + if (errorAxis->orientation() == Qt::Vertical) + { + if ((errorStart < errorEnd) != errorAxis->rangeReversed()) + backbones.append(QLineF(centerOrthoAxisPixel, errorStart, centerOrthoAxisPixel, errorEnd)); + whiskers.append(QLineF(centerOrthoAxisPixel-mWhiskerWidth*0.5, errorEnd, centerOrthoAxisPixel+mWhiskerWidth*0.5, errorEnd)); + } else + { + if ((errorStart > errorEnd) != errorAxis->rangeReversed()) + backbones.append(QLineF(errorStart, centerOrthoAxisPixel, errorEnd, centerOrthoAxisPixel)); + whiskers.append(QLineF(errorEnd, centerOrthoAxisPixel-mWhiskerWidth*0.5, errorEnd, centerOrthoAxisPixel+mWhiskerWidth*0.5)); + } + } +} + +/*! \internal + + This method outputs the currently visible data range via \a begin and \a end. The returned range + will also never exceed \a rangeRestriction. + + Since error bars with type \ref etKeyError may extend to arbitrarily positive and negative key + coordinates relative to their data point key, this method checks all outer error bars whether + they truly don't reach into the visible portion of the axis rect, by calling \ref + errorBarVisible. On the other hand error bars with type \ref etValueError that are associated + with data plottables whose sort key is equal to the main key (see \ref qcpdatacontainer-datatype + "QCPDataContainer DataType") can be handled very efficiently by finding the visible range of + error bars through binary search (\ref QCPPlottableInterface1D::findBegin and \ref + QCPPlottableInterface1D::findEnd). + + If the plottable's sort key is not equal to the main key, this method returns the full data + range, only restricted by \a rangeRestriction. Drawing optimization then has to be done on a + point-by-point basis in the \ref draw method. +*/ +void QCPErrorBars::getVisibleDataBounds(QCPErrorBarsDataContainer::const_iterator &begin, QCPErrorBarsDataContainer::const_iterator &end, const QCPDataRange &rangeRestriction) const +{ + QCPAxis *keyAxis = mKeyAxis.data(); + QCPAxis *valueAxis = mValueAxis.data(); + if (!keyAxis || !valueAxis) + { + qDebug() << Q_FUNC_INFO << "invalid key or value axis"; + end = mDataContainer->constEnd(); + begin = end; + return; + } + if (!mDataPlottable || rangeRestriction.isEmpty()) + { + end = mDataContainer->constEnd(); + begin = end; + return; + } + if (!mDataPlottable->interface1D()->sortKeyIsMainKey()) + { + // if the sort key isn't the main key, it's not possible to find a contiguous range of visible + // data points, so this method then only applies the range restriction and otherwise returns + // the full data range. Visibility checks must be done on a per-datapoin-basis during drawing + QCPDataRange dataRange(0, mDataContainer->size()); + dataRange = dataRange.bounded(rangeRestriction); + begin = mDataContainer->constBegin()+dataRange.begin(); + end = mDataContainer->constBegin()+dataRange.end(); + return; + } + + // get visible data range via interface from data plottable, and then restrict to available error data points: + const int n = qMin(mDataContainer->size(), mDataPlottable->interface1D()->dataCount()); + int beginIndex = mDataPlottable->interface1D()->findBegin(keyAxis->range().lower); + int endIndex = mDataPlottable->interface1D()->findEnd(keyAxis->range().upper); + int i = beginIndex; + while (i > 0 && i < n && i > rangeRestriction.begin()) + { + if (errorBarVisible(i)) + beginIndex = i; + --i; + } + i = endIndex; + while (i >= 0 && i < n && i < rangeRestriction.end()) + { + if (errorBarVisible(i)) + endIndex = i+1; + ++i; + } + QCPDataRange dataRange(beginIndex, endIndex); + dataRange = dataRange.bounded(rangeRestriction.bounded(QCPDataRange(0, mDataContainer->size()))); + begin = mDataContainer->constBegin()+dataRange.begin(); + end = mDataContainer->constBegin()+dataRange.end(); +} + +/*! \internal + + Calculates the minimum distance in pixels the error bars' representation has from the given \a + pixelPoint. This is used to determine whether the error bar was clicked or not, e.g. in \ref + selectTest. The closest data point to \a pixelPoint is returned in \a closestData. +*/ +double QCPErrorBars::pointDistance(const QPointF &pixelPoint, QCPErrorBarsDataContainer::const_iterator &closestData) const +{ + closestData = mDataContainer->constEnd(); + if (!mDataPlottable || mDataContainer->isEmpty()) + return -1.0; + if (!mKeyAxis || !mValueAxis) + { + qDebug() << Q_FUNC_INFO << "invalid key or value axis"; + return -1.0; + } + + QCPErrorBarsDataContainer::const_iterator begin, end; + getVisibleDataBounds(begin, end, QCPDataRange(0, dataCount())); + + // calculate minimum distances to error backbones (whiskers are ignored for speed) and find closestData iterator: + double minDistSqr = (std::numeric_limits::max)(); + QVector backbones, whiskers; + for (QCPErrorBarsDataContainer::const_iterator it=begin; it!=end; ++it) + { + getErrorBarLines(it, backbones, whiskers); + for (int i=0; i &selectedSegments, QList &unselectedSegments) const +{ + selectedSegments.clear(); + unselectedSegments.clear(); + if (mSelectable == QCP::stWhole) // stWhole selection type draws the entire plottable with selected style if mSelection isn't empty + { + if (selected()) + selectedSegments << QCPDataRange(0, dataCount()); + else + unselectedSegments << QCPDataRange(0, dataCount()); + } else + { + QCPDataSelection sel(selection()); + sel.simplify(); + selectedSegments = sel.dataRanges(); + unselectedSegments = sel.inverse(QCPDataRange(0, dataCount())).dataRanges(); + } +} + +/*! \internal + + Returns whether the error bar at the specified \a index is visible within the current key axis + range. + + This method assumes for performance reasons without checking that the key axis, the value axis, + and the data plottable (\ref setDataPlottable) are not zero and that \a index is within valid + bounds of this \ref QCPErrorBars instance and the bounds of the data plottable. +*/ +bool QCPErrorBars::errorBarVisible(int index) const +{ + QPointF centerPixel = mDataPlottable->interface1D()->dataPixelPosition(index); + const double centerKeyPixel = mKeyAxis->orientation() == Qt::Horizontal ? centerPixel.x() : centerPixel.y(); + if (qIsNaN(centerKeyPixel)) + return false; + + double keyMin, keyMax; + if (mErrorType == etKeyError) + { + const double centerKey = mKeyAxis->pixelToCoord(centerKeyPixel); + const double errorPlus = mDataContainer->at(index).errorPlus; + const double errorMinus = mDataContainer->at(index).errorMinus; + keyMax = centerKey+(qIsNaN(errorPlus) ? 0 : errorPlus); + keyMin = centerKey-(qIsNaN(errorMinus) ? 0 : errorMinus); + } else // mErrorType == etValueError + { + keyMax = mKeyAxis->pixelToCoord(centerKeyPixel+mWhiskerWidth*0.5*mKeyAxis->pixelOrientation()); + keyMin = mKeyAxis->pixelToCoord(centerKeyPixel-mWhiskerWidth*0.5*mKeyAxis->pixelOrientation()); + } + return ((keyMax > mKeyAxis->range().lower) && (keyMin < mKeyAxis->range().upper)); +} + +/*! \internal + + Returns whether \a line intersects (or is contained in) \a pixelRect. + + \a line is assumed to be either perfectly horizontal or perfectly vertical, as is the case for + error bar lines. +*/ +bool QCPErrorBars::rectIntersectsLine(const QRectF &pixelRect, const QLineF &line) const +{ + if (pixelRect.left() > line.x1() && pixelRect.left() > line.x2()) + return false; + else if (pixelRect.right() < line.x1() && pixelRect.right() < line.x2()) + return false; + else if (pixelRect.top() > line.y1() && pixelRect.top() > line.y2()) + return false; + else if (pixelRect.bottom() < line.y1() && pixelRect.bottom() < line.y2()) + return false; + else + return true; +} +/* end of 'src/plottables/plottable-errorbar.cpp' */ + + +/* including file 'src/items/item-straightline.cpp', size 7592 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPItemStraightLine +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPItemStraightLine + \brief A straight line that spans infinitely in both directions + + \image html QCPItemStraightLine.png "Straight line example. Blue dotted circles are anchors, solid blue discs are positions." + + It has two positions, \a point1 and \a point2, which define the straight line. +*/ + +/*! + Creates a straight line item and sets default values. + + The created item is automatically registered with \a parentPlot. This QCustomPlot instance takes + ownership of the item, so do not delete it manually but use QCustomPlot::removeItem() instead. +*/ +QCPItemStraightLine::QCPItemStraightLine(QCustomPlot *parentPlot) : + QCPAbstractItem(parentPlot), + point1(createPosition(QLatin1String("point1"))), + point2(createPosition(QLatin1String("point2"))) +{ + point1->setCoords(0, 0); + point2->setCoords(1, 1); + + setPen(QPen(Qt::black)); + setSelectedPen(QPen(Qt::blue,2)); +} + +QCPItemStraightLine::~QCPItemStraightLine() +{ +} + +/*! + Sets the pen that will be used to draw the line + + \see setSelectedPen +*/ +void QCPItemStraightLine::setPen(const QPen &pen) +{ + mPen = pen; +} + +/*! + Sets the pen that will be used to draw the line when selected + + \see setPen, setSelected +*/ +void QCPItemStraightLine::setSelectedPen(const QPen &pen) +{ + mSelectedPen = pen; +} + +/* inherits documentation from base class */ +double QCPItemStraightLine::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (onlySelectable && !mSelectable) + return -1; + + return QCPVector2D(pos).distanceToStraightLine(point1->pixelPosition(), point2->pixelPosition()-point1->pixelPosition()); +} + +/* inherits documentation from base class */ +void QCPItemStraightLine::draw(QCPPainter *painter) +{ + QCPVector2D start(point1->pixelPosition()); + QCPVector2D end(point2->pixelPosition()); + // get visible segment of straight line inside clipRect: + double clipPad = mainPen().widthF(); + QLineF line = getRectClippedStraightLine(start, end-start, clipRect().adjusted(-clipPad, -clipPad, clipPad, clipPad)); + // paint visible segment, if existent: + if (!line.isNull()) + { + painter->setPen(mainPen()); + painter->drawLine(line); + } +} + +/*! \internal + + Returns the section of the straight line defined by \a base and direction vector \a + vec, that is visible in the specified \a rect. + + This is a helper function for \ref draw. +*/ +QLineF QCPItemStraightLine::getRectClippedStraightLine(const QCPVector2D &base, const QCPVector2D &vec, const QRect &rect) const +{ + double bx, by; + double gamma; + QLineF result; + if (vec.x() == 0 && vec.y() == 0) + return result; + if (qFuzzyIsNull(vec.x())) // line is vertical + { + // check top of rect: + bx = rect.left(); + by = rect.top(); + gamma = base.x()-bx + (by-base.y())*vec.x()/vec.y(); + if (gamma >= 0 && gamma <= rect.width()) + result.setLine(bx+gamma, rect.top(), bx+gamma, rect.bottom()); // no need to check bottom because we know line is vertical + } else if (qFuzzyIsNull(vec.y())) // line is horizontal + { + // check left of rect: + bx = rect.left(); + by = rect.top(); + gamma = base.y()-by + (bx-base.x())*vec.y()/vec.x(); + if (gamma >= 0 && gamma <= rect.height()) + result.setLine(rect.left(), by+gamma, rect.right(), by+gamma); // no need to check right because we know line is horizontal + } else // line is skewed + { + QList pointVectors; + // check top of rect: + bx = rect.left(); + by = rect.top(); + gamma = base.x()-bx + (by-base.y())*vec.x()/vec.y(); + if (gamma >= 0 && gamma <= rect.width()) + pointVectors.append(QCPVector2D(bx+gamma, by)); + // check bottom of rect: + bx = rect.left(); + by = rect.bottom(); + gamma = base.x()-bx + (by-base.y())*vec.x()/vec.y(); + if (gamma >= 0 && gamma <= rect.width()) + pointVectors.append(QCPVector2D(bx+gamma, by)); + // check left of rect: + bx = rect.left(); + by = rect.top(); + gamma = base.y()-by + (bx-base.x())*vec.y()/vec.x(); + if (gamma >= 0 && gamma <= rect.height()) + pointVectors.append(QCPVector2D(bx, by+gamma)); + // check right of rect: + bx = rect.right(); + by = rect.top(); + gamma = base.y()-by + (bx-base.x())*vec.y()/vec.x(); + if (gamma >= 0 && gamma <= rect.height()) + pointVectors.append(QCPVector2D(bx, by+gamma)); + + // evaluate points: + if (pointVectors.size() == 2) + { + result.setPoints(pointVectors.at(0).toPointF(), pointVectors.at(1).toPointF()); + } else if (pointVectors.size() > 2) + { + // line probably goes through corner of rect, and we got two points there. single out the point pair with greatest distance: + double distSqrMax = 0; + QCPVector2D pv1, pv2; + for (int i=0; i distSqrMax) + { + pv1 = pointVectors.at(i); + pv2 = pointVectors.at(k); + distSqrMax = distSqr; + } + } + } + result.setPoints(pv1.toPointF(), pv2.toPointF()); + } + } + return result; +} + +/*! \internal + + Returns the pen that should be used for drawing lines. Returns mPen when the + item is not selected and mSelectedPen when it is. +*/ +QPen QCPItemStraightLine::mainPen() const +{ + return mSelected ? mSelectedPen : mPen; +} +/* end of 'src/items/item-straightline.cpp' */ + + +/* including file 'src/items/item-line.cpp', size 8498 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPItemLine +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPItemLine + \brief A line from one point to another + + \image html QCPItemLine.png "Line example. Blue dotted circles are anchors, solid blue discs are positions." + + It has two positions, \a start and \a end, which define the end points of the line. + + With \ref setHead and \ref setTail you may set different line ending styles, e.g. to create an arrow. +*/ + +/*! + Creates a line item and sets default values. + + The created item is automatically registered with \a parentPlot. This QCustomPlot instance takes + ownership of the item, so do not delete it manually but use QCustomPlot::removeItem() instead. +*/ +QCPItemLine::QCPItemLine(QCustomPlot *parentPlot) : + QCPAbstractItem(parentPlot), + start(createPosition(QLatin1String("start"))), + end(createPosition(QLatin1String("end"))) +{ + start->setCoords(0, 0); + end->setCoords(1, 1); + + setPen(QPen(Qt::black)); + setSelectedPen(QPen(Qt::blue,2)); +} + +QCPItemLine::~QCPItemLine() +{ +} + +/*! + Sets the pen that will be used to draw the line + + \see setSelectedPen +*/ +void QCPItemLine::setPen(const QPen &pen) +{ + mPen = pen; +} + +/*! + Sets the pen that will be used to draw the line when selected + + \see setPen, setSelected +*/ +void QCPItemLine::setSelectedPen(const QPen &pen) +{ + mSelectedPen = pen; +} + +/*! + Sets the line ending style of the head. The head corresponds to the \a end position. + + Note that due to the overloaded QCPLineEnding constructor, you may directly specify + a QCPLineEnding::EndingStyle here, e.g. \code setHead(QCPLineEnding::esSpikeArrow) \endcode + + \see setTail +*/ +void QCPItemLine::setHead(const QCPLineEnding &head) +{ + mHead = head; +} + +/*! + Sets the line ending style of the tail. The tail corresponds to the \a start position. + + Note that due to the overloaded QCPLineEnding constructor, you may directly specify + a QCPLineEnding::EndingStyle here, e.g. \code setTail(QCPLineEnding::esSpikeArrow) \endcode + + \see setHead +*/ +void QCPItemLine::setTail(const QCPLineEnding &tail) +{ + mTail = tail; +} + +/* inherits documentation from base class */ +double QCPItemLine::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (onlySelectable && !mSelectable) + return -1; + + return qSqrt(QCPVector2D(pos).distanceSquaredToLine(start->pixelPosition(), end->pixelPosition())); +} + +/* inherits documentation from base class */ +void QCPItemLine::draw(QCPPainter *painter) +{ + QCPVector2D startVec(start->pixelPosition()); + QCPVector2D endVec(end->pixelPosition()); + if (qFuzzyIsNull((startVec-endVec).lengthSquared())) + return; + // get visible segment of straight line inside clipRect: + double clipPad = qMax(mHead.boundingDistance(), mTail.boundingDistance()); + clipPad = qMax(clipPad, (double)mainPen().widthF()); + QLineF line = getRectClippedLine(startVec, endVec, clipRect().adjusted(-clipPad, -clipPad, clipPad, clipPad)); + // paint visible segment, if existent: + if (!line.isNull()) + { + painter->setPen(mainPen()); + painter->drawLine(line); + painter->setBrush(Qt::SolidPattern); + if (mTail.style() != QCPLineEnding::esNone) + mTail.draw(painter, startVec, startVec-endVec); + if (mHead.style() != QCPLineEnding::esNone) + mHead.draw(painter, endVec, endVec-startVec); + } +} + +/*! \internal + + Returns the section of the line defined by \a start and \a end, that is visible in the specified + \a rect. + + This is a helper function for \ref draw. +*/ +QLineF QCPItemLine::getRectClippedLine(const QCPVector2D &start, const QCPVector2D &end, const QRect &rect) const +{ + bool containsStart = rect.contains(start.x(), start.y()); + bool containsEnd = rect.contains(end.x(), end.y()); + if (containsStart && containsEnd) + return QLineF(start.toPointF(), end.toPointF()); + + QCPVector2D base = start; + QCPVector2D vec = end-start; + double bx, by; + double gamma, mu; + QLineF result; + QList pointVectors; + + if (!qFuzzyIsNull(vec.y())) // line is not horizontal + { + // check top of rect: + bx = rect.left(); + by = rect.top(); + mu = (by-base.y())/vec.y(); + if (mu >= 0 && mu <= 1) + { + gamma = base.x()-bx + mu*vec.x(); + if (gamma >= 0 && gamma <= rect.width()) + pointVectors.append(QCPVector2D(bx+gamma, by)); + } + // check bottom of rect: + bx = rect.left(); + by = rect.bottom(); + mu = (by-base.y())/vec.y(); + if (mu >= 0 && mu <= 1) + { + gamma = base.x()-bx + mu*vec.x(); + if (gamma >= 0 && gamma <= rect.width()) + pointVectors.append(QCPVector2D(bx+gamma, by)); + } + } + if (!qFuzzyIsNull(vec.x())) // line is not vertical + { + // check left of rect: + bx = rect.left(); + by = rect.top(); + mu = (bx-base.x())/vec.x(); + if (mu >= 0 && mu <= 1) + { + gamma = base.y()-by + mu*vec.y(); + if (gamma >= 0 && gamma <= rect.height()) + pointVectors.append(QCPVector2D(bx, by+gamma)); + } + // check right of rect: + bx = rect.right(); + by = rect.top(); + mu = (bx-base.x())/vec.x(); + if (mu >= 0 && mu <= 1) + { + gamma = base.y()-by + mu*vec.y(); + if (gamma >= 0 && gamma <= rect.height()) + pointVectors.append(QCPVector2D(bx, by+gamma)); + } + } + + if (containsStart) + pointVectors.append(start); + if (containsEnd) + pointVectors.append(end); + + // evaluate points: + if (pointVectors.size() == 2) + { + result.setPoints(pointVectors.at(0).toPointF(), pointVectors.at(1).toPointF()); + } else if (pointVectors.size() > 2) + { + // line probably goes through corner of rect, and we got two points there. single out the point pair with greatest distance: + double distSqrMax = 0; + QCPVector2D pv1, pv2; + for (int i=0; i distSqrMax) + { + pv1 = pointVectors.at(i); + pv2 = pointVectors.at(k); + distSqrMax = distSqr; + } + } + } + result.setPoints(pv1.toPointF(), pv2.toPointF()); + } + return result; +} + +/*! \internal + + Returns the pen that should be used for drawing lines. Returns mPen when the + item is not selected and mSelectedPen when it is. +*/ +QPen QCPItemLine::mainPen() const +{ + return mSelected ? mSelectedPen : mPen; +} +/* end of 'src/items/item-line.cpp' */ + + +/* including file 'src/items/item-curve.cpp', size 7248 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPItemCurve +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPItemCurve + \brief A curved line from one point to another + + \image html QCPItemCurve.png "Curve example. Blue dotted circles are anchors, solid blue discs are positions." + + It has four positions, \a start and \a end, which define the end points of the line, and two + control points which define the direction the line exits from the start and the direction from + which it approaches the end: \a startDir and \a endDir. + + With \ref setHead and \ref setTail you may set different line ending styles, e.g. to create an + arrow. + + Often it is desirable for the control points to stay at fixed relative positions to the start/end + point. This can be achieved by setting the parent anchor e.g. of \a startDir simply to \a start, + and then specify the desired pixel offset with QCPItemPosition::setCoords on \a startDir. +*/ + +/*! + Creates a curve item and sets default values. + + The created item is automatically registered with \a parentPlot. This QCustomPlot instance takes + ownership of the item, so do not delete it manually but use QCustomPlot::removeItem() instead. +*/ +QCPItemCurve::QCPItemCurve(QCustomPlot *parentPlot) : + QCPAbstractItem(parentPlot), + start(createPosition(QLatin1String("start"))), + startDir(createPosition(QLatin1String("startDir"))), + endDir(createPosition(QLatin1String("endDir"))), + end(createPosition(QLatin1String("end"))) +{ + start->setCoords(0, 0); + startDir->setCoords(0.5, 0); + endDir->setCoords(0, 0.5); + end->setCoords(1, 1); + + setPen(QPen(Qt::black)); + setSelectedPen(QPen(Qt::blue,2)); +} + +QCPItemCurve::~QCPItemCurve() +{ +} + +/*! + Sets the pen that will be used to draw the line + + \see setSelectedPen +*/ +void QCPItemCurve::setPen(const QPen &pen) +{ + mPen = pen; +} + +/*! + Sets the pen that will be used to draw the line when selected + + \see setPen, setSelected +*/ +void QCPItemCurve::setSelectedPen(const QPen &pen) +{ + mSelectedPen = pen; +} + +/*! + Sets the line ending style of the head. The head corresponds to the \a end position. + + Note that due to the overloaded QCPLineEnding constructor, you may directly specify + a QCPLineEnding::EndingStyle here, e.g. \code setHead(QCPLineEnding::esSpikeArrow) \endcode + + \see setTail +*/ +void QCPItemCurve::setHead(const QCPLineEnding &head) +{ + mHead = head; +} + +/*! + Sets the line ending style of the tail. The tail corresponds to the \a start position. + + Note that due to the overloaded QCPLineEnding constructor, you may directly specify + a QCPLineEnding::EndingStyle here, e.g. \code setTail(QCPLineEnding::esSpikeArrow) \endcode + + \see setHead +*/ +void QCPItemCurve::setTail(const QCPLineEnding &tail) +{ + mTail = tail; +} + +/* inherits documentation from base class */ +double QCPItemCurve::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (onlySelectable && !mSelectable) + return -1; + + QPointF startVec(start->pixelPosition()); + QPointF startDirVec(startDir->pixelPosition()); + QPointF endDirVec(endDir->pixelPosition()); + QPointF endVec(end->pixelPosition()); + + QPainterPath cubicPath(startVec); + cubicPath.cubicTo(startDirVec, endDirVec, endVec); + + QList polygons = cubicPath.toSubpathPolygons(); + if (polygons.isEmpty()) + return -1; + const QPolygonF polygon = polygons.first(); + QCPVector2D p(pos); + double minDistSqr = (std::numeric_limits::max)(); + for (int i=1; ipixelPosition()); + QCPVector2D startDirVec(startDir->pixelPosition()); + QCPVector2D endDirVec(endDir->pixelPosition()); + QCPVector2D endVec(end->pixelPosition()); + if ((endVec-startVec).length() > 1e10) // too large curves cause crash + return; + + QPainterPath cubicPath(startVec.toPointF()); + cubicPath.cubicTo(startDirVec.toPointF(), endDirVec.toPointF(), endVec.toPointF()); + + // paint visible segment, if existent: + QRect clip = clipRect().adjusted(-mainPen().widthF(), -mainPen().widthF(), mainPen().widthF(), mainPen().widthF()); + QRect cubicRect = cubicPath.controlPointRect().toRect(); + if (cubicRect.isEmpty()) // may happen when start and end exactly on same x or y position + cubicRect.adjust(0, 0, 1, 1); + if (clip.intersects(cubicRect)) + { + painter->setPen(mainPen()); + painter->drawPath(cubicPath); + painter->setBrush(Qt::SolidPattern); + if (mTail.style() != QCPLineEnding::esNone) + mTail.draw(painter, startVec, M_PI-cubicPath.angleAtPercent(0)/180.0*M_PI); + if (mHead.style() != QCPLineEnding::esNone) + mHead.draw(painter, endVec, -cubicPath.angleAtPercent(1)/180.0*M_PI); + } +} + +/*! \internal + + Returns the pen that should be used for drawing lines. Returns mPen when the + item is not selected and mSelectedPen when it is. +*/ +QPen QCPItemCurve::mainPen() const +{ + return mSelected ? mSelectedPen : mPen; +} +/* end of 'src/items/item-curve.cpp' */ + + +/* including file 'src/items/item-rect.cpp', size 6479 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPItemRect +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPItemRect + \brief A rectangle + + \image html QCPItemRect.png "Rectangle example. Blue dotted circles are anchors, solid blue discs are positions." + + It has two positions, \a topLeft and \a bottomRight, which define the rectangle. +*/ + +/*! + Creates a rectangle item and sets default values. + + The created item is automatically registered with \a parentPlot. This QCustomPlot instance takes + ownership of the item, so do not delete it manually but use QCustomPlot::removeItem() instead. +*/ +QCPItemRect::QCPItemRect(QCustomPlot *parentPlot) : + QCPAbstractItem(parentPlot), + topLeft(createPosition(QLatin1String("topLeft"))), + bottomRight(createPosition(QLatin1String("bottomRight"))), + top(createAnchor(QLatin1String("top"), aiTop)), + topRight(createAnchor(QLatin1String("topRight"), aiTopRight)), + right(createAnchor(QLatin1String("right"), aiRight)), + bottom(createAnchor(QLatin1String("bottom"), aiBottom)), + bottomLeft(createAnchor(QLatin1String("bottomLeft"), aiBottomLeft)), + left(createAnchor(QLatin1String("left"), aiLeft)) +{ + topLeft->setCoords(0, 1); + bottomRight->setCoords(1, 0); + + setPen(QPen(Qt::black)); + setSelectedPen(QPen(Qt::blue,2)); + setBrush(Qt::NoBrush); + setSelectedBrush(Qt::NoBrush); +} + +QCPItemRect::~QCPItemRect() +{ +} + +/*! + Sets the pen that will be used to draw the line of the rectangle + + \see setSelectedPen, setBrush +*/ +void QCPItemRect::setPen(const QPen &pen) +{ + mPen = pen; +} + +/*! + Sets the pen that will be used to draw the line of the rectangle when selected + + \see setPen, setSelected +*/ +void QCPItemRect::setSelectedPen(const QPen &pen) +{ + mSelectedPen = pen; +} + +/*! + Sets the brush that will be used to fill the rectangle. To disable filling, set \a brush to + Qt::NoBrush. + + \see setSelectedBrush, setPen +*/ +void QCPItemRect::setBrush(const QBrush &brush) +{ + mBrush = brush; +} + +/*! + Sets the brush that will be used to fill the rectangle when selected. To disable filling, set \a + brush to Qt::NoBrush. + + \see setBrush +*/ +void QCPItemRect::setSelectedBrush(const QBrush &brush) +{ + mSelectedBrush = brush; +} + +/* inherits documentation from base class */ +double QCPItemRect::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (onlySelectable && !mSelectable) + return -1; + + QRectF rect = QRectF(topLeft->pixelPosition(), bottomRight->pixelPosition()).normalized(); + bool filledRect = mBrush.style() != Qt::NoBrush && mBrush.color().alpha() != 0; + return rectDistance(rect, pos, filledRect); +} + +/* inherits documentation from base class */ +void QCPItemRect::draw(QCPPainter *painter) +{ + QPointF p1 = topLeft->pixelPosition(); + QPointF p2 = bottomRight->pixelPosition(); + if (p1.toPoint() == p2.toPoint()) + return; + QRectF rect = QRectF(p1, p2).normalized(); + double clipPad = mainPen().widthF(); + QRectF boundingRect = rect.adjusted(-clipPad, -clipPad, clipPad, clipPad); + if (boundingRect.intersects(clipRect())) // only draw if bounding rect of rect item is visible in cliprect + { + painter->setPen(mainPen()); + painter->setBrush(mainBrush()); + painter->drawRect(rect); + } +} + +/* inherits documentation from base class */ +QPointF QCPItemRect::anchorPixelPosition(int anchorId) const +{ + QRectF rect = QRectF(topLeft->pixelPosition(), bottomRight->pixelPosition()); + switch (anchorId) + { + case aiTop: return (rect.topLeft()+rect.topRight())*0.5; + case aiTopRight: return rect.topRight(); + case aiRight: return (rect.topRight()+rect.bottomRight())*0.5; + case aiBottom: return (rect.bottomLeft()+rect.bottomRight())*0.5; + case aiBottomLeft: return rect.bottomLeft(); + case aiLeft: return (rect.topLeft()+rect.bottomLeft())*0.5; + } + + qDebug() << Q_FUNC_INFO << "invalid anchorId" << anchorId; + return QPointF(); +} + +/*! \internal + + Returns the pen that should be used for drawing lines. Returns mPen when the item is not selected + and mSelectedPen when it is. +*/ +QPen QCPItemRect::mainPen() const +{ + return mSelected ? mSelectedPen : mPen; +} + +/*! \internal + + Returns the brush that should be used for drawing fills of the item. Returns mBrush when the item + is not selected and mSelectedBrush when it is. +*/ +QBrush QCPItemRect::mainBrush() const +{ + return mSelected ? mSelectedBrush : mBrush; +} +/* end of 'src/items/item-rect.cpp' */ + + +/* including file 'src/items/item-text.cpp', size 13338 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPItemText +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPItemText + \brief A text label + + \image html QCPItemText.png "Text example. Blue dotted circles are anchors, solid blue discs are positions." + + Its position is defined by the member \a position and the setting of \ref setPositionAlignment. + The latter controls which part of the text rect shall be aligned with \a position. + + The text alignment itself (i.e. left, center, right) can be controlled with \ref + setTextAlignment. + + The text may be rotated around the \a position point with \ref setRotation. +*/ + +/*! + Creates a text item and sets default values. + + The created item is automatically registered with \a parentPlot. This QCustomPlot instance takes + ownership of the item, so do not delete it manually but use QCustomPlot::removeItem() instead. +*/ +QCPItemText::QCPItemText(QCustomPlot *parentPlot) : + QCPAbstractItem(parentPlot), + position(createPosition(QLatin1String("position"))), + topLeft(createAnchor(QLatin1String("topLeft"), aiTopLeft)), + top(createAnchor(QLatin1String("top"), aiTop)), + topRight(createAnchor(QLatin1String("topRight"), aiTopRight)), + right(createAnchor(QLatin1String("right"), aiRight)), + bottomRight(createAnchor(QLatin1String("bottomRight"), aiBottomRight)), + bottom(createAnchor(QLatin1String("bottom"), aiBottom)), + bottomLeft(createAnchor(QLatin1String("bottomLeft"), aiBottomLeft)), + left(createAnchor(QLatin1String("left"), aiLeft)), + mText(QLatin1String("text")), + mPositionAlignment(Qt::AlignCenter), + mTextAlignment(Qt::AlignTop|Qt::AlignHCenter), + mRotation(0) +{ + position->setCoords(0, 0); + + setPen(Qt::NoPen); + setSelectedPen(Qt::NoPen); + setBrush(Qt::NoBrush); + setSelectedBrush(Qt::NoBrush); + setColor(Qt::black); + setSelectedColor(Qt::blue); +} + +QCPItemText::~QCPItemText() +{ +} + +/*! + Sets the color of the text. +*/ +void QCPItemText::setColor(const QColor &color) +{ + mColor = color; +} + +/*! + Sets the color of the text that will be used when the item is selected. +*/ +void QCPItemText::setSelectedColor(const QColor &color) +{ + mSelectedColor = color; +} + +/*! + Sets the pen that will be used do draw a rectangular border around the text. To disable the + border, set \a pen to Qt::NoPen. + + \see setSelectedPen, setBrush, setPadding +*/ +void QCPItemText::setPen(const QPen &pen) +{ + mPen = pen; +} + +/*! + Sets the pen that will be used do draw a rectangular border around the text, when the item is + selected. To disable the border, set \a pen to Qt::NoPen. + + \see setPen +*/ +void QCPItemText::setSelectedPen(const QPen &pen) +{ + mSelectedPen = pen; +} + +/*! + Sets the brush that will be used do fill the background of the text. To disable the + background, set \a brush to Qt::NoBrush. + + \see setSelectedBrush, setPen, setPadding +*/ +void QCPItemText::setBrush(const QBrush &brush) +{ + mBrush = brush; +} + +/*! + Sets the brush that will be used do fill the background of the text, when the item is selected. To disable the + background, set \a brush to Qt::NoBrush. + + \see setBrush +*/ +void QCPItemText::setSelectedBrush(const QBrush &brush) +{ + mSelectedBrush = brush; +} + +/*! + Sets the font of the text. + + \see setSelectedFont, setColor +*/ +void QCPItemText::setFont(const QFont &font) +{ + mFont = font; +} + +/*! + Sets the font of the text that will be used when the item is selected. + + \see setFont +*/ +void QCPItemText::setSelectedFont(const QFont &font) +{ + mSelectedFont = font; +} + +/*! + Sets the text that will be displayed. Multi-line texts are supported by inserting a line break + character, e.g. '\n'. + + \see setFont, setColor, setTextAlignment +*/ +void QCPItemText::setText(const QString &text) +{ + mText = text; +} + +/*! + Sets which point of the text rect shall be aligned with \a position. + + Examples: + \li If \a alignment is Qt::AlignHCenter | Qt::AlignTop, the text will be positioned such + that the top of the text rect will be horizontally centered on \a position. + \li If \a alignment is Qt::AlignLeft | Qt::AlignBottom, \a position will indicate the + bottom left corner of the text rect. + + If you want to control the alignment of (multi-lined) text within the text rect, use \ref + setTextAlignment. +*/ +void QCPItemText::setPositionAlignment(Qt::Alignment alignment) +{ + mPositionAlignment = alignment; +} + +/*! + Controls how (multi-lined) text is aligned inside the text rect (typically Qt::AlignLeft, Qt::AlignCenter or Qt::AlignRight). +*/ +void QCPItemText::setTextAlignment(Qt::Alignment alignment) +{ + mTextAlignment = alignment; +} + +/*! + Sets the angle in degrees by which the text (and the text rectangle, if visible) will be rotated + around \a position. +*/ +void QCPItemText::setRotation(double degrees) +{ + mRotation = degrees; +} + +/*! + Sets the distance between the border of the text rectangle and the text. The appearance (and + visibility) of the text rectangle can be controlled with \ref setPen and \ref setBrush. +*/ +void QCPItemText::setPadding(const QMargins &padding) +{ + mPadding = padding; +} + +/* inherits documentation from base class */ +double QCPItemText::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (onlySelectable && !mSelectable) + return -1; + + // The rect may be rotated, so we transform the actual clicked pos to the rotated + // coordinate system, so we can use the normal rectDistance function for non-rotated rects: + QPointF positionPixels(position->pixelPosition()); + QTransform inputTransform; + inputTransform.translate(positionPixels.x(), positionPixels.y()); + inputTransform.rotate(-mRotation); + inputTransform.translate(-positionPixels.x(), -positionPixels.y()); + QPointF rotatedPos = inputTransform.map(pos); + QFontMetrics fontMetrics(mFont); + QRect textRect = fontMetrics.boundingRect(0, 0, 0, 0, Qt::TextDontClip|mTextAlignment, mText); + QRect textBoxRect = textRect.adjusted(-mPadding.left(), -mPadding.top(), mPadding.right(), mPadding.bottom()); + QPointF textPos = getTextDrawPoint(positionPixels, textBoxRect, mPositionAlignment); + textBoxRect.moveTopLeft(textPos.toPoint()); + + return rectDistance(textBoxRect, rotatedPos, true); +} + +/* inherits documentation from base class */ +void QCPItemText::draw(QCPPainter *painter) +{ + QPointF pos(position->pixelPosition()); + QTransform transform = painter->transform(); + transform.translate(pos.x(), pos.y()); + if (!qFuzzyIsNull(mRotation)) + transform.rotate(mRotation); + painter->setFont(mainFont()); + QRect textRect = painter->fontMetrics().boundingRect(0, 0, 0, 0, Qt::TextDontClip|mTextAlignment, mText); + QRect textBoxRect = textRect.adjusted(-mPadding.left(), -mPadding.top(), mPadding.right(), mPadding.bottom()); + QPointF textPos = getTextDrawPoint(QPointF(0, 0), textBoxRect, mPositionAlignment); // 0, 0 because the transform does the translation + textRect.moveTopLeft(textPos.toPoint()+QPoint(mPadding.left(), mPadding.top())); + textBoxRect.moveTopLeft(textPos.toPoint()); + double clipPad = mainPen().widthF(); + QRect boundingRect = textBoxRect.adjusted(-clipPad, -clipPad, clipPad, clipPad); + if (transform.mapRect(boundingRect).intersects(painter->transform().mapRect(clipRect()))) + { + painter->setTransform(transform); + if ((mainBrush().style() != Qt::NoBrush && mainBrush().color().alpha() != 0) || + (mainPen().style() != Qt::NoPen && mainPen().color().alpha() != 0)) + { + painter->setPen(mainPen()); + painter->setBrush(mainBrush()); + painter->drawRect(textBoxRect); + } + painter->setBrush(Qt::NoBrush); + painter->setPen(QPen(mainColor())); + painter->drawText(textRect, Qt::TextDontClip|mTextAlignment, mText); + } +} + +/* inherits documentation from base class */ +QPointF QCPItemText::anchorPixelPosition(int anchorId) const +{ + // get actual rect points (pretty much copied from draw function): + QPointF pos(position->pixelPosition()); + QTransform transform; + transform.translate(pos.x(), pos.y()); + if (!qFuzzyIsNull(mRotation)) + transform.rotate(mRotation); + QFontMetrics fontMetrics(mainFont()); + QRect textRect = fontMetrics.boundingRect(0, 0, 0, 0, Qt::TextDontClip|mTextAlignment, mText); + QRectF textBoxRect = textRect.adjusted(-mPadding.left(), -mPadding.top(), mPadding.right(), mPadding.bottom()); + QPointF textPos = getTextDrawPoint(QPointF(0, 0), textBoxRect, mPositionAlignment); // 0, 0 because the transform does the translation + textBoxRect.moveTopLeft(textPos.toPoint()); + QPolygonF rectPoly = transform.map(QPolygonF(textBoxRect)); + + switch (anchorId) + { + case aiTopLeft: return rectPoly.at(0); + case aiTop: return (rectPoly.at(0)+rectPoly.at(1))*0.5; + case aiTopRight: return rectPoly.at(1); + case aiRight: return (rectPoly.at(1)+rectPoly.at(2))*0.5; + case aiBottomRight: return rectPoly.at(2); + case aiBottom: return (rectPoly.at(2)+rectPoly.at(3))*0.5; + case aiBottomLeft: return rectPoly.at(3); + case aiLeft: return (rectPoly.at(3)+rectPoly.at(0))*0.5; + } + + qDebug() << Q_FUNC_INFO << "invalid anchorId" << anchorId; + return QPointF(); +} + +/*! \internal + + Returns the point that must be given to the QPainter::drawText function (which expects the top + left point of the text rect), according to the position \a pos, the text bounding box \a rect and + the requested \a positionAlignment. + + For example, if \a positionAlignment is Qt::AlignLeft | Qt::AlignBottom the returned point + will be shifted upward by the height of \a rect, starting from \a pos. So if the text is finally + drawn at that point, the lower left corner of the resulting text rect is at \a pos. +*/ +QPointF QCPItemText::getTextDrawPoint(const QPointF &pos, const QRectF &rect, Qt::Alignment positionAlignment) const +{ + if (positionAlignment == 0 || positionAlignment == (Qt::AlignLeft|Qt::AlignTop)) + return pos; + + QPointF result = pos; // start at top left + if (positionAlignment.testFlag(Qt::AlignHCenter)) + result.rx() -= rect.width()/2.0; + else if (positionAlignment.testFlag(Qt::AlignRight)) + result.rx() -= rect.width(); + if (positionAlignment.testFlag(Qt::AlignVCenter)) + result.ry() -= rect.height()/2.0; + else if (positionAlignment.testFlag(Qt::AlignBottom)) + result.ry() -= rect.height(); + return result; +} + +/*! \internal + + Returns the font that should be used for drawing text. Returns mFont when the item is not selected + and mSelectedFont when it is. +*/ +QFont QCPItemText::mainFont() const +{ + return mSelected ? mSelectedFont : mFont; +} + +/*! \internal + + Returns the color that should be used for drawing text. Returns mColor when the item is not + selected and mSelectedColor when it is. +*/ +QColor QCPItemText::mainColor() const +{ + return mSelected ? mSelectedColor : mColor; +} + +/*! \internal + + Returns the pen that should be used for drawing lines. Returns mPen when the item is not selected + and mSelectedPen when it is. +*/ +QPen QCPItemText::mainPen() const +{ + return mSelected ? mSelectedPen : mPen; +} + +/*! \internal + + Returns the brush that should be used for drawing fills of the item. Returns mBrush when the item + is not selected and mSelectedBrush when it is. +*/ +QBrush QCPItemText::mainBrush() const +{ + return mSelected ? mSelectedBrush : mBrush; +} +/* end of 'src/items/item-text.cpp' */ + + +/* including file 'src/items/item-ellipse.cpp', size 7863 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPItemEllipse +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPItemEllipse + \brief An ellipse + + \image html QCPItemEllipse.png "Ellipse example. Blue dotted circles are anchors, solid blue discs are positions." + + It has two positions, \a topLeft and \a bottomRight, which define the rect the ellipse will be drawn in. +*/ + +/*! + Creates an ellipse item and sets default values. + + The created item is automatically registered with \a parentPlot. This QCustomPlot instance takes + ownership of the item, so do not delete it manually but use QCustomPlot::removeItem() instead. +*/ +QCPItemEllipse::QCPItemEllipse(QCustomPlot *parentPlot) : + QCPAbstractItem(parentPlot), + topLeft(createPosition(QLatin1String("topLeft"))), + bottomRight(createPosition(QLatin1String("bottomRight"))), + topLeftRim(createAnchor(QLatin1String("topLeftRim"), aiTopLeftRim)), + top(createAnchor(QLatin1String("top"), aiTop)), + topRightRim(createAnchor(QLatin1String("topRightRim"), aiTopRightRim)), + right(createAnchor(QLatin1String("right"), aiRight)), + bottomRightRim(createAnchor(QLatin1String("bottomRightRim"), aiBottomRightRim)), + bottom(createAnchor(QLatin1String("bottom"), aiBottom)), + bottomLeftRim(createAnchor(QLatin1String("bottomLeftRim"), aiBottomLeftRim)), + left(createAnchor(QLatin1String("left"), aiLeft)), + center(createAnchor(QLatin1String("center"), aiCenter)) +{ + topLeft->setCoords(0, 1); + bottomRight->setCoords(1, 0); + + setPen(QPen(Qt::black)); + setSelectedPen(QPen(Qt::blue, 2)); + setBrush(Qt::NoBrush); + setSelectedBrush(Qt::NoBrush); +} + +QCPItemEllipse::~QCPItemEllipse() +{ +} + +/*! + Sets the pen that will be used to draw the line of the ellipse + + \see setSelectedPen, setBrush +*/ +void QCPItemEllipse::setPen(const QPen &pen) +{ + mPen = pen; +} + +/*! + Sets the pen that will be used to draw the line of the ellipse when selected + + \see setPen, setSelected +*/ +void QCPItemEllipse::setSelectedPen(const QPen &pen) +{ + mSelectedPen = pen; +} + +/*! + Sets the brush that will be used to fill the ellipse. To disable filling, set \a brush to + Qt::NoBrush. + + \see setSelectedBrush, setPen +*/ +void QCPItemEllipse::setBrush(const QBrush &brush) +{ + mBrush = brush; +} + +/*! + Sets the brush that will be used to fill the ellipse when selected. To disable filling, set \a + brush to Qt::NoBrush. + + \see setBrush +*/ +void QCPItemEllipse::setSelectedBrush(const QBrush &brush) +{ + mSelectedBrush = brush; +} + +/* inherits documentation from base class */ +double QCPItemEllipse::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (onlySelectable && !mSelectable) + return -1; + + QPointF p1 = topLeft->pixelPosition(); + QPointF p2 = bottomRight->pixelPosition(); + QPointF center((p1+p2)/2.0); + double a = qAbs(p1.x()-p2.x())/2.0; + double b = qAbs(p1.y()-p2.y())/2.0; + double x = pos.x()-center.x(); + double y = pos.y()-center.y(); + + // distance to border: + double c = 1.0/qSqrt(x*x/(a*a)+y*y/(b*b)); + double result = qAbs(c-1)*qSqrt(x*x+y*y); + // filled ellipse, allow click inside to count as hit: + if (result > mParentPlot->selectionTolerance()*0.99 && mBrush.style() != Qt::NoBrush && mBrush.color().alpha() != 0) + { + if (x*x/(a*a) + y*y/(b*b) <= 1) + result = mParentPlot->selectionTolerance()*0.99; + } + return result; +} + +/* inherits documentation from base class */ +void QCPItemEllipse::draw(QCPPainter *painter) +{ + QPointF p1 = topLeft->pixelPosition(); + QPointF p2 = bottomRight->pixelPosition(); + if (p1.toPoint() == p2.toPoint()) + return; + QRectF ellipseRect = QRectF(p1, p2).normalized(); + QRect clip = clipRect().adjusted(-mainPen().widthF(), -mainPen().widthF(), mainPen().widthF(), mainPen().widthF()); + if (ellipseRect.intersects(clip)) // only draw if bounding rect of ellipse is visible in cliprect + { + painter->setPen(mainPen()); + painter->setBrush(mainBrush()); +#ifdef __EXCEPTIONS + try // drawEllipse sometimes throws exceptions if ellipse is too big + { +#endif + painter->drawEllipse(ellipseRect); +#ifdef __EXCEPTIONS + } catch (...) + { + qDebug() << Q_FUNC_INFO << "Item too large for memory, setting invisible"; + setVisible(false); + } +#endif + } +} + +/* inherits documentation from base class */ +QPointF QCPItemEllipse::anchorPixelPosition(int anchorId) const +{ + QRectF rect = QRectF(topLeft->pixelPosition(), bottomRight->pixelPosition()); + switch (anchorId) + { + case aiTopLeftRim: return rect.center()+(rect.topLeft()-rect.center())*1/qSqrt(2); + case aiTop: return (rect.topLeft()+rect.topRight())*0.5; + case aiTopRightRim: return rect.center()+(rect.topRight()-rect.center())*1/qSqrt(2); + case aiRight: return (rect.topRight()+rect.bottomRight())*0.5; + case aiBottomRightRim: return rect.center()+(rect.bottomRight()-rect.center())*1/qSqrt(2); + case aiBottom: return (rect.bottomLeft()+rect.bottomRight())*0.5; + case aiBottomLeftRim: return rect.center()+(rect.bottomLeft()-rect.center())*1/qSqrt(2); + case aiLeft: return (rect.topLeft()+rect.bottomLeft())*0.5; + case aiCenter: return (rect.topLeft()+rect.bottomRight())*0.5; + } + + qDebug() << Q_FUNC_INFO << "invalid anchorId" << anchorId; + return QPointF(); +} + +/*! \internal + + Returns the pen that should be used for drawing lines. Returns mPen when the item is not selected + and mSelectedPen when it is. +*/ +QPen QCPItemEllipse::mainPen() const +{ + return mSelected ? mSelectedPen : mPen; +} + +/*! \internal + + Returns the brush that should be used for drawing fills of the item. Returns mBrush when the item + is not selected and mSelectedBrush when it is. +*/ +QBrush QCPItemEllipse::mainBrush() const +{ + return mSelected ? mSelectedBrush : mBrush; +} +/* end of 'src/items/item-ellipse.cpp' */ + + +/* including file 'src/items/item-pixmap.cpp', size 10615 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPItemPixmap +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPItemPixmap + \brief An arbitrary pixmap + + \image html QCPItemPixmap.png "Pixmap example. Blue dotted circles are anchors, solid blue discs are positions." + + It has two positions, \a topLeft and \a bottomRight, which define the rectangle the pixmap will + be drawn in. Depending on the scale setting (\ref setScaled), the pixmap will be either scaled to + fit the rectangle or be drawn aligned to the topLeft position. + + If scaling is enabled and \a topLeft is further to the bottom/right than \a bottomRight (as shown + on the right side of the example image), the pixmap will be flipped in the respective + orientations. +*/ + +/*! + Creates a rectangle item and sets default values. + + The created item is automatically registered with \a parentPlot. This QCustomPlot instance takes + ownership of the item, so do not delete it manually but use QCustomPlot::removeItem() instead. +*/ +QCPItemPixmap::QCPItemPixmap(QCustomPlot *parentPlot) : + QCPAbstractItem(parentPlot), + topLeft(createPosition(QLatin1String("topLeft"))), + bottomRight(createPosition(QLatin1String("bottomRight"))), + top(createAnchor(QLatin1String("top"), aiTop)), + topRight(createAnchor(QLatin1String("topRight"), aiTopRight)), + right(createAnchor(QLatin1String("right"), aiRight)), + bottom(createAnchor(QLatin1String("bottom"), aiBottom)), + bottomLeft(createAnchor(QLatin1String("bottomLeft"), aiBottomLeft)), + left(createAnchor(QLatin1String("left"), aiLeft)), + mScaled(false), + mScaledPixmapInvalidated(true), + mAspectRatioMode(Qt::KeepAspectRatio), + mTransformationMode(Qt::SmoothTransformation) +{ + topLeft->setCoords(0, 1); + bottomRight->setCoords(1, 0); + + setPen(Qt::NoPen); + setSelectedPen(QPen(Qt::blue)); +} + +QCPItemPixmap::~QCPItemPixmap() +{ +} + +/*! + Sets the pixmap that will be displayed. +*/ +void QCPItemPixmap::setPixmap(const QPixmap &pixmap) +{ + mPixmap = pixmap; + mScaledPixmapInvalidated = true; + if (mPixmap.isNull()) + qDebug() << Q_FUNC_INFO << "pixmap is null"; +} + +/*! + Sets whether the pixmap will be scaled to fit the rectangle defined by the \a topLeft and \a + bottomRight positions. +*/ +void QCPItemPixmap::setScaled(bool scaled, Qt::AspectRatioMode aspectRatioMode, Qt::TransformationMode transformationMode) +{ + mScaled = scaled; + mAspectRatioMode = aspectRatioMode; + mTransformationMode = transformationMode; + mScaledPixmapInvalidated = true; +} + +/*! + Sets the pen that will be used to draw a border around the pixmap. + + \see setSelectedPen, setBrush +*/ +void QCPItemPixmap::setPen(const QPen &pen) +{ + mPen = pen; +} + +/*! + Sets the pen that will be used to draw a border around the pixmap when selected + + \see setPen, setSelected +*/ +void QCPItemPixmap::setSelectedPen(const QPen &pen) +{ + mSelectedPen = pen; +} + +/* inherits documentation from base class */ +double QCPItemPixmap::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (onlySelectable && !mSelectable) + return -1; + + return rectDistance(getFinalRect(), pos, true); +} + +/* inherits documentation from base class */ +void QCPItemPixmap::draw(QCPPainter *painter) +{ + bool flipHorz = false; + bool flipVert = false; + QRect rect = getFinalRect(&flipHorz, &flipVert); + double clipPad = mainPen().style() == Qt::NoPen ? 0 : mainPen().widthF(); + QRect boundingRect = rect.adjusted(-clipPad, -clipPad, clipPad, clipPad); + if (boundingRect.intersects(clipRect())) + { + updateScaledPixmap(rect, flipHorz, flipVert); + painter->drawPixmap(rect.topLeft(), mScaled ? mScaledPixmap : mPixmap); + QPen pen = mainPen(); + if (pen.style() != Qt::NoPen) + { + painter->setPen(pen); + painter->setBrush(Qt::NoBrush); + painter->drawRect(rect); + } + } +} + +/* inherits documentation from base class */ +QPointF QCPItemPixmap::anchorPixelPosition(int anchorId) const +{ + bool flipHorz; + bool flipVert; + QRect rect = getFinalRect(&flipHorz, &flipVert); + // we actually want denormal rects (negative width/height) here, so restore + // the flipped state: + if (flipHorz) + rect.adjust(rect.width(), 0, -rect.width(), 0); + if (flipVert) + rect.adjust(0, rect.height(), 0, -rect.height()); + + switch (anchorId) + { + case aiTop: return (rect.topLeft()+rect.topRight())*0.5; + case aiTopRight: return rect.topRight(); + case aiRight: return (rect.topRight()+rect.bottomRight())*0.5; + case aiBottom: return (rect.bottomLeft()+rect.bottomRight())*0.5; + case aiBottomLeft: return rect.bottomLeft(); + case aiLeft: return (rect.topLeft()+rect.bottomLeft())*0.5;; + } + + qDebug() << Q_FUNC_INFO << "invalid anchorId" << anchorId; + return QPointF(); +} + +/*! \internal + + Creates the buffered scaled image (\a mScaledPixmap) to fit the specified \a finalRect. The + parameters \a flipHorz and \a flipVert control whether the resulting image shall be flipped + horizontally or vertically. (This is used when \a topLeft is further to the bottom/right than \a + bottomRight.) + + This function only creates the scaled pixmap when the buffered pixmap has a different size than + the expected result, so calling this function repeatedly, e.g. in the \ref draw function, does + not cause expensive rescaling every time. + + If scaling is disabled, sets mScaledPixmap to a null QPixmap. +*/ +void QCPItemPixmap::updateScaledPixmap(QRect finalRect, bool flipHorz, bool flipVert) +{ + if (mPixmap.isNull()) + return; + + if (mScaled) + { +#ifdef QCP_DEVICEPIXELRATIO_SUPPORTED + double devicePixelRatio = mPixmap.devicePixelRatio(); +#else + double devicePixelRatio = 1.0; +#endif + if (finalRect.isNull()) + finalRect = getFinalRect(&flipHorz, &flipVert); + if (mScaledPixmapInvalidated || finalRect.size() != mScaledPixmap.size()/devicePixelRatio) + { + mScaledPixmap = mPixmap.scaled(finalRect.size()*devicePixelRatio, mAspectRatioMode, mTransformationMode); + if (flipHorz || flipVert) + mScaledPixmap = QPixmap::fromImage(mScaledPixmap.toImage().mirrored(flipHorz, flipVert)); +#ifdef QCP_DEVICEPIXELRATIO_SUPPORTED + mScaledPixmap.setDevicePixelRatio(devicePixelRatio); +#endif + } + } else if (!mScaledPixmap.isNull()) + mScaledPixmap = QPixmap(); + mScaledPixmapInvalidated = false; +} + +/*! \internal + + Returns the final (tight) rect the pixmap is drawn in, depending on the current item positions + and scaling settings. + + The output parameters \a flippedHorz and \a flippedVert return whether the pixmap should be drawn + flipped horizontally or vertically in the returned rect. (The returned rect itself is always + normalized, i.e. the top left corner of the rect is actually further to the top/left than the + bottom right corner). This is the case when the item position \a topLeft is further to the + bottom/right than \a bottomRight. + + If scaling is disabled, returns a rect with size of the original pixmap and the top left corner + aligned with the item position \a topLeft. The position \a bottomRight is ignored. +*/ +QRect QCPItemPixmap::getFinalRect(bool *flippedHorz, bool *flippedVert) const +{ + QRect result; + bool flipHorz = false; + bool flipVert = false; + QPoint p1 = topLeft->pixelPosition().toPoint(); + QPoint p2 = bottomRight->pixelPosition().toPoint(); + if (p1 == p2) + return QRect(p1, QSize(0, 0)); + if (mScaled) + { + QSize newSize = QSize(p2.x()-p1.x(), p2.y()-p1.y()); + QPoint topLeft = p1; + if (newSize.width() < 0) + { + flipHorz = true; + newSize.rwidth() *= -1; + topLeft.setX(p2.x()); + } + if (newSize.height() < 0) + { + flipVert = true; + newSize.rheight() *= -1; + topLeft.setY(p2.y()); + } + QSize scaledSize = mPixmap.size(); +#ifdef QCP_DEVICEPIXELRATIO_SUPPORTED + scaledSize /= mPixmap.devicePixelRatio(); + scaledSize.scale(newSize*mPixmap.devicePixelRatio(), mAspectRatioMode); +#else + scaledSize.scale(newSize, mAspectRatioMode); +#endif + result = QRect(topLeft, scaledSize); + } else + { +#ifdef QCP_DEVICEPIXELRATIO_SUPPORTED + result = QRect(p1, mPixmap.size()/mPixmap.devicePixelRatio()); +#else + result = QRect(p1, mPixmap.size()); +#endif + } + if (flippedHorz) + *flippedHorz = flipHorz; + if (flippedVert) + *flippedVert = flipVert; + return result; +} + +/*! \internal + + Returns the pen that should be used for drawing lines. Returns mPen when the item is not selected + and mSelectedPen when it is. +*/ +QPen QCPItemPixmap::mainPen() const +{ + return mSelected ? mSelectedPen : mPen; +} +/* end of 'src/items/item-pixmap.cpp' */ + + +/* including file 'src/items/item-tracer.cpp', size 14624 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPItemTracer +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPItemTracer + \brief Item that sticks to QCPGraph data points + + \image html QCPItemTracer.png "Tracer example. Blue dotted circles are anchors, solid blue discs are positions." + + The tracer can be connected with a QCPGraph via \ref setGraph. Then it will automatically adopt + the coordinate axes of the graph and update its \a position to be on the graph's data. This means + the key stays controllable via \ref setGraphKey, but the value will follow the graph data. If a + QCPGraph is connected, note that setting the coordinates of the tracer item directly via \a + position will have no effect because they will be overriden in the next redraw (this is when the + coordinate update happens). + + If the specified key in \ref setGraphKey is outside the key bounds of the graph, the tracer will + stay at the corresponding end of the graph. + + With \ref setInterpolating you may specify whether the tracer may only stay exactly on data + points or whether it interpolates data points linearly, if given a key that lies between two data + points of the graph. + + The tracer has different visual styles, see \ref setStyle. It is also possible to make the tracer + have no own visual appearance (set the style to \ref tsNone), and just connect other item + positions to the tracer \a position (used as an anchor) via \ref + QCPItemPosition::setParentAnchor. + + \note The tracer position is only automatically updated upon redraws. So when the data of the + graph changes and immediately afterwards (without a redraw) the position coordinates of the + tracer are retrieved, they will not reflect the updated data of the graph. In this case \ref + updatePosition must be called manually, prior to reading the tracer coordinates. +*/ + +/*! + Creates a tracer item and sets default values. + + The created item is automatically registered with \a parentPlot. This QCustomPlot instance takes + ownership of the item, so do not delete it manually but use QCustomPlot::removeItem() instead. +*/ +QCPItemTracer::QCPItemTracer(QCustomPlot *parentPlot) : + QCPAbstractItem(parentPlot), + position(createPosition(QLatin1String("position"))), + mSize(6), + mStyle(tsCrosshair), + mGraph(0), + mGraphKey(0), + mInterpolating(false) +{ + position->setCoords(0, 0); + + setBrush(Qt::NoBrush); + setSelectedBrush(Qt::NoBrush); + setPen(QPen(Qt::black)); + setSelectedPen(QPen(Qt::blue, 2)); +} + +QCPItemTracer::~QCPItemTracer() +{ +} + +/*! + Sets the pen that will be used to draw the line of the tracer + + \see setSelectedPen, setBrush +*/ +void QCPItemTracer::setPen(const QPen &pen) +{ + mPen = pen; +} + +/*! + Sets the pen that will be used to draw the line of the tracer when selected + + \see setPen, setSelected +*/ +void QCPItemTracer::setSelectedPen(const QPen &pen) +{ + mSelectedPen = pen; +} + +/*! + Sets the brush that will be used to draw any fills of the tracer + + \see setSelectedBrush, setPen +*/ +void QCPItemTracer::setBrush(const QBrush &brush) +{ + mBrush = brush; +} + +/*! + Sets the brush that will be used to draw any fills of the tracer, when selected. + + \see setBrush, setSelected +*/ +void QCPItemTracer::setSelectedBrush(const QBrush &brush) +{ + mSelectedBrush = brush; +} + +/*! + Sets the size of the tracer in pixels, if the style supports setting a size (e.g. \ref tsSquare + does, \ref tsCrosshair does not). +*/ +void QCPItemTracer::setSize(double size) +{ + mSize = size; +} + +/*! + Sets the style/visual appearance of the tracer. + + If you only want to use the tracer \a position as an anchor for other items, set \a style to + \ref tsNone. +*/ +void QCPItemTracer::setStyle(QCPItemTracer::TracerStyle style) +{ + mStyle = style; +} + +/*! + Sets the QCPGraph this tracer sticks to. The tracer \a position will be set to type + QCPItemPosition::ptPlotCoords and the axes will be set to the axes of \a graph. + + To free the tracer from any graph, set \a graph to 0. The tracer \a position can then be placed + freely like any other item position. This is the state the tracer will assume when its graph gets + deleted while still attached to it. + + \see setGraphKey +*/ +void QCPItemTracer::setGraph(QCPGraph *graph) +{ + if (graph) + { + if (graph->parentPlot() == mParentPlot) + { + position->setType(QCPItemPosition::ptPlotCoords); + position->setAxes(graph->keyAxis(), graph->valueAxis()); + mGraph = graph; + updatePosition(); + } else + qDebug() << Q_FUNC_INFO << "graph isn't in same QCustomPlot instance as this item"; + } else + { + mGraph = 0; + } +} + +/*! + Sets the key of the graph's data point the tracer will be positioned at. This is the only free + coordinate of a tracer when attached to a graph. + + Depending on \ref setInterpolating, the tracer will be either positioned on the data point + closest to \a key, or will stay exactly at \a key and interpolate the value linearly. + + \see setGraph, setInterpolating +*/ +void QCPItemTracer::setGraphKey(double key) +{ + mGraphKey = key; +} + +/*! + Sets whether the value of the graph's data points shall be interpolated, when positioning the + tracer. + + If \a enabled is set to false and a key is given with \ref setGraphKey, the tracer is placed on + the data point of the graph which is closest to the key, but which is not necessarily exactly + there. If \a enabled is true, the tracer will be positioned exactly at the specified key, and + the appropriate value will be interpolated from the graph's data points linearly. + + \see setGraph, setGraphKey +*/ +void QCPItemTracer::setInterpolating(bool enabled) +{ + mInterpolating = enabled; +} + +/* inherits documentation from base class */ +double QCPItemTracer::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (onlySelectable && !mSelectable) + return -1; + + QPointF center(position->pixelPosition()); + double w = mSize/2.0; + QRect clip = clipRect(); + switch (mStyle) + { + case tsNone: return -1; + case tsPlus: + { + if (clipRect().intersects(QRectF(center-QPointF(w, w), center+QPointF(w, w)).toRect())) + return qSqrt(qMin(QCPVector2D(pos).distanceSquaredToLine(center+QPointF(-w, 0), center+QPointF(w, 0)), + QCPVector2D(pos).distanceSquaredToLine(center+QPointF(0, -w), center+QPointF(0, w)))); + break; + } + case tsCrosshair: + { + return qSqrt(qMin(QCPVector2D(pos).distanceSquaredToLine(QCPVector2D(clip.left(), center.y()), QCPVector2D(clip.right(), center.y())), + QCPVector2D(pos).distanceSquaredToLine(QCPVector2D(center.x(), clip.top()), QCPVector2D(center.x(), clip.bottom())))); + } + case tsCircle: + { + if (clip.intersects(QRectF(center-QPointF(w, w), center+QPointF(w, w)).toRect())) + { + // distance to border: + double centerDist = QCPVector2D(center-pos).length(); + double circleLine = w; + double result = qAbs(centerDist-circleLine); + // filled ellipse, allow click inside to count as hit: + if (result > mParentPlot->selectionTolerance()*0.99 && mBrush.style() != Qt::NoBrush && mBrush.color().alpha() != 0) + { + if (centerDist <= circleLine) + result = mParentPlot->selectionTolerance()*0.99; + } + return result; + } + break; + } + case tsSquare: + { + if (clip.intersects(QRectF(center-QPointF(w, w), center+QPointF(w, w)).toRect())) + { + QRectF rect = QRectF(center-QPointF(w, w), center+QPointF(w, w)); + bool filledRect = mBrush.style() != Qt::NoBrush && mBrush.color().alpha() != 0; + return rectDistance(rect, pos, filledRect); + } + break; + } + } + return -1; +} + +/* inherits documentation from base class */ +void QCPItemTracer::draw(QCPPainter *painter) +{ + updatePosition(); + if (mStyle == tsNone) + return; + + painter->setPen(mainPen()); + painter->setBrush(mainBrush()); + QPointF center(position->pixelPosition()); + double w = mSize/2.0; + QRect clip = clipRect(); + switch (mStyle) + { + case tsNone: return; + case tsPlus: + { + if (clip.intersects(QRectF(center-QPointF(w, w), center+QPointF(w, w)).toRect())) + { + painter->drawLine(QLineF(center+QPointF(-w, 0), center+QPointF(w, 0))); + painter->drawLine(QLineF(center+QPointF(0, -w), center+QPointF(0, w))); + } + break; + } + case tsCrosshair: + { + if (center.y() > clip.top() && center.y() < clip.bottom()) + painter->drawLine(QLineF(clip.left(), center.y(), clip.right(), center.y())); + if (center.x() > clip.left() && center.x() < clip.right()) + painter->drawLine(QLineF(center.x(), clip.top(), center.x(), clip.bottom())); + break; + } + case tsCircle: + { + if (clip.intersects(QRectF(center-QPointF(w, w), center+QPointF(w, w)).toRect())) + painter->drawEllipse(center, w, w); + break; + } + case tsSquare: + { + if (clip.intersects(QRectF(center-QPointF(w, w), center+QPointF(w, w)).toRect())) + painter->drawRect(QRectF(center-QPointF(w, w), center+QPointF(w, w))); + break; + } + } +} + +/*! + If the tracer is connected with a graph (\ref setGraph), this function updates the tracer's \a + position to reside on the graph data, depending on the configured key (\ref setGraphKey). + + It is called automatically on every redraw and normally doesn't need to be called manually. One + exception is when you want to read the tracer coordinates via \a position and are not sure that + the graph's data (or the tracer key with \ref setGraphKey) hasn't changed since the last redraw. + In that situation, call this function before accessing \a position, to make sure you don't get + out-of-date coordinates. + + If there is no graph set on this tracer, this function does nothing. +*/ +void QCPItemTracer::updatePosition() +{ + if (mGraph) + { + if (mParentPlot->hasPlottable(mGraph)) + { + if (mGraph->data()->size() > 1) + { + QCPGraphDataContainer::const_iterator first = mGraph->data()->constBegin(); + QCPGraphDataContainer::const_iterator last = mGraph->data()->constEnd()-1; + if (mGraphKey <= first->key) + position->setCoords(first->key, first->value); + else if (mGraphKey >= last->key) + position->setCoords(last->key, last->value); + else + { + QCPGraphDataContainer::const_iterator it = mGraph->data()->findBegin(mGraphKey); + if (it != mGraph->data()->constEnd()) // mGraphKey is not exactly on last iterator, but somewhere between iterators + { + QCPGraphDataContainer::const_iterator prevIt = it; + ++it; // won't advance to constEnd because we handled that case (mGraphKey >= last->key) before + if (mInterpolating) + { + // interpolate between iterators around mGraphKey: + double slope = 0; + if (!qFuzzyCompare((double)it->key, (double)prevIt->key)) + slope = (it->value-prevIt->value)/(it->key-prevIt->key); + position->setCoords(mGraphKey, (mGraphKey-prevIt->key)*slope+prevIt->value); + } else + { + // find iterator with key closest to mGraphKey: + if (mGraphKey < (prevIt->key+it->key)*0.5) + position->setCoords(prevIt->key, prevIt->value); + else + position->setCoords(it->key, it->value); + } + } else // mGraphKey is exactly on last iterator (should actually be caught when comparing first/last keys, but this is a failsafe for fp uncertainty) + position->setCoords(it->key, it->value); + } + } else if (mGraph->data()->size() == 1) + { + QCPGraphDataContainer::const_iterator it = mGraph->data()->constBegin(); + position->setCoords(it->key, it->value); + } else + qDebug() << Q_FUNC_INFO << "graph has no data"; + } else + qDebug() << Q_FUNC_INFO << "graph not contained in QCustomPlot instance (anymore)"; + } +} + +/*! \internal + + Returns the pen that should be used for drawing lines. Returns mPen when the item is not selected + and mSelectedPen when it is. +*/ +QPen QCPItemTracer::mainPen() const +{ + return mSelected ? mSelectedPen : mPen; +} + +/*! \internal + + Returns the brush that should be used for drawing fills of the item. Returns mBrush when the item + is not selected and mSelectedBrush when it is. +*/ +QBrush QCPItemTracer::mainBrush() const +{ + return mSelected ? mSelectedBrush : mBrush; +} +/* end of 'src/items/item-tracer.cpp' */ + + +/* including file 'src/items/item-bracket.cpp', size 10687 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPItemBracket +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPItemBracket + \brief A bracket for referencing/highlighting certain parts in the plot. + + \image html QCPItemBracket.png "Bracket example. Blue dotted circles are anchors, solid blue discs are positions." + + It has two positions, \a left and \a right, which define the span of the bracket. If \a left is + actually farther to the left than \a right, the bracket is opened to the bottom, as shown in the + example image. + + The bracket supports multiple styles via \ref setStyle. The length, i.e. how far the bracket + stretches away from the embraced span, can be controlled with \ref setLength. + + \image html QCPItemBracket-length.png +
Demonstrating the effect of different values for \ref setLength, for styles \ref + bsCalligraphic and \ref bsSquare. Anchors and positions are displayed for reference.
+ + It provides an anchor \a center, to allow connection of other items, e.g. an arrow (QCPItemLine + or QCPItemCurve) or a text label (QCPItemText), to the bracket. +*/ + +/*! + Creates a bracket item and sets default values. + + The created item is automatically registered with \a parentPlot. This QCustomPlot instance takes + ownership of the item, so do not delete it manually but use QCustomPlot::removeItem() instead. +*/ +QCPItemBracket::QCPItemBracket(QCustomPlot *parentPlot) : + QCPAbstractItem(parentPlot), + left(createPosition(QLatin1String("left"))), + right(createPosition(QLatin1String("right"))), + center(createAnchor(QLatin1String("center"), aiCenter)), + mLength(8), + mStyle(bsCalligraphic) +{ + left->setCoords(0, 0); + right->setCoords(1, 1); + + setPen(QPen(Qt::black)); + setSelectedPen(QPen(Qt::blue, 2)); +} + +QCPItemBracket::~QCPItemBracket() +{ +} + +/*! + Sets the pen that will be used to draw the bracket. + + Note that when the style is \ref bsCalligraphic, only the color will be taken from the pen, the + stroke and width are ignored. To change the apparent stroke width of a calligraphic bracket, use + \ref setLength, which has a similar effect. + + \see setSelectedPen +*/ +void QCPItemBracket::setPen(const QPen &pen) +{ + mPen = pen; +} + +/*! + Sets the pen that will be used to draw the bracket when selected + + \see setPen, setSelected +*/ +void QCPItemBracket::setSelectedPen(const QPen &pen) +{ + mSelectedPen = pen; +} + +/*! + Sets the \a length in pixels how far the bracket extends in the direction towards the embraced + span of the bracket (i.e. perpendicular to the left-right-direction) + + \image html QCPItemBracket-length.png +
Demonstrating the effect of different values for \ref setLength, for styles \ref + bsCalligraphic and \ref bsSquare. Anchors and positions are displayed for reference.
+*/ +void QCPItemBracket::setLength(double length) +{ + mLength = length; +} + +/*! + Sets the style of the bracket, i.e. the shape/visual appearance. + + \see setPen +*/ +void QCPItemBracket::setStyle(QCPItemBracket::BracketStyle style) +{ + mStyle = style; +} + +/* inherits documentation from base class */ +double QCPItemBracket::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + Q_UNUSED(details) + if (onlySelectable && !mSelectable) + return -1; + + QCPVector2D p(pos); + QCPVector2D leftVec(left->pixelPosition()); + QCPVector2D rightVec(right->pixelPosition()); + if (leftVec.toPoint() == rightVec.toPoint()) + return -1; + + QCPVector2D widthVec = (rightVec-leftVec)*0.5; + QCPVector2D lengthVec = widthVec.perpendicular().normalized()*mLength; + QCPVector2D centerVec = (rightVec+leftVec)*0.5-lengthVec; + + switch (mStyle) + { + case QCPItemBracket::bsSquare: + case QCPItemBracket::bsRound: + { + double a = p.distanceSquaredToLine(centerVec-widthVec, centerVec+widthVec); + double b = p.distanceSquaredToLine(centerVec-widthVec+lengthVec, centerVec-widthVec); + double c = p.distanceSquaredToLine(centerVec+widthVec+lengthVec, centerVec+widthVec); + return qSqrt(qMin(qMin(a, b), c)); + } + case QCPItemBracket::bsCurly: + case QCPItemBracket::bsCalligraphic: + { + double a = p.distanceSquaredToLine(centerVec-widthVec*0.75+lengthVec*0.15, centerVec+lengthVec*0.3); + double b = p.distanceSquaredToLine(centerVec-widthVec+lengthVec*0.7, centerVec-widthVec*0.75+lengthVec*0.15); + double c = p.distanceSquaredToLine(centerVec+widthVec*0.75+lengthVec*0.15, centerVec+lengthVec*0.3); + double d = p.distanceSquaredToLine(centerVec+widthVec+lengthVec*0.7, centerVec+widthVec*0.75+lengthVec*0.15); + return qSqrt(qMin(qMin(a, b), qMin(c, d))); + } + } + return -1; +} + +/* inherits documentation from base class */ +void QCPItemBracket::draw(QCPPainter *painter) +{ + QCPVector2D leftVec(left->pixelPosition()); + QCPVector2D rightVec(right->pixelPosition()); + if (leftVec.toPoint() == rightVec.toPoint()) + return; + + QCPVector2D widthVec = (rightVec-leftVec)*0.5; + QCPVector2D lengthVec = widthVec.perpendicular().normalized()*mLength; + QCPVector2D centerVec = (rightVec+leftVec)*0.5-lengthVec; + + QPolygon boundingPoly; + boundingPoly << leftVec.toPoint() << rightVec.toPoint() + << (rightVec-lengthVec).toPoint() << (leftVec-lengthVec).toPoint(); + QRect clip = clipRect().adjusted(-mainPen().widthF(), -mainPen().widthF(), mainPen().widthF(), mainPen().widthF()); + if (clip.intersects(boundingPoly.boundingRect())) + { + painter->setPen(mainPen()); + switch (mStyle) + { + case bsSquare: + { + painter->drawLine((centerVec+widthVec).toPointF(), (centerVec-widthVec).toPointF()); + painter->drawLine((centerVec+widthVec).toPointF(), (centerVec+widthVec+lengthVec).toPointF()); + painter->drawLine((centerVec-widthVec).toPointF(), (centerVec-widthVec+lengthVec).toPointF()); + break; + } + case bsRound: + { + painter->setBrush(Qt::NoBrush); + QPainterPath path; + path.moveTo((centerVec+widthVec+lengthVec).toPointF()); + path.cubicTo((centerVec+widthVec).toPointF(), (centerVec+widthVec).toPointF(), centerVec.toPointF()); + path.cubicTo((centerVec-widthVec).toPointF(), (centerVec-widthVec).toPointF(), (centerVec-widthVec+lengthVec).toPointF()); + painter->drawPath(path); + break; + } + case bsCurly: + { + painter->setBrush(Qt::NoBrush); + QPainterPath path; + path.moveTo((centerVec+widthVec+lengthVec).toPointF()); + path.cubicTo((centerVec+widthVec-lengthVec*0.8).toPointF(), (centerVec+0.4*widthVec+lengthVec).toPointF(), centerVec.toPointF()); + path.cubicTo((centerVec-0.4*widthVec+lengthVec).toPointF(), (centerVec-widthVec-lengthVec*0.8).toPointF(), (centerVec-widthVec+lengthVec).toPointF()); + painter->drawPath(path); + break; + } + case bsCalligraphic: + { + painter->setPen(Qt::NoPen); + painter->setBrush(QBrush(mainPen().color())); + QPainterPath path; + path.moveTo((centerVec+widthVec+lengthVec).toPointF()); + + path.cubicTo((centerVec+widthVec-lengthVec*0.8).toPointF(), (centerVec+0.4*widthVec+0.8*lengthVec).toPointF(), centerVec.toPointF()); + path.cubicTo((centerVec-0.4*widthVec+0.8*lengthVec).toPointF(), (centerVec-widthVec-lengthVec*0.8).toPointF(), (centerVec-widthVec+lengthVec).toPointF()); + + path.cubicTo((centerVec-widthVec-lengthVec*0.5).toPointF(), (centerVec-0.2*widthVec+1.2*lengthVec).toPointF(), (centerVec+lengthVec*0.2).toPointF()); + path.cubicTo((centerVec+0.2*widthVec+1.2*lengthVec).toPointF(), (centerVec+widthVec-lengthVec*0.5).toPointF(), (centerVec+widthVec+lengthVec).toPointF()); + + painter->drawPath(path); + break; + } + } + } +} + +/* inherits documentation from base class */ +QPointF QCPItemBracket::anchorPixelPosition(int anchorId) const +{ + QCPVector2D leftVec(left->pixelPosition()); + QCPVector2D rightVec(right->pixelPosition()); + if (leftVec.toPoint() == rightVec.toPoint()) + return leftVec.toPointF(); + + QCPVector2D widthVec = (rightVec-leftVec)*0.5; + QCPVector2D lengthVec = widthVec.perpendicular().normalized()*mLength; + QCPVector2D centerVec = (rightVec+leftVec)*0.5-lengthVec; + + switch (anchorId) + { + case aiCenter: + return centerVec.toPointF(); + } + qDebug() << Q_FUNC_INFO << "invalid anchorId" << anchorId; + return QPointF(); +} + +/*! \internal + + Returns the pen that should be used for drawing lines. Returns mPen when the + item is not selected and mSelectedPen when it is. +*/ +QPen QCPItemBracket::mainPen() const +{ + return mSelected ? mSelectedPen : mPen; +} +/* end of 'src/items/item-bracket.cpp' */ + + diff --git a/Sources/QCustomPlot/qcustomplot.h b/Sources/QCustomPlot/qcustomplot.h new file mode 100644 index 0000000..3b046e5 --- /dev/null +++ b/Sources/QCustomPlot/qcustomplot.h @@ -0,0 +1,6673 @@ +/*************************************************************************** +** ** +** QCustomPlot, an easy to use, modern plotting widget for Qt ** +** Copyright (C) 2011-2018 Emanuel Eichhammer ** +** ** +** This program is free software: you can redistribute it and/or modify ** +** it under the terms of the GNU General Public License as published by ** +** the Free Software Foundation, either version 3 of the License, or ** +** (at your option) any later version. ** +** ** +** This program is distributed in the hope that it will be useful, ** +** but WITHOUT ANY WARRANTY; without even the implied warranty of ** +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** +** GNU General Public License for more details. ** +** ** +** You should have received a copy of the GNU General Public License ** +** along with this program. If not, see http://www.gnu.org/licenses/. ** +** ** +**************************************************************************** +** Author: Emanuel Eichhammer ** +** Website/Contact: http://www.qcustomplot.com/ ** +** Date: 25.06.18 ** +** Version: 2.0.1 ** +****************************************************************************/ + +#ifndef QCUSTOMPLOT_H +#define QCUSTOMPLOT_H + +#include + +// some Qt version/configuration dependent macros to include or exclude certain code paths: +#ifdef QCUSTOMPLOT_USE_OPENGL +# if QT_VERSION < QT_VERSION_CHECK(5, 0, 0) +# define QCP_OPENGL_PBUFFER +# else +# define QCP_OPENGL_FBO +# endif +# if QT_VERSION >= QT_VERSION_CHECK(5, 3, 0) +# define QCP_OPENGL_OFFSCREENSURFACE +# endif +#endif + +#if QT_VERSION >= QT_VERSION_CHECK(5, 4, 0) +# define QCP_DEVICEPIXELRATIO_SUPPORTED +# if QT_VERSION >= QT_VERSION_CHECK(5, 6, 0) +# define QCP_DEVICEPIXELRATIO_FLOAT +# endif +#endif + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#ifdef QCP_OPENGL_FBO +# include +# include +# ifdef QCP_OPENGL_OFFSCREENSURFACE +# include +# else +# include +# endif +#endif +#ifdef QCP_OPENGL_PBUFFER +# include +#endif +#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0) +# include +# include +# include +# include +#else +# include +# include +# include +#endif + +class QCPPainter; +class QCustomPlot; +class QCPLayerable; +class QCPLayoutElement; +class QCPLayout; +class QCPAxis; +class QCPAxisRect; +class QCPAxisPainterPrivate; +class QCPAbstractPlottable; +class QCPGraph; +class QCPAbstractItem; +class QCPPlottableInterface1D; +class QCPLegend; +class QCPItemPosition; +class QCPLayer; +class QCPAbstractLegendItem; +class QCPSelectionRect; +class QCPColorMap; +class QCPColorScale; +class QCPBars; + +/* including file 'src/global.h', size 16357 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +#define QCUSTOMPLOT_VERSION_STR "2.0.1" +#define QCUSTOMPLOT_VERSION 0x020001 + +// decl definitions for shared library compilation/usage: +#if defined(QT_STATIC_BUILD) +# define QCP_LIB_DECL +#elif defined(QCUSTOMPLOT_COMPILE_LIBRARY) +# define QCP_LIB_DECL Q_DECL_EXPORT +#elif defined(QCUSTOMPLOT_USE_LIBRARY) +# define QCP_LIB_DECL Q_DECL_IMPORT +#else +# define QCP_LIB_DECL +#endif + +// define empty macro for Q_DECL_OVERRIDE if it doesn't exist (Qt < 5) +#ifndef Q_DECL_OVERRIDE +# define Q_DECL_OVERRIDE +#endif + +/*! + The QCP Namespace contains general enums, QFlags and functions used throughout the QCustomPlot + library. + + It provides QMetaObject-based reflection of its enums and flags via \a QCP::staticMetaObject. +*/ +#ifndef Q_MOC_RUN +namespace QCP { +#else +class QCP { // when in moc-run, make it look like a class, so we get Q_GADGET, Q_ENUMS/Q_FLAGS features in namespace + Q_GADGET + Q_ENUMS(ExportPen) + Q_ENUMS(ResolutionUnit) + Q_ENUMS(SignDomain) + Q_ENUMS(MarginSide) + Q_FLAGS(MarginSides) + Q_ENUMS(AntialiasedElement) + Q_FLAGS(AntialiasedElements) + Q_ENUMS(PlottingHint) + Q_FLAGS(PlottingHints) + Q_ENUMS(Interaction) + Q_FLAGS(Interactions) + Q_ENUMS(SelectionRectMode) + Q_ENUMS(SelectionType) +public: +#endif + +/*! + Defines the different units in which the image resolution can be specified in the export + functions. + + \see QCustomPlot::savePng, QCustomPlot::saveJpg, QCustomPlot::saveBmp, QCustomPlot::saveRastered +*/ +enum ResolutionUnit { ruDotsPerMeter ///< Resolution is given in dots per meter (dpm) + ,ruDotsPerCentimeter ///< Resolution is given in dots per centimeter (dpcm) + ,ruDotsPerInch ///< Resolution is given in dots per inch (DPI/PPI) + }; + +/*! + Defines how cosmetic pens (pens with numerical width 0) are handled during export. + + \see QCustomPlot::savePdf +*/ +enum ExportPen { epNoCosmetic ///< Cosmetic pens are converted to pens with pixel width 1 when exporting + ,epAllowCosmetic ///< Cosmetic pens are exported normally (e.g. in PDF exports, cosmetic pens always appear as 1 pixel on screen, independent of viewer zoom level) + }; + +/*! + Represents negative and positive sign domain, e.g. for passing to \ref + QCPAbstractPlottable::getKeyRange and \ref QCPAbstractPlottable::getValueRange. + + This is primarily needed when working with logarithmic axis scales, since only one of the sign + domains can be visible at a time. +*/ +enum SignDomain { sdNegative ///< The negative sign domain, i.e. numbers smaller than zero + ,sdBoth ///< Both sign domains, including zero, i.e. all numbers + ,sdPositive ///< The positive sign domain, i.e. numbers greater than zero + }; + +/*! + Defines the sides of a rectangular entity to which margins can be applied. + + \see QCPLayoutElement::setAutoMargins, QCPAxisRect::setAutoMargins +*/ +enum MarginSide { msLeft = 0x01 ///< 0x01 left margin + ,msRight = 0x02 ///< 0x02 right margin + ,msTop = 0x04 ///< 0x04 top margin + ,msBottom = 0x08 ///< 0x08 bottom margin + ,msAll = 0xFF ///< 0xFF all margins + ,msNone = 0x00 ///< 0x00 no margin + }; +Q_DECLARE_FLAGS(MarginSides, MarginSide) + +/*! + Defines what objects of a plot can be forcibly drawn antialiased/not antialiased. If an object is + neither forcibly drawn antialiased nor forcibly drawn not antialiased, it is up to the respective + element how it is drawn. Typically it provides a \a setAntialiased function for this. + + \c AntialiasedElements is a flag of or-combined elements of this enum type. + + \see QCustomPlot::setAntialiasedElements, QCustomPlot::setNotAntialiasedElements +*/ +enum AntialiasedElement { aeAxes = 0x0001 ///< 0x0001 Axis base line and tick marks + ,aeGrid = 0x0002 ///< 0x0002 Grid lines + ,aeSubGrid = 0x0004 ///< 0x0004 Sub grid lines + ,aeLegend = 0x0008 ///< 0x0008 Legend box + ,aeLegendItems = 0x0010 ///< 0x0010 Legend items + ,aePlottables = 0x0020 ///< 0x0020 Main lines of plottables + ,aeItems = 0x0040 ///< 0x0040 Main lines of items + ,aeScatters = 0x0080 ///< 0x0080 Scatter symbols of plottables (excluding scatter symbols of type ssPixmap) + ,aeFills = 0x0100 ///< 0x0100 Borders of fills (e.g. under or between graphs) + ,aeZeroLine = 0x0200 ///< 0x0200 Zero-lines, see \ref QCPGrid::setZeroLinePen + ,aeOther = 0x8000 ///< 0x8000 Other elements that don't fit into any of the existing categories + ,aeAll = 0xFFFF ///< 0xFFFF All elements + ,aeNone = 0x0000 ///< 0x0000 No elements + }; +Q_DECLARE_FLAGS(AntialiasedElements, AntialiasedElement) + +/*! + Defines plotting hints that control various aspects of the quality and speed of plotting. + + \see QCustomPlot::setPlottingHints +*/ +enum PlottingHint { phNone = 0x000 ///< 0x000 No hints are set + ,phFastPolylines = 0x001 ///< 0x001 Graph/Curve lines are drawn with a faster method. This reduces the quality especially of the line segment + ///< joins, thus is most effective for pen sizes larger than 1. It is only used for solid line pens. + ,phImmediateRefresh = 0x002 ///< 0x002 causes an immediate repaint() instead of a soft update() when QCustomPlot::replot() is called with parameter \ref QCustomPlot::rpRefreshHint. + ///< This is set by default to prevent the plot from freezing on fast consecutive replots (e.g. user drags ranges with mouse). + ,phCacheLabels = 0x004 ///< 0x004 axis (tick) labels will be cached as pixmaps, increasing replot performance. + }; +Q_DECLARE_FLAGS(PlottingHints, PlottingHint) + +/*! + Defines the mouse interactions possible with QCustomPlot. + + \c Interactions is a flag of or-combined elements of this enum type. + + \see QCustomPlot::setInteractions +*/ +enum Interaction { iRangeDrag = 0x001 ///< 0x001 Axis ranges are draggable (see \ref QCPAxisRect::setRangeDrag, \ref QCPAxisRect::setRangeDragAxes) + ,iRangeZoom = 0x002 ///< 0x002 Axis ranges are zoomable with the mouse wheel (see \ref QCPAxisRect::setRangeZoom, \ref QCPAxisRect::setRangeZoomAxes) + ,iMultiSelect = 0x004 ///< 0x004 The user can select multiple objects by holding the modifier set by \ref QCustomPlot::setMultiSelectModifier while clicking + ,iSelectPlottables = 0x008 ///< 0x008 Plottables are selectable (e.g. graphs, curves, bars,... see QCPAbstractPlottable) + ,iSelectAxes = 0x010 ///< 0x010 Axes are selectable (or parts of them, see QCPAxis::setSelectableParts) + ,iSelectLegend = 0x020 ///< 0x020 Legends are selectable (or their child items, see QCPLegend::setSelectableParts) + ,iSelectItems = 0x040 ///< 0x040 Items are selectable (Rectangles, Arrows, Textitems, etc. see \ref QCPAbstractItem) + ,iSelectOther = 0x080 ///< 0x080 All other objects are selectable (e.g. your own derived layerables, other layout elements,...) + }; +Q_DECLARE_FLAGS(Interactions, Interaction) + +/*! + Defines the behaviour of the selection rect. + + \see QCustomPlot::setSelectionRectMode, QCustomPlot::selectionRect, QCPSelectionRect +*/ +enum SelectionRectMode { srmNone ///< The selection rect is disabled, and all mouse events are forwarded to the underlying objects, e.g. for axis range dragging + ,srmZoom ///< When dragging the mouse, a selection rect becomes active. Upon releasing, the axes that are currently set as range zoom axes (\ref QCPAxisRect::setRangeZoomAxes) will have their ranges zoomed accordingly. + ,srmSelect ///< When dragging the mouse, a selection rect becomes active. Upon releasing, plottable data points that were within the selection rect are selected, if the plottable's selectability setting permits. (See \ref dataselection "data selection mechanism" for details.) + ,srmCustom ///< When dragging the mouse, a selection rect becomes active. It is the programmer's responsibility to connect according slots to the selection rect's signals (e.g. \ref QCPSelectionRect::accepted) in order to process the user interaction. + }; + +/*! + Defines the different ways a plottable can be selected. These images show the effect of the + different selection types, when the indicated selection rect was dragged: + +
+ + + + + + + + +
\image html selectiontype-none.png stNone\image html selectiontype-whole.png stWhole\image html selectiontype-singledata.png stSingleData\image html selectiontype-datarange.png stDataRange\image html selectiontype-multipledataranges.png stMultipleDataRanges
+
+ + \see QCPAbstractPlottable::setSelectable, QCPDataSelection::enforceType +*/ +enum SelectionType { stNone ///< The plottable is not selectable + ,stWhole ///< Selection behaves like \ref stMultipleDataRanges, but if there are any data points selected, the entire plottable is drawn as selected. + ,stSingleData ///< One individual data point can be selected at a time + ,stDataRange ///< Multiple contiguous data points (a data range) can be selected + ,stMultipleDataRanges ///< Any combination of data points/ranges can be selected + }; + +/*! \internal + + Returns whether the specified \a value is considered an invalid data value for plottables (i.e. + is \e nan or \e +/-inf). This function is used to check data validity upon replots, when the + compiler flag \c QCUSTOMPLOT_CHECK_DATA is set. +*/ +inline bool isInvalidData(double value) +{ + return qIsNaN(value) || qIsInf(value); +} + +/*! \internal + \overload + + Checks two arguments instead of one. +*/ +inline bool isInvalidData(double value1, double value2) +{ + return isInvalidData(value1) || isInvalidData(value2); +} + +/*! \internal + + Sets the specified \a side of \a margins to \a value + + \see getMarginValue +*/ +inline void setMarginValue(QMargins &margins, QCP::MarginSide side, int value) +{ + switch (side) + { + case QCP::msLeft: margins.setLeft(value); break; + case QCP::msRight: margins.setRight(value); break; + case QCP::msTop: margins.setTop(value); break; + case QCP::msBottom: margins.setBottom(value); break; + case QCP::msAll: margins = QMargins(value, value, value, value); break; + default: break; + } +} + +/*! \internal + + Returns the value of the specified \a side of \a margins. If \a side is \ref QCP::msNone or + \ref QCP::msAll, returns 0. + + \see setMarginValue +*/ +inline int getMarginValue(const QMargins &margins, QCP::MarginSide side) +{ + switch (side) + { + case QCP::msLeft: return margins.left(); + case QCP::msRight: return margins.right(); + case QCP::msTop: return margins.top(); + case QCP::msBottom: return margins.bottom(); + default: break; + } + return 0; +} + + +extern const QMetaObject staticMetaObject; // in moc-run we create a static meta object for QCP "fake" object. This line is the link to it via QCP::staticMetaObject in normal operation as namespace + +} // end of namespace QCP +Q_DECLARE_OPERATORS_FOR_FLAGS(QCP::AntialiasedElements) +Q_DECLARE_OPERATORS_FOR_FLAGS(QCP::PlottingHints) +Q_DECLARE_OPERATORS_FOR_FLAGS(QCP::MarginSides) +Q_DECLARE_OPERATORS_FOR_FLAGS(QCP::Interactions) +Q_DECLARE_METATYPE(QCP::ExportPen) +Q_DECLARE_METATYPE(QCP::ResolutionUnit) +Q_DECLARE_METATYPE(QCP::SignDomain) +Q_DECLARE_METATYPE(QCP::MarginSide) +Q_DECLARE_METATYPE(QCP::AntialiasedElement) +Q_DECLARE_METATYPE(QCP::PlottingHint) +Q_DECLARE_METATYPE(QCP::Interaction) +Q_DECLARE_METATYPE(QCP::SelectionRectMode) +Q_DECLARE_METATYPE(QCP::SelectionType) + +/* end of 'src/global.h' */ + + +/* including file 'src/vector2d.h', size 4928 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPVector2D +{ +public: + QCPVector2D(); + QCPVector2D(double x, double y); + QCPVector2D(const QPoint &point); + QCPVector2D(const QPointF &point); + + // getters: + double x() const { return mX; } + double y() const { return mY; } + double &rx() { return mX; } + double &ry() { return mY; } + + // setters: + void setX(double x) { mX = x; } + void setY(double y) { mY = y; } + + // non-virtual methods: + double length() const { return qSqrt(mX*mX+mY*mY); } + double lengthSquared() const { return mX*mX+mY*mY; } + QPoint toPoint() const { return QPoint(mX, mY); } + QPointF toPointF() const { return QPointF(mX, mY); } + + bool isNull() const { return qIsNull(mX) && qIsNull(mY); } + void normalize(); + QCPVector2D normalized() const; + QCPVector2D perpendicular() const { return QCPVector2D(-mY, mX); } + double dot(const QCPVector2D &vec) const { return mX*vec.mX+mY*vec.mY; } + double distanceSquaredToLine(const QCPVector2D &start, const QCPVector2D &end) const; + double distanceSquaredToLine(const QLineF &line) const; + double distanceToStraightLine(const QCPVector2D &base, const QCPVector2D &direction) const; + + QCPVector2D &operator*=(double factor); + QCPVector2D &operator/=(double divisor); + QCPVector2D &operator+=(const QCPVector2D &vector); + QCPVector2D &operator-=(const QCPVector2D &vector); + +private: + // property members: + double mX, mY; + + friend inline const QCPVector2D operator*(double factor, const QCPVector2D &vec); + friend inline const QCPVector2D operator*(const QCPVector2D &vec, double factor); + friend inline const QCPVector2D operator/(const QCPVector2D &vec, double divisor); + friend inline const QCPVector2D operator+(const QCPVector2D &vec1, const QCPVector2D &vec2); + friend inline const QCPVector2D operator-(const QCPVector2D &vec1, const QCPVector2D &vec2); + friend inline const QCPVector2D operator-(const QCPVector2D &vec); +}; +Q_DECLARE_TYPEINFO(QCPVector2D, Q_MOVABLE_TYPE); + +inline const QCPVector2D operator*(double factor, const QCPVector2D &vec) { return QCPVector2D(vec.mX*factor, vec.mY*factor); } +inline const QCPVector2D operator*(const QCPVector2D &vec, double factor) { return QCPVector2D(vec.mX*factor, vec.mY*factor); } +inline const QCPVector2D operator/(const QCPVector2D &vec, double divisor) { return QCPVector2D(vec.mX/divisor, vec.mY/divisor); } +inline const QCPVector2D operator+(const QCPVector2D &vec1, const QCPVector2D &vec2) { return QCPVector2D(vec1.mX+vec2.mX, vec1.mY+vec2.mY); } +inline const QCPVector2D operator-(const QCPVector2D &vec1, const QCPVector2D &vec2) { return QCPVector2D(vec1.mX-vec2.mX, vec1.mY-vec2.mY); } +inline const QCPVector2D operator-(const QCPVector2D &vec) { return QCPVector2D(-vec.mX, -vec.mY); } + +/*! \relates QCPVector2D + + Prints \a vec in a human readable format to the qDebug output. +*/ +inline QDebug operator<< (QDebug d, const QCPVector2D &vec) +{ + d.nospace() << "QCPVector2D(" << vec.x() << ", " << vec.y() << ")"; + return d.space(); +} + +/* end of 'src/vector2d.h' */ + + +/* including file 'src/painter.h', size 4035 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPPainter : public QPainter +{ + Q_GADGET +public: + /*! + Defines special modes the painter can operate in. They disable or enable certain subsets of features/fixes/workarounds, + depending on whether they are wanted on the respective output device. + */ + enum PainterMode { pmDefault = 0x00 ///< 0x00 Default mode for painting on screen devices + ,pmVectorized = 0x01 ///< 0x01 Mode for vectorized painting (e.g. PDF export). For example, this prevents some antialiasing fixes. + ,pmNoCaching = 0x02 ///< 0x02 Mode for all sorts of exports (e.g. PNG, PDF,...). For example, this prevents using cached pixmap labels + ,pmNonCosmetic = 0x04 ///< 0x04 Turns pen widths 0 to 1, i.e. disables cosmetic pens. (A cosmetic pen is always drawn with width 1 pixel in the vector image/pdf viewer, independent of zoom.) + }; + Q_ENUMS(PainterMode) + Q_FLAGS(PainterModes) + Q_DECLARE_FLAGS(PainterModes, PainterMode) + + QCPPainter(); + explicit QCPPainter(QPaintDevice *device); + + // getters: + bool antialiasing() const { return testRenderHint(QPainter::Antialiasing); } + PainterModes modes() const { return mModes; } + + // setters: + void setAntialiasing(bool enabled); + void setMode(PainterMode mode, bool enabled=true); + void setModes(PainterModes modes); + + // methods hiding non-virtual base class functions (QPainter bug workarounds): + bool begin(QPaintDevice *device); + void setPen(const QPen &pen); + void setPen(const QColor &color); + void setPen(Qt::PenStyle penStyle); + void drawLine(const QLineF &line); + void drawLine(const QPointF &p1, const QPointF &p2) {drawLine(QLineF(p1, p2));} + void save(); + void restore(); + + // non-virtual methods: + void makeNonCosmetic(); + +protected: + // property members: + PainterModes mModes; + bool mIsAntialiasing; + + // non-property members: + QStack mAntialiasingStack; +}; +Q_DECLARE_OPERATORS_FOR_FLAGS(QCPPainter::PainterModes) +Q_DECLARE_METATYPE(QCPPainter::PainterMode) + +/* end of 'src/painter.h' */ + + +/* including file 'src/paintbuffer.h', size 4958 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPAbstractPaintBuffer +{ +public: + explicit QCPAbstractPaintBuffer(const QSize &size, double devicePixelRatio); + virtual ~QCPAbstractPaintBuffer(); + + // getters: + QSize size() const { return mSize; } + bool invalidated() const { return mInvalidated; } + double devicePixelRatio() const { return mDevicePixelRatio; } + + // setters: + void setSize(const QSize &size); + void setInvalidated(bool invalidated=true); + void setDevicePixelRatio(double ratio); + + // introduced virtual methods: + virtual QCPPainter *startPainting() = 0; + virtual void donePainting() {} + virtual void draw(QCPPainter *painter) const = 0; + virtual void clear(const QColor &color) = 0; + +protected: + // property members: + QSize mSize; + double mDevicePixelRatio; + + // non-property members: + bool mInvalidated; + + // introduced virtual methods: + virtual void reallocateBuffer() = 0; +}; + + +class QCP_LIB_DECL QCPPaintBufferPixmap : public QCPAbstractPaintBuffer +{ +public: + explicit QCPPaintBufferPixmap(const QSize &size, double devicePixelRatio); + virtual ~QCPPaintBufferPixmap(); + + // reimplemented virtual methods: + virtual QCPPainter *startPainting() Q_DECL_OVERRIDE; + virtual void draw(QCPPainter *painter) const Q_DECL_OVERRIDE; + void clear(const QColor &color) Q_DECL_OVERRIDE; + +protected: + // non-property members: + QPixmap mBuffer; + + // reimplemented virtual methods: + virtual void reallocateBuffer() Q_DECL_OVERRIDE; +}; + + +#ifdef QCP_OPENGL_PBUFFER +class QCP_LIB_DECL QCPPaintBufferGlPbuffer : public QCPAbstractPaintBuffer +{ +public: + explicit QCPPaintBufferGlPbuffer(const QSize &size, double devicePixelRatio, int multisamples); + virtual ~QCPPaintBufferGlPbuffer(); + + // reimplemented virtual methods: + virtual QCPPainter *startPainting() Q_DECL_OVERRIDE; + virtual void draw(QCPPainter *painter) const Q_DECL_OVERRIDE; + void clear(const QColor &color) Q_DECL_OVERRIDE; + +protected: + // non-property members: + QGLPixelBuffer *mGlPBuffer; + int mMultisamples; + + // reimplemented virtual methods: + virtual void reallocateBuffer() Q_DECL_OVERRIDE; +}; +#endif // QCP_OPENGL_PBUFFER + + +#ifdef QCP_OPENGL_FBO +class QCP_LIB_DECL QCPPaintBufferGlFbo : public QCPAbstractPaintBuffer +{ +public: + explicit QCPPaintBufferGlFbo(const QSize &size, double devicePixelRatio, QWeakPointer glContext, QWeakPointer glPaintDevice); + virtual ~QCPPaintBufferGlFbo(); + + // reimplemented virtual methods: + virtual QCPPainter *startPainting() Q_DECL_OVERRIDE; + virtual void donePainting() Q_DECL_OVERRIDE; + virtual void draw(QCPPainter *painter) const Q_DECL_OVERRIDE; + void clear(const QColor &color) Q_DECL_OVERRIDE; + +protected: + // non-property members: + QWeakPointer mGlContext; + QWeakPointer mGlPaintDevice; + QOpenGLFramebufferObject *mGlFrameBuffer; + + // reimplemented virtual methods: + virtual void reallocateBuffer() Q_DECL_OVERRIDE; +}; +#endif // QCP_OPENGL_FBO + +/* end of 'src/paintbuffer.h' */ + + +/* including file 'src/layer.h', size 6885 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPLayer : public QObject +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QCustomPlot* parentPlot READ parentPlot) + Q_PROPERTY(QString name READ name) + Q_PROPERTY(int index READ index) + Q_PROPERTY(QList children READ children) + Q_PROPERTY(bool visible READ visible WRITE setVisible) + Q_PROPERTY(LayerMode mode READ mode WRITE setMode) + /// \endcond +public: + + /*! + Defines the different rendering modes of a layer. Depending on the mode, certain layers can be + replotted individually, without the need to replot (possibly complex) layerables on other + layers. + + \see setMode + */ + enum LayerMode { lmLogical ///< Layer is used only for rendering order, and shares paint buffer with all other adjacent logical layers. + ,lmBuffered ///< Layer has its own paint buffer and may be replotted individually (see \ref replot). + }; + Q_ENUMS(LayerMode) + + QCPLayer(QCustomPlot* parentPlot, const QString &layerName); + virtual ~QCPLayer(); + + // getters: + QCustomPlot *parentPlot() const { return mParentPlot; } + QString name() const { return mName; } + int index() const { return mIndex; } + QList children() const { return mChildren; } + bool visible() const { return mVisible; } + LayerMode mode() const { return mMode; } + + // setters: + void setVisible(bool visible); + void setMode(LayerMode mode); + + // non-virtual methods: + void replot(); + +protected: + // property members: + QCustomPlot *mParentPlot; + QString mName; + int mIndex; + QList mChildren; + bool mVisible; + LayerMode mMode; + + // non-property members: + QWeakPointer mPaintBuffer; + + // non-virtual methods: + void draw(QCPPainter *painter); + void drawToPaintBuffer(); + void addChild(QCPLayerable *layerable, bool prepend); + void removeChild(QCPLayerable *layerable); + +private: + Q_DISABLE_COPY(QCPLayer) + + friend class QCustomPlot; + friend class QCPLayerable; +}; +Q_DECLARE_METATYPE(QCPLayer::LayerMode) + +class QCP_LIB_DECL QCPLayerable : public QObject +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(bool visible READ visible WRITE setVisible) + Q_PROPERTY(QCustomPlot* parentPlot READ parentPlot) + Q_PROPERTY(QCPLayerable* parentLayerable READ parentLayerable) + Q_PROPERTY(QCPLayer* layer READ layer WRITE setLayer NOTIFY layerChanged) + Q_PROPERTY(bool antialiased READ antialiased WRITE setAntialiased) + /// \endcond +public: + QCPLayerable(QCustomPlot *plot, QString targetLayer=QString(), QCPLayerable *parentLayerable=0); + virtual ~QCPLayerable(); + + // getters: + bool visible() const { return mVisible; } + QCustomPlot *parentPlot() const { return mParentPlot; } + QCPLayerable *parentLayerable() const { return mParentLayerable.data(); } + QCPLayer *layer() const { return mLayer; } + bool antialiased() const { return mAntialiased; } + + // setters: + void setVisible(bool on); + Q_SLOT bool setLayer(QCPLayer *layer); + bool setLayer(const QString &layerName); + void setAntialiased(bool enabled); + + // introduced virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const; + + // non-property methods: + bool realVisibility() const; + +signals: + void layerChanged(QCPLayer *newLayer); + +protected: + // property members: + bool mVisible; + QCustomPlot *mParentPlot; + QPointer mParentLayerable; + QCPLayer *mLayer; + bool mAntialiased; + + // introduced virtual methods: + virtual void parentPlotInitialized(QCustomPlot *parentPlot); + virtual QCP::Interaction selectionCategory() const; + virtual QRect clipRect() const; + virtual void applyDefaultAntialiasingHint(QCPPainter *painter) const = 0; + virtual void draw(QCPPainter *painter) = 0; + // selection events: + virtual void selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged); + virtual void deselectEvent(bool *selectionStateChanged); + // low-level mouse events: + virtual void mousePressEvent(QMouseEvent *event, const QVariant &details); + virtual void mouseMoveEvent(QMouseEvent *event, const QPointF &startPos); + virtual void mouseReleaseEvent(QMouseEvent *event, const QPointF &startPos); + virtual void mouseDoubleClickEvent(QMouseEvent *event, const QVariant &details); + virtual void wheelEvent(QWheelEvent *event); + + // non-property methods: + void initializeParentPlot(QCustomPlot *parentPlot); + void setParentLayerable(QCPLayerable* parentLayerable); + bool moveToLayer(QCPLayer *layer, bool prepend); + void applyAntialiasingHint(QCPPainter *painter, bool localAntialiased, QCP::AntialiasedElement overrideElement) const; + +private: + Q_DISABLE_COPY(QCPLayerable) + + friend class QCustomPlot; + friend class QCPLayer; + friend class QCPAxisRect; +}; + +/* end of 'src/layer.h' */ + + +/* including file 'src/axis/range.h', size 5280 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPRange +{ +public: + double lower, upper; + + QCPRange(); + QCPRange(double lower, double upper); + + bool operator==(const QCPRange& other) const { return lower == other.lower && upper == other.upper; } + bool operator!=(const QCPRange& other) const { return !(*this == other); } + + QCPRange &operator+=(const double& value) { lower+=value; upper+=value; return *this; } + QCPRange &operator-=(const double& value) { lower-=value; upper-=value; return *this; } + QCPRange &operator*=(const double& value) { lower*=value; upper*=value; return *this; } + QCPRange &operator/=(const double& value) { lower/=value; upper/=value; return *this; } + friend inline const QCPRange operator+(const QCPRange&, double); + friend inline const QCPRange operator+(double, const QCPRange&); + friend inline const QCPRange operator-(const QCPRange& range, double value); + friend inline const QCPRange operator*(const QCPRange& range, double value); + friend inline const QCPRange operator*(double value, const QCPRange& range); + friend inline const QCPRange operator/(const QCPRange& range, double value); + + double size() const { return upper-lower; } + double center() const { return (upper+lower)*0.5; } + void normalize() { if (lower > upper) qSwap(lower, upper); } + void expand(const QCPRange &otherRange); + void expand(double includeCoord); + QCPRange expanded(const QCPRange &otherRange) const; + QCPRange expanded(double includeCoord) const; + QCPRange bounded(double lowerBound, double upperBound) const; + QCPRange sanitizedForLogScale() const; + QCPRange sanitizedForLinScale() const; + bool contains(double value) const { return value >= lower && value <= upper; } + + static bool validRange(double lower, double upper); + static bool validRange(const QCPRange &range); + static const double minRange; + static const double maxRange; + +}; +Q_DECLARE_TYPEINFO(QCPRange, Q_MOVABLE_TYPE); + +/*! \relates QCPRange + + Prints \a range in a human readable format to the qDebug output. +*/ +inline QDebug operator<< (QDebug d, const QCPRange &range) +{ + d.nospace() << "QCPRange(" << range.lower << ", " << range.upper << ")"; + return d.space(); +} + +/*! + Adds \a value to both boundaries of the range. +*/ +inline const QCPRange operator+(const QCPRange& range, double value) +{ + QCPRange result(range); + result += value; + return result; +} + +/*! + Adds \a value to both boundaries of the range. +*/ +inline const QCPRange operator+(double value, const QCPRange& range) +{ + QCPRange result(range); + result += value; + return result; +} + +/*! + Subtracts \a value from both boundaries of the range. +*/ +inline const QCPRange operator-(const QCPRange& range, double value) +{ + QCPRange result(range); + result -= value; + return result; +} + +/*! + Multiplies both boundaries of the range by \a value. +*/ +inline const QCPRange operator*(const QCPRange& range, double value) +{ + QCPRange result(range); + result *= value; + return result; +} + +/*! + Multiplies both boundaries of the range by \a value. +*/ +inline const QCPRange operator*(double value, const QCPRange& range) +{ + QCPRange result(range); + result *= value; + return result; +} + +/*! + Divides both boundaries of the range by \a value. +*/ +inline const QCPRange operator/(const QCPRange& range, double value) +{ + QCPRange result(range); + result /= value; + return result; +} + +/* end of 'src/axis/range.h' */ + + +/* including file 'src/selection.h', size 8569 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPDataRange +{ +public: + QCPDataRange(); + QCPDataRange(int begin, int end); + + bool operator==(const QCPDataRange& other) const { return mBegin == other.mBegin && mEnd == other.mEnd; } + bool operator!=(const QCPDataRange& other) const { return !(*this == other); } + + // getters: + int begin() const { return mBegin; } + int end() const { return mEnd; } + int size() const { return mEnd-mBegin; } + int length() const { return size(); } + + // setters: + void setBegin(int begin) { mBegin = begin; } + void setEnd(int end) { mEnd = end; } + + // non-property methods: + bool isValid() const { return (mEnd >= mBegin) && (mBegin >= 0); } + bool isEmpty() const { return length() == 0; } + QCPDataRange bounded(const QCPDataRange &other) const; + QCPDataRange expanded(const QCPDataRange &other) const; + QCPDataRange intersection(const QCPDataRange &other) const; + QCPDataRange adjusted(int changeBegin, int changeEnd) const { return QCPDataRange(mBegin+changeBegin, mEnd+changeEnd); } + bool intersects(const QCPDataRange &other) const; + bool contains(const QCPDataRange &other) const; + +private: + // property members: + int mBegin, mEnd; + +}; +Q_DECLARE_TYPEINFO(QCPDataRange, Q_MOVABLE_TYPE); + + +class QCP_LIB_DECL QCPDataSelection +{ +public: + explicit QCPDataSelection(); + explicit QCPDataSelection(const QCPDataRange &range); + + bool operator==(const QCPDataSelection& other) const; + bool operator!=(const QCPDataSelection& other) const { return !(*this == other); } + QCPDataSelection &operator+=(const QCPDataSelection& other); + QCPDataSelection &operator+=(const QCPDataRange& other); + QCPDataSelection &operator-=(const QCPDataSelection& other); + QCPDataSelection &operator-=(const QCPDataRange& other); + friend inline const QCPDataSelection operator+(const QCPDataSelection& a, const QCPDataSelection& b); + friend inline const QCPDataSelection operator+(const QCPDataRange& a, const QCPDataSelection& b); + friend inline const QCPDataSelection operator+(const QCPDataSelection& a, const QCPDataRange& b); + friend inline const QCPDataSelection operator+(const QCPDataRange& a, const QCPDataRange& b); + friend inline const QCPDataSelection operator-(const QCPDataSelection& a, const QCPDataSelection& b); + friend inline const QCPDataSelection operator-(const QCPDataRange& a, const QCPDataSelection& b); + friend inline const QCPDataSelection operator-(const QCPDataSelection& a, const QCPDataRange& b); + friend inline const QCPDataSelection operator-(const QCPDataRange& a, const QCPDataRange& b); + + // getters: + int dataRangeCount() const { return mDataRanges.size(); } + int dataPointCount() const; + QCPDataRange dataRange(int index=0) const; + QList dataRanges() const { return mDataRanges; } + QCPDataRange span() const; + + // non-property methods: + void addDataRange(const QCPDataRange &dataRange, bool simplify=true); + void clear(); + bool isEmpty() const { return mDataRanges.isEmpty(); } + void simplify(); + void enforceType(QCP::SelectionType type); + bool contains(const QCPDataSelection &other) const; + QCPDataSelection intersection(const QCPDataRange &other) const; + QCPDataSelection intersection(const QCPDataSelection &other) const; + QCPDataSelection inverse(const QCPDataRange &outerRange) const; + +private: + // property members: + QList mDataRanges; + + inline static bool lessThanDataRangeBegin(const QCPDataRange &a, const QCPDataRange &b) { return a.begin() < b.begin(); } +}; +Q_DECLARE_METATYPE(QCPDataSelection) + + +/*! + Return a \ref QCPDataSelection with the data points in \a a joined with the data points in \a b. + The resulting data selection is already simplified (see \ref QCPDataSelection::simplify). +*/ +inline const QCPDataSelection operator+(const QCPDataSelection& a, const QCPDataSelection& b) +{ + QCPDataSelection result(a); + result += b; + return result; +} + +/*! + Return a \ref QCPDataSelection with the data points in \a a joined with the data points in \a b. + The resulting data selection is already simplified (see \ref QCPDataSelection::simplify). +*/ +inline const QCPDataSelection operator+(const QCPDataRange& a, const QCPDataSelection& b) +{ + QCPDataSelection result(a); + result += b; + return result; +} + +/*! + Return a \ref QCPDataSelection with the data points in \a a joined with the data points in \a b. + The resulting data selection is already simplified (see \ref QCPDataSelection::simplify). +*/ +inline const QCPDataSelection operator+(const QCPDataSelection& a, const QCPDataRange& b) +{ + QCPDataSelection result(a); + result += b; + return result; +} + +/*! + Return a \ref QCPDataSelection with the data points in \a a joined with the data points in \a b. + The resulting data selection is already simplified (see \ref QCPDataSelection::simplify). +*/ +inline const QCPDataSelection operator+(const QCPDataRange& a, const QCPDataRange& b) +{ + QCPDataSelection result(a); + result += b; + return result; +} + +/*! + Return a \ref QCPDataSelection with the data points which are in \a a but not in \a b. +*/ +inline const QCPDataSelection operator-(const QCPDataSelection& a, const QCPDataSelection& b) +{ + QCPDataSelection result(a); + result -= b; + return result; +} + +/*! + Return a \ref QCPDataSelection with the data points which are in \a a but not in \a b. +*/ +inline const QCPDataSelection operator-(const QCPDataRange& a, const QCPDataSelection& b) +{ + QCPDataSelection result(a); + result -= b; + return result; +} + +/*! + Return a \ref QCPDataSelection with the data points which are in \a a but not in \a b. +*/ +inline const QCPDataSelection operator-(const QCPDataSelection& a, const QCPDataRange& b) +{ + QCPDataSelection result(a); + result -= b; + return result; +} + +/*! + Return a \ref QCPDataSelection with the data points which are in \a a but not in \a b. +*/ +inline const QCPDataSelection operator-(const QCPDataRange& a, const QCPDataRange& b) +{ + QCPDataSelection result(a); + result -= b; + return result; +} + +/*! \relates QCPDataRange + + Prints \a dataRange in a human readable format to the qDebug output. +*/ +inline QDebug operator<< (QDebug d, const QCPDataRange &dataRange) +{ + d.nospace() << "QCPDataRange(" << dataRange.begin() << ", " << dataRange.end() << ")"; + return d; +} + +/*! \relates QCPDataSelection + + Prints \a selection in a human readable format to the qDebug output. +*/ +inline QDebug operator<< (QDebug d, const QCPDataSelection &selection) +{ + d.nospace() << "QCPDataSelection("; + for (int i=0; i elements(QCP::MarginSide side) const { return mChildren.value(side); } + bool isEmpty() const; + void clear(); + +protected: + // non-property members: + QCustomPlot *mParentPlot; + QHash > mChildren; + + // introduced virtual methods: + virtual int commonMargin(QCP::MarginSide side) const; + + // non-virtual methods: + void addChild(QCP::MarginSide side, QCPLayoutElement *element); + void removeChild(QCP::MarginSide side, QCPLayoutElement *element); + +private: + Q_DISABLE_COPY(QCPMarginGroup) + + friend class QCPLayoutElement; +}; + + +class QCP_LIB_DECL QCPLayoutElement : public QCPLayerable +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QCPLayout* layout READ layout) + Q_PROPERTY(QRect rect READ rect) + Q_PROPERTY(QRect outerRect READ outerRect WRITE setOuterRect) + Q_PROPERTY(QMargins margins READ margins WRITE setMargins) + Q_PROPERTY(QMargins minimumMargins READ minimumMargins WRITE setMinimumMargins) + Q_PROPERTY(QSize minimumSize READ minimumSize WRITE setMinimumSize) + Q_PROPERTY(QSize maximumSize READ maximumSize WRITE setMaximumSize) + Q_PROPERTY(SizeConstraintRect sizeConstraintRect READ sizeConstraintRect WRITE setSizeConstraintRect) + /// \endcond +public: + /*! + Defines the phases of the update process, that happens just before a replot. At each phase, + \ref update is called with the according UpdatePhase value. + */ + enum UpdatePhase { upPreparation ///< Phase used for any type of preparation that needs to be done before margin calculation and layout + ,upMargins ///< Phase in which the margins are calculated and set + ,upLayout ///< Final phase in which the layout system places the rects of the elements + }; + Q_ENUMS(UpdatePhase) + + /*! + Defines to which rect of a layout element the size constraints that can be set via \ref + setMinimumSize and \ref setMaximumSize apply. The outer rect (\ref outerRect) includes the + margins (e.g. in the case of a QCPAxisRect the axis labels), whereas the inner rect (\ref rect) + does not. + + \see setSizeConstraintRect + */ + enum SizeConstraintRect { scrInnerRect ///< Minimum/Maximum size constraints apply to inner rect + , scrOuterRect ///< Minimum/Maximum size constraints apply to outer rect, thus include layout element margins + }; + Q_ENUMS(SizeConstraintRect) + + explicit QCPLayoutElement(QCustomPlot *parentPlot=0); + virtual ~QCPLayoutElement(); + + // getters: + QCPLayout *layout() const { return mParentLayout; } + QRect rect() const { return mRect; } + QRect outerRect() const { return mOuterRect; } + QMargins margins() const { return mMargins; } + QMargins minimumMargins() const { return mMinimumMargins; } + QCP::MarginSides autoMargins() const { return mAutoMargins; } + QSize minimumSize() const { return mMinimumSize; } + QSize maximumSize() const { return mMaximumSize; } + SizeConstraintRect sizeConstraintRect() const { return mSizeConstraintRect; } + QCPMarginGroup *marginGroup(QCP::MarginSide side) const { return mMarginGroups.value(side, (QCPMarginGroup*)0); } + QHash marginGroups() const { return mMarginGroups; } + + // setters: + void setOuterRect(const QRect &rect); + void setMargins(const QMargins &margins); + void setMinimumMargins(const QMargins &margins); + void setAutoMargins(QCP::MarginSides sides); + void setMinimumSize(const QSize &size); + void setMinimumSize(int width, int height); + void setMaximumSize(const QSize &size); + void setMaximumSize(int width, int height); + void setSizeConstraintRect(SizeConstraintRect constraintRect); + void setMarginGroup(QCP::MarginSides sides, QCPMarginGroup *group); + + // introduced virtual methods: + virtual void update(UpdatePhase phase); + virtual QSize minimumOuterSizeHint() const; + virtual QSize maximumOuterSizeHint() const; + virtual QList elements(bool recursive) const; + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE; + +protected: + // property members: + QCPLayout *mParentLayout; + QSize mMinimumSize, mMaximumSize; + SizeConstraintRect mSizeConstraintRect; + QRect mRect, mOuterRect; + QMargins mMargins, mMinimumMargins; + QCP::MarginSides mAutoMargins; + QHash mMarginGroups; + + // introduced virtual methods: + virtual int calculateAutoMargin(QCP::MarginSide side); + virtual void layoutChanged(); + + // reimplemented virtual methods: + virtual void applyDefaultAntialiasingHint(QCPPainter *painter) const Q_DECL_OVERRIDE { Q_UNUSED(painter) } + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE { Q_UNUSED(painter) } + virtual void parentPlotInitialized(QCustomPlot *parentPlot) Q_DECL_OVERRIDE; + +private: + Q_DISABLE_COPY(QCPLayoutElement) + + friend class QCustomPlot; + friend class QCPLayout; + friend class QCPMarginGroup; +}; +Q_DECLARE_METATYPE(QCPLayoutElement::UpdatePhase) + + +class QCP_LIB_DECL QCPLayout : public QCPLayoutElement +{ + Q_OBJECT +public: + explicit QCPLayout(); + + // reimplemented virtual methods: + virtual void update(UpdatePhase phase) Q_DECL_OVERRIDE; + virtual QList elements(bool recursive) const Q_DECL_OVERRIDE; + + // introduced virtual methods: + virtual int elementCount() const = 0; + virtual QCPLayoutElement* elementAt(int index) const = 0; + virtual QCPLayoutElement* takeAt(int index) = 0; + virtual bool take(QCPLayoutElement* element) = 0; + virtual void simplify(); + + // non-virtual methods: + bool removeAt(int index); + bool remove(QCPLayoutElement* element); + void clear(); + +protected: + // introduced virtual methods: + virtual void updateLayout(); + + // non-virtual methods: + void sizeConstraintsChanged() const; + void adoptElement(QCPLayoutElement *el); + void releaseElement(QCPLayoutElement *el); + QVector getSectionSizes(QVector maxSizes, QVector minSizes, QVector stretchFactors, int totalSize) const; + static QSize getFinalMinimumOuterSize(const QCPLayoutElement *el); + static QSize getFinalMaximumOuterSize(const QCPLayoutElement *el); + +private: + Q_DISABLE_COPY(QCPLayout) + friend class QCPLayoutElement; +}; + + +class QCP_LIB_DECL QCPLayoutGrid : public QCPLayout +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(int rowCount READ rowCount) + Q_PROPERTY(int columnCount READ columnCount) + Q_PROPERTY(QList columnStretchFactors READ columnStretchFactors WRITE setColumnStretchFactors) + Q_PROPERTY(QList rowStretchFactors READ rowStretchFactors WRITE setRowStretchFactors) + Q_PROPERTY(int columnSpacing READ columnSpacing WRITE setColumnSpacing) + Q_PROPERTY(int rowSpacing READ rowSpacing WRITE setRowSpacing) + Q_PROPERTY(FillOrder fillOrder READ fillOrder WRITE setFillOrder) + Q_PROPERTY(int wrap READ wrap WRITE setWrap) + /// \endcond +public: + + /*! + Defines in which direction the grid is filled when using \ref addElement(QCPLayoutElement*). + The column/row at which wrapping into the next row/column occurs can be specified with \ref + setWrap. + + \see setFillOrder + */ + enum FillOrder { foRowsFirst ///< Rows are filled first, and a new element is wrapped to the next column if the row count would exceed \ref setWrap. + ,foColumnsFirst ///< Columns are filled first, and a new element is wrapped to the next row if the column count would exceed \ref setWrap. + }; + Q_ENUMS(FillOrder) + + explicit QCPLayoutGrid(); + virtual ~QCPLayoutGrid(); + + // getters: + int rowCount() const { return mElements.size(); } + int columnCount() const { return mElements.size() > 0 ? mElements.first().size() : 0; } + QList columnStretchFactors() const { return mColumnStretchFactors; } + QList rowStretchFactors() const { return mRowStretchFactors; } + int columnSpacing() const { return mColumnSpacing; } + int rowSpacing() const { return mRowSpacing; } + int wrap() const { return mWrap; } + FillOrder fillOrder() const { return mFillOrder; } + + // setters: + void setColumnStretchFactor(int column, double factor); + void setColumnStretchFactors(const QList &factors); + void setRowStretchFactor(int row, double factor); + void setRowStretchFactors(const QList &factors); + void setColumnSpacing(int pixels); + void setRowSpacing(int pixels); + void setWrap(int count); + void setFillOrder(FillOrder order, bool rearrange=true); + + // reimplemented virtual methods: + virtual void updateLayout() Q_DECL_OVERRIDE; + virtual int elementCount() const Q_DECL_OVERRIDE { return rowCount()*columnCount(); } + virtual QCPLayoutElement* elementAt(int index) const Q_DECL_OVERRIDE; + virtual QCPLayoutElement* takeAt(int index) Q_DECL_OVERRIDE; + virtual bool take(QCPLayoutElement* element) Q_DECL_OVERRIDE; + virtual QList elements(bool recursive) const Q_DECL_OVERRIDE; + virtual void simplify() Q_DECL_OVERRIDE; + virtual QSize minimumOuterSizeHint() const Q_DECL_OVERRIDE; + virtual QSize maximumOuterSizeHint() const Q_DECL_OVERRIDE; + + // non-virtual methods: + QCPLayoutElement *element(int row, int column) const; + bool addElement(int row, int column, QCPLayoutElement *element); + bool addElement(QCPLayoutElement *element); + bool hasElement(int row, int column); + void expandTo(int newRowCount, int newColumnCount); + void insertRow(int newIndex); + void insertColumn(int newIndex); + int rowColToIndex(int row, int column) const; + void indexToRowCol(int index, int &row, int &column) const; + +protected: + // property members: + QList > mElements; + QList mColumnStretchFactors; + QList mRowStretchFactors; + int mColumnSpacing, mRowSpacing; + int mWrap; + FillOrder mFillOrder; + + // non-virtual methods: + void getMinimumRowColSizes(QVector *minColWidths, QVector *minRowHeights) const; + void getMaximumRowColSizes(QVector *maxColWidths, QVector *maxRowHeights) const; + +private: + Q_DISABLE_COPY(QCPLayoutGrid) +}; +Q_DECLARE_METATYPE(QCPLayoutGrid::FillOrder) + + +class QCP_LIB_DECL QCPLayoutInset : public QCPLayout +{ + Q_OBJECT +public: + /*! + Defines how the placement and sizing is handled for a certain element in a QCPLayoutInset. + */ + enum InsetPlacement { ipFree ///< The element may be positioned/sized arbitrarily, see \ref setInsetRect + ,ipBorderAligned ///< The element is aligned to one of the layout sides, see \ref setInsetAlignment + }; + Q_ENUMS(InsetPlacement) + + explicit QCPLayoutInset(); + virtual ~QCPLayoutInset(); + + // getters: + InsetPlacement insetPlacement(int index) const; + Qt::Alignment insetAlignment(int index) const; + QRectF insetRect(int index) const; + + // setters: + void setInsetPlacement(int index, InsetPlacement placement); + void setInsetAlignment(int index, Qt::Alignment alignment); + void setInsetRect(int index, const QRectF &rect); + + // reimplemented virtual methods: + virtual void updateLayout() Q_DECL_OVERRIDE; + virtual int elementCount() const Q_DECL_OVERRIDE; + virtual QCPLayoutElement* elementAt(int index) const Q_DECL_OVERRIDE; + virtual QCPLayoutElement* takeAt(int index) Q_DECL_OVERRIDE; + virtual bool take(QCPLayoutElement* element) Q_DECL_OVERRIDE; + virtual void simplify() Q_DECL_OVERRIDE {} + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE; + + // non-virtual methods: + void addElement(QCPLayoutElement *element, Qt::Alignment alignment); + void addElement(QCPLayoutElement *element, const QRectF &rect); + +protected: + // property members: + QList mElements; + QList mInsetPlacement; + QList mInsetAlignment; + QList mInsetRect; + +private: + Q_DISABLE_COPY(QCPLayoutInset) +}; +Q_DECLARE_METATYPE(QCPLayoutInset::InsetPlacement) + +/* end of 'src/layout.h' */ + + +/* including file 'src/lineending.h', size 4426 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPLineEnding +{ + Q_GADGET +public: + /*! + Defines the type of ending decoration for line-like items, e.g. an arrow. + + \image html QCPLineEnding.png + + The width and length of these decorations can be controlled with the functions \ref setWidth + and \ref setLength. Some decorations like \ref esDisc, \ref esSquare, \ref esDiamond and \ref esBar only + support a width, the length property is ignored. + + \see QCPItemLine::setHead, QCPItemLine::setTail, QCPItemCurve::setHead, QCPItemCurve::setTail, QCPAxis::setLowerEnding, QCPAxis::setUpperEnding + */ + enum EndingStyle { esNone ///< No ending decoration + ,esFlatArrow ///< A filled arrow head with a straight/flat back (a triangle) + ,esSpikeArrow ///< A filled arrow head with an indented back + ,esLineArrow ///< A non-filled arrow head with open back + ,esDisc ///< A filled circle + ,esSquare ///< A filled square + ,esDiamond ///< A filled diamond (45 degrees rotated square) + ,esBar ///< A bar perpendicular to the line + ,esHalfBar ///< A bar perpendicular to the line, pointing out to only one side (to which side can be changed with \ref setInverted) + ,esSkewedBar ///< A bar that is skewed (skew controllable via \ref setLength) + }; + Q_ENUMS(EndingStyle) + + QCPLineEnding(); + QCPLineEnding(EndingStyle style, double width=8, double length=10, bool inverted=false); + + // getters: + EndingStyle style() const { return mStyle; } + double width() const { return mWidth; } + double length() const { return mLength; } + bool inverted() const { return mInverted; } + + // setters: + void setStyle(EndingStyle style); + void setWidth(double width); + void setLength(double length); + void setInverted(bool inverted); + + // non-property methods: + double boundingDistance() const; + double realLength() const; + void draw(QCPPainter *painter, const QCPVector2D &pos, const QCPVector2D &dir) const; + void draw(QCPPainter *painter, const QCPVector2D &pos, double angle) const; + +protected: + // property members: + EndingStyle mStyle; + double mWidth, mLength; + bool mInverted; +}; +Q_DECLARE_TYPEINFO(QCPLineEnding, Q_MOVABLE_TYPE); +Q_DECLARE_METATYPE(QCPLineEnding::EndingStyle) + +/* end of 'src/lineending.h' */ + + +/* including file 'src/axis/axisticker.h', size 4224 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPAxisTicker +{ + Q_GADGET +public: + /*! + Defines the strategies that the axis ticker may follow when choosing the size of the tick step. + + \see setTickStepStrategy + */ + enum TickStepStrategy + { + tssReadability ///< A nicely readable tick step is prioritized over matching the requested number of ticks (see \ref setTickCount) + ,tssMeetTickCount ///< Less readable tick steps are allowed which in turn facilitates getting closer to the requested tick count + }; + Q_ENUMS(TickStepStrategy) + + QCPAxisTicker(); + virtual ~QCPAxisTicker(); + + // getters: + TickStepStrategy tickStepStrategy() const { return mTickStepStrategy; } + int tickCount() const { return mTickCount; } + double tickOrigin() const { return mTickOrigin; } + + // setters: + void setTickStepStrategy(TickStepStrategy strategy); + void setTickCount(int count); + void setTickOrigin(double origin); + + // introduced virtual methods: + virtual void generate(const QCPRange &range, const QLocale &locale, QChar formatChar, int precision, QVector &ticks, QVector *subTicks, QVector *tickLabels); + +protected: + // property members: + TickStepStrategy mTickStepStrategy; + int mTickCount; + double mTickOrigin; + + // introduced virtual methods: + virtual double getTickStep(const QCPRange &range); + virtual int getSubTickCount(double tickStep); + virtual QString getTickLabel(double tick, const QLocale &locale, QChar formatChar, int precision); + virtual QVector createTickVector(double tickStep, const QCPRange &range); + virtual QVector createSubTickVector(int subTickCount, const QVector &ticks); + virtual QVector createLabelVector(const QVector &ticks, const QLocale &locale, QChar formatChar, int precision); + + // non-virtual methods: + void trimTicks(const QCPRange &range, QVector &ticks, bool keepOneOutlier) const; + double pickClosest(double target, const QVector &candidates) const; + double getMantissa(double input, double *magnitude=0) const; + double cleanMantissa(double input) const; + +private: + Q_DISABLE_COPY(QCPAxisTicker) + +}; +Q_DECLARE_METATYPE(QCPAxisTicker::TickStepStrategy) +Q_DECLARE_METATYPE(QSharedPointer) + +/* end of 'src/axis/axisticker.h' */ + + +/* including file 'src/axis/axistickerdatetime.h', size 3289 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPAxisTickerDateTime : public QCPAxisTicker +{ +public: + QCPAxisTickerDateTime(); + + // getters: + QString dateTimeFormat() const { return mDateTimeFormat; } + Qt::TimeSpec dateTimeSpec() const { return mDateTimeSpec; } + + // setters: + void setDateTimeFormat(const QString &format); + void setDateTimeSpec(Qt::TimeSpec spec); + void setTickOrigin(double origin); // hides base class method but calls baseclass implementation ("using" throws off IDEs and doxygen) + void setTickOrigin(const QDateTime &origin); + + // static methods: + static QDateTime keyToDateTime(double key); + static double dateTimeToKey(const QDateTime dateTime); + static double dateTimeToKey(const QDate date); + +protected: + // property members: + QString mDateTimeFormat; + Qt::TimeSpec mDateTimeSpec; + + // non-property members: + enum DateStrategy {dsNone, dsUniformTimeInDay, dsUniformDayInMonth} mDateStrategy; + + // reimplemented virtual methods: + virtual double getTickStep(const QCPRange &range) Q_DECL_OVERRIDE; + virtual int getSubTickCount(double tickStep) Q_DECL_OVERRIDE; + virtual QString getTickLabel(double tick, const QLocale &locale, QChar formatChar, int precision) Q_DECL_OVERRIDE; + virtual QVector createTickVector(double tickStep, const QCPRange &range) Q_DECL_OVERRIDE; +}; + +/* end of 'src/axis/axistickerdatetime.h' */ + + +/* including file 'src/axis/axistickertime.h', size 3542 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPAxisTickerTime : public QCPAxisTicker +{ + Q_GADGET +public: + /*! + Defines the logical units in which fractions of time spans can be expressed. + + \see setFieldWidth, setTimeFormat + */ + enum TimeUnit { tuMilliseconds ///< Milliseconds, one thousandth of a second (%%z in \ref setTimeFormat) + ,tuSeconds ///< Seconds (%%s in \ref setTimeFormat) + ,tuMinutes ///< Minutes (%%m in \ref setTimeFormat) + ,tuHours ///< Hours (%%h in \ref setTimeFormat) + ,tuDays ///< Days (%%d in \ref setTimeFormat) + }; + Q_ENUMS(TimeUnit) + + QCPAxisTickerTime(); + + // getters: + QString timeFormat() const { return mTimeFormat; } + int fieldWidth(TimeUnit unit) const { return mFieldWidth.value(unit); } + + // setters: + void setTimeFormat(const QString &format); + void setFieldWidth(TimeUnit unit, int width); + +protected: + // property members: + QString mTimeFormat; + QHash mFieldWidth; + + // non-property members: + TimeUnit mSmallestUnit, mBiggestUnit; + QHash mFormatPattern; + + // reimplemented virtual methods: + virtual double getTickStep(const QCPRange &range) Q_DECL_OVERRIDE; + virtual int getSubTickCount(double tickStep) Q_DECL_OVERRIDE; + virtual QString getTickLabel(double tick, const QLocale &locale, QChar formatChar, int precision) Q_DECL_OVERRIDE; + + // non-virtual methods: + void replaceUnit(QString &text, TimeUnit unit, int value) const; +}; +Q_DECLARE_METATYPE(QCPAxisTickerTime::TimeUnit) + +/* end of 'src/axis/axistickertime.h' */ + + +/* including file 'src/axis/axistickerfixed.h', size 3308 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPAxisTickerFixed : public QCPAxisTicker +{ + Q_GADGET +public: + /*! + Defines how the axis ticker may modify the specified tick step (\ref setTickStep) in order to + control the number of ticks in the axis range. + + \see setScaleStrategy + */ + enum ScaleStrategy { ssNone ///< Modifications are not allowed, the specified tick step is absolutely fixed. This might cause a high tick density and overlapping labels if the axis range is zoomed out. + ,ssMultiples ///< An integer multiple of the specified tick step is allowed. The used factor follows the base class properties of \ref setTickStepStrategy and \ref setTickCount. + ,ssPowers ///< An integer power of the specified tick step is allowed. + }; + Q_ENUMS(ScaleStrategy) + + QCPAxisTickerFixed(); + + // getters: + double tickStep() const { return mTickStep; } + ScaleStrategy scaleStrategy() const { return mScaleStrategy; } + + // setters: + void setTickStep(double step); + void setScaleStrategy(ScaleStrategy strategy); + +protected: + // property members: + double mTickStep; + ScaleStrategy mScaleStrategy; + + // reimplemented virtual methods: + virtual double getTickStep(const QCPRange &range) Q_DECL_OVERRIDE; +}; +Q_DECLARE_METATYPE(QCPAxisTickerFixed::ScaleStrategy) + +/* end of 'src/axis/axistickerfixed.h' */ + + +/* including file 'src/axis/axistickertext.h', size 3090 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPAxisTickerText : public QCPAxisTicker +{ +public: + QCPAxisTickerText(); + + // getters: + QMap &ticks() { return mTicks; } + int subTickCount() const { return mSubTickCount; } + + // setters: + void setTicks(const QMap &ticks); + void setTicks(const QVector &positions, const QVector &labels); + void setSubTickCount(int subTicks); + + // non-virtual methods: + void clear(); + void addTick(double position, const QString &label); + void addTicks(const QMap &ticks); + void addTicks(const QVector &positions, const QVector &labels); + +protected: + // property members: + QMap mTicks; + int mSubTickCount; + + // reimplemented virtual methods: + virtual double getTickStep(const QCPRange &range) Q_DECL_OVERRIDE; + virtual int getSubTickCount(double tickStep) Q_DECL_OVERRIDE; + virtual QString getTickLabel(double tick, const QLocale &locale, QChar formatChar, int precision) Q_DECL_OVERRIDE; + virtual QVector createTickVector(double tickStep, const QCPRange &range) Q_DECL_OVERRIDE; +}; + +/* end of 'src/axis/axistickertext.h' */ + + +/* including file 'src/axis/axistickerpi.h', size 3911 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPAxisTickerPi : public QCPAxisTicker +{ + Q_GADGET +public: + /*! + Defines how fractions should be displayed in tick labels. + + \see setFractionStyle + */ + enum FractionStyle { fsFloatingPoint ///< Fractions are displayed as regular decimal floating point numbers, e.g. "0.25" or "0.125". + ,fsAsciiFractions ///< Fractions are written as rationals using ASCII characters only, e.g. "1/4" or "1/8" + ,fsUnicodeFractions ///< Fractions are written using sub- and superscript UTF-8 digits and the fraction symbol. + }; + Q_ENUMS(FractionStyle) + + QCPAxisTickerPi(); + + // getters: + QString piSymbol() const { return mPiSymbol; } + double piValue() const { return mPiValue; } + bool periodicity() const { return mPeriodicity; } + FractionStyle fractionStyle() const { return mFractionStyle; } + + // setters: + void setPiSymbol(QString symbol); + void setPiValue(double pi); + void setPeriodicity(int multiplesOfPi); + void setFractionStyle(FractionStyle style); + +protected: + // property members: + QString mPiSymbol; + double mPiValue; + int mPeriodicity; + FractionStyle mFractionStyle; + + // non-property members: + double mPiTickStep; // size of one tick step in units of mPiValue + + // reimplemented virtual methods: + virtual double getTickStep(const QCPRange &range) Q_DECL_OVERRIDE; + virtual int getSubTickCount(double tickStep) Q_DECL_OVERRIDE; + virtual QString getTickLabel(double tick, const QLocale &locale, QChar formatChar, int precision) Q_DECL_OVERRIDE; + + // non-virtual methods: + void simplifyFraction(int &numerator, int &denominator) const; + QString fractionToString(int numerator, int denominator) const; + QString unicodeFraction(int numerator, int denominator) const; + QString unicodeSuperscript(int number) const; + QString unicodeSubscript(int number) const; +}; +Q_DECLARE_METATYPE(QCPAxisTickerPi::FractionStyle) + +/* end of 'src/axis/axistickerpi.h' */ + + +/* including file 'src/axis/axistickerlog.h', size 2663 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPAxisTickerLog : public QCPAxisTicker +{ +public: + QCPAxisTickerLog(); + + // getters: + double logBase() const { return mLogBase; } + int subTickCount() const { return mSubTickCount; } + + // setters: + void setLogBase(double base); + void setSubTickCount(int subTicks); + +protected: + // property members: + double mLogBase; + int mSubTickCount; + + // non-property members: + double mLogBaseLnInv; + + // reimplemented virtual methods: + virtual double getTickStep(const QCPRange &range) Q_DECL_OVERRIDE; + virtual int getSubTickCount(double tickStep) Q_DECL_OVERRIDE; + virtual QVector createTickVector(double tickStep, const QCPRange &range) Q_DECL_OVERRIDE; +}; + +/* end of 'src/axis/axistickerlog.h' */ + + +/* including file 'src/axis/axis.h', size 20698 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPGrid :public QCPLayerable +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(bool subGridVisible READ subGridVisible WRITE setSubGridVisible) + Q_PROPERTY(bool antialiasedSubGrid READ antialiasedSubGrid WRITE setAntialiasedSubGrid) + Q_PROPERTY(bool antialiasedZeroLine READ antialiasedZeroLine WRITE setAntialiasedZeroLine) + Q_PROPERTY(QPen pen READ pen WRITE setPen) + Q_PROPERTY(QPen subGridPen READ subGridPen WRITE setSubGridPen) + Q_PROPERTY(QPen zeroLinePen READ zeroLinePen WRITE setZeroLinePen) + /// \endcond +public: + explicit QCPGrid(QCPAxis *parentAxis); + + // getters: + bool subGridVisible() const { return mSubGridVisible; } + bool antialiasedSubGrid() const { return mAntialiasedSubGrid; } + bool antialiasedZeroLine() const { return mAntialiasedZeroLine; } + QPen pen() const { return mPen; } + QPen subGridPen() const { return mSubGridPen; } + QPen zeroLinePen() const { return mZeroLinePen; } + + // setters: + void setSubGridVisible(bool visible); + void setAntialiasedSubGrid(bool enabled); + void setAntialiasedZeroLine(bool enabled); + void setPen(const QPen &pen); + void setSubGridPen(const QPen &pen); + void setZeroLinePen(const QPen &pen); + +protected: + // property members: + bool mSubGridVisible; + bool mAntialiasedSubGrid, mAntialiasedZeroLine; + QPen mPen, mSubGridPen, mZeroLinePen; + + // non-property members: + QCPAxis *mParentAxis; + + // reimplemented virtual methods: + virtual void applyDefaultAntialiasingHint(QCPPainter *painter) const Q_DECL_OVERRIDE; + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE; + + // non-virtual methods: + void drawGridLines(QCPPainter *painter) const; + void drawSubGridLines(QCPPainter *painter) const; + + friend class QCPAxis; +}; + + +class QCP_LIB_DECL QCPAxis : public QCPLayerable +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(AxisType axisType READ axisType) + Q_PROPERTY(QCPAxisRect* axisRect READ axisRect) + Q_PROPERTY(ScaleType scaleType READ scaleType WRITE setScaleType NOTIFY scaleTypeChanged) + Q_PROPERTY(QCPRange range READ range WRITE setRange NOTIFY rangeChanged) + Q_PROPERTY(bool rangeReversed READ rangeReversed WRITE setRangeReversed) + Q_PROPERTY(QSharedPointer ticker READ ticker WRITE setTicker) + Q_PROPERTY(bool ticks READ ticks WRITE setTicks) + Q_PROPERTY(bool tickLabels READ tickLabels WRITE setTickLabels) + Q_PROPERTY(int tickLabelPadding READ tickLabelPadding WRITE setTickLabelPadding) + Q_PROPERTY(QFont tickLabelFont READ tickLabelFont WRITE setTickLabelFont) + Q_PROPERTY(QColor tickLabelColor READ tickLabelColor WRITE setTickLabelColor) + Q_PROPERTY(double tickLabelRotation READ tickLabelRotation WRITE setTickLabelRotation) + Q_PROPERTY(LabelSide tickLabelSide READ tickLabelSide WRITE setTickLabelSide) + Q_PROPERTY(QString numberFormat READ numberFormat WRITE setNumberFormat) + Q_PROPERTY(int numberPrecision READ numberPrecision WRITE setNumberPrecision) + Q_PROPERTY(QVector tickVector READ tickVector) + Q_PROPERTY(QVector tickVectorLabels READ tickVectorLabels) + Q_PROPERTY(int tickLengthIn READ tickLengthIn WRITE setTickLengthIn) + Q_PROPERTY(int tickLengthOut READ tickLengthOut WRITE setTickLengthOut) + Q_PROPERTY(bool subTicks READ subTicks WRITE setSubTicks) + Q_PROPERTY(int subTickLengthIn READ subTickLengthIn WRITE setSubTickLengthIn) + Q_PROPERTY(int subTickLengthOut READ subTickLengthOut WRITE setSubTickLengthOut) + Q_PROPERTY(QPen basePen READ basePen WRITE setBasePen) + Q_PROPERTY(QPen tickPen READ tickPen WRITE setTickPen) + Q_PROPERTY(QPen subTickPen READ subTickPen WRITE setSubTickPen) + Q_PROPERTY(QFont labelFont READ labelFont WRITE setLabelFont) + Q_PROPERTY(QColor labelColor READ labelColor WRITE setLabelColor) + Q_PROPERTY(QString label READ label WRITE setLabel) + Q_PROPERTY(int labelPadding READ labelPadding WRITE setLabelPadding) + Q_PROPERTY(int padding READ padding WRITE setPadding) + Q_PROPERTY(int offset READ offset WRITE setOffset) + Q_PROPERTY(SelectableParts selectedParts READ selectedParts WRITE setSelectedParts NOTIFY selectionChanged) + Q_PROPERTY(SelectableParts selectableParts READ selectableParts WRITE setSelectableParts NOTIFY selectableChanged) + Q_PROPERTY(QFont selectedTickLabelFont READ selectedTickLabelFont WRITE setSelectedTickLabelFont) + Q_PROPERTY(QFont selectedLabelFont READ selectedLabelFont WRITE setSelectedLabelFont) + Q_PROPERTY(QColor selectedTickLabelColor READ selectedTickLabelColor WRITE setSelectedTickLabelColor) + Q_PROPERTY(QColor selectedLabelColor READ selectedLabelColor WRITE setSelectedLabelColor) + Q_PROPERTY(QPen selectedBasePen READ selectedBasePen WRITE setSelectedBasePen) + Q_PROPERTY(QPen selectedTickPen READ selectedTickPen WRITE setSelectedTickPen) + Q_PROPERTY(QPen selectedSubTickPen READ selectedSubTickPen WRITE setSelectedSubTickPen) + Q_PROPERTY(QCPLineEnding lowerEnding READ lowerEnding WRITE setLowerEnding) + Q_PROPERTY(QCPLineEnding upperEnding READ upperEnding WRITE setUpperEnding) + Q_PROPERTY(QCPGrid* grid READ grid) + /// \endcond +public: + /*! + Defines at which side of the axis rect the axis will appear. This also affects how the tick + marks are drawn, on which side the labels are placed etc. + */ + enum AxisType { atLeft = 0x01 ///< 0x01 Axis is vertical and on the left side of the axis rect + ,atRight = 0x02 ///< 0x02 Axis is vertical and on the right side of the axis rect + ,atTop = 0x04 ///< 0x04 Axis is horizontal and on the top side of the axis rect + ,atBottom = 0x08 ///< 0x08 Axis is horizontal and on the bottom side of the axis rect + }; + Q_ENUMS(AxisType) + Q_FLAGS(AxisTypes) + Q_DECLARE_FLAGS(AxisTypes, AxisType) + /*! + Defines on which side of the axis the tick labels (numbers) shall appear. + + \see setTickLabelSide + */ + enum LabelSide { lsInside ///< Tick labels will be displayed inside the axis rect and clipped to the inner axis rect + ,lsOutside ///< Tick labels will be displayed outside the axis rect + }; + Q_ENUMS(LabelSide) + /*! + Defines the scale of an axis. + \see setScaleType + */ + enum ScaleType { stLinear ///< Linear scaling + ,stLogarithmic ///< Logarithmic scaling with correspondingly transformed axis coordinates (possibly also \ref setTicker to a \ref QCPAxisTickerLog instance). + }; + Q_ENUMS(ScaleType) + /*! + Defines the selectable parts of an axis. + \see setSelectableParts, setSelectedParts + */ + enum SelectablePart { spNone = 0 ///< None of the selectable parts + ,spAxis = 0x001 ///< The axis backbone and tick marks + ,spTickLabels = 0x002 ///< Tick labels (numbers) of this axis (as a whole, not individually) + ,spAxisLabel = 0x004 ///< The axis label + }; + Q_ENUMS(SelectablePart) + Q_FLAGS(SelectableParts) + Q_DECLARE_FLAGS(SelectableParts, SelectablePart) + + explicit QCPAxis(QCPAxisRect *parent, AxisType type); + virtual ~QCPAxis(); + + // getters: + AxisType axisType() const { return mAxisType; } + QCPAxisRect *axisRect() const { return mAxisRect; } + ScaleType scaleType() const { return mScaleType; } + const QCPRange range() const { return mRange; } + bool rangeReversed() const { return mRangeReversed; } + QSharedPointer ticker() const { return mTicker; } + bool ticks() const { return mTicks; } + bool tickLabels() const { return mTickLabels; } + int tickLabelPadding() const; + QFont tickLabelFont() const { return mTickLabelFont; } + QColor tickLabelColor() const { return mTickLabelColor; } + double tickLabelRotation() const; + LabelSide tickLabelSide() const; + QString numberFormat() const; + int numberPrecision() const { return mNumberPrecision; } + QVector tickVector() const { return mTickVector; } + QVector tickVectorLabels() const { return mTickVectorLabels; } + int tickLengthIn() const; + int tickLengthOut() const; + bool subTicks() const { return mSubTicks; } + int subTickLengthIn() const; + int subTickLengthOut() const; + QPen basePen() const { return mBasePen; } + QPen tickPen() const { return mTickPen; } + QPen subTickPen() const { return mSubTickPen; } + QFont labelFont() const { return mLabelFont; } + QColor labelColor() const { return mLabelColor; } + QString label() const { return mLabel; } + int labelPadding() const; + int padding() const { return mPadding; } + int offset() const; + SelectableParts selectedParts() const { return mSelectedParts; } + SelectableParts selectableParts() const { return mSelectableParts; } + QFont selectedTickLabelFont() const { return mSelectedTickLabelFont; } + QFont selectedLabelFont() const { return mSelectedLabelFont; } + QColor selectedTickLabelColor() const { return mSelectedTickLabelColor; } + QColor selectedLabelColor() const { return mSelectedLabelColor; } + QPen selectedBasePen() const { return mSelectedBasePen; } + QPen selectedTickPen() const { return mSelectedTickPen; } + QPen selectedSubTickPen() const { return mSelectedSubTickPen; } + QCPLineEnding lowerEnding() const; + QCPLineEnding upperEnding() const; + QCPGrid *grid() const { return mGrid; } + + // setters: + Q_SLOT void setScaleType(QCPAxis::ScaleType type); + Q_SLOT void setRange(const QCPRange &range); + void setRange(double lower, double upper); + void setRange(double position, double size, Qt::AlignmentFlag alignment); + void setRangeLower(double lower); + void setRangeUpper(double upper); + void setRangeReversed(bool reversed); + void setTicker(QSharedPointer ticker); + void setTicks(bool show); + void setTickLabels(bool show); + void setTickLabelPadding(int padding); + void setTickLabelFont(const QFont &font); + void setTickLabelColor(const QColor &color); + void setTickLabelRotation(double degrees); + void setTickLabelSide(LabelSide side); + void setNumberFormat(const QString &formatCode); + void setNumberPrecision(int precision); + void setTickLength(int inside, int outside=0); + void setTickLengthIn(int inside); + void setTickLengthOut(int outside); + void setSubTicks(bool show); + void setSubTickLength(int inside, int outside=0); + void setSubTickLengthIn(int inside); + void setSubTickLengthOut(int outside); + void setBasePen(const QPen &pen); + void setTickPen(const QPen &pen); + void setSubTickPen(const QPen &pen); + void setLabelFont(const QFont &font); + void setLabelColor(const QColor &color); + void setLabel(const QString &str); + void setLabelPadding(int padding); + void setPadding(int padding); + void setOffset(int offset); + void setSelectedTickLabelFont(const QFont &font); + void setSelectedLabelFont(const QFont &font); + void setSelectedTickLabelColor(const QColor &color); + void setSelectedLabelColor(const QColor &color); + void setSelectedBasePen(const QPen &pen); + void setSelectedTickPen(const QPen &pen); + void setSelectedSubTickPen(const QPen &pen); + Q_SLOT void setSelectableParts(const QCPAxis::SelectableParts &selectableParts); + Q_SLOT void setSelectedParts(const QCPAxis::SelectableParts &selectedParts); + void setLowerEnding(const QCPLineEnding &ending); + void setUpperEnding(const QCPLineEnding &ending); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE; + + // non-property methods: + Qt::Orientation orientation() const { return mOrientation; } + int pixelOrientation() const { return rangeReversed() != (orientation()==Qt::Vertical) ? -1 : 1; } + void moveRange(double diff); + void scaleRange(double factor); + void scaleRange(double factor, double center); + void setScaleRatio(const QCPAxis *otherAxis, double ratio=1.0); + void rescale(bool onlyVisiblePlottables=false); + double pixelToCoord(double value) const; + double coordToPixel(double value) const; + SelectablePart getPartAt(const QPointF &pos) const; + QList plottables() const; + QList graphs() const; + QList items() const; + + static AxisType marginSideToAxisType(QCP::MarginSide side); + static Qt::Orientation orientation(AxisType type) { return type==atBottom||type==atTop ? Qt::Horizontal : Qt::Vertical; } + static AxisType opposite(AxisType type); + +signals: + void rangeChanged(const QCPRange &newRange); + void rangeChanged(const QCPRange &newRange, const QCPRange &oldRange); + void scaleTypeChanged(QCPAxis::ScaleType scaleType); + void selectionChanged(const QCPAxis::SelectableParts &parts); + void selectableChanged(const QCPAxis::SelectableParts &parts); + +protected: + // property members: + // axis base: + AxisType mAxisType; + QCPAxisRect *mAxisRect; + //int mOffset; // in QCPAxisPainter + int mPadding; + Qt::Orientation mOrientation; + SelectableParts mSelectableParts, mSelectedParts; + QPen mBasePen, mSelectedBasePen; + //QCPLineEnding mLowerEnding, mUpperEnding; // in QCPAxisPainter + // axis label: + //int mLabelPadding; // in QCPAxisPainter + QString mLabel; + QFont mLabelFont, mSelectedLabelFont; + QColor mLabelColor, mSelectedLabelColor; + // tick labels: + //int mTickLabelPadding; // in QCPAxisPainter + bool mTickLabels; + //double mTickLabelRotation; // in QCPAxisPainter + QFont mTickLabelFont, mSelectedTickLabelFont; + QColor mTickLabelColor, mSelectedTickLabelColor; + int mNumberPrecision; + QLatin1Char mNumberFormatChar; + bool mNumberBeautifulPowers; + //bool mNumberMultiplyCross; // QCPAxisPainter + // ticks and subticks: + bool mTicks; + bool mSubTicks; + //int mTickLengthIn, mTickLengthOut, mSubTickLengthIn, mSubTickLengthOut; // QCPAxisPainter + QPen mTickPen, mSelectedTickPen; + QPen mSubTickPen, mSelectedSubTickPen; + // scale and range: + QCPRange mRange; + bool mRangeReversed; + ScaleType mScaleType; + + // non-property members: + QCPGrid *mGrid; + QCPAxisPainterPrivate *mAxisPainter; + QSharedPointer mTicker; + QVector mTickVector; + QVector mTickVectorLabels; + QVector mSubTickVector; + bool mCachedMarginValid; + int mCachedMargin; + bool mDragging; + QCPRange mDragStartRange; + QCP::AntialiasedElements mAADragBackup, mNotAADragBackup; + + // introduced virtual methods: + virtual int calculateMargin(); + + // reimplemented virtual methods: + virtual void applyDefaultAntialiasingHint(QCPPainter *painter) const Q_DECL_OVERRIDE; + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE; + virtual QCP::Interaction selectionCategory() const Q_DECL_OVERRIDE; + // events: + virtual void selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) Q_DECL_OVERRIDE; + virtual void deselectEvent(bool *selectionStateChanged) Q_DECL_OVERRIDE; + // mouse events: + virtual void mousePressEvent(QMouseEvent *event, const QVariant &details) Q_DECL_OVERRIDE; + virtual void mouseMoveEvent(QMouseEvent *event, const QPointF &startPos) Q_DECL_OVERRIDE; + virtual void mouseReleaseEvent(QMouseEvent *event, const QPointF &startPos) Q_DECL_OVERRIDE; + virtual void wheelEvent(QWheelEvent *event) Q_DECL_OVERRIDE; + + // non-virtual methods: + void setupTickVectors(); + QPen getBasePen() const; + QPen getTickPen() const; + QPen getSubTickPen() const; + QFont getTickLabelFont() const; + QFont getLabelFont() const; + QColor getTickLabelColor() const; + QColor getLabelColor() const; + +private: + Q_DISABLE_COPY(QCPAxis) + + friend class QCustomPlot; + friend class QCPGrid; + friend class QCPAxisRect; +}; +Q_DECLARE_OPERATORS_FOR_FLAGS(QCPAxis::SelectableParts) +Q_DECLARE_OPERATORS_FOR_FLAGS(QCPAxis::AxisTypes) +Q_DECLARE_METATYPE(QCPAxis::AxisType) +Q_DECLARE_METATYPE(QCPAxis::LabelSide) +Q_DECLARE_METATYPE(QCPAxis::ScaleType) +Q_DECLARE_METATYPE(QCPAxis::SelectablePart) + + +class QCPAxisPainterPrivate +{ +public: + explicit QCPAxisPainterPrivate(QCustomPlot *parentPlot); + virtual ~QCPAxisPainterPrivate(); + + virtual void draw(QCPPainter *painter); + virtual int size() const; + void clearCache(); + + QRect axisSelectionBox() const { return mAxisSelectionBox; } + QRect tickLabelsSelectionBox() const { return mTickLabelsSelectionBox; } + QRect labelSelectionBox() const { return mLabelSelectionBox; } + + // public property members: + QCPAxis::AxisType type; + QPen basePen; + QCPLineEnding lowerEnding, upperEnding; // directly accessed by QCPAxis setters/getters + int labelPadding; // directly accessed by QCPAxis setters/getters + QFont labelFont; + QColor labelColor; + QString label; + int tickLabelPadding; // directly accessed by QCPAxis setters/getters + double tickLabelRotation; // directly accessed by QCPAxis setters/getters + QCPAxis::LabelSide tickLabelSide; // directly accessed by QCPAxis setters/getters + bool substituteExponent; + bool numberMultiplyCross; // directly accessed by QCPAxis setters/getters + int tickLengthIn, tickLengthOut, subTickLengthIn, subTickLengthOut; // directly accessed by QCPAxis setters/getters + QPen tickPen, subTickPen; + QFont tickLabelFont; + QColor tickLabelColor; + QRect axisRect, viewportRect; + double offset; // directly accessed by QCPAxis setters/getters + bool abbreviateDecimalPowers; + bool reversedEndings; + + QVector subTickPositions; + QVector tickPositions; + QVector tickLabels; + +protected: + struct CachedLabel + { + QPointF offset; + QPixmap pixmap; + }; + struct TickLabelData + { + QString basePart, expPart, suffixPart; + QRect baseBounds, expBounds, suffixBounds, totalBounds, rotatedTotalBounds; + QFont baseFont, expFont; + }; + QCustomPlot *mParentPlot; + QByteArray mLabelParameterHash; // to determine whether mLabelCache needs to be cleared due to changed parameters + QCache mLabelCache; + QRect mAxisSelectionBox, mTickLabelsSelectionBox, mLabelSelectionBox; + + virtual QByteArray generateLabelParameterHash() const; + + virtual void placeTickLabel(QCPPainter *painter, double position, int distanceToAxis, const QString &text, QSize *tickLabelsSize); + virtual void drawTickLabel(QCPPainter *painter, double x, double y, const TickLabelData &labelData) const; + virtual TickLabelData getTickLabelData(const QFont &font, const QString &text) const; + virtual QPointF getTickLabelDrawOffset(const TickLabelData &labelData) const; + virtual void getMaxTickLabelSize(const QFont &font, const QString &text, QSize *tickLabelsSize) const; +}; + +/* end of 'src/axis/axis.h' */ + + +/* including file 'src/scatterstyle.h', size 7275 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPScatterStyle +{ + Q_GADGET +public: + /*! + Represents the various properties of a scatter style instance. For example, this enum is used + to specify which properties of \ref QCPSelectionDecorator::setScatterStyle will be used when + highlighting selected data points. + + Specific scatter properties can be transferred between \ref QCPScatterStyle instances via \ref + setFromOther. + */ + enum ScatterProperty { spNone = 0x00 ///< 0x00 None + ,spPen = 0x01 ///< 0x01 The pen property, see \ref setPen + ,spBrush = 0x02 ///< 0x02 The brush property, see \ref setBrush + ,spSize = 0x04 ///< 0x04 The size property, see \ref setSize + ,spShape = 0x08 ///< 0x08 The shape property, see \ref setShape + ,spAll = 0xFF ///< 0xFF All properties + }; + Q_ENUMS(ScatterProperty) + Q_FLAGS(ScatterProperties) + Q_DECLARE_FLAGS(ScatterProperties, ScatterProperty) + + /*! + Defines the shape used for scatter points. + + On plottables/items that draw scatters, the sizes of these visualizations (with exception of + \ref ssDot and \ref ssPixmap) can be controlled with the \ref setSize function. Scatters are + drawn with the pen and brush specified with \ref setPen and \ref setBrush. + */ + enum ScatterShape { ssNone ///< no scatter symbols are drawn (e.g. in QCPGraph, data only represented with lines) + ,ssDot ///< \enumimage{ssDot.png} a single pixel (use \ref ssDisc or \ref ssCircle if you want a round shape with a certain radius) + ,ssCross ///< \enumimage{ssCross.png} a cross + ,ssPlus ///< \enumimage{ssPlus.png} a plus + ,ssCircle ///< \enumimage{ssCircle.png} a circle + ,ssDisc ///< \enumimage{ssDisc.png} a circle which is filled with the pen's color (not the brush as with ssCircle) + ,ssSquare ///< \enumimage{ssSquare.png} a square + ,ssDiamond ///< \enumimage{ssDiamond.png} a diamond + ,ssStar ///< \enumimage{ssStar.png} a star with eight arms, i.e. a combination of cross and plus + ,ssTriangle ///< \enumimage{ssTriangle.png} an equilateral triangle, standing on baseline + ,ssTriangleInverted ///< \enumimage{ssTriangleInverted.png} an equilateral triangle, standing on corner + ,ssCrossSquare ///< \enumimage{ssCrossSquare.png} a square with a cross inside + ,ssPlusSquare ///< \enumimage{ssPlusSquare.png} a square with a plus inside + ,ssCrossCircle ///< \enumimage{ssCrossCircle.png} a circle with a cross inside + ,ssPlusCircle ///< \enumimage{ssPlusCircle.png} a circle with a plus inside + ,ssPeace ///< \enumimage{ssPeace.png} a circle, with one vertical and two downward diagonal lines + ,ssPixmap ///< a custom pixmap specified by \ref setPixmap, centered on the data point coordinates + ,ssCustom ///< custom painter operations are performed per scatter (As QPainterPath, see \ref setCustomPath) + }; + Q_ENUMS(ScatterShape) + + QCPScatterStyle(); + QCPScatterStyle(ScatterShape shape, double size=6); + QCPScatterStyle(ScatterShape shape, const QColor &color, double size); + QCPScatterStyle(ScatterShape shape, const QColor &color, const QColor &fill, double size); + QCPScatterStyle(ScatterShape shape, const QPen &pen, const QBrush &brush, double size); + QCPScatterStyle(const QPixmap &pixmap); + QCPScatterStyle(const QPainterPath &customPath, const QPen &pen, const QBrush &brush=Qt::NoBrush, double size=6); + + // getters: + double size() const { return mSize; } + ScatterShape shape() const { return mShape; } + QPen pen() const { return mPen; } + QBrush brush() const { return mBrush; } + QPixmap pixmap() const { return mPixmap; } + QPainterPath customPath() const { return mCustomPath; } + + // setters: + void setFromOther(const QCPScatterStyle &other, ScatterProperties properties); + void setSize(double size); + void setShape(ScatterShape shape); + void setPen(const QPen &pen); + void setBrush(const QBrush &brush); + void setPixmap(const QPixmap &pixmap); + void setCustomPath(const QPainterPath &customPath); + + // non-property methods: + bool isNone() const { return mShape == ssNone; } + bool isPenDefined() const { return mPenDefined; } + void undefinePen(); + void applyTo(QCPPainter *painter, const QPen &defaultPen) const; + void drawShape(QCPPainter *painter, const QPointF &pos) const; + void drawShape(QCPPainter *painter, double x, double y) const; + +protected: + // property members: + double mSize; + ScatterShape mShape; + QPen mPen; + QBrush mBrush; + QPixmap mPixmap; + QPainterPath mCustomPath; + + // non-property members: + bool mPenDefined; +}; +Q_DECLARE_TYPEINFO(QCPScatterStyle, Q_MOVABLE_TYPE); +Q_DECLARE_OPERATORS_FOR_FLAGS(QCPScatterStyle::ScatterProperties) +Q_DECLARE_METATYPE(QCPScatterStyle::ScatterProperty) +Q_DECLARE_METATYPE(QCPScatterStyle::ScatterShape) + +/* end of 'src/scatterstyle.h' */ + + +/* including file 'src/datacontainer.h', size 4596 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +/*! \relates QCPDataContainer + Returns whether the sort key of \a a is less than the sort key of \a b. + + \see QCPDataContainer::sort +*/ +template +inline bool qcpLessThanSortKey(const DataType &a, const DataType &b) { return a.sortKey() < b.sortKey(); } + +template +class QCPDataContainer // no QCP_LIB_DECL, template class ends up in header (cpp included below) +{ +public: + typedef typename QVector::const_iterator const_iterator; + typedef typename QVector::iterator iterator; + + QCPDataContainer(); + + // getters: + int size() const { return mData.size()-mPreallocSize; } + bool isEmpty() const { return size() == 0; } + bool autoSqueeze() const { return mAutoSqueeze; } + + // setters: + void setAutoSqueeze(bool enabled); + + // non-virtual methods: + void set(const QCPDataContainer &data); + void set(const QVector &data, bool alreadySorted=false); + void add(const QCPDataContainer &data); + void add(const QVector &data, bool alreadySorted=false); + void add(const DataType &data); + void removeBefore(double sortKey); + void removeAfter(double sortKey); + void remove(double sortKeyFrom, double sortKeyTo); + void remove(double sortKey); + void clear(); + void sort(); + void squeeze(bool preAllocation=true, bool postAllocation=true); + + const_iterator constBegin() const { return mData.constBegin()+mPreallocSize; } + const_iterator constEnd() const { return mData.constEnd(); } + iterator begin() { return mData.begin()+mPreallocSize; } + iterator end() { return mData.end(); } + const_iterator findBegin(double sortKey, bool expandedRange=true) const; + const_iterator findEnd(double sortKey, bool expandedRange=true) const; + const_iterator at(int index) const { return constBegin()+qBound(0, index, size()); } + QCPRange keyRange(bool &foundRange, QCP::SignDomain signDomain=QCP::sdBoth); + QCPRange valueRange(bool &foundRange, QCP::SignDomain signDomain=QCP::sdBoth, const QCPRange &inKeyRange=QCPRange()); + QCPDataRange dataRange() const { return QCPDataRange(0, size()); } + void limitIteratorsToDataRange(const_iterator &begin, const_iterator &end, const QCPDataRange &dataRange) const; + +protected: + // property members: + bool mAutoSqueeze; + + // non-property memebers: + QVector mData; + int mPreallocSize; + int mPreallocIteration; + + // non-virtual methods: + void preallocateGrow(int minimumPreallocSize); + void performAutoSqueeze(); +}; + +// include implementation in header since it is a class template: + +/* including file 'src/datacontainer.cpp', size 31349 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPDataContainer +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPDataContainer + \brief The generic data container for one-dimensional plottables + + This class template provides a fast container for data storage of one-dimensional data. The data + type is specified as template parameter (called \a DataType in the following) and must provide + some methods as described in the \ref qcpdatacontainer-datatype "next section". + + The data is stored in a sorted fashion, which allows very quick lookups by the sorted key as well + as retrieval of ranges (see \ref findBegin, \ref findEnd, \ref keyRange) using binary search. The + container uses a preallocation and a postallocation scheme, such that appending and prepending + data (with respect to the sort key) is very fast and minimizes reallocations. If data is added + which needs to be inserted between existing keys, the merge usually can be done quickly too, + using the fact that existing data is always sorted. The user can further improve performance by + specifying that added data is already itself sorted by key, if he can guarantee that this is the + case (see for example \ref add(const QVector &data, bool alreadySorted)). + + The data can be accessed with the provided const iterators (\ref constBegin, \ref constEnd). If + it is necessary to alter existing data in-place, the non-const iterators can be used (\ref begin, + \ref end). Changing data members that are not the sort key (for most data types called \a key) is + safe from the container's perspective. + + Great care must be taken however if the sort key is modified through the non-const iterators. For + performance reasons, the iterators don't automatically cause a re-sorting upon their + manipulation. It is thus the responsibility of the user to leave the container in a sorted state + when finished with the data manipulation, before calling any other methods on the container. A + complete re-sort (e.g. after finishing all sort key manipulation) can be done by calling \ref + sort. Failing to do so can not be detected by the container efficiently and will cause both + rendering artifacts and potential data loss. + + Implementing one-dimensional plottables that make use of a \ref QCPDataContainer is usually + done by subclassing from \ref QCPAbstractPlottable1D "QCPAbstractPlottable1D", which + introduces an according \a mDataContainer member and some convenience methods. + + \section qcpdatacontainer-datatype Requirements for the DataType template parameter + + The template parameter DataType is the type of the stored data points. It must be + trivially copyable and have the following public methods, preferably inline: + + \li double sortKey() const\n Returns the member variable of this data point that is the + sort key, defining the ordering in the container. Often this variable is simply called \a key. + + \li static DataType fromSortKey(double sortKey)\n Returns a new instance of the data + type initialized with its sort key set to \a sortKey. + + \li static bool sortKeyIsMainKey()\n Returns true if the sort key is equal to the main + key (see method \c mainKey below). For most plottables this is the case. It is not the case for + example for \ref QCPCurve, which uses \a t as sort key and \a key as main key. This is the reason + why QCPCurve unlike QCPGraph can display parametric curves with loops. + + \li double mainKey() const\n Returns the variable of this data point considered the main + key. This is commonly the variable that is used as the coordinate of this data point on the key + axis of the plottable. This method is used for example when determining the automatic axis + rescaling of key axes (\ref QCPAxis::rescale). + + \li double mainValue() const\n Returns the variable of this data point considered the + main value. This is commonly the variable that is used as the coordinate of this data point on + the value axis of the plottable. + + \li QCPRange valueRange() const\n Returns the range this data point spans in the value + axis coordinate. If the data is single-valued (e.g. QCPGraphData), this is simply a range with + both lower and upper set to the main data point value. However if the data points can represent + multiple values at once (e.g QCPFinancialData with its \a high, \a low, \a open and \a close + values at each \a key) this method should return the range those values span. This method is used + for example when determining the automatic axis rescaling of value axes (\ref + QCPAxis::rescale). +*/ + +/* start documentation of inline functions */ + +/*! \fn int QCPDataContainer::size() const + + Returns the number of data points in the container. +*/ + +/*! \fn bool QCPDataContainer::isEmpty() const + + Returns whether this container holds no data points. +*/ + +/*! \fn QCPDataContainer::const_iterator QCPDataContainer::constBegin() const + + Returns a const iterator to the first data point in this container. +*/ + +/*! \fn QCPDataContainer::const_iterator QCPDataContainer::constEnd() const + + Returns a const iterator to the element past the last data point in this container. +*/ + +/*! \fn QCPDataContainer::iterator QCPDataContainer::begin() const + + Returns a non-const iterator to the first data point in this container. + + You can manipulate the data points in-place through the non-const iterators, but great care must + be taken when manipulating the sort key of a data point, see \ref sort, or the detailed + description of this class. +*/ + +/*! \fn QCPDataContainer::iterator QCPDataContainer::end() const + + Returns a non-const iterator to the element past the last data point in this container. + + You can manipulate the data points in-place through the non-const iterators, but great care must + be taken when manipulating the sort key of a data point, see \ref sort, or the detailed + description of this class. +*/ + +/*! \fn QCPDataContainer::const_iterator QCPDataContainer::at(int index) const + + Returns a const iterator to the element with the specified \a index. If \a index points beyond + the available elements in this container, returns \ref constEnd, i.e. an iterator past the last + valid element. + + You can use this method to easily obtain iterators from a \ref QCPDataRange, see the \ref + dataselection-accessing "data selection page" for an example. +*/ + +/*! \fn QCPDataRange QCPDataContainer::dataRange() const + + Returns a \ref QCPDataRange encompassing the entire data set of this container. This means the + begin index of the returned range is 0, and the end index is \ref size. +*/ + +/* end documentation of inline functions */ + +/*! + Constructs a QCPDataContainer used for plottable classes that represent a series of key-sorted + data +*/ +template +QCPDataContainer::QCPDataContainer() : + mAutoSqueeze(true), + mPreallocSize(0), + mPreallocIteration(0) +{ +} + +/*! + Sets whether the container automatically decides when to release memory from its post- and + preallocation pools when data points are removed. By default this is enabled and for typical + applications shouldn't be changed. + + If auto squeeze is disabled, you can manually decide when to release pre-/postallocation with + \ref squeeze. +*/ +template +void QCPDataContainer::setAutoSqueeze(bool enabled) +{ + if (mAutoSqueeze != enabled) + { + mAutoSqueeze = enabled; + if (mAutoSqueeze) + performAutoSqueeze(); + } +} + +/*! \overload + + Replaces the current data in this container with the provided \a data. + + \see add, remove +*/ +template +void QCPDataContainer::set(const QCPDataContainer &data) +{ + clear(); + add(data); +} + +/*! \overload + + Replaces the current data in this container with the provided \a data + + If you can guarantee that the data points in \a data have ascending order with respect to the + DataType's sort key, set \a alreadySorted to true to avoid an unnecessary sorting run. + + \see add, remove +*/ +template +void QCPDataContainer::set(const QVector &data, bool alreadySorted) +{ + mData = data; + mPreallocSize = 0; + mPreallocIteration = 0; + if (!alreadySorted) + sort(); +} + +/*! \overload + + Adds the provided \a data to the current data in this container. + + \see set, remove +*/ +template +void QCPDataContainer::add(const QCPDataContainer &data) +{ + if (data.isEmpty()) + return; + + const int n = data.size(); + const int oldSize = size(); + + if (oldSize > 0 && !qcpLessThanSortKey(*constBegin(), *(data.constEnd()-1))) // prepend if new data keys are all smaller than or equal to existing ones + { + if (mPreallocSize < n) + preallocateGrow(n); + mPreallocSize -= n; + std::copy(data.constBegin(), data.constEnd(), begin()); + } else // don't need to prepend, so append and merge if necessary + { + mData.resize(mData.size()+n); + std::copy(data.constBegin(), data.constEnd(), end()-n); + if (oldSize > 0 && !qcpLessThanSortKey(*(constEnd()-n-1), *(constEnd()-n))) // if appended range keys aren't all greater than existing ones, merge the two partitions + std::inplace_merge(begin(), end()-n, end(), qcpLessThanSortKey); + } +} + +/*! + Adds the provided data points in \a data to the current data. + + If you can guarantee that the data points in \a data have ascending order with respect to the + DataType's sort key, set \a alreadySorted to true to avoid an unnecessary sorting run. + + \see set, remove +*/ +template +void QCPDataContainer::add(const QVector &data, bool alreadySorted) +{ + if (data.isEmpty()) + return; + if (isEmpty()) + { + set(data, alreadySorted); + return; + } + + const int n = data.size(); + const int oldSize = size(); + + if (alreadySorted && oldSize > 0 && !qcpLessThanSortKey(*constBegin(), *(data.constEnd()-1))) // prepend if new data is sorted and keys are all smaller than or equal to existing ones + { + if (mPreallocSize < n) + preallocateGrow(n); + mPreallocSize -= n; + std::copy(data.constBegin(), data.constEnd(), begin()); + } else // don't need to prepend, so append and then sort and merge if necessary + { + mData.resize(mData.size()+n); + std::copy(data.constBegin(), data.constEnd(), end()-n); + if (!alreadySorted) // sort appended subrange if it wasn't already sorted + std::sort(end()-n, end(), qcpLessThanSortKey); + if (oldSize > 0 && !qcpLessThanSortKey(*(constEnd()-n-1), *(constEnd()-n))) // if appended range keys aren't all greater than existing ones, merge the two partitions + std::inplace_merge(begin(), end()-n, end(), qcpLessThanSortKey); + } +} + +/*! \overload + + Adds the provided single data point to the current data. + + \see remove +*/ +template +void QCPDataContainer::add(const DataType &data) +{ + if (isEmpty() || !qcpLessThanSortKey(data, *(constEnd()-1))) // quickly handle appends if new data key is greater or equal to existing ones + { + mData.append(data); + } else if (qcpLessThanSortKey(data, *constBegin())) // quickly handle prepends using preallocated space + { + if (mPreallocSize < 1) + preallocateGrow(1); + --mPreallocSize; + *begin() = data; + } else // handle inserts, maintaining sorted keys + { + QCPDataContainer::iterator insertionPoint = std::lower_bound(begin(), end(), data, qcpLessThanSortKey); + mData.insert(insertionPoint, data); + } +} + +/*! + Removes all data points with (sort-)keys smaller than or equal to \a sortKey. + + \see removeAfter, remove, clear +*/ +template +void QCPDataContainer::removeBefore(double sortKey) +{ + QCPDataContainer::iterator it = begin(); + QCPDataContainer::iterator itEnd = std::lower_bound(begin(), end(), DataType::fromSortKey(sortKey), qcpLessThanSortKey); + mPreallocSize += itEnd-it; // don't actually delete, just add it to the preallocated block (if it gets too large, squeeze will take care of it) + if (mAutoSqueeze) + performAutoSqueeze(); +} + +/*! + Removes all data points with (sort-)keys greater than or equal to \a sortKey. + + \see removeBefore, remove, clear +*/ +template +void QCPDataContainer::removeAfter(double sortKey) +{ + QCPDataContainer::iterator it = std::upper_bound(begin(), end(), DataType::fromSortKey(sortKey), qcpLessThanSortKey); + QCPDataContainer::iterator itEnd = end(); + mData.erase(it, itEnd); // typically adds it to the postallocated block + if (mAutoSqueeze) + performAutoSqueeze(); +} + +/*! + Removes all data points with (sort-)keys between \a sortKeyFrom and \a sortKeyTo. if \a + sortKeyFrom is greater or equal to \a sortKeyTo, the function does nothing. To remove a single + data point with known (sort-)key, use \ref remove(double sortKey). + + \see removeBefore, removeAfter, clear +*/ +template +void QCPDataContainer::remove(double sortKeyFrom, double sortKeyTo) +{ + if (sortKeyFrom >= sortKeyTo || isEmpty()) + return; + + QCPDataContainer::iterator it = std::lower_bound(begin(), end(), DataType::fromSortKey(sortKeyFrom), qcpLessThanSortKey); + QCPDataContainer::iterator itEnd = std::upper_bound(it, end(), DataType::fromSortKey(sortKeyTo), qcpLessThanSortKey); + mData.erase(it, itEnd); + if (mAutoSqueeze) + performAutoSqueeze(); +} + +/*! \overload + + Removes a single data point at \a sortKey. If the position is not known with absolute (binary) + precision, consider using \ref remove(double sortKeyFrom, double sortKeyTo) with a small + fuzziness interval around the suspected position, depeding on the precision with which the + (sort-)key is known. + + \see removeBefore, removeAfter, clear +*/ +template +void QCPDataContainer::remove(double sortKey) +{ + QCPDataContainer::iterator it = std::lower_bound(begin(), end(), DataType::fromSortKey(sortKey), qcpLessThanSortKey); + if (it != end() && it->sortKey() == sortKey) + { + if (it == begin()) + ++mPreallocSize; // don't actually delete, just add it to the preallocated block (if it gets too large, squeeze will take care of it) + else + mData.erase(it); + } + if (mAutoSqueeze) + performAutoSqueeze(); +} + +/*! + Removes all data points. + + \see remove, removeAfter, removeBefore +*/ +template +void QCPDataContainer::clear() +{ + mData.clear(); + mPreallocIteration = 0; + mPreallocSize = 0; +} + +/*! + Re-sorts all data points in the container by their sort key. + + When setting, adding or removing points using the QCPDataContainer interface (\ref set, \ref add, + \ref remove, etc.), the container makes sure to always stay in a sorted state such that a full + resort is never necessary. However, if you choose to directly manipulate the sort key on data + points by accessing and modifying it through the non-const iterators (\ref begin, \ref end), it + is your responsibility to bring the container back into a sorted state before any other methods + are called on it. This can be achieved by calling this method immediately after finishing the + sort key manipulation. +*/ +template +void QCPDataContainer::sort() +{ + std::sort(begin(), end(), qcpLessThanSortKey); +} + +/*! + Frees all unused memory that is currently in the preallocation and postallocation pools. + + Note that QCPDataContainer automatically decides whether squeezing is necessary, if \ref + setAutoSqueeze is left enabled. It should thus not be necessary to use this method for typical + applications. + + The parameters \a preAllocation and \a postAllocation control whether pre- and/or post allocation + should be freed, respectively. +*/ +template +void QCPDataContainer::squeeze(bool preAllocation, bool postAllocation) +{ + if (preAllocation) + { + if (mPreallocSize > 0) + { + std::copy(begin(), end(), mData.begin()); + mData.resize(size()); + mPreallocSize = 0; + } + mPreallocIteration = 0; + } + if (postAllocation) + mData.squeeze(); +} + +/*! + Returns an iterator to the data point with a (sort-)key that is equal to, just below, or just + above \a sortKey. If \a expandedRange is true, the data point just below \a sortKey will be + considered, otherwise the one just above. + + This can be used in conjunction with \ref findEnd to iterate over data points within a given key + range, including or excluding the bounding data points that are just beyond the specified range. + + If \a expandedRange is true but there are no data points below \a sortKey, \ref constBegin is + returned. + + If the container is empty, returns \ref constEnd. + + \see findEnd, QCPPlottableInterface1D::findBegin +*/ +template +typename QCPDataContainer::const_iterator QCPDataContainer::findBegin(double sortKey, bool expandedRange) const +{ + if (isEmpty()) + return constEnd(); + + QCPDataContainer::const_iterator it = std::lower_bound(constBegin(), constEnd(), DataType::fromSortKey(sortKey), qcpLessThanSortKey); + if (expandedRange && it != constBegin()) // also covers it == constEnd case, and we know --constEnd is valid because mData isn't empty + --it; + return it; +} + +/*! + Returns an iterator to the element after the data point with a (sort-)key that is equal to, just + above or just below \a sortKey. If \a expandedRange is true, the data point just above \a sortKey + will be considered, otherwise the one just below. + + This can be used in conjunction with \ref findBegin to iterate over data points within a given + key range, including the bounding data points that are just below and above the specified range. + + If \a expandedRange is true but there are no data points above \a sortKey, \ref constEnd is + returned. + + If the container is empty, \ref constEnd is returned. + + \see findBegin, QCPPlottableInterface1D::findEnd +*/ +template +typename QCPDataContainer::const_iterator QCPDataContainer::findEnd(double sortKey, bool expandedRange) const +{ + if (isEmpty()) + return constEnd(); + + QCPDataContainer::const_iterator it = std::upper_bound(constBegin(), constEnd(), DataType::fromSortKey(sortKey), qcpLessThanSortKey); + if (expandedRange && it != constEnd()) + ++it; + return it; +} + +/*! + Returns the range encompassed by the (main-)key coordinate of all data points. The output + parameter \a foundRange indicates whether a sensible range was found. If this is false, you + should not use the returned QCPRange (e.g. the data container is empty or all points have the + same key). + + Use \a signDomain to control which sign of the key coordinates should be considered. This is + relevant e.g. for logarithmic plots which can mathematically only display one sign domain at a + time. + + If the DataType reports that its main key is equal to the sort key (\a sortKeyIsMainKey), as is + the case for most plottables, this method uses this fact and finds the range very quickly. + + \see valueRange +*/ +template +QCPRange QCPDataContainer::keyRange(bool &foundRange, QCP::SignDomain signDomain) +{ + if (isEmpty()) + { + foundRange = false; + return QCPRange(); + } + QCPRange range; + bool haveLower = false; + bool haveUpper = false; + double current; + + QCPDataContainer::const_iterator it = constBegin(); + QCPDataContainer::const_iterator itEnd = constEnd(); + if (signDomain == QCP::sdBoth) // range may be anywhere + { + if (DataType::sortKeyIsMainKey()) // if DataType is sorted by main key (e.g. QCPGraph, but not QCPCurve), use faster algorithm by finding just first and last key with non-NaN value + { + while (it != itEnd) // find first non-nan going up from left + { + if (!qIsNaN(it->mainValue())) + { + range.lower = it->mainKey(); + haveLower = true; + break; + } + ++it; + } + it = itEnd; + while (it != constBegin()) // find first non-nan going down from right + { + --it; + if (!qIsNaN(it->mainValue())) + { + range.upper = it->mainKey(); + haveUpper = true; + break; + } + } + } else // DataType is not sorted by main key, go through all data points and accordingly expand range + { + while (it != itEnd) + { + if (!qIsNaN(it->mainValue())) + { + current = it->mainKey(); + if (current < range.lower || !haveLower) + { + range.lower = current; + haveLower = true; + } + if (current > range.upper || !haveUpper) + { + range.upper = current; + haveUpper = true; + } + } + ++it; + } + } + } else if (signDomain == QCP::sdNegative) // range may only be in the negative sign domain + { + while (it != itEnd) + { + if (!qIsNaN(it->mainValue())) + { + current = it->mainKey(); + if ((current < range.lower || !haveLower) && current < 0) + { + range.lower = current; + haveLower = true; + } + if ((current > range.upper || !haveUpper) && current < 0) + { + range.upper = current; + haveUpper = true; + } + } + ++it; + } + } else if (signDomain == QCP::sdPositive) // range may only be in the positive sign domain + { + while (it != itEnd) + { + if (!qIsNaN(it->mainValue())) + { + current = it->mainKey(); + if ((current < range.lower || !haveLower) && current > 0) + { + range.lower = current; + haveLower = true; + } + if ((current > range.upper || !haveUpper) && current > 0) + { + range.upper = current; + haveUpper = true; + } + } + ++it; + } + } + + foundRange = haveLower && haveUpper; + return range; +} + +/*! + Returns the range encompassed by the value coordinates of the data points in the specified key + range (\a inKeyRange), using the full \a DataType::valueRange reported by the data points. The + output parameter \a foundRange indicates whether a sensible range was found. If this is false, + you should not use the returned QCPRange (e.g. the data container is empty or all points have the + same value). + + If \a inKeyRange has both lower and upper bound set to zero (is equal to QCPRange()), + all data points are considered, without any restriction on the keys. + + Use \a signDomain to control which sign of the value coordinates should be considered. This is + relevant e.g. for logarithmic plots which can mathematically only display one sign domain at a + time. + + \see keyRange +*/ +template +QCPRange QCPDataContainer::valueRange(bool &foundRange, QCP::SignDomain signDomain, const QCPRange &inKeyRange) +{ + if (isEmpty()) + { + foundRange = false; + return QCPRange(); + } + QCPRange range; + const bool restrictKeyRange = inKeyRange != QCPRange(); + bool haveLower = false; + bool haveUpper = false; + QCPRange current; + QCPDataContainer::const_iterator itBegin = constBegin(); + QCPDataContainer::const_iterator itEnd = constEnd(); + if (DataType::sortKeyIsMainKey() && restrictKeyRange) + { + itBegin = findBegin(inKeyRange.lower); + itEnd = findEnd(inKeyRange.upper); + } + if (signDomain == QCP::sdBoth) // range may be anywhere + { + for (QCPDataContainer::const_iterator it = itBegin; it != itEnd; ++it) + { + if (restrictKeyRange && (it->mainKey() < inKeyRange.lower || it->mainKey() > inKeyRange.upper)) + continue; + current = it->valueRange(); + if ((current.lower < range.lower || !haveLower) && !qIsNaN(current.lower)) + { + range.lower = current.lower; + haveLower = true; + } + if ((current.upper > range.upper || !haveUpper) && !qIsNaN(current.upper)) + { + range.upper = current.upper; + haveUpper = true; + } + } + } else if (signDomain == QCP::sdNegative) // range may only be in the negative sign domain + { + for (QCPDataContainer::const_iterator it = itBegin; it != itEnd; ++it) + { + if (restrictKeyRange && (it->mainKey() < inKeyRange.lower || it->mainKey() > inKeyRange.upper)) + continue; + current = it->valueRange(); + if ((current.lower < range.lower || !haveLower) && current.lower < 0 && !qIsNaN(current.lower)) + { + range.lower = current.lower; + haveLower = true; + } + if ((current.upper > range.upper || !haveUpper) && current.upper < 0 && !qIsNaN(current.upper)) + { + range.upper = current.upper; + haveUpper = true; + } + } + } else if (signDomain == QCP::sdPositive) // range may only be in the positive sign domain + { + for (QCPDataContainer::const_iterator it = itBegin; it != itEnd; ++it) + { + if (restrictKeyRange && (it->mainKey() < inKeyRange.lower || it->mainKey() > inKeyRange.upper)) + continue; + current = it->valueRange(); + if ((current.lower < range.lower || !haveLower) && current.lower > 0 && !qIsNaN(current.lower)) + { + range.lower = current.lower; + haveLower = true; + } + if ((current.upper > range.upper || !haveUpper) && current.upper > 0 && !qIsNaN(current.upper)) + { + range.upper = current.upper; + haveUpper = true; + } + } + } + + foundRange = haveLower && haveUpper; + return range; +} + +/*! + Makes sure \a begin and \a end mark a data range that is both within the bounds of this data + container's data, as well as within the specified \a dataRange. The initial range described by + the passed iterators \a begin and \a end is never expanded, only contracted if necessary. + + This function doesn't require for \a dataRange to be within the bounds of this data container's + valid range. +*/ +template +void QCPDataContainer::limitIteratorsToDataRange(const_iterator &begin, const_iterator &end, const QCPDataRange &dataRange) const +{ + QCPDataRange iteratorRange(begin-constBegin(), end-constBegin()); + iteratorRange = iteratorRange.bounded(dataRange.bounded(this->dataRange())); + begin = constBegin()+iteratorRange.begin(); + end = constBegin()+iteratorRange.end(); +} + +/*! \internal + + Increases the preallocation pool to have a size of at least \a minimumPreallocSize. Depending on + the preallocation history, the container will grow by more than requested, to speed up future + consecutive size increases. + + if \a minimumPreallocSize is smaller than or equal to the current preallocation pool size, this + method does nothing. +*/ +template +void QCPDataContainer::preallocateGrow(int minimumPreallocSize) +{ + if (minimumPreallocSize <= mPreallocSize) + return; + + int newPreallocSize = minimumPreallocSize; + newPreallocSize += (1u< +void QCPDataContainer::performAutoSqueeze() +{ + const int totalAlloc = mData.capacity(); + const int postAllocSize = totalAlloc-mData.size(); + const int usedSize = size(); + bool shrinkPostAllocation = false; + bool shrinkPreAllocation = false; + if (totalAlloc > 650000) // if allocation is larger, shrink earlier with respect to total used size + { + shrinkPostAllocation = postAllocSize > usedSize*1.5; // QVector grow strategy is 2^n for static data. Watch out not to oscillate! + shrinkPreAllocation = mPreallocSize*10 > usedSize; + } else if (totalAlloc > 1000) // below 10 MiB raw data be generous with preallocated memory, below 1k points don't even bother + { + shrinkPostAllocation = postAllocSize > usedSize*5; + shrinkPreAllocation = mPreallocSize > usedSize*1.5; // preallocation can grow into postallocation, so can be smaller + } + + if (shrinkPreAllocation || shrinkPostAllocation) + squeeze(shrinkPreAllocation, shrinkPostAllocation); +} +/* end of 'src/datacontainer.cpp' */ + + +/* end of 'src/datacontainer.h' */ + + +/* including file 'src/plottable.h', size 8433 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPSelectionDecorator +{ + Q_GADGET +public: + QCPSelectionDecorator(); + virtual ~QCPSelectionDecorator(); + + // getters: + QPen pen() const { return mPen; } + QBrush brush() const { return mBrush; } + QCPScatterStyle scatterStyle() const { return mScatterStyle; } + QCPScatterStyle::ScatterProperties usedScatterProperties() const { return mUsedScatterProperties; } + + // setters: + void setPen(const QPen &pen); + void setBrush(const QBrush &brush); + void setScatterStyle(const QCPScatterStyle &scatterStyle, QCPScatterStyle::ScatterProperties usedProperties=QCPScatterStyle::spPen); + void setUsedScatterProperties(const QCPScatterStyle::ScatterProperties &properties); + + // non-virtual methods: + void applyPen(QCPPainter *painter) const; + void applyBrush(QCPPainter *painter) const; + QCPScatterStyle getFinalScatterStyle(const QCPScatterStyle &unselectedStyle) const; + + // introduced virtual methods: + virtual void copyFrom(const QCPSelectionDecorator *other); + virtual void drawDecoration(QCPPainter *painter, QCPDataSelection selection); + +protected: + // property members: + QPen mPen; + QBrush mBrush; + QCPScatterStyle mScatterStyle; + QCPScatterStyle::ScatterProperties mUsedScatterProperties; + // non-property members: + QCPAbstractPlottable *mPlottable; + + // introduced virtual methods: + virtual bool registerWithPlottable(QCPAbstractPlottable *plottable); + +private: + Q_DISABLE_COPY(QCPSelectionDecorator) + friend class QCPAbstractPlottable; +}; +Q_DECLARE_METATYPE(QCPSelectionDecorator*) + + +class QCP_LIB_DECL QCPAbstractPlottable : public QCPLayerable +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QString name READ name WRITE setName) + Q_PROPERTY(bool antialiasedFill READ antialiasedFill WRITE setAntialiasedFill) + Q_PROPERTY(bool antialiasedScatters READ antialiasedScatters WRITE setAntialiasedScatters) + Q_PROPERTY(QPen pen READ pen WRITE setPen) + Q_PROPERTY(QBrush brush READ brush WRITE setBrush) + Q_PROPERTY(QCPAxis* keyAxis READ keyAxis WRITE setKeyAxis) + Q_PROPERTY(QCPAxis* valueAxis READ valueAxis WRITE setValueAxis) + Q_PROPERTY(QCP::SelectionType selectable READ selectable WRITE setSelectable NOTIFY selectableChanged) + Q_PROPERTY(QCPDataSelection selection READ selection WRITE setSelection NOTIFY selectionChanged) + Q_PROPERTY(QCPSelectionDecorator* selectionDecorator READ selectionDecorator WRITE setSelectionDecorator) + /// \endcond +public: + QCPAbstractPlottable(QCPAxis *keyAxis, QCPAxis *valueAxis); + virtual ~QCPAbstractPlottable(); + + // getters: + QString name() const { return mName; } + bool antialiasedFill() const { return mAntialiasedFill; } + bool antialiasedScatters() const { return mAntialiasedScatters; } + QPen pen() const { return mPen; } + QBrush brush() const { return mBrush; } + QCPAxis *keyAxis() const { return mKeyAxis.data(); } + QCPAxis *valueAxis() const { return mValueAxis.data(); } + QCP::SelectionType selectable() const { return mSelectable; } + bool selected() const { return !mSelection.isEmpty(); } + QCPDataSelection selection() const { return mSelection; } + QCPSelectionDecorator *selectionDecorator() const { return mSelectionDecorator; } + + // setters: + void setName(const QString &name); + void setAntialiasedFill(bool enabled); + void setAntialiasedScatters(bool enabled); + void setPen(const QPen &pen); + void setBrush(const QBrush &brush); + void setKeyAxis(QCPAxis *axis); + void setValueAxis(QCPAxis *axis); + Q_SLOT void setSelectable(QCP::SelectionType selectable); + Q_SLOT void setSelection(QCPDataSelection selection); + void setSelectionDecorator(QCPSelectionDecorator *decorator); + + // introduced virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE = 0; // actually introduced in QCPLayerable as non-pure, but we want to force reimplementation for plottables + virtual QCPPlottableInterface1D *interface1D() { return 0; } + virtual QCPRange getKeyRange(bool &foundRange, QCP::SignDomain inSignDomain=QCP::sdBoth) const = 0; + virtual QCPRange getValueRange(bool &foundRange, QCP::SignDomain inSignDomain=QCP::sdBoth, const QCPRange &inKeyRange=QCPRange()) const = 0; + + // non-property methods: + void coordsToPixels(double key, double value, double &x, double &y) const; + const QPointF coordsToPixels(double key, double value) const; + void pixelsToCoords(double x, double y, double &key, double &value) const; + void pixelsToCoords(const QPointF &pixelPos, double &key, double &value) const; + void rescaleAxes(bool onlyEnlarge=false) const; + void rescaleKeyAxis(bool onlyEnlarge=false) const; + void rescaleValueAxis(bool onlyEnlarge=false, bool inKeyRange=false) const; + bool addToLegend(QCPLegend *legend); + bool addToLegend(); + bool removeFromLegend(QCPLegend *legend) const; + bool removeFromLegend() const; + +signals: + void selectionChanged(bool selected); + void selectionChanged(const QCPDataSelection &selection); + void selectableChanged(QCP::SelectionType selectable); + +protected: + // property members: + QString mName; + bool mAntialiasedFill, mAntialiasedScatters; + QPen mPen; + QBrush mBrush; + QPointer mKeyAxis, mValueAxis; + QCP::SelectionType mSelectable; + QCPDataSelection mSelection; + QCPSelectionDecorator *mSelectionDecorator; + + // reimplemented virtual methods: + virtual QRect clipRect() const Q_DECL_OVERRIDE; + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE = 0; + virtual QCP::Interaction selectionCategory() const Q_DECL_OVERRIDE; + void applyDefaultAntialiasingHint(QCPPainter *painter) const Q_DECL_OVERRIDE; + // events: + virtual void selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) Q_DECL_OVERRIDE; + virtual void deselectEvent(bool *selectionStateChanged) Q_DECL_OVERRIDE; + + // introduced virtual methods: + virtual void drawLegendIcon(QCPPainter *painter, const QRectF &rect) const = 0; + + // non-virtual methods: + void applyFillAntialiasingHint(QCPPainter *painter) const; + void applyScattersAntialiasingHint(QCPPainter *painter) const; + +private: + Q_DISABLE_COPY(QCPAbstractPlottable) + + friend class QCustomPlot; + friend class QCPAxis; + friend class QCPPlottableLegendItem; +}; + + +/* end of 'src/plottable.h' */ + + +/* including file 'src/item.h', size 9384 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPItemAnchor +{ + Q_GADGET +public: + QCPItemAnchor(QCustomPlot *parentPlot, QCPAbstractItem *parentItem, const QString &name, int anchorId=-1); + virtual ~QCPItemAnchor(); + + // getters: + QString name() const { return mName; } + virtual QPointF pixelPosition() const; + +protected: + // property members: + QString mName; + + // non-property members: + QCustomPlot *mParentPlot; + QCPAbstractItem *mParentItem; + int mAnchorId; + QSet mChildrenX, mChildrenY; + + // introduced virtual methods: + virtual QCPItemPosition *toQCPItemPosition() { return 0; } + + // non-virtual methods: + void addChildX(QCPItemPosition* pos); // called from pos when this anchor is set as parent + void removeChildX(QCPItemPosition *pos); // called from pos when its parent anchor is reset or pos deleted + void addChildY(QCPItemPosition* pos); // called from pos when this anchor is set as parent + void removeChildY(QCPItemPosition *pos); // called from pos when its parent anchor is reset or pos deleted + +private: + Q_DISABLE_COPY(QCPItemAnchor) + + friend class QCPItemPosition; +}; + + + +class QCP_LIB_DECL QCPItemPosition : public QCPItemAnchor +{ + Q_GADGET +public: + /*! + Defines the ways an item position can be specified. Thus it defines what the numbers passed to + \ref setCoords actually mean. + + \see setType + */ + enum PositionType { ptAbsolute ///< Static positioning in pixels, starting from the top left corner of the viewport/widget. + ,ptViewportRatio ///< Static positioning given by a fraction of the viewport size. For example, if you call setCoords(0, 0), the position will be at the top + ///< left corner of the viewport/widget. setCoords(1, 1) will be at the bottom right corner, setCoords(0.5, 0) will be horizontally centered and + ///< vertically at the top of the viewport/widget, etc. + ,ptAxisRectRatio ///< Static positioning given by a fraction of the axis rect size (see \ref setAxisRect). For example, if you call setCoords(0, 0), the position will be at the top + ///< left corner of the axis rect. setCoords(1, 1) will be at the bottom right corner, setCoords(0.5, 0) will be horizontally centered and + ///< vertically at the top of the axis rect, etc. You can also go beyond the axis rect by providing negative coordinates or coordinates larger than 1. + ,ptPlotCoords ///< Dynamic positioning at a plot coordinate defined by two axes (see \ref setAxes). + }; + Q_ENUMS(PositionType) + + QCPItemPosition(QCustomPlot *parentPlot, QCPAbstractItem *parentItem, const QString &name); + virtual ~QCPItemPosition(); + + // getters: + PositionType type() const { return typeX(); } + PositionType typeX() const { return mPositionTypeX; } + PositionType typeY() const { return mPositionTypeY; } + QCPItemAnchor *parentAnchor() const { return parentAnchorX(); } + QCPItemAnchor *parentAnchorX() const { return mParentAnchorX; } + QCPItemAnchor *parentAnchorY() const { return mParentAnchorY; } + double key() const { return mKey; } + double value() const { return mValue; } + QPointF coords() const { return QPointF(mKey, mValue); } + QCPAxis *keyAxis() const { return mKeyAxis.data(); } + QCPAxis *valueAxis() const { return mValueAxis.data(); } + QCPAxisRect *axisRect() const; + virtual QPointF pixelPosition() const Q_DECL_OVERRIDE; + + // setters: + void setType(PositionType type); + void setTypeX(PositionType type); + void setTypeY(PositionType type); + bool setParentAnchor(QCPItemAnchor *parentAnchor, bool keepPixelPosition=false); + bool setParentAnchorX(QCPItemAnchor *parentAnchor, bool keepPixelPosition=false); + bool setParentAnchorY(QCPItemAnchor *parentAnchor, bool keepPixelPosition=false); + void setCoords(double key, double value); + void setCoords(const QPointF &coords); + void setAxes(QCPAxis* keyAxis, QCPAxis* valueAxis); + void setAxisRect(QCPAxisRect *axisRect); + void setPixelPosition(const QPointF &pixelPosition); + +protected: + // property members: + PositionType mPositionTypeX, mPositionTypeY; + QPointer mKeyAxis, mValueAxis; + QPointer mAxisRect; + double mKey, mValue; + QCPItemAnchor *mParentAnchorX, *mParentAnchorY; + + // reimplemented virtual methods: + virtual QCPItemPosition *toQCPItemPosition() Q_DECL_OVERRIDE { return this; } + +private: + Q_DISABLE_COPY(QCPItemPosition) + +}; +Q_DECLARE_METATYPE(QCPItemPosition::PositionType) + + +class QCP_LIB_DECL QCPAbstractItem : public QCPLayerable +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(bool clipToAxisRect READ clipToAxisRect WRITE setClipToAxisRect) + Q_PROPERTY(QCPAxisRect* clipAxisRect READ clipAxisRect WRITE setClipAxisRect) + Q_PROPERTY(bool selectable READ selectable WRITE setSelectable NOTIFY selectableChanged) + Q_PROPERTY(bool selected READ selected WRITE setSelected NOTIFY selectionChanged) + /// \endcond +public: + explicit QCPAbstractItem(QCustomPlot *parentPlot); + virtual ~QCPAbstractItem(); + + // getters: + bool clipToAxisRect() const { return mClipToAxisRect; } + QCPAxisRect *clipAxisRect() const; + bool selectable() const { return mSelectable; } + bool selected() const { return mSelected; } + + // setters: + void setClipToAxisRect(bool clip); + void setClipAxisRect(QCPAxisRect *rect); + Q_SLOT void setSelectable(bool selectable); + Q_SLOT void setSelected(bool selected); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE = 0; + + // non-virtual methods: + QList positions() const { return mPositions; } + QList anchors() const { return mAnchors; } + QCPItemPosition *position(const QString &name) const; + QCPItemAnchor *anchor(const QString &name) const; + bool hasAnchor(const QString &name) const; + +signals: + void selectionChanged(bool selected); + void selectableChanged(bool selectable); + +protected: + // property members: + bool mClipToAxisRect; + QPointer mClipAxisRect; + QList mPositions; + QList mAnchors; + bool mSelectable, mSelected; + + // reimplemented virtual methods: + virtual QCP::Interaction selectionCategory() const Q_DECL_OVERRIDE; + virtual QRect clipRect() const Q_DECL_OVERRIDE; + virtual void applyDefaultAntialiasingHint(QCPPainter *painter) const Q_DECL_OVERRIDE; + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE = 0; + // events: + virtual void selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) Q_DECL_OVERRIDE; + virtual void deselectEvent(bool *selectionStateChanged) Q_DECL_OVERRIDE; + + // introduced virtual methods: + virtual QPointF anchorPixelPosition(int anchorId) const; + + // non-virtual methods: + double rectDistance(const QRectF &rect, const QPointF &pos, bool filledRect) const; + QCPItemPosition *createPosition(const QString &name); + QCPItemAnchor *createAnchor(const QString &name, int anchorId); + +private: + Q_DISABLE_COPY(QCPAbstractItem) + + friend class QCustomPlot; + friend class QCPItemAnchor; +}; + +/* end of 'src/item.h' */ + + +/* including file 'src/core.h', size 14886 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCustomPlot : public QWidget +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QRect viewport READ viewport WRITE setViewport) + Q_PROPERTY(QPixmap background READ background WRITE setBackground) + Q_PROPERTY(bool backgroundScaled READ backgroundScaled WRITE setBackgroundScaled) + Q_PROPERTY(Qt::AspectRatioMode backgroundScaledMode READ backgroundScaledMode WRITE setBackgroundScaledMode) + Q_PROPERTY(QCPLayoutGrid* plotLayout READ plotLayout) + Q_PROPERTY(bool autoAddPlottableToLegend READ autoAddPlottableToLegend WRITE setAutoAddPlottableToLegend) + Q_PROPERTY(int selectionTolerance READ selectionTolerance WRITE setSelectionTolerance) + Q_PROPERTY(bool noAntialiasingOnDrag READ noAntialiasingOnDrag WRITE setNoAntialiasingOnDrag) + Q_PROPERTY(Qt::KeyboardModifier multiSelectModifier READ multiSelectModifier WRITE setMultiSelectModifier) + Q_PROPERTY(bool openGl READ openGl WRITE setOpenGl) + /// \endcond +public: + /*! + Defines how a layer should be inserted relative to an other layer. + + \see addLayer, moveLayer + */ + enum LayerInsertMode { limBelow ///< Layer is inserted below other layer + ,limAbove ///< Layer is inserted above other layer + }; + Q_ENUMS(LayerInsertMode) + + /*! + Defines with what timing the QCustomPlot surface is refreshed after a replot. + + \see replot + */ + enum RefreshPriority { rpImmediateRefresh ///< Replots immediately and repaints the widget immediately by calling QWidget::repaint() after the replot + ,rpQueuedRefresh ///< Replots immediately, but queues the widget repaint, by calling QWidget::update() after the replot. This way multiple redundant widget repaints can be avoided. + ,rpRefreshHint ///< Whether to use immediate or queued refresh depends on whether the plotting hint \ref QCP::phImmediateRefresh is set, see \ref setPlottingHints. + ,rpQueuedReplot ///< Queues the entire replot for the next event loop iteration. This way multiple redundant replots can be avoided. The actual replot is then done with \ref rpRefreshHint priority. + }; + Q_ENUMS(RefreshPriority) + + explicit QCustomPlot(QWidget *parent = 0); + virtual ~QCustomPlot(); + + // getters: + QRect viewport() const { return mViewport; } + double bufferDevicePixelRatio() const { return mBufferDevicePixelRatio; } + QPixmap background() const { return mBackgroundPixmap; } + bool backgroundScaled() const { return mBackgroundScaled; } + Qt::AspectRatioMode backgroundScaledMode() const { return mBackgroundScaledMode; } + QCPLayoutGrid *plotLayout() const { return mPlotLayout; } + QCP::AntialiasedElements antialiasedElements() const { return mAntialiasedElements; } + QCP::AntialiasedElements notAntialiasedElements() const { return mNotAntialiasedElements; } + bool autoAddPlottableToLegend() const { return mAutoAddPlottableToLegend; } + const QCP::Interactions interactions() const { return mInteractions; } + int selectionTolerance() const { return mSelectionTolerance; } + bool noAntialiasingOnDrag() const { return mNoAntialiasingOnDrag; } + QCP::PlottingHints plottingHints() const { return mPlottingHints; } + Qt::KeyboardModifier multiSelectModifier() const { return mMultiSelectModifier; } + QCP::SelectionRectMode selectionRectMode() const { return mSelectionRectMode; } + QCPSelectionRect *selectionRect() const { return mSelectionRect; } + bool openGl() const { return mOpenGl; } + + // setters: + void setViewport(const QRect &rect); + void setBufferDevicePixelRatio(double ratio); + void setBackground(const QPixmap &pm); + void setBackground(const QPixmap &pm, bool scaled, Qt::AspectRatioMode mode=Qt::KeepAspectRatioByExpanding); + void setBackground(const QBrush &brush); + void setBackgroundScaled(bool scaled); + void setBackgroundScaledMode(Qt::AspectRatioMode mode); + void setAntialiasedElements(const QCP::AntialiasedElements &antialiasedElements); + void setAntialiasedElement(QCP::AntialiasedElement antialiasedElement, bool enabled=true); + void setNotAntialiasedElements(const QCP::AntialiasedElements ¬AntialiasedElements); + void setNotAntialiasedElement(QCP::AntialiasedElement notAntialiasedElement, bool enabled=true); + void setAutoAddPlottableToLegend(bool on); + void setInteractions(const QCP::Interactions &interactions); + void setInteraction(const QCP::Interaction &interaction, bool enabled=true); + void setSelectionTolerance(int pixels); + void setNoAntialiasingOnDrag(bool enabled); + void setPlottingHints(const QCP::PlottingHints &hints); + void setPlottingHint(QCP::PlottingHint hint, bool enabled=true); + void setMultiSelectModifier(Qt::KeyboardModifier modifier); + void setSelectionRectMode(QCP::SelectionRectMode mode); + void setSelectionRect(QCPSelectionRect *selectionRect); + void setOpenGl(bool enabled, int multisampling=16); + + // non-property methods: + // plottable interface: + QCPAbstractPlottable *plottable(int index); + QCPAbstractPlottable *plottable(); + bool removePlottable(QCPAbstractPlottable *plottable); + bool removePlottable(int index); + int clearPlottables(); + int plottableCount() const; + QList selectedPlottables() const; + QCPAbstractPlottable *plottableAt(const QPointF &pos, bool onlySelectable=false) const; + bool hasPlottable(QCPAbstractPlottable *plottable) const; + + // specialized interface for QCPGraph: + QCPGraph *graph(int index) const; + QCPGraph *graph() const; + QCPGraph *addGraph(QCPAxis *keyAxis=0, QCPAxis *valueAxis=0); + bool removeGraph(QCPGraph *graph); + bool removeGraph(int index); + int clearGraphs(); + int graphCount() const; + QList selectedGraphs() const; + + // item interface: + QCPAbstractItem *item(int index) const; + QCPAbstractItem *item() const; + bool removeItem(QCPAbstractItem *item); + bool removeItem(int index); + int clearItems(); + int itemCount() const; + QList selectedItems() const; + QCPAbstractItem *itemAt(const QPointF &pos, bool onlySelectable=false) const; + bool hasItem(QCPAbstractItem *item) const; + + // layer interface: + QCPLayer *layer(const QString &name) const; + QCPLayer *layer(int index) const; + QCPLayer *currentLayer() const; + bool setCurrentLayer(const QString &name); + bool setCurrentLayer(QCPLayer *layer); + int layerCount() const; + bool addLayer(const QString &name, QCPLayer *otherLayer=0, LayerInsertMode insertMode=limAbove); + bool removeLayer(QCPLayer *layer); + bool moveLayer(QCPLayer *layer, QCPLayer *otherLayer, LayerInsertMode insertMode=limAbove); + + // axis rect/layout interface: + int axisRectCount() const; + QCPAxisRect* axisRect(int index=0) const; + QList axisRects() const; + QCPLayoutElement* layoutElementAt(const QPointF &pos) const; + QCPAxisRect* axisRectAt(const QPointF &pos) const; + Q_SLOT void rescaleAxes(bool onlyVisiblePlottables=false); + + QList selectedAxes() const; + QList selectedLegends() const; + Q_SLOT void deselectAll(); + + bool savePdf(const QString &fileName, int width=0, int height=0, QCP::ExportPen exportPen=QCP::epAllowCosmetic, const QString &pdfCreator=QString(), const QString &pdfTitle=QString()); + bool savePng(const QString &fileName, int width=0, int height=0, double scale=1.0, int quality=-1, int resolution=96, QCP::ResolutionUnit resolutionUnit=QCP::ruDotsPerInch); + bool saveJpg(const QString &fileName, int width=0, int height=0, double scale=1.0, int quality=-1, int resolution=96, QCP::ResolutionUnit resolutionUnit=QCP::ruDotsPerInch); + bool saveBmp(const QString &fileName, int width=0, int height=0, double scale=1.0, int resolution=96, QCP::ResolutionUnit resolutionUnit=QCP::ruDotsPerInch); + bool saveRastered(const QString &fileName, int width, int height, double scale, const char *format, int quality=-1, int resolution=96, QCP::ResolutionUnit resolutionUnit=QCP::ruDotsPerInch); + QPixmap toPixmap(int width=0, int height=0, double scale=1.0); + void toPainter(QCPPainter *painter, int width=0, int height=0); + Q_SLOT void replot(QCustomPlot::RefreshPriority refreshPriority=QCustomPlot::rpRefreshHint); + + QCPAxis *xAxis, *yAxis, *xAxis2, *yAxis2; + QCPLegend *legend; + +signals: + void mouseDoubleClick(QMouseEvent *event); + void mousePress(QMouseEvent *event); + void mouseMove(QMouseEvent *event); + void mouseRelease(QMouseEvent *event); + void mouseWheel(QWheelEvent *event); + + void plottableClick(QCPAbstractPlottable *plottable, int dataIndex, QMouseEvent *event); + void plottableDoubleClick(QCPAbstractPlottable *plottable, int dataIndex, QMouseEvent *event); + void itemClick(QCPAbstractItem *item, QMouseEvent *event); + void itemDoubleClick(QCPAbstractItem *item, QMouseEvent *event); + void axisClick(QCPAxis *axis, QCPAxis::SelectablePart part, QMouseEvent *event); + void axisDoubleClick(QCPAxis *axis, QCPAxis::SelectablePart part, QMouseEvent *event); + void legendClick(QCPLegend *legend, QCPAbstractLegendItem *item, QMouseEvent *event); + void legendDoubleClick(QCPLegend *legend, QCPAbstractLegendItem *item, QMouseEvent *event); + + void selectionChangedByUser(); + void beforeReplot(); + void afterReplot(); + +protected: + // property members: + QRect mViewport; + double mBufferDevicePixelRatio; + QCPLayoutGrid *mPlotLayout; + bool mAutoAddPlottableToLegend; + QList mPlottables; + QList mGraphs; // extra list of plottables also in mPlottables that are of type QCPGraph + QList mItems; + QList mLayers; + QCP::AntialiasedElements mAntialiasedElements, mNotAntialiasedElements; + QCP::Interactions mInteractions; + int mSelectionTolerance; + bool mNoAntialiasingOnDrag; + QBrush mBackgroundBrush; + QPixmap mBackgroundPixmap; + QPixmap mScaledBackgroundPixmap; + bool mBackgroundScaled; + Qt::AspectRatioMode mBackgroundScaledMode; + QCPLayer *mCurrentLayer; + QCP::PlottingHints mPlottingHints; + Qt::KeyboardModifier mMultiSelectModifier; + QCP::SelectionRectMode mSelectionRectMode; + QCPSelectionRect *mSelectionRect; + bool mOpenGl; + + // non-property members: + QList > mPaintBuffers; + QPoint mMousePressPos; + bool mMouseHasMoved; + QPointer mMouseEventLayerable; + QPointer mMouseSignalLayerable; + QVariant mMouseEventLayerableDetails; + QVariant mMouseSignalLayerableDetails; + bool mReplotting; + bool mReplotQueued; + int mOpenGlMultisamples; + QCP::AntialiasedElements mOpenGlAntialiasedElementsBackup; + bool mOpenGlCacheLabelsBackup; +#ifdef QCP_OPENGL_FBO + QSharedPointer mGlContext; + QSharedPointer mGlSurface; + QSharedPointer mGlPaintDevice; +#endif + + // reimplemented virtual methods: + virtual QSize minimumSizeHint() const Q_DECL_OVERRIDE; + virtual QSize sizeHint() const Q_DECL_OVERRIDE; + virtual void paintEvent(QPaintEvent *event) Q_DECL_OVERRIDE; + virtual void resizeEvent(QResizeEvent *event) Q_DECL_OVERRIDE; + virtual void mouseDoubleClickEvent(QMouseEvent *event) Q_DECL_OVERRIDE; + virtual void mousePressEvent(QMouseEvent *event) Q_DECL_OVERRIDE; + virtual void mouseMoveEvent(QMouseEvent *event) Q_DECL_OVERRIDE; + virtual void mouseReleaseEvent(QMouseEvent *event) Q_DECL_OVERRIDE; + virtual void wheelEvent(QWheelEvent *event) Q_DECL_OVERRIDE; + + // introduced virtual methods: + virtual void draw(QCPPainter *painter); + virtual void updateLayout(); + virtual void axisRemoved(QCPAxis *axis); + virtual void legendRemoved(QCPLegend *legend); + Q_SLOT virtual void processRectSelection(QRect rect, QMouseEvent *event); + Q_SLOT virtual void processRectZoom(QRect rect, QMouseEvent *event); + Q_SLOT virtual void processPointSelection(QMouseEvent *event); + + // non-virtual methods: + bool registerPlottable(QCPAbstractPlottable *plottable); + bool registerGraph(QCPGraph *graph); + bool registerItem(QCPAbstractItem* item); + void updateLayerIndices() const; + QCPLayerable *layerableAt(const QPointF &pos, bool onlySelectable, QVariant *selectionDetails=0) const; + QList layerableListAt(const QPointF &pos, bool onlySelectable, QList *selectionDetails=0) const; + void drawBackground(QCPPainter *painter); + void setupPaintBuffers(); + QCPAbstractPaintBuffer *createPaintBuffer(); + bool hasInvalidatedPaintBuffers(); + bool setupOpenGl(); + void freeOpenGl(); + + friend class QCPLegend; + friend class QCPAxis; + friend class QCPLayer; + friend class QCPAxisRect; + friend class QCPAbstractPlottable; + friend class QCPGraph; + friend class QCPAbstractItem; +}; +Q_DECLARE_METATYPE(QCustomPlot::LayerInsertMode) +Q_DECLARE_METATYPE(QCustomPlot::RefreshPriority) + +/* end of 'src/core.h' */ + + +/* including file 'src/plottable1d.h', size 4544 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCPPlottableInterface1D +{ +public: + virtual ~QCPPlottableInterface1D() {} + // introduced pure virtual methods: + virtual int dataCount() const = 0; + virtual double dataMainKey(int index) const = 0; + virtual double dataSortKey(int index) const = 0; + virtual double dataMainValue(int index) const = 0; + virtual QCPRange dataValueRange(int index) const = 0; + virtual QPointF dataPixelPosition(int index) const = 0; + virtual bool sortKeyIsMainKey() const = 0; + virtual QCPDataSelection selectTestRect(const QRectF &rect, bool onlySelectable) const = 0; + virtual int findBegin(double sortKey, bool expandedRange=true) const = 0; + virtual int findEnd(double sortKey, bool expandedRange=true) const = 0; +}; + +template +class QCPAbstractPlottable1D : public QCPAbstractPlottable, public QCPPlottableInterface1D // no QCP_LIB_DECL, template class ends up in header (cpp included below) +{ + // No Q_OBJECT macro due to template class + +public: + QCPAbstractPlottable1D(QCPAxis *keyAxis, QCPAxis *valueAxis); + virtual ~QCPAbstractPlottable1D(); + + // virtual methods of 1d plottable interface: + virtual int dataCount() const Q_DECL_OVERRIDE; + virtual double dataMainKey(int index) const Q_DECL_OVERRIDE; + virtual double dataSortKey(int index) const Q_DECL_OVERRIDE; + virtual double dataMainValue(int index) const Q_DECL_OVERRIDE; + virtual QCPRange dataValueRange(int index) const Q_DECL_OVERRIDE; + virtual QPointF dataPixelPosition(int index) const Q_DECL_OVERRIDE; + virtual bool sortKeyIsMainKey() const Q_DECL_OVERRIDE; + virtual QCPDataSelection selectTestRect(const QRectF &rect, bool onlySelectable) const Q_DECL_OVERRIDE; + virtual int findBegin(double sortKey, bool expandedRange=true) const Q_DECL_OVERRIDE; + virtual int findEnd(double sortKey, bool expandedRange=true) const Q_DECL_OVERRIDE; + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE; + virtual QCPPlottableInterface1D *interface1D() Q_DECL_OVERRIDE { return this; } + +protected: + // property members: + QSharedPointer > mDataContainer; + + // helpers for subclasses: + void getDataSegments(QList &selectedSegments, QList &unselectedSegments) const; + void drawPolyline(QCPPainter *painter, const QVector &lineData) const; + +private: + Q_DISABLE_COPY(QCPAbstractPlottable1D) + +}; + +// include implementation in header since it is a class template: + +/* including file 'src/plottable1d.cpp', size 22361 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPPlottableInterface1D +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPPlottableInterface1D + \brief Defines an abstract interface for one-dimensional plottables + + This class contains only pure virtual methods which define a common interface to the data + of one-dimensional plottables. + + For example, it is implemented by the template class \ref QCPAbstractPlottable1D (the preferred + base class for one-dimensional plottables). So if you use that template class as base class of + your one-dimensional plottable, you won't have to care about implementing the 1d interface + yourself. + + If your plottable doesn't derive from \ref QCPAbstractPlottable1D but still wants to provide a 1d + interface (e.g. like \ref QCPErrorBars does), you should inherit from both \ref + QCPAbstractPlottable and \ref QCPPlottableInterface1D and accordingly reimplement the pure + virtual methods of the 1d interface, matching your data container. Also, reimplement \ref + QCPAbstractPlottable::interface1D to return the \c this pointer. + + If you have a \ref QCPAbstractPlottable pointer, you can check whether it implements this + interface by calling \ref QCPAbstractPlottable::interface1D and testing it for a non-zero return + value. If it indeed implements this interface, you may use it to access the plottable's data + without needing to know the exact type of the plottable or its data point type. +*/ + +/* start documentation of pure virtual functions */ + +/*! \fn virtual int QCPPlottableInterface1D::dataCount() const = 0; + + Returns the number of data points of the plottable. +*/ + +/*! \fn virtual QCPDataSelection QCPPlottableInterface1D::selectTestRect(const QRectF &rect, bool onlySelectable) const = 0; + + Returns a data selection containing all the data points of this plottable which are contained (or + hit by) \a rect. This is used mainly in the selection rect interaction for data selection (\ref + dataselection "data selection mechanism"). + + If \a onlySelectable is true, an empty QCPDataSelection is returned if this plottable is not + selectable (i.e. if \ref QCPAbstractPlottable::setSelectable is \ref QCP::stNone). + + \note \a rect must be a normalized rect (positive or zero width and height). This is especially + important when using the rect of \ref QCPSelectionRect::accepted, which is not necessarily + normalized. Use QRect::normalized() when passing a rect which might not be normalized. +*/ + +/*! \fn virtual double QCPPlottableInterface1D::dataMainKey(int index) const = 0 + + Returns the main key of the data point at the given \a index. + + What the main key is, is defined by the plottable's data type. See the \ref + qcpdatacontainer-datatype "QCPDataContainer DataType" documentation for details about this naming + convention. +*/ + +/*! \fn virtual double QCPPlottableInterface1D::dataSortKey(int index) const = 0 + + Returns the sort key of the data point at the given \a index. + + What the sort key is, is defined by the plottable's data type. See the \ref + qcpdatacontainer-datatype "QCPDataContainer DataType" documentation for details about this naming + convention. +*/ + +/*! \fn virtual double QCPPlottableInterface1D::dataMainValue(int index) const = 0 + + Returns the main value of the data point at the given \a index. + + What the main value is, is defined by the plottable's data type. See the \ref + qcpdatacontainer-datatype "QCPDataContainer DataType" documentation for details about this naming + convention. +*/ + +/*! \fn virtual QCPRange QCPPlottableInterface1D::dataValueRange(int index) const = 0 + + Returns the value range of the data point at the given \a index. + + What the value range is, is defined by the plottable's data type. See the \ref + qcpdatacontainer-datatype "QCPDataContainer DataType" documentation for details about this naming + convention. +*/ + +/*! \fn virtual QPointF QCPPlottableInterface1D::dataPixelPosition(int index) const = 0 + + Returns the pixel position on the widget surface at which the data point at the given \a index + appears. + + Usually this corresponds to the point of \ref dataMainKey/\ref dataMainValue, in pixel + coordinates. However, depending on the plottable, this might be a different apparent position + than just a coord-to-pixel transform of those values. For example, \ref QCPBars apparent data + values can be shifted depending on their stacking, bar grouping or configured base value. +*/ + +/*! \fn virtual bool QCPPlottableInterface1D::sortKeyIsMainKey() const = 0 + + Returns whether the sort key (\ref dataSortKey) is identical to the main key (\ref dataMainKey). + + What the sort and main keys are, is defined by the plottable's data type. See the \ref + qcpdatacontainer-datatype "QCPDataContainer DataType" documentation for details about this naming + convention. +*/ + +/*! \fn virtual int QCPPlottableInterface1D::findBegin(double sortKey, bool expandedRange) const = 0 + + Returns the index of the data point with a (sort-)key that is equal to, just below, or just above + \a sortKey. If \a expandedRange is true, the data point just below \a sortKey will be considered, + otherwise the one just above. + + This can be used in conjunction with \ref findEnd to iterate over data points within a given key + range, including or excluding the bounding data points that are just beyond the specified range. + + If \a expandedRange is true but there are no data points below \a sortKey, 0 is returned. + + If the container is empty, returns 0 (in that case, \ref findEnd will also return 0, so a loop + using these methods will not iterate over the index 0). + + \see findEnd, QCPDataContainer::findBegin +*/ + +/*! \fn virtual int QCPPlottableInterface1D::findEnd(double sortKey, bool expandedRange) const = 0 + + Returns the index one after the data point with a (sort-)key that is equal to, just above, or + just below \a sortKey. If \a expandedRange is true, the data point just above \a sortKey will be + considered, otherwise the one just below. + + This can be used in conjunction with \ref findBegin to iterate over data points within a given + key range, including the bounding data points that are just below and above the specified range. + + If \a expandedRange is true but there are no data points above \a sortKey, the index just above the + highest data point is returned. + + If the container is empty, returns 0. + + \see findBegin, QCPDataContainer::findEnd +*/ + +/* end documentation of pure virtual functions */ + + +//////////////////////////////////////////////////////////////////////////////////////////////////// +//////////////////// QCPAbstractPlottable1D +//////////////////////////////////////////////////////////////////////////////////////////////////// + +/*! \class QCPAbstractPlottable1D + \brief A template base class for plottables with one-dimensional data + + This template class derives from \ref QCPAbstractPlottable and from the abstract interface \ref + QCPPlottableInterface1D. It serves as a base class for all one-dimensional data (i.e. data with + one key dimension), such as \ref QCPGraph and QCPCurve. + + The template parameter \a DataType is the type of the data points of this plottable (e.g. \ref + QCPGraphData or \ref QCPCurveData). The main purpose of this base class is to provide the member + \a mDataContainer (a shared pointer to a \ref QCPDataContainer "QCPDataContainer") and + implement the according virtual methods of the \ref QCPPlottableInterface1D, such that most + subclassed plottables don't need to worry about this anymore. + + Further, it provides a convenience method for retrieving selected/unselected data segments via + \ref getDataSegments. This is useful when subclasses implement their \ref draw method and need to + draw selected segments with a different pen/brush than unselected segments (also see \ref + QCPSelectionDecorator). + + This class implements basic functionality of \ref QCPAbstractPlottable::selectTest and \ref + QCPPlottableInterface1D::selectTestRect, assuming point-like data points, based on the 1D data + interface. In spite of that, most plottable subclasses will want to reimplement those methods + again, to provide a more accurate hit test based on their specific data visualization geometry. +*/ + +/* start documentation of inline functions */ + +/*! \fn QCPPlottableInterface1D *QCPAbstractPlottable1D::interface1D() + + Returns a \ref QCPPlottableInterface1D pointer to this plottable, providing access to its 1D + interface. + + \seebaseclassmethod +*/ + +/* end documentation of inline functions */ + +/*! + Forwards \a keyAxis and \a valueAxis to the \ref QCPAbstractPlottable::QCPAbstractPlottable + "QCPAbstractPlottable" constructor and allocates the \a mDataContainer. +*/ +template +QCPAbstractPlottable1D::QCPAbstractPlottable1D(QCPAxis *keyAxis, QCPAxis *valueAxis) : + QCPAbstractPlottable(keyAxis, valueAxis), + mDataContainer(new QCPDataContainer) +{ +} + +template +QCPAbstractPlottable1D::~QCPAbstractPlottable1D() +{ +} + +/*! + \copydoc QCPPlottableInterface1D::dataCount +*/ +template +int QCPAbstractPlottable1D::dataCount() const +{ + return mDataContainer->size(); +} + +/*! + \copydoc QCPPlottableInterface1D::dataMainKey +*/ +template +double QCPAbstractPlottable1D::dataMainKey(int index) const +{ + if (index >= 0 && index < mDataContainer->size()) + { + return (mDataContainer->constBegin()+index)->mainKey(); + } else + { + qDebug() << Q_FUNC_INFO << "Index out of bounds" << index; + return 0; + } +} + +/*! + \copydoc QCPPlottableInterface1D::dataSortKey +*/ +template +double QCPAbstractPlottable1D::dataSortKey(int index) const +{ + if (index >= 0 && index < mDataContainer->size()) + { + return (mDataContainer->constBegin()+index)->sortKey(); + } else + { + qDebug() << Q_FUNC_INFO << "Index out of bounds" << index; + return 0; + } +} + +/*! + \copydoc QCPPlottableInterface1D::dataMainValue +*/ +template +double QCPAbstractPlottable1D::dataMainValue(int index) const +{ + if (index >= 0 && index < mDataContainer->size()) + { + return (mDataContainer->constBegin()+index)->mainValue(); + } else + { + qDebug() << Q_FUNC_INFO << "Index out of bounds" << index; + return 0; + } +} + +/*! + \copydoc QCPPlottableInterface1D::dataValueRange +*/ +template +QCPRange QCPAbstractPlottable1D::dataValueRange(int index) const +{ + if (index >= 0 && index < mDataContainer->size()) + { + return (mDataContainer->constBegin()+index)->valueRange(); + } else + { + qDebug() << Q_FUNC_INFO << "Index out of bounds" << index; + return QCPRange(0, 0); + } +} + +/*! + \copydoc QCPPlottableInterface1D::dataPixelPosition +*/ +template +QPointF QCPAbstractPlottable1D::dataPixelPosition(int index) const +{ + if (index >= 0 && index < mDataContainer->size()) + { + const typename QCPDataContainer::const_iterator it = mDataContainer->constBegin()+index; + return coordsToPixels(it->mainKey(), it->mainValue()); + } else + { + qDebug() << Q_FUNC_INFO << "Index out of bounds" << index; + return QPointF(); + } +} + +/*! + \copydoc QCPPlottableInterface1D::sortKeyIsMainKey +*/ +template +bool QCPAbstractPlottable1D::sortKeyIsMainKey() const +{ + return DataType::sortKeyIsMainKey(); +} + +/*! + Implements a rect-selection algorithm assuming the data (accessed via the 1D data interface) is + point-like. Most subclasses will want to reimplement this method again, to provide a more + accurate hit test based on the true data visualization geometry. + + \seebaseclassmethod +*/ +template +QCPDataSelection QCPAbstractPlottable1D::selectTestRect(const QRectF &rect, bool onlySelectable) const +{ + QCPDataSelection result; + if ((onlySelectable && mSelectable == QCP::stNone) || mDataContainer->isEmpty()) + return result; + if (!mKeyAxis || !mValueAxis) + return result; + + // convert rect given in pixels to ranges given in plot coordinates: + double key1, value1, key2, value2; + pixelsToCoords(rect.topLeft(), key1, value1); + pixelsToCoords(rect.bottomRight(), key2, value2); + QCPRange keyRange(key1, key2); // QCPRange normalizes internally so we don't have to care about whether key1 < key2 + QCPRange valueRange(value1, value2); + typename QCPDataContainer::const_iterator begin = mDataContainer->constBegin(); + typename QCPDataContainer::const_iterator end = mDataContainer->constEnd(); + if (DataType::sortKeyIsMainKey()) // we can assume that data is sorted by main key, so can reduce the searched key interval: + { + begin = mDataContainer->findBegin(keyRange.lower, false); + end = mDataContainer->findEnd(keyRange.upper, false); + } + if (begin == end) + return result; + + int currentSegmentBegin = -1; // -1 means we're currently not in a segment that's contained in rect + for (typename QCPDataContainer::const_iterator it=begin; it!=end; ++it) + { + if (currentSegmentBegin == -1) + { + if (valueRange.contains(it->mainValue()) && keyRange.contains(it->mainKey())) // start segment + currentSegmentBegin = it-mDataContainer->constBegin(); + } else if (!valueRange.contains(it->mainValue()) || !keyRange.contains(it->mainKey())) // segment just ended + { + result.addDataRange(QCPDataRange(currentSegmentBegin, it-mDataContainer->constBegin()), false); + currentSegmentBegin = -1; + } + } + // process potential last segment: + if (currentSegmentBegin != -1) + result.addDataRange(QCPDataRange(currentSegmentBegin, end-mDataContainer->constBegin()), false); + + result.simplify(); + return result; +} + +/*! + \copydoc QCPPlottableInterface1D::findBegin +*/ +template +int QCPAbstractPlottable1D::findBegin(double sortKey, bool expandedRange) const +{ + return mDataContainer->findBegin(sortKey, expandedRange)-mDataContainer->constBegin(); +} + +/*! + \copydoc QCPPlottableInterface1D::findEnd +*/ +template +int QCPAbstractPlottable1D::findEnd(double sortKey, bool expandedRange) const +{ + return mDataContainer->findEnd(sortKey, expandedRange)-mDataContainer->constBegin(); +} + +/*! + Implements a point-selection algorithm assuming the data (accessed via the 1D data interface) is + point-like. Most subclasses will want to reimplement this method again, to provide a more + accurate hit test based on the true data visualization geometry. + + If \a details is not 0, it will be set to a \ref QCPDataSelection, describing the closest data point + to \a pos. + + \seebaseclassmethod +*/ +template +double QCPAbstractPlottable1D::selectTest(const QPointF &pos, bool onlySelectable, QVariant *details) const +{ + if ((onlySelectable && mSelectable == QCP::stNone) || mDataContainer->isEmpty()) + return -1; + if (!mKeyAxis || !mValueAxis) + return -1; + + QCPDataSelection selectionResult; + double minDistSqr = (std::numeric_limits::max)(); + int minDistIndex = mDataContainer->size(); + + typename QCPDataContainer::const_iterator begin = mDataContainer->constBegin(); + typename QCPDataContainer::const_iterator end = mDataContainer->constEnd(); + if (DataType::sortKeyIsMainKey()) // we can assume that data is sorted by main key, so can reduce the searched key interval: + { + // determine which key range comes into question, taking selection tolerance around pos into account: + double posKeyMin, posKeyMax, dummy; + pixelsToCoords(pos-QPointF(mParentPlot->selectionTolerance(), mParentPlot->selectionTolerance()), posKeyMin, dummy); + pixelsToCoords(pos+QPointF(mParentPlot->selectionTolerance(), mParentPlot->selectionTolerance()), posKeyMax, dummy); + if (posKeyMin > posKeyMax) + qSwap(posKeyMin, posKeyMax); + begin = mDataContainer->findBegin(posKeyMin, true); + end = mDataContainer->findEnd(posKeyMax, true); + } + if (begin == end) + return -1; + QCPRange keyRange(mKeyAxis->range()); + QCPRange valueRange(mValueAxis->range()); + for (typename QCPDataContainer::const_iterator it=begin; it!=end; ++it) + { + const double mainKey = it->mainKey(); + const double mainValue = it->mainValue(); + if (keyRange.contains(mainKey) && valueRange.contains(mainValue)) // make sure data point is inside visible range, for speedup in cases where sort key isn't main key and we iterate over all points + { + const double currentDistSqr = QCPVector2D(coordsToPixels(mainKey, mainValue)-pos).lengthSquared(); + if (currentDistSqr < minDistSqr) + { + minDistSqr = currentDistSqr; + minDistIndex = it-mDataContainer->constBegin(); + } + } + } + if (minDistIndex != mDataContainer->size()) + selectionResult.addDataRange(QCPDataRange(minDistIndex, minDistIndex+1), false); + + selectionResult.simplify(); + if (details) + details->setValue(selectionResult); + return qSqrt(minDistSqr); +} + +/*! + Splits all data into selected and unselected segments and outputs them via \a selectedSegments + and \a unselectedSegments, respectively. + + This is useful when subclasses implement their \ref draw method and need to draw selected + segments with a different pen/brush than unselected segments (also see \ref + QCPSelectionDecorator). + + \see setSelection +*/ +template +void QCPAbstractPlottable1D::getDataSegments(QList &selectedSegments, QList &unselectedSegments) const +{ + selectedSegments.clear(); + unselectedSegments.clear(); + if (mSelectable == QCP::stWhole) // stWhole selection type draws the entire plottable with selected style if mSelection isn't empty + { + if (selected()) + selectedSegments << QCPDataRange(0, dataCount()); + else + unselectedSegments << QCPDataRange(0, dataCount()); + } else + { + QCPDataSelection sel(selection()); + sel.simplify(); + selectedSegments = sel.dataRanges(); + unselectedSegments = sel.inverse(QCPDataRange(0, dataCount())).dataRanges(); + } +} + +/*! + A helper method which draws a line with the passed \a painter, according to the pixel data in \a + lineData. NaN points create gaps in the line, as expected from QCustomPlot's plottables (this is + the main difference to QPainter's regular drawPolyline, which handles NaNs by lagging or + crashing). + + Further it uses a faster line drawing technique based on \ref QCPPainter::drawLine rather than \c + QPainter::drawPolyline if the configured \ref QCustomPlot::setPlottingHints() and \a painter + style allows. +*/ +template +void QCPAbstractPlottable1D::drawPolyline(QCPPainter *painter, const QVector &lineData) const +{ + // if drawing solid line and not in PDF, use much faster line drawing instead of polyline: + if (mParentPlot->plottingHints().testFlag(QCP::phFastPolylines) && + painter->pen().style() == Qt::SolidLine && + !painter->modes().testFlag(QCPPainter::pmVectorized) && + !painter->modes().testFlag(QCPPainter::pmNoCaching)) + { + int i = 0; + bool lastIsNan = false; + const int lineDataSize = lineData.size(); + while (i < lineDataSize && (qIsNaN(lineData.at(i).y()) || qIsNaN(lineData.at(i).x()))) // make sure first point is not NaN + ++i; + ++i; // because drawing works in 1 point retrospect + while (i < lineDataSize) + { + if (!qIsNaN(lineData.at(i).y()) && !qIsNaN(lineData.at(i).x())) // NaNs create a gap in the line + { + if (!lastIsNan) + painter->drawLine(lineData.at(i-1), lineData.at(i)); + else + lastIsNan = false; + } else + lastIsNan = true; + ++i; + } + } else + { + int segmentStart = 0; + int i = 0; + const int lineDataSize = lineData.size(); + while (i < lineDataSize) + { + if (qIsNaN(lineData.at(i).y()) || qIsNaN(lineData.at(i).x()) || qIsInf(lineData.at(i).y())) // NaNs create a gap in the line. Also filter Infs which make drawPolyline block + { + painter->drawPolyline(lineData.constData()+segmentStart, i-segmentStart); // i, because we don't want to include the current NaN point + segmentStart = i+1; + } + ++i; + } + // draw last segment: + painter->drawPolyline(lineData.constData()+segmentStart, lineDataSize-segmentStart); + } +} +/* end of 'src/plottable1d.cpp' */ + + +/* end of 'src/plottable1d.h' */ + + +/* including file 'src/colorgradient.h', size 6243 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPColorGradient +{ + Q_GADGET +public: + /*! + Defines the color spaces in which color interpolation between gradient stops can be performed. + + \see setColorInterpolation + */ + enum ColorInterpolation { ciRGB ///< Color channels red, green and blue are linearly interpolated + ,ciHSV ///< Color channels hue, saturation and value are linearly interpolated (The hue is interpolated over the shortest angle distance) + }; + Q_ENUMS(ColorInterpolation) + + /*! + Defines the available presets that can be loaded with \ref loadPreset. See the documentation + there for an image of the presets. + */ + enum GradientPreset { gpGrayscale ///< Continuous lightness from black to white (suited for non-biased data representation) + ,gpHot ///< Continuous lightness from black over firey colors to white (suited for non-biased data representation) + ,gpCold ///< Continuous lightness from black over icey colors to white (suited for non-biased data representation) + ,gpNight ///< Continuous lightness from black over weak blueish colors to white (suited for non-biased data representation) + ,gpCandy ///< Blue over pink to white + ,gpGeography ///< Colors suitable to represent different elevations on geographical maps + ,gpIon ///< Half hue spectrum from black over purple to blue and finally green (creates banding illusion but allows more precise magnitude estimates) + ,gpThermal ///< Colors suitable for thermal imaging, ranging from dark blue over purple to orange, yellow and white + ,gpPolar ///< Colors suitable to emphasize polarity around the center, with blue for negative, black in the middle and red for positive values + ,gpSpectrum ///< An approximation of the visible light spectrum (creates banding illusion but allows more precise magnitude estimates) + ,gpJet ///< Hue variation similar to a spectrum, often used in numerical visualization (creates banding illusion but allows more precise magnitude estimates) + ,gpHues ///< Full hue cycle, with highest and lowest color red (suitable for periodic data, such as angles and phases, see \ref setPeriodic) + }; + Q_ENUMS(GradientPreset) + + QCPColorGradient(); + QCPColorGradient(GradientPreset preset); + bool operator==(const QCPColorGradient &other) const; + bool operator!=(const QCPColorGradient &other) const { return !(*this == other); } + + // getters: + int levelCount() const { return mLevelCount; } + QMap colorStops() const { return mColorStops; } + ColorInterpolation colorInterpolation() const { return mColorInterpolation; } + bool periodic() const { return mPeriodic; } + + // setters: + void setLevelCount(int n); + void setColorStops(const QMap &colorStops); + void setColorStopAt(double position, const QColor &color); + void setColorInterpolation(ColorInterpolation interpolation); + void setPeriodic(bool enabled); + + // non-property methods: + void colorize(const double *data, const QCPRange &range, QRgb *scanLine, int n, int dataIndexFactor=1, bool logarithmic=false); + void colorize(const double *data, const unsigned char *alpha, const QCPRange &range, QRgb *scanLine, int n, int dataIndexFactor=1, bool logarithmic=false); + QRgb color(double position, const QCPRange &range, bool logarithmic=false); + void loadPreset(GradientPreset preset); + void clearColorStops(); + QCPColorGradient inverted() const; + +protected: + // property members: + int mLevelCount; + QMap mColorStops; + ColorInterpolation mColorInterpolation; + bool mPeriodic; + + // non-property members: + QVector mColorBuffer; // have colors premultiplied with alpha (for usage with QImage::Format_ARGB32_Premultiplied) + bool mColorBufferInvalidated; + + // non-virtual methods: + bool stopsUseAlpha() const; + void updateColorBuffer(); +}; +Q_DECLARE_METATYPE(QCPColorGradient::ColorInterpolation) +Q_DECLARE_METATYPE(QCPColorGradient::GradientPreset) + +/* end of 'src/colorgradient.h' */ + + +/* including file 'src/selectiondecorator-bracket.h', size 4442 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPSelectionDecoratorBracket : public QCPSelectionDecorator +{ + Q_GADGET +public: + + /*! + Defines which shape is drawn at the boundaries of selected data ranges. + + Some of the bracket styles further allow specifying a height and/or width, see \ref + setBracketHeight and \ref setBracketWidth. + */ + enum BracketStyle { bsSquareBracket ///< A square bracket is drawn. + ,bsHalfEllipse ///< A half ellipse is drawn. The size of the ellipse is given by the bracket width/height properties. + ,bsEllipse ///< An ellipse is drawn. The size of the ellipse is given by the bracket width/height properties. + ,bsPlus ///< A plus is drawn. + ,bsUserStyle ///< Start custom bracket styles at this index when subclassing and reimplementing \ref drawBracket. + }; + Q_ENUMS(BracketStyle) + + QCPSelectionDecoratorBracket(); + virtual ~QCPSelectionDecoratorBracket(); + + // getters: + QPen bracketPen() const { return mBracketPen; } + QBrush bracketBrush() const { return mBracketBrush; } + int bracketWidth() const { return mBracketWidth; } + int bracketHeight() const { return mBracketHeight; } + BracketStyle bracketStyle() const { return mBracketStyle; } + bool tangentToData() const { return mTangentToData; } + int tangentAverage() const { return mTangentAverage; } + + // setters: + void setBracketPen(const QPen &pen); + void setBracketBrush(const QBrush &brush); + void setBracketWidth(int width); + void setBracketHeight(int height); + void setBracketStyle(BracketStyle style); + void setTangentToData(bool enabled); + void setTangentAverage(int pointCount); + + // introduced virtual methods: + virtual void drawBracket(QCPPainter *painter, int direction) const; + + // virtual methods: + virtual void drawDecoration(QCPPainter *painter, QCPDataSelection selection) Q_DECL_OVERRIDE; + +protected: + // property members: + QPen mBracketPen; + QBrush mBracketBrush; + int mBracketWidth; + int mBracketHeight; + BracketStyle mBracketStyle; + bool mTangentToData; + int mTangentAverage; + + // non-virtual methods: + double getTangentAngle(const QCPPlottableInterface1D *interface1d, int dataIndex, int direction) const; + QPointF getPixelCoordinates(const QCPPlottableInterface1D *interface1d, int dataIndex) const; + +}; +Q_DECLARE_METATYPE(QCPSelectionDecoratorBracket::BracketStyle) + +/* end of 'src/selectiondecorator-bracket.h' */ + + +/* including file 'src/layoutelements/layoutelement-axisrect.h', size 7507 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPAxisRect : public QCPLayoutElement +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QPixmap background READ background WRITE setBackground) + Q_PROPERTY(bool backgroundScaled READ backgroundScaled WRITE setBackgroundScaled) + Q_PROPERTY(Qt::AspectRatioMode backgroundScaledMode READ backgroundScaledMode WRITE setBackgroundScaledMode) + Q_PROPERTY(Qt::Orientations rangeDrag READ rangeDrag WRITE setRangeDrag) + Q_PROPERTY(Qt::Orientations rangeZoom READ rangeZoom WRITE setRangeZoom) + /// \endcond +public: + explicit QCPAxisRect(QCustomPlot *parentPlot, bool setupDefaultAxes=true); + virtual ~QCPAxisRect(); + + // getters: + QPixmap background() const { return mBackgroundPixmap; } + QBrush backgroundBrush() const { return mBackgroundBrush; } + bool backgroundScaled() const { return mBackgroundScaled; } + Qt::AspectRatioMode backgroundScaledMode() const { return mBackgroundScaledMode; } + Qt::Orientations rangeDrag() const { return mRangeDrag; } + Qt::Orientations rangeZoom() const { return mRangeZoom; } + QCPAxis *rangeDragAxis(Qt::Orientation orientation); + QCPAxis *rangeZoomAxis(Qt::Orientation orientation); + QList rangeDragAxes(Qt::Orientation orientation); + QList rangeZoomAxes(Qt::Orientation orientation); + double rangeZoomFactor(Qt::Orientation orientation); + + // setters: + void setBackground(const QPixmap &pm); + void setBackground(const QPixmap &pm, bool scaled, Qt::AspectRatioMode mode=Qt::KeepAspectRatioByExpanding); + void setBackground(const QBrush &brush); + void setBackgroundScaled(bool scaled); + void setBackgroundScaledMode(Qt::AspectRatioMode mode); + void setRangeDrag(Qt::Orientations orientations); + void setRangeZoom(Qt::Orientations orientations); + void setRangeDragAxes(QCPAxis *horizontal, QCPAxis *vertical); + void setRangeDragAxes(QList axes); + void setRangeDragAxes(QList horizontal, QList vertical); + void setRangeZoomAxes(QCPAxis *horizontal, QCPAxis *vertical); + void setRangeZoomAxes(QList axes); + void setRangeZoomAxes(QList horizontal, QList vertical); + void setRangeZoomFactor(double horizontalFactor, double verticalFactor); + void setRangeZoomFactor(double factor); + + // non-property methods: + int axisCount(QCPAxis::AxisType type) const; + QCPAxis *axis(QCPAxis::AxisType type, int index=0) const; + QList axes(QCPAxis::AxisTypes types) const; + QList axes() const; + QCPAxis *addAxis(QCPAxis::AxisType type, QCPAxis *axis=0); + QList addAxes(QCPAxis::AxisTypes types); + bool removeAxis(QCPAxis *axis); + QCPLayoutInset *insetLayout() const { return mInsetLayout; } + + void zoom(const QRectF &pixelRect); + void zoom(const QRectF &pixelRect, const QList &affectedAxes); + void setupFullAxesBox(bool connectRanges=false); + QList plottables() const; + QList graphs() const; + QList items() const; + + // read-only interface imitating a QRect: + int left() const { return mRect.left(); } + int right() const { return mRect.right(); } + int top() const { return mRect.top(); } + int bottom() const { return mRect.bottom(); } + int width() const { return mRect.width(); } + int height() const { return mRect.height(); } + QSize size() const { return mRect.size(); } + QPoint topLeft() const { return mRect.topLeft(); } + QPoint topRight() const { return mRect.topRight(); } + QPoint bottomLeft() const { return mRect.bottomLeft(); } + QPoint bottomRight() const { return mRect.bottomRight(); } + QPoint center() const { return mRect.center(); } + + // reimplemented virtual methods: + virtual void update(UpdatePhase phase) Q_DECL_OVERRIDE; + virtual QList elements(bool recursive) const Q_DECL_OVERRIDE; + +protected: + // property members: + QBrush mBackgroundBrush; + QPixmap mBackgroundPixmap; + QPixmap mScaledBackgroundPixmap; + bool mBackgroundScaled; + Qt::AspectRatioMode mBackgroundScaledMode; + QCPLayoutInset *mInsetLayout; + Qt::Orientations mRangeDrag, mRangeZoom; + QList > mRangeDragHorzAxis, mRangeDragVertAxis; + QList > mRangeZoomHorzAxis, mRangeZoomVertAxis; + double mRangeZoomFactorHorz, mRangeZoomFactorVert; + + // non-property members: + QList mDragStartHorzRange, mDragStartVertRange; + QCP::AntialiasedElements mAADragBackup, mNotAADragBackup; + bool mDragging; + QHash > mAxes; + + // reimplemented virtual methods: + virtual void applyDefaultAntialiasingHint(QCPPainter *painter) const Q_DECL_OVERRIDE; + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE; + virtual int calculateAutoMargin(QCP::MarginSide side) Q_DECL_OVERRIDE; + virtual void layoutChanged() Q_DECL_OVERRIDE; + // events: + virtual void mousePressEvent(QMouseEvent *event, const QVariant &details) Q_DECL_OVERRIDE; + virtual void mouseMoveEvent(QMouseEvent *event, const QPointF &startPos) Q_DECL_OVERRIDE; + virtual void mouseReleaseEvent(QMouseEvent *event, const QPointF &startPos) Q_DECL_OVERRIDE; + virtual void wheelEvent(QWheelEvent *event) Q_DECL_OVERRIDE; + + // non-property methods: + void drawBackground(QCPPainter *painter); + void updateAxesOffset(QCPAxis::AxisType type); + +private: + Q_DISABLE_COPY(QCPAxisRect) + + friend class QCustomPlot; +}; + + +/* end of 'src/layoutelements/layoutelement-axisrect.h' */ + + +/* including file 'src/layoutelements/layoutelement-legend.h', size 10397 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPAbstractLegendItem : public QCPLayoutElement +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QCPLegend* parentLegend READ parentLegend) + Q_PROPERTY(QFont font READ font WRITE setFont) + Q_PROPERTY(QColor textColor READ textColor WRITE setTextColor) + Q_PROPERTY(QFont selectedFont READ selectedFont WRITE setSelectedFont) + Q_PROPERTY(QColor selectedTextColor READ selectedTextColor WRITE setSelectedTextColor) + Q_PROPERTY(bool selectable READ selectable WRITE setSelectable NOTIFY selectionChanged) + Q_PROPERTY(bool selected READ selected WRITE setSelected NOTIFY selectableChanged) + /// \endcond +public: + explicit QCPAbstractLegendItem(QCPLegend *parent); + + // getters: + QCPLegend *parentLegend() const { return mParentLegend; } + QFont font() const { return mFont; } + QColor textColor() const { return mTextColor; } + QFont selectedFont() const { return mSelectedFont; } + QColor selectedTextColor() const { return mSelectedTextColor; } + bool selectable() const { return mSelectable; } + bool selected() const { return mSelected; } + + // setters: + void setFont(const QFont &font); + void setTextColor(const QColor &color); + void setSelectedFont(const QFont &font); + void setSelectedTextColor(const QColor &color); + Q_SLOT void setSelectable(bool selectable); + Q_SLOT void setSelected(bool selected); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE; + +signals: + void selectionChanged(bool selected); + void selectableChanged(bool selectable); + +protected: + // property members: + QCPLegend *mParentLegend; + QFont mFont; + QColor mTextColor; + QFont mSelectedFont; + QColor mSelectedTextColor; + bool mSelectable, mSelected; + + // reimplemented virtual methods: + virtual QCP::Interaction selectionCategory() const Q_DECL_OVERRIDE; + virtual void applyDefaultAntialiasingHint(QCPPainter *painter) const Q_DECL_OVERRIDE; + virtual QRect clipRect() const Q_DECL_OVERRIDE; + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE = 0; + // events: + virtual void selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) Q_DECL_OVERRIDE; + virtual void deselectEvent(bool *selectionStateChanged) Q_DECL_OVERRIDE; + +private: + Q_DISABLE_COPY(QCPAbstractLegendItem) + + friend class QCPLegend; +}; + + +class QCP_LIB_DECL QCPPlottableLegendItem : public QCPAbstractLegendItem +{ + Q_OBJECT +public: + QCPPlottableLegendItem(QCPLegend *parent, QCPAbstractPlottable *plottable); + + // getters: + QCPAbstractPlottable *plottable() { return mPlottable; } + +protected: + // property members: + QCPAbstractPlottable *mPlottable; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE; + virtual QSize minimumOuterSizeHint() const Q_DECL_OVERRIDE; + + // non-virtual methods: + QPen getIconBorderPen() const; + QColor getTextColor() const; + QFont getFont() const; +}; + + +class QCP_LIB_DECL QCPLegend : public QCPLayoutGrid +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QPen borderPen READ borderPen WRITE setBorderPen) + Q_PROPERTY(QBrush brush READ brush WRITE setBrush) + Q_PROPERTY(QFont font READ font WRITE setFont) + Q_PROPERTY(QColor textColor READ textColor WRITE setTextColor) + Q_PROPERTY(QSize iconSize READ iconSize WRITE setIconSize) + Q_PROPERTY(int iconTextPadding READ iconTextPadding WRITE setIconTextPadding) + Q_PROPERTY(QPen iconBorderPen READ iconBorderPen WRITE setIconBorderPen) + Q_PROPERTY(SelectableParts selectableParts READ selectableParts WRITE setSelectableParts NOTIFY selectionChanged) + Q_PROPERTY(SelectableParts selectedParts READ selectedParts WRITE setSelectedParts NOTIFY selectableChanged) + Q_PROPERTY(QPen selectedBorderPen READ selectedBorderPen WRITE setSelectedBorderPen) + Q_PROPERTY(QPen selectedIconBorderPen READ selectedIconBorderPen WRITE setSelectedIconBorderPen) + Q_PROPERTY(QBrush selectedBrush READ selectedBrush WRITE setSelectedBrush) + Q_PROPERTY(QFont selectedFont READ selectedFont WRITE setSelectedFont) + Q_PROPERTY(QColor selectedTextColor READ selectedTextColor WRITE setSelectedTextColor) + /// \endcond +public: + /*! + Defines the selectable parts of a legend + + \see setSelectedParts, setSelectableParts + */ + enum SelectablePart { spNone = 0x000 ///< 0x000 None + ,spLegendBox = 0x001 ///< 0x001 The legend box (frame) + ,spItems = 0x002 ///< 0x002 Legend items individually (see \ref selectedItems) + }; + Q_ENUMS(SelectablePart) + Q_FLAGS(SelectableParts) + Q_DECLARE_FLAGS(SelectableParts, SelectablePart) + + explicit QCPLegend(); + virtual ~QCPLegend(); + + // getters: + QPen borderPen() const { return mBorderPen; } + QBrush brush() const { return mBrush; } + QFont font() const { return mFont; } + QColor textColor() const { return mTextColor; } + QSize iconSize() const { return mIconSize; } + int iconTextPadding() const { return mIconTextPadding; } + QPen iconBorderPen() const { return mIconBorderPen; } + SelectableParts selectableParts() const { return mSelectableParts; } + SelectableParts selectedParts() const; + QPen selectedBorderPen() const { return mSelectedBorderPen; } + QPen selectedIconBorderPen() const { return mSelectedIconBorderPen; } + QBrush selectedBrush() const { return mSelectedBrush; } + QFont selectedFont() const { return mSelectedFont; } + QColor selectedTextColor() const { return mSelectedTextColor; } + + // setters: + void setBorderPen(const QPen &pen); + void setBrush(const QBrush &brush); + void setFont(const QFont &font); + void setTextColor(const QColor &color); + void setIconSize(const QSize &size); + void setIconSize(int width, int height); + void setIconTextPadding(int padding); + void setIconBorderPen(const QPen &pen); + Q_SLOT void setSelectableParts(const SelectableParts &selectableParts); + Q_SLOT void setSelectedParts(const SelectableParts &selectedParts); + void setSelectedBorderPen(const QPen &pen); + void setSelectedIconBorderPen(const QPen &pen); + void setSelectedBrush(const QBrush &brush); + void setSelectedFont(const QFont &font); + void setSelectedTextColor(const QColor &color); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE; + + // non-virtual methods: + QCPAbstractLegendItem *item(int index) const; + QCPPlottableLegendItem *itemWithPlottable(const QCPAbstractPlottable *plottable) const; + int itemCount() const; + bool hasItem(QCPAbstractLegendItem *item) const; + bool hasItemWithPlottable(const QCPAbstractPlottable *plottable) const; + bool addItem(QCPAbstractLegendItem *item); + bool removeItem(int index); + bool removeItem(QCPAbstractLegendItem *item); + void clearItems(); + QList selectedItems() const; + +signals: + void selectionChanged(QCPLegend::SelectableParts parts); + void selectableChanged(QCPLegend::SelectableParts parts); + +protected: + // property members: + QPen mBorderPen, mIconBorderPen; + QBrush mBrush; + QFont mFont; + QColor mTextColor; + QSize mIconSize; + int mIconTextPadding; + SelectableParts mSelectedParts, mSelectableParts; + QPen mSelectedBorderPen, mSelectedIconBorderPen; + QBrush mSelectedBrush; + QFont mSelectedFont; + QColor mSelectedTextColor; + + // reimplemented virtual methods: + virtual void parentPlotInitialized(QCustomPlot *parentPlot) Q_DECL_OVERRIDE; + virtual QCP::Interaction selectionCategory() const Q_DECL_OVERRIDE; + virtual void applyDefaultAntialiasingHint(QCPPainter *painter) const Q_DECL_OVERRIDE; + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE; + // events: + virtual void selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) Q_DECL_OVERRIDE; + virtual void deselectEvent(bool *selectionStateChanged) Q_DECL_OVERRIDE; + + // non-virtual methods: + QPen getBorderPen() const; + QBrush getBrush() const; + +private: + Q_DISABLE_COPY(QCPLegend) + + friend class QCustomPlot; + friend class QCPAbstractLegendItem; +}; +Q_DECLARE_OPERATORS_FOR_FLAGS(QCPLegend::SelectableParts) +Q_DECLARE_METATYPE(QCPLegend::SelectablePart) + +/* end of 'src/layoutelements/layoutelement-legend.h' */ + + +/* including file 'src/layoutelements/layoutelement-textelement.h', size 5353 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPTextElement : public QCPLayoutElement +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QString text READ text WRITE setText) + Q_PROPERTY(QFont font READ font WRITE setFont) + Q_PROPERTY(QColor textColor READ textColor WRITE setTextColor) + Q_PROPERTY(QFont selectedFont READ selectedFont WRITE setSelectedFont) + Q_PROPERTY(QColor selectedTextColor READ selectedTextColor WRITE setSelectedTextColor) + Q_PROPERTY(bool selectable READ selectable WRITE setSelectable NOTIFY selectableChanged) + Q_PROPERTY(bool selected READ selected WRITE setSelected NOTIFY selectionChanged) + /// \endcond +public: + explicit QCPTextElement(QCustomPlot *parentPlot); + QCPTextElement(QCustomPlot *parentPlot, const QString &text); + QCPTextElement(QCustomPlot *parentPlot, const QString &text, double pointSize); + QCPTextElement(QCustomPlot *parentPlot, const QString &text, const QString &fontFamily, double pointSize); + QCPTextElement(QCustomPlot *parentPlot, const QString &text, const QFont &font); + + // getters: + QString text() const { return mText; } + int textFlags() const { return mTextFlags; } + QFont font() const { return mFont; } + QColor textColor() const { return mTextColor; } + QFont selectedFont() const { return mSelectedFont; } + QColor selectedTextColor() const { return mSelectedTextColor; } + bool selectable() const { return mSelectable; } + bool selected() const { return mSelected; } + + // setters: + void setText(const QString &text); + void setTextFlags(int flags); + void setFont(const QFont &font); + void setTextColor(const QColor &color); + void setSelectedFont(const QFont &font); + void setSelectedTextColor(const QColor &color); + Q_SLOT void setSelectable(bool selectable); + Q_SLOT void setSelected(bool selected); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE; + virtual void mousePressEvent(QMouseEvent *event, const QVariant &details) Q_DECL_OVERRIDE; + virtual void mouseReleaseEvent(QMouseEvent *event, const QPointF &startPos) Q_DECL_OVERRIDE; + virtual void mouseDoubleClickEvent(QMouseEvent *event, const QVariant &details) Q_DECL_OVERRIDE; + +signals: + void selectionChanged(bool selected); + void selectableChanged(bool selectable); + void clicked(QMouseEvent *event); + void doubleClicked(QMouseEvent *event); + +protected: + // property members: + QString mText; + int mTextFlags; + QFont mFont; + QColor mTextColor; + QFont mSelectedFont; + QColor mSelectedTextColor; + QRect mTextBoundingRect; + bool mSelectable, mSelected; + + // reimplemented virtual methods: + virtual void applyDefaultAntialiasingHint(QCPPainter *painter) const Q_DECL_OVERRIDE; + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE; + virtual QSize minimumOuterSizeHint() const Q_DECL_OVERRIDE; + virtual QSize maximumOuterSizeHint() const Q_DECL_OVERRIDE; + // events: + virtual void selectEvent(QMouseEvent *event, bool additive, const QVariant &details, bool *selectionStateChanged) Q_DECL_OVERRIDE; + virtual void deselectEvent(bool *selectionStateChanged) Q_DECL_OVERRIDE; + + // non-virtual methods: + QFont mainFont() const; + QColor mainTextColor() const; + +private: + Q_DISABLE_COPY(QCPTextElement) +}; + + + +/* end of 'src/layoutelements/layoutelement-textelement.h' */ + + +/* including file 'src/layoutelements/layoutelement-colorscale.h', size 5923 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + + +class QCPColorScaleAxisRectPrivate : public QCPAxisRect +{ + Q_OBJECT +public: + explicit QCPColorScaleAxisRectPrivate(QCPColorScale *parentColorScale); +protected: + QCPColorScale *mParentColorScale; + QImage mGradientImage; + bool mGradientImageInvalidated; + // re-using some methods of QCPAxisRect to make them available to friend class QCPColorScale + using QCPAxisRect::calculateAutoMargin; + using QCPAxisRect::mousePressEvent; + using QCPAxisRect::mouseMoveEvent; + using QCPAxisRect::mouseReleaseEvent; + using QCPAxisRect::wheelEvent; + using QCPAxisRect::update; + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE; + void updateGradientImage(); + Q_SLOT void axisSelectionChanged(QCPAxis::SelectableParts selectedParts); + Q_SLOT void axisSelectableChanged(QCPAxis::SelectableParts selectableParts); + friend class QCPColorScale; +}; + + +class QCP_LIB_DECL QCPColorScale : public QCPLayoutElement +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QCPAxis::AxisType type READ type WRITE setType) + Q_PROPERTY(QCPRange dataRange READ dataRange WRITE setDataRange NOTIFY dataRangeChanged) + Q_PROPERTY(QCPAxis::ScaleType dataScaleType READ dataScaleType WRITE setDataScaleType NOTIFY dataScaleTypeChanged) + Q_PROPERTY(QCPColorGradient gradient READ gradient WRITE setGradient NOTIFY gradientChanged) + Q_PROPERTY(QString label READ label WRITE setLabel) + Q_PROPERTY(int barWidth READ barWidth WRITE setBarWidth) + Q_PROPERTY(bool rangeDrag READ rangeDrag WRITE setRangeDrag) + Q_PROPERTY(bool rangeZoom READ rangeZoom WRITE setRangeZoom) + /// \endcond +public: + explicit QCPColorScale(QCustomPlot *parentPlot); + virtual ~QCPColorScale(); + + // getters: + QCPAxis *axis() const { return mColorAxis.data(); } + QCPAxis::AxisType type() const { return mType; } + QCPRange dataRange() const { return mDataRange; } + QCPAxis::ScaleType dataScaleType() const { return mDataScaleType; } + QCPColorGradient gradient() const { return mGradient; } + QString label() const; + int barWidth () const { return mBarWidth; } + bool rangeDrag() const; + bool rangeZoom() const; + + // setters: + void setType(QCPAxis::AxisType type); + Q_SLOT void setDataRange(const QCPRange &dataRange); + Q_SLOT void setDataScaleType(QCPAxis::ScaleType scaleType); + Q_SLOT void setGradient(const QCPColorGradient &gradient); + void setLabel(const QString &str); + void setBarWidth(int width); + void setRangeDrag(bool enabled); + void setRangeZoom(bool enabled); + + // non-property methods: + QList colorMaps() const; + void rescaleDataRange(bool onlyVisibleMaps); + + // reimplemented virtual methods: + virtual void update(UpdatePhase phase) Q_DECL_OVERRIDE; + +signals: + void dataRangeChanged(const QCPRange &newRange); + void dataScaleTypeChanged(QCPAxis::ScaleType scaleType); + void gradientChanged(const QCPColorGradient &newGradient); + +protected: + // property members: + QCPAxis::AxisType mType; + QCPRange mDataRange; + QCPAxis::ScaleType mDataScaleType; + QCPColorGradient mGradient; + int mBarWidth; + + // non-property members: + QPointer mAxisRect; + QPointer mColorAxis; + + // reimplemented virtual methods: + virtual void applyDefaultAntialiasingHint(QCPPainter *painter) const Q_DECL_OVERRIDE; + // events: + virtual void mousePressEvent(QMouseEvent *event, const QVariant &details) Q_DECL_OVERRIDE; + virtual void mouseMoveEvent(QMouseEvent *event, const QPointF &startPos) Q_DECL_OVERRIDE; + virtual void mouseReleaseEvent(QMouseEvent *event, const QPointF &startPos) Q_DECL_OVERRIDE; + virtual void wheelEvent(QWheelEvent *event) Q_DECL_OVERRIDE; + +private: + Q_DISABLE_COPY(QCPColorScale) + + friend class QCPColorScaleAxisRectPrivate; +}; + + +/* end of 'src/layoutelements/layoutelement-colorscale.h' */ + + +/* including file 'src/plottables/plottable-graph.h', size 9294 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPGraphData +{ +public: + QCPGraphData(); + QCPGraphData(double key, double value); + + inline double sortKey() const { return key; } + inline static QCPGraphData fromSortKey(double sortKey) { return QCPGraphData(sortKey, 0); } + inline static bool sortKeyIsMainKey() { return true; } + + inline double mainKey() const { return key; } + inline double mainValue() const { return value; } + + inline QCPRange valueRange() const { return QCPRange(value, value); } + + double key, value; +}; +Q_DECLARE_TYPEINFO(QCPGraphData, Q_PRIMITIVE_TYPE); + + +/*! \typedef QCPGraphDataContainer + + Container for storing \ref QCPGraphData points. The data is stored sorted by \a key. + + This template instantiation is the container in which QCPGraph holds its data. For details about + the generic container, see the documentation of the class template \ref QCPDataContainer. + + \see QCPGraphData, QCPGraph::setData +*/ +typedef QCPDataContainer QCPGraphDataContainer; + +class QCP_LIB_DECL QCPGraph : public QCPAbstractPlottable1D +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(LineStyle lineStyle READ lineStyle WRITE setLineStyle) + Q_PROPERTY(QCPScatterStyle scatterStyle READ scatterStyle WRITE setScatterStyle) + Q_PROPERTY(int scatterSkip READ scatterSkip WRITE setScatterSkip) + Q_PROPERTY(QCPGraph* channelFillGraph READ channelFillGraph WRITE setChannelFillGraph) + Q_PROPERTY(bool adaptiveSampling READ adaptiveSampling WRITE setAdaptiveSampling) + /// \endcond +public: + /*! + Defines how the graph's line is represented visually in the plot. The line is drawn with the + current pen of the graph (\ref setPen). + \see setLineStyle + */ + enum LineStyle { lsNone ///< data points are not connected with any lines (e.g. data only represented + ///< with symbols according to the scatter style, see \ref setScatterStyle) + ,lsLine ///< data points are connected by a straight line + ,lsStepLeft ///< line is drawn as steps where the step height is the value of the left data point + ,lsStepRight ///< line is drawn as steps where the step height is the value of the right data point + ,lsStepCenter ///< line is drawn as steps where the step is in between two data points + ,lsImpulse ///< each data point is represented by a line parallel to the value axis, which reaches from the data point to the zero-value-line + }; + Q_ENUMS(LineStyle) + + explicit QCPGraph(QCPAxis *keyAxis, QCPAxis *valueAxis); + virtual ~QCPGraph(); + + // getters: + QSharedPointer data() const { return mDataContainer; } + LineStyle lineStyle() const { return mLineStyle; } + QCPScatterStyle scatterStyle() const { return mScatterStyle; } + int scatterSkip() const { return mScatterSkip; } + QCPGraph *channelFillGraph() const { return mChannelFillGraph.data(); } + bool adaptiveSampling() const { return mAdaptiveSampling; } + + // setters: + void setData(QSharedPointer data); + void setData(const QVector &keys, const QVector &values, bool alreadySorted=false); + void setLineStyle(LineStyle ls); + void setScatterStyle(const QCPScatterStyle &style); + void setScatterSkip(int skip); + void setChannelFillGraph(QCPGraph *targetGraph); + void setAdaptiveSampling(bool enabled); + + // non-property methods: + void addData(const QVector &keys, const QVector &values, bool alreadySorted=false); + void addData(double key, double value); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE; + virtual QCPRange getKeyRange(bool &foundRange, QCP::SignDomain inSignDomain=QCP::sdBoth) const Q_DECL_OVERRIDE; + virtual QCPRange getValueRange(bool &foundRange, QCP::SignDomain inSignDomain=QCP::sdBoth, const QCPRange &inKeyRange=QCPRange()) const Q_DECL_OVERRIDE; + +protected: + // property members: + LineStyle mLineStyle; + QCPScatterStyle mScatterStyle; + int mScatterSkip; + QPointer mChannelFillGraph; + bool mAdaptiveSampling; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE; + virtual void drawLegendIcon(QCPPainter *painter, const QRectF &rect) const Q_DECL_OVERRIDE; + + // introduced virtual methods: + virtual void drawFill(QCPPainter *painter, QVector *lines) const; + virtual void drawScatterPlot(QCPPainter *painter, const QVector &scatters, const QCPScatterStyle &style) const; + virtual void drawLinePlot(QCPPainter *painter, const QVector &lines) const; + virtual void drawImpulsePlot(QCPPainter *painter, const QVector &lines) const; + + virtual void getOptimizedLineData(QVector *lineData, const QCPGraphDataContainer::const_iterator &begin, const QCPGraphDataContainer::const_iterator &end) const; + virtual void getOptimizedScatterData(QVector *scatterData, QCPGraphDataContainer::const_iterator begin, QCPGraphDataContainer::const_iterator end) const; + + // non-virtual methods: + void getVisibleDataBounds(QCPGraphDataContainer::const_iterator &begin, QCPGraphDataContainer::const_iterator &end, const QCPDataRange &rangeRestriction) const; + void getLines(QVector *lines, const QCPDataRange &dataRange) const; + void getScatters(QVector *scatters, const QCPDataRange &dataRange) const; + QVector dataToLines(const QVector &data) const; + QVector dataToStepLeftLines(const QVector &data) const; + QVector dataToStepRightLines(const QVector &data) const; + QVector dataToStepCenterLines(const QVector &data) const; + QVector dataToImpulseLines(const QVector &data) const; + QVector getNonNanSegments(const QVector *lineData, Qt::Orientation keyOrientation) const; + QVector > getOverlappingSegments(QVector thisSegments, const QVector *thisData, QVector otherSegments, const QVector *otherData) const; + bool segmentsIntersect(double aLower, double aUpper, double bLower, double bUpper, int &bPrecedence) const; + QPointF getFillBasePoint(QPointF matchingDataPoint) const; + const QPolygonF getFillPolygon(const QVector *lineData, QCPDataRange segment) const; + const QPolygonF getChannelFillPolygon(const QVector *lineData, QCPDataRange thisSegment, const QVector *otherData, QCPDataRange otherSegment) const; + int findIndexBelowX(const QVector *data, double x) const; + int findIndexAboveX(const QVector *data, double x) const; + int findIndexBelowY(const QVector *data, double y) const; + int findIndexAboveY(const QVector *data, double y) const; + double pointDistance(const QPointF &pixelPoint, QCPGraphDataContainer::const_iterator &closestData) const; + + friend class QCustomPlot; + friend class QCPLegend; +}; +Q_DECLARE_METATYPE(QCPGraph::LineStyle) + +/* end of 'src/plottables/plottable-graph.h' */ + + +/* including file 'src/plottables/plottable-curve.h', size 7409 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPCurveData +{ +public: + QCPCurveData(); + QCPCurveData(double t, double key, double value); + + inline double sortKey() const { return t; } + inline static QCPCurveData fromSortKey(double sortKey) { return QCPCurveData(sortKey, 0, 0); } + inline static bool sortKeyIsMainKey() { return false; } + + inline double mainKey() const { return key; } + inline double mainValue() const { return value; } + + inline QCPRange valueRange() const { return QCPRange(value, value); } + + double t, key, value; +}; +Q_DECLARE_TYPEINFO(QCPCurveData, Q_PRIMITIVE_TYPE); + + +/*! \typedef QCPCurveDataContainer + + Container for storing \ref QCPCurveData points. The data is stored sorted by \a t, so the \a + sortKey() (returning \a t) is different from \a mainKey() (returning \a key). + + This template instantiation is the container in which QCPCurve holds its data. For details about + the generic container, see the documentation of the class template \ref QCPDataContainer. + + \see QCPCurveData, QCPCurve::setData +*/ +typedef QCPDataContainer QCPCurveDataContainer; + +class QCP_LIB_DECL QCPCurve : public QCPAbstractPlottable1D +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QCPScatterStyle scatterStyle READ scatterStyle WRITE setScatterStyle) + Q_PROPERTY(int scatterSkip READ scatterSkip WRITE setScatterSkip) + Q_PROPERTY(LineStyle lineStyle READ lineStyle WRITE setLineStyle) + /// \endcond +public: + /*! + Defines how the curve's line is represented visually in the plot. The line is drawn with the + current pen of the curve (\ref setPen). + \see setLineStyle + */ + enum LineStyle { lsNone ///< No line is drawn between data points (e.g. only scatters) + ,lsLine ///< Data points are connected with a straight line + }; + Q_ENUMS(LineStyle) + + explicit QCPCurve(QCPAxis *keyAxis, QCPAxis *valueAxis); + virtual ~QCPCurve(); + + // getters: + QSharedPointer data() const { return mDataContainer; } + QCPScatterStyle scatterStyle() const { return mScatterStyle; } + int scatterSkip() const { return mScatterSkip; } + LineStyle lineStyle() const { return mLineStyle; } + + // setters: + void setData(QSharedPointer data); + void setData(const QVector &t, const QVector &keys, const QVector &values, bool alreadySorted=false); + void setData(const QVector &keys, const QVector &values); + void setScatterStyle(const QCPScatterStyle &style); + void setScatterSkip(int skip); + void setLineStyle(LineStyle style); + + // non-property methods: + void addData(const QVector &t, const QVector &keys, const QVector &values, bool alreadySorted=false); + void addData(const QVector &keys, const QVector &values); + void addData(double t, double key, double value); + void addData(double key, double value); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE; + virtual QCPRange getKeyRange(bool &foundRange, QCP::SignDomain inSignDomain=QCP::sdBoth) const Q_DECL_OVERRIDE; + virtual QCPRange getValueRange(bool &foundRange, QCP::SignDomain inSignDomain=QCP::sdBoth, const QCPRange &inKeyRange=QCPRange()) const Q_DECL_OVERRIDE; + +protected: + // property members: + QCPScatterStyle mScatterStyle; + int mScatterSkip; + LineStyle mLineStyle; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE; + virtual void drawLegendIcon(QCPPainter *painter, const QRectF &rect) const Q_DECL_OVERRIDE; + + // introduced virtual methods: + virtual void drawCurveLine(QCPPainter *painter, const QVector &lines) const; + virtual void drawScatterPlot(QCPPainter *painter, const QVector &points, const QCPScatterStyle &style) const; + + // non-virtual methods: + void getCurveLines(QVector *lines, const QCPDataRange &dataRange, double penWidth) const; + void getScatters(QVector *scatters, const QCPDataRange &dataRange, double scatterWidth) const; + int getRegion(double key, double value, double keyMin, double valueMax, double keyMax, double valueMin) const; + QPointF getOptimizedPoint(int prevRegion, double prevKey, double prevValue, double key, double value, double keyMin, double valueMax, double keyMax, double valueMin) const; + QVector getOptimizedCornerPoints(int prevRegion, int currentRegion, double prevKey, double prevValue, double key, double value, double keyMin, double valueMax, double keyMax, double valueMin) const; + bool mayTraverse(int prevRegion, int currentRegion) const; + bool getTraverse(double prevKey, double prevValue, double key, double value, double keyMin, double valueMax, double keyMax, double valueMin, QPointF &crossA, QPointF &crossB) const; + void getTraverseCornerPoints(int prevRegion, int currentRegion, double keyMin, double valueMax, double keyMax, double valueMin, QVector &beforeTraverse, QVector &afterTraverse) const; + double pointDistance(const QPointF &pixelPoint, QCPCurveDataContainer::const_iterator &closestData) const; + + friend class QCustomPlot; + friend class QCPLegend; +}; +Q_DECLARE_METATYPE(QCPCurve::LineStyle) + +/* end of 'src/plottables/plottable-curve.h' */ + + +/* including file 'src/plottables/plottable-bars.h', size 8933 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPBarsGroup : public QObject +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(SpacingType spacingType READ spacingType WRITE setSpacingType) + Q_PROPERTY(double spacing READ spacing WRITE setSpacing) + /// \endcond +public: + /*! + Defines the ways the spacing between bars in the group can be specified. Thus it defines what + the number passed to \ref setSpacing actually means. + + \see setSpacingType, setSpacing + */ + enum SpacingType { stAbsolute ///< Bar spacing is in absolute pixels + ,stAxisRectRatio ///< Bar spacing is given by a fraction of the axis rect size + ,stPlotCoords ///< Bar spacing is in key coordinates and thus scales with the key axis range + }; + Q_ENUMS(SpacingType) + + explicit QCPBarsGroup(QCustomPlot *parentPlot); + virtual ~QCPBarsGroup(); + + // getters: + SpacingType spacingType() const { return mSpacingType; } + double spacing() const { return mSpacing; } + + // setters: + void setSpacingType(SpacingType spacingType); + void setSpacing(double spacing); + + // non-virtual methods: + QList bars() const { return mBars; } + QCPBars* bars(int index) const; + int size() const { return mBars.size(); } + bool isEmpty() const { return mBars.isEmpty(); } + void clear(); + bool contains(QCPBars *bars) const { return mBars.contains(bars); } + void append(QCPBars *bars); + void insert(int i, QCPBars *bars); + void remove(QCPBars *bars); + +protected: + // non-property members: + QCustomPlot *mParentPlot; + SpacingType mSpacingType; + double mSpacing; + QList mBars; + + // non-virtual methods: + void registerBars(QCPBars *bars); + void unregisterBars(QCPBars *bars); + + // virtual methods: + double keyPixelOffset(const QCPBars *bars, double keyCoord); + double getPixelSpacing(const QCPBars *bars, double keyCoord); + +private: + Q_DISABLE_COPY(QCPBarsGroup) + + friend class QCPBars; +}; +Q_DECLARE_METATYPE(QCPBarsGroup::SpacingType) + + +class QCP_LIB_DECL QCPBarsData +{ +public: + QCPBarsData(); + QCPBarsData(double key, double value); + + inline double sortKey() const { return key; } + inline static QCPBarsData fromSortKey(double sortKey) { return QCPBarsData(sortKey, 0); } + inline static bool sortKeyIsMainKey() { return true; } + + inline double mainKey() const { return key; } + inline double mainValue() const { return value; } + + inline QCPRange valueRange() const { return QCPRange(value, value); } // note that bar base value isn't held in each QCPBarsData and thus can't/shouldn't be returned here + + double key, value; +}; +Q_DECLARE_TYPEINFO(QCPBarsData, Q_PRIMITIVE_TYPE); + + +/*! \typedef QCPBarsDataContainer + + Container for storing \ref QCPBarsData points. The data is stored sorted by \a key. + + This template instantiation is the container in which QCPBars holds its data. For details about + the generic container, see the documentation of the class template \ref QCPDataContainer. + + \see QCPBarsData, QCPBars::setData +*/ +typedef QCPDataContainer QCPBarsDataContainer; + +class QCP_LIB_DECL QCPBars : public QCPAbstractPlottable1D +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(double width READ width WRITE setWidth) + Q_PROPERTY(WidthType widthType READ widthType WRITE setWidthType) + Q_PROPERTY(QCPBarsGroup* barsGroup READ barsGroup WRITE setBarsGroup) + Q_PROPERTY(double baseValue READ baseValue WRITE setBaseValue) + Q_PROPERTY(double stackingGap READ stackingGap WRITE setStackingGap) + Q_PROPERTY(QCPBars* barBelow READ barBelow) + Q_PROPERTY(QCPBars* barAbove READ barAbove) + /// \endcond +public: + /*! + Defines the ways the width of the bar can be specified. Thus it defines what the number passed + to \ref setWidth actually means. + + \see setWidthType, setWidth + */ + enum WidthType { wtAbsolute ///< Bar width is in absolute pixels + ,wtAxisRectRatio ///< Bar width is given by a fraction of the axis rect size + ,wtPlotCoords ///< Bar width is in key coordinates and thus scales with the key axis range + }; + Q_ENUMS(WidthType) + + explicit QCPBars(QCPAxis *keyAxis, QCPAxis *valueAxis); + virtual ~QCPBars(); + + // getters: + double width() const { return mWidth; } + WidthType widthType() const { return mWidthType; } + QCPBarsGroup *barsGroup() const { return mBarsGroup; } + double baseValue() const { return mBaseValue; } + double stackingGap() const { return mStackingGap; } + QCPBars *barBelow() const { return mBarBelow.data(); } + QCPBars *barAbove() const { return mBarAbove.data(); } + QSharedPointer data() const { return mDataContainer; } + + // setters: + void setData(QSharedPointer data); + void setData(const QVector &keys, const QVector &values, bool alreadySorted=false); + void setWidth(double width); + void setWidthType(WidthType widthType); + void setBarsGroup(QCPBarsGroup *barsGroup); + void setBaseValue(double baseValue); + void setStackingGap(double pixels); + + // non-property methods: + void addData(const QVector &keys, const QVector &values, bool alreadySorted=false); + void addData(double key, double value); + void moveBelow(QCPBars *bars); + void moveAbove(QCPBars *bars); + + // reimplemented virtual methods: + virtual QCPDataSelection selectTestRect(const QRectF &rect, bool onlySelectable) const Q_DECL_OVERRIDE; + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE; + virtual QCPRange getKeyRange(bool &foundRange, QCP::SignDomain inSignDomain=QCP::sdBoth) const Q_DECL_OVERRIDE; + virtual QCPRange getValueRange(bool &foundRange, QCP::SignDomain inSignDomain=QCP::sdBoth, const QCPRange &inKeyRange=QCPRange()) const Q_DECL_OVERRIDE; + virtual QPointF dataPixelPosition(int index) const Q_DECL_OVERRIDE; + +protected: + // property members: + double mWidth; + WidthType mWidthType; + QCPBarsGroup *mBarsGroup; + double mBaseValue; + double mStackingGap; + QPointer mBarBelow, mBarAbove; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE; + virtual void drawLegendIcon(QCPPainter *painter, const QRectF &rect) const Q_DECL_OVERRIDE; + + // non-virtual methods: + void getVisibleDataBounds(QCPBarsDataContainer::const_iterator &begin, QCPBarsDataContainer::const_iterator &end) const; + QRectF getBarRect(double key, double value) const; + void getPixelWidth(double key, double &lower, double &upper) const; + double getStackedBaseValue(double key, bool positive) const; + static void connectBars(QCPBars* lower, QCPBars* upper); + + friend class QCustomPlot; + friend class QCPLegend; + friend class QCPBarsGroup; +}; +Q_DECLARE_METATYPE(QCPBars::WidthType) + +/* end of 'src/plottables/plottable-bars.h' */ + + +/* including file 'src/plottables/plottable-statisticalbox.h', size 7516 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPStatisticalBoxData +{ +public: + QCPStatisticalBoxData(); + QCPStatisticalBoxData(double key, double minimum, double lowerQuartile, double median, double upperQuartile, double maximum, const QVector& outliers=QVector()); + + inline double sortKey() const { return key; } + inline static QCPStatisticalBoxData fromSortKey(double sortKey) { return QCPStatisticalBoxData(sortKey, 0, 0, 0, 0, 0); } + inline static bool sortKeyIsMainKey() { return true; } + + inline double mainKey() const { return key; } + inline double mainValue() const { return median; } + + inline QCPRange valueRange() const + { + QCPRange result(minimum, maximum); + for (QVector::const_iterator it = outliers.constBegin(); it != outliers.constEnd(); ++it) + result.expand(*it); + return result; + } + + double key, minimum, lowerQuartile, median, upperQuartile, maximum; + QVector outliers; +}; +Q_DECLARE_TYPEINFO(QCPStatisticalBoxData, Q_MOVABLE_TYPE); + + +/*! \typedef QCPStatisticalBoxDataContainer + + Container for storing \ref QCPStatisticalBoxData points. The data is stored sorted by \a key. + + This template instantiation is the container in which QCPStatisticalBox holds its data. For + details about the generic container, see the documentation of the class template \ref + QCPDataContainer. + + \see QCPStatisticalBoxData, QCPStatisticalBox::setData +*/ +typedef QCPDataContainer QCPStatisticalBoxDataContainer; + +class QCP_LIB_DECL QCPStatisticalBox : public QCPAbstractPlottable1D +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(double width READ width WRITE setWidth) + Q_PROPERTY(double whiskerWidth READ whiskerWidth WRITE setWhiskerWidth) + Q_PROPERTY(QPen whiskerPen READ whiskerPen WRITE setWhiskerPen) + Q_PROPERTY(QPen whiskerBarPen READ whiskerBarPen WRITE setWhiskerBarPen) + Q_PROPERTY(bool whiskerAntialiased READ whiskerAntialiased WRITE setWhiskerAntialiased) + Q_PROPERTY(QPen medianPen READ medianPen WRITE setMedianPen) + Q_PROPERTY(QCPScatterStyle outlierStyle READ outlierStyle WRITE setOutlierStyle) + /// \endcond +public: + explicit QCPStatisticalBox(QCPAxis *keyAxis, QCPAxis *valueAxis); + + // getters: + QSharedPointer data() const { return mDataContainer; } + double width() const { return mWidth; } + double whiskerWidth() const { return mWhiskerWidth; } + QPen whiskerPen() const { return mWhiskerPen; } + QPen whiskerBarPen() const { return mWhiskerBarPen; } + bool whiskerAntialiased() const { return mWhiskerAntialiased; } + QPen medianPen() const { return mMedianPen; } + QCPScatterStyle outlierStyle() const { return mOutlierStyle; } + + // setters: + void setData(QSharedPointer data); + void setData(const QVector &keys, const QVector &minimum, const QVector &lowerQuartile, const QVector &median, const QVector &upperQuartile, const QVector &maximum, bool alreadySorted=false); + void setWidth(double width); + void setWhiskerWidth(double width); + void setWhiskerPen(const QPen &pen); + void setWhiskerBarPen(const QPen &pen); + void setWhiskerAntialiased(bool enabled); + void setMedianPen(const QPen &pen); + void setOutlierStyle(const QCPScatterStyle &style); + + // non-property methods: + void addData(const QVector &keys, const QVector &minimum, const QVector &lowerQuartile, const QVector &median, const QVector &upperQuartile, const QVector &maximum, bool alreadySorted=false); + void addData(double key, double minimum, double lowerQuartile, double median, double upperQuartile, double maximum, const QVector &outliers=QVector()); + + // reimplemented virtual methods: + virtual QCPDataSelection selectTestRect(const QRectF &rect, bool onlySelectable) const Q_DECL_OVERRIDE; + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE; + virtual QCPRange getKeyRange(bool &foundRange, QCP::SignDomain inSignDomain=QCP::sdBoth) const Q_DECL_OVERRIDE; + virtual QCPRange getValueRange(bool &foundRange, QCP::SignDomain inSignDomain=QCP::sdBoth, const QCPRange &inKeyRange=QCPRange()) const Q_DECL_OVERRIDE; + +protected: + // property members: + double mWidth; + double mWhiskerWidth; + QPen mWhiskerPen, mWhiskerBarPen; + bool mWhiskerAntialiased; + QPen mMedianPen; + QCPScatterStyle mOutlierStyle; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE; + virtual void drawLegendIcon(QCPPainter *painter, const QRectF &rect) const Q_DECL_OVERRIDE; + + // introduced virtual methods: + virtual void drawStatisticalBox(QCPPainter *painter, QCPStatisticalBoxDataContainer::const_iterator it, const QCPScatterStyle &outlierStyle) const; + + // non-virtual methods: + void getVisibleDataBounds(QCPStatisticalBoxDataContainer::const_iterator &begin, QCPStatisticalBoxDataContainer::const_iterator &end) const; + QRectF getQuartileBox(QCPStatisticalBoxDataContainer::const_iterator it) const; + QVector getWhiskerBackboneLines(QCPStatisticalBoxDataContainer::const_iterator it) const; + QVector getWhiskerBarLines(QCPStatisticalBoxDataContainer::const_iterator it) const; + + friend class QCustomPlot; + friend class QCPLegend; +}; + +/* end of 'src/plottables/plottable-statisticalbox.h' */ + + +/* including file 'src/plottables/plottable-colormap.h', size 7070 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPColorMapData +{ +public: + QCPColorMapData(int keySize, int valueSize, const QCPRange &keyRange, const QCPRange &valueRange); + ~QCPColorMapData(); + QCPColorMapData(const QCPColorMapData &other); + QCPColorMapData &operator=(const QCPColorMapData &other); + + // getters: + int keySize() const { return mKeySize; } + int valueSize() const { return mValueSize; } + QCPRange keyRange() const { return mKeyRange; } + QCPRange valueRange() const { return mValueRange; } + QCPRange dataBounds() const { return mDataBounds; } + double data(double key, double value); + double cell(int keyIndex, int valueIndex); + unsigned char alpha(int keyIndex, int valueIndex); + + // setters: + void setSize(int keySize, int valueSize); + void setKeySize(int keySize); + void setValueSize(int valueSize); + void setRange(const QCPRange &keyRange, const QCPRange &valueRange); + void setKeyRange(const QCPRange &keyRange); + void setValueRange(const QCPRange &valueRange); + void setData(double key, double value, double z); + void setCell(int keyIndex, int valueIndex, double z); + void setAlpha(int keyIndex, int valueIndex, unsigned char alpha); + + // non-property methods: + void recalculateDataBounds(); + void clear(); + void clearAlpha(); + void fill(double z); + void fillAlpha(unsigned char alpha); + bool isEmpty() const { return mIsEmpty; } + void coordToCell(double key, double value, int *keyIndex, int *valueIndex) const; + void cellToCoord(int keyIndex, int valueIndex, double *key, double *value) const; + +protected: + // property members: + int mKeySize, mValueSize; + QCPRange mKeyRange, mValueRange; + bool mIsEmpty; + + // non-property members: + double *mData; + unsigned char *mAlpha; + QCPRange mDataBounds; + bool mDataModified; + + bool createAlpha(bool initializeOpaque=true); + + friend class QCPColorMap; +}; + + +class QCP_LIB_DECL QCPColorMap : public QCPAbstractPlottable +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QCPRange dataRange READ dataRange WRITE setDataRange NOTIFY dataRangeChanged) + Q_PROPERTY(QCPAxis::ScaleType dataScaleType READ dataScaleType WRITE setDataScaleType NOTIFY dataScaleTypeChanged) + Q_PROPERTY(QCPColorGradient gradient READ gradient WRITE setGradient NOTIFY gradientChanged) + Q_PROPERTY(bool interpolate READ interpolate WRITE setInterpolate) + Q_PROPERTY(bool tightBoundary READ tightBoundary WRITE setTightBoundary) + Q_PROPERTY(QCPColorScale* colorScale READ colorScale WRITE setColorScale) + /// \endcond +public: + explicit QCPColorMap(QCPAxis *keyAxis, QCPAxis *valueAxis); + virtual ~QCPColorMap(); + + // getters: + QCPColorMapData *data() const { return mMapData; } + QCPRange dataRange() const { return mDataRange; } + QCPAxis::ScaleType dataScaleType() const { return mDataScaleType; } + bool interpolate() const { return mInterpolate; } + bool tightBoundary() const { return mTightBoundary; } + QCPColorGradient gradient() const { return mGradient; } + QCPColorScale *colorScale() const { return mColorScale.data(); } + + // setters: + void setData(QCPColorMapData *data, bool copy=false); + Q_SLOT void setDataRange(const QCPRange &dataRange); + Q_SLOT void setDataScaleType(QCPAxis::ScaleType scaleType); + Q_SLOT void setGradient(const QCPColorGradient &gradient); + void setInterpolate(bool enabled); + void setTightBoundary(bool enabled); + void setColorScale(QCPColorScale *colorScale); + + // non-property methods: + void rescaleDataRange(bool recalculateDataBounds=false); + Q_SLOT void updateLegendIcon(Qt::TransformationMode transformMode=Qt::SmoothTransformation, const QSize &thumbSize=QSize(32, 18)); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE; + virtual QCPRange getKeyRange(bool &foundRange, QCP::SignDomain inSignDomain=QCP::sdBoth) const Q_DECL_OVERRIDE; + virtual QCPRange getValueRange(bool &foundRange, QCP::SignDomain inSignDomain=QCP::sdBoth, const QCPRange &inKeyRange=QCPRange()) const Q_DECL_OVERRIDE; + +signals: + void dataRangeChanged(const QCPRange &newRange); + void dataScaleTypeChanged(QCPAxis::ScaleType scaleType); + void gradientChanged(const QCPColorGradient &newGradient); + +protected: + // property members: + QCPRange mDataRange; + QCPAxis::ScaleType mDataScaleType; + QCPColorMapData *mMapData; + QCPColorGradient mGradient; + bool mInterpolate; + bool mTightBoundary; + QPointer mColorScale; + + // non-property members: + QImage mMapImage, mUndersampledMapImage; + QPixmap mLegendIcon; + bool mMapImageInvalidated; + + // introduced virtual methods: + virtual void updateMapImage(); + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE; + virtual void drawLegendIcon(QCPPainter *painter, const QRectF &rect) const Q_DECL_OVERRIDE; + + friend class QCustomPlot; + friend class QCPLegend; +}; + +/* end of 'src/plottables/plottable-colormap.h' */ + + +/* including file 'src/plottables/plottable-financial.h', size 8622 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPFinancialData +{ +public: + QCPFinancialData(); + QCPFinancialData(double key, double open, double high, double low, double close); + + inline double sortKey() const { return key; } + inline static QCPFinancialData fromSortKey(double sortKey) { return QCPFinancialData(sortKey, 0, 0, 0, 0); } + inline static bool sortKeyIsMainKey() { return true; } + + inline double mainKey() const { return key; } + inline double mainValue() const { return open; } + + inline QCPRange valueRange() const { return QCPRange(low, high); } // open and close must lie between low and high, so we don't need to check them + + double key, open, high, low, close; +}; +Q_DECLARE_TYPEINFO(QCPFinancialData, Q_PRIMITIVE_TYPE); + + +/*! \typedef QCPFinancialDataContainer + + Container for storing \ref QCPFinancialData points. The data is stored sorted by \a key. + + This template instantiation is the container in which QCPFinancial holds its data. For details + about the generic container, see the documentation of the class template \ref QCPDataContainer. + + \see QCPFinancialData, QCPFinancial::setData +*/ +typedef QCPDataContainer QCPFinancialDataContainer; + +class QCP_LIB_DECL QCPFinancial : public QCPAbstractPlottable1D +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(ChartStyle chartStyle READ chartStyle WRITE setChartStyle) + Q_PROPERTY(double width READ width WRITE setWidth) + Q_PROPERTY(WidthType widthType READ widthType WRITE setWidthType) + Q_PROPERTY(bool twoColored READ twoColored WRITE setTwoColored) + Q_PROPERTY(QBrush brushPositive READ brushPositive WRITE setBrushPositive) + Q_PROPERTY(QBrush brushNegative READ brushNegative WRITE setBrushNegative) + Q_PROPERTY(QPen penPositive READ penPositive WRITE setPenPositive) + Q_PROPERTY(QPen penNegative READ penNegative WRITE setPenNegative) + /// \endcond +public: + /*! + Defines the ways the width of the financial bar can be specified. Thus it defines what the + number passed to \ref setWidth actually means. + + \see setWidthType, setWidth + */ + enum WidthType { wtAbsolute ///< width is in absolute pixels + ,wtAxisRectRatio ///< width is given by a fraction of the axis rect size + ,wtPlotCoords ///< width is in key coordinates and thus scales with the key axis range + }; + Q_ENUMS(WidthType) + + /*! + Defines the possible representations of OHLC data in the plot. + + \see setChartStyle + */ + enum ChartStyle { csOhlc ///< Open-High-Low-Close bar representation + ,csCandlestick ///< Candlestick representation + }; + Q_ENUMS(ChartStyle) + + explicit QCPFinancial(QCPAxis *keyAxis, QCPAxis *valueAxis); + virtual ~QCPFinancial(); + + // getters: + QSharedPointer data() const { return mDataContainer; } + ChartStyle chartStyle() const { return mChartStyle; } + double width() const { return mWidth; } + WidthType widthType() const { return mWidthType; } + bool twoColored() const { return mTwoColored; } + QBrush brushPositive() const { return mBrushPositive; } + QBrush brushNegative() const { return mBrushNegative; } + QPen penPositive() const { return mPenPositive; } + QPen penNegative() const { return mPenNegative; } + + // setters: + void setData(QSharedPointer data); + void setData(const QVector &keys, const QVector &open, const QVector &high, const QVector &low, const QVector &close, bool alreadySorted=false); + void setChartStyle(ChartStyle style); + void setWidth(double width); + void setWidthType(WidthType widthType); + void setTwoColored(bool twoColored); + void setBrushPositive(const QBrush &brush); + void setBrushNegative(const QBrush &brush); + void setPenPositive(const QPen &pen); + void setPenNegative(const QPen &pen); + + // non-property methods: + void addData(const QVector &keys, const QVector &open, const QVector &high, const QVector &low, const QVector &close, bool alreadySorted=false); + void addData(double key, double open, double high, double low, double close); + + // reimplemented virtual methods: + virtual QCPDataSelection selectTestRect(const QRectF &rect, bool onlySelectable) const Q_DECL_OVERRIDE; + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE; + virtual QCPRange getKeyRange(bool &foundRange, QCP::SignDomain inSignDomain=QCP::sdBoth) const Q_DECL_OVERRIDE; + virtual QCPRange getValueRange(bool &foundRange, QCP::SignDomain inSignDomain=QCP::sdBoth, const QCPRange &inKeyRange=QCPRange()) const Q_DECL_OVERRIDE; + + // static methods: + static QCPFinancialDataContainer timeSeriesToOhlc(const QVector &time, const QVector &value, double timeBinSize, double timeBinOffset = 0); + +protected: + // property members: + ChartStyle mChartStyle; + double mWidth; + WidthType mWidthType; + bool mTwoColored; + QBrush mBrushPositive, mBrushNegative; + QPen mPenPositive, mPenNegative; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE; + virtual void drawLegendIcon(QCPPainter *painter, const QRectF &rect) const Q_DECL_OVERRIDE; + + // non-virtual methods: + void drawOhlcPlot(QCPPainter *painter, const QCPFinancialDataContainer::const_iterator &begin, const QCPFinancialDataContainer::const_iterator &end, bool isSelected); + void drawCandlestickPlot(QCPPainter *painter, const QCPFinancialDataContainer::const_iterator &begin, const QCPFinancialDataContainer::const_iterator &end, bool isSelected); + double getPixelWidth(double key, double keyPixel) const; + double ohlcSelectTest(const QPointF &pos, const QCPFinancialDataContainer::const_iterator &begin, const QCPFinancialDataContainer::const_iterator &end, QCPFinancialDataContainer::const_iterator &closestDataPoint) const; + double candlestickSelectTest(const QPointF &pos, const QCPFinancialDataContainer::const_iterator &begin, const QCPFinancialDataContainer::const_iterator &end, QCPFinancialDataContainer::const_iterator &closestDataPoint) const; + void getVisibleDataBounds(QCPFinancialDataContainer::const_iterator &begin, QCPFinancialDataContainer::const_iterator &end) const; + QRectF selectionHitBox(QCPFinancialDataContainer::const_iterator it) const; + + friend class QCustomPlot; + friend class QCPLegend; +}; +Q_DECLARE_METATYPE(QCPFinancial::ChartStyle) + +/* end of 'src/plottables/plottable-financial.h' */ + + +/* including file 'src/plottables/plottable-errorbar.h', size 7727 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPErrorBarsData +{ +public: + QCPErrorBarsData(); + explicit QCPErrorBarsData(double error); + QCPErrorBarsData(double errorMinus, double errorPlus); + + double errorMinus, errorPlus; +}; +Q_DECLARE_TYPEINFO(QCPErrorBarsData, Q_PRIMITIVE_TYPE); + + +/*! \typedef QCPErrorBarsDataContainer + + Container for storing \ref QCPErrorBarsData points. It is a typedef for QVector<\ref + QCPErrorBarsData>. + + This is the container in which \ref QCPErrorBars holds its data. Unlike most other data + containers for plottables, it is not based on \ref QCPDataContainer. This is because the error + bars plottable is special in that it doesn't store its own key and value coordinate per error + bar. It adopts the key and value from the plottable to which the error bars shall be applied + (\ref QCPErrorBars::setDataPlottable). So the stored \ref QCPErrorBarsData doesn't need a + sortable key, but merely an index (as \c QVector provides), which maps one-to-one to the indices + of the other plottable's data. + + \see QCPErrorBarsData, QCPErrorBars::setData +*/ +typedef QVector QCPErrorBarsDataContainer; + +class QCP_LIB_DECL QCPErrorBars : public QCPAbstractPlottable, public QCPPlottableInterface1D +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QSharedPointer data READ data WRITE setData) + Q_PROPERTY(QCPAbstractPlottable* dataPlottable READ dataPlottable WRITE setDataPlottable) + Q_PROPERTY(ErrorType errorType READ errorType WRITE setErrorType) + Q_PROPERTY(double whiskerWidth READ whiskerWidth WRITE setWhiskerWidth) + Q_PROPERTY(double symbolGap READ symbolGap WRITE setSymbolGap) + /// \endcond +public: + + /*! + Defines in which orientation the error bars shall appear. If your data needs both error + dimensions, create two \ref QCPErrorBars with different \ref ErrorType. + + \see setErrorType + */ + enum ErrorType { etKeyError ///< The errors are for the key dimension (bars appear parallel to the key axis) + ,etValueError ///< The errors are for the value dimension (bars appear parallel to the value axis) + }; + Q_ENUMS(ErrorType) + + explicit QCPErrorBars(QCPAxis *keyAxis, QCPAxis *valueAxis); + virtual ~QCPErrorBars(); + // getters: + QSharedPointer data() const { return mDataContainer; } + QCPAbstractPlottable *dataPlottable() const { return mDataPlottable.data(); } + ErrorType errorType() const { return mErrorType; } + double whiskerWidth() const { return mWhiskerWidth; } + double symbolGap() const { return mSymbolGap; } + + // setters: + void setData(QSharedPointer data); + void setData(const QVector &error); + void setData(const QVector &errorMinus, const QVector &errorPlus); + void setDataPlottable(QCPAbstractPlottable* plottable); + void setErrorType(ErrorType type); + void setWhiskerWidth(double pixels); + void setSymbolGap(double pixels); + + // non-property methods: + void addData(const QVector &error); + void addData(const QVector &errorMinus, const QVector &errorPlus); + void addData(double error); + void addData(double errorMinus, double errorPlus); + + // virtual methods of 1d plottable interface: + virtual int dataCount() const Q_DECL_OVERRIDE; + virtual double dataMainKey(int index) const Q_DECL_OVERRIDE; + virtual double dataSortKey(int index) const Q_DECL_OVERRIDE; + virtual double dataMainValue(int index) const Q_DECL_OVERRIDE; + virtual QCPRange dataValueRange(int index) const Q_DECL_OVERRIDE; + virtual QPointF dataPixelPosition(int index) const Q_DECL_OVERRIDE; + virtual bool sortKeyIsMainKey() const Q_DECL_OVERRIDE; + virtual QCPDataSelection selectTestRect(const QRectF &rect, bool onlySelectable) const Q_DECL_OVERRIDE; + virtual int findBegin(double sortKey, bool expandedRange=true) const Q_DECL_OVERRIDE; + virtual int findEnd(double sortKey, bool expandedRange=true) const Q_DECL_OVERRIDE; + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE; + virtual QCPPlottableInterface1D *interface1D() Q_DECL_OVERRIDE { return this; } + +protected: + // property members: + QSharedPointer mDataContainer; + QPointer mDataPlottable; + ErrorType mErrorType; + double mWhiskerWidth; + double mSymbolGap; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE; + virtual void drawLegendIcon(QCPPainter *painter, const QRectF &rect) const Q_DECL_OVERRIDE; + virtual QCPRange getKeyRange(bool &foundRange, QCP::SignDomain inSignDomain=QCP::sdBoth) const Q_DECL_OVERRIDE; + virtual QCPRange getValueRange(bool &foundRange, QCP::SignDomain inSignDomain=QCP::sdBoth, const QCPRange &inKeyRange=QCPRange()) const Q_DECL_OVERRIDE; + + // non-virtual methods: + void getErrorBarLines(QCPErrorBarsDataContainer::const_iterator it, QVector &backbones, QVector &whiskers) const; + void getVisibleDataBounds(QCPErrorBarsDataContainer::const_iterator &begin, QCPErrorBarsDataContainer::const_iterator &end, const QCPDataRange &rangeRestriction) const; + double pointDistance(const QPointF &pixelPoint, QCPErrorBarsDataContainer::const_iterator &closestData) const; + // helpers: + void getDataSegments(QList &selectedSegments, QList &unselectedSegments) const; + bool errorBarVisible(int index) const; + bool rectIntersectsLine(const QRectF &pixelRect, const QLineF &line) const; + + friend class QCustomPlot; + friend class QCPLegend; +}; + +/* end of 'src/plottables/plottable-errorbar.h' */ + + +/* including file 'src/items/item-straightline.h', size 3117 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPItemStraightLine : public QCPAbstractItem +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QPen pen READ pen WRITE setPen) + Q_PROPERTY(QPen selectedPen READ selectedPen WRITE setSelectedPen) + /// \endcond +public: + explicit QCPItemStraightLine(QCustomPlot *parentPlot); + virtual ~QCPItemStraightLine(); + + // getters: + QPen pen() const { return mPen; } + QPen selectedPen() const { return mSelectedPen; } + + // setters; + void setPen(const QPen &pen); + void setSelectedPen(const QPen &pen); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE; + + QCPItemPosition * const point1; + QCPItemPosition * const point2; + +protected: + // property members: + QPen mPen, mSelectedPen; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE; + + // non-virtual methods: + QLineF getRectClippedStraightLine(const QCPVector2D &point1, const QCPVector2D &vec, const QRect &rect) const; + QPen mainPen() const; +}; + +/* end of 'src/items/item-straightline.h' */ + + +/* including file 'src/items/item-line.h', size 3407 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPItemLine : public QCPAbstractItem +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QPen pen READ pen WRITE setPen) + Q_PROPERTY(QPen selectedPen READ selectedPen WRITE setSelectedPen) + Q_PROPERTY(QCPLineEnding head READ head WRITE setHead) + Q_PROPERTY(QCPLineEnding tail READ tail WRITE setTail) + /// \endcond +public: + explicit QCPItemLine(QCustomPlot *parentPlot); + virtual ~QCPItemLine(); + + // getters: + QPen pen() const { return mPen; } + QPen selectedPen() const { return mSelectedPen; } + QCPLineEnding head() const { return mHead; } + QCPLineEnding tail() const { return mTail; } + + // setters; + void setPen(const QPen &pen); + void setSelectedPen(const QPen &pen); + void setHead(const QCPLineEnding &head); + void setTail(const QCPLineEnding &tail); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE; + + QCPItemPosition * const start; + QCPItemPosition * const end; + +protected: + // property members: + QPen mPen, mSelectedPen; + QCPLineEnding mHead, mTail; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE; + + // non-virtual methods: + QLineF getRectClippedLine(const QCPVector2D &start, const QCPVector2D &end, const QRect &rect) const; + QPen mainPen() const; +}; + +/* end of 'src/items/item-line.h' */ + + +/* including file 'src/items/item-curve.h', size 3379 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPItemCurve : public QCPAbstractItem +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QPen pen READ pen WRITE setPen) + Q_PROPERTY(QPen selectedPen READ selectedPen WRITE setSelectedPen) + Q_PROPERTY(QCPLineEnding head READ head WRITE setHead) + Q_PROPERTY(QCPLineEnding tail READ tail WRITE setTail) + /// \endcond +public: + explicit QCPItemCurve(QCustomPlot *parentPlot); + virtual ~QCPItemCurve(); + + // getters: + QPen pen() const { return mPen; } + QPen selectedPen() const { return mSelectedPen; } + QCPLineEnding head() const { return mHead; } + QCPLineEnding tail() const { return mTail; } + + // setters; + void setPen(const QPen &pen); + void setSelectedPen(const QPen &pen); + void setHead(const QCPLineEnding &head); + void setTail(const QCPLineEnding &tail); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE; + + QCPItemPosition * const start; + QCPItemPosition * const startDir; + QCPItemPosition * const endDir; + QCPItemPosition * const end; + +protected: + // property members: + QPen mPen, mSelectedPen; + QCPLineEnding mHead, mTail; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE; + + // non-virtual methods: + QPen mainPen() const; +}; + +/* end of 'src/items/item-curve.h' */ + + +/* including file 'src/items/item-rect.h', size 3688 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPItemRect : public QCPAbstractItem +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QPen pen READ pen WRITE setPen) + Q_PROPERTY(QPen selectedPen READ selectedPen WRITE setSelectedPen) + Q_PROPERTY(QBrush brush READ brush WRITE setBrush) + Q_PROPERTY(QBrush selectedBrush READ selectedBrush WRITE setSelectedBrush) + /// \endcond +public: + explicit QCPItemRect(QCustomPlot *parentPlot); + virtual ~QCPItemRect(); + + // getters: + QPen pen() const { return mPen; } + QPen selectedPen() const { return mSelectedPen; } + QBrush brush() const { return mBrush; } + QBrush selectedBrush() const { return mSelectedBrush; } + + // setters; + void setPen(const QPen &pen); + void setSelectedPen(const QPen &pen); + void setBrush(const QBrush &brush); + void setSelectedBrush(const QBrush &brush); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE; + + QCPItemPosition * const topLeft; + QCPItemPosition * const bottomRight; + QCPItemAnchor * const top; + QCPItemAnchor * const topRight; + QCPItemAnchor * const right; + QCPItemAnchor * const bottom; + QCPItemAnchor * const bottomLeft; + QCPItemAnchor * const left; + +protected: + enum AnchorIndex {aiTop, aiTopRight, aiRight, aiBottom, aiBottomLeft, aiLeft}; + + // property members: + QPen mPen, mSelectedPen; + QBrush mBrush, mSelectedBrush; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE; + virtual QPointF anchorPixelPosition(int anchorId) const Q_DECL_OVERRIDE; + + // non-virtual methods: + QPen mainPen() const; + QBrush mainBrush() const; +}; + +/* end of 'src/items/item-rect.h' */ + + +/* including file 'src/items/item-text.h', size 5554 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPItemText : public QCPAbstractItem +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QColor color READ color WRITE setColor) + Q_PROPERTY(QColor selectedColor READ selectedColor WRITE setSelectedColor) + Q_PROPERTY(QPen pen READ pen WRITE setPen) + Q_PROPERTY(QPen selectedPen READ selectedPen WRITE setSelectedPen) + Q_PROPERTY(QBrush brush READ brush WRITE setBrush) + Q_PROPERTY(QBrush selectedBrush READ selectedBrush WRITE setSelectedBrush) + Q_PROPERTY(QFont font READ font WRITE setFont) + Q_PROPERTY(QFont selectedFont READ selectedFont WRITE setSelectedFont) + Q_PROPERTY(QString text READ text WRITE setText) + Q_PROPERTY(Qt::Alignment positionAlignment READ positionAlignment WRITE setPositionAlignment) + Q_PROPERTY(Qt::Alignment textAlignment READ textAlignment WRITE setTextAlignment) + Q_PROPERTY(double rotation READ rotation WRITE setRotation) + Q_PROPERTY(QMargins padding READ padding WRITE setPadding) + /// \endcond +public: + explicit QCPItemText(QCustomPlot *parentPlot); + virtual ~QCPItemText(); + + // getters: + QColor color() const { return mColor; } + QColor selectedColor() const { return mSelectedColor; } + QPen pen() const { return mPen; } + QPen selectedPen() const { return mSelectedPen; } + QBrush brush() const { return mBrush; } + QBrush selectedBrush() const { return mSelectedBrush; } + QFont font() const { return mFont; } + QFont selectedFont() const { return mSelectedFont; } + QString text() const { return mText; } + Qt::Alignment positionAlignment() const { return mPositionAlignment; } + Qt::Alignment textAlignment() const { return mTextAlignment; } + double rotation() const { return mRotation; } + QMargins padding() const { return mPadding; } + + // setters; + void setColor(const QColor &color); + void setSelectedColor(const QColor &color); + void setPen(const QPen &pen); + void setSelectedPen(const QPen &pen); + void setBrush(const QBrush &brush); + void setSelectedBrush(const QBrush &brush); + void setFont(const QFont &font); + void setSelectedFont(const QFont &font); + void setText(const QString &text); + void setPositionAlignment(Qt::Alignment alignment); + void setTextAlignment(Qt::Alignment alignment); + void setRotation(double degrees); + void setPadding(const QMargins &padding); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE; + + QCPItemPosition * const position; + QCPItemAnchor * const topLeft; + QCPItemAnchor * const top; + QCPItemAnchor * const topRight; + QCPItemAnchor * const right; + QCPItemAnchor * const bottomRight; + QCPItemAnchor * const bottom; + QCPItemAnchor * const bottomLeft; + QCPItemAnchor * const left; + +protected: + enum AnchorIndex {aiTopLeft, aiTop, aiTopRight, aiRight, aiBottomRight, aiBottom, aiBottomLeft, aiLeft}; + + // property members: + QColor mColor, mSelectedColor; + QPen mPen, mSelectedPen; + QBrush mBrush, mSelectedBrush; + QFont mFont, mSelectedFont; + QString mText; + Qt::Alignment mPositionAlignment; + Qt::Alignment mTextAlignment; + double mRotation; + QMargins mPadding; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE; + virtual QPointF anchorPixelPosition(int anchorId) const Q_DECL_OVERRIDE; + + // non-virtual methods: + QPointF getTextDrawPoint(const QPointF &pos, const QRectF &rect, Qt::Alignment positionAlignment) const; + QFont mainFont() const; + QColor mainColor() const; + QPen mainPen() const; + QBrush mainBrush() const; +}; + +/* end of 'src/items/item-text.h' */ + + +/* including file 'src/items/item-ellipse.h', size 3868 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPItemEllipse : public QCPAbstractItem +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QPen pen READ pen WRITE setPen) + Q_PROPERTY(QPen selectedPen READ selectedPen WRITE setSelectedPen) + Q_PROPERTY(QBrush brush READ brush WRITE setBrush) + Q_PROPERTY(QBrush selectedBrush READ selectedBrush WRITE setSelectedBrush) + /// \endcond +public: + explicit QCPItemEllipse(QCustomPlot *parentPlot); + virtual ~QCPItemEllipse(); + + // getters: + QPen pen() const { return mPen; } + QPen selectedPen() const { return mSelectedPen; } + QBrush brush() const { return mBrush; } + QBrush selectedBrush() const { return mSelectedBrush; } + + // setters; + void setPen(const QPen &pen); + void setSelectedPen(const QPen &pen); + void setBrush(const QBrush &brush); + void setSelectedBrush(const QBrush &brush); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE; + + QCPItemPosition * const topLeft; + QCPItemPosition * const bottomRight; + QCPItemAnchor * const topLeftRim; + QCPItemAnchor * const top; + QCPItemAnchor * const topRightRim; + QCPItemAnchor * const right; + QCPItemAnchor * const bottomRightRim; + QCPItemAnchor * const bottom; + QCPItemAnchor * const bottomLeftRim; + QCPItemAnchor * const left; + QCPItemAnchor * const center; + +protected: + enum AnchorIndex {aiTopLeftRim, aiTop, aiTopRightRim, aiRight, aiBottomRightRim, aiBottom, aiBottomLeftRim, aiLeft, aiCenter}; + + // property members: + QPen mPen, mSelectedPen; + QBrush mBrush, mSelectedBrush; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE; + virtual QPointF anchorPixelPosition(int anchorId) const Q_DECL_OVERRIDE; + + // non-virtual methods: + QPen mainPen() const; + QBrush mainBrush() const; +}; + +/* end of 'src/items/item-ellipse.h' */ + + +/* including file 'src/items/item-pixmap.h', size 4373 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPItemPixmap : public QCPAbstractItem +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QPixmap pixmap READ pixmap WRITE setPixmap) + Q_PROPERTY(bool scaled READ scaled WRITE setScaled) + Q_PROPERTY(Qt::AspectRatioMode aspectRatioMode READ aspectRatioMode) + Q_PROPERTY(Qt::TransformationMode transformationMode READ transformationMode) + Q_PROPERTY(QPen pen READ pen WRITE setPen) + Q_PROPERTY(QPen selectedPen READ selectedPen WRITE setSelectedPen) + /// \endcond +public: + explicit QCPItemPixmap(QCustomPlot *parentPlot); + virtual ~QCPItemPixmap(); + + // getters: + QPixmap pixmap() const { return mPixmap; } + bool scaled() const { return mScaled; } + Qt::AspectRatioMode aspectRatioMode() const { return mAspectRatioMode; } + Qt::TransformationMode transformationMode() const { return mTransformationMode; } + QPen pen() const { return mPen; } + QPen selectedPen() const { return mSelectedPen; } + + // setters; + void setPixmap(const QPixmap &pixmap); + void setScaled(bool scaled, Qt::AspectRatioMode aspectRatioMode=Qt::KeepAspectRatio, Qt::TransformationMode transformationMode=Qt::SmoothTransformation); + void setPen(const QPen &pen); + void setSelectedPen(const QPen &pen); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE; + + QCPItemPosition * const topLeft; + QCPItemPosition * const bottomRight; + QCPItemAnchor * const top; + QCPItemAnchor * const topRight; + QCPItemAnchor * const right; + QCPItemAnchor * const bottom; + QCPItemAnchor * const bottomLeft; + QCPItemAnchor * const left; + +protected: + enum AnchorIndex {aiTop, aiTopRight, aiRight, aiBottom, aiBottomLeft, aiLeft}; + + // property members: + QPixmap mPixmap; + QPixmap mScaledPixmap; + bool mScaled; + bool mScaledPixmapInvalidated; + Qt::AspectRatioMode mAspectRatioMode; + Qt::TransformationMode mTransformationMode; + QPen mPen, mSelectedPen; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE; + virtual QPointF anchorPixelPosition(int anchorId) const Q_DECL_OVERRIDE; + + // non-virtual methods: + void updateScaledPixmap(QRect finalRect=QRect(), bool flipHorz=false, bool flipVert=false); + QRect getFinalRect(bool *flippedHorz=0, bool *flippedVert=0) const; + QPen mainPen() const; +}; + +/* end of 'src/items/item-pixmap.h' */ + + +/* including file 'src/items/item-tracer.h', size 4762 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPItemTracer : public QCPAbstractItem +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QPen pen READ pen WRITE setPen) + Q_PROPERTY(QPen selectedPen READ selectedPen WRITE setSelectedPen) + Q_PROPERTY(QBrush brush READ brush WRITE setBrush) + Q_PROPERTY(QBrush selectedBrush READ selectedBrush WRITE setSelectedBrush) + Q_PROPERTY(double size READ size WRITE setSize) + Q_PROPERTY(TracerStyle style READ style WRITE setStyle) + Q_PROPERTY(QCPGraph* graph READ graph WRITE setGraph) + Q_PROPERTY(double graphKey READ graphKey WRITE setGraphKey) + Q_PROPERTY(bool interpolating READ interpolating WRITE setInterpolating) + /// \endcond +public: + /*! + The different visual appearances a tracer item can have. Some styles size may be controlled with \ref setSize. + + \see setStyle + */ + enum TracerStyle { tsNone ///< The tracer is not visible + ,tsPlus ///< A plus shaped crosshair with limited size + ,tsCrosshair ///< A plus shaped crosshair which spans the complete axis rect + ,tsCircle ///< A circle + ,tsSquare ///< A square + }; + Q_ENUMS(TracerStyle) + + explicit QCPItemTracer(QCustomPlot *parentPlot); + virtual ~QCPItemTracer(); + + // getters: + QPen pen() const { return mPen; } + QPen selectedPen() const { return mSelectedPen; } + QBrush brush() const { return mBrush; } + QBrush selectedBrush() const { return mSelectedBrush; } + double size() const { return mSize; } + TracerStyle style() const { return mStyle; } + QCPGraph *graph() const { return mGraph; } + double graphKey() const { return mGraphKey; } + bool interpolating() const { return mInterpolating; } + + // setters; + void setPen(const QPen &pen); + void setSelectedPen(const QPen &pen); + void setBrush(const QBrush &brush); + void setSelectedBrush(const QBrush &brush); + void setSize(double size); + void setStyle(TracerStyle style); + void setGraph(QCPGraph *graph); + void setGraphKey(double key); + void setInterpolating(bool enabled); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE; + + // non-virtual methods: + void updatePosition(); + + QCPItemPosition * const position; + +protected: + // property members: + QPen mPen, mSelectedPen; + QBrush mBrush, mSelectedBrush; + double mSize; + TracerStyle mStyle; + QCPGraph *mGraph; + double mGraphKey; + bool mInterpolating; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE; + + // non-virtual methods: + QPen mainPen() const; + QBrush mainBrush() const; +}; +Q_DECLARE_METATYPE(QCPItemTracer::TracerStyle) + +/* end of 'src/items/item-tracer.h' */ + + +/* including file 'src/items/item-bracket.h', size 3969 */ +/* commit ce344b3f96a62e5f652585e55f1ae7c7883cd45b 2018-06-25 01:03:39 +0200 */ + +class QCP_LIB_DECL QCPItemBracket : public QCPAbstractItem +{ + Q_OBJECT + /// \cond INCLUDE_QPROPERTIES + Q_PROPERTY(QPen pen READ pen WRITE setPen) + Q_PROPERTY(QPen selectedPen READ selectedPen WRITE setSelectedPen) + Q_PROPERTY(double length READ length WRITE setLength) + Q_PROPERTY(BracketStyle style READ style WRITE setStyle) + /// \endcond +public: + /*! + Defines the various visual shapes of the bracket item. The appearance can be further modified + by \ref setLength and \ref setPen. + + \see setStyle + */ + enum BracketStyle { bsSquare ///< A brace with angled edges + ,bsRound ///< A brace with round edges + ,bsCurly ///< A curly brace + ,bsCalligraphic ///< A curly brace with varying stroke width giving a calligraphic impression + }; + Q_ENUMS(BracketStyle) + + explicit QCPItemBracket(QCustomPlot *parentPlot); + virtual ~QCPItemBracket(); + + // getters: + QPen pen() const { return mPen; } + QPen selectedPen() const { return mSelectedPen; } + double length() const { return mLength; } + BracketStyle style() const { return mStyle; } + + // setters; + void setPen(const QPen &pen); + void setSelectedPen(const QPen &pen); + void setLength(double length); + void setStyle(BracketStyle style); + + // reimplemented virtual methods: + virtual double selectTest(const QPointF &pos, bool onlySelectable, QVariant *details=0) const Q_DECL_OVERRIDE; + + QCPItemPosition * const left; + QCPItemPosition * const right; + QCPItemAnchor * const center; + +protected: + // property members: + enum AnchorIndex {aiCenter}; + QPen mPen, mSelectedPen; + double mLength; + BracketStyle mStyle; + + // reimplemented virtual methods: + virtual void draw(QCPPainter *painter) Q_DECL_OVERRIDE; + virtual QPointF anchorPixelPosition(int anchorId) const Q_DECL_OVERRIDE; + + // non-virtual methods: + QPen mainPen() const; +}; +Q_DECLARE_METATYPE(QCPItemBracket::BracketStyle) + +/* end of 'src/items/item-bracket.h' */ + + +#endif // QCUSTOMPLOT_H + diff --git a/Sources/QCustomPlot/qcustomplot.qch b/Sources/QCustomPlot/qcustomplot.qch new file mode 100644 index 0000000000000000000000000000000000000000..9f66a252a9391a49756e2d7bcdbf1769ec5320e9 GIT binary patch literal 2244608 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

Re3|ZyL-tC2Tj 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�~)0U0x~>y%i7k}a@^!>@p-B3E30IlNwT&#Fw#+L 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 -R3_{crr6$AjUvWX$LOKVrh%8hI{LoS+ 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%0DgZZM`m}s`kL;*4DHo@zvnma(hdxSKYPh9 z07F%c=M13=Vru?RkMT*VH5JXxAfcYueFn zThq37TNvPQn}R6^=C?7%zp3M5M8T+zb^+U#rmc}xa|`P=E$xhKQZQVVn9dW0%_ZdP zSMYDXLJH%f0I%QeK9a+x&(?n(3d#Pn`Ww}Qj&?l&I?n~1eFu7 z_}K1t)qm^saCf|W@%-G_)v^1$7jUR+8$*#neA!A6%4j1Ohr`%!i_3wl6sSQ%ueuHN zz_#I{v#D+0*ivoJJHXZi8X<7zh&UlXi zx&dfKTTbbQ1vJLUSI@R>H?RbH-`R(QGw|+GcDJj?rF6JE{@R=mXIF=rVhyz$HoXdM z(MPQjM0L5x%980!u_#Gf{)Q1U|};*YYFRDvlG#Da<<5sU$iRx8+Qfn_2| z8YBJ)oqq40v-eta4F4Eo%r)0q`<%1Sx%b_^ms$7ixAxj=@3Zz=bI)&n-}uIuP7n{n z^-*xaupwWZ;(~LZ+WeF5afO9F&TThVhqZrL&fKxY!oG{GIN#L$%2v8)4}to(N*-bM zUTuWO%p=c*tOfxptfXG*(4g*5FchNXVAy*g#GaUlonnV!5b$tSz=A|3byQsnnoDcOBX9il1&<&HBz%(3q0m%v>wKC zfhZrGc1{_6y~H+pW$jRGx>fDsd_C;1INu8G8eaBRn)8RN*T6NJW|?kJ$`59BiHJy}kjpS`kR47Slqh&|vRxVJlFg@e& zhLvj@p4|-3Zi?*~9j_tZzUz%c_No1{6E*Kl|8I+SCwHzMw~VkQdrTWRoH~PO4~q2^ z1g`u+_qNx@H3|U52+ZD5A8Z;T767o~wTqHp`NH3mp}twD-_oUtC;7u4rY_;BvL7(>11V4PEvO+mP+u#QFRj5R7ZWIy6!5hER)b7FmN%p z^BuMwu)GM(TW*o6l_izErv6Ius)IzdP&Wf z(ZT@L3NQd|@r@N0hM!L%gi54qxwDiCF_>~9R8lN0KuxGCzyu7rB=3+;nX!YzSc}Q* zNFFlqcQiYYPcqs0#_XUtUSqt*O@Z#s_P_-qVU4uVAe9i8X_(nq#cQzItR_Y?PYb2xjj04!W%O*Xer1Wz(hp1 z&qTM2%)mLJf<{|qS%?o0kZMxs3pJNY9Uv98LMD^}Wrs4N>>)>%z11ViC8vW8PcR*< zT-)%(hNH=|ad!ag0M zb|i00{_3fx+F|Ft?UiSQtw5MNWm-W+L4czBjV0ah3Ral^bgQ#0Uy~jvU^QzTaWWJ~ zLBo#l)h+kLK#XJ|_qrQ6h*Xn-oK&hvp$ujdbugJ!tH`7>icaKS%ETmsA&_REk>b!; zDHErfyiijt)sSRq>@bp4(wN%T+8WbD(Us9=+po|AVG~OYQ)eqxScS`>fS49_gXpY? zvPq-&-Zj`6vvQw!dqpI&27a_)s4hAB!id0I~7B6gw$P6DYb}FfyywbO} z$mhZ`+JF#CMu-jtk=YcEh)pJ~hFFwmNd&E=N3>|bA)Qyh&C=-0YOOS9uZ~KVQGo;( z1RzULjFpOF!ID74R&dOkUOHHvJZHz@FzqwG7X7Ry0yk!RU!dOX;JDZj(d>qt5)?<^ zh8)wFd8js3+#E0h(>|%;uF=ml(fHF{hQ@bhl3M7BIQC4j#oE#QGI{ZuI*N`FYCkQ{ zJu8CP!(I$v9WT7My?kl(k*?7{`1B9V`xbKu={Gw23|ry8^v(dCgLK}o#U6#2rL7cF zttdnx6Qo+1P^yEXl@T&x7)?ei2MnW?8jZ-e()ukWqjjn-}tSuC(SZg zJ80S-qB&0dpZnQ6?~HT~fn8acy6x?`A2_pW4-L%3<2t4)b#)9kESxJ+|T8Oh2S z0`vIXx#Wc_{ObTxlu(KSDxyglF`H%jjKf>|RafBK6HU}>IyLZPsGurby zAOF$#)I0mtr+)S4KkkmdDs_7lx&9y3!g}f$0?^lqDQ) zo93`pmvGo1u!qJi3bq5j)KGzs-PdnkFeB8T{^5^)!>|92KlP)B&-&8e^asBG_x;*; zKRQ+v?bp8XTd|xiN@q=mUrrKjiCLJ;KV35S6kq}c=DH|4YFH3S&V_Ctbq!$#D7xZsG?zWSxQRocrwl?&3ry5Jo1SLnr@!XsnU%l&PyR3W z^n(}72w!}^dh+-G_01pA_0y0XG_GeWVl8FXP8(CSw!J_^dPV9wz|_)7bgi~~cGyrb6_my7y>GS| zu4*Epww#hg#B~@aA<*}H7BB(#74CcCjPU+`_27PN8)}<-8a1o{1hfB@CJ z!*S{$?k-a|<4~xL5lUbr1;xN(#mxpDL{xeLVwvEGC=<$rGEt5;j4Y$c$a1h@gdD6K ztQ=9E*)W>ijOBV9jt~{DeWbh1)1DFTmRPuAge4~cJrJ%G2iwfG+V+UkxVTbNTL-+i zz1UI>Z~pN6f8FmHe*4GX{D#l|AHVaLf6aUT(3k#K|MC|+U$m%hrg71$k_A=(7EwTN zC2`R!7$q)xrnKJ*0%4zVx26Za#3Jk6Wm19d$U@tLj**47CwH*DamQh&L!otGRwV2&DrVJUkC?{}yMGRcl~S!t zl*vkE86h51^n3sS0oMG{%E8Krl87ibHXN)RO`hEh2b4-+$I}z4#tT=rnyqoB{cDK0 z;Bk#e*POfe8q46wlDwg-}Wbe;+wwt z3!aM{wB?Xayfpi0IQJ@`rum^kpbu%jpiCxOAQm!$dBIYbOb?!Gfm}44R=|N__}eiA zrIvuWCwDsRu^YseVZSx<$x=t9)X1+0@S8NYbq2x{aM%S7sbmclqW!{c{wOGC{_TK50BSc*tT*$3$|FcMa?#k9TuVhK>BRLsKZk;7y% zF)Gv?t$4v24gd=AqBI?KKH$Fg zLZ#8SrC*(3geP0`k;b{?C2i2yXCL|j+VAfc#&zzvj3%KVvnoA>&n5Z`6 zT#BU=a3HcRc^U-{(w0sP*l-?{ix+dsbizFa7!>|nC=8xkUF0mxXz z0tt!%sB@7THcySH&uxP#Qc)^IQ7Vdp6=g)ZM42cJ5l5Dzm5JqG!_nlx;b`S1pfM~q zH^*{)ES0hr+Iw`A4jsz|2ye5GwhPw}Wqr@;|E+8_Jr@3N=S7vz2f`n__XG9tsT*8; z#zoMv%XjV$pS(T?jqhsz$@RAb_$RKu?e4?oUghxCJ?W>h5{_kSh1p%aHI5WDofyr-^wt51EZ$I{)c2>W7FcAKpr{4iUmr8Fx zo8PiS0GubSTpkvZsXx_JO;@-`w)JTcfyRz6A}ltu%hXK;3Q-hwg2+-$D$2w%Sv-y` zV?Mgk^nh}-;b3yW;M(c64M)gfEZ1XESrWtsigyd7Eq-;IM%srA`@o@X5OMqO-3A4I z{Kc7NK6lwyKe7E}xp?Ol4{shkK}HXs8u#zKJa688d;1la9|ADiYCxac$!}O!uUdFb z8P<4AK8ShuGIM}Tbc|JViYtcnIHDD%i2zpEEg6uKsYhJ0gemvLUb$zvWEqHXnFa-% zr0!dyy~w1pTav=2l-4CjoPDI48foU^8=My+r-G59v>s%V(xpci%NTn-TuhFZ+uA>AU{(zpy#vZRuA}{^6fKvA3s*y?5qB{Gxl+ z43-0Qd)J9f#KsYqxVS20TD2h}YK;Zpt;wWMk`5j_jkN!F=yo2KhsFM77;*x}im_rm zq7v%q7QK=sxqL<+&)MF9_M_{k=+@z%ZYJ|Je#>o4ymvghyzhY9+FP4FXZ5S+kw#BX z*3QHH`8>MtAvPPtf+o%Y=`mdibX-CsBYfCI)Ida*YN99;hiWo%=-8oKOv}NBk#b|h zh+vAIk9e@Kn;wqk`Y2IPxhI9YrAE49gm(+1d1dDfTXr$s>|F81d)tc?-TB7P`I4XY zH$L_ghp+pbOW@g$eeD1KoUi=Z7ti^jHD}(>Ljio4kF#X%0bnzC6b6+F6^QPvae$0* zE>IAj!WU}lkVzKu=a8F)p*|A)BD6zECGp>t9wHlGCI_GAjeP+@nB7(No zNPB6NzBn~{YIveW{iXoI++dn$)ABg>F0Gj<#J$b_Im! zLfH)nfdwx_qGO+Z;aKR@usSGCu?+k=Sa?Ww*tU;J99wSwxXe%-m#ncRZ>V7$F^!mj zI@7_98lsm;PhB_7A6i}d9GbJVja7-KyjQ@}Iq`dw zo>r!ON{O(dA5Ui0jo6?NMZ!}frTJ?}b6#koEEQ#kSb?OXT%e2`sxNSX;fiv!;fll2 z$^o99Kiyb4q8wNbRt_vjE7!FgY8el*2pMh};feqN0oWJzjBqv1^q2Ftz@cq$@%$L! z3l-h3zUb?JrGCwazyF)Q=j%TEVq0739qr^OEOW}mM zDWz+*^_H9RLS3V8N52Z3YeV^oG5w6-g7ivVrV4~{O2AIz1HZK6k7L)&HlUE=_6vVEDvY{zk9cGPZW4zmvo$~J4N=r8%p=Y z1-T=xlsodu;ZS)=UYYE5zbA_9SVm!`?4*oYwyg>$N>xwH*HwO@Q$q!-h$=!FolT@L zdPsq;j^6oWYM?lqZ9^vYjfQ^-jrR{&_F_w{y$$_pLHM=~(lf0z=eHGiT;%L`=9-p+ z(XahfQzq4l>g(Z7oF>!>;}Nw&4~d8k^A3rK$4s*|L7$%b&499@O;b?NS zGD4n(f+|Oo5#<0;uK?Xc;LzdU-Nu>aHCk-6=~e?mEcMbi?^}lH+$i;lcfXtpAYZxv zpl`1_&9<-9Th8YN^s43XFK*fDe%Xa^-|3z#o@J9jxMOg^OJYx62`|Y@;U$?*aY+=% zxsnx1%d{%YHm_f?aFfp26wNr}ybvA(bO`jPx5MFFHEs5hB4UK`G&US8KkvW%vv>Ea z|KltF$;VyicmL3T`jVDm`X$%x$^3{W%=BP?3u}CAm6JtVu*O{VDJ-U#mC|5@6?K|5 z(s9HTSZL#jsb3<#U)pKxmW%H<`jw&jWg$i^%4oasvoG7&Z{SYO(#Eot?UeDmnQK6} z{Qil%`<2KSJ?=8A{?7ma0ogBUJwo63uBY$o)zKdF+D&dxSEF!uuyx0;+if^{>$%NX z0E0k$zv$6`6&CIUyMkT8h2X;D#EPL}P?Tx`hZT;6!-R6Q!MBfAjwqv*BVzlQIf(AB z8BLBTN0Xz;5oH9cM>bb^6n$s#3weh(%5H(f6-|7WHjz6!)|0c+SWmQP7+z*6tY5tU z;6fy}e(+fIq!y9s6lLr8Yiq=n93q#2zK6?Wid8*iv7YnYK(+J%Xr}(x2$QNoZU2uf)>sje%_z^ zGjY-G>{mbf760@@F6Z37;4l2gFSW$lKXQoSAz$&A+i`1vL@EQ_o|#XskWo(Uyt`#z zG{amc-NT11QdmPB4IrFGj7N;4|FiMfEfnvtcau+#xejn&o2{?t)=a7m1sf@BWjkVs zF8Rm0WO!R^ zW4|p2^7gp1)b{UcPxx3MeA@@BXkWhnAi^?ZEzB@~`%W^o&dImj-#zA!VHJCw?eQIO z;#2@~wPT*mcJ`SagB|Y43u5nDsPKk-X1pS=$V3-+bzbMyXAtqiyYC$5G(o3>5h@K({A<7DSD5kL zKlG>X{E*k6==PJZ>Y@U@G}?=zB`<|6>0dWb<#Nutc-n7sslT3+1yBjVl&G*;tnTax zRKql3s+bZ5k4KDqj3cHajw8n%#=VV4U%NgRF1$%l+^0s`>@zo=iF7iXy6r_lxK&PI zXz%mX`<{N)38b?E-$|oiNEX$JiQbWkeY6K0sqjaA{Yxyl=|>v_p;gN?8X8)?U#9d|Zf;4onvu{(y- zb39`2xHxh=V%*z!$-uuI>7cl8(kQtzI|92_rwwQo-A17H^=?|qA8E@%G1v&Cwj6zU z%UD(r)VvqO?ro1W%RIV0Wfvqjm@P#B`g^ z$h6NC41!XyE7%XXDcBFV7;w46lY+|~uL>^3Cc&<-PN;%Gpk@A72Iz!RQ1>VY=ngV+ z7)&Q8f-IxeBg<%Yq)hQRjVu+MOez=~%BtSW2!z|=LDaA%$r0v7QttJHK3W=mnQe<< zE*)9lpBjc)_z;2{&mgyWOE+zZ?CACxHov$~DST(INi1ht0TK$Cz=IW-6o{kX1$kw> zB%dg+g;&ah@Y?tWc_2r_NE`)6!%;9AE`=9XE?9~cV`V9(l`_$UsvR#>Y9*^_TbrUr z`h?p@X)DW2nn>@R!q0kN&L+H8E6-7wUW4@r$rJe3cpGPg<7%UmZMrJwKo5AmDJ0*> zGQT~xOAJP{1q)aMhsO#lP+=8zgpJSx^gz4b>0yV%1;!D_1I8W35yKAS5yygIU^!wO zY})0T6JAo(N#QQdHG9P3z^jtq(@9d;7lg^Ea}R{~n)FtTujBHlIQ!BWgeL&;N5t=pf-+nsGDxq2wND5To(%*r0}hVhcT5ndUO!lUttaUu`C zEgX%ba5PTBqotL`%AQ3`Oq5orL!e;t!Z}i?mGml)DUfzDDS*yR+P+kmT(NFW1bur8 ziubhh6Y4*0%_Y#X#J>$u>(Og|+W4O=4)(XRdz|-hM#mWi+p8Tq_HUe zf$0DhR)LBYp%&ALr9dUw;SqyattB=ngtTcBs{4q)hOC^rscU3oD4+FrY$^ z1ksx>4C6y@i}7<_U>kqaF8unQ*{=9tiSxf6|IUZL<$2o2#zoP-zps2NW@uXAACfY< z=9vkICu!dT%vQi^?M-W;V(y|#I=Yn{+&~klGsJMfFsf&xaugW>&jLFTZvZ1P0Y_p4 zCSnAxh&^otN6*KvyS*t*qUa2SCZte=rep~dDU_z9S}tBl8fiu)VAM#Kqyohu(638J z6Z1>NOVP8w@Gt(+2i>*vORTl_MSuChM2yY+<=riawbdP!gyB_qdf>KZp7z&O@6hSGF zf?6_TR9!mdkgHX+Jj?+)AYR$eM{dS>>B;{r~e|7ieU+XEB$jt@){{TMgC4a zP3EU|68~)8Z*w`LmbVL)xA+hD-&cg86g!iS>WH%e0>b6IRuIV6*Qv;Gy>@HYQYo% zlzCDg8;u%%LOM5z2qXlq^iMa-toYxZt&hiGJ0!V1%{)`MdkoZucARxUF}zas2mRl4}&up4;U{ zqj6gbIPd8g-aNkC!v7ZAtsa9v%o?zDJX?yhy7sFj+3IgTUjv~ z)E^Dz`v<7dXqBj>iB*9LRcs(3P_d!V#I&*&l)-dl8O;XP31xx|C~EW=p_=TLjIct? zU@n#}8DRrI?c@B*CbQ&q);)XmrBUs;oj147)Yt}=6fnh_m3sLA{&ySsv$n|0+)K4P zSi8R%KnN7U&QVaI0vj>>jP0t*1gJm&00G<;l`($QWP~OdH7MgHp@LEEikyf`<&J|` zp;dUukcCodLaBr)B=FDI&EsqzH8?voQq9T?fz#wmHaHNHLxSJX1qf>f<+Ve> zzUJs^W7N9ib0uETEqr48#7-u*ZBFcDVp|j2#w3~8wr$(S#J0_o`@7Fmx9a^D-Vggr z_o}X4-FtVhRn;5zvI6bZ-S;)~&H#tAWkeQqPgLMUNa229^ce{%>uD7fcY1 znjNFv1v$A$AR;vcw1M3ERLpvI7)lWP>C6r9Ie?)nB#`-N7a{ZS$ee7oD8hL}eww^m zAo3g>Yq~-bVN(!9QxL`kz{0NpE+n}M>*qW?OW#3gdldlaq%ixp^WC6{u4k9x+`!{P z*%2X-VXq=HY38#wRhSD{C&4k5QrG$;^kLNf%dNBeU-*|C1@0bzIzIsII4-2yj8C0Z z{LIl3Q;q`zv&|_PBZ0P;Dj6p-q3wtJ;S6+IJZ2R;8kRPcT2+YelFTUV$)Tu9B88Mw zesO{DdUoS6PQ{FN*x9ms?DM4^f|LBVt@J zAL*{;W&L0z!2)ZeSk;fNjYH*A+F?PC1y0af^uU1Bf1J?8I|tpS)NIy%_6xPmXW0w3 zO9$L8z(Tpg0V!~K$&jP^N%WtIQrR1IU)Gls+AB-hAgQS1;()AiDuz`sZZKYk@OYqk zGHtvuuQK6psxioH5(pRZfc+2^`DEnq3cG5;xx96sq8u}@-JF3}&k2jBXw7Yoj%CqI zY)S7rUKDV}fj#tF`$S>Qx>bj?)jX$_H0LVOOGrLpodnLIxNTrt3n8Wqy36uH8PZ#l zTE2DOsWdfWFmCY~UWG`Au(=QmA{j#j~V z(MZIh78iVXnM%84Gmk{w*25=S-ct*UCMx_=0*EjHaP z0QxWc-!WDI00G_hy$bs+7~udSU>z9ny<20UB0bfD5@DZ(Zno_09CFx9~nW|33z#(pTB79!wlaGI5=_buxPnZX4YA!dBS zZpxv#8z_2X7}&_0A<%Aq6N@A}4Nx)+_xzDZiiOxB7r}Cyeg&&C4atrtheN373ovUB9D@&<`CgF6D5~8#D+)A8-O=VAu>VVdfep1=kB%W zhF&;LIcI2|b1h?n@Vn9zxI*Y>i-zNZ)nyZv>JRLPRb@It#v$o64BQOlb3{RgrQgiF z92aqIpgj zNV+OcpbZU`H!ZcUsL_c8SOJq!#5n2v{p{;~6nNX}f4>89+h2Mk5gtSpNy3^I9?*)5 z#;4M@b{&()hIXlyM`K-Jl9wl2D1c^rS!Z7F4!Ba!*H8E-UZ$m)DPXB+5M5klNO8H1V2H@t~xXCPP`1y}q#pib{72I<}GjD~i} ztjK4HC~gaoQwzq4dXNZ(rG)Ah?lJ;@or2Eg29rS>C8gEib$pMoH+qk^Y zbR^=(1P+7T*gNxLnyky3bdOf7JK$r(zC?-d@@;-h`2+(fGvJN?iGXeDp0{abQF7J; zaT;jd^%z)p(xox$Un zUCAcvb`&6|^Ev=y%>)(ICNAo28KAg4U`feDg$AvShE{b z1aei>E(^hdWMhBlbf`kjQzj@focWg*(6_7%yEGMIt<+D{cKHd1nHA7)>QKbjPVihc zlp#OaVS`1{?i~C8_2UaKg+4D?lV$Jrz~GY!>=nxYt@EbGrdE*LXSB8e00G`*(aEv^ zJ7XsDXi<=WIvZ>KtN@<@NPq06v_t-Jy$nVW1HsL_H19i+51xd|w^?Mhyt#0=M&rFk z#Ja#JC)rW0=2If{RwlEkN4pME7PO<>Bqjm>o2Zqno3Xt&rx`+RzDGD+ngOZI*DI&v zxQdRwnBH|aWBR;TfHb%Ykydike$&%^A5*6(&IimY-$RE|yd97ipNr#(4f5@pQ?A?C zfmDf>YP1vWc5unCptha%qAe3glN(Ydi86tLQfc&aKZt-}6d5uuaeQKD+!Zdw3{;nC z1{byp;g-)*TGBEMjw{01{bvawenOb^0&^>(%7mh6*~fy*Xee5o@w^Ua-fNp z5G*7B1C^=dObP#t)_=9w(nyu+d_d38K(4xuI^Vo_N}ne}ITl-=Mz}k9umDHCPlpSp zo>o^ulMjzcdx@^(7*xvJI6zw$4lImNHDi&{$sCwpmir4XBbq(i#wv=6J%b9p)D@3n zHTwuM5uCQmL?9*Hu%Sn7B!)n?2FFpr-K)kAGAq*$s+XQ8P-7>^A z+Wdmqdi>fL*aOOm(bqW#^W<&_SqFu`ooPQOpg-;kyS}o=>rklrosku~f>_TdYRj!S>u4W* zpssWwKCtS`hz?=x93w^OKwm7&Tl%_wXyBKz8Fgh^9Urwgcy-V#f*e@BI~^@!NK*t} z$5#`&cfoO35IlZ>h-{$vK4j&f(INH>F3|ChrQN+kYqXUgK7^>KP3p^(o5RmSMgI-j z0^Ph_TFExyej>aN_I`}=KpV!fkeW5dJe+P*ZwF8oTal%CSx%8~CP3mq?SY3o)1`(- z^d%l%ZVo}oNW8&L5vtWU}4s~nc(G;vC%%AX=?Sf@nl1Y!XJo#`5PC4Vp zLNKL#Z5MmT6vE}n{Amdp0`O5_<7(tNUdf$Sgb21`6?JJpar&M>;gf)36wvyU14G?E zCWDqiFt?-(Gck|4BuZ4x_y;_T!Z<>t3V?Zlk-|eeQe^F0UmPhI4<3=7<>3)7Up+C1 zd0I0957XQbEQz&II9LR68P^C-5@)9+OQ#vdgRp3Ro3K$$yqkfOm(jzx(})OsV}-iy zz1qGY2CSdz1C!L#M-?ID!rKVT6DY4+9f0Ei00G}3j*A$Ig9P#W0E2ipjQ}m-xUY;2 zrbDS}SCCUFP++sekOwvqC=&`bg_neEZxpKx5W$$1#`%G06#GN_oWP>h#<#COH;3}! zpen*%w!}_Z35%NBUsSArxR(OH1wvap|Kg~a4`#@;W=C0a4c4ode9FM;9p%c_4H()7LDASw z561uHwR6Ql5vQl@MQ80fcENfY;UEySE9B9}E}mN&Hi5v5$YC{p)>oE_sO z$r{HZ?UQ>2$ZVNm29C|*&IoZ!g)H=v)yc`fN&k?~<^LwObI*S@dPNQpOucazZ%W^J z8L|%zYT3F@+pMNuqr)Pkxdd~4DvV_`y%X=qUXVz_o)$`fcvE`_octjv0l_vnNglcv zq^Y_Op0L08jSmP|u0n^%Hw-LBmMYhMH>;9m1omaK${Z800+n^N|04AAQyruKpwfO4Nc4`J z9-^`<0#8g=%!gM>t(gZId{!-pC-w?nBrkXnjPCf)=y{7*&tF^^Jk7N}UiAyV)(U*R z&w%qv!Pk>mtn?oa?5+}ZE0k0N}Ald*Sw^#4~rrF>i?w-{4T`9n4SM~c+Bj;s%{LRpDsEwQuVMeL8C#$-RG{a?P@ZoijXmDqjDdhg1s*UM>{1ftL`d6^c{NjE6*~ z1i_94yoF@JnA?@X0z_mo=*kNyj?vcoybpC*8}hf@G)weA?LIxo>s+42Eo~TpWBJ;d)SU6zsPnO|InP|EYhBhs|l#f?>xram52 z9j1h@KTP1mXSV^YsD)bu!Nk*)!8Sbi7uO~M3;OEzSWJ32q0a_hxZw7vx}K8Klec$uWy#z%%62x7AWTHwjk4rC}9oy7}b1 z0k$wzN>??fyOJDs)y2^7s#cLFy2OoTd`qs{|Kt?2NGRbYn@s~X)QpWC`&oXg!Am3R z=%?XgnKRG9s*br;CwG#XiEhcgP<$J2=)Fsa+P=1$RTlj#R$5_)S3IV>yw+QGG)<&yXhER_jE&> z9`TI&0(TMa)&qf;z+m#!e^U{+xiM=iGkqU z&lu!*A(#UpY|*s>X=Sv3hA%q70t~*xR0l;%@?EBw^M4pr1*EmdV=*%KGWv=D00H6d zSs%?^r&e!0b$4IsyCH2zoeb7ME(k`Me98WM=K#0ssYXfCNLyUDM{%OXS6}J?i?J(A zH~SH}yTXykT0R@Ejy}NAP~;02s7!(vrsBm*A{_FpPEq?u(`+$I33I^4`lIbwrrf;3 znEO-ilOKs>=(Ha!BO%Z~0S^npv&zKno5M#hpzeZYUh17@$$T)Ez5|y?5~k4Z12f=9 zXp2bOO08*RXe>#M_V+maP*Eu!Py;Sd^QkVwF%7M3lNq53e2N~7wP+sQH!?%!3^gxe zVU6@xjQI#PHjcU1yF`ksuO=kMM zC5Ht$av(@McT+79+l%=hj@BA00{-OvnWJ$&>Ae8zov0{OaUYP38r&vuaB~guJF83e zwVa1ft+8BHrWlii=GFql4CZs}(8R-g%0Ody5Pev!1#2i9r#P8Ubz+D`KgTzgMc5`V2f>f* zz1-y}SM{qFms|HI=2a)K&b&QqpD;)%5a@yIJgyqp4<8nRR@19lOmj~USBpbj`NT?N zI9ZF`cTaIxxdORRM#{c~Sux5j&rc2ft`I2`Y)S7@9FHN9G+BCN`$GTxa>L`4DKOB6_eRm zpIvjA0l1nrjSrs>87pczknf&*ZgHWWp`+d1U$qWu-MRk{q5WuUi-n|%{LMs6L?58i@rs7K z4;G!97xea)M(Si*&Kz$}nyD@5YF!qRK_jq?9~B@5h6Bk$y5cVxgN(2%wf$wJ)O$I4 zjoV_c?`idT=H1G=dz_cpaeBPFC>TeC$mKsVKNOkVuM|6esn{Z%D=bpNLQ&{c+4@9o zgMEyshMtGY(QcUb2t}p@2Yg&Jf(Xn*OkPffab~;#00H8ZRbii$Qxd+*f zlKq02a{^iD3Nufiglrs$z$R4S62criQC>P_rkUucBDOFbSf$oomxu5Vbfn6bS^yr! z6>rd3z5;evJ9bYA87&$?fhH%c=VOoC!<^3T{ePTwMc{o!>|>d5w3Z}3yDqpUt~s~K zPW=&d%>~qjj&2cLc+!0EVpG-zn+xdHqABgqaj%Ahj#KTZj3Z!B;PX}IJe0v$XBpu2 zrrEr*Ko_3e$6#qQT_+`DmMXZhb?A9F$DP7Oqtkob#yN#M+~^s;83=>bHYfNXtr9kJ zw7;8+&;(jLL|mI&GjqdhhsK@}#(Egh=``_dEVMghbdmgo_dTVJMNmKu{wa4aYZCRw zAzg56SW@1ZP*o%A%E$4f5-xT|Akv-LWS2!sC$vugu=bqA;p~vi#Z}S+!!A1aX7g?| zR^SwdAm9JIl&S-vX%zby9Tt*IO-&d3_=D=Z+duF7lToYM6=IJjC3>rE>JgQZKsQ!}1zkvAZ1L z92}wA%p}EAajnfa4vK8Vk|M_GKIiF&-mEpV>7^k`N)(ur_2On26>po^E>NE+ns4hX z5goi7b_(m@8?a;;a#i`R!k2w{mdFl;N5ILDv=?ePR)imPdc{xg!GN>3v7XWb#k;~0 z@{nIKDjLkQgj;3d+N}z0L||9ss2_$Jnc$w2grZZw`$trUnP-`qMpMF0L#2;DB2Dmh zg830H4_&Ja5L!?IYh9**gj6?{pIk&+5fC51JcYmV3viR$u2>5}?vuFzj)(E^zH2Zz zKw_88@T-HX;iE6i6CsdY=r-qLA*rzBPl^H@-A~*tRT(@qdgd_7#<~Vc^Soc@1?KDp zX>X!W>z>v=9?n0fo>ahxv+4mxECQ|F<~8%!>n+qc!TctCZHkdP_ylMQNcE(!f@%P* zB6MD?8E@^l_QL53@sTRA@4wtuiWHf{3t9ED69ATN4dICXCgU&xcJ8UUJPJuhPF99y zstB#1@2jh2u1TL&s&DD>Lfcul8KNe{Da;EL2(1#e)SyMVjXX&M6Hs>=t%ygvRa=mb^STsDHY3RI`ktlr3 zuBoJfL{M2@8l?&)mRC$&lWsIJ0$K`ADHeT5Eg?xwog|VDd0v?RBNegRKVqYlH|Ox3 zySY|=#g9Y(y0%OI4K6{Vc6q+~B~hA3W}PJjc~T%xdHtnPz80C6j@)hirH|mY6+q@7 zh_kuWJekG6aRZEkbndIhh&Z_@OT$nrqQGx~Y%4(9sY_1KlA%#lyIuM3ms8s5;a%di_!$_7%KoKvk-clWH)DWx=gN8*lO}r#zUl#JQt}<+JnZKz% zq;P|H8${#CKBRuv>}LLfGx&Fd&knv&h&^uLAAsin+XZ;s`C8H3^hNkjRtnuewgO)J zsJ@@Vd+vT;>3Mvc&lh`d@JG>yhJcE5U>h>yXGE!;Cr2^W0(u{1!|9>zD_J1JnZtH z|8l?h9+u#CQ$dFx*F9iy(z&nqUoc>wT%)Ow;fgyp5AWy}N`rOoyhW~K*dg5sgT;hO#O+)ZD6rWq0kU(p=Z9?sQt@p|RkwY*mMBVqhE| z`G6LnkM~#Vqp?HwcYZS#UX}UjF6x{7{)wCCo5P7ZL_lVyL)RBFzyp!o=U!b3Fza`l zka5025qlr9Z00S8s4q*l){<#Q%E{?`t|acDoM+zO2-9Wi$3|$I9{S+PkQqAgFK4AH zT^CGw37qp!TD>jPLv6a-dX)wiGG5*!15*0Z6o!J2z4G)``)oOL$!`O=&`zP_R)uIyz}86LVv4RVJ?)2b+*Kxy@F z`(-apS@$~6pAW{&jTxA*1h8HVF3af}5bz!D`CNbOcbR>Q*sS*nWbQVc_4 zqdPYU4KMawkxl;;mxrQ$&Il!>wt<%6U`&=1kT4ykRkK~py5sNQjU-bgQ1;|b)?b@z ztBq$g02}4LSf5bM!b1u<>4G}_h zvRk=Qrf&hCeR8~2DcEVJ5y~0%MqpYKU4mb*ovZk%JfmV!8^PHtR~TGVIHCLd_`fRE zrX;T&heSr;gu10o-oa zoP`RqpHf6#2V=%L^`gvT44W8rL8GNQfcBK`!egxNTXx(nLQO`~;D#PH2Bn?%dkuRr z2LYB1#uM%Ng3Igng1wAWM>~E13(wZ!vVLybTVCz9EI)Uo1xF40A^MJb5yq@t)r+@{ zVAb9Zo`D+PZd*CLaYlSmD=6N)4yL=I#GOW zbC45886Q-XzhFqfIo3KLs+b}?`;7>Yc|k{YEZbA*DeX2t!w?*!BFzk}rW{`!9(l$w z?EgNF6=i!c+^cYmc~V?|hHt$e+CN=S6usbBXb0%PCsGy7gA|A1WyQCz4MURVc=2gW zuXdS#k(&~w`xr)J_LwHH3Vd51CaH9A7dlg3-#1{F`B&LI>g0eju4J?P{p%E5_R+Uf zbeRwQ%h#Bh%qTNYEW)=VvMODBpczF)CRMGQtlVPBsCQ%h2?=clUzZPBpz0g*@S-As zVJZ`^`+wdAxjkLx=D-8h#BK)|BgTrtP7hUCL+3)oAYSEwEG-b={EUX zD$OM&)tTW)&sG6QXV9{--%GcGLak6^PxF|M<3ODleG5_tz2gQ?tG!1cZ|F5TgN|9f z!rV7}O|XCM(@LweA{npkA%h%ljKT?$(Ow_d_UDniQBW=0OJVgu>EK)S8!$^<$GxQT zEhB-rCS-ZVmJulYnO}7Cq_~6i>E!Qu?6V8Ls88zX+GBGawev}4Hae?}yP~HEvEV?^oT12 zyUTYSJoukN(ur)Y!QT?_=9Zly zFvsGIWzR9bIMHpv+4u_;#(UmGW+I+ooJK0vG+!2WL1{@5j2#7urR@N+!kdcua|Vvq z$H>%+V$ru}0|=?EzIEU@eU#wEn|;{R8AN0IFx;oX3}BLOLd_mTuqPzwsI=pW+sWF6 zTeTd4&6J{KiHk*U>A%qDeq1Rp9P{i_JjJIOQX$b3Gdx}=cXtBW&XwomW~>U4$1?1C z`QsbphP9 z`zd5R_2Sb&8u#N*HNWzDItPbBTAwoNry2=r{lxf_691+kDnf}~o0Q296(^IK&D)D{#lbvjy5_(_ z)SM0H9o=t(Nn=~zhm3GgZboR=G7QD#xRyPs*Sq|WiER{$&njt}UTg*$*X8YrjbNWq zJc}y6{ExQ1wA6i9XnqA<$HrKkTgp>k@3o>hq?DasBq71}hQ6<)R#(P(269cXPdBJN z68J1$*Svyn2It3yw)x3^GZNtGwk%i*(@Pn}SQxx<`=CeK<~OAr0$BkoMa`>nnxlAC z$Eo)^rmv$Q`>RNPrNiG~|_G zm{ltBP}#%q02LE;w@;kLYBep`%L^AgyE=nktB)@^CXMMpGwz-+;Nv=t*4gpLhMv7q zfil~olmXzmbH;E=a{RG*I7bB4c4Q-seXEn9W+7LZ+R zxDHl=1SX1mS&m+yh#N?TBf7Vqaiq7)n(oy^|H%3g`fyQdkR4tU7Mj+rhh%AiP6GXxLCH80{e3h?Yz&@1;eVRFUnWA3g^<2cWbYr~kTC=c ze`(e771D6DS4PGK3q1%8x*f^8HD3l{39GhFKMDG>!OarY~7d#b8)PP!0%qo3Q! zDm-PrdXG7lk&$npGPXHXxwO_`jmbk`pWDZ$H_gUcvWL(Bb5`}_Y6+%1JN;WTb zzv#XJ#FMviE*04Q5G;6)?XPobGUODVDobXWq@h^xk(bYRk@GkLt zQ$Tgi8?+z15<&G=t=NkNrf_Oq4Fz~q{HoI((0?eOb-^BWhgq{mVYZNZoc!EofOE?q ziurO8XFd^Xxcl>NVx{QZ2^&HUCFV`L)~p%%o!iZY(t1>JF5z!7Q=x5h^_-QM#U5f9 zL|rWmOGctAJTJ=_6l4iJ8-gaji`-Pq3CW=|v?S8Uv$ADUwrP3r7Z! zz~%pRpZRxXU12@*F`8wvRQ6xI=4XYO@ogTCp7#|^o0XDXQt`D!tPx)bT;CVSvk4J?PDeS; z0=q1ptM9#6GGfn^;x0r2*qiQlwpGn}DEI0E_IWC4BbvWz|0p>mj6nC-Jq&Z=1WCqg z=4U$q00HOaK*Dke<3ThCi`L~O8Ac)+!r>+$9T-DEOT&e6)df)C#IMsM!o$f*Q!5k` z;n}_73j)utAaURee}~TZqe3_DJ=F<(Ew$!!HtI9%NAhjglsAOB=iqf~dp5ur!FkD%$BrCswz0lserBPI5c?}W9RY{A>ZgHr5h$?BE@t-MP4)n5m>IgCqkV(6F z*!$=;OwAzBgBcmgVhmI&$xtTlT;!#1XA1wMcn|kR+pTdPXt)fn!Db)Hnuw<^7hK-D zq=Z^gkA_^a>8$HU)Hi%L%!O!G{lUNA#VxW$=Z#S-gS{HEY3LzQSwuogB<1zEQLiwM zaRg8*tbi{elW9ZZ9=~OKxF27l2EMA7 ziwytKfN^;;5v{gNATZ(=Yl%)EjFrfr&YNqO77|7)nul^E0LN#fXmA zb!#%3KbI@#y@gB&7<+R&F@V4vmI0^Dz@7Pdx0iV4!F zmi?QNeE&tjL``26C6Lrykp&Iqx6GBXr=pf3x7tM=+MlGQH0XFl& zY_t0+N%Xr0PLBiPnq&{tS{uHY2)M07Ls8vf8bBEQ_Be6%K}Mfx?!r;?yMM6jmi5nb|Wk%1DUsKD>6%&10HvK^O4e;DT*2`2fY1o0=>y12**+HJy9E*?UOBWhfPl;(T$g1T;-L#Z^5<$` zk4eCt(vg>OX)lk{_rRj`)1{*8CPP#3PtXM3U;Rg;W$460u|PKzVh@v_0C1)B0c!wH zd%U6F8nAtB@)s_ZfgQ#=VYpyptVaE}z{^h&(qTu5!3}ZxB?sqb7U6XXRpmSdI`o@k zmZSQpm@|mjvkh)|4evM#VC60v7+xvA%#|=tK6*tSGa3Kg6>KIN_E<=87<-tZkvhlt zfrK-+R%jU85kNd-w*i|F*r7G@vm-*yKgHy?5xEF8b(z$M*(?MA00HQ&Fyd$~4l;PN zoPIS3gBCR;3Q8{-ZQSF~h$VC=I|KZZR++KjJ~|G}w#}vjE~dzNg2VF3+D{rA2@V8_GSaN1 zskD&}rIP;Nt0U2DL3}z9&@9S)JO&#j9f`Y2tQzfu7zAS>^L1^-U|#GR@@(qx{-}sp z0bWX4?kyP{xlb~oBnu6TZJQnA1%8Oip)UNf zU{$BkevLJrFJ37v(ZQvr0_cbsNB0lj)|$ z(83&^fYl_;9vRS6DJ<=>b_qk^XJj(){+L|d)~6c|fg(vNw9ehSFKI@hiy_tP2%=5I z_KS)>x@(|fc=Wa*PG!K)OxGrxqXvpYK;ci)t!%SI5^e>H+dNM_<$}fS{E6_tU;fQR zr0CesouG|6x&n6rx{sAI=(#&h_t(wa+;EC!^3-o%`F?K(t&YlanyQSyR)-0cVLxgx zP~B#3lKG*y0HiQk;b?zt8xA!5*;#&F<`&)ZTnB?X@(~WHeWSA{tiBH<9L`)Zpf|)F zJy97JrFgMmG*MYkmD7cUMAG152VEkie*br7K{h~d9s4_pSvvfif+u&@lWM)-kzLb8 zZJ*?n;87$dQl?l1r27K%kTO4b*?vcgVmg(+{o84SlDc%JiuBXsB`E6;K$KToGd$FV zWix0-;7o1slI9=iUa#;C@oET~BfxTbhEAQz4gz%;i9W#ZTlouAXr2>&cJ=#T<0T%f zLEZb(Nv$B1u)wGFdLd7pl3^TP>@ws}Or@VfLP6lecM=YA&F_k_&UjFnm(=QERV!5Q zSkYq6ZO8@=8t%2WyvqZqky$6-EihVzkLP z)q6!5*=zQT&a(WZzj+|?Y2qUE9oCuk8lLhO8W;AUJ6*mn_Ip!d!v2+PY%EA`I(A3f zQGxVyhI`v3Dxx{aPrX@z#i3#u(yCkh?jg(}P^Fy=mE?N+v!WLo)rqbD?vCiwOq0yA zl$i|G0_|Bz#GJYQHxq>P5wW-L@8M@J;`67PtgoGJ0mg@M$nJHWKg^Hj`-1WS0FgJ| z(A^g@0nNz*nQ4c1X@{dU4U3(reUX;{00HS^_+n*CZHJ;e(E_m9fd;)9*^3m(AA}~6D-a7B1`~Zb4{>lq}LXK z>AN_ZhmE0yp@@l9l@_^yydE*vZZdNelCtFwA{Toi>&G8hlXCNwdQu^-yh(u1_w`O3 z<_cuETKx}<=6bMOd>dj|23BlC?mTf@^rmjBt3f32#l9}rtDB3V64JCC?aqpMGXH#( z*W>26nDDS#gAWpGYD>ha%2iOv-7GxyM6NmYoCVm0TMO@x$NS9@&(y_(^_aeYltMLz`Ic#gs>@A<>4;7~p!2h~f=&uD`AI16 zuI=_!r_A~{!12;wh2xu{f{&F5YWo)buOsud{{H((!pw50LGM$g8Uls@@vraz3VRQh zSwZT+yixgDwUfbcq*6jqQ$~(x2-gNEZx8gGY-`ZW@78Gf!R8KN25U9T!$pQ~t?fjK z*ck6iyTT_{nlB>2wyzap=ln}b#_CM^=j^SUp%FzuqV^db%?Z&$YzJ;=tfYc{Kje3z z3N*oEn->tL<*`i0+*H;824BF;$(41QPJO$B+q&zQI!CZqmIdvknNqeETQ~cjx!i9` zwOr9<4b^%aSSKYdsKsU404+)k=p1t2vfcfe;7}@-4XNmtuE%lenzto}Yhpq|7tymq za-yGMw0}*eRhrr2cSa{HOtC9u%=c4F684d`i`GY0O2fmNwNQoS(#Ckf7A^j=t2QB} z&2f}!05Q^MacFp-~c${R8u}aM3XAs_&^qY>cPP4 zz)K+eUA5&QIiw1j0005%@JCZrL>5B9%Gf5N{`+Q{q5rluHqP6wVPBusRmz!aerVu( zFl-@kJ@KShu3D-2VW8b@ePlZ3w^+F)5mIeWDBj+jyS|(2f5gWG^6!P-^>gTX#^`kf zF%;GWXw)K?G>gcf5E{H-k7@pMEttc_(VrYV+W-rs`jHXq6;u zXj>I0YuGC;fE&?OH!aA}l{R1gUWoc%vv#|$G(K9(f7a?ICv91TkpDqcXRZ8y&`rW? z|JS`RVa33J`u`s&3?A&mh2ZVL=;lELDOsaO_{Zniq)`2yL+If9^z3K_V+FdQ|{YR??%U!!uc};3=Zt% z#WqM)(L?Y1%-?N#eI?T2bCS6Ck|wS#Ppb8^4Yan?b;{HGHty;^iLxw1hf%y-uc7@< zv7tAh?t56sW8@_(8{KvGD<{|g0H2ZPBe3`334P4zFgV;M)8#f-uxbA+3 z&O*1b;A0N&1Iny(S zI0|1&3ok$~2!5yb;SmvDCkFR6wcl@2f@fc=--}FJ7pDmiJvT_-2@d|B4Gz7l2;b*h zv+vuD5i`CcLbfIc6Qk8RPmghuCskd~(=Qj>7aZRSCLaf>dLAcKy_cy>?Wgwcf-iID zt-d?o4}aWyUw{91VMce}4zHOP{)cXZNr%kN^$CU~y>c@#N=rS@K^Vr$i#0n(`RXi{ zb_&|1B&%nOj7WUnr?{M_Is}c*Uw;|1eCJiacPp!Vfh&w;8$*6u;*+-x-CT z%ee&KQ60Z`dTMTUh`o<_>UMmGg&eqVq*g(D#ZuVBAimW@zYEpbUJJLwkDQllMLnUU zV7U#C*U;6?UiWaS?gQBk#_tsaeK(_<9!*_=$88j$@2C%#nXky5kE!Xw`4QJ|w6hB=5Ze{y>$42+{HtRDf zOXU61h)k@Vaod>k2$m{vrjG#0>vKopJ~`tv_5D=#phCj)A`-{%|8;KDvYs^;n5b7- zyzb5}aiPsqZK_Di{&|kM zCVDr+s6L~i9*@=vBy8;kiE;YK&wf6$9VMjCoTJTrQ-se7UB>yEbVE*^`}&=)?!25` zIDks&uD|Lhi9XYI-e-L#MuIbYd=^g^XWMV)$))}f@Hjm~7=VaZa@S~;H$QVn7x*^c z>bB0NruIW$c-$*k(RHK$-!8zrN2q;?_iN1Ss%eZKw+Rc;8cq#Ci_M4o-tP0{m-k0mBDd#X*aCOU{@!92 z5%Tf4U^C@OrcYhTp9rhfsao}biD`V!A=5U{(`rtHP)v{O(-XJTwsokU+Y^z{`@;9z zckkEU&DZ6M>P&ju?~^eosSXscy%VALC1;y+c77Mo`RRkf(R45>z;cRAm2QAk*6}h2 z^I}I!wItR))G1rzIpI>DVYSk?)ROT2H=)gu8=ZH9Z4y1Pz{#d_=kLy8Hm?HF#H(2~ zvtR+IJ5_@>Dn;LaPnz9(RziW3uzk>)LbJd2Fd|5?r~`bgN8xk3E;0 z=Uw~tUw6NfwvU9DkEi*s3pE@W^q!M{yDg593wXuBY+gj%piF8UjF=LGk$Sy&-+k;n z&Q<1o+HGB*w;H^kxO;u-d4H-po%Zr0*LuJHBJ@7(uVqW^KDkol+37gQ^>|<-a@*U} z|I3*3UA9^ya1o#YVmy|^wl1#DfDS6V~Vo%@zde+Fau()`{hCKwkG%W zIQqKx@7lI!oX`Bu_TjA86kU$<3mvg{lk>=n{@vT&tEaj9$MBBdeD)6L%e`aKee-HN z4phBd%Ktd_XUdumM%%4CCBQj{C&WtI!u(8&u9fOvGyE0x;^i#RjL!abPL`=X&!%yE z0ZQ>RoY-U0K>(EXW%~3Iy}7c?t7>*z%hV%#lYi4Q0005(|5hC*@PIri^q6YneAQAJ zt7B!B%BsrnV6*caEK3*n5slG0e%9RZZ5EeOot#MXF~N1}e>6x8TE&M(cFg<+g)@0i za_qdVMQiA=di%@xZRHAm6kMMle0v?V2qq>nJX92Sg04_>*w32V(`I4%SB1v7d9TMX2JeTXdQZ7FP*V#~D8B38UN=mB7Vu49LNA$Z7{uO3 zabK?+9oX54TPvkb@TU6B>=xfk;XSV7VZQ_#+G_PHgUMTUx~&;D>}Z`&G2b{fcP8wI z9lkcaw_EQb!hPQ7QQj{!ea?J^>U?x^mFQX#tez^86G@#3k_c8c?07yW$zhB9Xn?Me1fqn`8 zrN96f0GmJ`7=Ydj|1e+(Yyq3VHZTO8NIbeg4_E|xz}19@cq{;2U;*d=3&5KR&+%9U zQlJZDKnnZ<;q4w7kO2nqOdm=3hz9`Sk`v&&37@Lp+l#p+ko@7t2l2iR2>oS8z<(qB zDR1e45l{e6BfQna138cbB~SpD6JFrqxN!u$iSV-?BmPUY!mp2}zk0uaGyo6dffCk(ol^$t!!{+X19{M|(raGkFLyA~?txd(3wM5K z&)O@a^tw|u@5bHX!z&hEw*t5xbOwCRFH`||12{s*BLTW>!M;xTPBv>9&;e55ZwWu- zqfP6wLHSL>uX=QV4Co@RJcICu9x2d6v``6ff5LzGc(kx(m*D%r5XgZ+{G@xpe+n1? zMfK{_W8vQ;rwkN80r~~_Hv&-k#uD@^@UO1j1$qv**f?GY0D3m>8(uj83Fv3x-xk*a ze$9Rq{{8$liLW9(9RB0HWdbCid%}MaNYrKt=nVKxAcarhO+5GR41?tl@9}Zd@jdQ% zGPC-YZ!e$*(Fib6@;dmT0005)j)0P%IuK3$02l!Spbr2TGA{Oc9SaPBJzxm{u*xX7 z0A$>F1nAWjH8f^`MTEm3hj`tnyK`vl;-p0`MjA`Cg!6H#WyFp8RSa9M@MX(p;q-!9 z72McEg$`Ez`wr5XW19mbregGoM6o=<8F(47gSY1jr&m5gOBgi@q>$ zDdhkH1P0_wkpsvu3Md$mFGT^MgJIZ)kL&<+F$nl4En!QIf?*{?)w8z^7*br&a7qh8aEMLr~Y8moP*#az3@MT-xGUf9LEjin{fR5oYj{pZM zK`By$dAcg>IXir+fza`VJK*0Zg`y`^W4P^p3)ogq%Q5EVfQvUP+(-WsU`y%25E#Ng zgd2m#Y^Er>J_2EYy?}WuK$jakz#{M)KCTC~>;Wn8_Z$v}0Fi(UxW-pH93))jQFUb= zIN_lOlL>104Iftug?yj$QHv%13$Mc>U$aDnZ}rH5l!Lqx@B$wrH-JHCnI!bJBmWH}xvOi z24S7g-2>=F4=>86{Cz#D?)3qmKJM@DFhUIJC@dfG5Ahh5umCww$u4J#Jm6)B5k1U% z{EwC>3>9vr3c%Pw)=b!O!DhEgg^=1IxCCfTQpeP`EQ@uP*cz zKLIAd0HlD4ky3mEf7MG+6yY!f{>VpA?6A@40$=kCgdR!3{{0ra`vD01@K*xsK(1_H z0sjUD!kn+BfPW!yBCbaX&+SC*>ijPQdQRU20Q_^g(Nv3n1+W!JJifeeJNoQ+hiX>~ z|7XAuDA{}_@E-&EjDNwrC-B#?ZFhhJrJy-L=g90$Cd;*Z+;2}n=#@)>S+=s;GCZo1 zKTF=zvoRM45GQEB>wyv72KvAju$7`%1QvlMhP@>Q!es`-41u9BultuHAc@)+-8RD{;+%3Y zBEmiC6~TdVB?N`25V0hH;3)p&EJ}hGl(LZ~EfN%o&jShu);rXe<~AZO(h}> z0005*Kq#T1@S*|y#=}8OiU^@%!GL)H9IWT|upUCaKx2ll9Q=&}1X`4#F`%7?Nl=8i zkYF_m3hWUOKIhk~y+?$%otT}&QBvEKT2$VEXs;H-q3IV$ehZ$gVX0`xq zGYST3G|*im{w!*67%fV{3ls!umv}rPMBTj)*O{nxStk`8r+nqx728>v%n?mut>mf1;H7BqLMm}b_;fjgx*}{ z%gao42ufhYf0I8Rr%JL6KnoO&$ig)Sw) zpd@&M(sH;Xv7lu25)_FqEIHvz1p)>90Av_xXp|*{iE=1SiVEmL#ey0L8xf)7hpE$n z>MJ>p2sykfLM-T*-V8t(ATTTz&T)(wkS|1s;nTr5=19Y58Qm>U^H8HFqZsAZ)+<52 z*(Xc&bwR;|4+QoUY@L>ol~jR3rmT$MV&-9oobC}I?8iz743w2?U|}(~OgC7VWU%7d zb2_lP675|lb=r5t`);c%G@PpuP?XG%MnNG+3l%21xoGi|0fam1)$W1tfdl}btQcy$aFER=Ss9RwaTm+u$D-_gl*g>s=rsrchLHwUm z(X?8f3IOn5VWy!0J96`sM`aQK$Wmm6i8-p6egGrjtG@E?N)-YN1SY&<>x%}z@Ou8) ze3s|{M1=Py0Qfga`OUQx@k>SO?K1Fp^w${VCdPtZfm2-9aAmwps7O@>O+Y)1e826V zo?@h-Q6~}g%J}gC2n>fa450W;e-^L}1$#kcT|iE+drtldBFYB;=pPVR&_Ifo91(_3 zg?y3-^b#5pd*l%t`#&PQ8U)}j)t#>;HKvLgTM3Zy7%tQzCP)*7f;uir zxS*z|qeBlfsv)2Mr>Y(>qT?VI62<^=sNk@eWw3Gp@ZZn5GE?^`CmF07;cMyYo6PWmASUM6=nB8_)#Bs^7Er$5HVHa$Y^(F#MG!) zppbJ$aKNPKC{rl70IV?PEd$HEvIwjyb~J3TAgZVxEQ!>{nFiF!20bBRgIZ{mJ5r@i zCIJ#yLdT*sC^&Ze5gWK^miz)yONfIprEhkK6*Pnmq$$9Hy@B#NT4 zyaa_-0i=xtX+XqCiVB~Z`aGpPt}F6WJ~PHYLC3Hnkf~8n0005+2bvlY0fYdNPql(= z4S|yClRz-Qo**S>{)mfTA_eL}0sl1e(HQ0#_z)Tz)fhetB;X380_kt~XO*zOLa*KV z=I?(X{4V$a9mKTCydsxoRU9QoAmNzGsN7k?*_RHNB%}<7;j77+2<?`@#QvF);9r0Buz5g1JfXQQx2?D-LnlzvL2RPf`^6@fmmC>J@f6U!Yoobs^>b%GPGNa8|Gus6~M!kjR6QGz5zk|47HFrr!)hz9?w8@E|K2a3EHsJL(* zj5{e5*2$2a^=c|#s=-sRuoMV1Tq&w^cmiO8f}v5OJ;A(C8k%90jRl2iJyRHtX;eN^ z17SEns*=kU@Ig%7EgoFHSH9VifE;&_MOY zXrN%d4l7E-b=2WtQvW1{g45Xr(IS%o7TpAyMZv7;pq>tt=rG*Z5g#~LN=^0C*;x(% zHHtA5bbOK0Qcl(@f;ZfKLRxqw_MK=ffebX>8LD!7Iu;DPXh6R3*}-POoVN}0kFZa zCw;?&DGgn&B_hnn43_9m1I@Kn7{@`+$O7 zbv|`h;W&|hUjqBfriS* zl7k8DsvRsTYaM@5!bMu;41!e!la$J`+8Fh2)DbaDkS54X#fA3y)WQm}TWM7Y*r*zv zC)k_Sfps6qI0{bmrGmcA&?_&!DRjgf5`-3|RpFqnjtQRu)ieZ#SWp&;5gP?H(%0Vl z!Z_vc>6);*kUT|$gd7O44gf5i0RTr;E>NRjBRW)YSolSA z&BKFiDJ&d}!J!x|>3A%~_T{AW*3hl_E6sdPL_rA+H4tj!m9f#3-XVn|LOpNe_!F%9 zyBSFR08pb3B>?!CkCqElGKI5gm4dhPiU`bkajJ-P1dI&wK(hz>UEpwu(}ahBRmQ@@ zp<8`X_qQ5YD1RkgR5i6Q?N&`pGmC>Y&MOF0I<8bHkbn}T9V8YV6AQD3Dy5;g)fj39 zbPyeX)ttpLyEj;uPblm^nQ}h@fX}jCnJGorv-FCygCSoSI@C*l1`Y%Rb?M6x4s!I? zERzuw>|hwe!LSlG>tfI>obiPzxa3P0A^RPjU@790bqfH-0v3i`aH<>?9^|OvMFkNj zLSP9S3S=zG0!aWo4+E7K1VAu>6eV~dVcYJ1j{d)S9@-uv!u#E{>s@Y%d=3QQ?(7v= zRxY8j;+ruuN@;{xwvHV%1|JiD;6|m>*?z28Q>Km#^+~2UX7&BgA{_Us_ugU1y_N?z+qqs=*TEEn{`iXpjda!j+QEG zsYR#9<#W8VO`^OjQ68;SuXk#CiO2RFaJUB`d~F8+ z{`)DLJ^hocS8kSG?bNwqDo#?Y;dQ!XM*2L2A=bu=MFR?kKrkR*Xc49~eA?2HknJN@ zC#j+H@MGa1$t8?IV0_q64!VIcK;o?}y)8ZRfQaMZClDxjAK);AeGUf9f(9TgA_T%C zNl=tAL5Sb?PbrZ89R2Q&Phu}Xc=cHTaQ7Q_z2n~GBKSg?qKWB13J<5OXFwWTOcR}1 zoA`ofu8x0w4hlE&qS1vanYCf1q7HfqvLp`AFi^gxQ7CBm)}p?$gB*aWQH-&p zo;7VE-!NUTthyzt`$Q~Vsp>gZIA~E?#gu9yGytJ|b}-b4n7A@>@4{#lYhDxeB&I=0~t|+vWuo4jpK&s9XUg|{) zWep0z0005;&QU~ifO3SQFH+Ai;hosoUTK&l^<1FxAVT9rrqrv!u!f2h-Bb}_z`_ki z#7#C>+dw}-A*sf+ZcCujHKlqdgpc=ZOvSv3+wb5?xE#5wUCA^E%oO>VGv_OHF`ark zP;|Y+K1QZa7ITsA2Y?!tZj@f}3u2qYyQ6K{3=uDSq;jnz9)K)%rLb@*cZ3%dl$B+L zg{vOvCZnMCu{Km5y05rc-9L4QJES?!Mx2L9NoDP3jjwbWgG0B8j8(M&I^jy$DBan^=ch)Nlk|YybByTJ8N(uriSIox6B;ME(wk(MpnH;GU z%LoJpun&=+g)3AQYYrsv#Pu?AY92HmYD|>b2sg zj#LSdI#r}DaJa2da0@uWD7dMxa6N$&6PGd7+AuuhA|*6ZSL)ROCGxAVUPn!lS{!h1_43}yTos*s04DES{wY|!oB0?x?bYd>2RMm~)wouA7k28-O zd>83`UVu?h($5(WF1pC2p@AJe1Y}$6b)8V2)}}(lfvUsOwWH!qK>@jheHN9H=yYOXXJ;k)r8#kl1)G5)=y2;3wVn9pqp{git6r@d|Z-=l~B-#>4qp zFBk!&`Y@RK5NJ9~9Pd6DfUt*tfWx>_6jcYXA$%Vsot{U^%!nOmP$m-gNjR8PPnwuZ z@V1Hky9{G8W2pt&nLdj@|0$HyJ5e184KAUw=B0|X~h)PBqIiVCNAotIn*i35WZDKo&y;qxz3IrA2(PQgC!m_OLxbYVQLyhtdeJH^s&#C z8tP(GDcm2cL-jdEWz}UqQNdrzo_mLnk<|=Vl?yES4vM2LC^(!K3lBgW@wANX{w(5m5qq@x!9$R|n zNrB3EznW={$t)C1IoX`50oGEbPMzvKOuAUIFw~3!y?O}q@S*@Z``=*AsaKe&SL9UE zZCvztq|&i{3Y!SrfKkX$AFwpCErG*}(vdTfwxJt!2`iRvim0005<72u5{pRS9~ zC*a@s*RnwA;>8R(B5W8e=`|>hgT_D9H6FVQ3J(AfK9T_7Bfj>AmwdgN8kJOH2_(A0 z1G7Ry>A_HFUQ}YijJr>W-?R!Wl&n|lz#6a)oET#rHdq6tWTphlCY;1am+Xjk4Gv`5 z(jD8rt0KaZ*Go=3qXuy%Lochno(&Xy(n+ftJ=G#Z_f13&9jW{3rSk+|o5pj(bxMqQoejJQS3vnjHG^_LOAF_KT3Z(&qFi4dA7POy%g0~^3vjU#m<6hPtOJX~-F z<-aICv^Y>dUd@KC`%R#$mcCBq^24zh&BBpR>=HCh1g z_UHpYJqza!fam@X9%d{T*boWXp`CYfAQLC*D@zyyV_+JJ#c3f&b*m;3VWJ9W8dw;r zL%SHHc^Uk8zX@!B`f5&;z8d`_XDi`q|D>b6$vkJHT~f}xPQ1G>Rn(Y>yBTd16-ZL& z5)Xp(nlF$9idc;{P`eer3J2Yv_{Ww=oDz+q09x{WgyJ*I@2H!xCR{O^-cH<6gfr?g-7mDdN{z<-MvUf z5)6X{c9P1zG{!W>`7A985k2U@RPWv zoN}#HK4OP@86K_-7(19qm4aXf; zp`hi2v1L`U{IydrXdg#JX)KvC&EP|tRLFLAu#%30El|aO6*Y>;g_favzC{@Z?>6uj zSe~C>3}l;03ZNKL_t)sFtkj|(pzD+^7^Or zrr2f*YqNtQ^!_@^J)r{}u5hwYfG|-gENB(q6xB5X zhA2nq*LhKGu%Jrap!_~4CS+n*-IVp2Tin{Rdmt?MJ=D1zsFm<3fn&+kgJ}>$GLS)# zo!+`keHsOUAt+2sPR~dw);b4;0Sk{~I6&W_?;;lF91)f=u!uky<3B{?t5*24C>az9 zrVmRX9SAmv(-E_vxzZ*b5sEJ-PL%_?szMZ%Iwb~OQ)$1h4Vx(kpjf665snK*)8D{C zPvnUtrU_$@&6$(eGX)ZdhPo3)HTr1b0ua(BSNW~0QmjoLA#128Cn1VRsl2W0iFDJ- zxy7pWX_ToPt%$o&0i^IL;6NM^#!_UDq~naubMhV}bf}L168h{sQs z+EK|z>AFxoUcY>X6^ZbQv1qRt!^Mp8GUXFx{8M>P_z{M#Rvk0NU{x!`T05%WmZ`Ea z$CJHvW%oe%*t&`Nh>!l24h_SV8a7)+a0_%9fZ;7dXt&L0GIcyU;-6))>?M(;qGhtC z4KBhu0i3{afK7*fiEYNhkw;$VMMG*ZB^drp2r1)VSc-s%K;mJ-PabvzldDwCv@+3P z-FnO@6w0sCb@pE6QVX8B6R}((OHmk%i|L{poA}h1SFO|0|1lxB#C_@^xcq~795BN(m(C)sqG#J z>7BdY<(A0b0005>)Lo*B;HBe)?z)1&k%lpVBreo-zg}eud;EO!`e@QM@w|lqO{p+T z%B!{)IqW;cr0AKzQO3f>(oj>RAAA!KoSw3xDIIk7O0yLTVjKuSn^Yfw$zM~56Z=_b}l`B?2kJ?c(3Ua8oLz*zg$Fh>fs!=N8 zvse|XJqb%5NtL$@oh!lx%4`)M^WU8#4P(&cNH3u)XFRptQ=|T80ASYGZMT~ISNI0` zQk{t^Is@OovH%R5H7S!R>&{Ki4^hfQikWdvskV~0l`Zx+s!}s~tvHU7wJ1Ff!!M5K~m&*PpTDbNEwW9OT-2OzxC1HcdN6%Ka~ggQZJRB1!0ib%ERUh<1tA`T>6 zRn6##FkoT$DjaLdRo%@Tk5T(qdNpJ?HtvcxI?T zVj~vjtj)7i&j*4U)d@naS3$I1kqQbO;NXpM6sKiJoU6eY*c3$xnC9q8>>XpF5)0=nSss;*Z;NpX3wg2B)W}J)@2OEJ8z*%! z(ksfTK&F(E8BK>u!c{W!Ve5iFC0Qm3d~hDNCIY*qHdqN*icnDN=V&@D>P@-blegJ ztc6;iUEX&Ps8PohyN(5g8r4o$sVrJtEKH^<1X6{6VSP(wXM=@L3k;^E!6NdC*H)+* zmo|Ydj6C{2W(T)CHXODbwmb$NqtIi`$6R25z|UR0005?7{kDL zc!Ke;1RuusC&0rNFd;y+oT?VZkWM(|luE0xFb*jL`MyZo}sME>OMT4hjpwa412E#=nAXPKUu#XX4qZBE)N`?6Cz(q^1Nx zh9?c+XE-`kOKEQ}RinA8*$CoPvM}K%AX(Qc!&)fVk_DB(C(t)f1hRBv-vx=!SzyN^4LY=9zY?H<>v0q0p zVe2iMC{1AX;flE5K-ESI7i-nQtg?VJ0ev9Ds;Wst?SLdS#XGRaSW(=cyzcjQIGZeI;zd4qAv8y(bXl*NKS8r8F+MEF@0t zke#iqNR4g`aJNpL`KgoNtqCDx_GEtE{pP(40zO<_uFZ-GMmdNj(;n@Sp&S$k-Bl9aa@e6skC0?#t}* zz5@~wHYgL}MMX5pUMl-l0ygw`%G9mSm~woZz7T>TkXgjJ$@w1I0q8!V^~%(FQKT^8$=qeCTcJi}18@mR4IL#=6H~|>>2QE`hhrssMqiuv zsqOpj6Gpuw1;>9EDBt8gO zxR3+KfE$6Y178Pj1~!;QU*I`cMIU761WAI-0005@R%uQBAREReQP&~iL!rFxfeHi@ zbtiq@<0^nWx`%>)rLtMN8c@9c8FCPS@QDNf?~-cEG5=leE0haSDoQ6wnAMZvVsiB` z8%qaBa}0Av&fwQp^Hc(vXp=_7k{=j%mIyTIhQpf2hDYDWAXFgG0tLmWPO#86Ivb@j0jeGC5oZ;u?EKuU`TmzI`9OLvimyZTQXEVdc?JIKpE47Dezr$ zBHYq0pYo}fO9%k|YD}-ho=7GP`sVVdg(nk&!p7|FmS<^Ka5!OB_W*&?C>UA7qzz9? za!5Ha!q8#U;Y5jJ1&$Ti_8_1`ShDf)CWPEaek1Wn9MY0277FbnsG|Z;t{#8XDnO?4A5f;3;|dG zs~#JT3@Bi1jVUM?^}DP!rcNk`XRdp74OqD((WnDK@LqY${5T)8o>~1CG~SjJ^t^eV z+Ck_?_`lS|yp3aoTUDryEw|@vvkHJLY^Lh2MqH9CRRldQhYVk{0fy31Fz2*!&YuxO z#ZzW)M`MKZC_M^~5wPuX++hnyfhEKoVJuwmG0CTQZn(!W+N1cBV?>l1js_hO-A@kV z(g8?ZHSyCe(C4glcsnfLuFA)(@)nfF`}zfsEuP(dC)xM89K2sm%p1hk-AC-mA^JTu4#G3e}wV&e-Qt21_*F{|}%Cdd|*I z?I1*i^1fO1CMR{PBqI4_!zsgv3@Jx@J?`t$<9uO{s}UA}%`gMW2wU55GOMl(>loHo zI-m|uRnp}+GX*6uW$XxOc$k>*L>*Ugik%5(9k2>ab&9H5ApC@M7?mnf3m3;} zaP%G{kBn(a%T~z(mO!k8aR*WtC^w-{jiqWQg@pxQwN-E^o5}7;JPFF-t*QZWKnXIQ zN0{?65;qUbJ-1%%f2Kjvp4u{rqG<~#EQ$iq&t8lEJlj938B~k=&2s_Lm)TE zGKM{&xVowvO*UZjr{{&s0iS{rj^F{5z&6lhh9G4X63$gRYbmYKX?H=#T-^sr))fl4 zBvV+7>8V$+oim#^jGK91^W5tOs}>&3mgBqH`qq%W7Rw}jd-MfPOcp|gNRT32gG9Ph zEif=Guq%}+!h8TM0{uR=WbzU{PTv-gC&)Aqb|cYF9b}_ev)3bZ2wlP=VTIrbi+};T zgdU-bxLJbOgV1t%Plg+fLvM#ygDRK|;yhEPA{-+I6g2F71!d}tKwu&?QQl=*&s@tL z&UvU?28rE0x&0pz%DtmH-+<{r*wCvIFyxXdD3p2lWXAS@kp)tVGN;s{WE4yaqy>_k zKf@A%(~`}6G-BO)&E6uqn^-hhG3X~Kfn^H=EEp_V^bER$u0cvj30cq_VZnsJuzU&9 zB2tc3r3q0ixrS7E_26H1O^sA}h#3QncOY1l1yVgFlc@?v=8%0K5hlv5D#nUsv^d^4 zBx*e{^l|dy2!sjeh7AXWsj6ZtxFh<2yRr{~EGSA}DUEz~fo={vK)J;O6NyM=_Xkx~()L#0Ge;b5UqFjt;o zUNcn^UF+LFuN(wwRJ>74a^4%F4HoKjp-Ex7ie(QRX(%KfDJQ89ECSnoY;VK&fi+-J zjc>IMY!R|0Re-$ALvgR7w~d}d&tSn|$z$YEdJxbhE|vj0gpNYWP(Io*v6M87DU(Xp zkfD(Ps=Li@(ygc%2@kJJQa!R9)MqBXP{Ci$#Y0}HlYA<5n%i6*1R!h>gF9CNi8|>O z0tn6|rSaSg(8)yYx){=;v`BKKi7#?WQ{)Ab5z+)%iabX;LN-E{BORhMLN=nT*Bep~ zz6a{DnuX65WZO8hjvOFD&tTx9UiA#R28#v@28#w=LeHXOLBV*X6?IV&W=S30<<5)? z2f7l5E;ds7>5!GhK94Sz2@W9hdzoZPU(nrs9Xs)i+@=6+qz;ZJT*4$Wl0005_ z5U9~#AOLuak9+Tog`@ggZ8;hbNYc^MdFZN2VF+?y8(0FiJeJn65xk!jV2$-*88{9s zcaem;<8@#K*o^CD0}JcbfNFw#%Um@I4gph&h!}t{d<_toG8`I?1;eLE=vFTx+E#L- z)OjRq;*Em^l19CmHhJ2Gn_g-4opW+ny9Yvg-L7}JMe+m!fcNq(o9Sa|y)x{a8Guk` z2~nJEfvVa_LB}#jmY~RyrW9e%qO@=+@)5EjIw^_~MniNu7!J|tqu1$-%!0=fu*DF# z%B)t2C5L1SJ;EW2zKbUwIEKuiM=>-^GiE?iMUTk{GKq4(gV-^ZXsk%UCw*v)g1}PM z>xtC9PQAqsp?}!%?z8N^YLp(Z>s@Y%{2mCv)A>rvSuU2`8=>}csY^0-IFvN4Cd@nB zy&+UMWQ5fvV4IaDjC!>UY;vc;^-XM?fDcnIod9kE7Jx2b7jVV}Kn5%WXLHpkn2PAC zF}at49?FGklu11^ri2C-|Ao)B7Yre78_5g&Ro0rX> zEV~E7*ZEj!6vT{`=$49HK)vgqPGE$PD(f-+E!Kfh#-%;Pe8gyg?M;+n4AHIv!ehXq z!P$p^0dOWT;(^wNK#qkHezU5X?htwoeHZ%?g1xktQG*_#CP9i#I3(7i!=vGK+GEj`1#`LIS}A#Sonod5TVoypLX( ziD}y`EUj+Q5PlUTPf9u}Bbku)hL-9M)2l^$Wo!OmGM<98nsx_<=#bFW?RxHq{BKIeW10H|)H%@{6r z>h(+^7%GN}fe-lC=M~+1K}H1GWKiq^J%enCgU4;|04RWUrpM?6ZeC!G5Ri4iXc0&6 zjN}k-Tn({i7;C$+@1g5pU}_Mk!$Ao(Bpj3SJ^koMI3E#=AjB_1$kogc?d z!FqJrut>^gsf)!U3P6Qy1Qx#m+KBMhby(!dm`X&ZR7S(HGAx$NI02q(LP}{E_G)*< zbI%GkG!7_v@EY*2|MAj&9KgyukapD?#Yc^&6z(~@Vfn0(sV4iM8V&YIG{h(!^Bhwb zypFnd>3bFZ6jLTPr_=+g!(3dXPSU_7R1AG5M36>}0005`wJr14r^w^z+v%utD5nxW z3~voq<4$DsX&t?7^!n`1L0QREg$tQtlyoeJNhvIiVL^&|oJVZu3^OjBv5b&Nz2sFo zO+o=-$rA|8Bed_SQSlSP-IBU)5iwetUl276x1#S+>XDu-?5iVkg*8OROERXmq) zV^B#+UU^;#q0LZTnLZTw`1KfY++fkJu;w68qa{14l3ezDq+I<}a`plMRij!o^B)9I zf@D$A@{Vnu5Ts$ejUiBajMlK;WtX~BufaNh8C~rHsg&fxjp!Uhhp^xH z$!|$<>X||jf+t%f9;%ag0}d_9&;o*9P=w{!hi#_pW426u;dz~T%l1*Y1x0!rIo(E0O&iEgSrJ%ndw^IOgaP$ zykx*iU=ng=(0Jni}d>wtMAsF(ECN~4Cz+s@5p_|3S`+6tFLA~RKE;c}2BP<(5 z!>0^&DXCIYuyr4)xVIs>I&ulr?N{Ak)q>C2pmRWmSR>_z6JNVyE7q{@LG`4cuUA&A z+A>A5tc;wLJ4u?h0>~l!jo2{UbudwUk|CUbBo?nnEwr4KS%F=_>djc(#Gu5`#a{Np zTLv*2_E4Lx9*97w#Ve=_+DR(#6_Zu?IH)NBX(NJ3`7@O>P~N4yW298e#208Ze^9vZ z4OUaHP}i$*n@mdC+$6;V9Fp7;=L_|)DTJy>#1p*rB}FgC3qb0A1;M@XL@Uedog^m% zpMYdstYx10OJ-tfWPEKM_H+!P@lV97f-`m5m{%;z8_hp5y4nhzvd=^np2Qzs=Eab3>^v?V!B3a)j3w9eoBP#wpd;T zi8b@e8pc!D#0}SBeF$vxINQh6485VoCaGUht|;(=zY29S?h)y7AIn1$WqiE_A3x)I z_JRj|l-El_OrhtMOD0UcM!`h2rlUoR3S9%)HzZ? z#ISuQLAt8q0`NLmKgCI=KHQDi(kuswVI2&@1{ketBMI+iw34pDfN zJVdgV@b`j(H09|-2#p;i0|)@bH-(B^i;2V*d!~kqY;$s2XX&&E|7n%2oOmms>ZeMMB1kE^W1Brx5vNsJ zq+2XtKv^veRRgisM-KpGV1e0BZQoO)jpA3qIirA(B)JTL?~vrDct_G=eQXYhm|vYqBzvp#OT7B_9fhiSfUR(&OwnflT^Q4j$qVFV@?t29QqNx1u3 zgFy?&U*w53g=HP8^<3fZuo@y)3WtP7P1PYuS+SY2XM=UhfbjVQ0I%?IZ_VKZ5mHpI zbl6SSd{-kjLW1-VhyGyhRm@(h8vPdB4Lk#gxXvSfFy|k_O2+uN0IWn5j8n&L02{E| zu##CG_n@@>9k*7BdiNz<=t}D0JQ8-7M8`vFI&{G3m{^h;$|$N-XTtc`QC^wUQ;7N} zK!Val{40Qq=X2Z-01*Bx0l@FFeh9~|*+Ro_tI^ zNMk_3uvdUX8I@aBO4t#yr6gTEvXw5Bv;e;eY=8s>b;Vv;KTp)-zwu|MYhg--f+-(R zh$``oLLago&r&UwI2lhIAmbQ{Yn7rT;(>K+V|4Oxv5%NJrVIdJNb?N&K2hfK-)^~F z0Rr$`eypB7F2}c7BJ*6WgCCTd0WkXf1BYV3M<-=8h@Tg!_6FWkip4W{5Ok|BBW31l z0a&;R$JenQI#H~0N#FuMVVS31+itIVw2g~EAQU~HailQh`NAEu3?VAbndXpTO!}$- zW5D$oMXXmyIR`#wu&R83omnQsvNGRhayxj=V0q zE0s^;Q)J;5h@v*7O(}Tl8kjC?cR*_a!p2~$;zgxE z0&i>MtX}1@HP3XE`+o$GH+z8jh6X_@o|Z1llF%?wk4Do@uF@;#?Ij!q z8Uy$_Z^D)`U0*-)S%bh#t!w*b;a>-IXHLv}>OJ>8QKPb-t3QX5u@DT6IyCfk zy^}Zh|49RArvhkR6@op)nf8aCs3fC%{>?M zR*eqEk@21!nX(#mEe3+p*M5j@AH4-^FVJ>xq2FB?WJe0xt_t{k4vau0CvwGN>goco zTI93PMw7qhbwWy~hQMz_hvUKp{tV=84j zDVtGU)0!zb%-GT-yjRYhJOWR<$@M!j{7t~f0icwxqfRhYe3uFe=PAO%;al*`_ab`* zLLt6|zY^o+Se3-jZ3KUUj>1o83JW8Zx`HIFV`0PN4SY~qVBtpGFht&0&n)DbZw77# z&Nevf46Gi8SyRum&(AO{BaRCTRh}THBwtIV=z@hKwK4*Rpd9HCX#t^=9hbx@e1!}QpaDR}%H8Ev&d@_*WU*H~M&tUT5GR(5 zokj|e7=^dNKd=xui9`HKg7UCKoTzQ02ttJN14r1AL)tM>upL1jmSv0~AR}Z*powj0 zASRgZd+#}WpS{+qsySzV%sEDVvueHeK9Am~?;a}Eo~u^vwQ5z3n&0@oG3KoPgwEj^ z7~xAY{tZ@QCuM7zya@GfN(wcf>tqOlrN*Yipx5hMLwS*>xO<7xQ7DsobRXwT|yf(&!EC`an48up-sYIN9z6JbWF(JL#u_R4i$r z)YonlfW-=ng+O3V-?kK7sF-jDte)UEp5k$STKF5HfPPq(e+s_KP2CorbClwoXK#w z!7?vbI9p<~!e)WZ0$q!3Yr58Tjq96b?=iR(T#P0F1I&cvMS{JEL@dw*ax*TI=Pj(^ z8&OBK!&w2XObE9agR0QlzJS~~rK--h8VC*t_;5n!usx|$`)Hbuqu1~Qf^b37IK4o{ zAnObU15ucciY>L_fpx(4O0Hc;>n&aAAU%vO`PO~3z=MxNtGdubS>6G>1-wJh=TfAu zHL!`;bm+U%ZH?uk4rwBRGXAk5sz9h*P`9(z8l_8HOTeuiXI4iqfB;7w*0S!lc%=8D zhQp(F`=!zEsPj?(ZUUrNQVDC2Xk;#sYC{>}Kp3eRzkG?K#o{&C41rGoPvCbhp>GbR z?gxDM*YU;^Jk4>`hk@6D-vE9M_&DG-Szce_!4d#HK*GNd63&89stFeMdk}Hn;Qh7e zW-E0&oFd|qtVRTmRdtxVQvX7<^H4uYk`yu|`I0bN!lz)iuB3S?y2M z-}jvfs7ax^lbs2qtdzzY3wgIe3BB#wMQ~p8WQqhl-FAnzH_Z|oo_BPE^WMF*K%kE_&CywhT;K4Z_p20oRx@ZLfL#R^90q8A~Lg13Rp9M9PCMu6KLS!@mTg!nzCA~CZK^@jT zo!W#Z7BA1ygZcNbdEIU>C**fu`(OCKQ`%W)v}bQ)@NeeAkC`T&gc4-0DqS z)u#6_#|`7GR0;M8@Dz9hxDwWv=cj!WcvBi#5dH8Ho7ZamdkuJ98jobs+MJj>OISph zuC9V&o;OgND^++1YeyS(ty!EgNhrUusprK}I=Cc!*GUD>u=S%TuUTu==>M3(f$M0D z`KQ;o$d&zb2S53FnK1_MPXHBF>X;Q*uK)l6{j~-_z3UV=^ArQO+)j<{8uSZn8w?9< zGMMSI#HOs%c4gLiW6?rsH(grvEw*`9Hjg2%b$XgSY+u(pY~QBna^2tnw{-_Oo8Q{L!{I$b=^?#<%z1bE2-R37>j$eHb z5@uxysg6-qiqczl5S416WV}9MsS_09sUS0LN^Kq2-j`hl12c_2DynMXUqt!oIp zkh@$N;kt&_O&yhYb%!8=6OK zVZQjVUm;x=IQ5_Z^PBnAO{LL5qoACmg;j1~MyORUR+7LW7gO>7$L4)N( zwC6DSA%!b)p9cbS84=$JymN!!_%*!w5nMfz5vi{OuLJjhN5E^+C>1IO=MMK)IA0aD z+sBgX8xc_%o&uyYzxfs}qM1bQhLl|uCe&M2Gv`?%t{8f(zk-ExIK(9>YR_P_eKH&_>48$1S=B6C4A;evyt z8`-Y_;{XrS)TqC};4Q=3L=>HD)Wl(g{n(I3H8LM$OD=bFgos}7uOVKTYO%DZcN_7n zo-%E@>T=y-(+Ozgv3N^hOT$dBq>$mhtRG8f^w{G5Iqsih@eUYH$!SA@a9s;ox>ls_ zclJ{e{TiD!2B33@PS}SgoOsk&AYQ0Bp9o9%$354Ig8J#xresm@J!-dK8dZnVa~7mA zP_i&kJ5q0@otKkPB*;a`p4dr^_>xA9FY?-B@d%4NsOG6WhU6h|0lW!30v=@`1l|R_ z+2PH9hPQqLZ#_Ub7drSrWO#a5Qz7$bTDEC%w!&hCGhmU>WWLyugKcWosEw`$!bz>5 zn+c>`u(gy*EAptgz}gfpsP#PxhuS`Bzkcn@{L(E@W8zmVkm^SDEA=r&K6NuEuIQ;J zYY7VnphxOm-?*V|2IKSW+by~dZC+PAOB6oX|S&y5-MWxS2U;&rqSVID~|^;n9mv|Q#b;4(K7-gu0skMZWO!J?@0v`zYjn4-I7Svc7oH?vkSgx=H77=c!oo${S923}-pwFhVo<{BqLPYheC9pv6 zDiu^KMb}iab@{Q!2o1TDHVk2*j*$oybxn9-sDZ)PSlCDpN28w7!glSlZ`-X|EU?W$ zm@|So?YG2Yfvv}|G+7tzJo;tYEX-CRFiWfxb#wxR+@7Ih_0l0&6TKU}8_N8sDVmr} ztd$0gqH(mybwD)s!|%j7E|bxP_dI2;(c8}mbrzFAzGH>(g_%sMK~$g`K8-_ISy;&3 zzo2z~O#KGv64o1RHi-EKK9dJ{T>|I8Mb65|{CujQ-s85x*#h?#SiO$6gV_)qZfLz0 zj9v@K>C(;6QQN9+m8$oMAtDTjK-iAw&(+g6aEGNNPs?EzGybQI74>na6fE3+M##6{ zWSR`Uaq_25vW5c{_PQGXbluB%;a&pU4X_j}?Bu#HfThFPeJt+7WL5nw;GKE&An>MS z6Q4>R@e+6|;Nk*rUEl(Ee1`N$z)v+&9>{l(3RX1vdk`@sDrF|> zsA{A#Onw}7a6jEA7^(fg8F>|M?#n&@1BOBM-8PJ*le3z!H47^#NM z>n6YsX!4W~5w)KN8FmK#!vEHJ8A}o-{N9D}geJT;SPmME*&6h3iw^%;FGQnOE1g?eWsaV?4 zA*^fdbRe+Q!5lsPn!_Cy4?(OutZ^Kx@-GHfUlK~Y9cBtFU+x% zk+6M`J$ni=+zbd69lfBSu02hwkk9thyk&*e3jQ6iPl3mxKD-HB)`-aM$5(iAg{KBj zT6EddULzpnLa1{pR6QefEP3G;=PjCZEEC*70hTV21k!A-rZ0+x3q+6J;3?1pmx6-Z zI`-4LvE2BJr`2}8dF{*m((T&~0DK$y71wbyK@8+qnlBt^{MQ5swcXclwv}4IRzR_l zEe%53tQXD3FTE{QpiKKT7s%@tU7NZFeQQPtY->2w+L@-n;gC6^l11f$ng9R+|5Kbl z6GNY{XeeILDYJFrZ03bBcHS!I<25&O`!i1lM^A0tf$(60pcxUyzaYjaLr&zZsM9LsauOYl8a z>TId2&ZXDC8F%5b2rN-Ik}F-Yc!8h@x{szpwEZdET`IxHSw@c>N^b0r+{X-y4t3D#S> zPPp9S@fH_v;PO|oet^gV={*9)bK!;OG7r*%W=1;$mIiHuRfFXjTEIn^0FxxIGpS=D zQkdL0cW5s)%3GN$P8%C?dG-1$;2RUJfdBp&96oPG7~lNS_kaC2eEZ+}C);;^?l*n+ z2fp*GKKaITPKxO`95wYHeQE0LcGp@#(Gho?$fS-2f_cG0SI-QU_0rb%&7yA?wh7J* zxhN)M*b!rSiLtY<7#8Dz*PjzAB4Hgfvc!2gd0aro|6&f!kkEncc1jWaA>oG2Y zs|AL0s;1Ey(3XUeXOmPSY2gj9vTzm+(6j~dLFtN~X5G@;siO$(DaCA8wdAs%$seao zxBi@qWiEg8-}~zS(*L=iy8QZg{q&!I- zbuh(09oRErhn9v$GcGo@r_peW*tpobzHOg2$(tbyq(l>k5erosH3k26){)k#X_%Lo za^jH3UGP&C2=&W7L8GPa$kpZ&pK`Ic{e&-HzYZ4QKLObXer zLOsxe$MZnkNn_c`&_hdZ#$>UnZ*ZQ3qXk-n#tdycv@LveHVEMx5iuteB}do^cPxx> zk+$CKz`};=OLMYtUO1CUp$Zg-Pv7A#MqqHP&lv4PsLb9Ug1h zIRB5Ew;$XzeNf+W+)cziBvS^%xZ>I{oBoV^<+ zPq6kTO-eeYhV=4Dk0+1u^f4|SHfOWRvCmnk5T|W~8tP)COsc8RQ$iCH zz4F3-4?#o?g!2K2ESWYGgn7EDM^Ln(v7v1?%QI_L0_{aU<*J#npwt`LA(g3T=44SD zs*5ryR3OaM5P+TaS^BKq+|~vwrJ6)!UN{j{k6yIr3WP7juMTu@{MIDA*L#X*WkU^z zL;Z51Ee_mI;)ltxeTtLp>d-!cI3MaM?(PXc@< zM3%ZUU+*yCh`tWqO&z(<&p)$6P181-#{(8iES5NX9nBy>IH|08QwI2`j`}1|dV7H< z7r1oT+!H5c6jXNDQ0ID~54S{_fU2f^!9=HO2;&~U#{NKkvFm5k4 zSln9_C|W*fwvX5I`0<+dT?PRDjc4#HuCH-*V;@I!(w@XymK@BJzmZrv$~-M%ZrM(CiN{kZ-#MJHo?V=e3N8hH6P7>EYv3nD+K2DL@Ax%qHY=B z|E&4;Q!d)+#WH{1{D;SOc_DuF`(Xh5$c`YZvV3FePM%)!96kz=1FicRM;xTB98uZf zwqAFl?rcfETqj(vv0h_ikeXS^%soQKd-X=fLhX{y43-Nl7Fa!iRS47y8a#9jhv^Z?vW>o3ct04ISp~TlXJt1qaD^sesz5y`~wM?>2Z^xa&xnL8lALl-I(B_ zQpN-2rdsddYeu#tTmS$90nB;CGlNBg)jP0y2iifT(I+C7K9)S(vEJYj^OaOC3L_qKEGm_kFR@-|8K`9+r@*G z*< zG^ugj!gY(KX+nlNrir?YsYD}XrK!&^nHO>e4UfBL6f`1`&Uv8@1mp^uc_|H7ndcIjaTLa}rutQeU%NV6{Md zAAW$@)_qA|GeRvNoyQ{i^l%wuQx7-fl!I)^_0Crb1MuKjhjnq}{n0*LcUbS-AtIgP zSI;1g?u*q9BzwkVqc-0`(OHmXO_sqF~2&+=6*Hji2Fbh6sJt|Qd`~8 zCBSV73mbB?CD0-*-L_qASF0;Gw5FSnwNQ>&fY3|_TI{QunPdtf#WHgsL^+*SPO!_l zLxsZ$5Kgf0l;;sXS84Qx_!Ub|JAcn9I^FyhQz=#5Hq;{O1R8s4OhzKk2l{DoxQ-QG z0~cFtwzzx~X+f2xlW`YH4bNxws4EK9TVUz2^k~n~B$ys%eq4O`hfl4lom|-=H8sg0 z+9}~YYR~g&l_&Yt^?`6Q&*5BhI0XpVG<~RM>zBT6IN8TiL^289Te%jRpdINTHI@=a zEr9a|=kG@QPPnHsNzGd_PX93_6ffwB&6mJskEcC0mw5USbPIU^+-mF+M_wqdQ4W8S zqR?)vtJgz4o;L{oMWTsEZHq^zUXH1~HQ%)Qj6eLP@yq_R4}8mi_jT|3+3)%GANl9M z<}ZBGGuDjKoMHP!tm^{gyxW`jl{%iCy_}H6Ne0o)u&|}@XIaStap^ZJziC#D8yVq3 zrYEJG;s}a`6sF!|@Mf6II5U~EdoreQ=iov)e^ug;M;zw1;GfYdo1^FW`Bsg-2*1kz zKNqCb<_gW+xYy*l?I3M_xl=yXfmD;Jy$9ljU5$ksno>%i3x5e*Zn56t%2JMy2jeSQ z)W`EYsdI-b^3oPq7_=?g79MC5tmZc-gX>d`V4m(JW-3j2E069OMB36`ESv^}&j0`d z0yT0!#jkF}2tj34YWu?ZXB7D-2gu<(H#BlrwDF=yE(r^l5)j>aHXPj0Ffkx6|j6Oisq7Md~=wPXtC zMWkx1l!AC66T}FYq`u~*Gr||*SGoUSX$iDtj)JG<-1pird#V1LU0A6W0|b|>=ot95 zOs}ZVPQ9RK&Rj%XJ;CJ@gvT-s%{`ir=8UKzk5*(}s94x4VKDF>-lJJc#eP2OaOk`w zIg7!T-^P>Fg;~Dz6ht^(8a>5M@T==ThUs%<{|WP(cg6cU=j&3&oyO7qqzF(4U1St= zH6v`r6?jt7vt2Kjz;YmgH1oo@#1$`P7{;Z{05hK+zBAaiB#N>|df*=K>PBAc#1Hvp zDwM89p| znjhBghF{9ei)K+WhfNG#>xJ|8&K9wScP5p2t zeqvMK3OnQnKb=uU-(NgxGWSk<=bhKk%x@-k*Klq%=aF`9b*iB@TR`; zrPo6=wd*s&pELmQIca)rLE(I&x8f|!pUA3driP_@w^K|@=NS=oparX=JW@vm1RW3Y zv`#*+JkH;V_7Utu0m8>L^y0M%DWqw!%V^ew%@*Bulrw`vR9*A{7DnRULph7K26+cK zn2(%xf?oD)?$@@zVgTT46JnYY7Do+sq5MSSUx#?a9X&ov)Xlc+(^u`TjfaiXin`89 z&zjWHi70v@q)?MI4;2eLTy)sx`21|vkDbYU-;?qguAgX#8cs$==oq8}aG@G%BuO>Z zKQaQJcN*n>zKrk$yFL(prcANM>T#-jpD67K=0$2xW;zPHuoE)@e!?<$jy%(ArWG`b zgEX`>$d=MR^Ei7Ai-#~zXoec5hEHi(6951L0}x)-buAsx2Oyy9F#vHr z4xrd)o>Ex(hcz+~!vG%XA<)A7{J{^wbDpW;Mc7wG00;>Qh%@Ay_|F9M;+{5UzLe-6 z*{|joVd7fVz(fNFI3v6;VF9#eWPU60pOrk1U@4=<@>?rli?p!aYS}f5)|T>_Ef!fd zJunShsU0=dI0}~v3K}G1b{CPd#lm)xU{W$rc4!<7BJ9_tzZ~Gc-+bMH55cPdgdd^{ zsd*toIA^F6bbB}=W;Hbq*fmWXo~^@b0*qF3@*|fnYc6L<;$>?2IL(vRFRC zDnHQhE#QGxkP-@B&T77R>>n2^qaIHW8exy}%c`rRh?sB5NmBHvef$agd{ix9?1cjM zHg;}|yL|G%Zev5-F=->zTV?||jD>Lk;3)FP`~UzT07*naR2;lPBM{gE%Y>B~RR`{L zsw#GRV9ypb(_|s%2+izW)RQy-m=(cbSHo?ow=3>#g1}ig8<$g}-<$E-__2dCwx-5Zni^T)1&Sgx+IYHnhDH%G~-_zM(2Obsy zSszUzE8tBUCj#NEXM`|&p=-XNb|lO|ZsJ!7NU1DH1>`d3r3fTxi%gNoWz&Q_S^zMv zEVhMd;60W`P%vRBK9=hgHo^rbgFv;h0G76I7sH~-a5%tEW+mlhVLc6Zg^1%2dvm;e z2Behckrmn?1@(~Kenw~s;T*}B^G01n%-zc#S&k_Gg1RR~Ju<8T zmKMt;&Xzd8kFzz5J~7~8Mh91@qOS~amjj+YLBA$h;#?jXH7A8y?X|4w;Di@~O7{=< zI{GX5RPnDrY_AL>4Ah=$p}d2>oH$k4m;jgrATKV!i zyILddX)-m9B`5VUb8C0CPXGV{1TQYX^*O>ojudBpHE9HTIf1>hP5=n`5)hFX@C5CW z+?pxSK9ik^DQ24h;n1RA;c0_~$GO1@*d&~p;zH+A2%&9VI_ac(phfC!-!6vMccz^b zk@Cp;$)szHg^-XjhMd#vu`{y82#g~`wKeUmC+w9ZdKZ7F4c7r;f2b&nwj z@wr1<)`~@2SIsm;4S7x&Lxbk|#O(tR&U`6TWHs@yy#he^!8%U-gap)xIH!z^ol*L! zR4843xJ;f_Ki|V1!6I1%U!FJ+gkk0fuX)+7&j`&oT>D?1#r~(-uf9n93N!pe9cHOtO=({SKSetNwj}?Vg6tNm zcT+&h{~Jp?|9c`hQ6RJ}+!A2{dxo$=x5U=~99~{qVLVif$WRyLqh;%;C-i-l8`3(RfjWzrs^RHg(qTPTI{(|}R>;B8L*t=_9 zyDss;NCXW)T{U-DL(Tst3y-uL2>B9?63`I?s7C?^`Gi1=nip!e6v65taB1=MJ|3-b zu6aEk6x|3k>foI#+3gZoZ*i$9>U-27We8mJ;|gTpnO4nc;mm{@azd2{si<>tBJ3Nl zIV|M{K=^&nH1g&8!zVr^RZ?dlZ<)xUb1flPq#=4yJ`Hj$c#xNQP*jO z*A|0Cuoz4M!e}rU1S8=`f=}=X&4AT_)fV@z@ZbvfFL3`c9$Ym`+%u)x_@Q{+c|9m+ z=MW1XCAI{bK(#X)5lB@U?Sac$6zfGDt;a-+B05X#**MwHTMW$i9veRKH&4IH^*?{{ zOBz1$B{RQ5P4X~P6qx_b@vp!bb3uhe*`eT{fZT|Jvqcdxi3n>PjD_)VOV|b667C%S z4E7BE9Bqp;Gu9;Yh_16bDwi=8)nI2S;WIwy(<&GR^Sm>2Ae=n5*GcMCLqiFv#-29{ z9n#CJjPUQ6FFfp5pOk*_W>@?}=2KpdU%e&6+$NHqRJ%+>OBL^Sw)3LH0(2c{JFnxe zxz#2wbswcmItW@HVE;(gkAO!B_n)G@kTK40%IN0Dlti2lvB(uSTQl>$$(TYVg%gcb zAy6w5P}k1PYiHxEp?v929veRKA9!iQCn81SlPF5t^DQwMsc=zxr!NiQ5L{_w z*#H0n1t*ijfta77V91!~u{8w(dsBe00|rypT-fRp79OjJ^9B!FJY8U&ACc4c_uhK* z0R}UU`ebL`(j+chA%amEA?>qpSU!YTvGh{p(5FHHR&`#8A&_fl7z+<%mgk^&*lxWv z%1H$kQjV^3wTtHb<_W(k|5I+KORAwRAa;UzgKQa)BG8Zjl5cL~U>ev3>;nEC+!k>Q z-y;RYGYl()9GfL1Gxn%~ID=Bdg}hwJdH{N)*7XY)yz9}ZKxz>O_zZiBhzx{0%6_hn z8YHtvRHwY)Nq%+vrBPSUh=8dI${kj}r_J<^-(spahdoBPUdGA~B#RHThd(GV>w^OB z$r!EIwD&OB-oxt)EGH9c>9YnLQN|~L1s1?XW`_yuHTn(Zt=ANdG5#%Q<)aFLld2hR z?DLuvYh=`(=M-xv*-fWdn*$yT=8@Y;!OtTK!Uc=iRI?^#sV556Qz96%{;B-Wp*IK? zokE~RC*W7cq$YF`LqeBIS&cVnEzS(?8*D8e*}^;XH>SrI_d|5$S8#`=?X!CO5(qh2 z2%Jgcum=_m+6F#{{aG446F5AZ52dKp(MhHO@|F7n95-tmu#da;g?`C)1n}lWP#|z3 zeoh!+hPM&?gb0H9Uv3Xb0kI#q#{p>o0@8rk(|Rc2Y8?YyB603uVmhJB zDaA5ttgd~bU#?AZgd~K9dab!Vz6Y81O}Jp7SZ0tddi??+qQ=XLg8JBpj?yqHnnOVC z9`I1|F=4Vac>NL1Cv)QJa#7Daxt7UAmU&=)!ukqB{_){&YT3pvC% zGy#n?!v1~Kp6e8Ar`S!WSlfwt+HaS3GG)L+Y6|e=DwxzDcmyCh3|^{ZoS|yqQZ?AmJ_vHlVV6=mw~rM@IM+gX&7$ZCfs)<> z>TI9*;#m1olfOet=5x6*%pkCm;Ji1(0Nrlk!nzhZzE?F;z#6#^#-zf?0e zZs^Oo<~ez(bWm#$c)hM)0$2gB$#mR<_E&T>m=@*{&XNSeb`K~zp^0mGxdB>WJz#x- zq(G<{B1`dO*{p{BHz1@;Nsgl)hkq7T>xY#6~n>ZP%kIi=6S0%$TE_JV?!yVOxd#7G{mj8GeTia}d& zo#`xYJn8mJv`Bunb6s+QB7~xrLq}b-E`ga=!OWJ-@J2o-D5#hhd!!z*LmZ^hA$CYT z+&O>(F2*8Q7+b~~8et$;=g7nLl7UHukFj4(7@@*pOL15bIP|V>T<}9yM;r7ilQI_a zl-w2xNKU@hmM#_2&c5Wzu+;1=j2x`0hy2Xs9)1G<=_K_4$(t%-DL-B8-h}OEO3ZdGL18wiejT!AqLl|M+ zm;zuBhq5JZ5n7lA!H0ud&rtbEeQ_v8_pQXrEu z&e1&j0}2Za`?b(a1T!3N4F;e$qtA7*th7;9VESMAmVVXD%8+F@x5P)VK=!9-E10%53yP;DO|f+~de zgoTrPeuVDL{M93HXl~kH-L%;B8H;7~+z$Xo6wEiC%ArkZ zK%g#a6^t##qUm5pur~+>TZ3RQpwxvHS4(A`mmy+E2uVU+2M55wI(Rb*i2(=(ox$MH zHP{BUJvL`(2KcV`{Z%vS>-9WKC3xoydZ0%3+XdY?fqE_vG%NT8%xYFIqqmcaEvk{7 zQ6q|n*HdwlKd{IZQzP{qIUa*l#3hsqZ0LOvW+M8~8c)5IDP$1RagzTh8>NT86z zh-1-B>|i`%1G9l~=pBq7r^egqSEH=LK>(p(6nARHyBy#UnkKju>_iz_%hq8RBWy^o)iD)j zhPtSyGr!I-zZ+LHocIWWx!p+0Wr0C@tC|az%%3UhXiokGfyU@$XuK(Pr12OE_6E_S z2YN#RT0%@1fSAFL9$NqdV_L4M8JaM&7H zz|^FW{mSg|t5*C<6NiliSS~x5iOxq4V?r>F>t%L6p@Iu%HC(cutpWfj++zO?4p^FfDMk!g+vU z1p)Hume#JuMg1lPyPRa&ZV-*6dnSyK3sSA1wjnqK%}{R$6i>GMH@(s?5ePY>tl6@d z05s(VW+(`$2n~74G)J?**pk~A>{tSmN5tnXA-4?zWKA(z00KP`D&No6z)>LL42(l- z;BEbT<+}-?ogImEbDYdYY z$nlKWp|173e=GvwPDU67_)9frje=!YA&B7W&a5HM5m1+q!UO z=LBrmftniw;f?M3KzLyQU?mxy1f*)1M9vGEQZE_}DWZ0iK(#=0L_w+!&B&Kk(1KMo zKz`KI=^%gtffld^(TEnBanZnAG^UWkilu9Xs>9G=SYbQB5513DTM49Et_4~%1Z%gI zfQAlM!H+}uQKvU>4O{~k>ynv{a5dDyY+knjV1Cz0SM3Hs_`d6C8P9Hi&j7&ZSAGSc z8YWS;1S%X2Gv=3SoIAJ_xi!%&GmuYa7HH`Li|%7AkgG$bI%cB&OgU%=g5_t3Pk59sK~^i7*X|C8nagY72tpH<%4(&!N2_M~ znl@NDYRGMV%x(aLfB#zA>&&hXg!faq^pMnGDl$tWlYDw9mT^c{a8ZWFM~F(p)KG3t z&^nj5jcm(|umb?8qDP|{c)MeZw`fg49!qZ}BS@@+7d?gs!**yem=g74AM76s^}}#5jI*I9gGRli&Iz{8Y;iq(_iiCguP6%r)8S- zgDNEM>179WD=Y)yGsn^DQ0i!Q283Ec(Zv^$T$nHT=OqC6 zi6dA420-{eBmh5rQ#ib-GzwL*5`a8wHU#bR#nyQaWynOyPq;Gi)EIF)*`by|gN$~M zl($Ir*F%FF0}FTyq}tUCoPo3Od43sFjRob;Df(?j!3IM=_}H0p$vbirz22ri1U2op zLVd3dQs))P%Npvra;Jt|QsH5e$YC5~rn+(9DfeWriZlvJ4FUpq(ojaIyDB>zrBOz{ zSmR^0HR z^Ka0G9*`0|NP9yBu?L2PZC7-IsX&@t_pm_fPtE5%IBBovX*VjCsYOu*Jd2RYUn5)e zVG$N7&mF4ar;4IH$;D);E!7_5#NnJ7FLC~-U82anQ6tFzx1~}j9<4JE-X{c+6FiP;9|l20FM_D54c5SVSirWFu22XBDLKdNr4LZO ziOogPY!%zfTLK~HO zj;VW7#pjsa0BMHZ>}CpqN(zHup`-0aHd?@%XdMiqg+Yv_j4X_BdVAu;s+r5v&hbat zR6)_06w;VOAn!a7q$$xl(XVQmVH^tM>EaprWS%-$i#m1T{z`jn#_x(FF5m{41#(50 zuQ8x{maSn~nWC2w8&*1}ElKY^FhmSnVhFwTT7yWV+J?L|avUdA&Aj}lr``w%Q7(Z= zKmoauUGP*dlXuK;m^Yd-m?_fK8o8=_tdS83H0+76M$73y87W~5JTT+{TZd2N>KIe- zPf>7;dvXt_0DnM$zn?|f>OOu!*14Raleu38wV8jHRPC# zf=W7r_){z=bnLnEDRj1UwGI+s9#=Co$DX>{#B4h*9OQ;Eaw$8!7v%6t6UH$CpwwYw=&*n(xdES=p~s(Qj_F~ll^@v zN=`-ZbT_~mcvJkTI97s_#mKJZczh|68a!f`lb#$4dC?2FP|DWb7Ax_stYh6(r8;c) z+{;Q)$&O^DEQ=ymrg1wE0?-k3iQf{p!{Op}_+H3BOLsLS=`k-hw)Xm1;Me_E)sq#Q4h5fs{ZvNv|8HeO1|w zku?3wbRInr^LD4=7a_KG;Jg_|GUbi0zb2%CJJUhA=@`OokXN83)LLl!(0|Zl$>X-=QU}oQi zebQ(>*Y;#*WO5nHC+CM0st*K%KEX*^zzQOA1f88qpHPBXf5v_lYb<1HsBwDOg@yTG zpC-5y{OZ;h%cL^KdZ@Ndjj!*p|E;6h!K3|EBcJJaeHSPZI8jG;^jDNwRLqVtwN+A4 zwWaBdHJ)GA3|HZhRP#dq*5Y(lAkf#+u&1h_to9;HrrHf^4FrJmga&x)h+n-5K!|er zjG&rop+xd_+Z-|-rd>=bfwUz?UG_~Cr_`uQ!p; z_nu_lXa^y)G6Q34V6#AiiP9Mm1nR+MWxavvpe4+UH5atxS4X>jyeh>q$^|)m0FL!n#~?GCUL-ezz(hS*BVXMR zqo4WJNTwJIbENs!hf+f; zC}_n8^ITt1Ibu&8+A(|i4~@HNjt~F=+q}T67De~|^Z>_{QC!2RR+aMiz?)K30GTE& zNTgx)i|TW1X3&v|U_rhFo61JBQ~u9IJubx%-RLQiTrLv$?aLQ(%)WDpGf_)>D2>^j ztW90`fK!vtuK**gOtk<20t?VtXFMsE*=xH3gk1JARY5~ZF3%xQ_L`2V$O+mBDTI!u zu+^k%JAPb3iX~0RJy0@;sbt#+@+(D0P#K4=n}dE8r9)0N@+oyuzfHAY&1mgzyYl%4uuuwltTcH;yBv#M1B9 z;u<~~hwT*u!WUr15uPaoCJI|r5lt`{Yh+TYszAp|88d<(SQ?cqjyCog%i~H7b&HdY z+B0bnl7B}xs~0|sh#-O(W-@8sA+O_+V=wlK0pW`kP^aVp!Y6&6@aiS zw__>^*j>*CI?W=SErCToHM!;`07x*x0;9HbU1%1SOu4Ka#LB0Rcd+78hB_-;un|as z{#*b68V*TBK~xlU5iY_e7*a=P5sUUITF9UYLL;QqQD&J#rdAF_KT1DPkJr%v1@+CGumXbiO;&uOsZ3}Kp0D4^hrs8K%l%F9~_bYWI9;; zRe{4uaA-;*(8$H!ktuY5fia^xYWDlpB+SY_t6{dO31T4n(bGqv_AC8x1-4jYt(Dl5 z{pvSg^P=AX2*2;8`jx>u_+`Q`J;R4Nxf0p3+BuZ(sY+lpI?kpkka>Rq6jfNwuvZWffWeT8D2jwZ8Yy$c1Pcr@ zKw_Vikt=A5)R0C|v?K-fWrP=`oBEbR47qeB)YUG7ctj#}9LSkDsnbz9fW?SO@UAS- z%UAfipHkuEgK2C7c+W8>xB(D;W&(hJ__DgK&y!h3V?1>%{7CXR^EX35C4wUa5*!wI zOMn{{qRBt%|5j})pF@wNpH$6EW@W3eFh_JG3;;+5A(e6MiEuI0+B^5g`~1qy{7N?( zO7$ol<`4g+R7qo>aO~=Djt2KL`>F^4|HCPK^Ep_;N2sXscz*?eq)rVJFhfBm+0%)52NEc3dvXl4ZUBTILIUtfH-*C&C5;Anw-=u>A|^e(5#Ej{=nO)F ziRB3rF_mEwLn<|*<8Mu6wPO@m8d1UlCXKM?bBzq(Bb*e=K#OIia)Avu(*X2R@W_SwgbG&;ej+1o(ci-L-j1|@@UYFx~g zz6AVyg>8&<7p5h%GOY?t^lc`s8)pTJc*Hl7d92rbH}BC*UYfc%Q5JY&%a_k zXvb9&5@S1QggQ~fk%CqPtE^zi2OR|hsEc44(nu|NmaBdCfV~Ri2(M$AWBHK|I$%hE z1fqy=033!?;1C9b?3p60EuyIQ5Qfrd>X>ucIbZkOnK@Z|t`rp%v;jWCN0sRq(r_NM^C_|QD^WFiE!#~8bx@#!+?)so zq&!$c8xcr5%4EjJFpb|T3{p#GY&DdATvQYlummKtSlh&}SiMZ*@~SaSlm^HRQ6FP* zl~i}d6Th;1{OVdc!dIhe^jgML&rwvHJwb1N)I<<;x;audqCv9FiK!v1(KO*4|GcE< zynv;VBbkW}NI-P3J)yJ}I@nNF+7lLP(s^>w%0N^y4b(OwV1cBoL_H$EdkQ6gbizK* z*Pag$CJ{XMaA>5_s}O}O1~?r)kqY1yc9;-zUN8cJg7bO?8%MG#uQw#)r{+?_z{#5k!g688xEJDABu7MwF5{o&cqS!hIms9E%hg9g^)z;$19pmpjz{QB2P zg3&u}yD>pa&eO=GBVQGkU1qAgv0!$`3JG^|j{1>0HkzOt0c}yuomB&0$xA%&yozPS z{PN`=w)aILbKid0J-Qd2h;Fn+@GDWXFI}vqr70H$4PR!`KawFr%oV3UTT#=%ickda zrU~@+h|+&9KX4Ir)n^@BYnLB9+(VkZxs(rl-nm>bpHEH(%?VT|8$LmpKT=t3v%VNwC0?h`N{c`@elw20u4)j8V$ASvg;M~)KU2o z`R>3N>LV7R>txF(1uRY%z9!LGUOKs>O)5?W!%> zU$^aU_?5%UqcnK?Vt4dzQDN=8w8)c>bx^^~+#0#;lQGhtaFu(j<)$Tpqu$$wU&0>K zeq%zPTAZ4IsrXoP9bJVK-i?w;u?T2T(o)r@PrlHlk69>al=AVF0PGakOG~nvfEwwQ z)jJ}mnuh(&ZQuEj$Z)oqC}?8a?DYuID9N6VJthb-}AUW&?0FM#5E$;dCiYPf`CPR z;rXchrr{+a7^?xs^1H_iS^A<0#ISvLvm8+)2|i#h+S4Po#7e>d+p4@_3%2(8DH%d| zK|Wp3k0OKc#mKdR$9leWVQGI}4Q zo`kThL?Bf$i9mv)TBHJlL1gbDEgI1eg7XRsbI}lnw9-4AqKnn_DH!#~LB!Jt{WjP@VVk<^}z8q{AB=ne9)6CA&Y zMG|)h?p;-4cs2tgc#xpCGuwIW8~3M?`qWti`-#Rup$36rApSGib^Xo24CsUElB)v= z7mBbk;$kQ^GWrres}i;Eq}c!f0uK5Z)ngCPN#Q}EdAB0A1Xx8`2UW|Hhc+Zy#rhGQ z6%vs9s~b_j9}9tlk6NEmL~wojC|^rg@w!0Bt9XpTCA{jO#Phzmp(AjnCA4Cuu1#mAXt{!27`WNa%AL8&S z6cPB0bEW6sXd9aBo}m=`x`qd(3Xi&mf-;UsK{;=|WNQZvM zAfADp{I>;mGXNu9^r81T`|!L3@EKi$dDjmB3u3NTbr7OJYCsjT@IixTM)Azw@=dSO zTVD1}qAkmnaL{N*ufGSqaQTWp1v8VyQG!h1*oO}_r(U{5eRY$t8x`T3QehXcc1wGt ziB3_`{;EUwq~4uBZ?r7q(#uI8G<|~npJ(_Pq*i&tnLuPYhu1lz(zz_ zH~u#0UM$(m7X@mulYVUIFygaHXQC&9*`zxBEuaJmCb?-+%b5BU-ign-!qb2~pF?ab z%TwJgQ1eu7Y1K^T6Dt3r+@&{{R$WJ>1|HADK={Sqse3mgQWp7Nf1YkLF(sN1j3)?z zpALXk?S@g1r`i@wc}YyU$K_OIA?**0nbS{1J)E*9_91HdVfuyrnQ3@kIqNE^m#;xT zQLXd&q8LOT9RliuJyfQq^8SmQSFCl{;^X!winwIDO}`{4(nTHXvfIG0v6>K_|H$Af zkQ$c7O8p9t=;$=v`W4W708tC8G!5F7ei%&C{O;xluZC$aRkw!MkN!Ej286TOg)JjHio%pHnbUB0E9oe6 zpC;-iKW&&nr_bGs8zUVn@M5&_w-h&4$#h3B?c5hu+&3HE1=mu1L}vYdlM0a$h@?sk z+-v{<0uMu|q^_dG!Ly#r05X*|Bq_@78u;yIfYU-G`gf;By1qVz68wgPL$W6XGFDz} zug=|-wv5wnn>twwmgBtC)BLQp6f;2I;BHarn04pqV12DBpZt2?wF~Ggq?GimQXnbr zC1WR;q2*>o2Y7Um+`HBkA+e@HY=6XKeZlk5=63kGk%eQ8Vqw08{p^z|AxyB@$|RL0 zVTT%1Vq@c32l>sLW7!k0Pi$WgLTkN6NYkc5h{;Sj^gpE1`=^2$$pcY5aq^Z#7uKRc zXhJ~CX@ZpK=LDKyh_>-oIN?vANarNVsELbC+u2{y?dJSR2}ho9UQd!<(QcX7Q!);6 zN^*J&viJRzZB?)ZQbI>ZbpKbDjp(yXTx62sw}eU%G~_QTtP3$we$*FhJGYIQ1cxHQ zS9LFIwG=c3qTfl3nW=K*k>%@A2tHO8OFM2_CH?B~0;RE{V#LYTUJ1T0KmQWK-U+&` z#+G^*qGTOjmEX|yH~B948IJ<5lkd*r?dIOK_^a)l;s>H4DXmE91?PV9XlLs4&8INA zuz)j$_=VHh$tZ!M%WlGyRzf_Fh|H~KdA*yBtexomt5~gkF;k9NOGABMffO=S(UdG& znFL0aYtV&o)ZW@DS==aPntW#XR0Mxq|Dj9rMcG0TlO@;IHoF<(q>MNZ}q6`omZ{fR_9Qe%CmH{5>kl*yi$7d=Dgn=$9LsB~gFmR%cn7Y(0Oe2Ka@_nML`z66HclR(+KjX~LnNaMT^ToT^DvO<&ZOli zzd|u*JH*7aL0Nd2AWLbb0Y|R5??=T8hxq0K`eKqtudB6c6Xp2^%`5VTK+OmI`e3LE zEr%{PEL@(=E#aDZC|@K|q)M2sEjXNgqG?N2_`-f8^ZZhJK+~Y3KZWtwTZf_6!>mSL zau;D4Ap2mB+8<&V-{OU=*L&18KnRFRM@0D7BvsxsKHLp5WimaMO0EIeJDjjlt2Z~L zP|Upi#T9=SaR&F&W*0RFuIZ2h^&)r55aqA-q_~~Ur1|@JB$xmI0uU8xHPjXipO>;# z=H4GpWbv4L!VszV;i#okBqc@SE<}%{$kpez+HN=wAYsi?T61f#SOJv z@|6^M@O{VOl@`Zh!8zsfzsiPlM0oc{nJnikN_}vY)b{J--zJ7zp_Lw!6I1Vwk*Psv z16HZ3IoV8mgTs$q&N7$7-GAW#*lXz@3go5ir!@8sn@E;kz@bDaUBQ*rk)a|+^D9xc z=meC@X#_|%@Kz{z$8DYf$xv`>i|5xua>c`)JqZ-Bf*>Z?w1(Q}gh*k#ZNwQlt1EgD7u(KHIA1h2U)^r=m1|;$d1KfHd^-@hfI;6+V0j2_W1%yS%bNRbCh^ z_hIbz+^-<^`_1j_P5pi0!Eza}!cU%Sn$X>GQw87~>0!d1*vLhJwYwyJ zg!{U(Cu?E)I6F?eL}GBv?9)%OI1bOmNM>Pau;F&ny@D-mqX!+=$-SYhMt9%B7OKrF z8hoqjp?k_FUMitg?cc+-ep_-J-eYdaO|N?=nH|oB1^g$WhX|ftaLI zs7`Jion_#PaH3YG&}ju+QQ^Pj1+aOU?(i#d}Ne`SruN3=coLfIhF`#A5= z&;>b=i9~ZBxqP1+?Ovy zZU$pvKfED9ipGG=o~s-|*h-gT1Q?grn!>o+ZY4Z>)`pyimoS^;t#W9ip}KIW0n z&EfcKyW=y>A6H($$JZ}Yu>W4~Y5iU)u5I^HtL`7@IoZ)cHE{KHTdpjAq6 zBt=U>E|v88F&VQTYBc)VuRzDL3_n7OjHe0^WItt9et(Ba+)XwqK1hN_<@WJ9=H;N( z?Kg#ib%NnBmF4vH@2^9%sjhlD{vyzAnN9fFjZ%2oZI$xrgMZ8jbg2%X)GnA>niPGVAq$@-Z+Na4jRT?K{CSMH5Nx3DDnG> z&WNk^_t+C8Rf!6yAoei*LCn~?T?97N5eG(Wln^gSrfChl+M`Jq zY;Z{z0{ebv|JZ(Ak50NSULScSbAZ)=dP?d+h}Ff;T3qT!&;LH<%+vATRdoYLMM#X7 z^oOWKzJLcDY?ay8s2%LfLE!zzpa&uHS;AV8SIh1YceWtECOezA^j%>0UvgJ7G`@~I((Zy%LuADn zS75dEdlS$A6K|)3-5?0~!k*DRz3wX1S&2;i{RdStDvKL5NC;f-fb@27NgP@evB@j- z7syY2XlN+w#$#69Px>?ZamgRNh|PfQbkFj<)M9))Lhz;5?UV16*2iR+~*7 z;CIJt(P1Y4E|cxN&i9^|a^H_fb`+Esw4b~3cm!^l1)bmB=kIR&%k+86^Z(HRW|?5^ zzg6e^FH1w)L4mIS>OAn1g4PSy|5V-{?LeGD`^SG3VztOkxAI^6;=%#yXzXDBU#-jr zlA{0D{pphesN>^*EX_^-H{&M_+2Q_wES{c0s{c>KEv@U(7-K}6*b3n9d8}!mQ46t; z{2%Mpbz}_y00031BLDy+0000000000000000000000000000000Ex1FSOox*<$M4F zTSIu9G`e$iWzF+Fd}C{3-y{>;wrx8TW0Hw&+qRvFdE-oM+t$QR-g!R1_xne$bE?;> zs_tEN_UXM=M<^*sBEjRq0{{RdX(=%k003O;zX1#WZ-yBXCFGk1aiP-fMr2IW=4Y& z4=zWOCrHeHKE+2rK9!A@Nf!R+kr5b4MRU8Cg%f5efz&Piog&jR``b69pu$01Widp9 z&~ebF&(v!3mY~Msn$7Z-#o3jYJ!kgA`S#VCi}iJ5n9Gvtv`$rJcm{J)#)K&aYsM%@ zeWSM9|Nl4STuUbW9sc)b?pT+Ki#qlHrmq%RAo~B$LC0K(>;HMTYmOtrTCn`jc(Tp_ z+m$o_&p0rkX9Z@D{?FK`GJ_7TqFMjiKL~nsUlZJFuB!X-zc6y4IC-CL3<8b=_1B&4 z8|2u{2Bshg5=QT9bnNbvV3?m*sAw*aT+b(Epj}nL9ME0Hh3#(M=W5Y0ir`(xP~};z zpXY0-kKz4`9T`gJTL+5Y39Z{ysavLWRxoef%g!mKfO8K68rr4r$uGvwUN^7K*TSoa zhT4GmR(+>kbfVh{LHfMUsp&2Ew@qEY$DptGaZdhYxSrpw+l!hUNf~nAyABPv-2a#v zw$ommA!LlMp?B}!SrGVLj2gCmooa44tS{BHZaxnQ3VdkyI4ikn8ZPrIFJYlFc%KjS zcx`+_&Ax*TgD&{fKG!~nd#;bZ{RhIp_1BzR*XQXl-}5KTb>}piqW5NsAQ9li?-<0$ zf806!zJmREe~%u=<6gJvy6rs^MEn+gEO4^}4ruur9(@wLz3_Vx9i=W$hnxW5u4+ru6 zc$#ln&%m`6MW;&XeEAkq+UFIyuEFz-pXaeGk=K`x>$XqcK&x^7*VP3KHcZb!(Y7w^2mRMWF8UKV(aW$P-rtrg z0}sRJAKQ)(OT8PNr**#P0-gMyK7uDtJzu#+AAM!M9$s&&E&2ce0eb)d0uwngH?hJ} z&)QS~8wg_dasTgNf+2zd4Em1)V&Jo?TBGi^Vi{;?1V}3<)D!B_M7%njmX?NDEMVl2 zx>>A9N6SN4JUZIx2$DS?xp?^5Tm7cV3& zFfIIg&D!n+h}o|9lnMrOuBBZ7095KK6#=Hd)_n*DOJ%Q9=W-0V!sY-#Aads9bfXN+ zu0=il_1w`mWvGdUk$2RY1;pw(azriGX8|#2mTzvBtI*MK1x=h%7Z>A8ep6`}4d3L~ zQU5jksnm3B`Li-Kbi7Upm4g6)Sf>?}COyq^oB$Xss^9nz03dwVpPy`0t5y6NzspLU z4W*%zXH>|VDh^A0I|BgcJPEIdejWXOZ7!L)#!N$FkTwm5%ACzGJ?~8u2n|463DCX- zz^?&tEdZ_uz)b*M3qaQf&~*UxJplaxKtBx7e+3xE0fuRS;U@r@10YKP(<;FF3xI6^ zT$=#*CcwK5@NWaC9YAykkk|#JcR>pKAeDWP`XNZ?5D?l1KoKDHAqaB}!kz%klOUrL zkm*Uq2^EB+f~=`&M^pg%3v}~@M5TgmpMV^wK~yRrzYB7v0(_e^?o=8tsvDI`<43hU z!~4{0XBa}I38R{vT}G1*x^k#@MzlYqiK5aFPibRM0Gbq#?ICUADQyZ>>+F>EAwXM7 zn@*+8qAF9Vw7FE;Lh8lSQ*a>_Tt)>~Qo*mN;94rUo+?bG(lt@(TB&qxRJsl-T@RIh zfXaJvLO(>MAEnZdQ_r1^$TSMj7ST^r8D^;ri&PFOm0^v_@S6(Rp|Vn`jHgt{A(dg9 z3V@;j+FbO1PngBBLLGZo1<)iQHmLyHJU|l%KnBi441huaKmh>Z0gyicvI78h0MG_N z_W_VT05SzY*8q?+0H^>UF975YfQ$g(O!_wg5DoyO0e}YpBme*=%`HRvPwNg>4Dwd`aARQ*X(CYtnr~ziTzH_s!e(?)Q*#L&`ZrAvD_dh6qiq6%Nb<1Je*qql_u2 zocK6$Eb`=_UJAx5Olo{S&r%QMR|SS%fvl{xzVf;NrK zhY`bHd*xB{it+grp~L+>dNFx(#IQBTj3cL=?RxK$^FT*u!hf%dI5Q7S2126P7^%ib^c{tEr+gtnCN?d@G|0b_ultABd5Yt8d>iGWcZ1us_pi) ziuB3*kyU+S^}Wu$R`!%9;UCI3KGYwyvHLV{8+^CBvy&zmVG*;Rnt$7f`t@`@H2*^+ zz0B<)=!c=zf?L=S=HB`)IOCtx~E6XvQe84 z&adj*G2gNY^P>K>@sc@kS!R|weSL@e^YM@7S<4rWN1scfb6+#;?vF3#9~}J42-`a> z`q8ra@PjmmtQ%>QYCYUxGd=ZXQ#%*Hdy-#oU>k;XmV&S!3OD*AMgk8-HM|eaVFbfE z;|%8T04^joztCyE ze7?N9ny>TlC^@`g`dh@uNRZRdji4#@6&e5YUw^hm8_8Q6F-mYNIIRrf+q<`Bh4sne zqQVvW2|U=|v)0#V6msAusgNDt&AupPal2DbUp|4a=hWNXU4k3LV-_)&iQi%P)$qO3 z`T>DU=+C202#4TQ#>H+2h;@XO>=onLjf}KH_L+>*P(vd`YH)EX# zJ7*w#vBtgwSt8h}Bt;RR!TTgu3mT{;0d4OHj0^!${n4Y6?c9_v7QRAzKit?}*ZQxI z)dZ!!d%NPvmf|?-vT$v|YytXMktE(CWxE(>Ufv+;@V@2w7<4$FO{xytJNN0m#tSuL zZsGOc7_~@YJ|zg}#U*eS!{aAHDwpY>AbAb2ok*h;CgIFs=45%jS-UmK*N~%g210xs zAPE8djd7C8@Wnom-?76=NJ8HPh%f-}U6ee43o$N67d$B8hzV zQs23Z;wmH{@h6Zg4niHmB_2$aq%8;7O!!f5^b4g*#`JW5X8%Y>bsgf}C}}WIm~sQ^p-&4M`V?Y?Mc|))Gok-E+zi|45D>57RFuLW+D*3aDT1zU^lU zJ^s3dz`%5V(q8{!73J(K>=h}(hHpk>G0#KSwBjI%!(gt6VD%@*>3{nS7e7j*4ZVkwZsAofyIh8Ss7}{CKSJ^Q9H!!T-gn_F(zXmoD z@-#as@q!zVbE~*0#ONvQ3x^$-&(EAamP|k#_)#-BR9cXSb?@#iQvs{~SP?ZflD%~r zm!tL9O-n^3hp?$@Yv`Enk{9{07?P>l4JhBG)AvUL;ZfX4+r`8Exte=D7xKg6;=+Sd z-e*^-(dZYHzbsF1Tl&(t{UQ!sIOhbo zT7;3Oj}Mp|mj?3(asG)c#YV~K1$}rA{J{J}Ys{~gpVok(BL?+kk%1b4G@b@9- zZ*<796)GX&l$xM`C>o)~t`+IqwgYd1|2TkC92eloVj8_P(+Zd=QM|>~RvCuJic_8f zO}hRbdC($<6@%`-D+n*$i5~N){wTQ6d_&`do)pn5F)PonAdEhWPZ>&l{s{*asT5r# zMIrU~UsQ!5$;z`ULXic%A_U>>N7bIH#rb&7yF5slm@fpIaPT zHg*1sl0&^|Ql7xPKi01;EZN*$r$gV0rOTK|Pg%BAW~W#jYvw1j&AzxXGRK|n6qf{j zW~59x)gdGq#4ui%>SDBDz9xIa?9ayoEbS*A-)N=n}I9eI;&Pb-h{b&B_WH7F{*1<%^YpK`a#caWRY0R54+v0TxB% zhQ1(u)Zg=#%&%UQ9)I&GubMQpwy|lz)3!I#_jk8;uc3(I-p{F>#9ksJ3l^J-MRB2)_)XU z%9VjSD-8os;#_pI^(ES}zj}W6dGY+X{>sJ}THZqO z%QKH#xXUF8tcobPXT4#Nc}z$3BJ9D4TXfYFw@ciXs1ruJarsG@G+}69$incixbkd& z)8DF$ucNP~t1Ix!i5rt&H#2cl^#RPLs(dI9uY$VSGc^>-a#f6?8>g*DV4oQc)Na>| z4gDNBwB>fuC@;7v(#chhupq97AoFu;poyg+JB&9O-FfV4;y9*i6SgN?vVwSXRB5qm zdbwuYdK-G)dWL0D$Sb8&#NF^{{(662tIYX0yIIKm#qPHn_beT|R*t)$M#p8C@b2!M zYiEG#-e$TXP@3i&{%N{=Qfb7tHs=C`DXzo7PkCxx%h4qO%%zToibPkUpFNw*$F!3#1Hdu;GQZ4lee61iMN#sFF#aw*y#kjHP{&Xk3@m9=o zekhyEhn1hV&~TP4&hNa+FmiW_gxu(2(pfYsMa-VF;TC!U!CvROTwPeG^4K;TNtq_$ zgGPsf;|d=^w^zQTd8&+Vf};kvyC7tg^L~_lqouRu=$N>$1@Z1(&?0ma8e_9*9LB}g zbfj~%etgS)sY&K=A)`##c08$ou7aB$$r6{m-pTTB2>Rg5qlO=eFt)d_YqEFV-k(qB zm-PuhZE`*Lp3=J|#hi~f8)a!D36RLhQB05d*pPnXaN7Rb;)-GN)jPrXNh=v!IB7@) z89&_Ti@ixiL!uo@AVHyb%O7(gkh~L81Vxtt*O0)G&l}{QQgwnkIu8#W>s&wR=8^&= z{vs7oJIZ`TE{&1@O6hg&NtCJp(f7S#*mCrReL)oVw$(hlp>>w0LteO(7mr zP7I6EKZj9jD}#P6h1k4){o~Iz^Pu)S-`yR93#Jcta7=&FT=V|PIYI9^TJ~}CR6JEK zMWq&PeQV;lb8@)+O8SuLSugnc;fV}CMO%gvo(%b(2^JRQmjJQvn7jkW9vK3sRQ5SNcLEI7+D;_qe8f$ zQapRx6Y_T6D`F?%SG@PJ++=fy*+0)8fBJ?YM&`=voUzrPQHVCVS12@eH+fXNn(5HC4d)Ot#fwSz zl*ChO@pSr)ysMN1KXlkf|Zrdv|Qbp zwlB%&zxR^&)xn25?G@q2_7pfodr)f1{deUKg!lOGkHsb-mN*=0%Imp>yo%CYwWozE^M_zaWH zcGVq^F0*Uz_tSq+D#Cv}5kWkvF0#2SmRqU$1rBNDR8eQ$z&MBmykS+xOcEP-v#d-~ zdc(_H20C9(s$SabpC7rP9Z1E9KhdF5T;yk2Avd()P|1r5`ND!wBo(9Qd(+QG*}jNd_Mp-xc(@}M)e zN!Wyxy!(2XrQ>fLI+~9+4&M<~D)rraipKFMrcTh2HZ%__9i`b|9J!UP;b%EbUp=e9 zu6rg=d#UKftH#<6MB<#PU2NBG1UNE+1v&Op>k3)GN{wiGP~tGdx7a>?UwxqhZjI4y z{?3|^nIE#7<$8|7SCNOJi&TjAkJQ|!ot6Hll=kYzfI>xAOk-}=rewVP@A6kxHtl#K zYd+H_;#;xNn7pM6{JNdym%)M>EC*xeDy8?8ZEGH!l)XI0(RBljsj5XOvuuB?A||hS zV6u%svoz$PRl|J$G$f_bN;3TGVqG=6WyJyXbB?RRLetZ?N-y{*N;%WRzPz<%fo&-~ zyPtd+LLJ2O_Ot60Y@g1V#UzC%OqiqKGGv5R|Gl%j#N`e1C*0IYRcvo|(Q}g<^{S|y zy>p`AOwV|H2>$??uRXkU6jSR3xkt9iy!|@@XptdM)tk zo5Bh9x*m29tjMejHuDqoxy8(|IdNXJovZ5Gi`P{?=GuMNfmod*OJjzohh0>v6{f*B=Q-(YaLV7~jp?sfBCqVT(!6EtD)Pzg>QL zqoFV{x$6AgtalISyM9dmIzi+24l!6@yjsdTKiDmz~^dpi#?+bC7W?nAfnmM zef;{#yWCsS3kR)(m5BfV0vPD)d6x*EBE^^8Z3Q3D@84x)y<>8-wZ(<&;>zv8%(j%U zdhz_YhqVIVLKI1w4UbqGd?srvyr+3IWZt~vR>68GO%U0>__->U;E57TG@TS zlO}Vqz(Ka#s0`Qibg+)~yVSUtS*}XJt1+9J%KG|iT4v>RFNp~Xo*fPk4a@pTnog>9 zEK7#2H$&jBbF=0o9nUxG?8sdV)qp$X+KDvH-R4wQX4Q`iWR+R?LF3TPQ>9_+CCEHt?PS-IhFj(w z_$N zQq^smy3R1-*~0NTSKTW+eAG!+H*Cy$7m~}p85+jYm&Z2a(&(Q0k3n&pJTz#Y!2a-` zZ@Dc~M^N`i?;qTCOSP<%#~;D<%X#haPy=@h=bZ1?11uZx{J}%nc9tP<;jkfV0jP$~ zab1vK_>GVd;8K3?b^;Xhsb>^VI<&w+D_|YOJ8Jt5ohJAF880<}uhaCDUWU~teQ6dy zH~3THx5U*IgWci;FZsQuUIyJ|KJxo;qE&HpDDTT{m&@W3&H4+b3D0C&IiLJ-SCG!t zirakW`uNTkt=ms;__ma^{VupHu`wz^o8ATpUW6uZAT4h_m!w|pad_T zzL(4_aIITeI7>}d0wfpo4x7wEIxgKz9UJFYq|@Um)*xc5g*l^FjnU(`$KO)xP8BD z7`Lsb9WKPn7u${A?l+!Ri+HqhZ~u{4m_$Qsu<2b{KCZ_}y8ZFYQd+;FYhdvPPq7{j zd>^^rf56`z-3`;`qS(FLb&L}r>0_O$-1q;sGpOl>a|}4Cov-0A3nJDzvnKx3zs+}E z_V$aQ!y>K{P9-$$>~)(E%!rP@KbPfwvr79^*iKH(Tg3mO5pKkZTGRV~yXd#yZ{>O`JK%7{%_ao9VitPKjC`s1 zO_)+P2*Ll)uHyi`Qi@16^)nj15PI;rKffTZ*v-GJ$I|%ayo?;0Ts>tS4!dR*n7}JS zZ*O8{)Cn2S*~PI$LsqT$9?KI2t&QLD`uT=0UcbRBX!X{wQb#PfXtRamNUl$en85%5 z0vSw+J4xg`I{yy-IBii}C{tATs~0aqI<8TD<7*$WT%wZsqL`y%(a87wB+lHcE5b$t z?eAU)I~$Dm9vfjZIbS-uH+C-gKG6A4gF4GdRj-SJye*Yph%dkY2f@7X9%1CV<4`DW ztY{|pySi~uz2{44^@`P7O?H9!D{Dv9l=54-n0aO(`A65&^6iNGGK zMnUO2+)#Q#{Nx(=CSsu}S zue?hZDY+soVU{2#uD?y6ao#azkQ^RIYZuq9gbnFI3XWwp;52MhxHEoWg-3HT11>`} z!qocXej8yPp01awi99%TA)U1T=Xak%-rh};cX^{Zs_FY!GKbeR8Gli+E7;k2x7A&^ zUrPM(yKV3MemdkzcQO!nbf4j7vO^#PuW(pU?El*E-Pb<*i}T{0Jl*7>BASj#?{@w* zT9<(K-^cun>S@vNC_KgK7YD9*R=}nEL##Rs85?7GPpLqwd7c~^S1f9&|0yE@ktZXLrz(9(7gss@k>p(`&)2c&v&$xwl?y9iM2;!^}ot zFq?&9YoqlohYoUi4DR1X7ki%a_)?AWI=DV7RjQr^=AUd6GTb8{Rr)S|V-4v0PCG4% zJhI|Yo8e8$e|i9iJy2^0ZvyO=e~FStUK&)$u}Zim%aDY@65|v95jONIQ~Sc<(vF?`!w(@-g+Wk3KVUN z7yp*7zz5{Px^GO;svv7#gA`aTz_l!SKyBAqqN(8@F}Gs+D*iJ%mXeIX#NT0(ZK`7x z0o5u~xS#?VJc7ddv9c>&>TQckK^^O?Vl1rCfFWy!@Q^Dg!IY zm&QHvyj`@-tmr9%Q7%p^L}^SR*>1y<$s^MZtppc%i zve9YuQ0)Wa;^q%EIXwp@sV1Dsi!W*#h(!zS-JRRRg!3l+x&G%3lY_f4yGrA(;lEIR zJHCYY_&AsUCO2wPS?J5*4~4cUpjRS{mC2*oJ~wPCT@gkTh()wb?OM2_&i+!+gv;tw zbJg~PIdGVf;I5($NS{%8f&ykW+(M%C&#lhT<&7^Nh{nrRpZa& zow*dmsWryJax`u#a_OwCJPy|iiOxZz}XdKNz4Dx=c=QnRCQQ=-CwknK?fJAB~^2Eq+SKPH_}`->Qr&!Itq8={S6M z{157_k|59>53j+gy{qi5G3j?!l<|liYmUnU9GM=;n)&aSbbga#(9^{UKF}3S!K?cV zqq?2tPUoJ-@XAMrs{9}7LI`N!V(o%wp$L-#saKs0*=+XSvZ@vHZ*4KQd)6W7No}TV z$jNH9=8zv)T*(0lU*Q;FOMFY~C%l;{=9~ACv{l3eC$HqJLaDXn z5JlX=!1j-5W@oHmbn4z%`-`5=<_=I1Nv$a3=C(?znx}ihWQSVR8Z(1*a&I@?GG4v` zQN1{A?#9>g%_D3IxS;Hc!ZQHADAn0!I1_*;}4x#$kv(({izR z?{Y@r)60O4=KD>MqwZ~K6bhlyP@#2E-aCB4`UP_zoQomXTjL`*nvgsvgsIym5Xl_a z2uag%YMonR((&`#$=u6`q;_b=$llih!s|Y%N7v02!ph%+>)lk}puh!FVhGM7n*C@^ z*V%bv4$T?Ie+kd3`E-Jxc2osNSMkGeQxsXjFqQGggGXIgP3$I1x>? zw)?Its;R60v`E2-7kf{wEIK%r&b=eQ@MjX=dL422a67zH`B9V5mYDa;SWte~G`hBH zYU&D1&Am7?m`NFYnf&S>Yn_po>dr%_oXo>cX2M{k>lSXoW_I|swouT}+|{&aDB-m0 z(*n%fthTG7JIoB&3jwjs-eK!GFP>x$fjCOLz)^-4FwzAnQVY#Oe2yFLb#Da@`+*o*fg4(+Lp!N9nb z{#t&GCK_7O)qC?F5I`G_^`w&I@Si4lVzIa2@a}&1Cr+BA)*FW-kE62u9Ei^EwQu2Z+O&sw#UmP9s*Tfl4enBF?S!GwK}R$ z$aS@a0VU(*PoFC7RO(zUT7v}gorU)aZuH%~f(iaNT8o0o!n_E0T=!)r{@9utCYgx< zC@vG89BfOu4*l^OF>F_>t-~6gQBgLf@migo>nb)Y|2qpasBW_jJ^v1|mC1a2Oo3p8 zm)VGvV0B0&Y0BG3t*V`#u(40sNFjzd?|9Cyi?^Mo&F1Y7s{^0Umcs&`eL<*$lTWfU z55r$lJOV5DUITPnr%JHk>HGoyh0NZ^<}sU!V=qazUQ$ z3QrM#IlVy{>be%Es37|orRATQ`|q1kMO|4K_@nm-(py_By@jJAx8nI_+BBh~Wnk&- z4j}dL<~5zq!qwA#XhN5!ZYPVs`Z&V*R8;c-sp_|LM1T2~{B+|xHr zx;1=vn}(O#I_V2#I-`0vU*(t9=oPUwF=Uy$cUNsYvL3VpBgmg602JD`65;*({I>l3 z?4P|jAS4r8&uN{d2$>4ROI`oE7DAnrM>ODigPA!2n;ws7w{}j_(Qv?$t=~B}ep-b-S+$RrYMI&=$-hYL+Bzv#aYe`7`iP7>-2T3GyHF zccAbziH4Du%|re?gmsnZ6p8W_!nCd%O&_=d96lZyzpQ3n9)f=oGrVZlqetQMhDn)| zGJ{6u#=rl|DMrQ}!iee#d>T#IW?larUE;L6G!% zSq(c15o^fhBRs=BK`ycwh=iCFJ-X=v-BI<@(VyR;fA%+~fV$fu(sI$Y7cRm__f-rK z7Dt)u`!gEI^p@s(6j0~EO-cFSty;ZTCu*?^F(fqG!?fZ&lXZ37ex#aup}iU2Zw7J< zN5tH9_zaJDQQz`#7c-lb^kP1L341AUiCDOXf*4F{0U1JID}_HKHXY_@sHaBN*>ti| zf9*LPWPL~18bG)0?Obs8FnGl2@WT?13nwC4J(}2>(CU$9q1i#vkA%uZzfPXnHBltV z9R}|{ITmBXKFR8~N%~nn&^S+}l;X5JmISnWJ)XP$SdR+S=&vcyd^DXBcrJ{GAt~PB z-V8oRc+VZ#N-(q0@v}2?p{(@I_d!u@2fSD?I0XSWcL8*y>k3bt-^7Io@+uVOv$|`0 zF&)+W{BR$A)qv%CVH^ko?~$+_N_cpd=>nQ(+wQ4}jehD!y_w4wB=bI_jb?h8kOuQ2 z?qo{B=;qumRRx*=_l>F)yDQXULzD=&W8vk*scGEM*;cIOauU}bdJ;h?$~I3A)&!Qajtf4M;6+KM5}ox zx9cRQ>zG6g0Wff{&yHwyh(?RXBfmboc#dLV_;%M-jw{JCXaqRQjWWOiAey6nF~*b- z3nfskBqHOE{NRp{6nCYOFSf|6r2f<=F~<@$n(a8FW!p49dp4l{EQ%*7bCzi=;=clY zo~K~pA?MvuaL7J&bR7h5rU^G$Qr#8-L%0KQKTf(bN1_pJ&T`RHi5_*l6ZCAs?Oh~+4m1zDx|2$}ilXbgAv z;TtY6EiS23YV0S^zVIT5lL$amovB-`<5}Sc7{qR~^FRLgKe!6m?l%|S<^Ldn|G&3i z(X>DT0`BMm00X$(v#)(@+%`w%&t5*ElsQ^c9>nhr-2kbvwN8m0Hcpr=a@MY$ZcB50 zQs(4Ar2JEt_593S0pW|u1CWI^T^DoLNX4&ix~{ser>-V~z4uvHHwD^d_(MxH`=z z?{8qZS4rA0L}!I((8%oAe>FBJ$S1cdzA+!~ztaVQ+wbmkIXt4U8hRguU_&_;aq%#n zS4XnFzyM>43V%QmVPLRjk8vKOD^(k=BftPy{6Ee7uK1MiqaEK6J26L7$`&A>qb`~l4I0carbfq>M50LE|q z--P00nFg@GegM30zC!-P~G~s5&@Va16YFlV*=#g`!Od1 z=92@I!Qb@&xO;$QcLRzF_yfV?LxVto0VWFoFn}^YvQS3&mghF(w0F|2#&23K+rKWB+}NICF*?zc0T)6aav{#68=^%}g0d zXYCpUC^(mYZcc(+vG}EeAea=tARIJ#F3K4h9wZnZ7^GM{O}AK`ToOq+&>0?Hxnm&; zKU_S_yKA@C>$bzJdfm))`ig_e?3vr_R^5pSSd|o)6aYXy2Ih$x06>^y(+{|SN2q;= zqQ4RLDw0(M7~e49cd&^AkpFui#NYJ`J30b@!1KS-MdSO=f)nFS{alO!zqm>j`w0I{N&>R0Y>un0oM8I->a4Mihcq#T<7H^3z+#A zEeiEv=%d(st9!$->wp5RumXfh`G+X=ecdtcZHYSI?GLW@M;8x^0PM?yAmZuiV-qvy z00Ip4^wQN4eB_Y=`1=PIhv!F*PUOL&|6!R99=v)qUdCc!a$|8@9Om$qQPI)qS%33r z8PY&)=!04y$GV$6W_3a9>wvi9%q)Yt+pR|l&=W`MSq7Bo2L|pp2s3I0n_fC1<#;^) zXvgJr(Jb4{ z*6q{lK0ku2^Fa%M$$;j*Y4r&HxY(_o`9kPY4kVJ2XG^=|=KUomK{V!ggV-zN+AZr% z=-G>U*G&nogL~P#f8Tp!f7HXP2ch4!v#R$B`*Ec&K@QJ%1KpK7_(cB-4j?dVv&RE; zdzfcilxbxx^86L`CD+k0EYK=vX^F^@w96$xmz0yA5cN_?PuP2^^5X^(Rm%2HW-gca zXOn-;q{e?2W!Gis8BVo>#JG z#_dhV1o2Hba2rP3T+FbN5>zi$AKc0+A=q%$Ipi7%^G_Jh2AClbJ}|6Qi*#sF9)5-} zZY}BCuI)Y$ogK(0{^4MrEAE+a5#QpYE`Y)nwNN1kT<(~?zMl8ato9S`@BP$+?Tc^e z=^k~C>5iUPJxoFc?@IiBX*A%aQl;__Ucf) zKun!|&bO8!TJ>IKeFDhhI(ANiOM6~3?~(#TCwk_Q_0cIqUF!Nlqv!NBF2>RIaBN7r?*}PLhrhr>3_S`MPt+4-RjwF zq>03I@ww;cZQ ztd$Bw-3MK?-$BW|iLXIZcJS*H`=1-%qxcoxJtA z#4Lk45gfe=Il5(5BXNTe0#nK;rvd_W`-ElkrpL!{`{R_95+ozU`vHci7FNGxd;}r7 zMqeC+wmWgbuZ9^MsI1F(jpcQtS}&S;=O3NDrzfJ{Tl=ydIC|sZy3;4p=->3fB1`wL zVeU3GIIAqBNIeg5Z`jOIWhm9FFD*)l9Z6Gc%Bi8s0(JR^y!=Am^M@iVq_Jsq9W$eZ z?9{xl{OvP?ijp>$Mx%wVlP5PNMJ7edPGK-?!~_9x%1%1&{O>MWq>`=E-`mkI?vhC+ zP=PYzyr?#d=v$3@=2zL<$%i_!4sAH2SKe&H5Cat|gfEI{MJE01nVb zjYtms3u_JUf!RsTti8JgOHoBap@+ZLb+ruy|msaUsp zJo2M5g49e3@L`$Bp!schy3qk$U*Y&R2HyJX1>TKhw5ade(F}^f*>c*rxSdq+^~xI# z0hY^X3*M}lsOb6x6Y1jOx9Vy+V(B<}-ZeF>s(>4nz-X>eFHk_qQ63N6GEoT$Vew;R zb@G}6t5(?nNk)_j>XqdVO@XYkpal}WKhx9`i9(V@4OY;IyO4EjW-Wwtn!VN!Y%@*H z&Eud9Ag}2PkKgp@tXT#(jh83+a_BI85JE9=rTKgF#U&BpvXKuEWVrz-jGWjl z@%0$X{)~;D>IxXeg}2d7S`LvK)5i>>EJ4 z4>i0xhO#((|Aurp4rDD7#9iE->(tcr+{MJgd`D0eeFxtzW^K$jBA6P7-clqcM(4si zR<9)Fm5*KXnl#>V6YB)Q;#Z}OrY>i*ynq=Of$_^gM z!HiVHJ5CqvXWpw7n?{O_-n+nS_@-}U#o(aR5I~S>DL>>5q8K!lwge1 zBGb=+uFh4RoUpX>6bxkSMWP+aq_&_4JkJ*o>wlPOru~U8Z^Ox}&u>Tm^8>ld*E1(bQ7ix{!;M}o ziSsfpQr+-DQc2Nb$&!^$W?AvK4FmprYcd~NjW$eKOKI|C^J`z%jaHg; z_55#NPo6=FhgvAnpq+&jjYpBVSCWk9Bn0l~`MW%C1OcGk?jMM<^>3R)P( zqxkd=H-aP_LboZ<<+LVTm=mo!I*l0m$lKY)QWf#22~nB39F#) zIE*tb^rlYX^GHm%a3oBvvd&Yxv)FgPlM1F zMYz;FqpGeqr%y>lRI;;I_1yP*a3_tZ{HuQgJw@4w!IrobD`wxjDDZ#o>k93TI?z6C zDt2Y#bw}X|!S_>HIcZ+d_KooryGKs{GB*54Z=*ImV0Zqu8k)#VKQHK3GYE#~p=`_n z6AsGxHXHc~TW5>AJlbp8CmbFU(T^wHP37UO3oB^ssQb}mM4s~x(dS0Kh@m_>s&fbl zBiFmr?&iw;G52fpy%n-yPYli>y~D~LE9V+wVo%>WkbMK6wj(pB0t( zD#63e>+$GOFY5f(P9F76#Ua9KqIxWowa4-QGxFERN#bCOp>g4D2}?giwpPeP?#o}# zXZi>7Jlx;fbz-B3*9qF}J*nATCRcBnLY=zy34BFq*`v;w*=CI_Sij$|M+P!Puj3#w zLAFMuwR#|c<*S|Zl5HGTW!IbrpZjY6xO+DDi^t3B%ifzKf9HT_DF|ud{2vh2l5d(` zzazk)1e8*?#t}Id_D}cR7;*9)l>-%ZQu@swy4yH(pXoPosYD)A3|uUu7u?JOAH#px z*)q>|EYXwYhLSF8OzJd&FM|EcQA^TO-ni zFZ&cSM*bqOiN+v@O;v=VZ_W;RFc<%m0HG(zJz zyQueJem;~MwrQ|SHa_^+&!kdZv=p}o(Q@_`w=Fd^?J6%oP%yYL@A9}6n@Ii$4Z}!t zk*bEKgQHb8%-8uTsaYy=q{nVn?)I3~?LL=1LHK22#$u+nElf}VeUE83HPp;_WN;|b zo1Dl$R5dt-R9>WW5ZAv0^H7cD4Ri((E!PG@I?+SA>=&0Xm&?V*XljtiiMZ`?vrlUD zU>DKVm!yzHSu+gt=# zTx<~x&w=)R~jXri*FEeH95h`nD$V4~nETB{wiKv`WH~8=d+jn(~fBrOHQ=sd~Ef+e4I`nSoC zL2`+pkQs!H0oTOp;wEYccIvE>jFVZ*nwBBlUg~O-aEI>I`5qqRxLYDG>1?LjL~r&@1vSAHkY$fEvFzG4-VGs$M^}fo8&G93yI~ zy-e+tY8XFMd4WYwOc`FmAN;I(K?3@#!^!N^#(pg$!P!>7+(C!4qY2<8lXDC{D8ay^- zA#oKT-MHS5m3?~T4d+7Yh3CEVVMJDm&SJUx=_j?v(|pxQfmsA7x(u%{t!%BSX!}-> z?1c^$aW(a4%hIg*g~B7eevy&v1K39ziv*d@5?(FE+A+%AF88R$x(vOIAT-21!C%ad zu))SKcQ%`aLL(^^t#6#fPA*O^J!y4>Si#XM;xS1o5eKoUM;M{W?Kpv}&55f&kMf-YJ+_*5hThGkdg&u{eV23FC7wjkm~AKzy`zB+vZ z6$kC4)Xv)Gv%8^Qj9Ho^VTnQR#8Q3BD!!oseel0`CpU4);RLxGR3Z%^w zY;{mk#%bKR(=fo5Xj+pS+EkOtan$1+y$O*lD0=v111wVcTiEZt)~-F_puIldHNW~N;zS(g zv!2H_1V5s@4yP|!30BJ+HZ`)iPyO-juf6o50o6 zU9G1JNi(BKM=qCpL6#?XVglGqMu#>Ha05c!fw%)Dlh2P?_D=rB0>xO)K$K-^w$ruf z@!@-fja?cHaZlo zem$E9k5kasr8h*=R>^o!xW>*?dx~}oZq~8mxYzq8&!TA3HY@y6%xo{4jRJ-M)xxfN zDy1imozEKNbfl!zndz_UR|Jkr#|Y_#u(wGG5iONwn_9^Xf8nO;h<1*Xx{GD7-l+$S zpFU5d<*I?_Pt>FT9}HASpQ#8WFmM8f@iJETEMg|vktn*Rjeqvp=a-0)qcF`*Yq~tu z$f~26m7i~gMf?$llW;i;B-KDG%FUP>U-z6PE2)spwY) z6(CH^B|S6xW3xSvjhdBF_7;|ytfpqx^^_9rls*V|EDD|e`599jpAwnNahv+itZd(| z?&Mpq=9BvlFMkwsohQH=w!&>bD4Aay&v8u}Wf?SR*40l2X>@E<}cZj0; zz*|i?3xV?Tr;Hw zQ!Pz0tfjjCU+w2wfW@$)GVWtu&X0II z+5LK~xY=Vrug&vvUgv)_*-Ifr(4rsI*EVKRC4Ti!%;sFwyxP!MH7gH0M@?8o70=@k zNnz0!h7cs~9&AVPT{Y8e#R8O)T=E3{U+9tX|CG4ssie#uzE*6qxG93`WsORvi;g%3E@~108nY=_%hnY&sC=1Vko^_X2So{Ub3eksoJ6TRXyrsF?xhn?~fn#GH1({$}NDu%Fy$n^`JGtatA$INWo3X>$%ymNx45J_=kg(KV- znR^W`pZvUH_lMgH3BV@swWjXDEiuRnG_HI~$@@S#biAj=9}PQd9T&qA?w@rCqG{Xv zb&rII=zt+JI54;*j?0rjedRWzLK?aEIooqaSixpd6nzIC32cVygRjh6F+gs=IMg*& z3;Yv1R(y9$uh9n+t%9{uYQ+SSIpa52=~CB6f2284ps_L)=eV&jJCSG{m$812aO_Qu z+xS0?;b*lDyG;toXBpUlJTX}wZ(K4h6vT+5#GP2`e_eCKGBGyWnuDLmHboTDOb4W1 zbwVH!I6Btn&__$(Ci@hCb!AIJ#k`L6Ubk8d>m|bdz7}ollRZk{)+E;83;DWU#IPeA zb36JkVlvY+u)2_BdHl8AkpO?C(T?`52K``%Ojt{Z#{JlYH^* ztJAP$6f1?8x;XHc((L5ba3b5CV5(Cxa`C2Fb@wCr@d1zbsfth!oUEM^Hle{{Wv1ye zG8uL$;+lR#cLnMx%ZV$Wl(q}%f+6HTM0l#nfa?|TU8R8xQB0%^^5^M)h%qi(fWG8a znw+QjCNd%HC#T{=XcBS6$<`4b#;SsC!k(VrrpwAV(Og1byNBhcqnOCmDa`1r@Xt8! zU*NTZE<@xRumqP}s)?iT74*j~W$uZsZE&u_k+d4D%I(Nqu;OVG1d~Va?S;b5H z?`9z88w96_n>q?dNNE?A-&V2SdbV8W-VL0rP(>TjrLy~nH8V3ZsI(qBGD_18o|u}g zA^av1R1~b-hJ8nn;Z=i;v(-~%bRYc>ZNXCOqHn32)<7TPlRD#scWso*;ZL4>y-_Bs zMt2h$N*ke9=ANg8$y;))i5OFj=BdZ2ws&J=5}XG%aNMY;9aN28Iuf ztWvWR5|aY4$a72Ol*5K@j`n{4oI`Ly;MC`5jFKvKX43M`D5)gRta~~-g1sbV`6K2M z?{OS6hRXO!{W2Um${ljR+}A#1Ync8Q^RYe&2n-z9H?`vA(Z<5S+k>}tnRN^ei{rR7 zv`uCR9V8}7(psY2vEpc{^A!}M&TBv@f+5LKwt_y@0tem{3ehH?r1y6n|>r)4#={@-sH3v zpeXXFk3hKIQa1!^uO__JbceKpi>26>SrY$rXp?@!|$g` zZu9~2kZYo-Ip9H;opbA%@xpyG&K(DLX$3CKMTNC1BNQWn$mNX3(}lf~0h8#VkYMpn zxx~AlT+|m)<7cyGOTWP1Oz2Su-ZCXvyyOef#G}~RT|!!&&Ca0>zD@8_OS1zvvjzjl z2gGwF^z@o7ieL&dq_I znXhViPesi0vve|&{Qemi}_pzzGQd{=K^H-j{tX5A0DX-f&<7AwFv=JY* z;In3q9`|1CUt!tDWZY81+ROd>Jwx2Yz~`Z5&nY=++rFa83SR(*e3nI1fB8h5)4 z2S!Y*IZ#g!gAJ2^4c`1<(-yD}*bS-lj-eXBg%W0t`JZ9hdFV)<1v3~VW ziYm(VTzc_lzxgcpHnN4^Luv6WTi}+Z#AV*#s}$CMs#lCyQ)|6ypZxG*Vms}JtYR$; zY^Ec=f^T#O5+Kf8ZCkyerkc+LJD)xHsBR_|bI9c?p88(jXzpIR;$pbd+sONXG4Is# zgkUNh!ORHh2sEP7(^G-hry~3n-}Y)rlB5#N<{1-unb@VC(J+De&9b9kt#4ak6;ZOd zEhnzJvT~+lY_?j9)4-m&9u%q)I-s(h*4H&kWxa(@yW{7(QAd{}4whepUL9dZ;qmYX-Pi3m3 z=B7;FsvC8|wwhjlY)Ln;_athX!!pie$2%AiDXd+?K!MVQw;Hn@xE`L(oobpx=qlQd zOk$=Bw#xS+Uqd+19okG%Eb1}{|CLFMhQ@l71(9c=uP-?K^HDnaYKn-I{!6%sLZ4~? z_qiE0PGfdzAZKxi<2t=J>MrZ5FvZ?vxkA4#zcQBWX7{x`GlL@ITGS#=?d<0yWbt`n z60a8vuJ6_~nrgC0vn}%#p7utfH>m{g)ev+5}IZrA%k%ZM6|34!@~ol?=FW*k5||;XR)}Sp0};LtV|_Mk4ALJKIuLJRt&P?0l2;M z{go->@JNS;zFX*}+e)UXR0qJ@ttU(eG_f2kX50*pDOfM!Oi->uv3~hQ+e0!rOM4|? zox2^&{AHR9v%VOu0s{<30|&Dd+2G-q|7>`DrR7q2|NH+(mdvaju(VisdSE`!GDQI) zLmQb;cj0P3E#{+c-}5`9o4_{SP@pwqi>a_qpx+EPYC)37QLWb4b%xW;?Y{j=CKI{q z5w08T{mGr|>qkS=6EH)F#b|7PQ<7r$0KYr-se5$pFhw-}wo_+fC_+I&QIUpVHO;w0 zU>4L<=y-I`63$!;0CV_)Deq2uQoTdfRzxWu(u|+?J~J{Fz&P!={CZ zy(G74Q4@f7u2a%Ly{rt4m6mc{<>Xe!XqUAk`rCovPmd>TSsSQ?eM$Zko0pVXmkpuUbV^|oDiG$+%QvUGj8a`{wp?c zuw$XvxfP26(!K~YuoJHG5)m`S=whp(E}Uqx5a9u_;hu9S(P6`@qd}$z*T5*{J&-Aq zay&0iZ*L~J8ji0apkGE6<+v-VYRnZx-)hxurp3d02Hjd$sk~2xeEj^;Q5r9c9hPwP zbPkoEy`WU<2yylH;%p8D-7~Rrg5x?MUvm1_V+~`6Da6B{rFzErRvcl_Ocyh0kc~k& z=7X`gDOi3UNA_T12$_I%nu`ABwIdNhs*O5?%OC!fQu2KJG()A4Qsi8cr$zN;MPBBo z)KIx5r4XNSo6c<75p^2e1}FAPVX8hB+r$p`&K%|zS!NTIWGy}Ou*A%Z^DLb>v%WYu zq8Oh_JJs_0LC|Y8y3PKxf9yz2lmCi%Wo};!CI{bHhap+lQylXwY-ov_ zYOMs^O}LBhL30S<_qT0#%ebf*zn78$4N)3VBlDU7^(q{A`Hi4rO!_)92RRkB1D-`8 zzFRnr;g(%8TR^u;`;53UeNKE=c)_O<*mheyf-=VN&}kG2v? z+m}Teo6VNV1ZTwOW}3B}3X5+&BGyLdJtVC2><+ekfv#3{3CaMcO{tf(DLZ3C@|rQ? zKp(9iakH!+b+XEsd?4M{);Wnox%Oz>43c#q>xne}Lcs&CUjkdtX${;)mXx`?b;pRO z&@H_Rr3OrWoo_$MfEKN@`i8T)@~$bi*cx=qSoCE=?Ng>Cy;)&2(q+H5vQ07WvH$%W zJPDtQ;FWE=jgaut+&=JuTSd-h;NWhH;sqR~rK}gSpI;2heS8YSF^^s4$~Bk&->=4j zzs?sJ3~rH`d;5cKW{!0h|3Qi5yQj3RJ)LihS^Q}4k+YaM%Gj^xl)g7DT_PVBQ=6%U zUoB;^P7W>jj*SD7zK%9($V3(bT>+uG9m5|)Y<6YF8P$7L2$Ks-$SZ6t2AL1#<+ETQ z>DcG;hr9-J27`;Pktq*c7wl|X-*pHj*Lgg8Eqn$(^hd^(=MxB%^jFGp%+TFAh;O7Lfgh#4w$;SnyRYl>HIV_ z1AqVi#T12wO>K#YUWpe~f~10G#jNQu!SPs>7rbaYsfj0xn+md1Xe6H5Q|nRX&GRP; z?qqCju&q<3?vFr&pBqRJo>#z`dEq`%v~GM0MpZp4LYG$sDNlREW>zCn7Q|w0 zCFGMfZjavk3ZACq4);}{*gyl+Ns&B?a`mY;u11`k87;#+@~UBCtu>goCf7(_T)s^h zX5eykM)o^C>#piy%pESqB{JGeG{QoMAn^s3IAFpdv_3+CGg7_Y3tV9eG@jT8MnFma zFUU8y&rvM3ae(S}^^T2RWNHUp4=Auj+{62u-HQox5#$SqQ_75UWpEXmn4*xYb7hdS z*pr7`bhmO8vjXGglq0`0$TrP^+OZcAgwulK8N4+Z6?!!yixwvcZG0H;kYMstMa9#f&LYPSh@xh@8 zO47SEfA+&KreJs5)bPs_mL)RUTDEFe)lk>b^+)8`Qc_D!8AB(6wn?G|#HEVaPiflc z=y{Fc)k>5VSCsCZ{X+_;UiwV89K+aKi;pxJ24LBp!?(Gq3C%|nyqYI?2IhI>*?E24 z2y1IRIxJzXEIDK2;=$W9dR%OfOJp&|9sZR(oi$ItPl##$+u1QMuw^E>OpL52`xK09Ob1=E?_TD>DrNW3I8SO}wfpT1ez{~@^K(K~X zT2kN;@6=n~Z#8ly+<*PJ2jWa^QpfdORdqEtzT}Kgjk~<=#o~U;&|tnY(Ck9o*v&82 zUk_j)iqOYb;Vl%A5Rd%CMeMkPmeUlEZc;>kj)H*!?(t3aK9>Wx@UE&C(0?X7Ot@0@ zky7y^MLqitH?Irbj}<}c#E78h>R3}|X;}&E#3+hgW$>6CZSI5{26jF#MV$svD1yOH zsQ$BDPymEv6QhDhFf3ky`@8}%!Rit#4-T$FvO}A9{r^B}MR~cy6qacj{>B;%Q#(|f zPZ&JsaW$NOEONx$GuJZhH=i%J(b)~b@CFY#Bzd$zGC{298|pKYCax3t7=zBe>PY^A6X8&V@VK)ogmJZFF*eTE$^i>KX5yrFJo55_-e`S>osib{3zMn}N z3qJuzS!O_I2m#tos?d0_>DF{eDGn@~YosPfBsC&Hl2pQ<>wCL9lSojbuL(#SSJ)}f zo#9i$ZteBSWup|ALq63;)X?XuF3_23-^I-;F5(!6OP}uD2I9!z@?xSLGoXG+6PBaH z#pLXD8I?cplY}!ppzqio*t~w#y|{o*8@%TF@rPF3{gx`QT}Md2-fUk>_^&hd#%d_! z+5{!%w`iJU8rI5;Mqq#$*7S};?q^ELK_3q(^~`;>KU)Dm)@vu>Ut%!d+eTHYoxpjv%7GE5YD??B^q@bXOkch^fCy+-J)se_{w1+c~DDX;d>^ zKGAK24U@&p6ui@UT!P*TeCy7)Naj8vF-wrTEF%`+mPYYN1 zypvKDJIhER(+y3kxr^w1a!$V#gtqn&g^QW0zoN4%zs#a%q%B@BAhM1azRCHuz+r!I zN%8Fm;l<;Ud*`u;1`;@gd8qwygukv13=L&<4Fn6O2JY5lo_)1fOlI$qcL5W8nn;$O z2}Z+j~n-D zjh`-NNo4|h=Eb|Wva8m(+2W6jhRhKl-#XfD?!nw6j8*0)DIQ1=-|a3sSb_fslt630 zvwB@#TBcyrbFvq)or&=s*(0vjg=sL@Fhj}>Fy6|u>_YL#D+w~8M53weH>$nkuk(DY ziIU-|zKRQ61boCes!B?zY^Zdy6QapzZ;=h%2+jmHN_`n_tf^bx2Celn^SG5v6a^M? zgma_w_Ac-fO^r=qq;P zo|-ey$QOJPBix>U3z%7QYORk(j(;lRrQAk6K6mMqIL8!~`)#b`*gykhQlDtc_}LICALWUtQ=Qy!{n&XDCfuj_hc)<^+K0FS5UY z{cB8{J!<%Z_K+G2n&=rizW(X@Yov2xN^t6m8#R)z-IB^o-P8WLsQSkzU7vbgM>3%UE+-C0HdY|24 z?M)S1u*A`$jt!VZ1B$cIWCx@hJE3>M_A>>zmb_c|G?$VwgGCLfWu99qxyR>S*Qg*a zu{ngy+Kn2U@P#2A+tZxBPyFer(59CNbePVmql0K1rx3xaxSk#$#zmUUXzHHp zKe`$kg4i2KacnS(Vv-Kw4t`(mfEGR zM@J2IayJe8W|$7&WbeJ;dP?7F|DDPbZDfz{O|rwyM$kJ(hlIcbca`+z8~V^%fo?di z&&?a#O`3(&XT%$2Ta!b+Q!QqaN}owPyBc&gjNX($(n4zzSK+6~Pgm|k zCewrGgX-j4>u^dm+~v@E9!V}?%#7@{zx&N70006jHLz}2-H;R1Le_0o6Akf`mhw;l zmNB0o;)}wu|2c2;;p%T!qw&&}z(pI_oA!1#ZVC2!cOM)f7hw}>EPt$Mx4a@<(qh%u<90?|^Y!S+1P`8E$M% zo0<+(Yy;3<@>4+x5rROypVwI<5)pW$eZj$zp9~rr-|d>*dq0wHB=V}aY34SR!A__$ zveYPpz>%$~m+8;3_{hyb9|w`}Vj+1Eb>80Wg_ov}I1tk8bZqW8%_x&aVeSxC6ATYX zQjy;cpP~o_DC+SG`dM~EY3^ahzA#lHkNl+iXneI6RhXH%*SR<$BWU}OUoLWqA&@2R z_}p}{?iDrIscvoA>|BExo(2V4HH^#HNp)Ij;n#*lfjGx&MjVx0swOy}w+P#?-VM#6 z{*tL$s(34Zp9TJ4F4>pVqvE1WmYsx8*yyx-3vrSxJX8J?f+}uvmHG7 z4K3wHC>LXY2iM@V_z5J2+qeORW5Ur(b~+Iyi-8q#v(Mm`6UA;76RXZdwwhKBJt;Ir z-JMTL@;s9EA@w$Bj0T*UtlRGJ1St8Xm@p;qqF0tai)TSOqxA5$Q7R_Kw(Rzi{(+{ei1>H|L196 zc2~8Dby6m_7B)6ZCfw`dM3hcK$&=Ks>4m1Q3O;iZA7Q`f5uzAjh=jr@;X()Owt3cb9!gZ1}Cvtgs3gD$}&@YUDEYBOBg zF5kZR7D%HUV6S9ql+0Kan?+91xnzf5ZB#Y|AQ%de>D`P zw>WSeYbM9Sg{h*%js&&;U4-g6NsM&`=fBjfZv%5ena#ZJ9@L``c;Cz2bH6rQwlTqPX@& zc{9-z!Nc_PovlCeHM|Yq*y$`#!Y1;twl^@6Pyn-|N0z4WN+e_09fi4hi<^^8!^zrJ zhaL#U#mW03zNBpPIlJ z(DlBeAFyCc8fpjFX%wDkM&~6l`&59(K4!UC3k89|yU#_#LnIhA39=NTI?kf#=54FB zi&@Bw8S~O32XiP2Z^oEImy!{JO7(^7s=dVHL%SYXKVrD;ug6Xxh{%zft|2EVp-RCB z&z#5=;nDC@tqbQs2mqE6f#o=M7uSx%doyc#UnNGpmM+gZ-DluD73XV(c?c6DK zIopa#bq~o)G7TR+W`tD!=J91&{U3R-PFnzpH(u^6ad->KDlt$g<9QEyCtQ*$)I1=+ z?DHSm(u@{Het59B^KswTjwNeLjfb7Ja|;`90u()CG4^DG3#yeKT0cu%m3_Vx!yV4- z;tfWczeRN$=kFnE$7Bhq1f^ojrY z=S?62Jgy#nlx8+MsN~MpGm}{TUrFEl9a*+^k>E&ngR#YRop586h{zSq3G^fk=cLu?Z=s>>8mSDepSg#OKXv^F%ps; z|6ZYc^2C3;?@jC~R1Cb0i@^Cr!qUeW>L_eTO)<1LjEpuLq6t6tFNVdgY{}R#8u(RO zsx=0Y-NG``QUl49!b3P4LRjYq_0id7C>P5UXJzHLV}vR+omyw@JV;ji*FMKYA-~iL zWE&pn0K>+a;gjPH<#)~;X4?Px7th~EIR>9*ZsIf%LI`qQYV;`zS;-j?E*CFHE`HKp zR?6q_E&%W&*zh6zI#2cpAUb$Rz9c%h_Rwg%v5%r8NJwR9rgXJOG>R|Je z{A++uZ6M`a-}cl5}WV0__E%Vu9M-z>$SOW)+ebnSVKl?C&Ek!^M&{)t5mb zIpIK>0F9*Yi4=2iQ*-mD-}K|50fiSkcmKy;E3a|5Q}EOb;{ zd?wn>wmAlWq?a8j(Jb6%{IB4S$E(%{tI*tf_(m($g4C{#uC9IA1I(f5q#j0uIJJ=Y zI5#uoui9CEaT8x9QSV5nQZjf8d76CZ|lSNsuqh^Y4yL};X+1!Q?w9=df{yW&D|l$$H|CGrV$acQT5sq7#`9>Q8eD8r z6AnlfhVV59yAuXuK@SxTuL7b&1q2+$2HqH4(t<5~{cxvkB(y;Kz$`bauq|P5y!t+p z8g$r5dA1N|6si9+SK*ezr!U%=Dj&7^tlsJcH05I^WK-_;Ej~K4E&dAY+>a7{IL+i^ z)*mye^}tZ;-}n9J?|;j-nReyOQF^9t|NEbM{_pF#p1+N+?+7{a=VAK(pNG}w|JiA~ zsGd`*)%DDNW$hFF_rHJNytc4;o7=)~^IQK`X2+}!_bP0l+XkKeZDOj0006mw?F>yU37H%{Q3W~@18$@ z{qA-2fB*dMryryEj70C|a#|I2QBLLL`Sb7pdK4X9*7fYg^XJ#s*Js!4tejswfA`Dt z4>(qgFE{@@t$S~tnc5tkfAP{!_~B|YtzK;yCeHIbyzPH$rGdY$Y%L@F?Wz6uqIm!6 z=(}=S+i89J?q+6>A{{=xI;!o5I=uX~zLfLI*028l?vJP9=y^NHR9@LvM{-eLmh;|= z-(Sh;!cL;^3w?PhudXb7x%Q4OXE*cW;|!yg+J2hu0iUep4juBzkBmt zIVtBq$yxN>L{?Swi*L{Aq$*ZHPzM0tS z(ps3l2A~^Q@dr4?^9E6>G&k^DM!kqv7C(JgxJey4~jv`ggVL`8s$WgSYEWiyk?!VN%1796Qasnc(zjQwm$dh)d zh`1p9?j8ii%$?sN6VI)Ts!NF?YYyxc-k6rg(xWvZe4{GR7rK7ak~i$X$TQTdqj#4! zlFd&dB`X`SJz_#8f7@(3Q)~Yvg{=0{3Ir^7o~SEn5{4P zM|lGh;MPLF-LST~y!H&+ENR0+C_hO~Vw#-LJcx8aV7oU!hxoS}_PDZF$^xY|@+f>a z?{7)~92loI$o$nzPGMyDd`a8iT+GYGtmWL7t#(@xFqmNSG8> z>V=dnvw4;pYHe((vZ?0U2q9ChSW4rhSy=bh5AfEH*42m%kW+y0pkUuOAHDtpsg;ti z!_2qd{$=$A1)Nh}dAOS20006n*~vQ9R`>cAYwo?{1>*62qkr?EX!S<($-nc}ul5E% zoJ0?K8Ngdu{P=7$0V+F_po+@*?j(5IzIwF6Fny%oNp8Y3lUc>2O_R*!%u&a3mDp6M zEayr5AaZX*y4SGPmw4(w4fxtK%M8P9+NB&nLu;|B2kEveF2~T#@=Q1)6A4x;r^KYG z&WP5GnN%AYn}^a31?4t_dlTv&bpIl!7j{Ws{}Eq$5LuNcMl*)mfg-zNX$(bx#;K!5 zYn>CPGRYFI(u`4<&FWm)Q54x?@F9wHg6T`iQX{NL6JeB;ah5AbrB!*xjG`uWq!V2) zUcA+EV$nq#Nxa@TyAW_!q>dqAoS0Z-nGnoLo-)I^a#}f)3Qi2yaufl#7#s-Psx;$DQ?MmQVR?(eheVOr#ebTEp$k_2ni0@G z9wBcox*>KU(5^@uL!jKS%n+e@nn|7VM2XbtES5~gNlb|tMW8JP--MW*748in38sN>XNH#v~Hw&No9w9rd>%kYWE7FI29}tG>(%z6R8x5;wm#51W3jo#2!EY z^X-p+dlwymONN)D`vA&k;kYbp|(xFn^LsFHZ%gi5JN5~m#qS*2Afv?W9^E1tSBF}(c6 z42*XBqrI?G^8*+Xfk;2sFJAauB3I6@B%Uh%R2m!A?IZm33V-zWsx0fv)t{aOUqAZ! zZSfx)EQBqX$*fjcmN}c{mOV5c z0006oP|WLvoJ6KvfCAYwxrZUB?8NH&ovl_($DiMn#kBropw+Cb8qd6(PHx`%7f|_~ zL_hyS&I>uMqpzC0i&tdp2>*__9d&3%T*kSwP7>`5r&22>GJ~-KE+luO=y+(t#L8cVb<%3s`G?SD}u!LGiKt9CAILTR_n>Asd@n0K zFJ|?Ny1clU*e1#D_zzo+{D)_&nSW(vO~~)_DPyNc&l_OYQ?#N64r?MeFR$)THQJnP zcfRSXkpFnEv~ih`gr$}fqf(bJ37o2=(Fvn0ixb%{Z71CBCYv5xzHG+OmxG|*jl-v% zIksOCj&hf%rZfc+pjDhxLOF;7Sei{TZm7`Y0L;~;2@EWyIUoJ`Z9Olh7Y{tbElr@%;=N|}(EO5i`6(U^k$en8p{EoFR)2Y4|BJe44@|5!{WyU}pJ zm>PBVktZxesi0zTs*EL4r36;UtW$~A^nf%RTFRr+@U510ZRgc)blfktM#b2ZJOd+9 zvzT#ifwv@xe8rs*DOc361JZG5DXkoRW2XQCF^?orrhSrW}g5)ygT&BV~^uL{AM3LBm9HH)jv>sZ@ z;c4A@BD+z0zc?Lb*~V!Knx4mmF=ZH|CN^9%ozVmjYWX28+kvIrL+uUGCY@@P8<3we zLCu#rYa~mlC5Df-@d$06!ogG6ZgWK4i^~B~g1ttZ0006pm*LR%e$hHglZf1; zn8TOFlu#^bNHoi>p&9&@utT`^ha~tAxSrtOtVdCI&zIaUT1UkL9AS>6nKhPL!;MT` zW(bI)ER*oXA!4bAB=``x>jYnhTz4n>eo;G4taAlUtmT^6%*HI{)LE_)<#?*4&OS4u z4}t56{>DyMlf~?`$rQ8GZ6x|WF*?ff1Lcx~Ug1W|lqXEajyM_=m!$a;+(MlIA(rDbpm6nN=oNiaIA*P7iTBeMpKAf$J&$ zmo~Ed(5wf!RnEeGQ9nuy#3=>OB4ePBD37g9sWcP|!XE6qo7BbZ}pDox5$Cp4FtfAGctj zy^?8^Egd_PJCkVcIL$T5cqS5X=M@NGDeOT!p%0<) zD0KYlE$w&uRb ze6UUP=i^W-82xH*PMW&G$me8qpS(BzVfEw9)@LevCBe9cOj;#G+FWpJK@Y=HRZdx) z7;p+QA`ZYDEA^0v;*ue_cjJ<+Gtu{o?J<17a>8^RQzBKOX=XF*Sg4XbvyP^jGM|}{ z7y|d`eCEmiuKdok!3z18Qs8D)9`yObKiG*m_Dh0MhO01)YC=+~a-I-@sx5ZTSR3oa zrJtSQIsoow=Gau$jX!&XwcU@$CHtkts4lNOkHK6{NvgCq)R5eQ-xbFy%dHaPb342n z0=H|%@y!R@Ke59K|L><0Ilr(?_l<44$?g@uqpJV&R0*c@G`2L!jEv({r&7CI!v}T{ zBjS*h9|E_d{7RgE9P#&y;&HKjZlzLkbILedMnzDqD%u>dgOcQCi<0;G1%o2N$1OG!(cL-e62Uq2L`^R~C^@!Vl zTc2{T#29tfnX7`H#)@ ztC;w55VYI4x>q1BDp&zBXNTzSNf3&7ecefy`(C4cUHjo*HP4Qp-QOW*h?MuY<6j3~ zWg%U2{?$bo$Rz;nc@}MLhJ8^Wkyx?5}Ic!=Uk;R7MGhe zGlVGTc&t*D?URYSYTkh*jPH8!zNm_wD=_zinNi)mGiJdpjG5#bmV`wBsT9sK=a`f3 z{v*oAq1Dh5hAXcJWx+!`V)z{yhS`P8`$6g`*Ly(v?3c_VMC`t`(u2hE_MEUEypKBE z1z{sn3g%xXxXxXYi_|C`CyXgc<^5UVkF(*2mas*u1;3CrrWv)>Ct-x0T8QlhljFj! zS{WKsXDrPK)7FwK1&@w{L`pJp|2fd(&~|7E;}vhO-PDe4ruKrJQDG5fO`aR0S)M8` zv}IN~qX~~i#<|<4RNhB;d|kE9|3c2Yx)<%x`AAwU{X zEo_{cL?-)`t4%ubK0+7kBprg%lXNMK?~iERDZ{-m-lC*!FDM_y1T>MvW=iB)jt#cp zf0>pbXk5%G5%=eGjbnm?P=5ftb?R>@Klh~l>vlEhdqL(XXUQ4PtjLw+GD(<~hR10_ z!QXa{BqILA<@FGF>!rsJx*=&VC>$ra6K;iYabmbg40eRg6Pq!tS^y~R>J=M)7H0E?uzU2CytFAf8;wV21nic$H_g9xIh_k(xXe(j}BgZaC9Sj_Pc1h%15z*B`D3hBtn=lI?YjTio2c zBVNXxXA;K~@awWn**u{XZ=6s<8zF5BpPo7mhSzWA@_KmhzmdLKM6bU^c+ey!h7a2u za_)xCQFanbzywqdtUqwQnH8~0gi9@_3Fnllr%t-z^&{!l@7Eqp#O{vmUqECv6~1%$ z=eF_lUD5ssN!RmoUsrW*GxGLH*tgZdM+}Qdr$n3?Wo4cjn&l!-GsjpK%Z$W4?wv*M zfZm5~CeLaIt6>{}`{*3lVumZ)F)wbf_#BnItP;z!SZK(8#u)`EY!683 zE&VboO{x^Q@UhM`=!l#dPC;dGt||CsS>u=a)=Ki=S6K|iN=BLCww_Nm62^P$afCW{&2mk&3GLGi9J5u)zbcw^(Qt3+xxsqnbh*l7fh{z?h73 zt!>H}vC2`JQcbM+%rwssxQ*t)yHP%}+SxB*#@1fbRKHp8KV$vo zTw9>;=_ugaS>gACdDN?;{9#)7jr5-_j!=dxyt`qyNhaS1Ek*?z(j#m-`nlz-|wbb)pB0HDYu~iey}~NCYu;=6bVUEk-8NApj0WF zrcx6uAl07<{fEG8=>H4&V6xgP3+xBsqY8@REVk4N%A}T*Q)39ta!0@upvH>(J;+ao z1%|+ESm3qqfBPMphWpe6`$77+CLG3@ObKW5Toa*X!Y#=)OQ}j7p`VMPI0WX=`Sqo> zlRoYLw|mggehc#M1(~CwFAj<64xQ{(7bqW-<6Nkm!LT}n$7KO ztDd|2LH?*vuS!#9S(bpk!&0LYog{?D79=E%<6M2>qGt%aCbYY!kZ!{slTyn`uU39@ ztHBM~95zXevUvRqkDV0+yZT9RQV9{9fd*@`IeJ5XKe1P>#RPmlpBKh9&$f;)?}a0F zO*a0b%L;C6`6J&`sQuv6gYQZxe(ir`P4wD^fU-|>xuh_tDc-lQ)b>NIfHc3tV6*dY zqFEafk6<^?Z3QU9P8Bk$uggF3!Y?UI1Coms`CO_R*!%u&a3mDm(CYtEB6R2XBL zGB9UgoU?#7ME?@2m$HJX=N3S3u?`Q)C0PLJ9w{^Q{9i|#Y@6V!ds_43?FQXEEHD59a&|(27gJoXKvXV;-GnO~?$_u=-h83)4#RF?*}fDCvEGc`!{ zEEfU1$95P#i&a_~LZ-$}k zBN2db#k>M20MXqFal=@Yrp>mS0QKh$bgEoT4Q!lFJizh>USG^+w_Xo(dpXs}R#;i2 zZX#QFX%Zx@Z%6ERFt7n24)et)H(}%Lh$~^U#7ZYJo+f$9;+!xlK?*ax3Mj>fOq+1^ z9ZVdog*h%x8Z*DOtVS0U^L2ix9<)$ruw#?f745axHz+C@Sz6T2RjV3@H3PJel5&FI03Dlfb%DlBuo5Sn>(ad*So_`@B+_AwDe807vA+AEjK{#A=)RMD%Aoc@!}iK**i=PzRh>nD1IC+LFzBZyNNRkiwG!oIb}1Vv!L zQL!|oLGOFDb1}IIE0~oNi5W3^X1G^neg0X8J-OYo@>K}OhiI+ zFtoA_^Epf{Z6^%g;BIrq+z_F1%`!^x&bFKrLb6pqR#v#NIP@8q zSY?N8|M;}iBm>g&snOr74HO64pS^x5nNN&xE&<7yGMj-FC74R6)!2nQbt|*HcroiE z?_Tk{J`s4X0006u;43Dn5ZK}uJ7uvrHYufP5;Ljj+C<@gtT(IE*;=1HYh~fzs|ETf z!4zqt0&|Q0AIPI(TGeRKzwn{lek9k;k@&G{}ffu3ZU&9l@{Yhz25O*Pj>2$^!l@CMLZYdO{( zE>C}dQGfjb8#RLIy86`LSNrVi5TS1V{N3qk)Z!>QJ;i8x;7zc%iV8F4(FyMu@l)C# zEmL&iKk0+x-VcxdTGovdQ{(iXBwRJPH!$t>6sUAr%sM#RUF5a3DZTbLV7}EppmHUr zekVn0QG1X4V7t0GJ;3#YHyq4L*dnl$u#-(si8Kxh7!lrMJn@#suG_oapq~48+JW00 zhxo1cY=_ZzitzRVy2lAQ0W+)HyPp`W!;#>A;P?3c@$c$8jKMp)aueL{Z{LUDO(Nb+ z%Il+ZFiu)Af4u2e_07y;?o{3W>ccDYb@bu)lltof{_#Km^WoXu(?06NH#qUla^jnN zCw|&YH5@YUMaYjofZ=cw{rkJJI{xrHCTHZ?|NQ%HF+IKsANI4ec8&lJu>S3+$(Pca zG)Z$og|n71@N-!Te`GX|iOxwzrOJ5BwdEG`0hkrkk{B?RIf9qfCG>XS<;9DO*_(1A zeLlo~F!Qh=*+wQmIqpQ!N$a7-u7q&4?JM1 z_PisQKNwfVP+Bx8FXS97o2x?m=s&F1p9i5qe~pnP_|N*dR(K@U z1{)80gx190@PNCh!x0pq7I;<8*H6Omv0?IAAf!LiT>IHa zILpLr9D@l(X3{3p+?6Wy-7-HQR1RRyQ2XF@{|Kc?AZo5Q8+Nb4wROvBuk4j)HTb44 zfo2xZ{)*|ZKCdkxW*hJA_b3v+{{2){v#&$>sTW>7w4kYsOJ2!JYV!V$&exyL=4D;_ zMvf~@9w$;+-{28!2u#nyzs%aVr+BvMf8tGz^)8W^#npY=4YT}cZvD0g#ETcb50TFk zTYVV>`t64ua^+lJ1q)`YD-5~|3T|B=c+dD@%}qK;csZnmth^Vp+lGX=*&VTW7+oV}htKT+izh2t@ zVO3u-MW5hN6yGnlUd*TdjIZ=^sm=EBA5aj4{28#iEZFmK)&);{v-aS4qol|1@OMa$28xFXkVlgOSbVg)i<@=r%gNYQ zwCrk#cUg5G)8kmH?AvPLx|}ry6R)C|81FlGuysJ*_amz(jp*YS z%`5{--o%@i?+ep-2_5}AU*HE9t>SkXLBlZTvM6SmkQp){LS{`lMUx7};0!#GGYrgm z!knxL$GeUW!x3o+`+-EA_Yt%z?ps|D(x>aCiHlcQfFGpg6vIkRR$gOVqDTUu(2~St zj)|OKg!m#rSKVQSHNtQ>`*V~q93K9DVd%rtPgNrN#f=e*V=n@Ih)8UPfKT^ZSEB{M zTg(VuOAz*3p{V+srHpQ`tXCou-ZR#L#Z|R#9e&Z|$NJ2=+j-I(lC3wVEPEElXKsPX zbIVmOGnY?xi=2&uX{+il{aDfm5&FBxT=w)2cKknMpHaGDedaSenAllnSh$ z%xQMl-dw#cczAyfADWNapToo7y+7Ln@~5~p+qLai*Kb{G^dQ}T(T#9G)xWmG+QOzq z71Z^zaJ}8CXVD+gFevACL#f*`Cl!qA<*4uiDrhXIX-#b$weEgVo!~xw6x^?#D}*AK zV4Q?HpMGUlTS{;n+P(qPwk-%A5=b9h`O-kya_QsBxnB2zKAuKsRh5gn0%s~1Y(0y~ zgVogPss;%F-~t?za(>m;=!UW)Jh$;B4joduB4YpE2@>x%(y(ic1iLE~=J-tXd&>tl zChxG^q@0U5Nt`A`(l~dN<&+W=bER0mDK`h(E!lZdnnEAKBm*NRPXtpcbzqM<1vc!F*#3f8dc7N}4Es5l6G)gPok#NWhV4Spt?0vuy2z(53a_yUre9I)ZySAqxj8b$GMPd_|q*M|W zGm{Fgz*$Vq$n7~i{N3C09UhE)+lcF@xItGI_}{cef#WP1NmXkol-HGKM_|~+)ieY} z@XEPfRAiY!vD!Hy==9@ljf{Shea67|7KvjzH!im_raV@e6rj$eNbhK)@)vv486G>= zoEjM`nu38N^He5|$Dn9Z0}h6E*p=&!?6-d)pxva)7Boc&2lpx2iwO5ZyZtk_j52}@|T()IK>2^QUzmD8%N(y_i{Mz4w;gmn$3SB3L{0&pvxr9z*Z zTU^yY5k#}rSHXrHNNgIlqdcz>O(bo6ytGFfHt;k8b+)wxmx79% z#zwJ}JIiz`9ZzF0>xfjaImSxx;oh^lFcz=tQolg~Y@BRIY{%@+P z)P-*-w3IVdz}fA^v@)k3VDCAstDD}}k*^PW`=r0Rnd-}VIW7KUn^s55RxUlK(C?bg zb_+=g_tq+pt>)NHcRbi9-fj57u=J*I-Ltdkr_cwWhwo+gke2dIyb{GbHlvuV5Ue>F z^u0N%Rmz1P8`ukDm4w)d12#BFo4UZX`?d$j)xx(p?+?DhIs8>j(2Dz~o4(-lhTS3<~Z>w6z<{|gm**sMO+?F)9G|9lLh*L1Ew97SoU_^8W zw0~(cm_r}Hhs>45+)Bq%1?~~!*tJG*tW-$|H%d_3&GnCE0()191oGKuow!DHf$*3& zf^*pdbKMD9iBaE!^|fPe?_#KhbGFw_x64b}ErY8~c>Z%aF@fpU^PBywCHfWpI+iXy zdM($v%L40ivUlO!?Nf=K`PR1Wnc-q)yaGlQiEW_{-gok##c#pa?HJ%5#z97Da04%u zWjM5HT0(m2%&n}-0006xDR6JoJ=TvM+8}v;ZZV6w?b9YO=(Cq(b?F-nH=Sgbt7%q% z){!3poMfD2X|mp0c=uCd!%xqmAADoJ%Km#{VU;J10nv#PPxo;Cq3e)AANrqq@ztzg zeb*d=hm8L4^}MM2-9Z8LiRm6R;;bFSn{@C#sN;!kiaMX2Abzm+5%flRf##ao0A0Hb zn9^1?_|UC$fGKQutuiFk_(;ShCd*8#PNb~k%{TY!X|CSb8#n^nwl;-89$V$FzMP?6 z_E!sR)f86l$k2+iL>en3Hz`+!Nuy{g^IUs);sqx(&z-d%@plTU3#oCuXt zgGX)7N~yF;g|-BwkriW;3WkTj!#)i{=0|&Br{)JB_LH+u*B3a(KK;3V@#5V|iSkci zQ|@Z9c16zk@~WkZ6TH1D!53PcrZHYWW|DPt(HS;$d01{leYv<&p&!f&$oS}((UUM< zES`O0IoR)fCURc^_4@PPj$LCHVb7A`or!16sL*&{K*+qjBX?uPqirn5=Iz0gg~0y3 zn`Hdw)kyujCNFyfd$tki)f19nQlkXM+y#uCU<>aiVfqBMdW2mUiu$HKES}fy{ zi%%0-1rG%KC#X-A%wsD-<#7Qn1B?r%yvnl7*(|qgbbZqB@OPdlOyK!DusT288b{-A z&s;x?XyF>4-?wt<>aJ>NR(|{z2@i>Lp_ld6BQf-s{Kz15H=gcZG8R$}SFHeYSf&5b zs#=>%P9LSLb@jxcXElH?jyZ*`u0}~)=wCsH`pyrN_L8i&?g|v*v|QG3^fyV<8P}gj zgUR7Dh*oak_;fE0Y9{FLH*boBn{)bkjiM?54DHET87t$V$bi?Vk50kRXK1b#xI*rdrJ{*z@fk}YYxdKzFr6$AgIv(eQvRp6ZWaT*Vw`9_1@VJ0H8o$ zzr7sb_DLI*^B%kmH!<8l*0=Dhqz2W z@c;kUs1ZJ1;$gsybLzljhEpaG$4N z<{zqtI-%v&#CogrEIMA^YZ4C6n%}%@f6}!$52-5TEYFu#?;BsH*FjU`V8uVVtD@?Za?isE84O+8U0Yu+{nd%skOS*bm;0d!+%Hr(vVFTTCxKMj{cHDdbME8gw8ueGH7NlxX3Z@}1S^w9G%C`vpvT(Us4(z5MY zduxrnIq?>vzYz@!POfGX`ypzh`CS*s#v(-?@T*2*cpVY$=?iB_zPc#1x!NT)XxQ0a z@<#tY7=MRHP)2p9UnV!*x^SV-{EXuvD&?_al2LreG&FNd$O42zxMo9d&@* zf2G51z~k4wrhvD<3@{F|_n+`O)a5|_<2Hx9n=Qy^w@BQH?5-i~eWUtRv=)8K;a469 zz>L2qSarvkXcx6v=bfj~_sTjF{J$ngYqpXvwX)_KxzgYzIK8V<(S+-6)PcF$R0Oot zmLzY+dF0^UBXa$Ltcd$3x^)G7nxt7uxQK;OIdR;XgbGTXP+G7o#Vg=JkiWr;E+04r z&x|vf63*ngCPK@ETas&*Qk6PF>CrhTc{|x|^!46!iEsMqQfX<%;~b=lOqc~~kWACe zCTqRv+8QqDd7^p%VVceVrPNF$@Sg;s4HH|#QbIJfmgN8`jnlitLqE9q3;caM0t~_m z)e<(kyFbC?F0Nt1I-93FHhD(#oJwXmr-TDZiPf>W`@){H`;rbVaT({z0#9mZIF(v4 zkr`}e#f9W0#%47>ELQC>4Px1`<*9Y`#f1XD zXbV{DvZE4WGwnEwrGx#P#ykg>6G_6H6Ef5Tzj*PsxR|~!uK)l7J7h6^NVAJ#+JC&vilehXjk7{30c7jV6G$#+N) zYwt_*#tFtUDLpyxbm6y-{Y-{KGNVFyJ-ViTeepD z>k=^Vd@mtBE(I_!fgCt%u(E#7JgnFEWI%^0z}0hl0|!o*s4FnP<6mGn9R}o`1z2=! zz)k>%7(Dw8s;3Q01Y*>K!>X7-^Fv{BZ3_Q#dLKF^#4Ibo0FwYpizcFY5%P zHk1GsMe(qV5-;yWy8{Gtdb)B^dA}{Vv=P3PU^gkl1&?)>=}ak+>fBmMT+FG_nk=n| z7cbs}A!dGA);LvNscC?s18O}w?Oi$Vock;ie{>K)Zew&yk}W;NXU$=SuimNb zM)0paEyCz*_4vR!sS^W6D~8O&>Bxb?p&-FPCv5W!VUPL2e3##Rmo0pkkDpw8xE`&= zblDGQ6RdePSoH9)AYqS1$QXK8M`!8)uUDb08F@dhRa?(!m zARS)!S4=MTO}P4}(KlGjIGNmPV6@C*JLy`dVTwwR$=U=85TVs?&hu~1^HX%5hYznV zRvVo?y6bGSjO9Wo8e4#kIAaW`#8fiLj8+eHoduIN!N#M68Od|zGDdAI6CHDB1Q}b$ zIXwJ5w`zG*e&@@z&8O-+-!1@MhwM|jOJZuTAMq-Q$94$NntRMzhA^Jjf52(JD^r`S z*sJeu`U!l3HD@r4Nlc=1mkRBibwcNaDlo`2;XEf}FK!qd{+_+xb~O=GW^!!n zm%-uhZT$kU|A5^cKHcNCyL!g7kN^Mx0PXK`-H)*I5b?eopxu1?j`aV%*X*Qgbho_u zAhc=1aLz>;GT`Us;^J~lU%ZVy?R+iVVm@7I7}eblgZJL}&LF zU>~k&-Sn$#qH?lrEZc9Q*4}-y4f03z%v>*aMo4@=IbANMzA$o9UWc-p0ARQk$#ijj z>K}@`bATlbLCqG71OD0IIiuGjxBcng$isQ6j)Wy zZLKd)+tw?7F;y4Vt$g2`sO#9%_E-1!PWwZ(3v5`^EjIM(!Qgq*M-W$ke?)Q(*TYxQ ztX}F8cq&w;-`{|Dm|@4+yMx2ujFP(Uw(=f?7{Wu zYPSlcV$(pZD@|TrhS8moucPrS`l0SlLAKH>Ppt;nx4>A18zyNxY}{LRxL!uZlr?#7 zjAnVNKu=p{l{1>~SY(_#;bqxB!pN&yLwYqpt*6TMC3KEOi4Ah0@fO)(@?bmY8Ia8D(Xj8JguHPcz3@7R!vp zJZ9iQ!<=m`SEn~dpXq2NRbm-2+7RvxBUEufCZSTJrA8lkrjxQnaIIX1SN*2UidbP1 zf#o#eU=pg4s%v=odsNrh&YVwIi9JqB&ySMT_mRJw0H)ZE(IT&B|fD!MMwxeBdC zdw098_5uypnmwLY%Oy`phQvnQ&vKiH9R3ITEhpNzY*(#zIe+dEwrUxKR_18rcykXe z000S_LZGW3E?vPCE^H;`yUZ68TfKO>n81jW;=G#c=N)mXez)b1 z^=#Js{JEbY?5f|Lo}#R%Jt|L6@wqC^4gQU&I{)JT1GAz6VE_OC000000000000000 z00000000000ATEPGTV-Ufw{=j#W5t~-rF1Jy`>#R*bDx*_&s6?7My)!>X&Pw!7S&w z<>sE_yEJ)9oY#8WDeH9a{gvk0Tm548-9I;8yxz6ff6a#pz7D&0l<2Ir)xY`pk9zn?t*_@;`U>^eHcVujx#oAq)B~@- z?pu^1_~`BbN}f~wo_;UqSKly5e>#0@-eT5YQ`7IRe|F_feoENyAf)la8_XFhr8 zrMW>R#FkBFlTnoVh0f2DUVFYi;I(uWYq_4EMEr>zhMb||->P3nO}Mx?=G@jLriYuZ zCZ)Qm&41jO6Kx*y_PchUOJ>-mSzFyd2|f^cul!!B$k20z)OYW=w^5Rw*>3MSZ>k*S zjj7*w_+*rM$WhyMs?+Wyv)8XvU(2jLbyZtRQ)0aLjktc*g|9e|I17ERlR2iSoasCN z>gtuNHWufvwa)FGuqsV$ZN}4OtF(S*S!HhhnYBJ=->TG`HKC_B{am$m4I(u1+Dq5W zT_0AY>;8Lwr1^cJSx47SjeWRc8vE%ab|%IRqW$b*@nZ9)ZM{7wx9i$wNkKcF^4V99 zZV~0Wu<22}oJWH7k&QRl#Wr~8TO!dMHjnss_kKQFELD3<^5 z(Btwdv2WVjviPD*e@Z?-;L81|d{%YOab|6in(ZfD146fN`0jYA+H#%Vx9=Tde&S~( zzuJB~?=qw3_ultWampd@_6q3#O?-a$fpN;Ep!&8oU-fmG?>n;}PQIdj_2kyPu=2x~ z^2+mUfAB6pxI*XRA=^K|Y^Yk|8c~vxSdwa$T$Bo=7>o=IEp!dcbd5|y3=FLdOs$N~ zwGE7{3=Fhn?`WZD$jwj5OsmALA=)8j8c+j+r>mdKI;Vst0Bz_FLk$1`00RIK00U_O z`v4ID007HBUIhSwmjD0&CM|fJb$SO>6T#Q-1_C4yG@%Bhh2DFUP6$mvs`Mg7q=PP=yF-vd&O6$=;y>Wp+t`$|gWqo!gH`9Yy<@1N#M zfWg9POBBkkJPjNV`Z(HXpXT05J_4*){q*(3lE+n>DI{F^dyK%wG@1ps*f&^#WAKA@aXfzQ)G z4XMIUsqT=eZjq^Okg5DmL7t}|rxTDJ1!R2;vZR2_jzPvJApK*I?h#1i7^HR#Qa%L9 z9{^In0r7o6cpu>32YB`X&Mkm#6JR9)OeEmk+4&QI{sbTk0Npe|Hwn;<0<_-%+J1oc z6F}1i(6j?IEdcl(0B!`pbpUlOK>Z4!0006`fr2Jo1ptDCP5=NwxOkj=Tlqg!-~YcD z8Vm-58T*WV-`A`&V<&r5!jN4>mShcMjIn1|_T8IOsi=^#R%B@*TSgQ`h$7ql`uqdm zAMW$M&V8K6IrqHI^SoZq*AFMn?wlDL3qK100BjcKcn1KWqn_HsP=-^qmgTHFeL?(; zZHxgrQl-jjp$7oaAKO_wnSdaemzM_!fdKyrz;69x#9p^yUXI3!YpMId;H+ zHWHwPG-x6VViiFHRZvF*)X)J{4M0UKC~E)!0zQchTm%4;8~^|Wh`5RS1!TxAMz^?!}3xMwd@GSuL0pJVZq#Zc^4>+y`j_&~{c>tINfFuA+0>D@R z3F9n*(gGPFwvKc644T{@?qL)GbXpn;h!U{oX zC&&QW0H6gx2Y!ZvB`}c00Y-C!*Tg|DAAu486ubwb0RVac3Z3E~5Cs5dc0k@!TnD)TkPQI9 zUv%I%kook>@(CjVFwOph0J{vp#wk&m-hcfczMWzKhUfu+vF{l@(D*;&MKL{a3xwYT zp{aDI&GxAO;eY;gfGFq$Kx$l1n~;0v|HC}(Q=&7ZL%y1|cK!3>s zZ|oE`vr%^QrOU^XUkUzPGJo&8dZkSi6WJ~8@eoM9EDKpWiOiV6CQvzTR2P7d!LX3+ zpIfevc%I8ImQIUU>UuX?tcug+&a=2CS@B}wYh#ZYV$;|v8mc0@XBOh$@EeS=gA$st<)oQ^fiZ_NLHl}V zkBX+ZZt(|x|8HZXp@p`yzUAT7_dTGo?7`D#6^}?`kNXn-{{i-&31}Q$A3E{S4=U=2 zd~%TVk?-q)L&1!V?4jAw0~$B=dn)Mmb9Db`zcVovaeK4Z!D9~X zt;%E$o%Vl(RFTl-qHNuRV(*?Cb1vD2v>>VYV}UQh6OWvKYF?dvvKcb@TIg)VuN!Zg zF5CW$jNVg=-d&II-86_B(|zFq(lMN2Gw>Vk{LUt%d340dm+^9|+MX|4IPCSb)zIb0 ze>^T(6(Jv=-S7T3^Yea1R9~jneC&=wo}_K(pHH*b?nWPO+?)#?D!aLGi*IWF<`ob;;03CZlV8t zzAAR@E<7xn)AAi0Q1i=rzFM6trqtot|F6%F?XG_KyIU1`r90v;-YQ1ic9kN&SUDd- z%1lIKU@$s@X8-^KKood#MlWQs_ltqJXzW&1AoRNd3~F1UmC#Eyi&prt<8Rc_0p1=G z_E24(s|)iT(@pryXzLa=@w=qPZ*Fh7%V?{7`@MeeB}p6a+tkfpFM7Ct$jI)m%nv)r zsP@on zb$e?VL3^JRV)DIH&i2B`2n})wO)QA_&)N%3a>)FvAtt3zjGMuZmuQp>*A+IV+eRT5 zb3|p}`*hvFuad@`T8Ed%e`n!daEuBMss(9aybia-vVM!c*S`f}8)p{1YJJI{SI6I3)Gy3&(Oxhyx zKl@_O_Q~GQnW3IP*|_EajFX(7o1w-_YQ%oE+|ZI z%OTKFqkq5US>i)r+HqglEJ$bU)x?Rt7DCh_L28lhPtEHms4AZF&jJ_Gln@IzVQa!i zlXSE&OwDtuGha1hb0$~tS!&|;KZsSh!2>E0=oBC=X@j}4%TWPSm>%K z%Hi18szpgq^c$l)ge3oJ2>c(qD}OKjJ3wea9+y|8 zBctAzDmu1|ZlNRoN41_f&R}HyY{r27YY(S!qq71FnKdby@WVxfrhUGsG#sFRxjB>~ znv0RMN8W+kr(Sznd@a{^J#WuMRnXw294}l&WHzWg?JrYw2Q`y^1|O^Z*xsz266c!YHew&sAC1JRaDETLnB? zbfP>)zuWs>M7DD(R&L?-Z>GNzeAi7vlok0X?~NN_G^d_IPekW%VM|$XrJN!XobNgy zSM#CR{6rpSSW!bZY|zM=0Owm}^5=B-3GFqOzkXRhY}1Z*M4<`fnA9k{&kIH`cUg8s1;{D}kh|hHjf!YrNWGpQy^*cM-!C zpvC#iHj4@3q1R_*&PM)IoTez2!1E+^!@b4>mXKVSM` zP}#e#6Z#Ry%KWII8Nn^2E60dha?rxS@~X_HnJtj>gT((icg`o@ABH02)oZ%k&LjD{ zvQqC;>>8-!EU9dUB74&Qc@}u>ZPT_1<;m25r6xam<9tz0MEvG+hm66k!(nA;t}0t5 zZ(abkBI@|h)GZX%)A((0d#I}>H4yfbGA_4Oc9R8tBHcGWgMOnNNE!_?mQJ6GgAmNs zaDFN0wSQNy@O`D%Qf$@XTwo7UO{~(A5(qKNF0^eD3 z3IF3sptma{K_0u2H2kwGSY@yhANf9my$n`|GKeCYPC{ucCen%F+t1uNV#Z-W;&AkCC{_!aszaRchH-z;|tf*WP@kgiwW_SGF*h^ zs?9E!S6f04`iW@QrZ9&Rn93Le{efpPo{si4Id#jt_ZA{HUzdQCmL%|}n363>&^xJI zJsbx6c0ZCih+ZQ(hgGJfP3kl$RS4;&_d_<$Z`hGCxf`6ykJzEPqg{vEny|0pAyvWqVDE?+?8AxiGYR{B&mf}PhfO>V;aFl8QsqPB zD)*>{i^ql^&L~Rd>X)L^0E=iQ6Rv5E7&mJEfHW=}9IV#lV>$vjPZ_E>u0Ax%VjAU@ zv4u#@VOY~C_Km8o)MN41kHoqbb(USt=da>|0SrAL51*a5gevY+)iVeG)MpF)H*ps? z1|Qo!C#c-G(j==+Mv*!n6L<+%YTj(t1gn??rT_o}LP_E;%h%xC z@Bett&+8Xn|LVMUcwq)2YL)rCZwL1|V@?Ccw}IAMtIi# zlr0sD_s7&qe}$^PN{C2-Cs*8o+oY;qe09Z`_3E>E%>ku?=f^RTlXp1Jmuikq5aP93 zl5&`^5A7fHW?$Bk&{cCLE!Do*q&pXwN6RH{MHzMIh!DO!5i~C%g4jUB#rkLOq?^d3LC~hK(Tyu_iy$1RP%wcA_ z21@c6hr?Qhl3+c3$tentFIOl=zQtVXgx+=jNYEfXeJY6=0m30Em=K7>qmp`<&&vkJ zQXKn=c{8-a{maubvuQC?Z=W9+QLSr&b zi%|CB>WjY}y4+}@7_a<~Pcf z6w=N3(8PK-9!cF`hmkg3V!iSEFG_h{rze|kNpi@}XE>3G*WW+x8*=Vib5_pZnCq#gfaW|gcvP?gtkWBPqLh1y|Q!hz$E9bdpJi;7$yO+J4wsg=>gl{&E& zhQ4NKD|cx+OHV>JMTG^wmg-fciA$bTtpM6KPsIK8a_-OuB|Tw<-Yv2{!s(Fk}TqibSH1jJxyV zv!Fls)MtOaFoTH+@#+L9VoRi)k_R`Zx{=Ho&E!k<61 z`{av2XCvC44iW~_?3hnTa$e+(ah)a(^>!=+Yu)=T&k%RD+IhuFdxg=}0K_JESM3>tXrKm7et)v||NjyhKbm znFJ(~fX$mdhe9|6>7C_Ai#W*@{f5`CU5(G4yK$%0No;;zCHTB^YJ|}+L}y64_sigl zC>JiPE*IvLXe!nuKL7v%L)IR6%q2K{6Bct74l=kY3&u&QmOH@kKK@- z_xY_`^(Jq}NOl)#>B<;u#`_>YAKjO%bKAbEBA~u3DZ8gzDTOeJ+103#YyL0aa>M!eaI- z8vDl1RLMWQDo5lT$bkK)(`2^)(99f?J5$k8j9IfoUZc|N=rgTJ_xysJ8_!Z7-hx() znIJFHuEVN^PqS^(mJ}r?HO8n>Zl0Y+^e<>X-O;cyeL<53yif5g+gIOW<6`)g$OKD( zY&G-s2z0tK{eFNG)P59!q!d)=&0K+61*Zy?C%1{|Id1<$TW9XxTrdZD8dzpSE#V6n zGL)@(W+7E}){ZviMUv+O&y}XyF>^gLwBkJV@DIByjfwRtJ`Q{qKFUYB>zZ`bJVEN* zgnF(J+S_i>R9rsl17Cgu?E z9(Byy+E|yQnFyi`KQjXF%rCAt9AJJ zLv6*08-i5E6sTIw@#Smne#D3io_!xnIKC(e%gX02XsbNqE2OkN+FOX(;E_}LL{P-N zCm3M2Ck(l;68j!*m;qaRl7HPK8z(xG=Z+t{eg>zoEp)2KiH~?K;v4Di?(_ib(~)Dv zO%0Q`bI#9XZ@BnTNR+FeSOu7|Q`|dU>a(YsDRj!fxUo!`u@RYz{xNj|D2Q+`%jU-YKRIWg7uy0_Dwi#DTyN zp6TxNY*#`Ne6BZT-2J9D(vH(YE%661Rl)H$5^As{I?OIEpQdDZa#~`@kF7eP&yrp` z)8O5L=>E$w)4xA{-FI0`4tVLI{ShOxG4qqwKuzZR#B3Nfb=~P@)nSSWRBg;TzmXb; zE#WGtt}n%q9v0kzp=e_ebmVEO6W`bJ5XV1tV5wWJRXn9T`mLG_HtK5%uH#&`;fmnP zafaZrp)=D)BmQ7FHTJT=x^UB&yL8NQV&}4!z_1$GXtd3b}>bQ_t+@Ofq%H#c!oOhyJ-Nl~dnod8z zqu%t_jAqkMdwt&RpuMTIJ*zIQW~uio41pp-iJhU;lmReu;f=c zSD>R?9(DyHVr-vzCG? zg@_)%TZ8}Qz`1(CdMvqr>%C!s+T3n5FU?p7`fr)ByItILnByNmcC+?(@Qfj!!QJ|O z*QBgUZo-e6*J};8Lyn%F?fv9$C|%>G00iU6a-gDf0&3t{Hb=oem;)#P|NB@Z)ZGu@ys{b}$_~aNdgs1!1qTjM2tIrObh zCk+RKMDpU^*CO{h1C5>bxEYqWCey3&-u|T0{|Wy*wBp28lm{D{fyjl5=OtccB)DKZ zq&KTr@KFO%xBQq5XAwP$y*=AYeXE&#yKmC>zPh+KW>S|fc4r?*J-J*e!%aIm+)PNw z;_8Br+U%eLWee;m-i+#}g4W>p!yZ=59QHG5YjFnt;{X5xMd`8kfiS*YcKNepbV=~v zdE4K=?%!NFb@VsX{>Q_=@3@$2@X9;SA-C*i%bw>ncs=diNhvsP`sI=ps`tmTrMXY( zb;v3`+uJsPX4s5r(d1L5cFHlMdtUtq-cC$jQ~Bbvoj0>wD~@BS8~e#Ry>MfbomylV zw?#*@q8r>Kd@U+mP8%u<@)zz3dcNhQzFgPJT#QT2N*Utc6P%vxFe z;hA5-^s8oJ?F$+|s~6GuRAHYj1McsOU3DhISe?w%5N3z>KB8uuhH=^+3q;pldZicv znYVBc;wq}UUG1-aBRLLHBlb{1~4BTt!{O(q*|G$vQzgBGP^` z_XVo9yOYCcW5J16r!L>5l~In7RloT7saa(B-`JRMT~VeUHD(XQy4L>h%9US{h`OsiT?(IH#% zek7e?yvo*|%zV&znz_yJ##}suuewztc`AU5V^c6_<}ghM>CvN9d8%6`}NA( zDWQbPhWCLuX{AW_!O?N|^^C9qn_tKK{W-}^-5$rSM|=PE*k@Mqp?gfm?%O5n={C=4 zp*3~MvNWXq+|Y}F{JA|)9=jY3ep3HMoEqXz>CO(ni?&7y!w=WG z`OoR&5nd$PHR@JPcAWf^W0v`#139G|Uq7R!+rQYvwuklxTr)TkhuTI!`#i~xjNeLp zqTdf|$Mqci3EwE2`zv;HV9|s}+@v#TSs~#wc}~M?b13zR{Vg@Eg&Xhz`&rrcXY@sf z29wF1zn?@Ud_ZtZ@Tx5{UKg=y5;>Xj@cDjneVg3lNN)5dV-e)F`J2B^Ubwh(az6=rW}RGe=y@u=-=LlTd4)TCxbhY4&>UJN z$zI={sswv&0}2{C8K;_0m};4f@x5{Eo=BcKI*`(f;uKrA(Q5b?^em*$;=a!oe_H)qqTuQ7}TFu*Z$EG#9F~sy`YA+t1 zm9EGQ@?2qe^@vTE_7H34J2;5J&oh$3a~tPBs}Ig+x?`xgPWCic3a=QYFgV;2LDpeY zLBSJR$C^)b&<^A6tjd_mq}cpRXhw%ycYWR>&=1;Dn&@{%bjUdmeh;GSHDB5-n}nc0Oq$uDiyvC-T3^dq2jJb@myLGMNMn*V5sSVIF&jsejw@y8k9E z6jeU3+On;m_%E3~YEd*kkuN*Nqv6H-RfvE)Wx;0QokDJS+U2yYDb3dftM~l5NH-@7 z{)UT1$5v^6X;RRtVR)sNbc?TM_Bf?O)$#XeK&pjCwrF$H#YR|GnQy;iM`%>&Z^dIF?WREbbI=Pvc9g zhuM>B@y`oCe+dHVd6~yAQ_9Wk-Z!56qiP?Ve#pw9MjGwH@YFWjx0|o!qaCcmv2z0s znK7S|&J~?Z_VDDo(+YMzl}I|f`~G8_X`C*`tPk9@W3Qx@m+ewl)Q$^gcmwEhFP$$D zqxNp*V?yzfV}?pccDG@6zn=6+;Kn^-r8Fs80~yF|i;`z#VZ{hnh$CZ(1A?qr7Oi#l z-p~5Yjv|)MJ%)sJ_nHPJd0NrC;lqz>g$!NWXBLRXspE<}D=~OS6jxsmh6KqifW{xd zZhWAAF{}eNUnXx(W-(tB3+D^;;PNSPP)fQQ-toXZSH{Fb3nlTZ({GOJ>vqz&*f@<3 zLkHD=vX9RCJl-^}y~I9kR&z7#t=#W)_>yby&A>6iQPt&3PxSjAkElmCiadz4P~T*I3w|$#RZZMi~;W{ZTXVHV!nWPhx>L^ zx+W88TueZ4iw@T+^T;Z=9Mf3?mwOSqrAEH^N=6H+bCn3EzL?(e=}y`%#m{cI&0+1j5}| zB9}!I>W9C%YAv2&!wyA(OWAT#h$;%N&K$Kds~TaCU#99PP zTFG@ka@}}r3SiDM4tf!A@3WcGs;}qo{O9@4;cCJfFL|5_bEmkUA^v1qYMtq|Amp+= zr!|V=o=(2qEP+eL`a*qKurGZ|&2#&U^B2Q_>(!dW#v~V?IV%6m>WF7r_@;>4ylIC=w_l*fKWYG8vRHE!AGX$*VN zG5Ioo1aZ3Q{1&-7zAW3uWWsH&N03go8+SUBF7H}AomjElI->RYa?F2&>JOzpLVkAO zthQ7!8hPjl`o|}2r~f*)OBS77ea2BYTm0E9wC(!qy_xI7nAmUyboeR!E3S)6LWd*;YBQQkN(`94Py(^pe%hv4wP_kP3Amlx<#eq3-V7Z><%h>Xyf zg~N@WCN>B833n*(^))Zaryu3MxExg&~@fAs2{`eK{0331X5rKTJ57Nth_>n++lb zKU(FQ4#Zs@kkohg)_N1TAq)J&hKmnt^4CXa)cmNKV_~Mf7CNg#R7R>|k#ge}Gz4OV zM;vEe_sXtow=}3zY(d&VJR`B@zpX=yJPh4$>0T~tXc7}4;?m?Qqu4t$PImnVc%s>q zL;2UDOpM9LZ>f?93(7Ia#BNlG*rXeP;;upi`6V8pTcwsOe~Zczv7JS531SI*BcJ|&mP*mpMAMn zWMg-GbR5TE)L`6hKddT?#Z7njG2x@$G?Cz#wTs~n+BTG*wT~0gZ*p38EgEp}YDbJc zK4aKEea(W^>9%|?dC~Q9K^i}LdUf&3X&~XMdxE9{If81t;{58%MzH(DB~=2Gzt`L!xM+1eO<0qc3HHPQF+OMVN-c|2F0W$ zLB?{bs1DzS3IF6^lm>cCfT6F-#@t;}QTF(dcawGB3sc*;rk6brS)7C|9VI%O19A^B zR@*0s$1g>C3dWjI+pNHaq{EGD3rTpsyf>znaq@P^&mbYJXeKAs-XVarR6EV))7IgN zbT@?!$>EZr2p;jO7c{2c?>tCxe@R*HuH9a^sWY)Jl>^6FehEW0y|w=PZI!zI9i&Q~ zgGac-%P$ID|DIV`Y-H`zzw+z^>}Eu{^zQMa;Tf^&u)mi=>&b9xcieTHxhnCRc^VVy zoe^ohZqM!33UTfIgw2JtBzp^0J?c#%)*QNX4T56-o6&#V37Kh9piY$ky}nB}H%_%*t;AMu%sBP*z+acJs2M@gz%{E$m4M0{4({z!Gt z#Jy8zc*Ei|!_ob}jPW_R37o{R9+E1JM{&~9q?VR0%9XMZQV_g;FmyAV6cg^iqJEAv zs64`}Epn%XiQKWsWRv^EJUVX`iniMNsUOuzG`Y4PAF|l0xK51w@NG zGAhUp;L?^7Z?t?_uwRy4<$y>7Dil@YYeaFZs|cF`Wfnn@Uw0Ei59ge>)G2u5Zwz~g z=E6I9jeAv+1J(0K&aIp|67PQ{o&W#>Nyyc&Y2HVCmmIZ_#_T1g=l6Qi!MWIKi#TIt z@ksEsBZJA+^obGMw~fE$4f$dhfe<@@%w?@HTn3Lrn6Y3xs?`+VNn_nsvr1`PPbZbX zc*_di;>_Z$#qnaWFvL)D#W^Vr2WIWbg>c%C0vyN^yZsKYkpBBG5np1|W=)jQ`?m8$ zx1bt-%JDiSgWBXlbS!1tD2CTfE*8ShpG-f2Y8pK}NH;8`wEj@%|pq2TP=!Vimrrbpbe`4|(Lw8{+ zg?^Ww8!z?Ap}fYvw%eQ(Xr=YiME-$aB{sT0TMvq@OsmUvbhh$?h4yGeKpl#?L{Xunt}w&)l7Zp3y&#p;|7NJzVDszIa#b zdSp+SpiM^cwJiO?2lF9*?S755fCsSeX|6&i3fpb_^^X5al04R}bj|2(5GiEgh!Ji< zhdxJ|X6u3_qOJGegs4a0BOM<(Qll8(Oz^}4+xAS1@xqngkQnnIRjggLHJtW}%enC& zJy@+sz$snC>|>IFr8JM&fD^OUHrE{O1SNP7k@F>4`jzs#$B;UX>U4~8xpXbhAT;!; zEhiI7v8vbWX|xO$B7{|EL|2#H;T>Wg489y$vSUk2Wr5s&UTjAsI(V;W)Z*CK7G&1e#oS%xE$HwIAnGkV0h(ck~DKhCiB|hLxX956>52x_Sik2 zL{sk3VAoAaC1*9E(QEwch;RK?0}f$9_g-IbAtD98sSFzN)rx*)E@fiqJx#+7V8$BS zF#G<;_n!klvS>3=?&_N;I|->@*%*9hZ$V4@c$;IN&ge%{wJ{nQjKJ>)zGz*nL7Kl1 zhobL9qez`eOsu8y7$HRwlP2FmWV_=>OjD>Ez3o=jNqIP+B+2+g@4;2&hzUA|PX&!w zCS-&mO=>CVGYci^3HuWR#eF*Pyyde0eb|fd9sNPfXuVPBk=0}(EGK(b(HtZrrY!cN?GbEY$dpSjo z#iHD?Z3$^mZZQ8{!@}oBb&Ej?yE88lE&`2zl5+c@7x6Oj&a+El+w}>t2f61q^=`I^ znKPi-|0H@AGu)lyb|y@>MPu7e$F}XHW81c^Cmq|iZQHi3j&1wv_Xf@doc*KjV2(Yi z#;P?_h0ZMOku2zR2)G*z719tsM%T}p?R@nF}3BX&61|#uLrL@Xr z!4}?ub=Op;!8j?sK2)_l?&bfmuN-fsYH{ zgl5&eqS;vePV_Wt_fH1pOm$4q_x5K3QU*CsgE@_98VzrFr0*@OC&Zc0%0=$rw!kv^ z>H?W8f2x3#TMWW@gKXUa|9d^(coKO8!(EkP3nDuac|=4tq_6~C2}rT$q0evMVb&2I z|F~i}mC3$6hEZC`hhB(wV!#+NLxY8jv4T?}Q&mZe``_1SXr&RmALwtw()`9znz5Bd zYjrVzg@+B9ncb92eP7~5j?$dKPE<(G@zjPN7n)bG)B>kTzzg1;Hau4mPlPR@BOlwJS|zLrfAyJuEyO6kf) zf&A5Fke;nSIf9=5F;h+Otk=k5&AmUMT#X_g7PRW5ea z+#Ez+u%+#@05v-InVqQ9wNOm$jOI+(FpR-ufam@!lo!|&+LBvVRd%oWiA+37F8=E! zCGR6v!LD{$+rYI%6+}Zvn5flI4=YNyG7%4FzS^{XVgrwjO3@0a z_mL((dq8j8XX52L*cS|HVPX~%@GZ|pfka<%J}psd99rz}v|oYHmVV3|UGqDC+gw^6 zWeq12UtVa@sp6#Nf0rztxXPRQAtjLq64$H_eBpwZWiif{(b`{mcSz5*;?RMj=jE|R zwh#0_{tnL{>jS=)DFL++;b)!9NiXKuv8X(1DpC|nA6RO&y$NfR>M@5B%6*A_ozEe~ zho)05N3VN;*>LpH$Dg_wC7`nvb$qHN=rxwfGO0Q6R5yPNe5gfLL~&P434Qc+!8Mba z(dwv|iD@wd_ebx+2M&lJ9m$f;(hj&aRU2oT^JvME+a$#qx>p=n)u&Q;j_<6oLPOJa@nq8ZBLjCi!L zNqC_}D!gD)=D;~syr72j3Kc-+p$ftU^H!XU@(g0Gml?%GHmsTcyHWcd!b!wLcnHW* zJd|&XspBMBxXr`bDkBvext-uTx(@K_FqXj+^6=GU;QPwOWEKkUmY-=M8L5ZKgvJ}B$ zzwi=wal2tUSHGMuiF1TDfzOa9TF28Kq4$3M<51-(A3dS1fF*iCFBxw!w}3I*R=M`jW3t`L=YN2-?uctg%j)Jyro=>1a}hFm8FWTw0U)r07R z&#m$xkb_nF1XTEfXsUN!Cu>#`W~!fKDIG@&o_=K_x0RdMLF;=pQN9rs?Ru3HkQOhy zk!yGa&Ti6qH)dl4llpEvCo^%OdsHU7*c*xJZieZrhluxJm$hc?WXud)(ZMaNjSA=; zI+8Eor}d~7Si5lM=biR;ZIKd_o^u(o3d6|7T7yrU%i@@gE>n8{n&afm6Vu2__1lo? zL>_xL^M5&RT`Vxa&3&X5z2U`Hhr02=dF&eQrf=Px#pB|mK-j2Sa{SoBCBl`G*QHjn zUcc*eLszeqL}9!r#043xH4fj(>Lf-O^qf1rF$TOtUd8=W-$=?jY56lajxl; zG(9t_Fhy!ArUWXeW9}~YUryq+(+AWo*dnWuzy zHKWlJ)4?5Ez~B6&g@moINE*u)WH5d8jM)_kKNr|3gI!BOcD6=U7{EqBl2F|uvydI# zPG)*^-_nc!Yd0=3V!$pQ?*^Re*Ut^ByY&q zsS0;3YH54Z+6|Q+zpJ4%J@!@c9A71(mdG>kUZ$kTCr!qTwugZVJ@eqdu%-uD5<&G} ziH<`jzY%loyI_Mv@K~H5%0{VO6M6Jdc8Yw_SW(7svnZ+ z>L!Y`I~8MSoCn!=@7i~X?~8A4rj2~oI9veAPHqZ)z*xNtOC?1Bnh_%}K=5^j1%6d& zM0WN)zVI`Xq#!;b))6=sG>mK80o7J}#!4d!=i2JrQ4kuHd2UK_UoqKk#k?Ya+>nz` zkt}>P%eu8T0e0l(xoxKy+Do&@ulY(6Pwh>(g=v>?ki@Www70Y=YvciZ(VFEl!%txI zd%gRE>HTtHs1$bT*UnFhvZ+iH&0o@s6PaC&t}%shVYnG7k~X2&3%+i=t>CqGRH4C# zeV? zZl_vQ)HGbQ=5xDEXU$~qX)a1ebf3I_D7=v=JuO0z~?WxjG2r6x)MhD*Edjw)eLy6b)uzJm$~9rYtNs@u8ilwa!MF zTo2K*Cec$^SXl?@b0BJWPHRdC|2VZi#|=mdgb|N3MKqHO)IvJisWIV8NLl zaC{GeA#D}yAH&|rdRpaTe`tR8A{(=EOVBH<2p3X_wV5l}aKg4rB~A4srXtD2P1|+v#JdsZ^J{UldXj~Rc8<8%Rl|aW zvA!Q$%ZA=;i_)KO4o`I+!-}Km{?+tOY&QkH`Xk&qa(}zG&e}3AbEbwYPaAH3y8>~! zHCmI{3gucypj(Rkbu14GjaESuJ;ucr$)8+P3F-IKW_0W;dP+_7FBxAw302}+bfE#-#~SXSbCDc-d7|x z3o$RJ6XRgbZUm9~rG@XQubfAvN_RftYsGvMo_UXF^1?bf*H97~-Rws&Lf2pPVoa4k z;QuKKo2}8v!MVD{YWl*#5n%P(R!9cyx19t3iM`*0CugaMajn$wC#0?B}s!AOh%VXy8UwkrUzNqzX5Jv<$<(zSe z)SEO_GX!U;OA2utA>E8+4qtT38#n36G`JfYU(e^r!w8#2Ajt1ve`}P|9E}cxR)uUY z=YSxZp$A+EoodUc^xL&ozw31c(tU>N>S#@-V|yilpc{E(d%{gsKLSO#Z&D+WX&gNo z(ttBg57*r3kTe4gKTVc4#-hK3B4&UP=B?hMZl+zXw|@c!!>1uSe%{7cS)b*t?&=xS zO=G-XU@t0En(CC+y5;3>hpfj{zC_N+hJaX8>o`Ceev0mvh#1*`{>`q}z_CrccD7={ zPCEii2IigU^(X_m+KyGSR`|=XG-ev4iF%7mAI)8bnKp;PZhXf8Ow*69Q%8a=Q}7cp z`|E(`YLcw_Y|-Qa&ihjWtIXy=k8#+Qp$_JX0yU?h2h3jNukqL$LkJC-m*1Ck0eSYL zAO0Lc^4WCv4bFU%RkLdYHhW?O7HJE0;EIz!NQs2CAmUM9v$I9N zGAFM&CVr1P?-v!7L2YR3{UG@-5X@r_!X67OH>(5mn%0xPvj#WG@Wg>-dxr=%ovS8& zZlLA!yOgIS3(Z1ZCT8yRzaGMq|IG5i=X;Ugy7LY-9HAxQP4bsIYE1(zl^Q%2FSg68 zTY`Va-;6KIqIP53$7096?l=IYkm3+?*(1B6nIq6msr3Alcx?K@YyCO4BkI@AR$*C9 z+NCyDtF4Gs(Y1Itic+iK84=@zDC#F@Nc*GY7=@lNrr#>Ss8f=MJ-K_9CP$`9c3$%^oeL*vaeBsJ5MXR_EZxX(>}0zDUJ*tjSxnwQvV^V zjBv|RGN7Eswa&78vAHHo<6jN-^6;C6VgMGaxk-gUdx|^vOUbiH3Wqp|@BA!#mdQAK z|95IUSkLU3$e+LCXnn^c-eE4ckL`;LC24M)9~ zgIST2?%Dep`CMHV`DcIk8ARNj>fBnu2Zqm;i0L}wS2UtPrVbY-;G@OwaPNeJ@LFKO z?c3>(tB+leFSUaFhaZt8kKaivoA%3hwh;{LUqS#Vv-)SM-&5|qWu?~@w(lkZ1O&t~ z%4%3b(olj*)$%q^TyU zEu8O+6B=MPMvsp7_9|y73lN|aPWi@v`(GY_pdbKRCJl5h{D+z_Zvvu>09b_zNEHMq z0#r}~$b}Fn7&MOuh!P8E8%VGR=oAOY2~uzdXbb^J6XX{QkO>?R1W+F6pClkb7$61n zn34|pl7R%F2}qzHg1&Be!BXH;FrbTDO^4v2T9M5BTU&JjjlqlmZtPLd5a;UM4agIininuoZ#I+oD!GkQ?3>jp1XH z>g}NXd(VrNOX7P;uIN`)SeM(5{hZ#}e!zSU`8`#;k+%aao852Cv$NkT`2|92k{?82 z^2P^W#fwh@xsrhe{Y>L0Y^i3mmV~LMMG+OXbWDC(*^`IcSUgd=e3oRjxM65LMR@Kw zkCc{*V*X0Yh~Aa*YPN1{@}9;8;ma_m0wY_9+8zqCi%k&Q^mf+|PWW^eFTPEdfQ!6S$^JQ!z(bI%c=FIaKjlKRV@B&gCh4xdDkzK$h zD;K@Eb7x1<*pb{IAUoNTt)QU%h$*gR68viPyW5z2hbum=D&7vQL~;o6ZN?SOoVwg} zDAXQEF_Dssc9D7vIQ)4YoeumWGwq`fa+{)AGFSOUZnwHx!?c!T>t!>zBP^8`(1xDFv+Go z(+(^*jN8f{AVvzHSdH~=ozXaL*@`E8SY2`9zw(s+eqwezpFJP#Cwm%XKoz^j?<(3L zJSGi{R)&H?hi6?ytDHt$@gs_kWH!)=8ufAPVUjmT-u($En87~0zo4)f*bh0^;K|&p zRnT8<72wqsh>~94R7Oa%fy46l{kZ{d-5B2)XL#blB~cw*R_tBf-U@J0@4@In)Xelb z_<25l?CjhWd0K_UGGP~Al}0I+T)esAx8>vep2lsWNfObk`4B$A`Fx1Tjy$&N@oVy0 zlPlY?)@#N+h@xg88vL?1>{7hgRHP=z2DVQW*di=f`SEfjQ}+EBnH#uxd87W`wZE*T z4{=gN+{3VU3S)h;a+~bePe!n;Z%=|NZ;ZzFFd~JA!)(1wZIj-eR~(LA=0in7oy0ip zC{*4g0@by!ls;%|hTcCq^i{-NT67_6u_8=BY+mzQHqX=N|;&Dj;>~^BA)$ zVe9{TR`qs(ZpB2Lc^ChH zJ%5EfA(*15l#!sObO8T3T_#F$Mabul=SwoC?@4`0{CrN~|4R4ewg;P~@nqbg)1QM- zKKB`;?MH={u!>fASZ6*vE326fTr+MwpLy#HD;a5?)#c*0!m^`tEV^L7*NMRq&)1g_iL^S6FYkZ2p9~&F z`t(VArmIT|H7;4^Ur;ne4MFfH;%)HyOZTC5CDa|r*bV2woHYnqgr8xjtZDbGaq(Rb z|HPr>g}u-zjjbddjiHi9RFr`(sI%M?`UZ1{KDMn#A6a_#s)Vn+&sPSfK^-(yE!hlz ztV$#$B_@w9d#FfK2+80ZuQg&?NkOs?g#eKG`8A}JFBq|I{AX{ESKV6+#5}a>AdGqf zNG$iy(>`+BeHU>52ouZlr*-?!U1LmM02=)^Y3&3BtrvA>_e!={vNeKgSZzC|_iu;e z;9RO}43cLUR!TV#;ZA|yB5f5TO+V%AoshGEAr3-JbZzl?(&MlKIbIgkUO8!9sZ+R* z{P%0xcx(?qdiF=jeGihL1N?TeGSAiMvTS2IyY%qviCyUn)4CT2dN4%im2`-o^IuZQ zCipK)6YiXT9YmT(B!v8~Agj2oEpzCoN&Aw2v6zE1^Ir}`OKlz#VutqnJo&`Qx313~ zln`9mUFyNVxixAcqKw#>=$sOvN_GGqwk2gKMT{`{^M&HSntxYGWjD}%CjR4Ju_wT2 z;(I_`M%VOow+)R5)dPDnLHsx%T3dMcFJ^#zJ3UU-uOM@6AUn;I@1+^_28>gcVJrl2 z4k+eAT|G%IHttbaK{0i($5k5Arw`L%rq#)8=NqWMx5FOGm4B8fAtYm!l=q(bnvs_n zG^4K`XgiaNWe#r~ycE0xL2>WLurK$Dzm7Ep7J9qTznufudLi!(#4wZc5n7txMly*U zE4|>=K4M=Fz#eRLi8XkDOox`D8$FJGqgpeVi9WrRTHapJ0wUuh`+a|>juw&Ncm+v07JuSW7AU@N zXPe^@%-%k;K85#3@|ABIGao2srBzk@HOxDFsUw@u+ME;RXXDe3);Ix1Ha_r4GD+uj zAx$aFQvAU2AIWCcA;%ihj+$C7kF!b(f>y7g4I#D7m zxXv#zFrkR^tqdK+O`5W*>Qm;8-SKSZLu zQgI6goJgdL7w-nXj{C@M|Hh7kasD7uLu+mb<2&lSbyVS6<1Qer!|=Ii+CJ7KFJ1_- zbv(_}&;kbyug;?JR=hLPk2NqP%=eL(=!C@z7rJC=kbkz!$XU{fl)c2KlR25QrO`Q& zzNHmuBB}QR7bAOo^V&~*kxb4ou!{~k<_eikJ{?$C9x9H8ihSJ?1nGHlXi!U_-LBjS z#*FjzQ256LdOqqRK&s7zIdlCB%+D0MJmy&6_w675N~#kp2_-LBNH%~rJav9k53o#* zg|xh2s?c8tKM~A@elJwK&q}^7g;IsPJHv1zaTFs3May^0CwU8=BK{W@iMhN>DBA{P zX+=-tl~JgsYwSU4CNXXy-+N;(w#}2nsXNE+JV-F{$#Yy)L-43af227rV zDhxDeFN;0D7`WuRaJ03b*SSS*^z>p!IKU8_bHp2OG<=f8jvEL3)06A1Jo34PPHm{h0~UL{Y%^ zZs;1d!b;EGksQGu?WJks*_3H#GI}3U#jlvvGX?Nbanw5u&qo5@GK!B-q^~HfDYNp3K}wGD`j~MgZma6Q^iHFW>zQ#N?w*KjQ~p zzEBmPXy`l-WS&c+Um4`kjC7fQ9o)tS?|Y?e)NkE{=Q7-1Kkl@X(}6-h>MX(! zB{fZp*i>mH@Js2_+yO!5R8X;)ex3j&y^Bxdo$T13y-BrN=Xu^`Rc>5ehRA|~aY?gT zDIYW6`ShV0A3#HSKXzH@)uJOiBTS1hoRe*`Q3kX>sJ%&FV2&>le95IpTz&9RCZso( zqmWeeU1ZE^a|U)1N2;`j^gH9~153UkZqOYbJe^~(BQg>(l%IWLZU!U|qwF5WV$@@< z@tM74H{96dgM!THf2dvdY`miF-)%?D=e3={rKvTodezFcABdvAewbX{LEH&CBwga> z{<(i$aUM2(F~RL|{QK9qM_GHyNph8&tkVIb6z{V>1qJF21v_fSa2*Iw0_ohIk?p!J zrmOo&p;{F5M`>21nPv-9G_06sH>~Jvp3#9+2*uFfxK_6SH(n`(sT~UNJ;ryi_Ul?O ziM3Lp_jvkAKH7eZuveD_-ygi}>F$Q4yHwaJFZZy5mfc+I)44+}6=C=+6atFbR&9Ls z@a6ag+h zphcbR{NM-g6YBHzqVnCFYVca5xvM#;a<92R92JX!_hf)T^u{)*Y{MS2InLVX^b3*1 zsZM%@FfX9qsr<3gu=pSU%H~a@PTyZ{)=oT_#;tB%1UV#Mc8X~rH=Z1@%|)xbI97)A zR^XYM5p8*P%2BfnNy51tA#FG|Fxak{;elg@u-dJcNuo?QsJ?M()Z4KU6AOmL)`6Q2 zTAxOkv9y6%sy$jLSJ?dtFvHnr?Uxw$djoWEd%!xV0twGR#~*?E3+_^FPY^ok^UM!A zPAlsC*9lqIECB^b0V>2fTz=%lcq8#cXNJ;aIp&+^^|k3;^(LpjX(!pcG*xWX7ei7~ ziFJBZrMi?0rYKF^$`?1!5)+9vswcZ!Mp(fZK)Z1q4iP3$C}9A0B$rBe1#ds9Kjy&i zvY$LKS|3dG>Qhx(Z#F<4$=#We1zQvm-;aB*UE(AH&GN*0K*DwA4{O;1tpr0u7D) z#AzSj@mmQ}mV$ZHSN?pNTFvvmy%Paij%pKCKlkBn8&6%xeM9y6nVOSx#b*vW_SXr2 zg&r%n`JMhHl;`1JvCTN#ebK^?Qz3y$vwz#yf^)W|ZkAI6k6KjB!qcAYImEQR1+_ft zyEi@BgEo96;PhG;aiWA{uDcqfNm;c%L2lqv)}NOVpo(SbPwf*{MNK$VVDC~KYf}xa z5H<(OzCy?`e^=aNH=2??%op;R8EtH}>y<|@PDRDQ!gme2<9R>M@diijbZFccPqfV) zLMz3NFdiX924LQk_+z9efO@;pqt*NfUQ1z@YspU1_*WE-P@_LlQ62;%ia)5IwCb!q zhF7u}?nHCzBsgomKU|DSIfIewIK|DPvw4@svb8n>uvOY zMyPI?N8VM6{N^Lw=A&86UN~{=KLDNg4I&E!xTMJRRPq$DfMiB1IJ}$9I!b$1JhhB% zUam6WSv3pyj29aRms$bqEG9`4@J_&}3tg|8whtLym=92`)PrRA8XN51ci`!dp;&Bp z#sW|szV4-^C&$A_mOK4Iwn2?mW{Ct&T=^#HzioZF?(`PM&iW*LXFC&WsJ4}#;lCQG zItfEFz}B6}MUMnDGAS-{Zn*##kN5t)fV02sc5tpQ&!}QPkq+%BZbuTzx4x3yf&xLK zP?NP28OTHTV&Ah4Uz5H^Uh0Sf(i(e&`Oo0XqA=ZlGE2j`g+vS5=1xwW`*?SVPXG8< z;k;Y_LK!ng<|3>N7*TAk zZyi;O)6f~hhSZq*$my@cz62s~+xHI-Ys8c~aq#*bBgxViaN?wwTd+ilP`iE^Lo}q{ z=1&G|rrtJlWOOLZY;L(CdChdj$L`9~vSF0wH(40etsxN>9r%sl;Lm#0nu6+ln3OJ! zdE9mEjI`!#+E6~Gv<~TL=0qf!Kn}*wEwijeRWJOM%H03reoz|Q_^YcECboZ~Me|zt7!iQ#sOY zAG_hJvCEXry}e5u2nEJ@Y;1aiye9^fIjmjE$CQaH5^V(s>KS8Rp@i-myp?aZc}ub* z1eqgRd%52ygAPPOD6TR=gd&JK zp9i|T59r|0L#HDjR+uQ3#JT=?B?OxIJ-hNNq?df3_VP2AY_g=p?@JOGX&nAjZR}$}Fd%ui~3U z+iIz|N%Yc0{=7Vf?w!WtQ4>o3DYUF_VQ@GlZZfE67?_bu7))W7Nq>y|i0wC9PX&J>yz@ZsbYwys}M z&vLc6nu9IF#@k&nqE<^Usv2tpKh7^ z3XHHAZv4f8oWz<8ZO{L9$o+D>&GaDi;a~fplOk&h-N$&-`RdBm zn%IrA#g(+=P&c#r>9JzboZJ88+^J%d{ULgqI3J!U33#zBEpj6ZNc4L+=v5Z|?n(bX zW6;Ws-P1M_oo|7kzWg1ZfmmjdNP+o`ab*{~tiSg0U;m$KCV||=$#d4<1q!n5$_Cp; z>eQFf!XcmQFyFHdn6GyV*OlI9N3|DBt+>YbT8r2W=VB-!B|`M-9v{buHRm8E``d=( z`%|S3C)kQkak~TlR+;P6&~9XDntc{2RfM*euotj+4y-R(G8tX!hMkuYCqK`fxQPQ) zk(YO?qgv?dHNrlzam8{Up|6Y`d%l)sBNtmtjZ%I;WZ3B zSC|7c1AX7BR$XLCsNTP6z@Us4&j@%L#KK(%d43p0Nk0ueI59yjQ}ZluI{$=X+_*m5 zptjhNy>q>I2<_BI%9*d2=o4OFXvlU`EPl(0K6z60$Epib}5z~LL> zSeVQI4eIg6^&H}p>uBKp$w`~|&d&OmMMd4m$)SP0b>AphApEdyU zyb{IK5MEXFw6AK8-!`Zn))yax4B%kU49Bv@7pimQt>5Uxnt!9f1JiYIa_Va_uad*E zLsiEq+FjGcFq-zQ6wA|*-0hT-T?AYZ@m#ZS{`s~51ZAcTkGdraz0BIP180g(&oVoLKggmvhu zoLhu;!BiN`?Tv6#wUcl;Y!skoV@#I@V{!=xMxB=l&SLCLaN|mZB2Z<7tWirGr`FrP z*Q-E?Q(|0mJvdN0=BgaFdZgJ0Rq$(cI0nbNunA}(RybpneEHT+s{J8w9UJ?f18bK% zN~4lM7DiOAfG@p-KzNOg-zg^9CY@c6VLNcBde@iUn@0yCzM&hWyfFJ&dZRv#0d3?0 z21X}bPJ1qL3)+@7G7ZmF0zrd+U)qb_{8rB}ROzO1Op z8w(Q-#Q`Hj-z^7hRhSRsU;RIbnpuvDj@kx{;}$D6E9%*Eg~7K0{lgAWkkLO+9a%7= zWFnY)cl}!Fo%VLD7-4Z_?g_RMP!7rsY`m2f$f0(BeT%1a!FAf&&>Yu&)|vL8V1HfP zBXP#^w!X+B5zPCK(RUpDSQguY4*bQBE((Za5P^1R>^8I3i*_COhfFud5VgmjP{tGu zQ5kmkkq^$;!E7p#sSY?r)kN+x(AuFV;=hhcTJxh2*O9NL=ub2%9R|x6Cq=pP4o#Gr z&qkJ!qAq2S=iC_pzZdFGlU^e_#Hoe*%}!GNHFxLME?^-f zb1XXd6SuMS$gEwX7?6=oIjfE^8KV4>+P3bG&g6o+=E6X?=c9LH? zOqBg7XmbCvPb@>4N#6;MD4L^Y=+@S+QQ1@ni0Zwp?vE+Tq-!#rEQJ3QK4@imS#PF! zRmpi~|9aE%0-(T}a8d1w4>_j`zMCSk#Nf=z8JE_mpF_94+k1So=)_fo#=I8)UlV&p@35%w^rYj@>L z9y4}#8X$Help)C(sUC%-&CM8QKU@Alm#m4QOxQ*AXFA*b0EUKom9_=95y~Q@9MIhz z`dEz;m(({2;6n869s=Q#K=cTJ#QK#Q$O#J*OpUA-n+PVl-o=|H{70~xl5V<)*~Mqh ze&O^K|JrUiG=`~FeE|Eg*LbP|A5x$G1vc^p)|76=r(gg}Y^X##nz5eIbGYcXsj{{X z={vp-)2IbCuzt-OC!a5&x$pR4q%Yx-kihIIhWfbvP2HSqQ#s4$O@@W5OWq;JiNZoQ(1&eLJ9 zZG9j+#XMicT6yTZzqWE9jCYM^SoH`mw^MaUmL<|^#6zr^|1bIrD`Ft(P3 z&VTuz3A$o_+V#)Q%Od(mE7|auyDtPQybI>4g2vnb_O2BOOW5#z0Nm;)}(X&knNRy9=3RX_Uz8_QP>%>*^b34}IneXDL; zt$%#0*WyL_z)qPD;}>bz!uH=&sUAQ%x_56vm_uQ z_yF^W`u>Li{IRIRaYd)96};O+M*+8-ewSLu#>$$|H3R#gWz;3HGm!RtjBwDaV)1?U z7DL7d2LC<5X>{n(LtP>g)ZVTk#T*m@2tz1^`K3EFmNJ8Mdoce7aCl*@l3#oW{9EIY z&0xf5n?GCXv~5~2LZx!CD!`jzZ^X+cJ!#4R(xv{tN8I)H5*P3S_-|lO)B6HsRh`w*3-A7}{1H&0>ExOO0~Fw6{kwsrM`KMg z7tQ~&#_+ycXiN_O_g)}6TNmYNS@Tpd$t1>oymna-hO~d2r&sQpX!qDG>p+yIZC(t8 z>=rZzkjNct6{u+kZR+MIlIKAyl%DKoEiGC+>OzIBhg-cr>G&8I{;d<_S#=I^(vvqY zX*Tz3*|5jxVK=k4Qh|N?_9Q-zW`WaDZ{I}zNMO^dVq*RJiVV|Xb4tLfNYQqd zlA0CyC=~2kt9SvfYHRe|wBu>ORXu_uVyJh*;VqBG8Ft=XZ~eE)3_Hb~3WR0P&tEvJ z&c<;oBSlyKg0wMxkjI+xv;UD9h*HyM7M07Zjhp%--2( zRz^>AoAl)=`LgH@HOJs-n-}(B(*@nlp4wZ>gQ8Oou|?FCL6E*8D&0%*tNP6?+&LYT!OO_ z%JsjRM7gt@^$2QQi|p-8FGr&>cWTnUSl#{D)CX0M4jI)pobn)L6a`AMms9g# zfhv)J+2#XGO?Oi^3}AsYq@mvEONfZZy=0$;Bf4WTQa=!YooHVjv1vtN@^(S*qk(7@ zq{)>tQh@77Q)DoR6M?Nufr@w4z#uv2s0|@`q3r}yKq8=IlMcd!B!C6Gj~4$lkESF7 z3x;3s9pl8&W>G7_`dC$p&@`y+G!PN^Zg_3J^?jyyNpo?c@|~7$ztut<1W)u%f&Dlo zGEcX*w#(|pY__U1%*ZdgXLs&$A7ra8aL^M4NKS-9$JJ?(T6*%&YpIQPoM`FY#K}7N zAEYJ`#KGag;y(GZg&>QB#JtIhUDF4jn`YL{#F*Qnj{C0=msmRQMs_}r=&vGlr@ z1x2gRK6Mv=C|B;Rdp>9xS%J}DOwhjvH_d|w1jv;dsAR0n#U)dIS~j$ralrf-%rb#W zUc-xLb?>G{-WAQ)Z`KYnePPq9$}PHvMBX1*V@esbiaWa~pFxbP6-@Aym#$?a#h$E> zLi#brkmqu%OXiQXx?h8ijz&3#BN?`2r0S}Aj*>IP!`=e zI;7Pkb1oSYTUdI%SH}xq4YrT3n|o#y|8k+28;`KxQvHdg>&UENnm##OPWMKQ{ z_d$GoL{!W)!o$(`bgE+}do;D<2T+_&t0=y8I8)#(M@P4R?0 zm2aO)^gTAkxk~TQDVomll0Gp0E1{=$R@WgVM{&c_S7_re!SxH>0;D@Q%}&yf#!?Hb zK(>Ru$PZLEjI&O~7Wrtb_CaqAAoM3z2sOu|rDQ}BD?PLD>MVgi-Vb_&>Fq8Cf}0Ya z6pXD0smbs6N#vOkl#1D6?{OEGCi{Q;zxMfU(tI}+nA|X0%|3L}nw|4(%FR*gOEAPD z!F)xa&Vv5P*+w$P={)2Cubdn!i9&{M8$WLU8bX@IfZ${|&l38D($BBD-z*qbU_8pUCL zKA52tcx2MG(0I)NO%-E zZ{)RgL_(@xkq5*ZqVt7_OY*^X@9gB4})^qD*Sg%AvFg1*Gm4^Sf@1XnYZ?m3)DTA24w;6$CK$26C>kFla% zfwQT~^3+2}9eYmcCrl`)Gl%{~r^x`0P7Tz0BPFNs-ma0Qrw)rA7-Dt9Mk8$mELx=J z4#|x(If68e^sK3EkLfLY_aQbl#tz(7E||6;hL2XG4r6JH)uX!^KQm0kRq-tiMc~vg zn-+mcATvTE{!A2~MQ2Gci!9(DBUnnV+sXWO82rlE^iz`jedNE7>33dNdqAjV z137eUy!qXN<+sd`%azB8Do~DUm=-d%%+`vb$vSItQ~tooYn7Dy5?DRz7n*RUKK-6) zG4Ao3Mm~f4UM{3UAej79^FaV!%$?7D&>i{?1^ZuV0_hr|5^Ff4jL_pg1TE!7xY;y! zmhgr$g~P=JhdIW;19f2TwE1c4Hq3lA1>a05)hVMr0=ruDZA*5h$j>@>+2<=GF#VG? z8ywwK^S`3h^Ayo<^MJK%UR!6Nu+OkM3ft$UsAwFju~)W2-o!{ci&39u@Cf70x_^54JqAdNVmx-Se?k07z%|m1)Lo1ULt^8 zW!-puCT&~x(Xs*nR*dZKBp}wS4XtmsRN`;XaiKoY8mauEj5m(-xw&q3j@3IcIO^UB z^E@7euS~+@Zj-M`;bH3Fc+e$m#dE)?*+5pobOl^nO)YS9UgE6JZ+Xq!R&RIzqQ(3p zd^*5h(w0bh$SB46Y#_{O0wg_!!2=sr9b7C6WCn|29N65zHmG65ly*r1I`tzN7DFaM z!2SIMcDAziqyX}F@A}FOwDo6+@Zn4p??1l(uldja2Lf~m1e);g_K%(=u|2ad~^G6c$*Hpk>Uo1GmUh`)fesuYSsiayiy z{kDN#6UY+L=(Ods5V56+{l(o2^-t}xzODxCZy3H$77;h9(ndE*{l30ZV{e)R6Bif# zv~T3)1$2DozCTVP_5J3f!fSL*NXH9_rBG3FbG~n9L9Yzd&>~k$OIKG{6RoWi%u-7+ zbLH(FXhHSW{BqEuIVh?OAWv#%hJrXAILCKuut#ov^?T@Yj)M9Hob{04bNT)Um_TR0 z;a`@~)!T#jX;Sc{IJvl8@B@v?Pj3$jepASo-_RM!a$das*Ts(~-oa@(NJ8fP?EzU9 zvoveG_`{qeOCD=KM07SI^ErnfSKguN;x>yeXGP<+!}mv;sT;-#{BNpl8l;Gdn4kaW z`%mxFIL&?~iw^`weIJuN*FN)*XFQ?&>{LGX>MV|uKeSoK!?y=t=wd?i{6Nci{PrL( zZeyO$I0q04Sh!j*K7iAlDr5yIyM=#PbfrZMo=F#oNup7l5KsqiM~r^W}U_vRg?u3ClN&WpD!AI7?Z6 zaQ00LT&KVJj@p#lH^2_|@)omFX6Q`Z*036pS{90&wR2~t$18kvMJNrWU6WD+HS zqG%AY%tk;&UJ!$*K*Nh#WeCIs85NXZ(IR4yp$bBP6o?8UDu^Wz4KjxGYTsM$Jy-qF zx7I!1zUS_}?*IS-R{#J4TW=5EX^S{53KGN|_R}KcIZPQPmoV7sG!zHW=47G4W+39d ziPl=Qz+E-oMAKer72;RHKm-X;zF{Cvq8OI>Ynt)NWP+odoi0#D2(Z+O=6oLTjB$#O z!f#oVECBJr`B}jb$b3PPw+AMCo|)w{msz@8l#F#&O0O3C2>!jxLo*Y8DH#4QYfTIA zLJ_^|c zd^^?O$eHiF{ki=@00>X#VqKlouhHHE?v?ihc@Lwc(Ei}JzeivBv4$T2j3t*Jfo1dJ zUM~Dhl1r|{NBL21R5D+@fpNt*<3|!eiSLfqlP~8B0zxXyh7<7j^3{VDyERF+ky+f( zG;D`?Q`@!7sb%{%2?9R|4aQB~wx;{aEZuOgWtMI--kEFtNP?&-NWZL`o4FR7zI{TD7)qrv91#SJ*v#}8 z_g%sny+y?HEfoK{f}VCUqENKCwd2bwk}XTtA#{t@Wjh?;iY- zNrDdM-_vEn@_~9`AezRI#H5zx>23f@hqA!u1`yq}LB0Dn)j1ib7kUhiBw;DIk9-7@ zC3@vB=wuyh>Tj_ry6v2yNEl`LItHiAG(yXE2@8O*flVoFK_hf%z_#;bN`&_qd^Ex- zk7J2&<@$SX&ay}y&#wpZ@S+qs}pu9A9uhIJ+|~f#Eu~%BSv6OJv|`)lsKVnxBvhG zTuv}$mTl0`b+$c!dL$xt!(K|)2PET=-8dAvJLNLs2Ch~9q^w$*Pc55)G~bCGKp`67BiVX_4ay? zb;Ay%c`uydE{AIfd4{5FlvNYDj5~p4Q^yM}k9naDI+O?c)Fz%grTa{tZrFi5@A^5! z$6CvmA9l<($T9C>#|)&&sCcYtIfQYK*lcPC%pwegHu3$yV$5;*UfVId z@DGhhEHXnk8HS=}3>kdi07dCpI`^l(;{?p19-@x9DDnHo9RCqtYtqulI*yWR$?MxJew_XRfQ80rhO3GTS4L=a@d29owB% zKbFAhgdMTpVEp}2?L*N%hQyqB9;L2Bz+@nfYY-Zmeqe%ZB@`C3-BD|hrtu??xEuB; z|6#r;Zk1%~d8|4VC8Hwf#0gBF>y(%LHzSBXmK^Qg5GkSU2o6O*3|p*3Qpn zzZ4Da@7s3w_l=XNo}?R!&Qak6gIH6`1M%yTU~1ZwO$}F{I#b=WK|gMHK>JwXgihG; z^cERkd zCj{SugPZ3Vp<~;&vCks88+Mv;aI_kF7a;?Fii!xP{>pz_kS|OAw#fP5}hCr`GO}XRwgP_8vCrhrl*rhyGKD=+ z7Y&klPJ}4}=tYr2K^pNaCqjUM4RaN-Y86^o+AV{{!TG3ogD+bUe`sVAw>F2ZJWsP*VUGw+D<~q&og65L0;nX029!xShs^-q z&IAk{rMkl?%aH`It$?IEMf+seI01tNEi~Z9aEa?#5E>P?f*N7QrNXRnG+ATni9HZ3 z!w^J>czO<&{CqhVW6a5o_*-#&F(ZYLGRmBi79t0e3gncMJpC;=knGNMs(T@^7&9nX zI69a$4oDl~IIiQmc5BzZehte6s)-|>S_KQCjKCxuHxmKgh>}W1YG0NS{Ug4eXutD9 zSEk`%T)nBE`?u%Y(?bq=n@PJaFa_cL0ivm3IE0*#+`K|ylqEW;ImcT2Q za$5>{Czn%hO)2ptHz~DTY9sIyflCqRpotUIRgZTj2vk|pnWV&Rx)ib)kczB(jUGfK zm?1~ukM0(b0?}FHvf_%n`=pdmXly+8K1k&bMvo-{oJQDBK|@~|zyT&Yl1pnvDO7A~r7Z`13u3!SMK2Nj z?@o*jV<*+G_nm9rZz#^asrD85W z2`6n;HmHDyvTWfO71BT>QaCqvHe~w^Wu=wxh#9L;)iwA^GD;$%leK$3BHRh)i!du2 z(Xl&Qrww`iy>bLtTu0>PN^_C##ESFZITx-0(7k{!*iP%E279M_7_%Ha#jsH0@D=Q1 zoDn;Fp}1i&nkUUJUzH)&qc_bML#%uF(T14$7cj&gwn@!UEh(DX2tihiY*RY0*i|CZ-otDEVf6@AXJ zai}jR6h!b9HUtSVq$~2UP&EUv@*5(fvqie=W2d8IEmL$c9j81X zs1q`B5jJm}NbTO?9Ej6yN2Es^jxnOSd-x5aS^3RRESxdT^{z}-u)TzMw+rz;ADN7q z4UN18nIHjsUdYHkp*7_K4GOKPcUrkh;c|?yQIcT-3{i)6D5&Ldcyg`Iwsb56 zjd`9|kIV?X5`#!(GBSq;q&&wo0$gh~XLXERXdn^6ZcdZR)oQId&DO08rvA#av~f6J zo^Le~xkWO?uu6(jc;gY@BZ%hRM!NPe7}!I-^k^?MM!j?ozgfK~Tj_@aQE@}-5$B@L@~{9?i_xz5UiH6uVSzQ@R0>!+oE}TQTW^} z#}}(`>*K>c6N!TxP<9K%9=+{GrJ;2WzgZv(D(tH;6u|BF5acDp>93sO1kyWS$+wZ` ztPS0i&q$T#Q)E%FL>+*M0V?~M@i0o%3z#MZuPTvM1V)Fe$$Qy2e=1A66cPsAM_Zv3xv2 zHEdNOp>`&d$jKHO_>88E->YpJ99tg2e=Z9<^9DjNn13Uy#dt!~`2t=S8SOQrADYLS zbtEOBm=|Bqcmva-Ol}3=h_Ys477Sue9I-NM&vLK&Sn1upI!9UQox|T7s@QA2RKoXc zRnv~``;B6?hg4l3@z5^POOAWAJ`t2&KqfmCzewU2N&IM%c*l|Ny>p>@D3c!jg2yP6 z?%_K^K6|ZBY6zc`LRm5SpMgqQjT@~|Dkxa~1S&YEBV8wGcg7D{se6aK2C_QjwgzTNe6BQf@5 zs@tE{2WExFzbs)Oz`?0hTH+axj!0^FmucBRzS@l@Yb*j*z-7->y_$qk3aBB=Qc+h1Th?^5;9c<_c!o20A&O*Mxg zIrf=YVlNRuEf|hqDYm;iAwC(lZkWTbb(*ti1U1n<6Jd?kUAIIhp_RvW)NO0s`l|L@ z4L!X}>t|3;upO6X_OMNQT=g-=Ht8OIvu%P%+E?2IVSB0Y*tWvs#Xfl=`$Wp!!F4Dr zhKOoeAP3>ea*m~bwI;~1#}v*>G@6w+dmc8KV6$TQJ`s9~QRYe5Q# z2Fpx3`zIL|$>f|J9dDq;p?<9CA_}1}BAX;@F%J=tEWsigmHo5kZI#7%VjS1ESDqNn z@rrbziRR7aXeC>ehRf~)1A{tFKDpQ4;}WD%2``<)Z`O?O_MirGqiTHjQvLW`b>pVn z#CxqnT|)94)ugPOTos5?&aQgv{k3I{kcsxLt_#&=$MV(#sQ;F6kxSpEP%;f; z(6xshYsKU`Z zy}LyKUZ_>sc^%1vZ8F3H@x{ioO7&JK{SI4s5*Fb*-Des8Ir8)7m^E9rB^SW%1Zh4BK2TS)=c%AaD- zV?4#ZS;Qnt8gd`8tFiiumVpP^YkS!oZO~s&)7w|I*2Y+I?~cA`YBX8_PpSsk0;y$t zU!jI%(})JQY zk|t)mtvv40FUtt_IZrCNC<>o;6lst_9o26C9=7ap>**M_>>mC;w%p%fLk-^ZV$k~5 z0})BBJuV^hg#KxJQP@NOeh%t!bL$um>K=Xr2ca##m%M|3Jpcdz0Df}G*GEe;M8zp> zEERQ^Mo}}0f3KqKz9x2*qU;?09)8+ifmA^^hO-_h2=`dItfi0=cM!!Z(X)IPv9NN6 zp#ia#7=?(6t&3olD}t{KUH^}E5Nny&@vA#G{TyqV%zoIS^V*hStmo9XtjFcYV}wfg z@Ee4Rsx;qDq^t;&m;_wh`&x;SrudM*p5US0LrNoY&FLL!q?WZi+o*B-?){=ft6*4z z40)q0AhJo}3Xf~P#ZwkcOsYCri+>t(tX#9&tBK?FOlHwb$G&P}Ofr$To}|L7sITyA z`w?KW$*eGutu8O|Ty4W8qCn-*wirWyj05g_wS12&tw(iw>KuNP-%;P+x0iap0pCl4 z@^ed27T3Q&=L6>9&_7Ls-QMcqehGb1CZFcpr&2d>D-{VdscNXZXI=AUKtS5Cs8L!l z%UhsPU8#FH3t5J>SQd5gb(`+Oa?S!Y-4%>nXJfZ!r}FASaU3d);IOXQdW6e!S8R5~ zg*f&QK^584NSOSsRB@4OEVHZe0y(U(0czD3P z`$x)dAABwH{pauRfUl~N9cBa;aYL8;fnzb(@fjuyhDONkK%Pe7^A!d^MK?U|TY}dK z_qYcKMlVD+I-Ly)W@ z>-#|tMBb?^{Y^P5b)TVDn`-=})(_$w1eCF8=Cc{Qk?iOUPgOt5%mtN-3Bt>C9HAuc z9V7(t#EuMHDW8DO+9ujH zFl~Kf<%X!($jh$YqC7*ic#1h%GGUbEg}~QJEe9T1iNnA{ykVM0;;gHst_8_tspb}^ zQiIxgAFW~?LB+#u&Q@cRVExsxyr||&fdzL_J=1mM=v+1DRM*6|`)+zcf1)>tM|bN*k3nh)yx;B~L^NEt3Va2vV5B z;MbytHi~)v`fQ0>I*!isjGk83PG0|cB8ZLY4YRXTc&_Kebg@v6pNbizZ1~&B3HmgJ zXjye~g5L)zyTyNz-si9WA89<3sQ>^1Vf)!0J1RG_v(9q)fo@N>H Cpm;xIGxP>j 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

^Kc_#nLL*f~$a-=MlBKj*Xori`& zb0ietdE%0v{hlAr&+>XWhR`*YbHL9MF&w8q3}zTy+mI5deGo?iyBib%hI66hsdBds zN$MHGFt_7m5f!_XWVm#o!NgdTz*VMeiLP1{Ar2NbiW#GIrFrmxWng)a z0Nygqy*$v>!{gpcgoKYiR{Rx+m{}OcO}DRsX)uvgv@n3IXejzeCwNy_PFw{8RGFWX znu>cjG~b-ou8IOaYE3aBfDHF5nYab%9W#5_C)*8F4aQw7)TD^gQO^mr4rb zvp9+^U%YSA?lM)7_khMR5S9E?J=#u=4bl=HgHKEYscQ>dS^H{Cn<2ARq%1i(a;=c@ zc${M0K3^1RGE0WC5cm=IpQ2~y@v>C{{IoMO+^y@&;{F7Og}fjAyTa#xwj!N3^ic{1 z5m^JXjDs_i%$`6^EaL9rf)w!$ypF#+<;YGy^SGQQBD-_Of;bD|sSIX|Th77lf+%&LR?bt9T`;KtgmwT>B z*m=nh$Q94-RJf%x)K_6IY7Bs0hAtJMVVV1!DOF4%A2$dFSlBg&N)g6o-x4{?I}K67 z;}5m4AV18Ds8ZuZ*z(4LwWV)$)L4hy145)?!bgCxyM)*D*fE_Gu% z;_9AHfZn)2z@@x1pj8}?hORsj29R+))Tk^%*T5qsmv|61 za!ERb93utq?2Afa+*dIQ#qAwIHjr^J=wi@9kY%5FYp2Rz&vR>0n&l4iYA%g+QRs;I zHSMhb7+TncjJZfLxImRiCFeH6t)^t zG{jIgDJ4qMCyI7O-`DGVU!PxO_#h@vQ=OHO+i^$s!ZC98%mT|D->kGh!8VECU%7}= zSf!Y3H^eAmFHKt(5Aytk0{#GxVPU3{8+H)_&HlGho4C~B)b2DbZg$|DH!6DoC;IT* z0F7I?nUV&&GAz`NL8+s2lub=R{qB$c-FjT!ZCa44Ixb%-ExYV`1t3Z1Ij%=ZU=P?) zg8cu2OOA6c^T?G7iWLvf#122^*yUV}YA#A%3FF5^qqC0f6 zQBfliL=ifTMO3mxl~e+~EsmK*8@ai&wgqS1wr|sBCx&0l$NQVcuiAUqp^u`DOc#cmEC;QZh&x z5vE#{Wl1XR1?_?{CUa$346zp54HH*B=dgzqw}-Gdt;BFrz>9k(XrYWDA*U#anNAcL z#tfyBmf%MZy!2=e6xp;#)} zqLJ1CMq?H=uX!_JW!+ISZFJ4g{+;m1e8v(SCTDM3ZN|C{6fC@3Y%gh+O%~Cfc|jG& zCkFizS2~O{rHthS*{y2rb^F)TLv`i0|FM4b#z)qLoweqwvq^!70WPqU4iI(mDngE6 zesNhdV@%!ZqU*n@Ik%S2+0r>T4ojNNbxZF;4M%1(gQcO1QI0gFG8Qj9lFJMV41^jV zl^frp)+?ZG_!87GTX>ZbQOZ*qQi=LxG(>^fE?wgcQLP*xN^jv!^Z^5U;<| zY#K5!mp_(Xhn6DCkj?`o$REd;?$Nl$aGl!8-E`n-!TB?Ihqx)AUudrrR*qPu>5h0~ z7RESrLKaRNj`9c%;A>G|lBP5t2lemxEF956Ws;B?e1!*{F5I$&N6)1xmwN+Rf784W zAvSTa5CCZ!W++PgC`H#QGnNJ#IO(jYQVTOU4k7!OHlc@O@^C>Qhr_ts^UYk&xIqPJ z)8aN5_x=ksFjvtK(M&8Jvd9>UAYD_c$eIn?6=67nr%Xmb!q-o(5}vO}NXFqVM?u`q zZ#fiXU_ZM+y0hf2BN}3&W0XUVgAgG{9}bcBm1xx>55XsPsgs(^(^Qk)*0%I^7O^gX zMdbIeA`a+<^}Woo#7M)Dnd?of{af|d^ajIA@GIUo2~e2CzEFn04F zSkh4l>Bh@i4rOz|+dZT~9l;zZU(7(4=O4Zi8gfAx^Tf)HI@KY=xMo&P{h$#Rp383+ z2n9F0${bX3-WHz~EU?+ek-OCjn7IvSzG(~q6(8Qsg?wKJU;5;|IqO3s@Vi}3YTnWm zlg!82AUIaUH8QqwL>Q6Wu-dR=My(1~d4q@qv*=SIoGa3UuzM{5#MZ=NiQ(Y4T!_N``vDJPYo49w)|hQG zU*yg1;FEiXC0E@iDN|!#1>++sCG1yh}8Y7ESns`O}yj0>G>QN$CfP;&1@ zPuUyOL;kjHL>vc#AAQpNOQ=qk{RzA8`B0S|Y@@U7Vp8v=W_`I~J-V%cNjE!X#YrY8 zF$Hs1XF}CVIl!2z0fA^6#jATTxk0`{#;-{*^9Z8;BsthdkPqEv3=G_V%c`l+A%+lSFN-7VNvK-2a7XEt{HYGC>idMyvB@V%eU-8IOcb}NSJ$kA5Q z_|(TDQf2Yj02OAsAQr}C5zKVtCIW67#In$X*xhiK*L_*O+yFQ%nYKrpz3%hDjq3z{ z+^N;%jDowoztqsN@%dp&XEwMfFzA+*u!p!G*;;pq1fVK4#7?XT_(Ks4|32LTJ z+k)=QY|i=X&unxwTG#&86&J+_m)rFlaoS~YGbnec3Nj@o1#zw;Kv1RNwa{@yyg)ql z%tR~7I`h3fVHMxn1yQK?4R(LsI+#~7>+z!34=M2lwE;(6X6iLR!6^FCzel(8InZ8A zSXVGJ?7esBQ5koR*^1r8T-sgW|bCRaD_yajckocgw;F- zrW#ze4B^{&RrYEX`qiC2-`;|ckKvH8wt~s>IJF6Fq5A{MntsPqXP^kJNER~wh_%+h z{vGWHFDu;?bBdQnFNVG_S68fMT`S6AO6XlHnn7X6@tfic#M8}UY>{lB-P?(^HBz@k z_hBfn%$a!YRdAD_VSZX*hQb47%I7vT8m| z8Wo`N)?hTDWc|XZaT+#g9a8M&L}m^cUDQ55FshgNo+v*4p1;D4ntobavgW6-6}vGw(mEWi&m=ePwkC+#|NIK80GA)x||o!T(`#od8_m?Bx=Lxn;9%*e_Sl}iRa!xv{o=r-4Kg2E_(OP9I>5)ALT3Xyy-SHyPJ) zQ#eAQsiJ6loae)ae-TGj_7*@X?d)d^1f&CrnMM^UTFQh$d`G!im)rSwy%+qgAvkLH z%plLc!{C zd2?(qvP>odr0oa0GuQJmYcK5?jzY0^7*6o}fy%(06(z~C!j-{e$i;XT6Udt+e z4FBd?F2UX?f6dy7e_zEoD2{o)(rpKPh4wy`PI{a4D2jv)OI{egAP`Bda-?9twh_F+ zdIB=kG)1u`9lHOAxmhC%^mS z40Nan7A2*O{qfv@Q0{rDTit>Pi}8{XvM57})f-Xu)se1$5_UHGCODu>#alBdjk_X? zkhLg{dyty45Mj(}d&rVQA6Q}((@iY?Z2frtAf7K4{0Gg-a^+j>8IzYb6>89-f?uTy zH4(;EWjhAfGb?ZLOb;c!224>%W&05!U(j1Fv zZa2mnnxh;O4&yM%oC8qwoKLce(PO-EJL*y8E)L5Xj)pK;rsG*@@t z+pdsLl^A?~&4>m2{krZfgPNAQX$O)^PF$ZV#=&(xCwzIgD&(HXDL~$^JwlMhp;a!2 z!qgp!0GnXSb1d<>Y%1;W$^+CH5BI3FpUN%rIh+6fQ)9LmK^23AGO?PZG?j(^&z41} z4_dj>)9^8$_LmWUlv+W3J_=E9s5I8CA$QOo$)JHIrC{B?YJE2$Ja)zz8T?wcL7$rJ zyfDw9o{Jnm?&fgzPVp~k4TG(@5?D!ndbNZF18J8xQOErm6`Y7S@jn+WMXd!t2mAtw z3uzk);w;vLArYnw%wP+pOm12~-q=A=t4c~~X1`yF1Go=|-l#dx(}< zVW?Op#`r0dkNpSuwJFqJ+EX2JI>e*~a=ipQXZ3qrxo+?mxDJcD3jE`_{;_>dcPDU- zFalFQ8@?a?{{i@Yf^@&7WbJD21l*KSOpd3{50Xk4eXf&$s%pOcj(F7kyuZs#rT=am zv3b>gzAeEQG98y+Qj7a@bseCrClPm!;lyZxR((_q zcIp9HvkGLHJQc0tUiZc{Be5*g2?*|$ihu;@mCwxYjlDbZ8eX1L5K*r-LiKMjV-ALsCvL0gkXx2H zh8f%?)fNEJJc+V1XSdcb2fy1?Ka-=4lxUTy2&^=QMR`G+KYON+ihvj)&##ZyM%s>f zyuwkow;M9kE}ebBEfdjCY1SEho+aVjO8f96nlm7?0|QzFr3%QcwVAc~b^=q@{zAfv`td$hofM(zeV?8v!y{@ z|DZG;zCk46r5cg%pBN(>BN5}U${W*8Cx$Am>h`0)x%B6UWdZZoQB|SXY@3Z@IZL7*^_@2&PzVo}R2ro=3j+2k$-C1>oAi54%dI z^G-e2R~c*S(eL{wE}^tn`r#tI`3y&SmxtOr&esnJ5-*1fB(# z8>yFbc?dz4Tr43@?;el>wzhp4ht+QejfwQ_L%{TO?sZ#XW)W7)_fcc>>eg+jP|u#4 z7DsxaL6$-eVPvn6Bp$r~@|^oP^mr{fP{fRiIkFU)|H8|geq_hT(X>Iz=-qjZ#hWZr zXRhgu@}n><@!BD$9hXANpsJkLOWU8?-YU|hdz&N!wFQpe`Qid_r?{#{w^&yke z+x-*T<~I$w*Sk%z{ZSPI@q`@bHk!h?=-5)+m&5sO?!m#!`qFpcjAhS}bJ zyzUZ+Cnuw;!e%Jdv>xzT+ikxY?a@wnDuya-UEB1-P-&XodJ$#S5F^Nna%Hq|geH

)1hO`XwSu`iF^|XLYtsH5ls+f6jzLbB* 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%0A)C4~wqlp%eA; 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 z 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�Y2J| zsdkkbpv}|JXa6lDt2p0$M2);r5JmXY(B7KACwVjL+Ql^>dp4R&ccvc1CDhKX^@~b- z@?o#K=zi)C>W&0~$D(*IBNrsDKNRV4f}hSI+>&Da+76!aj$}%8bjctYQI%c0-h4Og zH$-t_<3~4Z+y;%4GC;LJ8xDmBa*JG@W{M4Z*BA7%z>27yK-b(hV8qs+*Ew%ZdWQz} zvZbm>Ii&+VD%buuyeqAKhix7ha{og85M^laHDV|ou($X40f(M+keAKH=a6~S zol^8GAYY^qN~)#iJ0&@FQEHZaCWSTDCus)#$uVb6X+Tp00r$Sw^3)h~57+FrtJ?Ju zO@f*dfk9&dKQN0%jUHlE)S|B+K6F*s5*uZ^-@2e*eeOsDof4lZiY=jdJ9BZ#yGTmJ`R?7oja|U3K`q73) z#Q?#_ioWjtnCj7JRv1XTOG;=a&YPLecXOZpx7QL~+%&^;_Ls z(cOw9CQ(CmUC>_;Ud3of+tlL7&mZ#){kQrNJk=LdK1lnYPo}x32|W1=u`d?(>mBw z=;Az$84+tfl?C#{zHyEFLC@fJwwsK|cu!B9PI42JQ-C4>S6GYSwxTH|NX3etC$+w}KZ<XL>i%yjk1eog- z9vKnZ+Zt9#W%RP6>839K!fW+?<^baNt*P;f7U$gCuOWonU}QWrtoUVfqP7idA#nV%Z{(L_Q~tp&ln~taEjj@UW5Z%-SX#pv+%Lmu^o$u| zcUZ#<=T^`GO*ZyQxI9{4|9B=BVA#W7p=eR*rOuL|gD`|rUkh81Hp<-`lC`nwtg@W) z?5^7v-{#2w;&nD=7w~ajNwKZBa|`{o?`-gN;mh6eUFZA4$)-=2Y22R?d9Wfn4&T$< zmb|x4v;N|DdX6dvzRt34Gn-X3zJX4Ad8GV^954;NwwBf1Na@sS;6zay8FcCog3qjdzOzGi>u;lz|Artqx0U<>Kce24aV!38ZBPc7@|qh@EW8x+torP=F``oY{?dIAZ<LZma=)?$2=+~Z_}H$ z(dyI*nKqT2^we`eVu_oi=c4w!bS-&gs%6LIN^@(U_`Lk9&C+JREL%zI)$!Xpyy+om zJC7FF6E!!aONBPPnZ-;XZ2!B2Yu++$BagM}wf4j=_}oH4^d8u`^uC9VHsh#-Z+3BW z(h`pvpHgMqzG}f`J#lOq{ z#}O_Ofbc{4L;0cn3H|qZ`;PPwOo`Cf8(knJn$y^>SeR&AXc&E&DDXR2Aa5a^?;t@l zv*MPPmb^SdYHDi%ftmjmNm-}M)Djg0D&+-X31 zFAPId1=X;eoo>nnRqfSN`w!y}rIrwq4q$BQ^KqHk9ifmU5CueZ%I&>I0^#KJ)b05J zX6oy17yp|6`+YCWKx@jpchJxGdw%%2_uxN-zt7XtuyOd_e}unje$W#V7&@m~iaDl9 zG$U8fxBhMNUK6d<@#T_|Tz)^kR~fmwkF$rn<#~EIG)MSl{J8O{B=WX}qYS%%ti0Xnjbx%<&v==B)pO^~NzbeKEKzqqh(AlRfU>U6?BpY9P2LYN zSy8>TyGuX4FZV1NIcx%GMs|C0BUQQjj{6;Wr&^74%^TseVr9l$>=%b~%oJMty9X;R zS3IxRFI9ix;MiS!v<>h=nelYa@59f*;kgMv)-sr_X%R(`ZY*oZdWEBlhPK1ORT|w7 zJQ*kBZMm-O_7*}pYoSq@?H>GWJ@CJwUUfwU z`4Gw22qUm==^x}6CP)kYh0wNLSt<`-nuSq2LOOs#dps|$IadF&DE!xcqgArL*%{NU zSyrCkrSy0JHW?W@2UecSz;D|3p8yy}wIfoBSi1f0?3t<$Y=eLbsRAMSp*NP6DpY1U zOn5_4_1!r5;NL%egSap#BbhtGPlrciGy=Mb$iYGT#=|HE{jJ@oFABPj(W@9JE65<5 zQ>i^*5;-QF89BQ(Mm5U<@ztRZAIfqT*dfI2oA3}#(@PvbN2bl_ zWPP`RJzOt9#y4}!NhK&{CjKtRzAtk$%G>0ls<5nN7_mCh-zCXrEG)a0MFOt?>CLwQ zwaFf6DFY6o(@&)yUkjwGP@<_bJ0XG42fA{7Jx$f*+;3aVd^v-`e`g&Y9UKfyo?bY& zat3#4{!k|&@b6K;6v$@&wu}w()M(;46Li}#Y=bBgw~4}o{>IsE%+vF|Qg zOzZvxE1)eQA0J#KiPwaK=*$jIGEhxx)d1>mgKwPfkxvqs=t*`_e2(v_Vkzy@ZA9$A z4`*h7{yGchWGA91?n|c|4nB(zEr!jpVcgB8>9PNp`!oL+@tFsQlb?@lPw@YxCWg$P zLvrhi4hFZP4o?8iJV4xpG5!g_xH)On6$WO4D~B$Y5c7F!i{YXBlAuq|;234Q&^uzE zNP4=c(Z-yvGP|L{d}{xcIT}d2>S3{=W^jbcsUf8jL6OF1m1xJurQE6Xe%9%fx@toA zrE6rGpuYH?c6+Y#G$Xb9+lKF($9**S5NfxHnQl_M(QvA&M*Q9GrQ>s@nYZ+ND)*ah z0!;a-@uZ7uXWaXJHi`QA>ZaQ0laJkH%ynPNp^BNhjqO>roP3)1W!8tinofGOxBnbt z-c82Wuxm#_{@46q_bGErL0o8gdWVcb3p?Xu54Gs&vpoMaUoVOwO^su1;HH#AKqgJx z_IlMTuk73cx0%rXFg{|pCvWbn`sX#rd(ZX$_!NBiyUCZI()8E8SFNV~?d1V9t*$-! zDSZcz-*;JIH`>MFZ2~_pJ?Z4w>yP1so$o~Dcg`n$u|Ht+3CyE%QSx^$=MXYukT5a(zo|kKR(LZ_xp$Rak<-9$zqrOW%t$9BhcmTR?d`=cjLc+EMSd~;kk5#>$N@zJXeTMBPQLdkdXx@Whq z_dNfOZR3hBsWD=^ho610>S%5icgm-hWusW1C3xfDea!Dt&g#~LcPc3&QKRohp@II5u7aJd*#=rUR zZ!W4sx3|B2Z!z8QeHOI%ys!&wv2@-GKS}e_Ymq9ZX8)p{9xUEG+}T z2Cr3k>1BEVk8cAA;!TFD5l-8*WIzI3>5XU1VhN4MpOFLcbmC)O4qe82OuVoq!np5G z-aAz~GJrX?=k@8phFc0G{}NKK(83;p)=OmQV)?A^s^wG`^BlO{e{^4V5hDT1di_a@ zR+iAJp(kfsCya6qr5H(67B#v>VL+qdeE{W?uJ3k!NHH`f%9oDO3zuxJuJx@F7DUgliOjntjdYGw6t}HKUh=9RoPDWLYRwMC(M&wi=t3h1cE-Y;+@d z1QjANb6lr5zjJuc1iME}Uyd6ZnUi8WHwksl2}(7H+ybiich^24cPZFP3*3fbnL(mQOw#z%f&hhf*o7Ze_|o zvHoD6JlEtX4^){R?gmO|I5WMv$`OhJh0etTooAzC%6M8mv zM!U1v44a0!v~yo_RKlANE3$U2iuUhSswcBMdu5&TRfq^$Wbe8p0PaS;TOm<~j)ao6 z<4;d^vwIDi@c{s~caw$^PWQK&X0I@E0=qPBW5_Gk&@p80Bg(74t7PDB&y{_fHPukf zgP}q6(cYa~A6y~u=9`n%7WEG9RnW}30H}odFx6TNc+It&HPQZ|R_OBY2(M<^_zcRm za#vVklF$a~HL!24CV{lN7`Sr*G56x6Vcke<513BlUCt4*kZJJvQ-iKsNf;|tWpcL? z@7{+J-GVwAaeo;(=Q_F{?Htd;jK|@DmGw7>#>R1l*POS6YZf??@A`j?1xEP zS$lGeOaS|9vm3p%Q{bQ&#H;I` zIdeKG1h`Ofw4qSbNg!*S-b@~0FX`1%wJBGL!K|0Xv5XQa%WyA=V_l$n=H3W4);p(9 z)G|#72hQzz4_ZNtDZakz3p?7(9o}yx$mWJ|3;C@NE>T^cO#wxS(T`y}zA*f_4_&mJ z&0{KbqiSw`wJNVNQ(Zt(=7|Ow{WRofQCo4FD<0XQ0r}||o#(*M@&X9HkL9MlRBPv` z$DXO{l>W*V)zd&qj9!AsfzG4dU&Au}-a!mkzx5z?*}Z(Vi1c``=~rS)(|Ss+ zcYuA?a=jJsl=0CJZ`or(JQY)|Z?a&>)*NBf%&J+Zo&ID$fo_8=x?dKvk~AWt)ZRtlUyD5}{Ua^T9DdBThG6uOLf#qcg~>GImJHdwm8M~{+v)TdSr;l5 z4%>QfDb64>C_n50X?xvKOW&XuSZVRi@hp4lcI3?KyS`Q78F?-APV6jgnkw(!u7I$Eok(H>@>nF9KAC-+iq+6;x4Fay&!JeK& zjpSaWdgTGx%6ZgkqGTI2v@yy|hl)#Y?fC76@Qf62YhWuxAV#V>4cD!D$Qf~QUv|l^ zAbD276dp?1HYj;ZbRXsQwZG#;?e@jh2=;0pRz&BS2W!uZl88qjb?WJaHI(U4@4bOtOp#7Ro(lfBWhb+-QVFsrFoasz3!_QKWfsi;JeYrx1~SBK?!~!(ApXMYL6E^ zZh=RFn>9(XUyr21yl01SpI+uxnFSD`BzxSG5q!@5*ds&yqq3!8v8dAv1dsct<4bT_ z6=UtB#$ULGOQiFaP}Fk6Oln!-+>togt~0*_nbMsgn7{#s^VaxR7~;MKBwaLj+l#FYLc_5wh<(PBEJLgXb0+pu*ElRrL@4v>)eUAtj;2uwJ(7+TSVPP^F7zAr-guXe6|sg0+{2a##~ zwlMouVX})Yc3bbouuV&Vco?WvBeU1^*6MT4JEr9YM{Q$LbI{FoB$;|KrleO;G(sQl z_y7oc$dK+mXUN-WT@lLJV)X~nA9gXu;WR+B=Hfwc{q{sl6sYrG-niUYub<*T^5L7wjepQ8-hDEg+DMj-ot~c=dQgq6mwDu+P z4#RSbFo=Ho(Z0lBRIL~k$5{S*rjoi7HY-Z_2Awn!$@uB=4{Sn)*y?dQHK;Zs^f!F~}e_s6mJ0h$CP(T2Ze%g*fKHRfhl)YFMJa9f`g-uCJ zvmZ+v7J{Q~&3N`p_ZeR>Eu$GNmWhio<06^x99EJ=jBJRpP*U@F%zm1hJO>NcFy)8~ z%)raRlT;His|Vdm_@A>bou)oFocND7oTfkblZ5YXXM`~G2_WVIc{fL>a+LCnsFfPw z8$TN>h*(4K8OB;00Kx~2(4s_(l+e-DGcz(UU_!IAvvYFrkRlcq z7FbwWW#!~t-Q2!8DlxEtCMU5=i~${yDa!RubokTgnof(=ro~Fzh4*dUBC&9+f?DpIFU+EEF}#Zy)?yeT9a;Gn2N~!#)DFEx}osct4{b=GUnNA6o3Q* za4i7<&?NaI#qe4?t+zC8-%~4?nz66m0t0MET&CM}tecTpX2+~=`L6ZO8wp2HNv=Bh z`M~#tQD`EO&M%Oqx6cnDiQ;8F19JdOe>uN4H!pv;y@AF=Nd{JZecivi+0UN5Jp6o} zQ=(J=A_zbc1^@tLsC!mOst3oyHr}v!!^B9JN@@e9P&%WT$ev>f3nq7rVWMfM8O*79 z-EZ(u8q-!G=V;{b0C%x(8 ztoz~PED&vLXvlCR5D*|qgQI=cZLIrut5Kr*_4)bnbLj^^zt*oC zyaeRvDrUCHeImIM8cyEN!)js{EcC&P#naQx&CStlr$jUMlI8AfU&fknkCr!gorWBq zgb*BE9`1Tz-*l4s4{uluBvHlJhE8=xNI$YNgOLrdiZA9k`)P6edCR=w!Q01AnV9&W z`r0_C$07=RU)mv>aaD(}=X3qI{#i>{lQFV0?}4L1j!7-}FDAqJR;d~KT8y|=ll-0G z6mt=-_UXM$hgr{y!S&zaMnXRt7rrf!(tv0_9bZ?cr+Voqxj{t09bXRB1Dl~otgo_` zsTI}2s-?$yeLYEzuh_oK>HVzVz=g=cD}*T(C;s7}PySu4lD`<>fI3Si_Jl$SYQHxrT|Cf^AkK=8o+-d5 zn6wy!bWor>f|dT%aT4VCm2_=N3s3IkE2G5$N6PETp4C*6#vlD-Wy6bdqBG9CtMe3b z4Mh`1eV#i(*_JUj-uR+Q#<~WDzW62{7%EFG!PdfovKx!^p|dqPG6Mj1U>bLIAbnFk z(+K~wdUNyoD0Yf!gMtA7`k@MeR~T=E$P%ucp%AI7UE)1UMlq%-70Crip=pJFU}!Jc zDmB;~>0gizK*YWh%r1_OMi`E+T-rm@Tk_bgT|sf0It+i{LQU8)GYPWIEG8kUt?GUY zs;X2msP>RD_h|C83VM*S5r4g3J4EzfclV#v-;UaNG6Uh6`0uIPf@uB0TLZ-*_fbH=K?KK3 zl&0a=j>%|_TKjx~w*ex*z@)~{FCt=gF|`q{^kwg#UfmnqCccH3w}luZ)eRqARtX9e z>(i!`6w&DVH+WX_h1NRL8Yc3WgPH_D76v!q$c>N8xtCp?GhaFDYXw}0wC@O4U)Yp| z%MprbYDG<3;1~Yy8RnJe-nFI;9&j%@n48qV za_5mgPbHWq>kSOs`c>w3RXacN?}DaQxcYVRslv~tr4-60%pRHe(*jpT->|>m^P!Kh zx65#Yi|eWN9*0EAForQt*AoNf+o3csE}5%8vG8z_9Au-Hu|P-9<Em9mbJPd1 z^2m{}5~YJHCPldnn=afC>v`)6zQgO0Sw3Kfp#Fa6uHW{4!vQ21DIqd8%oLA^%;78= zo{hka__lM7-@m`kk_zr9zWE|dX+mni6Mx9h#3agJGkU>V>etM@`didzU>9=uR$xz& zVmIjA0?k9n_~?b|LEuThoulm*+`-!ld#GTrj=uaYJcL4CECGh7s1+UT1_TZ8P-u>U z2!>yY#zAc&uQZXe5aCP!=&ZQVS$mm^J~bq1Xnt>5iqFy)MAA9qk8{Sx?>&}?WyH4^ z_|!ogtv|VCM!PuIXOB;Zx5NjU`oBf^N8kf=07tiu?`OMLX~#v; zrX$rwJ)M$D%jn#1jnQZD_34&rE#X|+Dy3}ly`ZCe;CiNg41|xN$zMBc9Kc?9yJmO2A{}=JIIYwB zVMmL1CR*+(hqXvagQG;e&ZT4^jD{Bmkn?(C^tu=-LfVxRsxw)>Hi}98co#u@IPBp? z*LM!c5)W-KKz;PwQn=Or!bGu;^w4nEbEj}{Gnn0$yC-{HQMM4iEm<}JdLo`o7iJ`m zy%zZ+mH2!Z1#Jjx=C8j}1j8s^^jPw)Ylz zs6Wyse9TTZe?hdc@@%V0L?(%96|2{M>B`2OLF_5PjzDzB5>OPP7v){c5RQ)brbixR z!XfBds7+UdZB94UHW$Md4W>=ih~es4F(N)>EN|kzr5cAGDC5DTW2-FN4pQ z_mXG7b}{g|XgV$JdQMXiI~!lb)b>Fh4Dt8ybR+Sykq{cbhmc>o`(Z@W&kfj;!;pQ~ zk`uZObh2x_2z7~@M0nAeomt$m4c8tr99%QWQp-VYlccfd@9_wpS3N|&_{W3rlDD4c zBC&ujDXBgp(B^AhT3jj*{j#@j2(|e^<^@rjA?mAiwN8%gX$+pPo z!1Zh-q;9&U@Ml}qd9I7D^MKb{zLsY_UVsG2;Tl*?E$+k;h+OldNnmAISZkw`!J^cXs@repZ|MM+5hAb9i@U$Ny;~xhOVR zjiI7>xj$Qr`Yqlm65+cR=3RQ=@yDCut@K8s5F#qAni4q&jp^Y}8x6YX?@*3mZW(yk zd?ufdmLV1>_k*?#a>T=~2jB?CZ z`YV~Q)B+7Pwxl6ThijnRF+dd$exZLsg8+*cL`XZFz?6c3C-{PUl+WoiyO@f;t26s8 z(ryW+t(I%d&AF&xI2+X>=vg&{^u|DY za@xo#?^8gQZ_6W3LF2ho*#YS~txy(L>j}GESs%sLHHjo;gBq69*|=8UhUxFf9`vyC zvZjNp+iv9)$?N>NO6GYr*Au`6tjP;k1VSl<_uT4ICLbeJGUUarU+R=>asymb{dLu) zZ;ZTMfkdtMicD+hRIYzARmVps_)E_KjZ?PaZ?QcaplD76`a#`r(%k>EF6qZuoXF*` z{?^scs{{>EVR_^^*Y0iY6O9zW>$(qwKFWQN8+1&{ zJ!Y3kJe!OoKcJYL0%WFh`(JHo-Y`tyc=Okz&k`gO=EYufZ~Vl++pdcBBw;lY3^<;P zc0E~p?VUrfEp9p)N03HvV8B_=K;d+&yf6_E;1@qoP_bZ-uDU{Ob`R6eV!0bx6@#L= z5V*zu>7J2~KY+nQD(V^8`QugDVk|2U8&Y9C8L%!X9C9*`^Fj;nj-! zF9=LG1@5|bQ*`YBSF}q7or^_p@$@L+t6&<(7AT&H|H0ck1$ov)--2b^wr#UZUAAr8 zcGa(JtGjI5wr#7+Hg0|YhB2t|AKb4s?Hf*=fgoI)l;Q zKWd0SzHXC{#`ZN4?4>~IF6hJwj5_p_LHH(YY$}UKe~Tf!+5Qv@_yv_-}DqfT4Z{j!Fd{$N3l-;&3AjPfG~LWtwM&zlG0s2vYv|8%|M#f@dE zJ(7yyV3Q!RqmjUhWmq5c9$S`7!@oH_Hc51B=PCUKO9rHCv40>S78M#3EtLjDLu%hk zVM%l_X}Y(17k7S;osXj#o=`u>crNgbNDXnIw+Oa5rqT zWNw!In6p-~GD^59@uD{36pB7H=j!Y6uL7N& z2k0ceJ8E9Hnv*hF_F7J*bzbB+f3(%tLRg#dnJomT=rZXjKX81oU zgX0gXEx0T_mguJ>4N8I1yuLTfg<&G%L5Atu_JpO2EW3YG70H-Po^mT3$nf%<^o`%T z$Rc%3Vi~T6rO0j9z8l&U#{3{}5&9?fD!hYe;|!6Re+%pU7A%OjLPT1iz)c>@JB zMRm@JZJKA#jC@fKnS|87<`u4)jV@EE-UHMmH zAdWQ6<8P(D#AUat$C9l|%XZ~l$~LFTT!MU6z*HX#T%=00$VwoT8v9n0(05{~WDawN zdaqfX%2JaqW>wf6pvLZ8nDtTHme0d@LwIr{VXnhWt<_t7Zv4<4A#*&D^1@>a!r`Rs zTAn;U*u9kn;F4)PveXYLdyI@M48)yE6x6z?t)k9bdl~mkfBu%h17*XRm-$5ZWr zB=B@zU((G8WhnC^>VWtGLQx!-`1`j*I%~E;R)I7RQ)%VfoY$;hk_0KwSNg#q#293f>K?tp@9s-V$f!RsHlcxvm%qe|N4U1dMTfo`4}ZX z1AK0I$1^Vh%I)FBHfM>)GT8Uq)ZTI$TMcpxPXn=iYa?f%nqK)lh|L0IA^3#7y1G6L z!oO{Epyd<%Q^ai}0{PV#-xP0SsqDYy z3dsg?Yyl9DwpQ`WCQ=v9SnyiOe~D>U86E5kz=v8rs(O)#T7{9hWf~l$kjr zSggmI1+Z)0;iuisZ;Uh)c%>^cS)p#tKw`Z<(aWG$*|y4r-#J*=npajO=aSa|+Y+rjZ~ZLdFtQ?=XUQ}v)dbu#b$H|&PJpNbS7s=mrL25&_NU$>Nz73$nk@t@LT3Hx~D zJsrKZroRb|_;T&ex*R3bH+r7=;&i5Sb>t>i&Dw~e(S{E8HB$qkelT-dl~TPA5rmMl zfj~M*^7Jklt1Ie>g5m(YJ2Te=`v<@9im`{CJ2a{FpA%BvpIZ_dN&=Bewx7}{_tB=$ z=msx&Z7;WZb)AZ0mofW35Pus##_(LMEn_Nl9Xul{UoQ_25C2LHE!0z^qhGMzFmz@8 zs^g9|X9o$x93BdS6ju(QC%&YcG-dmtvP|LfFfDQ`w#NLX(cE-bo;w4?7w-Wu?9b?n zD68sZE>jed%d9nersI?8*raULMg2G*mPZbGOVeF%4Sn~iDJ~0MO;c-EH-6^=)6KXa z5a!z5t?!Osk7L<|V+3gJ8Re9}}T1 zuh_hDk9=khwY$lZ{VO)PVuM1@_PxWVCJP#ro|!+i!H8%;wYA;yU@X4YoCotw#)xpv z(TA@Gx-$aS(Pz&lEHccV%(!DWtbc{PZqmW-D{t6RMNroz%Q;m6;?m%0SFjxPUU?;f zxkb?v5uK8-AlK53GpK5_MkrsQu7xF@#f#%Wl0)hAW^4$; zqX7?@Ng`WlXTr$Juu-Pos`p<wvUN)IvJXa}C#RPeO;k+NI8i0of1`+6c)k z5D%zA6@4HCb!#S{6_(R<%F;py+tW}be36o|B z@#g+ai4a4~rQZ+ny=l_QQU)8vIp|ITQN~A%7?l%K-CtTerZ8wX@1}q0vti(9l2E== z*}BO&)nLK+E$Sr7fc65gtmOanY2wnC(*~QaAXyg(wlJUH9m+cejr;>f@F{KANF`ZU zS~kpIM=NS57beTWWMxv!D#7CP2?A1c+lfqm%}$%osr5!e4?zSnSoZ2orl^eWQEuds zqyJdeb^YW3H88Cu_!vzVSL_xhXJpNwnA)X_yQhF@k%BoOj~j<+L+`lKu^XY6Al+K*}NlDNSdl~A5MIx0TLSVd1I}W76#!TL3f5ZA; zx(})cEU~g*wyF%rIqm%NUD>J{b7GvW5d}X*ldP7zg~2pqE+#3hY+Tlf+pLA-E0b)2 z3IDK$h#2SuRlZ#3&oV%aPS)HYkHdt+(onKQGBg@IQQAedMC0|zE;#e}*w5*;7QE`w zSkky8?3>%T;T9zRQ>!HIoidt{@OR7YQoIA!m#w@Aqh_DL(uH<_e!C6|h3yD%3!^+6 z9J?h_D-*Ok15A_~@-kpo|6eDZ&@i|$SifI@vmu(&uVoFDPw3~H=&@B9Ig>7iXjLoL z!O>3oJDBOQg=t)Yn0~}Owu}4mafvIRZF_*PyNYdSce~jswHVrxfHIqdBv^NdXDm!7 z6l4&@xV9!M7_3DOSmrfDl4_FwbO@@~jXy*zE`-`Vb8HsPk*E+g`4>gWY_714T$oPg z6*#8peu8G`X1h(NnxRiTVG5YF?Y8UT4S>6w(Ffn+0zyE4gWkK|t*j;Bq@2;&QAs&vd=+YD8;`d&|D|cX>}@$;o8aWFe7?;3ciEG=`s@nx?&Xj0 zxIozL@jMdmS23vm%kz8)^BpBYGYy=u`#EJCGDE0_>08^|wJO(m7IC9HEl6iW$A-?z z>uj!SNxZRAt$8=}MysY}Ntucl+n<9? zmm@2mXXkFNLbnq2BkV=FtNsudfus1=+P1Xpx3`W?S?Az#_7`vCNilbomO|CWLi8h+ zSPdrHJ*tWzN1GKrH3$EGl&e((1niT5Wy|~8hOzN(mR3rGvNr0d8)N-YKgI6RcxVPm zm!dLjhvv0pgS1JRCJ1}_8JFT~MS~{@Qql{_%wSm`W6L+e%JjIMB6eO*KYmV2#9C$h z?cy(b?Dvub;{w=FS=YF@Dc9U_@B0;xgedcGP%Z{}71G&} z3u>0U;d)n@9sY(2o*UgW5~%4P)BMnywbDAG*E=KO*D&Dnp^RrU8aaC2HY-oFnmEi! zv;%bPPIxQ)=n+}D9TYPu&Iid&IuwK{B+X^r{ah2NN*)$`3U%?ofkRZmx8 z{(7)kXV)*hsc9PN7hHq{3OwD0nvqvvBXpWW(hb$DKKz;w&ee=bF@u9a_qg&pa|^P( zn(hn2YgAdc!Y751##x$p(^rww-DLN9p63HLqy`E_y_N9PmC0(Ap`O6`keXM>CaQ166r=lvm9DkxA#qa+$H& z8q1$$enaX{Y4X~uj%VIjH)mD*oxgfjSVU^LzRbV!dP@&@s~s2Fb+;R7C6ApMTt}76 ztJQSyd7q8dE@cVQ=B&7NP8K%3Slt1OsYN875LTOr=5^$zwf{RKJ1CR)+V1F{)$n;N ztSsu@ZEoI*m>V%OC5&FPEPnX+As9|?Ew*CUQS5lCWh&dNxFFdNKdvpu=Wf6hd8gaK zb<{tnOkE+*xVDf`MS6Wlrp|j-`mX?14Hczfs)@3OoyBSOMfYJ!?s<`3RYsEYCB|vH zc#9vi`Muqtt84N66?sQKWQ*g+(ao0N({1{V?Vxt-JgvyD{fzC>gv-59tCM=PN1;aF zIo7Ht%jfH^9j&u77)WdR`xVvcpL zxM~=qv_CjvAYxOHr$-h8O~g@ z+`iM>N>|4+*`>?Mpi|z38B4-3e;@mi+b-z*Tbs@km~#d#QGTOwpLEA_*ZyVwN=S^l zwa*v!EaES9c+P?KW_%p&IERNcF}m%!qO+XO$J4rh{8wo$wr$L+OI0gxE6d{*OM;dY6p*Vy?J;$P14vwvu)hCUy>!(LyVHI&D{`M)f{;BV=Dt4kbUgY_Rb(@q3LA}pb- z01}f26ICh>^Hqq33``6x{#qLpTbtk*8CaMaSee>X+Zvdd8vG&mmVgx#vGbEM(;~Nn zpF^Nt2*APO)BV(0<|bzY26_&m3;b^>fV-mYy+cJZ15!vea6oTN4Aeco`a@q4A4D{u-;%c+c;Q*S4A+s0611(pm}ejw-k zA+tprSQ{4wwbCU;ErP48|Ex6@T72OOL_Mm>iH#g_%qIZzMaUlRxqaLxyHPRknP^%v zuInRyIORbUO!Vey`DJ}_Be^Y8Q(YIDlDO{F&H1bSq_y5aFrnt1vm23hs4U|))Upvl zE_VnWabksxQUxyUJ|S07(Ig&MYHjp*tY_Wcl z&B|Q!EvcFo%8vL%(tI;cBGoqp8-?HWM@i!c}f*UvD|b1PTK6v*54V%oOTZ*}TYi;u)jZ}dvB_nTh+V;ef4 zud%f#yNnM#mV!C%cm6K&8b$T-yI=>{bz@fz->3j+;MWR;>exu<4i82yePyj+ulv=b z)l_G~8o$pu%R&F3WzKwFI|yEQuIG2BG@W|l#y1>o0)167^3E>k@?DdfHEYwhK0KnN zrx%IGaDQG?rdXXVJY~=>jfk7a?CmA*aW)%tomIElOS*7qfcq+35Yt z7Xv3bf*`M&K`VAimtohj;41dmPOv;ED*iNTR2aXDxZZcV>+rT|?yGI8U4Ee!jlEEu z<~f;UYF3h4oOY*uK-Me0*yP?yqRcD6Vf^!-Z5H09Qcxij285xjD2KRhRWNy^_BYp{ zD73_Qx#Kkox!&vLBfVJL@xjrVCL@IW<^ValBv~sgwx=Bq`HTSDCR?<;Q8qQ&>2~wl z?-2~CU^;}AMR=(a=P6z-j6Hzt_dPUb6bF*@z(etjPYhLxC@XZJ%(~<;bvWR@L}uRvWk2=ENF<^z!tC4hQ8JVlJ3dt;WXzPYkF`#{}i*^PNOA?{WTE^)o0U#!7%L$ z{NYd+@8|sQtLd~tiXZ5$7=5@_ey}ihhF*ZwEz`JfVt%uya z=$;Yr%T!IGxEvvIo?eeY;C>WZNH0l=j2L+ zSB|x-rv;M|&Mmb=DdqU09{;pv>lxa(^r*g6_0ooSm@`T&*j`;0%M@IrbRF4GlRK$G zY)}U8paIk0^NH@2u?6gOS1h7iMh}yaQGN?$Pz=v7kDILgU%?N%+ zHg@CW>gZQJJ`rXEPnTE2@W8q|*wC*ANomjcK*Blpj46$JSe~eNCsQ9wNE7}ApQ0__zrm;Q~13Z^l}30@g}R-UQkfL zRE9ZH@#wxfVJbgCxNDrT0z)KgQ!OX$n){M313@ZyEu>GFANqjv3r+_Hv}bfiKB=6I z6Zq$zW2fgyO;7)Znz=;9(Ldq*C=?(s&j5tPsPUW%bOoCig>SeIm-tff(|Y1lM=}LE z{89(?3h-+JvePVHfA~!uo)i^xn$v2O^de6qO$`ZzYUDj!-M~F2SFDPJJ~F4_iC}kg z2F1&o2(=VzBy`70p;>2-d?}%*GLt5%vx34Lo!PYjlwK;{!w)1>7XWf>`Mq81scWmB zN*d9v*WPmA+Y<#|vkGBMXk)b&prA2BF90(?S-s+3KuPT1KC{6RZ3eEmAnP3H zN~oR`5y|nuZAwNfSWw3D6s>MPqMOfXm*?!%p`mi)S$D2& z*l+Eg_c0~@dj3L~uDaPHo=wkfL$2jjQ4bhQh`AA37h_>_j5HqK8@*OBRaiO^Gk#4V zUs}t1?+Y6Vn%u2oOJdykIXy0M1eM7CfL>n7a4xs75^VKY%@RCfY{fDR?B?8!qYLFKKo;)P-1d-nu1B*i|hv( zYSN4u7BjOw_ozPegBGVKi+O$7k^9BAnLbtt6|G3>ag%Wm3IHVuY7nz9b&Ae(|2;;q z1YeKq1b$to(}ZPf4$lsED>}8J4oyuwYCrNnCbMi!DJo;ABpVF7|M)*YEFTIxUIag0 z^bzF~e#j9rk>Ao&wGZjM`%vhsCDSm8juk8{up`=V1dboJo{Bk_08{+joUolT=iFfZ zNTicdEUDz%Mah2F%pwhvLqfQJDjNBG1zWrBksC+lkhH!}zL-(_2b4_lD=A9bNZJhX0gh_AZL-;&3c z5%dswQCqPQJ$cbbWvqF@rW17uatbFFnPzJ1aEnR6&b`?VI8mA!+eSBlBmFa!U+ws} zIwR?(Fn%S|o@$eZGjSSMnlT*$> zp2{X)^ezl>$w0|8)ieD2$w%8dvfk}E~rsf(dG)So~4NF{QJ^?OG#DPvnygk`z zU7{i0RiMpJ;#LK1iWrh((=bvwTT?z8efKmdw=kW_WbgbZBZMdv>)0BIXA5E`1n?*# z7Ml!;K{cicGOH4@07edV&ZL@AE-{q?BPBb~z|O}0)QDh4coyQg3Z_yLqP_%1PoBxAFA^2Mg;g@7@-ZpJ1#4qd%5N~51*eyyb-?eY=}-;t-zYr7wb|Fx zmC*wmqB)_=eh-z`T)L4CsN@crE90O-g#$yjcEGMRQ8KKghAKAlX~Fy9XUy=f)P7$@ z{Wmu2TWQ?jgu2AwYlG4g8LeEHewRq1H_t}HQLas))g1R|Y`RbpDCd&)NK=?othV@wF{3R=4J4hACYY$mwy9Go@@lo^0xZZhUb zR*H<4-BHtd*KYr=&fGYLT(BY;B;L`#?hL;l8wpbyxP- zTPmxBM=(T+DbZo3#kgb8@F6DUeMzLWfh;|#YTJCE*k&Q;MsDDruA<*^JQj?d{rX;4 zi}_mrYpqe~U4VpMY>m;~TBQssDDbh1~WPzw8frkXi7`Ey<< zKBct~|6_sK92B|UMBtuKvyHyvGg*-*+$Kv`w1ydL=84KhipF|E4=%2hVY+N=gWeoc z!aF;dW0h0R$7YeC9?FqQknA(` zC31=rV%C?d*nUm_-RQe#zWj?FWJH2iD!!ks0A=;JmvAyU3LnO+(6}pH z=g?72PZ4X6vltEx(jb=Wc!-o~AE>X^L>nnQC~yGgDI{>3&kWM9lRXN(w+E4ZlKhNX7CCsG**H5@SPultQ(Z^Sl3P}2x+R(Hjw z{UI>{-Xz0xx^eVw!@Oda5RnmP!xPaZFvO|tbSZJ6BHfyq4f#4JamVWeP9s>|2y!YR zRwVWpF>noVqBMnnk-VW8RmWK;+ET`~rmzMn`>*)bvZ`1K`s<^K{z>U>YRVwt@Y!^s zI_tA#sEYkABDOqBMnW@>_An(orn?waEvtWfHce(;x&@M93Hu{wy$Kt25rflk0hg5S znYuqIEgO3OTN^p@2ES>&oIgB+m(qy>Cpnio3-n$CtFrCQ5lk^8}VxtMLco#Fb4`qzB|AqkpxDH20zzi@3B(0ER5F zxhC~aQSHL;r+yaahgJzuCwlA!>{L;6jspzhOa1|#1)n^bP4epzq4c~?|2*~A!=uzs z1GD8{93?;a516(JEHi=-O5|9`Krz7UEYW+NI^OfMV29{`F*+?}SoM@PS1)FAJo0Az zozqmvk?;E?eT+@xwxecA*~Dj9XUFJ~*R+6>95V_)4TCi+M0}5{;@~P$q0Q$oPrs7b z9T8g1epT;ArUCS?tul3~`*b=KGd!A!?x?3btINoY;8;(EUNupc!3 z?c%4>ldEJ?_w6c}p4Aizs%fHX7U4>#iUkY29)PvyV5ZET*p??T;g(@T2pxS+hM#3h z_AiBFyOqbU1tD(SBWjAsTlkfZf~f3QtTl04vI^@<94>g|u(5djA8(T&$iH8s57o-w zsf(&)mpi|{tg<`3g^w!@s2{Q&ep!vEWGa==4QNXB!&FO@_2#v96J+U;U2}@uZ=Bn- zz#Z7sfprt2O)GEyrOmwIYLY2j_AD?x<2uqTt#p2m4j>daw$I(}ll-?xqP6Ffu#&d0 zpY=&(Z|(GB7Lb_)X<4~V*vVv5`Blv8YuH)EQy&5q8jq?$^2;St(xg7wJOnj*Y*WCq zAUG~mWurPxd^mm0n33zMppzZluwmV5Hdzx`#8?VO0HrI6-BN#z=F*@c?LC&9^$*JY~E*6 z&!~9c+U$Vh1P)~scAEZFHVUq(-#a)V$!=Q{>L(DFMFYBKalTb5XED<%Yd+o4ul8DS zac)znaTZ9q@b#)Ak?WWk#4oPV`YsU;WZi~*Q$v;{ZX5n7BC9kK&=tgnXq>{@qWku; zpH1DhZ01n2Xhvk|2UgZd_?xNo5y1^i$_62+vU|O??Bvbjgtd3`j zCBe|fr=0yDtU`skeq#>=|KIu-_xlx=08eOf@|*3~9Q|^=w*1{}TxEiHhik%!X!Mj; z5EGwrDzB7mq>9Bv9x**1`nD;R2rmPX0F>&mu%K<`P#45pB$Dk_=MVk^7xfS~EH@?$ z1uqTjw{@j<*VbF?RFRVPkVK_QVH$Yw@*^)~yAJ>7W>=!4$cme@lWz24}w@A9-J;W2x> zZP*jE%0?O%fhuzuXLkz=EpjJ%wJY8E)aiu&d>1E193^}}-f92b7ERt9U`VfD6?yMU z5N_Flbzb=Pzd`UR14B0fr}(ShRGjH?-6Wl%2q+1GKl5o8IkKxhw_Si!M2#Qf@=z?n zNS)KqXS;?Dy5-TtLeEp+;)m!^ zv$x!{Scax2JmY{Okrs?3Hw8-y4J$xdn!3TLmG%p2<8^CJqisVg}Fy$d0 zIH;!w&q z$s&OVK}Byy?a_)-lA8EgKSViyYz8N}>zj(eHn>rhxfRVi-fh9cm~#X8?qurO&5VX7zG<=2*Nk7ubd){{t- zW;us+pS!4x0dPDK;j|2K5E5e}a!mEO(FkqQsB3bw^Xz*+BtiMer{ilBzm5!>nY2YW3j~X}JF_w?Na4Ab9 zlMy`$-Y>Dk{_2}Ow|V(Y@SpJYz31ry9_Ts)zFI+_M80~MwCD6I{o2&c7l3Jm(zK`Q%Zcj$He z*|={!HIJ8@R+<@bH(@3C+CPPT&sw(dA7ts^sZw{pzh=!tccPy}+fqNO1C*Ec2`UIV z;agqL-qXzDA#2=J4E}YBCwnFVQ(8yBpX?fA+c1&-Q*~(qU-$Fha?-XP9|a2!1<2C( z$%WHjg2y#TA+wLM1lK8142YNf!9+q}cU=wZLU8d9xx~$l7MhiMoc3Yj3vZ;%**;=w z?Ao>ZV%d6ZnbOYhaBlQHD{Yf@T92YT8rCe~QYDf>GZM~0u_1HP+LBBkxqgb4z5HW| z(pjA3<{X@MH4vxW+}i2xBL7G&a315IMaTzeFMLN~AJ+97IQKwxII>>(EkySQ)Uw-v z$>G1luhbFO1mS+oiDlz@CyUZe`9Dmgr(>s954WIt2}3Jumj@hYxX#$+ zU|>If#Cz$qdN0&iOB8IHh5-T4`eBh~D@`C$Gd;_Xq;9#!A;;Wpb0^DG&8MNg1Y_(T zIptJOUY|`O;aT}N_gKXsPadP8gKx&7IfJE7<6$T-;e&WEx5Jwc0(&nJ;Y#V^Zh46x}1K_>cL!znw2@|8Z2c@%gJlCrAut22+uVI2M~)V zXDmWW7=M@NKwhJwQdKx3T45^al88;$v7)0>bc)IFz(xy?%7|o20M2nFg@WPFE$k{e z>1>_u;dI?FjxwHxLU&m%{z&6j{pbBUA=DLtA#U(pZO<&qqE7ilA^U^g$XrpzfZ|3s zUHRCG6%hFqPkeTH1;(wT6xx}|2PXju> zO`KQwKll%p*?+z7ODkR)d>f#Yw`*G^#dLY|JYBAvJCx<7G#>EAStad2te?ASYM8Q( zy~g=CU%{bW@VB#(otOW>IOOyLMzR}K<=?Vv^K#f1sP2WHI8QZS7YuIEVRelGtGbV( zpA=RBt})WZvG@>22D^&1!YO1vd#t@B;UdDU)>6im<WPe8z<73;@3bNR?tFw~Oed`@M<%I!5wemI9Drzw0E^+q50~rt)#*Z9 zg>AxM5szV|kX9w|S;=~Ena7J}opg12e!%fh37p9@SoF6{(O|g)T$aMN`8E_eTSl4m zNO+G(T3GPZ0LASV+P^N#f!#w&YnnPxn^*yxwDv5={G+V$BbkQ4F9EboGx&SySu$b1 zecbTsWqi7|N3%mMVq4dnE3y>;6itY68NyVva*f&D(#wtey{fz3Q^8RUJJ9!o4+Npg zjRtNU!6KtZ5o^nZt6MF)E{q+kycB)TShg}!aXy?PHXr~0Fno(AnQlj8w|m#eV=Z>C zSlr0H?T}xv1s8+9v@Jdg+uCBy?bEiqh#}KjyC$K#O7!xK809i9ieV2MM5|WG`yC`N z)CqWdM$Q|CH=~Jr$%*X%-M}w3AUCa@Nrviq`k1|Ho!*ct;6bEGHE@~2FjzMwbtLFv z^$ryi0!=Y~4i%JwS+?OV39~;MA-fDPbCh*EGgyMr(C^WRl(;4)4+4%~$e@&c^`mfF!maUXz@3DX1k> znBB*<$84%KZ)uar*pb8irxhhuEv@LkkwT^`dn%Pm;`c-=n}Lz+eByFS5zj-fOoBy> zJu<#a*Eoh%y1Z3+h!*(SHFeF!V`dqAyEig*U9bdW4fG|!Yg2(wk+CyUz*XF~qz%Y5 z88`bwf@dVa4#3Uiv4bL+ACoZ_;vLI~^OYi0nCypL zkvZ4%#IuBa!*-VIgyLU^Yse&Fh?ot6%C5p5sWv|+L*>W~ykcqBmYU-lZ78(xd2s}N z(kQZo+R4){ryys4#=VHKx>SR=qb67k3oC-5CJjkb`oVw5UlnC3_SV8M=;;@kTP(sa zyW3S?L%$v)W_QoeR6R0faFUzDV34oSWA8IL?@?VO-Yc&R^YB;uaHXcwyOGcN?E$g&$`OLH2LEyf*2VB zO!evRk_dgAoSpi1yO}~=)v?~sD>QD>K6aLF;jjDG(r&85yWObdLCC@}6w%mGBwOcn~y|A>o zt}G6qraNfIwopt4H<)NWswAtY?WYEpWMO-Drn+O0#v%H1lDeZ0#wCRFt{&H3$LN)7 z-&VPn6v38k@c;3yPA!R=U1qb?C-Au%=6JSw6NOjf>JXb1I}JEZdiG2SmsRab=}^n^ ztFYZrkl|>DW3EZJae09!Fl~6b#o}%Tza$`;;4J3@r*ArN@@?UJ2)MA`VCd`hdW2j# zR$Xs;J)f2yIJ4>kPy%|bjtnRalSj`IO76w<^aZ+%qhEP{QB-w8{&{N7uKf|(-;W-f zwVSz>@sg?=&n}MbH77AY5&Bv9l!-*fFLEjb_TaH%5?UFiwmPp0Zp>yaZ0ngYWAJ%o zt}vEm8=?n3j~NiDVz9}w?rmd8Al;XXK^gFDZW`QDz4jq?L-gtr z%;hm^>$4DfO*Lli8yTkQFEhJe0KMHK>ETn%+#th%vJr*4+&yEOV$pgPyHf=N%J25a z5nDmXF2LK*P#v5pZ?BF3>aVXwUP2*quwKL!_0RN z$Dx}F7mke$!I3XuNd!1<5Io{)Wp=Mtf1@Ls7CW?hQf#f0!we>T06(k(`N*(z)#7hb zN|<3L{n%}|kflL3(3?6Z<%^5$1mURLDKz(LXIB`8kmK){rVqQQ+Crx`xklO|5XPpc z3j70lb^&tsWya?1Q{^l)2mq+bDO(_i7&y@0xL=7(OaD34zNs>`~X zf;EQi)H#%zZ3bFJ^MsP4VvUe!K_1HDjUtF~N*buNrtWE2yI}zj(i9jw?(&UL@^n_A z)b?RV`1L=4U~9!pFv! zm|4Hc3RjwLMQK+YcdeFXZQtlg?3jG1utoVy4DB253;MNRkHWeH;`X&LS8$~-B$cwh zaHFi4uuGXWwAT&ScF3nlm%_i%A&vS66a_K+0N{NY4&s*<2EIcW>Q$V*{?PBExC6@1 z%_fd(1L#1uJVuMcdO-jP=9ZR;M@F%EhFiFFi=D{@x>fK8HN})l(pL4WW(QRVnwiCS z3-@4W?09$=_g$!f`LP*o!aoNgw76Q8LJS3E7h8QlMRwpYiQ)Q`_Pi_Q>zm~zS8a3tiwctqeJgp)ML|biw6n-Gt^h zhq|+G!Zp|7BzEGTP-u?%w47#5SAUTzQ)njyTC zx~g*^^;rSffzMvkr9!_Y?n5XKF zrkR$o={|qQK3gSQG)S|z{jERb6Kbul2Fayu|K2dFUf2F7M(C|%oielhK!6j|{&HT2 zcy;G`Zf8AE`>2{ca@QG(vAwjw8|cFBba88hWABZI3)0rlxT<1Hv=&$>*~$_d0-qv< z`M>(VaolN^DAod&&`f^ln%&Ur$lb%|o4BfxEwAIUy)w@A02Fendj!i|tz4(x*!;hl zZN5u4VxRMycw4p!>{L^|WTYa*bbsJj(=3mXr@5T{+OHr|q%ul|&)BjDg6nR}mZNd2 zm4<%vv?R@*-ngG$70d5$#7AAx&9`#aY?kD@FuG@LF(E4E%t92Du7g9 z7DQYY%`A%VJ~ylI$8BWS`Un?yuQ9xPqnY6LNUO^nKFZnURFq_c(9MJ=nb_o9JFW(4 zP<_yynVm{7H>lhztJH-#%rb>^&``6`hY5CP@30-1tA_g(h-x)$lvynsp##53CeE|) zzz?_9%*$^hY!4wAY*6*3@L(Vz8ps%&Up*AQf{C6vY&YRnMqSC@2z1gM83&hEMl`Mw zN_6>&?t1sz zKQe?OdWIcF`d&u;rlOTnVW$L*2ouWxP_xb*g3*Zn;hJ2w<4VC2=&omklN366+x}&N#AsQs04ght7g&-a}7VF+GSmNc7XD zJ^U=vU5r7)E%#dAn0l=ph}O}!g-C83wYG2dWK)aEtvcZe0y0E+jKa_fkN z=L5nrW3J#zaa4N2>ndz;^3>*;G9^P;yAxgsmFG}(Ac+A2WpURh2o9cLl}yb1$Wh0& zabSUxM1|QF_vFVHPi~84QP!1uV)zJ7Y>ED`+H0HBzEsK?kEn9LXD0uZuj4GrVPnRu zN$XsG_RkaJOzu#Qm*eflT7!cw<`c^YeA#T$%$K0TejdVq`hVa+K|mmVAWFanK({}y z|A!xdN+9-+i2&V?IG+6flQ>?J(EkS$f&X`Lyr0cZ+Kf;j7C2B~9taT7*ZY4i0zcAq z;`OKQ-!OPZR>ma{Sa7)qtL0J`7i){MZaJ$b7yLga0?D-$KPCd}%U^FB{Gb6qSk>to=W?pYw{QNQM-?vZp_5vR>9fY0dR&6)ipDWKl&Bc_d1!95$EieHAp)LOi z9(tH6paHc!&FeDI#kfcZ7fQKbg4CnH(B*)@hPd1k*AzyeL zf7(ZPdbr$_sV!Toa=SXT+5!iecXaR;uMM}jKAYGTjgQV#f4;6iO!s$Nv5m^7wMLxnDGy&At}{`V(mpQD^N~BhXlei(}yX6wp?-5G%zp z?;~&DTV!Kt4=%j$pV=kuG~c!|vfkd|I~O>XIXKZ&?YY#_t3MW=-WNOSACBjW?k$_f z;Xq-TB8Y z!|&X=GUkC0PqDe%T)Nf+Rm{43FVo1doRg@Gy5G8~I%<}8ABN};Z-RRi4Ka-#sVjiCqQ(ieu*k;DFy1es0cj#7T@O9!WScs2o`6Yt`v$kl`r_s;gUn>`rEt!2p zS$pO*EPFn_`evMUvvld;r=xA{wO~-_q^zJnb)AO17-v;ta_OYoVHis;b6;G?s^1k~ ziv6Zjq<&kAJJq}IbL->#7k}`s@_*2L6LR12uSFkzxrewQzVAKSOFx|7L1!Pj!KDJ{ zDVwflrW>#HcMfmc*SV@tu<$b9U)3Gd?v6(PMRIOC!^bG&_2|~7T7TE?c!*yuAmLM` zf9d_you_vvtZbJaFI$!s{9S+U( zyZXMrG}zeAUEW;qx-aK=;OCB!-akEgoz3*rT>IX=UTjo#^tjVOal6Q5Gf$zVCI6qw z08oyH*ZBWj)q%sQUe)sxxnCgLFs^O6Wm@i2()@y?qo|r%i3~5KOGs=MAw|U{+)KlL zqgR~loSFdIWcQ3{k{!sU??#6l-;?G|It@0<=kMKe?~%mhcH2fMtc?y(BB?N^{(1j1 zo4ihQdwyTX^1~o<$?gc46a_yA2at398M%G$lGFzPkP}uFT%xwSo(-YSsv`LVrwYY&;p*1cmZ7up|x%c{98Gv%5LesVGVC$*$l zI{fp##OvreqDyYs+VgPMY&S=9NX^$bVP#Qce>NNJ^Ktv+RhfVTH-U2LMA5mdE0PGOq)~=p9(Mpsjb0O%M0Hi{>){%h zdmE$GC&{Y8{AEX5D1;8RCnc30V->UfJJ(iczO}9W`%Jeg`E9mkG3?jf4nr?;-q*3@71)0!#~<)2JqM>owUXen}1sL zpImMJy^M$U;01`P#8X&EV zSSR^s^5b271P8gaI|}i=Y6nB||rf-H+@>}ylSbb&?pEGDvu1XMihjZo)!n&>|=S@4_Ojh}4 z$}|RPPL--dud9jeXy4A!8fg?S-h;c4PM!2W?S!$_XRMP<;8FcC9YNA&Gp)tK@dk@H zEH*@f_E^*Y_5W0a@rRah;+bMIyPA$oq?l!G-bu8`(8*V;QWNk6qt&qkaX6{D#1+11M+sk!YM|9%5RoZOb~ z$8B(T^Ps2Ba*MM_-kFH$T~Y}vKlt&tTUReoJ$Nv8X&8M_$rl24o!*z4jq*kj%L(~P zI5F?;H36N_S@mw-F-Ml}ver=l8E5KqXXs><$0{nBOI@8qPJ7nrx$kPKiF}dV@{F-> zN$Pi~UZWZAqcNbNnlbK<5JE1VUFJ#ICO&=#`0(T~QJ0$NN=Sz_u^K?)2wY8QzS6?N z;CK=N9+z>(S`%tv0KKiNs}ef%Gsx_Jp~akpV|zV7{$qoC2p|@X@OQ>a*jG)3_?a-S z`wZo8F784~7B+2!Hr#ouF=An^z$gqnsl+ovOw*;JN*I{ikwl<^#dvRWfX$v41iAS_ zND#?)T|3TbT|_;}8>Fb=JK_?7DzuRIyB|L}9n9@Z?84k^2Kz=6P4XE(8m8I=9pYNf zUmVr!=e>B8GXolS=}nK**L?3XgY1-x$459us=c_u!=!O@hjq`)>RO=5IyoGxB?9MmfMpxXq$X)yIA&xSY?`P+U%t2g8W_@Y_^ zAz7IY)lSDxa`Gv1H?VviA@up}(7(>qhEz`s2h=m2o!h~tIlJWNX*)uw%%c7Z&_Pvl zgfBPgQ_yva*!#9tK7fRsAsO zT$S9V!7Q=-hWAjHu?MeDsWW9>oNpZAlr~UVQcGu6H~#i3$A*~!a-==EPR=Nr9^Ffu z^PB{X47rDC4K{)87T6Aq92bKFP?6uA#7IV<-a7IE3rd@q^@4ZeT%}KG^{L1Gjs?tA z3jhY8?#p-HQ`Q1dc;0+4`(Nu*3-F%&i3^BQ+rRpc)S<;|oK4Q%u|R1Mw`M_I3rzh` ztfbk$b?4q+nCVZX)Bc>c-O!8SQ}|a6D^^dn8!-Gko03%DQrL8HLq1__;?m6~{TG$~ zyrTKgfw;iS-|N_ghL|f+^!;FKI`|5Aa(pmERRpA23hqS)7IEd zJgp0{jz-*?0|2tXQ7L+Tx-H{2AFY9~v&K%kS+s@%+Wq-sNLW!e`X;)&S7Z4bgL{PZ zQKlvA8=jFV72)Zj(kZNY8*Ez(Z;o?^TL#YxfZe0v>j6CYQ3txr$d}ZWAjD{c%#40> zKFBiegiF}!5SV$U{C3R0Gvbs3QvW+a}8U8 za0fQdl-5^9n}L@qs=u0Lz8ft;eG_fxuH|UPsNMTCoG+MxEqpI|9}Gmw@W@T{{)ubR zN|jIou%IRc@M|Me`lWtrQeW44Z|`0w+?P51?cK$X$pNJt`()7nVCakPd$+w(_c_8! zYL|f1Xk&PSL)>fJ4`{A=J^nVZMz66~dUNnUgQ`|)1tBVQOAUiaGRousA~U39dh!%G zGpI|&AtuoS&-r-EXyh6JIX}kl!8tlpmHlEp9r`(s!Zc-N|8JqdpZg4>~&yZz=hf*Lfx!b{cMW>?QVL( zH&d&}3wEP?GI~%0?P!|U@lGC>%@kmJY{rqv0WA=xKipvgapy+X3A(%>#}OLv9-x)i z7_7l-T9}rAL4+?fHf$hP+i=%nuRRU>qz$pseZ7T{!Y|ez$?8(GA$Rq%CS;j##Mvc$ zBs}gG9m^}5Lw~9&ue3*~2!dsgbDSKv2~=Jh^XL7@96pziT&?OGC4w7uGl8<;jfM8E zE%H*7;F1kbynPNo@WmE?w*`+H3LU@sMKX^DUaZs@UiWSv{D4b%waHGCG%oS&;aapq zxuLVfDdN7Q+y6Pjs^|x;_L;8$WxYx=D>kd+Lc_z~@U|>p$(Iv&lH>UENGJokj%2z# z%ZfpnIe=4wnOG$*jQFYGH_`63z?9XSbVSA0kqif|fSj(MjD_#Ilj>NF#y$ANI3JSn zbmUGQP!?84TI3!j@~i(S?$YwNG(L}~#7}@!sQn=JIXCxSBIc^kDKR}v=nMK_w<5Ig zP4fcI%9ctew$GP=2@#*$3)B*mW{lBQsJde@;ACyL>U^h`MHf>HXB+c1wU!e;hFZfV z=;19%N&vKnH`m($OjWz}2sPDuLD73T71d5|*#wtW>~bgFzfTI;KA>`OKu~@Rck?ix zdIoRKhKE;=5s*wVri{D0Q?e@hif$}S^(R^?c8m`^inTIZu@P|dsLd5#vYd@-=;*&4 z??J#(*=#QM=eBaCb#NvIOjd$rec?|c%Vq^+4BUn*Al%##uUB5%?%bITI+w+%6}5nl zSNR3}-#%jOy2>&n#@9B@rL%*`I{YLK6;K$CF)>w6f(%`kXji8_vXRDXdM zqxsGrmG$5-T;&O6Yg>bO6XTc$2tLgTwEl>q;%}`m9vweYXz)u0j+v7xnilJ}qh!@N z>0bWjPnx^?eek^Dp`+)jpKJb?N;ZN3=m;+n7|EAD--Cb$Q-TYN^cap!0E zkMV~bQdw7OOnad{xmMER|9-gSF5pv<-(l7X2D10XwkLVdx9QvfPiob=%{m4eR z!RGH@lX`!HAgS{GBU!U2O^a^(l0%@-`_ladZu5@-24zEQ6MJf*^WxwtC&?r_p=dfB z;WWOcVt+*`iGRl7Vb?o1S)V-Sq{4bWmOPQ~{%#oxnlLhqnTF+`DuCvZD0_%@#;@b^ zpObk##p`k3;9I&)-j*k_NgSXfe}J4I&rcc#Y~$l7MZy?LDtFF_jXYZj=NwtT7*VUc zP$POIabgZOxyT})lIPE*e8>kE*qd{tY zaC?nH3=`g9v!k(d)QYV5^E3wGcO>TC_A+`_Q9`tWoJ^G)hT60M-FkJOQ|?FnG{YB&kps-Gh-ST;Pr_;8)@<; z(GO&IDk=xpUhHnhA(-eN#!MYDk@WMpVr>}((mH5+F$=3b_{_=d)q zge|D@>}{RXU(z$UzWk&5c`s$@_r6tJKio^f6B1hUb>iYYE1O5Xoe?A=a5(5E(DpJ5CS8U$)<43sf;e)bd5VnxEYF~%~?)jB`W!=)g4g_TU6H0b0l!}|P;Ca&w3M0tTr2=vk+WzKXDWE7wu%~E#l zMQ-?*@$IQBu$F`u7vX@y27XdbONWn*7;uVjj$^>Sq1tVzmM>?<`=d}J5gKgOK4nq z2Q8R&31NThs%jmgR!s$#e|U1$RLQG`@)7`e`1xNlwl>$6d5M*#VDNGat~o}smToo} zv{hW`B+UY$U|26p7jTDd>S?5A;5mbVO}G91zfK)Zd(k@sk0=b&zmlj7TEt zlOJ%*dLSE~Z}C*5SFcy3%&HmyWSOGq34TJaAwuE9$@h8|WMoq?^p->2-s}V)^hGw0 zh#2BRX^+ajozy03zXMgywPkwF`9EE6xTynO+CmcDT&+wItah32#^)YJxYj}f+$GOB zh-bcJ>Twwv#t^cYW36L0d0O?-QK3EJ)qn-NjYxg3dt03QULWqq#{C1@3n({P9=XVH z(Yzu$+K@fHbdqRVsTLUS(_!Ij%BFb?oeT<>e-;S6uM9vO z&+d!_rT4l9=w-`%^gxUuR%8h-Wq`tmr`ta*jhAS;N<_QuF^pwc;3hJ>87VSgRma)b zvwU2)z5(``9q3suj1&f-hwVUVF*vV+^Bttq0LUU$BFK(85~?^pY*5fd)9hy+-+7id zkVPbl&>#Q+UO!oAzVuzbVqHlPq+iGQ4BA?Q9zEMJt^(`c-x*OKW$??T|DlI zHI!Wy(>$A1PvPWSr7Psg-wJJ^J;^Jbf1ID*dw4$IsJYwBz|`-GeZ2eGmYj8*@ILj& zRI$5meMS$TSafMwyxJb3CRf;mU7WR@@jSnegGIw{a{FReJ8a`9E79KXQ`v5OsveQ- zD4h4Y)Nkt_eU?PfJxHG_p4Y|z>}m$3lK z^wyp%?!dAR3q+Dfmta2?*2w7;?PR+}xEy5ngZ%7TCDD2NNXT`#rJEJrC)x&HXSg)o zZ(dOW2I;zZX_$)d&o{niHf--@+h3E;W}g1qxcgSp#b8`=EP&D-K1p-W>SoLk5ARkg z>)c6HdPLozL5JFE$6y%4s{Oe@+^%VweC;iU|=Ocr9;e1NE_AVS^{^;wq8kNm*1w*jv+h zWgLW~@+e?F$(h6873>e=z>aSMmI@a$qCF(IFG@`vcVogEpy!qyMz$N<9(9zg8dX*D zoKa|i^Cw95JJw>IdzM=1pSov?*ZaW(=-IL@(A7G=HkRGr)NI;qHW-U8?wvv<)C|uf z7ExRcfSqRx+cN2Ay)9<#6D!>SoBSxIS&8> zfQCKugsk_ZtoOkd%1@ux0PR+veYQMzKhO_8Z(nRU<=dGQRmVGcjD}8NgxnmF(r)}L zg<~nm-ST+qTAk;!4D1vY@;@~36nh;7REq>4z2wOO{^&;;H9EO+uU^ubp8q1e8f?^_ zlnqrmE2b=#yL~!J?3xr_3s0pX;s_#i9W2C(l5T-hib%p>iIwjCBIyamaS#;(7kPq< zKE*Sk=Hj#g@(g?#8oDhF#j$t`v z%m+*=Fzrn&nDEXK7VLwdI5`bJAor3}k8|fW1CxoQ=N7s?(#DWY^}J^5_nfzV_YlcH zjTJc`$bJELPfC#}G0ZG}uqecJ7$j^D1y9B-;WdUQ#KVVjz90xD+Wc{pt-~F*zwc13 zT0;vmdkh)^Wy}(`QFoCYpeYQT+aP2&mPY0S0K)~k0n%rrUhYXyGD@tKYruFEi$3$#nbz8aV^J?VA^o>%}>S~+iC zElo^T5g8oD1{t$~qY9oh)6)lLYk1!QYRd>`4&!i^ZJ31GIG+%3)CggiXP4|K@zkYv zSJ3Igh~^zK%oa~9mWr((!y{^Fj>H2bDlzDdr&XF_)kzm3MGQ66AE-|n4-KgK5d+Vw zKBNBii}&4xBtn$dGhxVBYmhQO2sXfQoYf%j>OS<>$JrVZjxBEgCN4v;K! z=-N##MmM$)tMZHy6p=_7%2my;guEgy#pfb{O)FKvl&yp7zbWRFuL-W`k4kE*=i(Zw zM7qNl0^G=YwSA)jmFxjHQ9F>;blZvYo%Md`I1V%~&X~cr}+s)t4Lei~-=#S(ByIUX~r9b40({X#tnFK+ zXCE#wgJLHbjwG4vQ|L#=dqpW?GT?g?5|Xc&S|A;vKg4}=gQ<@aULt8iB@;{`+aDB+5FCoxYoW^tPTpaeP*}iFb569K#7?H$dP8K&YK7w7+3;Bq{)`Mi ze{`9{f&QoiH`Bm4VCxqBeVz4fe696A#{j%GBv|C61`Bbo`UCx5*FvnQOM#nSTl3Z$*{aSJSF^ZiGh)yefloqfNwKg{kWR-<^6`g1HiteX5H zt?l!Wfs;jr5xzx{6a|7IkMpTEavu4Z^#vRZ2>x%z^gv#l((R`c)P(yZlCI+5-*jaP^Et5cif(o(^dvHb9# zXt4qXL=lqR?m2`Qq`gExGboc%z*9M{n1iE{;{(k%y&cA z%K$JSt2D}@Zm6!QGK44#MhG_%P{6HXS(wjGn^Gi@S;yjb;fY_Y(z1nY#{a?-7R4kI z6cCXx9%hkehzg0wdr&*T^D$`4Oe{ZPi#N92G6kFAAm0RlC)wfug6gdXr6k%4V7Sm+ zNRBu_h71vd=L#I$t@o1(p57q ze1=J+27O;B$s(>Lz$1AQqqHI-SaqZ!E^$(2bA!dnkf+q0?VraM`0e<=hGx~-Tdb!3 zn(4nK)MuOtnG@$+CXves-W@8fOVSVX2ott95-15E5dRS~!qc#{ReVB=haZcd4w(`k z&!$HfMNIV`SK=v0AqB(Za zdHN9A;i7eo(Z4cA+9DTy7`--1KgK6Skq9`5SFX<`VUSD`VP7nSA>frzv1Zsb#&Lj= zVhkXz={&b_=B|tCMzV4JxZBn*h-u84A*GMPtCt`We{7ERYA*(xIw{+a!i0dRy1z5= zN3h}mLW(gcPsEZ7DsoaJTHJ-q$j7XIG!_<_zXBGK(l`Sf_fP)or2cUrGCOhfKrfLj zZH@ce)`7eSYteMW-Rd)lTch@f%V41u`}HGp>!l8dUIPOpDMJ?6?yr9v2FJif;G<_0 zG@N@`y!;z5a`$8S;De8>3rl;&`j70Ip8K!7J=g zxWEwNy)4SB#CzJ!>QAZ~ZlVZ+cDwZ4HcHJH;90)9nu$U<;jjMV^QjT3VT3Q4C=F1_ zBM|hZP9xPw92xCBZR`Mo&c;4u)zhQ5ZPLM+5?SjL`KaRG0pUsg29>A{asuq>$>=vP z+2CUZD+v)o*aX3y`vf%!8jYcdUAs;B&x>f90I!(n(#gwK+p6aS7w^NS+SPA)%J<=t zq_GsU$4OvGnGhunNsI77{dbdYX6U(Ndg1-;_?`kmjY7@I!r%L&=|#p*`VNbf{?P>& z@UTcM1c4}6CJbgI{BAra#eHEGjO1S-KrF!0=_+Gt9UZMkKe*R2nXhP>4W%hC>eWFg zmIKp7C6GKWkibl3X}HI5Cu?tUG;($1-|s}@FI|@&f@iH~fjcUiQG^jij6_i4ifq0t zpfmy|mp>b#-uX{{F>5Su7&(&AyNGi%N=VLEvu<~A`t-oHjJu^l9`nDEkmVtgb0AVk zVn7Q){E#LD7BKjTiDONUf{5mS_ujjd`-+~ACp_1r^*JzP-CKkaTp7Pazy}5 zDW8rY4&iDE7A*c`UtHuLso(pou=E_nLQVztn@4a$IcH$;D(GWTSQqKV%LI@Nk8^OF zf_ULXclo-Lrv@KGTLw1>t87I@+8*<7CtjYcxuje_KYX^C({XQ3F_}!tGP~slMEEg{ z7tI);6^mGAkAk~ASZ$oa!uyEjRtY{!(in0v=g-HGT=T2G20=B@5aGvqU6|&?J8Im#g{mETsGWI@*&q|s{H~&79*MXN z)u&=c%TK(F^zR)U%qJp)l_nC&Jk^la+@ZGOwSu}IFNxXW0t`V_BBvT{LZajWV;etX zH|V4{JMiLZYk5?d%NUIzohIRpHE2%?KdAew(j5^lB{ZVWGYG+@=IJt3qCW)zP_ zW^tb08W9{uVJA;i9-)>ekl{xX2!u)^Mh&FX-N+5vYNZuQjG_voU&pQlkI=Q3+&vx{ z|9x#`l#w(a+Z%wHq=QBQ=36F)g+))JAmH3GXehJ&20Fun6F3Z9$z5lP(E`p4M|P#9 zmZgLw>@KE&Sd;}SK#qt=4G}Ff5QNN|y#Kd|dzn4be<(-m{>j7sK?S>8-3l3TH|q!V zvwOq=55BrGBa$((*&VhJM~gD0p5Trm5+jyW90(O8U!o&9*B8JAQ^Tt8()YCp`}+0h z#7oh_v+qOXpr+j$N)-xdLH2#I(lJH)10}PuO0#V7#b;qX?&US$AKQwTv$NQ_CF{PF zL!7rDhKox$uz4dA2_)uIdQ>2Z^soLC+Dv@^#9(Sr3+2C~%}5ozS)FD--oxNQ{u8+R zpiaq;Z;b}RgOz516}C8y{{&qbJ%upB*RWMo|DydUK>zaL2FO3@{*=f4jEQNR<-CHZ ziBF0X0JjCvNz+-{ z1mgO#!MJ9SkILg{_tvL{k~WBj2xtdHCa9-Y;q9mJrVkBV3s-lWr)w9FHtU*FWG;tWZSlT-UpMaE^l8~Z=G^G(1$sK+W zXGn^>L))O@ICNifz!Xo33|qDpTC$0 zvvig(-zDg&33YWnydYUmV8Q*so7{OnNg2Tklzhmb2qD8J%ND6?*D0Xi%d78JOXGL) zuh_{*(!FSbO_y)M2 z4ww}0@KiVrLmvCvNo`SH7kCY!D1&gCG>iT{EN^x3s~}Ly0?ASvWtVnnhpA%yemLu&^|Aa z1jv^>EIG;u1@YW+Hg54{?K>l+w8kSOMRg^0Qb|prVT35vYmQyW(G@;{Gve9_g(4rA z%X|;}7pU;kM<_PbLIS4OcV5sjJ~;` z`92SC-WdH4j&Gw!w`Ef~mbtdq=B~UF-(3!QP5t)o6|M|(O!18)t)XrN#3RsMUCg}d z?(VG~Pk%EkDHuUn@q3@wtap!qB*$GG*-XQ(#XIZPwberN={2sk3@(eaq)Zxf3{rXW zv3M_k8c-Ohu#opy7}}>!KbLolshK(Xzc+DNa_&i3owFHUTsNnmxjF9T-!Lnz9}ZqO z1Lt4;CyGDxSwww&hO|7B?T)vsi~G_12Z~suO7^zED}PLt@auR%1k=07)YRu z%bl;h@A}+y7c5sbUIGI6njXk;nMMyFD4ZpAb5LXN<^EV!;KTY1f64OXtYJ~^46vnV z*U9m$pjof~TjDAMxg?CF- zCq!?5B#8KTfitdHGl`ylAJj!dRs7L>Rp|YF4ph?S#G4B!&;`G;Ub#t-EwooYR0~a3La$Nv02T{3s}Ps82@f)fB1k>SG89&%&!vw zJx$ebna*!#b9DmFty>|-lbkS0(WBkv>0#+Py+(3^{jaBrhvbxM@z;G} zHz4aV8)-o&<^53qz7;c)NDn?*Kv}dVrJ0Z(N+c}s!$~eDl{5X1S?+(TghO#AIUQqi9YUS zHG)=_5oiU(a-gYI*9q!8()UjkPSXGji?5a-L6z!Jq+=;1pC`NCL{m!o7+-H3u-SS0YFbSxXAJOJj(8mtU8Tg|m} z_gxA=&cG3D0$?6RyJc_9UGP5}+&q37ML#{4#nx2xtHM0AdKWzHXB$l;s;S7Ksq$3J z8_JKOcz?wB6n1pXO!?_tWUx z-Qxw4sB)<^_#QJ77}@AuW+kNy6s9=kw-v7=q|s6p;U7aqm1wfN`;6{991Y1ZITtiH zO<6AR;5;q@I5lBYZC#wAUoWp&*Irz$Y(I!e>RSx9N*V>vQ32>s*^sN_VRItY`rJqJ zNR25*!>Wr98%PrtGAF)*_6N$>U%O^E@cdr2fwB@z4(Huu=8Uq@+%8hlW_Po5rX^yE z(QyV$;^Hs`ZEnq>Tp3JocNA>!go%!?flG7;un{gS9Q!fYyBqY_2RG(hBEOPoA$JzU zN|})wwVNJ;Z2bd!)V2>?D>|-_V(&=o&3zU+JayFSl--`%6nszJ8lk0hyM2_e51ubHY-an$S(dyOBR}V6S#pVAs#<{VG?bK+E@H|5yJ>qBu|U`JF0)5Oy;k z)dORR6I+!RL^Termuo*ZM@$R|<~>6VevJddv?U$Wto+h=tvzOO13Z~Mxjs#fF^KzE+yC3PNCUL^%6TH0Lo$O4cEY2M!e5^8tI?Z=8>I*KUbUa5jjjzlN zi);;L39v&L8>r=h1LegPkxK}r6$_AbnFa)KnY=nOY*Nh7s-Cv9?$W^CJ&((Ufq@fb z*wMYLFxqJo*8G0}X8JABeZT>=3~<9%j;d2!T(v-7&L%wK$EqsWOTU-WjmcFzSL)mi z;a#rY=`alZmO>ELo+|AyE9=q4I*9ehx&7v>=z1w0l~n|^=HJ;`5H(GY;mEBMPwN{7 z#6WAjGsxi7jS6;$q`B>mnLp@!XBJU~#$^sFtF-9o-%JmPFxG<=om+C}0V8*^b8~l& zi>;2}c05pp&Pj)l+W*uvI0FOh110w5j8~tjuCFImSrj5?0&iZ%#=cL0xyAl`2Smp4yYCF3fC#6T!o$k370Z#I% z@o{_i_60hBiBwkcliDnnz|AJ>SO3Z2;W>60&td(hrklh*Ue1OcbxER4UV}pMAkzVM zIpkco6r*||_j$;O!sV>o`DRlKVjFBCRqzPy`f22lTer6ZDL0VNy6}TPsQrOKw~e-- zCo+Yx52(38ggDzFX~)rUa6O`A4ZdgOlo73v%=|#MO~jmH=Mo*5PD1$&p4yzo0#vrq z+UF9Q({(gjf7mXZb$T78n-E=Pc~?$UPhzze=(FZ*>ev1~(vLXAjezRAr4}{}%nA6P z6`{Wv*=4xK!`Tc$&G%3iUJ6S%| zmQ1RQdJX>r*Gsxc=>4z^YG2~d@%P=3AlB?ucK<5=@suolhQ6|+xN6)y`|oL0SDScc z2w3uGN}6#NH+@mA&2fsWUe6Ir?A%F&SQo3(6kL`2J=o}fa0~bD`fT(MZ3-$x(Oe!x z)Dfg4K_P>2$nhtMAhOgAzpPNE2LxJ1i6t9FRg&Z}yehMHpj_?K>)Q(ri^j|u?g#w9+v@ua*y|3 zbou0@WdHEAB4thKRvv>9+N5rRF08fKsas6mP#uhB2+njk1yp%<(GzmN0&1wr;M~U2 zo#nlvcm7km%MN&LY2E_1==QpF4+F;~X!TwPR4HSs)Zu`h;v}7gV|eZ~ zHg`5owJ3ci;rFyCV7KnA+}7Tp@o^o^a|A18*Qal3#&k8XFdBX99l!xUZRqnaJ!|OO zyIC>qI^vQpUIw<0FxfC?bBxoe)V1(r-dg5{JQTXnp)svw$Ub!qQdoLh{>SO!+S}T} zr4-tPZ_FpqgzD-l1JP|i5;DA^#=GmL%eJD-+P!G4z0A3|SCMc#JE$_S3{P(}zra!A zhWHa-aBF&(-9q=*hv&xiSn|Fp`B5p*cfBdQ=zoV|u~$CUCjPPUv5Kr=fv$&AeED#QA<8t#_9fHZVJH zfRr-ode#{Idn9#t*7x0ES)HxF)*AY1M*lf&Y~-+Eu-~G5lD7!Awlc^FkbmviG64-N zaJu-_e+qG4{nVl84OSx1rY5sBL#Ni~03Hs_>}nHP4;4xCY-@Ajl#jxX(t*Vv_~*lj zhzV(ZKJq2x##bt*CW`X~iX&$orLv060Oc<@0&t>tELsnze}Mx9PY})ch_@WG<0?<# zBtnf((iwY3-RfmaE6+-#VxVbAQeN2}rr+#$mvtB*;+2j!Gnqgm^}lm*e*%X;%y7eK z2u{bXIN`VO@NrVOcDQ?bygR3qfL!$wGH zb?jkJadJTDB+zwlurEAYEq`MT>J1yimlslg8k9G1d;d2LrNeOVI*h<4mh=(FxR^%| znyQ7|N>cPaMYrNYdW{j*6$*r>ofUq?@WIuCLJzGmwcKaY*}WpvHOwkor!8z?R7Oo3}8>q;d(g{HE^NllB- zoJBQHhcA^APr6jTEC*}}47ue|VQFh=U6$5WVE8ZiD>JU)NEW)7TfE`+Hlvw>r_Pwk zYqR5vc3Z>l@@0a8Wm$d}uj@XwA?Xo?6zsjS$dPdCB6H-YH7FtTGq^It(8O$atbNyO zivfO&Nz9A29iw%|@te4@Z1RP6%z#w&HH|$PF@KF;e07$y)rzT3flEKewpBaOZnK$R zS@HJ?n0>$uekg{R?^tC2S@y@@;dcjs2IVD{iCn;^3Kde`77-V^M&0^)*`eIGhz%dK z=%;2;Tg$@HF50IpFl;#e%;-fq@8h%_Gmf&&MN_vPg8M_0KFf!uC!Y9EG>f9ZCU7^e z>gyT(C&w5OD=W*qy6VcUzYArtf zti%MK-Lu?zvP7qmc;E(RZfGxa59D=(S#2WfYW}WqzF+Sxi&^R_B0EYa z&YI>)x}o?%8I!~_&&^HmEt}{DccA0r$s}sW|3pj>MDOCurv2Cd7ZTnCWgtMZ#GzNK za6a-v5o~jfpj+U{IRs4!MT3Z!y5-sZCKD3w@1yiKh!I{L3v$4ZGqFk%5+qK2ZKdno zT{CFa+BRRbd4GHRa+vZ#lby4Rr-R=cS{#1Ce9*~h$NPLyHL)=zv}LlOv+>s+`Do}& zhNoY@=92IEi94E;pCvzV*?QaD8Ud?J#yh}rp`LLqIr`Dw*LE{N#CFrkLu`Gw@tS%0 z#t9(K96Ni7o01_*P2a1jR;T#EOJyBYwPhnY+tU|VR?IivW2;Eo+AnCizC3J*$K-{X zp`&!GWDBU;+8Xk7J%p&sy6wch#`QpSS_OiWv>`V~Y2;!D0Oy#A_2Q912#&!f6YM8nmuf9(d6yY+@#8kR9?z%PH z$_x*hGhXSj%;UhlatoM4>PKeAm!+SXFDU(ALPBK1L3kxHz_|oSX(uEJEKu`Z*{yeM zyl=dxDCXBMoA<5anQFIbCFaf_7Rm$7*+qEXp>L*(WYGXv03^F3rPIK~ zF}_R(;zask#{jP5!E9bHU}T?B2Ka^k*c6jPrSJrCqoTOoBZc1$MIoee5((y<5kwL>%{ujQfX>(T{%dDxXoA%*3m~SC!x7YIzfHM0}|9=Af zzkK{R{~z5!kq7fXp8qfYf9L<%V7_cQ!)no2+0XD%CauQw96Zs7eU9hX#Vc%1Tx4?f zQU1)YsV?-R&{j^)sWb}+)jb+V`n@bwPv=jI&J@?QGP>@4u)&)^43S^K-T&jkS9(0m ze*JuF2l`P( zW1s4-)u(&!-QRjMehd@K4nKR2o|XPmwSRw}y6^IPdI(NnvDC2BVCXTW_P9Tt>gJB^ zm3#M{wqDvw^O~s8P|K;&)Yivf6fJ4#vxKCNn$8D3Lk_fa_nFq+U#8x?e`)m7_nS$2 z)sWUaih{d4V!IgAZ8LAJlv5Yh$^6@IH-UWRBm|>6`i*=2?Mbiiuy652Do$l7;%iI$ z`Rn867r4`3mrKv?TRyXK-`o7N5w&wQ?)I+~Tvv&S_ZnyR)knkUY<@O&XKN?bQ-wG2 z$8p%>jded)kM8T^`xi2s_)SVh@8kOIxSm1!ZKdbv_f>eOcN4mt_%vOb{cZ6D!G*N_ zNuW8Wn|9QGk&6VFvQy=^*t_cVHTKPv{S#N^keE>U@-1F>m~MM^u_)o_2&B8{KnJ#g++!e5i;1+j~7v z*fj{Waj`I@|6(RrGm-7AXf1X4;pa;_dG+5g-n;2H&Il*;;*L0UyDra;)$I7ScH!ek z$-u%t?kDcp+)wS7;0twXDWXEJcqtsvW>T?>%{7$KDHRwzW(ieWq-P$NqoMx9MAamPV(vT ze;;jce6p|C8h$K1_m0yaZ2wvGd-Hh9{h2NKdiqpKuAG|P%B5F-?{(d3F4WU2yU8vu zz2R&o#!Aclzv2LxGC?o?FKZ3zn7ZRqtK0m`e!QjBR}oZR9&N=9H#NnCSn5inCjA{B zY>9$hdzRu5&j*4WOKN$F%jZ8~JF&;_2kKPpx{mJl!j)XlO~&VQ~P zCHL#KLcyc`FZblq@Wl6wkee9}11Yz+BeB?oZT6$W7h|(JKE?Un+T^x|c5u~P{0($` z4luCv`bj)=kOZZcZ8iHwl-;&hp_bP3!C$_v9}AqQjO%A#(;D5OYD(`N4@1D~v|{Uh zY{)UcKGyYx299;sy(Djahp+v|eZRLx3tvJ3>o%}iqov@_LS@v}-z=Eww;tt?X$GzZ zxfa;u)JWxa4-#EjhzwcBX0;elIv)!MU)keB7rS&m?Ky>8B5vwJruAfj!%6;x3HAsdg zVOG?G(Vkrln?Mq5sE=y}u3mB%z(U z#n^Hx^rl^-*}`Q|hu6(u2h&m)C4W1ih0pghZc9UBor#mZ-(RQ?ue5SZe-p4Hg{QL*Wiq2vl!?l61YXd!yN-tkiQ+2?? z6BRbF3eqGn9!o3*wFpE5VAaI{RnIft6vymPd_L%qoEIB`#`WO~8d#TF+#s5;5-BUxO4OnFH+`?snV1(o+9}@>Lzi59_H@czEJCtM>0xFC871)+Bi(h)R0Ekc^U)X`FQ6;@L@f>SuaJ`v8R|{iP%PG z07~`Ly5XO);mFYR6{2~!BD_VZf0)w@3<}{$VIJtUINrTz<@>3aSJKkpSL6>I0dX2S z4Vj9Lo(meu52A7*D?09d?QlnB8v#?}yFJhdY|*Ok`_sr3E=~~Xb4k^9>f1o!zf|ts zEL5vv93R`zbwz`3uV|MXXZ(~LT_`v$TQJ>tWIy z?4Enpv|6%8ZZ&5IzrNSsT|0v;9`8%c-bCRXu{_C0PgDbc5F(B)XT6fP2XZW8dQsq1 zx`SU>r`le4G;wQq`*K>HEqrsIorW7n)dqiDWcv}D79CAH#U-Z_{{+zUKfbW~uRwTtpmupsEJ9tNg;3kiGt9%h28lG^ugm@e9A zV)?contiYp;-Lm@`LeS75Z3(8!p+5=i&_{@G2(d+=1B4eiBc~*m9avdx6Yj6F^)}Y zj&Iz`-j^{@4GmMrKr~Ny@?sm1^`kYz8#l~kOUtGtDBgmC>W$tUSbQqN;<%2@1}T-Y zAi&z*$b4nP&C`&y0aqtrnHDiuV)-Wwqjhc5h5jEUBgDd`@s(aL`=O)8!QZfIz##ZI zS7~kui?I$bn^#U=*c(vP5WV{@= z$dWX}$}aeY3pnEnVJ$qdkUQcK*ERP&cTvo-4wiPHhV&t|xFT3Qr{PEzs=wx_i)}H(^a>mB zf%HzX!00s!PcE^b1)`k*y2!xAc${WnF<*!5aM0o_=Re(OaGWS*UPV3ThjW0Ob(n$m z9BX-^bm$g=cAVLdXxEh}?!Lx2(HH%C_t8zHO1?!t?jv4VS4(GzE2YP!F5E8}CDh`- z+oO@gI4>|j!401a8Wx7-_hhb+JC96jVkdqWWa$RWv$ z+7muyMF|U=qh8b=T_RrDr*Y(&g|g1}1p5o5KHmEDF@M1owPr+B@GXnp_31`RRTimm z7><xgyi(N&}N}KJKW6LMIcfG?hc_!Oy?3afiSEdot zTY>in68tVdH#2nqmf$ADQ@bz+IlbdZKz+|i#@JrIm3Jii)Z>kCNN(YFcb z2at$x(?E|*@@sgU?E!7PV}&e4>ZHy(;%?T{&oIZ_yIou{m3L##*Qsgl&an+{3!J%T zE1!Fk?P2U(2>HU(XHo0dDy#&EHcOy{ijeDuOtnMO`e?Q8h{tz8w7)FXtqF`?+8`3> z-acb^#fgNa(&1sVSEXIlUg}@{XQ_hT0*)8xSR^$^(;%{Tt`KKY9M%!Z9x7ykrONFS zl)hQY@XhWA_Wk_YMfi_A!aZUMPq}SkI8D!47nZLz1l*l z%W|IVMVB}*-UM{7qszbIR0h?_Au{XM^42Ikv<#I4YXaCb{PEV?Hb&ymeKgDHc;(D8 zwrYkFnFj!@c)laS~OQo0TOf z(0|@67g|-QxWh;j)mdW&1{REuDB@Rw*ajHYm;AW0EP34w@!~DsN?`bxXsZ<_>f<)o zlp!p$q{eD_oyc5NbMBT22S0W^mpKOs( zlNf9*p1OhTg`kxCTAS~jzR(` zTF{J$cH^mX5`=#ap#;Dnq1)oLQKSg6`l4^21$}oWJnE%3gI0o7d> zYu7G!jYjewXO-j;Ds&fpmVnkP;R(4RK-GnEqU%Ht(1*r5p7d7;Rp&`VN#r_(pb|=+ z^NzcHG<=5n_0Q3D`W+4vNf!f&&_+26bp|r;35|Uv_06%jIuzSFq}2G5i#rkn$}{0a z-_gfGR4vzRg;R2OddMqZ-Up*XuZjeov)2qlZHfsqwxebVz0>g)*`j>}aG4e{o7Rmv z$c!$e3G$Y3s>|NNj^H%ryj@yX2&n7_z!zJyP5eb+UO&F`pEY!!5EQQVFYt%UK?!V5 z6%{vqca17o6P=|Wz|0-ob&tOlJ2lT)aHe`Qf;$EJvq!eK#+1)#Yu~R0QEA*$f)9m8 zQB(J;|7^(F^@&cTz8xa{CKEaX#chOqMHF&IR4HjnDSy76m^CC6a}y=uNOwXERXGF1 zNQuvm=y_VqxQ^EVFsucPv9kU)QsaLQyTYdqTLx^+)ivw{Bu%6lAM2I|PR0#*(~rf@ zT?tY&%Z0laX*HR*PlQX+&G=MbQpF-6#lP`p&8nHPVg(2Rp+7iCzlhKD%R}-?Ye`#* zvi6wV$bB?|_kLzf`BAAgRWP;H96Mw*%H$Bsw;DOTj@Ut$hTEt4RC9z#A>`rmI$|Y2 zX(mcn*+%b}9Y_Hz>}AyWWov15JQ0EnI((vd@1AUr`RVv(_cMUZ|e zj5Y-Uh7A9!=+ZiHb*l>!px|Br`#?sV3+rC^VR$N4)Us%Fp&aUF00gN;D$KN6lOT|^ zzWINTeIyXztBo|}K-G+Im@r7a#SfqzV0MLcJJ1&-8a-(ydG3Nzef{#HaY0z^j2*}p zPSjh=j?{8kIDrP&;Zyo@yd=+ft&QOqP+;tV{rZ}eTNu1HeG^b$!Ca{1^?yAvSj7TP zfExa+(+2lGv*^FSd0txQvk%HFF#!gGz z#95rT%p>lEV~P3a0PJbyjKt~cBI&%9h>3nKEk4#oNOXj9_h5HCg#s>O;_1(w9`y!6 z2h{V82F4jg4nvlri0;ZlXF!`n^d;=Gi`p}NiBT~2m2}pkb9N6Wh(wGuqYv700;Tmg4J|KnuYRvj| z;0dB8^ld?%norEuTx23;L`vTvsD_>7 zAIp#c>@&c>&bAn-a|(pb$(s`CD^MJrJhJb9o!SMYW+%w+|&p zVLzP<>_IBM?^>UHc6__yt|vMUuV;Jf?G=D#X4xZjibd8ftQOBpi!`L;ox2S*IFLTR z!~IKt`njV(Cj%4zVR)e22~_}~TIfVbbu^(c@dDLmEv`!*nf_5IMtaI>2BLQsRs=Vh zRC=pWvZ2s%F8ZuVo>PbH<-IoUR5m$Hu1V0IPAI{m@xYs+vq%2V|38PG&*7{Y2usSn z53k$_zGT#rQF;*4!9grW zmQp94v(82%voVJb+zSfIgNGSTu2*-V7VI3IG=xUqy~_DvvbGmsufg=m{JBLl7Ep#v zu@}H5ho4ccfDZ0`yb{gh?MPqw`^-NM)NV~N)qW}-l!(lz%u|@fKf$k@VlT*elYj{1 zNh)whAhhG`QXdgVf}J)l7`Em)6YdzF!Td*I>t=Bpgfig4%y_Xg>^|- zISD3Membi2NcZ?+K-h`^CYbZ*5o0iqB7B|Z!`R^UmDWV6A%b(qi&perj$QQ(J#*I(!0B@TI2xo-%Yy4km zZ`Ls*z9(&nv(8OLg=;H>dk5=l@7+M9?+U!1Jz70*F|K?LEFR2sj-s@QpuLN{@thrp zMl?M&b~VXQv1ON*X=2&9@tdd)x?{l4I*nRHZHAGwpyDHL|djQ zX3TgY0d`I+&e;+xKG!w$Q2pljH(0LuBY@U&{r%>wK6CU`t(!uL12HfG=VVBEC~bsm zOtfy)QM@x0_ysiYr8_k=449vXETFdM@eMNY$^#e`L5H-6I}(5{w1s7EP|wwWEw|W- zTok(7$rW8uvd>gJ80f56+5gsx;)5LMXNzu#lDpwntpmMB2j-DcE?GK@_PLqu;}^T{ z*n1_W+nwvGKOlvycU&%^h;b!XlZhq#C*(yA?D)NF&004h7o+J@Fls0+D+uvCEF$V) z#7vZcBqYa>rxh_TMIPD1uGwN8DKwyrK)Xbwsh^wB(ceZaa<49Np&w(8z@<3TV18%i z7b{AVBa&=fwCb&Rdp>l)GbuXIqCPX+uE_XZCSgqez?j$d#Ycd~P9*0^SJ#4d8)sP3 zd_8?-+f>mDB>O$#?`$o@XHrc=7YBpTiEdG6D5Nd0;Q&TgAO2U!hB24X+)3z@;KZ+OOOr>lT_<%7VL7A1@iM+llN~ z&3kxvej0Qwvlj1L<2d%ER)Uixe4XtZ^+O)uu6doyL>rqT!nr#74u3&LQ>+}ga+G&J zZX3BQxh$4%4WZn570Uf#wu}quD8eWj>{$-}`SeKF92nj?wWQvMo9e~&puGaT*}(?u zjkR?qT0N|8>5_um`gPFh6SOlOl5WE84pJhGxYQgSzTVy(CY)%Q=Q$JOD!OyhOnEt@Jrl?eSK77v>P;tR7%?YApqgn$$tG`y}$QOz6!Ez+Mi_yewQ>-_T9PEl) zkIkb?k(I(Re4&x{stg)ymJY71w`7<4(&l}R(7E}mu+C@#o*kgc3_)>yJnHnu52S`Y zSYgXsVG>Kc4zR|u>oTu6rYRL4YT>6;iVn^KG3;_WAF*Y|N0H5&Y_oU#L$YRH-iA?8 z%dpef(O^mz`iRv)aq-+r9q|tMvzHqAh&#th;%%d}147!)&29RkWv! zkyjs_(JG-Cj+frvjCobq9;rYE@2u-S%S>N{%g>L1biMxub=P1doA;t z?UHfBhe*u|hQCGpRa*%0@cDCKv3%vNdMVcre3yc-nmtQ*GQ4UD-!{|>(PUV^lwMO-^Qidsnc%hf^$khc`J(nrql#@J zjc_0B4m7P!EKn*Y`#aB`r9jdK)ynLSlL=*CK$TgtQ;%Z{;3!a-$!Q zs5m)9dC+PUarwd`HxAAf0y__V?}*2ol3eQ=i@syL!qXe`_BTU3@FmleL%%^|$|)nP zF*)Nj_58t~(>%kJl$KN3sY?+=LVi6`6jVIcIh=KUn-QhcSLHV9OXW&|& z5UFZR#kDiz9>sVV`vQ!USF`{ClWwR|0Q?OCazO)SOjzQ>p+0NYq9?&P(d*5i9!4(y zbog|CkV#@cj$nb>-ggf6VrhM{udy+jwf3h=MmVX@M)QDmU8MF%oO ze@79W@5!2b_Q3k73bx@e`eIe-9_+*GZr|JCE|kRZpQD&GQzX%`8X*bkYmV4}*%*K^e zI!jmCqE<2kBu*d}=@x%qwLd-_eu~UV?hGcN0swXt z?jZVQP|$vZB|0jT_vc4&_Do!oCTs>onGzGDeUj|`Z!e+-AG@E|6`W&5Ku(?7r=g{q*_Mk>3Zaq z`u3G|l-t9@+X!=w8^WQGCelcX0~~7s^g1e^9KGJ$%H!+DJ=q0BsstNp)2M284y);n z>|0fvvRU_4cyJHY_QiP}6!@hap;`kVa8CTNKsfV^GaY6-3qj%<;q^eW+&{Q6eB#>z zAKDS)_B^ZWELMQ9^$nAznJBYN+p}XRNSTjJEfF!m7p_7d16GOnUv99i6Ntf!G7r9aPY_)iCiP3?5Oc@N|^wMF4~Pin056p zS_M$My)EK+FMyDwZ@&>GjzIA=R;FjznB$Gj&*uVDI)8DqUU!b#x0?oY!*gvesa9X5 z?I`S4Z>bkl$UQws4B1gwcS_(()-H~bB@VbMPIUL4Fk&1Th0mKvKh~bBg_05z=#jOJ zG83TS0?FgU7TnQYhS$-Zslxkgw}^mJzx1hO_{PeZ2KqrfMC;!LCWCR{&;z#%0z3qi zLOwH|d^OKA!J!?=Lod$@#bB>Y4ktzgK+fdqvGIMGqc04HN(rAJl%skP}mY zzE7M0r6806JH%d^BMWXXb{OW;=9W)9PsZGz3DHQQftHOIS87(o2%!XUASp(O!&U(w zX0NhX6K(9(@?GccnoU8Ft~AGrX>PDE&(>i&%2AWfcTGvuO6*$enMzYPRSU<)J`TdC zVuQw)?u}$xfhIt3QcU)ews0?OxImjA_BwQFQre{24XE!C2zg^qi=YHeH_$VAJ6hNznpWf* zbVPUl{jdHD07EwzMVW4H$#(Is_HJ!0j(Q|kvFp~+YnJVTNT04%B?4j+S-?7T0_C%! zg*rqR#G1Y?x7*TrdG-P8=%LiY;O7#b4q!51`U)^PL;=jjMq!kDL=7LiTL13#CMhEj zs8yadqdFAZ{@?^ZlHA|g$3U6D`>mj7xS;J4-|V2%zw;G4N!#)D-H`zps3f(lZ? z=*tT(OdQ^eHI~u2rOgjZ`P6?r*dR;T8>rp=^GAPbd+{9>*WX|#6Di&EC3E0sWOt28 zOH;HriWY$GCo1;U2J$GSmp5dIhDrwa!kh?f&n(&!?#?;ELsgP&9k6~Uzs|o-d<3n|glQ4TR-C1A4fO+*Nf}0pfXgJI zYTg5IM8oO&cDS)lIU^C;tr(YPeRmw-v*i>oz3-UY>)YBwu_#aZdm1xnHnqy*c)CD) zI`bjWYRl}CL)SC-rs80iI~PE zbkV=r?(H>ZGSw`g#Q)j;`>o~sR35$eJ%Q}-g5hC#qxVH`u21|S%VI42c|YdZPrt( zRr)&{o1UCT+68TtD<5+qLRLvSeC8qTT%>f=hNq7R%HIb}JapcKlh?BL{KO90@AURk zXmHyzdh}<>5v4b*<_+aDP|8hJdP2oozhR1uOOeTqXV#H!y6rzA&f=_2% zR4F;`yfneXh+bH(NDRqMkj4`1ZC_%o55A3Ca00$NB$ELRDyIurwZ zoxC0;4b!)wY@M9m`RyU^bR=NxYrj$EmQMgu5oU{eSznDYU%sTuHLyRm7ED#y7|e*= zm?Z6*FyJ0{#oFQT@_JsXvB&zx|FUX!0C?%T>SJ9$SmzyiJQmKv5TarMWa^&aMA!f6 zltroft^43*)`0>=`|Z$gShIeqAzgT9RL!7feP ze&-NFFCZPwDfp0q3MVo>QBK>MuDzK|kp@xhq&{Bbx?##O^Nxe}FBCi>-za+C@x$5l z3*GO6y^ai2{e)iEGTQtkeN@X>_2lv;N-X>pmeDZJZv5GHA`qM_q;2MyQYunXZ_KtF zAyqt2FcOYDqvV=F;sdcCLl1ECyorkVlDD0Y!Alv6Ylh?uUk}oxkb`9+S<}9ZsTSFG zIhHmAtYqg6D5&#wyUd#Pxd{F@kO%lJ)GkS790aV{6dnP=FgbmWTs> zg0n;==agx@t|%2T7QL_ZFWSj%Ghj>@$;KNn$GkVmZp)YDLJZ}1LqMaK;x%`vz>|~o zEMT2sAtVBHEe7;sAY+wEGJ(K@%7)J~J%YY#@ytEOqq0T41}AzXc|yuk9K$)@#uPa` zr8)4AhJ0uba=re96kej`4%EHD=SChzR|fiF)JJMuc-})3E^XST!o;?5%D=Z(i64y&NiE*YkOPu79ZDxNWcruP!jy%_kxMYl=Ene(9F_}+x;n>qFc|1 zLw14V3~_D?{;Ky}lI-yspWZ7R<`hk1{OZ35+%1Qka@qo}ad?7(uFuSvgpKpZewJed zuy*tQNP%q|JZG;fY@H|0l)N2P14kM|rBuwy%EdBUe<~n8St%1Yo$M7Mtl+?3FF^6V zqbt)ndp$OnesgpB`4$FV^uog6f@CkI6o`dcz6wzcVxSBdbC6>C5qxt0!2d(wj8{~` zDnU-Vuq4|#X%8C-7@SECq7rx1$SH$c@|GzOC=5jVCoRai7T%akc!hnA2Swf0R#9Ee zuhoy>n?V!bbK+gp3uhe#;sLV6rkO#H%z9Mv{NumJ;y4 zAOHSm8Z)%>gz4Pgo*^u`@0p`r+JQ=>%dPhjVXamO0qX7047$Xz>|V~B&DWe)=b%f)dD-GV>5m*8Jv6s)C(fF>YSWnuC3%Y@8|wS;+H4Qv51rs8kx7iV+}jX6 z7As%G%Oy}vU@&1Dj!)39&&kZGma2dJ$0s;{HoU|{jinofz?AY!l+`6D%3F;xdj!O^ zs$dvIZzJq`+4Q`3aBH@^WMiIQtBG?TdUDWSYw0Lfso^=?qNqcbn7W&)CNZxWKh;q6 zPcLdsJ2L!mC!XFs19ke}PaXW*M;)3ARw;VHcV^I!8Xi?}?)}6dxN(e%>F%f%RG>1_prDX&+US9mk%sw2mR?_?^^dPrhYejT!(Q5E2jC zZV$fpY-e)dtKEA+SI)}A2DaO8Pf`(lka?MlU1m2n{ATGsPhQ$vxI2Fu@j2P2Z|F27 z{>J1Bjw&#P2aIyhH++e?1vcNq23F1%6YR}&+56VpTb|hg&Tc*tzHnggb*47p3U~nm zAyb>RSnjI?xUk?O0abM{6g`kD)<;KYd_nd&v*zjB8O*3sz=KWDzGL(JJ=&butW45J zT+|v-xvKD;D9nNA(>Tdr&3k$%Lmfjqx-i}4y|oYNQdhOjDD;@Ckg^k8GY==9E%Z#G zHHDQ1$?pM(dAf&o%K$Cr52z_ukm-o3l6qum zxu+;|3e#+6AMdN9E>AE(WTel9qUN#}6cz!UT{|t`$_DxKhxPWUN`!_51bTXPSp6|5yLTbu_m8s}_?A5rufezy&2LYiUa-^LmpeI$FO)md&JHoYe88vL2|H zLp#1tmtRF<>%_)>2)3kYYid0mg13R6x?l)e2xQni5k`Z@cUrKe>eKp>)Q3?_1b$w0 zpT$E{a!o{AO^&h_vW+bu)LCzUpqkD9nqTkGZZc6%Y3-%ziw0fVZ%aC=tCeVsI_T)| zXg29RhYNdGP0qjf8;v(Emo}<4cxy^>47Xz7dj~tVR`o|Q+ptS)l$$=HR2$v?uH9ZF zQi@4j&$01M-=3we`E~>(A5>jn)r|0AHtBL1L~O{WmW3Dqq!RXlIIs4)a*g#E9=|6q za64Ip(AqX<`npXn8KMnS<{bKSRjSSUQ^1|@0g3-(CLYvs3zAIQlX2&y=jZ+8T&k;msk>W^VJ8Ce_bLE^`| zg6>=|t_?4FYhoanvClshXM#3XRyQuxBBE0Hv&KzpucGSv?hC9+3}%MCkJRF_O&f;I z)sWucp*zdRcO4Ag#C2U@kKS-r_~)O(zO{y4CG`!AFb?bDk)F%Gp178KG*rG!&<1s# zkEPK{s$gSm7c0nuR2vMX1oelt(e=?lKC4fEH{;j)85e8y!D6%1)cq@E_p-b((loD9 z(UH#OlK9xzfsSG#52n8OXSuYlrP!0C(pINXO?ve9_U1}as!8j(J09T&*Z-Xlt0@W0`j2CFpB6 zT&#)rxpZ?3VN=Vx;gKbAG4|1^Z~;}7Nd%a9k5ICe(6;S?zuU4qcWvy>Ie)~8co=`q z%3A641@ID9jG=MW^)15G<|*Ie2y47PHyhiT$0E~54Xw@t>uL-${5^m&!0b{cp7RH1 zS$)A^>y;2M%D4Ttt6@UxLqDDN_Lvj~&_3Iuxq??zWs3XV8klNyzZ9MwXdm0Qr@iz9 zyEJDAqbr$>bgd{KzM#cbKb+l=5Pfu@S6l?ERx@MRSvf~n@V-g=@ig0z+nA@)C4vA` zu-p!$SPpZu!@AT*rSpsaxC;|JfzW=VWxu+*XwaolR15?f^vpdpFtTpMm`+aWewu$F z0=k8W`!QN2o}uj>c45x!O4|6G!f69$6s7GEz9C<>YyV-Da35L|bFpG}5x{W&lW(zs zQgEun!+iw}WPI+6wBm z{YGZ&0><+O$J|qVU}IFBImlDX|HiofI3(HmbHUIw>jhJMI4H>pw(7z$8oYyEC&dG= zyBu}_7faUPR>mfDuq|oF_7@5W^oYf2-gTq9UcgBQs@Xix>suL0+YF zX}=+BfNq2({uEJSolAPaZsIt7Wtv!4{4bF+0ojR0OAKHzSZw}MKbZY@G%8~qoYgDJ zm?xO~@XKE--{DiC@DpGR_HX0D#bgcIfu?*!F|#&E-wVa-4Mw@i3DzzowkhHphc|q0 zxPz&n?~^M~zH1X$0J{T~qV*}8!(l9!)wp6_q58CneR+5;5iMxcv_(1KPh3lH8N(_< zi6$3VMk-i@(u}4AfRB$|I;b)szXEEkNSv414WX;l2u~?o|EQ0ia9y>W^RtGWZpARv z<9uSDKQ$>2OATkU!DcdRb=w|@2se+Lq!e&MGcg6#PLND`R9 zZdTuHB0SIU-oIi8;K;fxFdkjZG@%Z~_ZarXE+c2N_tk|*yr1U+->u-h?iYEed|T`m zo=RW(vqWWO<3M!9yC?xt3w-<8Dw%SB7F5<2XL4PCZ%V*|LF+%Pxj~}^%G7NEC@g_* zv`_rabCCrI)9_f?5HaM|GS_XJEtzd$5jhbR$LFc#u#Hpj;q+x6ey#Wy_e0=mBkuB~ z*>|I>YANFgNB?o6o)zGti%w<&sHAX5+@`Sj{8u9ek!b0hwQcP3UqgdJ}`%>O>xLCEfUi!};1}lZMq2hEmUQqz<3o zk8ML1JNSb!-D zK)~bE;}`1|Bd+u~CXOnYIP!t2X^!m3@N6c-q)eCbA=>^i_WleHK1I7ZxUoO%) zHI#%c1U&cs_by&5|Fu{uO%}@djZtJ! z`=A62P#A~s6~jUF?247-XYoI(LOIBCqjW^Ma*1rfD5_~(dzw*GqHMPj@f$b9XA4fH zVM#K5X#G-Z1DPzv)kZPn_B?~v=i4zCH~c=mJL@6k>s6o*<7;kT3R^KEDmxS7}n^lRxK->jx&^XS;sN`J2aJ~UhFAuAE%kHq5(Z%B4#xahXmIW=SaY0{G@UtktF5! ziqJLez{DE{RDBKa)@k-+L`|ra;j;0V z2^sccWn&caKQ|L1EkT9ZtNt=Q9rqO~PQkJ(3{sCVf?WqdNtY7!;p>kP*J^ztbFy0^8vQS0oDo# z!nJ`!3>~T3M$TS&&Mdq_hbsvJ4iRFaVzO*k%`-JjrJfd;_kVV=f?~PuH>MdL;{Sqr z2FqD;wFkw9M1Jqz9dC}K6h$XBSyv}xt{BTe*>YP!$8;m(iFF0!q}}tde#NyQ{eq^u z;e4|qn68K40k=oA>g`nMrm5MsNqbttUs8ox>k8Rzsi|rqXKU3_e^vfs2lJ59^D}1E zdN#UyBBjJfqw=;uj{enuS@5+4+-a7Jc7-k2x|nXCyp~5wDirag>+8GCqq$1;xlw5` zzwWut%{lkoR#X-rj{2ifTo`A_Al=Tv_z2{6K`sJR99od{P*Vh);5mW8O_k4s5X#)? zwidEWKfdHNo*k7_!XGSL->^UTrIAc)M!;H!?OM`-UT}5zt7eVp5?c--MopM= z7HS+Lp}kMf?_#+{vF!Y=0>&^kw}s`;i^6}=EDN=hcU}D(Oy&VEZX22se8#Yar_Hrm zjB0iRIqNAFlH9M${n8kgW-T5Nxte*~cuh&5q?Inl{-vF``MKa)cIH zQt2jgNaPwg7imhVq%-!@Sqw3-okgu93D2i%Zjr2Pe4o{7NnF(s{JPSYx|w2dy8h>R zSHR(pK94D?trYWIz2htx+xE*DuggtC;o2IdLAJfi+Qpa^f{%HS99xktf@dw5AJ8l9 z|Mo;xb*3?bPji;0pstCK+bd84h6*lWy8WEZaO4-i)OMu61Nf?nzVv z%?FVX`Xe1_L6)>hWo}t!_NzimAj&;@4W}BFcOaRyGcWgW*Bjs(x2g-e!m1r3doB+d z;xVLY4mayLOm5xeFl60JFp1k`%Q@M?B)Oy@&6Y<{vV6(iZQK71+2<~btO|0<0I!J= z8CjT;n(#=rfi-8IaFWSliYftOy@gvB>S%DaqtVHgvqUqCBFk8jM34>5Ct0MnZ!|cM zSVv`-=1HByz(9c_E1pQeOd8ca?ctLG1ns9N&uLXh^LqZvF*J$(J*rNab6xs&jfB{# zbQyrKRK8bz+^D_~>z-gt_7zebF>ku1e!pFp#6LYnD9rzXbXs|E{4e6pK{=ElQN!Vh zZJ*e-ZQHhO+qP{dC$??dww-MDR_!y~shJm;uCJ@{V~!&qZ)Yg|;dE&;oq$$~^%^PS zwdq{1cc4m=zGh&B+v_=d{CM8%C!M5Dk;OHJYf#Vf$QWGvm2v2)idg_P??yhh`)ZpN zX0G8`>_SePB@YY4o@B;dgi)XIb-)1YZw@;(gd;_l;1<9*|NNpwX~Qr7<%%ah^leSSCMi11YqtI!bO8s;b~^;0;>Sr3P5TXmw67m7{;zncW70qf`< zUL9|GJ1V;kftw4XyXP9-&|H{B+E`p@uhj_4?)xXLn~Nv_2<_I2lThfTXY*@$RsPA9 zqq`2V96#43qO5-dymFl7B?YZLmMeiiZ852ThWvz)y>2}ar%_?s-x_@%UZ2(^TN?Su z`EB7D?eO4R(X6W{Y^Pj2SnIYFK8KRPlOctC75a zh*y);pn+C5fgKdl2yZU{?Pw+}Ur;aju|14G05+TASlzk8#w@zN&R;qG{8N!uUK}@G zERJG<-!twYCo}6Z#1DJtZ$0p4%mlJ4Ojc|*Z}5ylC0B(nB)8w+V%_xSv#`0nUGj5p zJoD|g6w0g7>uKB&Do8u~N(D3h-rh?t-%tWgG>a5Q%3yPp++25Xn*lws1?MeD=D?epQHg!<(%h zQ*1uMV8a~KgQG;{zXjFPKW~8Mj3yD8kMp;;Z^Gw`A(BEWvXYsIgweRQU;uiHcq40p zE7Hu?(EOgNJq~%KewCkF5050uWfu+15~rM^_gHot8qX(yq?{lhWDO0s2089KO{?`o z+q+mAi=Fow<4AfWhG!9HM8q9fDp>2Appddii`g_#gJVX(RsK^wD*0=fx%=0Y<+J+- zr9{XmO2QBTPpY_F3LP|XWj)O}1aoabjxuVcq2++VxtygeX(d>eqv2k;6{)+W?vgm& zRdZH98r=%~6k&ebRE1HOp(Q0@%j!W+zf@y+3BYUJACCyRRky06;&tLe5VK`_x0>k@ z=Ocz4WLpxOr58?o@Zoe$B}0@xP#Jk5?#y2l=1YXZJAj$iARF~DJG++jTTjChh@$d7 zxl};H-*YA9y4G04w9q;^^(Lf^x3eR|vK#S?d zQiJsLDwf{oOFPC}6suJk4)Cqbr!5Q)Eyo#N z>k&S2um&oT7?f56377vCcBn;8Gwn)KMuG)U53R5Uir5MT?%U28M;o^hprZC!k1LYn zm>pn~L>neALSSFC#I$XUTa~aG+b3ug!m#QQrB9m83J^7gbM4z)Oo!z;^`iGfl!KrW z{Oz6j1D?SC7ao0JZO--h8wa~-cp7oLW*-w8-2|I?(r*?S(x@aZ+|p{*V5Tag*+nAs zboBxf+_qIZh!|6<7^Im7lnOD&9`RZEW@s+$xV4Uxyo8!Nxpx?vKKSjZ{8>=0St^ zN>)A$NwRGF^G=9kPfggGRv%~C_uT2-WZGBPwe9u=EpAqqjQj=;X>0!Q+Wjn$_W?QB z6uDQe)MtGO84_aTl-P9@;_&<`#vYPPBgo|9Dvo8uF#V}AzcWq!cNcQoenNy=5lK9@ z%XGc4uR)11DkrRopLiqHj9AV?Qd|;IhGJ%}$|KmMaUF9a7ed;4p#p45Mj%WsQbtkz z#La9kvxfN|o0J(u>q8bDOt+Uv8jvJW%4JN%k)8Ctn%@{8)~K=CoLH-rq+zi`61}Hh zeHQ+MdM_?>2nQWw6OuUeqYSZg+W-Su_^zvb|7Z!aHc*9O%B+x4{o!K#YM;zhuMZ(u zD&2YJNn6P-uD>@dJTO{a5@II(iNWnySWRkOk9)VeLRb;~3Q2Rhl=Zk@rC60?;l2=} zsbY4nf`ZwP+h#m*u!27eL)uPM$ubFtVVe?_qZCO*e>X>45&QuJTO~9$dLmmQQF;`k zHK2Y3Jd&l0n0S7Qe6v@C(0&bw=H`%lN;vcrFyZb1WSvtRB+pCl1sEDeg86VVXk|J@ zc0jBto#Q}&66g`(f)`HaM(yaVN<2}qLoXbiA4q8!k}1Pgm}H;%P=wv%ErIw(4es(_ z9KD&Wzw-bc0t(?g`xM!Md&UK)(^JDDM_d~Ni}-l!sNaLbxiEV;lH^St7v$`acmm1p zrX`R}+9I|YFas_fc=v9*(J=mz{CjaapNCx{57k)sPv>mMGV>0qP?0w zNjl)CDTH|abfSWNj$bH=SV}*L*ML5E6%(YINI9dL4QL#pg8+D#Ezo|@i3EFhjh2Iz zIWoMwidYW7I`J$(GwQ6m{4OL_dhv4o*cZ`dTnCH_Xh<)TWv|D4ojE_Lx}12HC1&Z< z*jP%3w;BX?JUX@0IG_0di-8%Fu^YYUoz#6*j1;ym&`BQnwK%9znsP({=wG(NUc_** zAQU}HO?TD{K5F-R2e(`;iU?c0A5T&B=9V(E~f_! zaBj>7RMne zpZ2mR9M+G$gHyotTS--mhw=z=%uv-7#;NNPhdG3+)E^0>=y2@jB#udbODh8$!cm0# zh)pO6LrC1L5G;J3X*IqA^gs(wQZdWmb1gmSt*h9OjWVoyF~SzG+h`|PZS5|CmO<9j z?=8Ai`$IIQ)@QnvU#fl_AIxz`pra+*-=Q6;>ILhnkq~1nT#OgsH>Rs2%81OOtQah3 zm!<;*COVTc!KSPX6i-G^aF}qnIuh|dUWoCcGbyFgulM6cSJms*cXu=H4UlBa#`8RE z#OYm9QS6-0uA{;SSvG5}H_stXdI(yv251Iq72VlgAOXX4jA0I!&Y(;jjp+D4YiK2on9_+%ve(kSY5$D`s>MtKp!746b=YDA!NalweY9Yc0fCwTL7$VIy4aM ztB&6g^Sgyrxk7N`31{uZX5rUCY=-OqG{2e^d*SuGtM*(y&Kx}wE%pd)vGL1)Reg=` zmRFV&;=U%bcb3TX9yQg?=paHJ(XfF@m1LGaQ)Jt|hP;7uj>JGLvpvZ3i9E}3R)$m} z8;N_yXjT}Nv?AeQIf;yjV}d?hc2HnJa|Xa4K#xSdoH~a!oD4Py68uCiBm#UHaowxn zd+bU0N~VR!Ybk746-;L$X_WYK7PqhoqGCPABCR8uHbbNl;(E!1ML_O<$ipVkV##w+ zV_I!lV}+5(QO#$Z)na|8x13U0(Z_zdN%4*K&AxYujU7B*?_PS2cqF;BL>=aj?h7!r zQ_4JAXw&SE7H!a5E~WUWfm@4`c>Dd8=b6qR-`g(ptyk=yEdRF40`KsdVw+b5gN{6j zy#S`=#GBntN}TO{v=d8pgxNjfF9jnj25NoCqSW56cX%W>M4P0|wc}7_>#$I$Fplbf zSc3LHL`-Q9qgJGp=`Ym6Wh+X?6~6SmhiH}FwOK^}uDBJWJfc6V+F;(bv$Q|c8O3^_ zH2G$?kv0Pu$Dm;Oaa|qFanpG1SR*K;xX`eaBi4r_ zm6NCT9}m+LGQJ84Z)1+h=Gw?agK>Nfv!7>IE}I77Au)a!tmfeaJla&)c%ogD02P)G z+qJzGcDq7i4Jabe7KDg;jeeGBIm-a77bf}e{~Ms0#9hMRxQ|-ZX@Et0X9ZQfGf|<@ zqRfoTP&?=Vt`gzGtE01>WeY^fQ_I(mK#oNQT;ICQIl2K^efXXlz3Y zn|o{EIqh+UmOek=&?N!Tt2}{`c!Pnim7g#u*3@FCknPNjQDCC2U*Rv5tQ0J^IPM*p z|DPbI&yguYQk-#GTTAc*%Ipc39WEWXHYLDPLWm%d%m0V&&xJUmF}PdrCP< zvVN<#;*R6#A-VxBDi3=?5?FIc>8kI7_;9j3mB}(VTTQm8F(BMdDhn{1bC-c+b{psTNo(O;~ZP|8~+CC!dTg`G7WGD+FUmt z9K8ZrdZFKoonrP30b(gq(aQjCX{!|jm1UR1dUAiOS2)+SdBsmq0Jg(Vz zn{_0Ur<0Ex*3o9;tEU)Zg)Qn;#JCKu9$cwhGc`$wN&6|pU_q4R&Y3BYFpY&_)oG4Y zjbAZ{miu1`31v}?Ac`<{R{uH|2}mX}+4VZMEfiyJ$`h@|@AhmP$vZgT78ofzDnG2$ zeVVCw4JI03C7h!tW=sxE8Sfi0-taTxU-0z44z0y#>crKDiyIO;qA&}Jk zJ7LoG@u6@?lZ<~O{)jc8uq4$|#UalA*>W;Gmm?xgU`y$xL;i)r<*r;jjM0=(RD5Y+ z=YEC|p+yxdZ1u!B2&o%1QJ5V(rt{>U!mppXqjpZn=HU6Xb~!&5`F^xonnLkuR^>H~ z@*aG)NThEzui1~Dk<-TOSP$L5ShoElr)Hz$_>9@@#f;2V64L9cO6&*l)rE5uK;M06 zdhO!ccCLKNW1|SnULlYjmt8IYx|DLxF3;)cxyy52C_dNGGJ|!bnYj2>N9$~-?J%v9 zPow!;YEkHJP$t>F^PPs?ETZOxsUFM*1{0SA+thUxt zKJIHj3{2`Cmr#~x`UAYWPx5qOxhg+F!{dnqs=xj~>3?C4-gMvwz;HEEivglDMG9JX zS0dt80NxIP)=l9r2V{hV`RC?cQFsM=wZ3|FKh|T4lMc3CpQe!)i%(KZf<`7su^$LQ zRU?WQ&2E~!zZ#O{OW`hT+7;+=m8$itXR#$xQU>om(kLV|%@h^Z<0lOfoh*yt7e&>} zAv()s2r4EQ&B>4%Fo0^Znb@a@r$E&WJDhF z7lQFoAa@|^?|>NAcz+8 z?GeKwQMOQJI^2Rs2i6>N!g(f;sCSeNzHQ^Ni6LSh^+ADuHa6;OC7d5m`3P>FQ!C$v zXWRP@N#CE}{%-&P-AB*_U`1Zcw1awHz=tCWZ=4C9C~DYs9z7qDsJXtHWyp(x5ch%R zik4n|>lLQ@!3q#%8!F^t1&LQbZ8;>$UW6Cxl~2j;Z;Nc35KHL0a@bC!9t?zRZ&%@| z6B+L)9ln`=mo~L>cNQa4`xe?p&^RFn6%v*rP8LnVOJQ4PNEN+VAe@tfR7a~FmR-p{ z7E7VD+e)rbJ$D5Ji>$zc-CB8pVNb>0Oxvld+85dQ=_bAAP1*BxiFb+#vjLWw9u+kj z$mYy_6xsaWPtYk%O4~G7p#&CSDbs~2a5r8i z)e4;HBUq4+2oBu6ssSy&N0EMoGtX{(^{`>v-~1Z%6Q$14W9r`D`;=HA?`usVY*I)O ztK#X3xo~FMHclj3kUX9;_4JQxj_@UlJO2ODP$#f@z4gb&&0Or=o3$LCcfR@7g zGD`3)x?+y{+m6euwWH{H>va0*cUihlRg-JC+vHXnJz+z!gBNpLd9@a3A`KxN)c&i< zjmV=@egk!3b4=EJ(XMLWgMS{2^ssPy4mMkS zst4M1yY%(5q<|_rZ`ZS!TH{$kby&@WY2Agtjti(Q<*GTq>o4i%YQ6bE+Myg+Ga%*L z-}4vAs0}R9U4J=y0L)~lpQ&!kSRE~ccqP3@@5(sdTgShEs+#mmyhN!=%EJExO6OlAe-x=vOM<6hAi#|-$hns8S2JH zi~{72*HvMWO`j*Ri+UsL`qow6v28SwV*5q^!xH$LKft_J5ctvh9M)^x?vf{?1dyM9 zTy1Cmdnf@nyA^TSD%>WRE&~e{u6H7K=^)I+4I{{wq&l*u)MP^Ed9xU`}0z`VeTmW-f zyO|!`zn+4939V*)J@1JQ>3~EENM&z5wb!ve(dNEBBY!}vKXM8G&;JV$0r21V|Mz)j z@y7-Q@V~SH095$=HQ0KaCvJ!&oVxx%T5M~`r>`<^mKk7orL8io<0doRT!uzF*0|xzV6kU&aE9e zu={%0+k1O^`%KMD3}r^H^yqdD)RT2<{k$2ixj$^uT&+FO=Db1dXiJ+eu>udwQcd)4 ze5;pIeL5bcQ1qMTw*IK2*!Hk{%1@`*G<)6uUT#klAn|xRHap#<>>brk6>BKjyiM)s z{JaX~Xfp*)E+&5*OI4?&9u++7!>L*{J1m@r_G{@>R8oTR+H@L@zfBdmIksJPKA#R9 zgds@e_WCB6t^A!ZV0Zo*t!4DZlAgdntNYeUYHlT2gqX@k zb^^VuTt}$914O3s+|u-o*IVvf}I_(*E(cER!9}giAK}T;lc_E#^b@BB*5`o+c z%08T%+S?T(Gx?eUCQ=`geSkFY8vZS9-SGV3N~`=cGrV`$0xUXoE60Z#*T@3feH1uyMvweMB7WiZd^N+-L3pZB(y&Lr3H zMWh`yLVZ5Df4~JS1~iK}16U%hFpu;C@Q?@!L(k~+nt)JU;D*m@}ED}3rFUtq+F z2eNkp3xuQGE1J=pC|c^UP$2xDVy)JP2S=fm#z=Qx8&5_{@h_y$HnJ2*Irue!F7+}> zIDXgD(y5Gh!$rx}-X{NAyF=5VrOYyoG(fqZyI6wB_gLRvuZM|;x63K@q6tvH$0-c< zNR{Lc1;s4kI-?e|< z?^o9aY2klTU~n0eq5O>{F#tPnW+q}%@t55@w|GJ3$F04u)B8LT&e2@P7maEZn?*n` zt6P~NLER89Q>mFF1x8ftrQ1eTVk){CrwWnD-hB`O11*Xr<4Ci11(VWbNRno2+Zy^8bpi1h(o}qQ!1OXYyZcQk? z6Di6vh+k2MXed>35^lTQ+}!tvl(&_se(Eh-4}T+O9(v~4<_PwadLPXPSZ|OvJ$*X7 zejbU!swpESN!cT*-Slb&LX78atkxP?@TQYzHA!)Bku85iZ*OXtLP#eUM~Eo1f0R{i zYnj(y9H=(lKSfMqPtTn!pyTT#81Ggdk4&n|7O{p>D0=t$;>4WQ%(7>}W(C^eB5Zhn zF6p>R!p&IqLt+^EHg){P8p~n~>z=L4)ikiI5wrkge%N_4l~2`?kcyJXAiNUrmdIi^ z-9Fp+3D92ynbmAJ2+y&IQTJa=n1LaLn>rKOVV}$z&c>ZpK-FeMh_H#fW1;&&=qd+8XjUpUMoF1a52^4$_eBk)WiC? zHH!Y`amwW_A-?f}q|sf8IPHhlrF211Jd_G3E>&P~>kOnwXVWm{w6bNi2Z{&8@b9U>g%O|8Ep#4R>>KqfjfhP9Pf_pL3%Xv0CxJOCmZf2 zf|(psQKzDV0IN)>=1T3M6C0P6m3SBrbB``+uK8DBvLC=7pPk=oV+=^V06o(a`f^oo zf`_qJHi!$V1-1$!T~=WAcN7q?8Ze;Ic_ty8a3Wq$+G%-ZUVm4g6-^%<6MLV(r&UvC z+=$_({iGyTRI7{Ykr@gV3rGj2l@GO2-B-Rd9R|3v`&gC4cS*f8(`F26%xL_Ku{yiT z^0Sl1vq=v)fr&z`BL=l7T$;0-vIplq^Jzi!Pupucz3_I^FaPyA6bp%ShjUkb)@F+p z^q~gIKrbGnQD~k54G;YmPtV~Kj=K1{O#@L+h0Nvf#GhD{p<$GEtETF z?V=AkdqXXztUOOHg>EoUhoUo;O9`^jCmWgWd!K+fhO_23!4Dr9B$7t(?=87eidgcF zjZSSJmW9H`_HNBUeYJNfh!B#gWohxT7m6DnEAFv7Ho}C+O`5ydFfoqyG+C}r zg@v_8^)4#Jb06KGICs}W_;+=Fh(tPtu3EDx5OwI^@nxtt27Z$$#d; z8Bk9$3e9)1s)965N!H^Uv_}Qc747z6X7H7&HJ%$RWjhZV&na5>IXU#aV?y62H+HwT zLlVV-KC(P_h=PWJ`I-Vsgl`Vut2A&*e|5cZS=5vCEFi==1=BUxT%8SD(&f6F zR@3G#?S0l7uY}NnZ`yJ3%4&ESN5)w1qQIOfV$(7=iL&MnT6=Y`cz39fKznFTve|Tg z_h?DzGxYZf0l9;7-SU=#3S-BiTz~vX6Y7-}$-8{H|2%TQ;Ex0ERvOcT>O$+I^R4iY#Xt-DDOrVsh}a z>c_t#I;JwQsqD(NyVf2K+5EZ%tErE@1RldXu;;Ly*{wOd9aOrjp6l8jIY!|(fD<~h z^-32IE<+$gWY9GvET2KxsI%JAV9LF`!^j}_AAkz2giJNWekV*Bv8+x!lCxq~X9E!5 zU(+?fmn9tSx<#bKd5u*UCBZ5hwEfV5RJTdoW+?P*@~#ri)k<7sF8fS=pqj zgm1>Ps(hB?I=FQtki)}FqJ?4x1UElJM3}5i-6czbNxEunRhU*qe0irvM>W8I2Bh z9AS-HoY9;;h-O>g7AxaY^il>vyd?zVkd4&Smf(sf{)9TvtN1mUf1}y+px6mB;_qMI@oJR_B`{W*;v98e(UVA#}|}cWgwk+_0;;J z3nVT45Xu$bJpXFEgS~FALy}B1Y*7h$chh39nsU}n}=MhCx8B6YRQ|aIGRTIGdy;F-7eh*oS8C{#1e0Z4y{NIU$~Ju<58!X97kR&&GfFZq!dv( zYGp;j_2^QCka*xlVS)?0Wc(JbHlMs&*Z^!4?6LXQPNf~fE3zPUY9c=yaQ$kPA_;;J|* zIXBe>GdR|4RIUfr4Dm2Ls(Wg9nDxLG>MR)$I>ThA3yt#aRG3e6JA@wzMvIl^Z@;Jo zXQr{NYjdIXIqkW`@4dzQw-$GSy@3MHlY1NAxVa5P_RVJmDo<}#9Z_%ly;xapT?9s< zUHWYt8zzNOVC}qSwYI@{lLjPDo zuYadGb)Lhnwxu!|Z3n4gUgM|A{puLYr+SN=0^ISEQ8e6R(uvr+4K)FuquErIo2T*5 zDC7V=|6T{2wZex)em|-`3Fu3nVQjAO4=2Sey=*!)j0Ie#0e*diZ@ScF6b_f4pe6H4 zbMwO&fRg`w-JD}RIms!5+%DV#e&i1|n5+~`#&U%;>&eU3j@I-x9lN;Ur&AUp-qeGU zSg-Y5xTwd9KPA$pLM_f?vxs^^et3-e?Uc`RLxJv)jE_XdO@(*gR)~7SOm;uN2IxM} z9%fyIdPR^|a`0G1|BktW-qIMK(H`@iz!7BSH7`N{T&^viIu4B(mg$3dJHi8jekXsfyVtTD zO=T}gi0D8jQ6FX+!DZGIEMIs?KokS9>2&#O=ks!QfFs>1mA`mnWAIJ~DZU(PTg0n%D0qNV$1g6V8e`|%JWs=iy zs=|kIVgwbFX3$5zDY0IYe~DS?{4ymf_d)aqDH@xE)p!ixE6#OLdXE*eoY7d36-5w8 zBgNM{lT5tI{WwSJhT0Z&pHNY+a_RXX4eypB`N$Iaw`Ez#M@f;Wt2NmrKczfh>w`Bl$H-%_@ME2?YV}}v#8|Oi8M9NeX}CAdQK85r zqJTFBTrm-V;Pk|wDaX#M68Rn*_DREED)c`62BS+fV zA{&N6-c3A=f8PD>ZBPwB#e(j9_ej1SxAo?XW5nq~g>zRuqfWu!$Lb|Ddguvdr6}@Y zNycV7D??#BmmMZzR%Clawe>ATBur(Gea_fcmeX%a{GRYztcfyEK>GQq;ZgOVt9W#3j4Xw<{Fdt^NZ9FuY?WHm%AlfUx zng{r|1>x2;fW4FNhb(CT#Kg`3;eubfN}ST$>lK9lO>X6-Yt$W@1T=t>vQnoBdb;4z zu>bPovZzR))DE1VV8d*gk=FP4e4anyDCrGlBZprCLMiqt*Q{5zd*$b0AmQtJcPP-< zR+n%Zam+lMt{Y+$_(*j87-G|CY=JGFA;~d8h_A)tQj!-lmYNiJj6Rtt&W`dcq?Pqq z%m&Kz56OA4S_sj|`W<)J=m-y)S63Eh~vi45_Rcl^l#l&Ldr5ig)>?7 zR(J$P=z1dwisp>s{ux_dr@hw&&Or3Mw^`U?S4%ux+YJV}m?`Kl|NnwDXG(#EhQi#h zPEbj`9d;%|z*rl3bOh@}Ax81M&aGD*l6~5N9qH?jBd(t>+Vh4rd8sH#p zq`cn*s4o|d${bmki{*(w>mqO_^RKyTF5%kX09P)g0QhllEWgk`T#|;sbPWsa_z%Vh zJ1+|%wK2|a9*~^kiz4x?A%O1PfQHaX^8~8hc>t8~xU_E4eS1m;uvMx)|2!{PSRlQ8 zeBLT8*G6K-1QjTz&g>B8#-2lCptJB+9TktKwM5!GS*kmfS;oS-z}A~Ej`nF*1ljXU zK3!jfWkb3O&YOs=gqGg>K!lNeuVI=nyr~gJIWAUzuRb$~#{punjvsHBzVcqW&~^f6 zC{rY7wuUh)0%N+g^yr{>#+Op&b=#kbs>eM~EPWM7Q2k*PPDG!FBW#>jABYd0sz;6D5pw5!l+ ziiTuGXn=aEZ24y1?K|<{84kaSZ-AO!BhI5lP&&KlXQ_@fC27w(uVBKI1SzfQ@Th+? zMt$90**bxUD3Ot2mD)UA2jaje^rzfOn~cqb@>!$z`x)$e=ARyIutUuX!NZU#Ori?j zR4o%E5`Ytf*FPWzR-{Vootq7k!$cOOTF`ElrCKQOt~|{BGu1ZI!%gX@VY|PkCSs1F zu@h6DO`-AEJS6R!?l(QEB&6ha1CA`62u( z&5Ur(bqnN0Bnb!z&o2?lM=X)`$}S)pJf_5Ou7!-)Y5lOCL1{r)YfUmWNGcfr3OR@h zq`Vj@XNgqf$-0Lr&e;iZjT=+39ctUT0luSC7zyWo_wllh>GzQ}aA;tjRr76@j%GfJ zVm#(Z1o_iNrE=%E`IYHeVuu_B2#$!|8Bd|Q7ynXy(Qo&iX2E%{&%oNv7RDuW=l%%h ztkhPD#}>0W@~`j(9j!FuC=ez|K5=8?I1M}tcaz|t+Ku?BB? zRSE~t`u^$aFaJ&BtkRHl{X$_A<&UK4RkBoZSfJKOh39(N zT%VmXf-6Cvtr8?G!pL z!Uy3z2ft~hB=dfIS2p5EaE^@9LF(Xci~?t{6Edgjk< zx$JI791}J>dB_i6GmMTL@IGs@)bQ_E+!8L_l0Y^gpExVJ%t9)Y9@`tOvj0|SiqtTH zeHZDVWiwcn!}!RWyxtRum~RLV`w9ek)e~Wt69aT8Wb`eKKeQw=lS_U5goG`n&t_mQ`z{*o(E#wx#vH))M)mKcnZfFE@ZP(J zO?|BS$-axvp}c>~t)352^e#f1dz~JG6tu@xZFVjxznws=1fv8pUsOk&sj>;@x2EHb z7V7TKMsk`-d#46=u#qdgT`zn7$hi&|Oe%Fep6$%~1jOO_xM`#RkTpHF0Ynlk}-sb15;8m`fTpb39mzR(Q2+YV$3dko|yQTL%3{&a6Na1~0RHPP8gVPYI& z&Nx}?68>G;V3K}7Yzeq)v}7?AYB=g1K8;Fi9`Id}tuNvVpKN)9!xVJSnI&gU`@k6TLd0-GfO|8;bMnZM7vEvgtOi##-BPA- zir0fYaMAId?EFytiGa+97XWAgk$|=%NA?ko6fcFB{-lxiijXT}u2>Xw84nxRfU zDYVf~FqEd3pq)Xba3Xf?=ueD{FdBiew@}+;qrDTui21!(MEiRBV7=tTi7H4wq8{h#0m3qz!g z0|qSaO&*hpwU6cW(7yhtXPzk7_(rMn9-q6w}`PJ z$$*b_LJWrbuCnhYvyK{Sk}JgaxLDjmjsdTZKxsriD+|55!3>CSW>-uk^G_b&P89j} zAG}~6Vtki(d)r-3A@EL+l~{G7`O zT`LM1@eKU`SU{PV&@2@L8$A1Fk#6>QdMVZWwzDaQ%RCY?+t=S9@(ZX2oI)NXPb3Z#w5G(3-*gIQ<^R76D8V%pKee* znbGZz)0+S?<(HG0wJb!7S26?tGLQ7Jrf+aHX|0QxmsxbSL*WOg)YC%^hn^t&6E7pB zFNIzclZ9485I)I*6(lauE!2{;sR!N=m0IJLD)Vv{3>E?-p-}y;^%tD62u5L-0({5& zHys*^oR8Lz7*XhFlbGpHjn{!N{eeeScxWrm$sgHimwk_|zw7Fu`R#l6xSl>S% zb2}XPECy^ATMSkdG(k{HbU4tpk1@n->Cn-nA%X`f<2y!jf@O3bV~Ca@34B}6ILda; zd12N;Cp;U6rCO9{yyWzy7I=M5PwUb-&e=(fy!eh`lMLjOU)gQ~16ZZ68C*R!LSEvE z;_&@u1h-gX&wckSsw0s~tC@($xdScf;AHRU*m2}bd&ea_T4X9264*a}z6#@|`e@se zUpSEoUzcUvXGXG8ZdY|3*V5;T!R#iv75Fd8lyx~gN~Wob}vRq-=yjkN0y}3*%p=s&Td(7!_ta0=7G(%{>Vs3aZBjK z)x!c#xYyaZi*8BxtYcha>6Hc!O8TYnk}OYXBnIpQXw&P@AQr?T7|_R);qMorLH;Hw zRS(VUL!+;lq9S65nR_Juap&a_@TI`&2cK7L1O`E{bT}H)ngHZ|VYMt7dzjMHuW?99 zUw_Gm^)N`A+VMELxQYR5IS?S{c;qY1E$a+&#UPV>R0`x0vTXlN;$pm{`Q^Xm@#X}p zI1N2Y+_0qDk$o{P!y{icJU$fGO%H&*0t30B_i7;*C+|!1y#j;oje(sl2W`r47A^-t z_iy@lG}>Kxeoz`wpAdQ(Al7aXkKPy9_b%Jk9lgu<1SR-f{J-)xFYd8}BH5ZDS9Tc4 znE(qO6N?5h?BE;I;}W4ENdiNVIH^tjVonky0Mo`2PL3#P*upWLi*_sfK#7T$ktQr1 zbhhn`BmLg(NN-x!8^S@mUrIUM=i_KzatAP(W!+J%V-%)n>Y#Jt!uNqmdn}%sT z%3(rVzh>oodD)eOV(WPj#Y{OS(G;xS_$1>r7z7lP8SAqRcvGZKHLqVAGBP|kWUilp%#Adj|y8-`12tY-?Q2ZS7lcYFoShL zm=Mt3GF*xgAEQ>zun%Wyq=Fuq$fOOK)Ai<)z3dUk|zWuv_n{F?v^5CKR zWqg@{)+!Iih1L)%ePLB zD+#?ikX+m!Y$#v#jJ#YJrrOH!C7y%uYWqz&bwK)yft}zV!JX(N^pC@cx&&uN{XPOk zx%#2gbH(Qh78vFRx)L}L-N8%^!Eo9~&*5VURCUTo6mQjpeU684f6!-k)Bs?;WW-@0 zFGJ^Peb-=@3nbhxqDIF~)gC3xZ3-mIA{bC$wQPMeLlIuo4I@~0!Cqda6(Mjw4-GOP zk}^$;MiLSV*}Ozy)apMgM0owvj}lPeXc8ABoz#V-os9646Sq~Yo;gv^QQ#H~m*Oxq z9)Qf<$$x>1F7P5cQ!O;6U13bUNk8{(7aV(d0^-_z%kC|hd$>mPyX8d-_7j33cJd$L z%u}$$T(2(LdJjE|sS|b;1lUKx6y%xBrQ~;MDh=Dy5u7;S9cni>jB>wP4x)~PNSN=| z5eJkGBc2RBY&zbw^n~&xXg?N;L}7^D@ly0%3emV#a*C>8&rDJp{Q>SM$Uv{w6yAC&XG&i0_U{yX1XkXQ~!Zm#|q!y;+-;?Hdw(4@j8W!6%HSh zG0`h6X= zXc)>kM18jCLT79}U`ElWzkj8;Z;OwR@t}g3cagBh@_zLFP#M%VdG8$Z9g8|QPQ|Lh zmjks6GJhLaW%gf(p`DW&85u5W&(5<7LKAha#f?O~!FFN%)F&7Yn1*dm(UPxep0G@r zV}70B>8?5u^97r*vOQoDWND8C#v}8HhNi@MX5kmw`ebkcm@dTPl%N=)LC<>lXLvAxtok~=y zG7f>2O}bwmccD9C6`R*6xM|u!=^Lbi`LO)gN-o83M(i~oKo5dOWGmjdMrz&Yr*`xw zJGT|cE8-4ufM&=??fz+>^X zTry|qM`|B#w!J6@gLgR|xI8-6ov^})-ZmK^xFCPk+jly&{kW;=thMY&v43Vb5RC^$ zWc7QDRhFuCvTncrXwXTr>)bt6&)sa*{g!GY_m#U(qH`=kSHMb+^A{*{%I)7anXQSg z{=e=dr;!*(9Sz)48}N3;GT)YaFeU+VxA8HG@4t&k^HHzQ$VY4$sjZkF1-6Y{Uc*@-IUCrX_bs2^z%5BUFb-7D+^^?@amY zt!7s&d8k6zFJV{iXuUugw@exrV*!dKpVjW@z?f4g_7xw=O-K)XS@0{Xy@1iPtCQGc9_^!7yg(YMLv&9BiB83wPLiyaCahnrjmTg!d7zKDn$T+&i`(=jw-%uXv9d{Ma}dSVO11ODgxc=PzZJ-Z zB^CH!NL50see!ot(0=)E69YbFU~O`Woo0Q}6?Kdb(Zp0{-VbcxgOq7KZeF>d#A~*@ zh02z#<&L!;=GR`+2fzl_Gul-sp89pwXL^*@E`|ZizA1Zd5xF;riO1N6Si)u|Pryp> z@kZz)pz{-r5!$4$%8Yo`@;`We0+zGWA}ddRJHW6#ywen|a@FcXkY^){r-i)2PPTY! zyO14$oylvYN+sTe?W5>2_+qQOW+qP}{=KPA=Fa2EA zHG9-pRcn4L9NtscM9VBUxg15V*mcm9nqQ$kS5@e2ySfMCLo3#~zQcRsJ4LDMKKhYq ze>w}{uG7u4gFa&0dXK4doUZO>V*99q7QcDgw6aL}LtR$430uu_C*hS>*^B5ZU(PYn z-Y*n&Hs_B&6a~Aw6~TX0xv3XJTg0VXl*=B^$0CQ5V*C#x*NF4kw<3M-|Atr? z808{!ShMC~;$B5~{NwaI;Sc5dIqSUmcH{PG0e&%B>IMNH6ieRoU<>pG2%srU#wP-& zfXJx>B7SeOnPA_UenN=o3K?{s9GQ6ahQsw>Eup2YT6)Rt{xjS1HuI4n@pgrQD5(~^ z=~ZtNmZcgle0CmtQl;?fi{tGffVqP&ld0XAxMP57zmgpz#y)XP{TC*Tt`e4a4`Ucc za|Tlt{Frrwc_)cgxm$-# zb;JiC8!6ychwUl+w5@dxP55UHiEEik;nzs{C26yf1s1+{)x0T46XBUyNa$cKa*=Js zhIG~ggLt4cmJYH}M%b|Rn%>OnrGamp;-~?N0O?!L1Cdx+7BqxINp{EWu$Kp<1B1-{ ztH_n=Zvc<-nw5}_{nI2LL=c=(wii%`#_-Oz(`m6EBL&^(lj44TXWer>Krb%bu{PycY*E-D279>R2O%cq#yYPF zIhh|5ana)tS_3umjREzfuhbz+jk8LOHnUbs_a!bi^`C9bTyX0<@ek}g|M}Yt$|jxK z>wiK0e)*wel@c>#r51PFLD?g%Ly&tT<^uO+u2#C%BQHTv*!4we`JNV~e7fXoI(Lw` z%NXDU1Isa8+kCMyKcS1TMhnYuxmE2O2sx&;QSv&)EeO#y7DcC*Bs3iOaT8&X9jsTp z=cj*K-*LKb?#+78LbO$pLGtOgw-u~%ZZZgdoPMj*kE|n7M4Gx!P zAd{G^yjR`u(&bT#)7cH{76O!5+4J=2Uur*98&1>O8jO{>peNL%OpG&6KDhoARe6^H zOtvfo^=v=CDp4mm`QG7Iqc)4Lpw?;*e%J8-?MH!*wSyPoeVw1T+gpY#W??=AV&rc@t{>@Z7If7#Geu2vS<5s5(~MQ(QU)^Px8fYNUcQg=KDKzwo(No zGeel+mRkjiq7Sgm^slrm4c=otEFc$}%MK|KO_ZN>ww`%1oeRq|KoWvTG){di`I}1zlYFie zJl-$|ND7YUt+=k9z1w~2%pBjaypJM9f!9cyES%j~AG1p<3d@8E zm-~=s6_qDvJMl41jbgZ?^+&!9RvvyvNMo=*)MmqNsLcxz?0WX^@ERA=wEjSJbuW!l zKiBGM(f7oU`X1i|L~VVfS5wKP0%k9o)W`Q0j@c+beVH-A%1BL3b?%KiPmofh9qk-n z9Wu=68=1c9*D%#t3lSF)@EwH?TVNhb6;{mfhr~j}TU6=b0R6V3XY$1fS*%Xr&tI}~ z70&ul0lqskOW{IEx;{g+!DI&WWlx#j;kZPQ-l$KZ@JIe zs4RTkOP>HXpMhN!OkS>0bTH`-xE~1QybIW`b-}9t>uI^sw!nUpID?S5v3Va6JZ>)L z3W1(#VlUg`AucC7LlW?NN~TVxTwxm`z)>iX(>13t=AASBJ0oK&RR3@<#4lM%zzqch zqacn`OyRB?l>-8~EEfA0i=@wo-Cxfui;d`)|Bi;azb*F{MU@|ef|u{EC=gWJEYU-N z0Mr_3CS|$MKSj`{K<1ny`JEQ7wFF~yMVWmKJ3n9Y&!*AG9m1u)LE2^;jI& zhz1{(LwVHeZt^6=GkRMK3m@c5+DOEL@>CHiva`%}`dRWS8QP-ya`y$D$(OkLk2 zoXCvgdd;fvNmh2eg?&ftw}~vVk14F+K$^@Qmj%nA$vY|0q!2ZpH498E`o@M`xndSo z{&92J8Z@L7KekPWn>=i4y)u=Q_##hll5cSmt}vP{25KOJp(C<|_K)~F&ODNBO%SdO zT)9&^D)ZtXZhZ)wQq!s(nF%HCWzjoBuVnA(z#hCRG9-LrZF}M#f+jp!cvbL5?lEdK z#(5!Oq;4;=piuSpzK*Ts8kUw(7?szl<}Ri+zEyL+)IT-{8>zaLD|I8M%^=FO=u@0I&f|bPJwKqPt0$tH# zIIeYY><&hB&mmeyzyzY~dbGi)r)eer{(`d6n7#Rgt~1wPm^2Y?Pn^1#e>@1fQfqN4 zE|xLw7AL$VhDN}0{my{L2?_TCKYU9ffxN!&h5|%e$Plo@LK~~+TulF+NwTO{p-%+r zG7ArETYSF^R4(JOqtMik*=tU4G|pWqC|n`FavL<6pD~RAtKi9dJb{mZbtOqyR!FM# z6A;jgfZKCY?O62kcTBzCrD*K~33Eu}M!G&n9}3&JO&afvQ05JKTN=7^pbKGqdwnwb zU|2s<#6sR_A^q`m6I8{0I^_k3GXBV1ew*&x7x2idd{sX5FLNpX+sO`k0%nO2l86JS z3m!cD`R8@Ry3w}x`H_-=#8~%WO|j9G@p2o!=iwra!qX=<*>UoxKf7gR$<$-c#1eoQ z@_D$ND6j~1F*EIMW^bB7Bd*81RWNhatHz-4kXwa}Eb(WQf6}zO7tbOyz=Ooc47@Bf z5VZFqt9v9B7!F*U7@a5G$`)Du2l#+YTilSv!ZmBF5;wtpin4^nDtT(;$M~6vt+GMR0Yifm2oL4$h;vyk^Z-uQWHS{ z*n7|fu?Eq>=P#h70CcGcs6E;_VL6NK1*eXvNZ>n{vlEvR0@XrkuC3R65wH{aQ>={8 zfw7*v$(0}y`+wy(ijlz6buGHG-2EuIjc@qK+c41|4K4efkCSqq;Nd1a$f~cB@Cd*i z!Htn$Wx&*gMie_om(3OMLUM3)DR#Qwn(2J;`E*oFfdu>2kJfC#Y$O7`)Z9lH43+m& z_#-NE$Z;9|4J5d}UBFxJz_gS!OykiSk`gAF!GlsC9j z=E+J?d^`Y;8%#@eI)pmG@Rq(IzInkMs%uo+_51k^l}g>t?*<;CD%>|tuwwHPR??82G2RD8z%t6a zwtUB49yG1I#1DC%gg%cL#SaAQeX7@b-$L&b3m7YYu?|4NJab-BZxvSBv%YxY)hrTv z;r&WBBtv!~4Uk`UHs%hJ8H+CRY)8(xb|go3rPjH^SPhMsAUe*)8%F)=!IrVHVz<`X z)Bp)7XD)C`fxWzw;rR4uZ{8MnQNkMiCsX#il-gV@(<5M(BR zn2h8j4AV1P+r-XQj!2KbUoTYS2~)srFxL$x25Il!k(8^^kA#UDV~9&M6xw}p$v*@q z8u_2OK8+fvt-8SRO9QqBmIYX!EFYN;`0MgoojUg+mT5z@kuwc_Cs|939Q=D+ow28M zcZWuLg|}6Xk~hA&rsA8uI^`|ipyE@8=rzd1Bavi!fS}xS$Bi`_YImEYF7{&PjG7|o z8^t;4%3meSirp?epawn;a9W*{GW&twp}R%yOR-KI0ySk(N0ntm&DV_avIO#NX;5-N zl+GLY=Zu|=9fA;Z6HwCNQOd);<1#?vndpR!F`S1aAZL=^?lcwucwzm0B8go*?Wbb~ zb$e}TYA~)ySk5@4g>0D@?>HJ)He>1wA?ultc zS#t5EE^v?W1F)VyQ`MZFFot!fz()UMwD#7gig0Z_lGVnkjY(2sNqmDc5*YmDziZJr z-uQkU4McWqT1efA|NfN99rd&vnaF9Y(}~+{6`Mxl09B1ViXA2$i)HN$)j;L7b5?2plBzY%{9_Ad{hjS=QA5sbvg2a%w zprKSq{1PFuLNZb3N>+XsECgv`B-n4uE>)Vce;uOWNMA624rwqW2qMg+`od!e)WOX= z3|Py}jRFCMy(NT&02w1RE&xffd1bWiWv$r&9^55W)`Ai#<{ueFfLHm;Jqm$7hU6{x zQpF}sK0Ws|vo~4Gfbb)cP^UVSd zC;W|b&x>r=Mpdf$nN|eAnq;pqh+g2eGiOubHkr_Xx1S1naQt`J>bBfCCvi@*UE{!9 z3FRcLD}gRJ=|z8%q2;v#P{H3rg#vOTvWWplDodL_hI6EiS`X4N9T4azC7PJ_<3=T}wG z^XGtL{{!>~+a-5$+YE&;lgx|u{)8sp#sg>-1M0y^Tre4HE|rhZ1@3dgrD-+v2Z8Jx zFd_E_76&?V-=D53uFi~6s_x_m@ZcfWb%V^U=MsRL6ee_*KB@git-GIS9}1hXbS?umF3#kcrMxzxs4Zi7 z0R$s@FG1Ik?t6dt;8Qh}hcHN@2V603y1MK(PoeZBA9GDKKh?+Jm`!>sL(cmZvgu0qXq>??WIgROf?5Q}p~nK@$-!vOKeLVr2=VO}H6TDp)J4Gm+17*tgfq$ZW<34biQD(uSW@9AuY0bi%{!X4{ZI65$me zWgj1t#Gn%njp7>|0!Gbg$3|<5Kl4}mYah1Et@kQP`!Ry?^-&IuA&OkL%RvQ0CBbWTB7>S|yIrd4hyIngk+B(c;Z zvJXb16<7)s_@f*%vj2RV6a&9{EHoDNQ3;Ms?p;V=3lX1vzwJv&vyILOsII59N@ze! zUDAzQhpmsT@Hd>iu4$zKBe>Y(Sm|e9KC`VumJG1I`3p4)3hnVHt^H z1ilB~r3Sj=r<-a#3G4UX4J4ZfY`_-^` zVH5;kuikFm(Ko&8LQ8rRp#D}%oKm`5YQ|VLVzj@P*a+DL@7c1i>+_XOKCL$Lic?=v z!FI`|XU!JBOP2$}$EyOiBU(NeN%Y#w_oa9vS}t(6qj@uPSe)&%w(Tcy&^j;gzwbCh zZJc|`tcCCBRICR*TF?Kn_$3%@dk|+jn#Yn~JfUAw5A5@m&U z7g28;h>8YO)MGzy6|&=j+P~!+qff<_NsDfL#y*c~|3Pu*KNuny@2f~34g92!ooDZq zus$=!i?v%0DVowhURoA*>}>rEQ!* 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%0DZ?g?T@{Dr&AOVkW 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

3eojU{ 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�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 ^KnZI9!4#~V)|=|K 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Ξ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�d- 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 literal 0 HcmV?d00001 diff --git a/Sources/Tower/LEDAnimation.cpp b/Sources/Tower/LEDAnimation.cpp new file mode 100644 index 0000000..04ba632 --- /dev/null +++ b/Sources/Tower/LEDAnimation.cpp @@ -0,0 +1,6 @@ +#include "LEDAnimation.h" + +CLEDAnimation::CLEDAnimation() +{ + +} diff --git a/Sources/Tower/LEDAnimation.h b/Sources/Tower/LEDAnimation.h new file mode 100644 index 0000000..788a3f2 --- /dev/null +++ b/Sources/Tower/LEDAnimation.h @@ -0,0 +1,16 @@ +#ifndef LEDANIMATION_H +#define LEDANIMATION_H + +#include +class QColor; + +class CLEDAnimation +{ +public: + CLEDAnimation(); + + int LedStringSize; + virtual QList *GetCurrentFrame() = 0; +}; + +#endif // LEDANIMATION_H diff --git a/Sources/Tower/LEDAnimator.cpp b/Sources/Tower/LEDAnimator.cpp new file mode 100644 index 0000000..fea570d --- /dev/null +++ b/Sources/Tower/LEDAnimator.cpp @@ -0,0 +1,16 @@ +#include "LEDAnimator.h" + +CLEDAnimator::CLEDAnimator(QObject *parent) : QObject(parent) +{ + mAnimationRefreshTimer = new QTimer(); + mAnimationRefreshTimer->setSingleShot(false); + mAnimationRefreshTimer->setInterval(ANIMATION_REFRESH_TIMEOUT); + connect(mAnimationRefreshTimer,SIGNAL(timeout()),this,SLOT(AnimationTimerExipired())); + +} + +void CLEDAnimator::AnimationTimerExipired() +{ + + +} diff --git a/Sources/Tower/LEDAnimator.h b/Sources/Tower/LEDAnimator.h new file mode 100644 index 0000000..da3978f --- /dev/null +++ b/Sources/Tower/LEDAnimator.h @@ -0,0 +1,24 @@ +#ifndef LEDANIMATOR_H +#define LEDANIMATOR_H + +#include +#include + +#define ANIMATION_REFRESH_TIMEOUT 33 //ms = 30 FPS + +class CLEDAnimator : public QObject +{ + Q_OBJECT +public: + explicit CLEDAnimator(QObject *parent = 0); + + QTimer *mAnimationRefreshTimer; + +signals: + +public slots: + + void AnimationTimerExipired(); +}; + +#endif // LEDANIMATOR_H diff --git a/Sources/Tower/LedStringWidget.cpp b/Sources/Tower/LedStringWidget.cpp new file mode 100644 index 0000000..134814e --- /dev/null +++ b/Sources/Tower/LedStringWidget.cpp @@ -0,0 +1,129 @@ +#include "LedStringWidget.h" +#include + + + +CLedStringWidget::CLedStringWidget(int NbLed, QGraphicsItem *parent) +{ + mLEDSpacing = 5; + mNbLED = NbLed; + mBoundingRect.setTop(0); + mBoundingRect.setLeft(0); + int color = 0; + +// for(int i = 0; i < NbLed; i++) +// { +// QColor LedColor; +// if(color == 0) +// { +// LedColor = QColor(Qt::red); +// color++; +// } +// else if(color == 1) +// { +// LedColor = QColor(Qt::green); +// color++; +// } +// else +// { +// LedColor = QColor(Qt::blue); +// color = 0; +// } +// CRGBLedWidget *NewLED = new CRGBLedWidget(LedColor,this); +// NewLED->setPos(i*(NewLED->boundingRect().width()+mLEDSpacing),0); +// mLEDList.append(NewLED); +// } + + for(int i = 0; i < 30; i++) + { +// for(int led = 0; led < 10; led++) + { + QColor LedColor = QColor(50,0,0); + CRGBLedWidget *NewLED = new CRGBLedWidget(LedColor,this); + NewLED->setPos(((i*10)+1)*(NewLED->boundingRect().width()+mLEDSpacing),0); + mLEDList.append(NewLED); + + LedColor = QColor(100,0,0); + NewLED = new CRGBLedWidget(LedColor,this); + NewLED->setPos(((i*10)+2)*(NewLED->boundingRect().width()+mLEDSpacing),0); + mLEDList.append(NewLED); + + LedColor = QColor(150,0,0); + NewLED = new CRGBLedWidget(LedColor,this); + NewLED->setPos(((i*10)+3)*(NewLED->boundingRect().width()+mLEDSpacing),0); + mLEDList.append(NewLED); + + LedColor = QColor(200,0,0); + NewLED = new CRGBLedWidget(LedColor,this); + NewLED->setPos(((i*10)+4)*(NewLED->boundingRect().width()+mLEDSpacing),0); + mLEDList.append(NewLED); + + LedColor = QColor(255,0,0); + NewLED = new CRGBLedWidget(LedColor,this); + NewLED->setPos(((i*10)+5)*(NewLED->boundingRect().width()+mLEDSpacing),0); + mLEDList.append(NewLED); + + LedColor = QColor(200,0,0); + NewLED = new CRGBLedWidget(LedColor,this); + NewLED->setPos(((i*10)+6)*(NewLED->boundingRect().width()+mLEDSpacing),0); + mLEDList.append(NewLED); + + LedColor = QColor(150,0,0); + NewLED = new CRGBLedWidget(LedColor,this); + NewLED->setPos(((i*10)+7)*(NewLED->boundingRect().width()+mLEDSpacing),0); + mLEDList.append(NewLED); + + LedColor = QColor(100,0,0); + NewLED = new CRGBLedWidget(LedColor,this); + NewLED->setPos(((i*10)+8)*(NewLED->boundingRect().width()+mLEDSpacing),0); + mLEDList.append(NewLED); + + LedColor = QColor(50,0,0); + NewLED = new CRGBLedWidget(LedColor,this); + NewLED->setPos(((i*10)+9)*(NewLED->boundingRect().width()+mLEDSpacing),0); + mLEDList.append(NewLED); + + LedColor = QColor(25,0,0); + NewLED = new CRGBLedWidget(LedColor,this); + NewLED->setPos(((i*10)+10)*(NewLED->boundingRect().width()+mLEDSpacing),0); + mLEDList.append(NewLED); + } + } + +} + +void CLedStringWidget::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) +{ + painter->setPen(QPen(Qt::darkGreen)); + // painter->drawRect(boundingRect()); + +} + +QRectF CLedStringWidget::boundingRect() const +{ + if(mLEDList.size() == 0) + return QRectF(); + + //This assumes all leds are the same size... + return QRectF(0, + 0, + mLEDList.size()*(mLEDSpacing + mLEDList.at(0)->boundingRect().width()), + mLEDList.at(0)->boundingRect().height()); + +} + +int CLedStringWidget::SetLedStringColors(QList *LEDColors) +{ + if(LEDColors->size() != mLEDList.size()) + { + return 0; + } + + for(int i = 0; i < mLEDList.size(); i++) + { + mLEDList[i]->SetColor(LEDColors->at(i)); + } + + this->boundingRect(); + +} diff --git a/Sources/Tower/LedStringWidget.h b/Sources/Tower/LedStringWidget.h new file mode 100644 index 0000000..b307305 --- /dev/null +++ b/Sources/Tower/LedStringWidget.h @@ -0,0 +1,25 @@ +#ifndef LEDSTRINGWIDGET_H +#define LEDSTRINGWIDGET_H + +#include +#include +#include "RGBLedWidget.h" + +class CLedStringWidget : public QGraphicsItem +{ +public: + CLedStringWidget(int NbLed, QGraphicsItem *parent = 0); + + void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget); + QRectF boundingRect() const; + int SetLedStringColors(QList *LEDColors); + + + int mNbLED; + int mLEDSpacing; + QRectF mBoundingRect; + QList mLEDList; + +}; + +#endif // LEDSTRINGWIDGET_H diff --git a/Sources/Tower/LightShowWidget.cpp b/Sources/Tower/LightShowWidget.cpp new file mode 100644 index 0000000..89c4359 --- /dev/null +++ b/Sources/Tower/LightShowWidget.cpp @@ -0,0 +1,145 @@ +#include "LightShowWidget.h" +#include +#include +#include +#include + + +#define VIEW_CENTER viewport()->rect().center() +#define VIEW_WIDTH viewport()->rect().width() +#define VIEW_HEIGHT viewport()->rect().height() + +CLightShowWidget::CLightShowWidget(QWidget *parent) +{ + mScale = 1.0; + mDoMousePan = false; + + setParent(parent); + mScene = new QGraphicsScene(this); + mScene->setItemIndexMethod(QGraphicsScene::NoIndex); + mScene->setSceneRect(-5000, -5000, 10000, 10000); + // scene->setSceneRect(-100,-100,10000,10000); + setScene(mScene); + // setMinimumSize(500,500); +// setMaximumSize(parent->size()); + + setTransformationAnchor(AnchorUnderMouse); +// setTransformationAnchor(AnchorViewCenter); + setDragMode(QGraphicsView::NoDrag); + setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); + setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); + + mViewportRect = new QGraphicsRectItem(0,0,50,50); + mViewportRect->setPen(QPen(Qt::darkBlue)); + mSceneRect = new QGraphicsRectItem(sceneRect()); + mSceneRect->setPen(QPen(Qt::red)); + mLedStringRect = new QGraphicsRectItem(); + mLedStringRect->setPen(QPen(Qt::darkGreen)); + // test->setBrush(QBrush(Qt::darkBlue)); +// mScene->addItem(mViewportRect); +// mScene->addItem(mSceneRect); +// mScene->addItem(mLedStringRect); + + + + mLedStringWidget = new CLedStringWidget(300); + mScene->addItem(mLedStringWidget); + // mLedStringWidget->setTransform(QTransform::fromScale(10, 10), true); + mLedStringWidget->setPos(0,100); + + setSceneRect(-100,-100,parentWidget()->geometry().width(),parentWidget()->geometry().height()); + setMinimumSize(parentWidget()->geometry().width(),parentWidget()->geometry().height()); + + + +} + +void CLightShowWidget::wheelEvent(QWheelEvent *event) + { + ScaleView(pow((double)2, event->delta() / 240.0)); + } + +void CLightShowWidget::ScaleView(qreal scaleFactor) + { + qreal factor = transform().scale(scaleFactor, scaleFactor).mapRect(QRectF(0, 0, 1, 1)).width(); + if (/*factor < 0.07 || */factor > 1) + return; + + scale(scaleFactor, scaleFactor); + mScale *= scaleFactor; + + + qreal deltaW = factor * sceneRect().width(); + qreal deltaH = factor * sceneRect().height(); + + } + +void CLightShowWidget::ZoomIn() + { + ScaleView(qreal(1.2)); + } + + void CLightShowWidget::ZoomOut() + { + ScaleView(1 / qreal(1.2)); + } + + void CLightShowWidget::showEvent(QShowEvent *event) + { + mNominalTransform = transform(); + mLedStringRect->setRect(mLedStringWidget->boundingRect()); + } + + void CLightShowWidget::mousePressEvent(QMouseEvent *event) + { + if (event->button() == Qt::LeftButton){ + mLasMousePos = event->pos(); + mDoMousePan = true; + } + QGraphicsView::mousePressEvent(event); + } + + void CLightShowWidget::mouseMoveEvent(QMouseEvent *event) + { + if (mDoMousePan){ + QPointF mouseDelta = mapToScene(event->pos()) - mapToScene(mLasMousePos); + Pan(mouseDelta); + } + + QGraphicsView::mouseMoveEvent(event); + mLasMousePos = event->pos(); + } + + void CLightShowWidget::mouseReleaseEvent(QMouseEvent *event) + { + if (event->button() == Qt::LeftButton){ + mDoMousePan = false; + } + QGraphicsView::mouseReleaseEvent(event); + } + + void CLightShowWidget::Pan(QPointF delta) + { + // Scale the pan amount by the current zoom. + // delta *= mScale; + delta *= PAN_SPEED; +// qDebug("Moving by x:%f, y:%f",delta.x(),delta.y()); + + delta.setX(-delta.rx()); + delta.setY(-delta.ry()); + + QRectF NewViewRect = sceneRect(); + NewViewRect.translate(delta.x(),delta.y()); + + + mCurTransform = transform(); + setSceneRect(NewViewRect); + + + mViewportRect->setRect(viewport()->geometry()); + mSceneRect->setRect(sceneRect()); + // qDebug("Scene Rect: left: %f, right:%f, top:%f, bottom:%f",sceneRect().left(),sceneRect().right(),sceneRect().top(),sceneRect().bottom()); + // Have panning be anchored from the mouse. + setTransformationAnchor(QGraphicsView::AnchorUnderMouse); + + } diff --git a/Sources/Tower/LightShowWidget.h b/Sources/Tower/LightShowWidget.h new file mode 100644 index 0000000..1fa76ac --- /dev/null +++ b/Sources/Tower/LightShowWidget.h @@ -0,0 +1,47 @@ +#ifndef LIGHTSHOWWIDGET_H +#define LIGHTSHOWWIDGET_H +#include +#include +#include "LedStringWidget.h" + +#include + + +#define PAN_SPEED 1 + +class CLightShowWidget : public QGraphicsView +{ + Q_OBJECT + +public: + CLightShowWidget(QWidget *parent = 0); + void ScaleView(qreal scaleFactor); + void Pan(QPointF delta); + + void showEvent(QShowEvent *event); + void mousePressEvent(QMouseEvent *event); + void mouseReleaseEvent(QMouseEvent *event); + void mouseMoveEvent(QMouseEvent *event); + + bool mDoMousePan; + + qreal mScale; + QPoint mLasMousePos; + QGraphicsRectItem *mViewportRect, *mSceneRect, *mLedStringRect; + QGraphicsScene *mScene; + QTransform mCurTransform, mNominalTransform; + + CLedStringWidget *mLedStringWidget; + + +public slots: + void ZoomIn(); + void ZoomOut(); + +protected: + void wheelEvent(QWheelEvent *event); + + +}; + +#endif // LIGHTSHOWWIDGET_H diff --git a/Sources/Tower/RGBLedWidget.cpp b/Sources/Tower/RGBLedWidget.cpp new file mode 100644 index 0000000..51154b3 --- /dev/null +++ b/Sources/Tower/RGBLedWidget.cpp @@ -0,0 +1,62 @@ +#include "RGBLedWidget.h" +#include +#include +#include +#include + +CRGBLedWidget::CRGBLedWidget(QColor Color, QGraphicsItem *parent) +{ + setParentItem(parent); + mLEDColor = Color; + mIsSelected = false; + mLedDiameter = LED_DIAMETER; +} + + +void CRGBLedWidget::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) +{ + painter->setPen(Qt::NoPen); + painter->setBrush(QBrush(mLEDColor)); + painter->drawEllipse(0,0,mLedDiameter,mLedDiameter); + + if(mIsSelected == true) + { + painter->setPen(Qt::black); + painter->setBrush(Qt::NoBrush); + painter->drawRect(0,0,mLedDiameter,mLedDiameter); + } +} + +QRectF CRGBLedWidget::boundingRect() const +{ + return QRectF(0,0,mLedDiameter,mLedDiameter); +} + +void CRGBLedWidget::mouseReleaseEvent(QGraphicsSceneMouseEvent *event) +{ + mIsSelected = !mIsSelected; + update(boundingRect()); + qDebug("LedMouseRelease"); +} + +void CRGBLedWidget::mousePressEvent(QGraphicsSceneMouseEvent *event) +{ + event->accept(); + qDebug("LedMousePress"); + +} + +int CRGBLedWidget::SetColor(QColor color) +{ + mLEDColor = color; + return 1; +} + +int CRGBLedWidget::SetColor(int r, int g, int b) +{ + mLEDColor = QColor(r,g,b); + return 1; +} + + + diff --git a/Sources/Tower/RGBLedWidget.h b/Sources/Tower/RGBLedWidget.h new file mode 100644 index 0000000..cd7d2d5 --- /dev/null +++ b/Sources/Tower/RGBLedWidget.h @@ -0,0 +1,27 @@ +#ifndef RGBLEDWIDGET_H +#define RGBLEDWIDGET_H + +#include +#define LED_DIAMETER 30.0 + +class CRGBLedWidget : public QGraphicsItem +{ +public: + + CRGBLedWidget(QColor Color = Qt::darkBlue, QGraphicsItem *parent = 0); + QColor mLEDColor; + + void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget); + QRectF boundingRect() const; + int SetColor(QColor color); + int SetColor(int r, int g, int b); + + bool mIsSelected; + qreal mLedDiameter; + + void mouseReleaseEvent(QGraphicsSceneMouseEvent * event); + void mousePressEvent(QGraphicsSceneMouseEvent * event); + +}; + +#endif // RGBLEDWIDGET_H diff --git a/Sources/Tower/TowerLightShowGui.cpp b/Sources/Tower/TowerLightShowGui.cpp new file mode 100644 index 0000000..71288d4 --- /dev/null +++ b/Sources/Tower/TowerLightShowGui.cpp @@ -0,0 +1,18 @@ +#include "TowerLightShowGui.h" +#include "ui_TowerLightShowGui.h" + + +CTowerLightShowGui::CTowerLightShowGui(QWidget *parent) : + QDialog(parent), + ui(new Ui::CTowerLightShowGui) +{ + ui->setupUi(this); + + mLightShowWidget = new CLightShowWidget(ui->mLightCtrlWidget); + //mLightShowWidget->resize(ui->mLightCtrlWidget->size()); +} + +CTowerLightShowGui::~CTowerLightShowGui() +{ + delete ui; +} diff --git a/Sources/Tower/TowerLightShowGui.h b/Sources/Tower/TowerLightShowGui.h new file mode 100644 index 0000000..608e95e --- /dev/null +++ b/Sources/Tower/TowerLightShowGui.h @@ -0,0 +1,25 @@ +#ifndef TOWERLIGHTSHOWGUI_H +#define TOWERLIGHTSHOWGUI_H + +#include +#include "LightShowWidget.h" + +namespace Ui { +class CTowerLightShowGui; +} + +class CTowerLightShowGui : public QDialog +{ + Q_OBJECT + +public: + explicit CTowerLightShowGui(QWidget *parent = 0); + ~CTowerLightShowGui(); + + CLightShowWidget *mLightShowWidget; + +private: + Ui::CTowerLightShowGui *ui; +}; + +#endif // TOWERLIGHTSHOWGUI_H diff --git a/Sources/Tower/TowerLightShowGui.ui b/Sources/Tower/TowerLightShowGui.ui new file mode 100644 index 0000000..b0f08aa --- /dev/null +++ b/Sources/Tower/TowerLightShowGui.ui @@ -0,0 +1,60 @@ + + + CTowerLightShowGui + + + + 0 + 0 + 1694 + 658 + + + + Dialog + + + + + 470 + 20 + 171 + 31 + + + + + 16 + + + + Tower Light Show + + + + + + 39 + 119 + 1621 + 531 + + + + + + + 40 + 100 + 75 + 23 + + + + PushButton + + + + + + diff --git a/SystemGui.pro b/SystemGui.pro index 0d7fb3e..d122bcf 100644 --- a/SystemGui.pro +++ b/SystemGui.pro @@ -4,7 +4,7 @@ # #------------------------------------------------- -QT += core gui network +QT += core gui network printsupport greaterThan(QT_MAJOR_VERSION, 4): QT += widgets @@ -27,6 +27,7 @@ INCLUDEPATH += Sources\ Sources/Sprinkler\ Sources/AvReceiver\ Sources/Chalet\ + Sources/Tower\ SOURCES += \ Sources/Chalet/CChalet.cpp \ @@ -34,7 +35,6 @@ SOURCES += \ Sources/Chalet/ChaletGui.cpp \ Sources/Chalet/ChaletMasterCtrlInterface.cpp \ Sources/GuiMain.cpp \ - Sources/main.cpp \ Sources/NetworkProtocol.cpp \ Sources/ProgramSettings.cpp \ Sources/SystemGui.cpp \ @@ -56,7 +56,15 @@ SOURCES += \ Sources/AvReceiver/AvReceiverGui.cpp \ Sources/AvReceiver/AvReceiver.cpp \ Sources/AvReceiver/AvReceiverNetworkCtrlInterface.cpp \ - Sources/AvReceiver/AvReceiverData.cpp + Sources/AvReceiver/AvReceiverData.cpp \ + Sources/QCustomPlot/qcustomplot.cpp \ + Sources/Tower/TowerLightShowGui.cpp \ + Sources/Tower/LightShowWidget.cpp \ + Sources/Tower/RGBLedWidget.cpp \ + Sources/Tower/LedStringWidget.cpp \ + Sources/Tower/LEDAnimator.cpp \ + Sources/Tower/LEDAnimation.cpp \ + Sources/main.cpp HEADERS += Sources/AbstractNetworkInterface.h \ Sources/Chalet/CChalet.h \ @@ -87,11 +95,19 @@ HEADERS += Sources/AbstractNetworkInterface.h \ Sources/AvReceiver/AvReceiverGui.h \ Sources/AvReceiver/AvReceiver.h \ Sources/AvReceiver/AvReceiverNetworkCtrlInterface.h \ - Sources/AvReceiver/AvReceiverData.h + Sources/AvReceiver/AvReceiverData.h \ + Sources/QCustomPlot/qcustomplot.h \ + Sources/Tower/TowerLightShowGui.h \ + Sources/Tower/LightShowWidget.h \ + Sources/Tower/RGBLedWidget.h \ + Sources/Tower/LedStringWidget.h \ + Sources/Tower/LEDAnimator.h \ + Sources/Tower/LEDAnimation.h FORMS += \ SMSGui.ui \ Sources/Chalet/ChaletGui.ui \ Sources/Sprinkler/SprinklerGui.ui \ Sources/Sprinkler/SprinklerDeviceGuiItem.ui \ - Sources/AvReceiver/AvReceiverGui.ui + Sources/AvReceiver/AvReceiverGui.ui \ + Sources/Tower/TowerLightShowGui.ui diff --git a/SystemGui.pro.user.4.8-pre1 b/SystemGui.pro.user.4.8-pre1 new file mode 100644 index 0000000..3457104 --- /dev/null +++ b/SystemGui.pro.user.4.8-pre1 @@ -0,0 +1,264 @@ + + + + + + EnvironmentId + {5a351af6-dc3b-4afc-af92-7da5e3a5cd12} + + + ProjectExplorer.Project.ActiveTarget + 0 + + + ProjectExplorer.Project.EditorSettings + + true + false + true + + Cpp + + CppGlobal + + + + QmlJS + + QmlJSGlobal + + + 2 + UTF-8 + false + 4 + false + 80 + true + true + 1 + true + false + 0 + true + true + 0 + 8 + true + 1 + true + true + true + false + + + + ProjectExplorer.Project.PluginSettings + + + + ProjectExplorer.Project.Target.0 + + Qt 5.14.2 + Qt 5.14.2 + {dc2b548b-27bc-4e25-8500-cc36640735d8} + 0 + 0 + 0 + + D:/Main/PicDev/Projets/MasterCtrl/SystemGui + + + true + qmake + + QtProjectManager.QMakeBuildStep + true + + false + false + false + + + true + Make + + Qt4ProjectManager.MakeStep + + false + + + + 2 + Build + + ProjectExplorer.BuildSteps.Build + + + + true + Make + + Qt4ProjectManager.MakeStep + + true + clean + + + 1 + Clean + + ProjectExplorer.BuildSteps.Clean + + 2 + false + + Debug + + Qt4ProjectManager.Qt4BuildConfiguration + 2 + true + + + D:/Main/PicDev/Projets/MasterCtrl/SystemGui + + + true + qmake + + QtProjectManager.QMakeBuildStep + false + + false + false + false + + + true + Make + + Qt4ProjectManager.MakeStep + + false + + + + 2 + Build + + ProjectExplorer.BuildSteps.Build + + + + true + Make + + Qt4ProjectManager.MakeStep + + true + clean + + + 1 + Clean + + ProjectExplorer.BuildSteps.Clean + + 2 + false + + Release + + Qt4ProjectManager.Qt4BuildConfiguration + 0 + true + + 2 + + + 0 + Deploy + + ProjectExplorer.BuildSteps.Deploy + + 1 + Deploy locally + + ProjectExplorer.DefaultDeployConfiguration + + 1 + + + false + false + 1000 + + true + + false + false + false + false + true + 0.01 + 10 + true + 1 + 25 + + 1 + true + false + true + valgrind + + 0 + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + 14 + + 2 + + SystemGui + + Qt4ProjectManager.Qt4RunConfiguration:D:/Main/PicDev/Projets/MasterCtrl/SystemGui/SystemGui.pro + true + + SystemGui.pro + false + + D:/Main/PicDev/Projets/MasterCtrl/SystemGui + 3768 + false + true + false + false + true + + 1 + + + + ProjectExplorer.Project.TargetCount + 1 + + + ProjectExplorer.Project.Updater.FileVersion + 18 + + + Version + 18 + + diff --git a/ui_ChaletGui.h b/ui_ChaletGui.h index 73c0b3d..c3c57f6 100644 --- a/ui_ChaletGui.h +++ b/ui_ChaletGui.h @@ -12,7 +12,9 @@ #include #include #include +#include #include +#include #include #include #include @@ -36,15 +38,26 @@ public: QGroupBox *groupBox; QPushButton *mDoHarakiriButton; QLabel *mBatteryVoltageLabel; + QLabel *mChaletOnlineStatusLbl; + QLabel *mSolarPanelCurrentLabel; + QLabel *mBatterySOCLabel; + QLabel *mCurrentSensorStateLbl; + QLabel *mLostReqPercentLbl; + QWidget *mPlotWidget; + QLCDNumber *mVoltageLCD; + QLabel *mChaletCommActivityLbl; + QLabel *mLasCommRequestReceivedLbl; + QDateEdit *mLogStartDateEdit; + QPushButton *mGetChaletLogButton; void setupUi(QWidget *CChaletGui) { if (CChaletGui->objectName().isEmpty()) CChaletGui->setObjectName(QString::fromUtf8("CChaletGui")); - CChaletGui->resize(849, 598); + CChaletGui->resize(1205, 598); MainPageLabel = new QLabel(CChaletGui); MainPageLabel->setObjectName(QString::fromUtf8("MainPageLabel")); - MainPageLabel->setGeometry(QRect(370, 20, 201, 31)); + MainPageLabel->setGeometry(QRect(460, 10, 71, 31)); QFont font; font.setPointSize(12); font.setBold(true); @@ -52,43 +65,83 @@ public: MainPageLabel->setFont(font); mInverterRlyStatusLabel = new QLabel(CChaletGui); mInverterRlyStatusLabel->setObjectName(QString::fromUtf8("mInverterRlyStatusLabel")); - mInverterRlyStatusLabel->setGeometry(QRect(350, 90, 211, 16)); + mInverterRlyStatusLabel->setGeometry(QRect(198, 50, 210, 16)); mWiFiModuleStatusLabel = new QLabel(CChaletGui); mWiFiModuleStatusLabel->setObjectName(QString::fromUtf8("mWiFiModuleStatusLabel")); - mWiFiModuleStatusLabel->setGeometry(QRect(360, 130, 131, 16)); + mWiFiModuleStatusLabel->setGeometry(QRect(198, 90, 130, 16)); mWiFiSectionLabel = new QLabel(CChaletGui); mWiFiSectionLabel->setObjectName(QString::fromUtf8("mWiFiSectionLabel")); - mWiFiSectionLabel->setGeometry(QRect(180, 130, 31, 16)); + mWiFiSectionLabel->setGeometry(QRect(26, 90, 31, 16)); mInverterRelayOFFBtn = new QPushButton(CChaletGui); mInverterRelayOFFBtn->setObjectName(QString::fromUtf8("mInverterRelayOFFBtn")); - mInverterRelayOFFBtn->setGeometry(QRect(280, 90, 61, 22)); + mInverterRelayOFFBtn->setGeometry(QRect(126, 50, 61, 22)); mWiFiModuleOFFBtn = new QPushButton(CChaletGui); mWiFiModuleOFFBtn->setObjectName(QString::fromUtf8("mWiFiModuleOFFBtn")); - mWiFiModuleOFFBtn->setGeometry(QRect(280, 130, 61, 23)); + mWiFiModuleOFFBtn->setGeometry(QRect(126, 90, 61, 23)); mInverterRelayONBtn = new QPushButton(CChaletGui); mInverterRelayONBtn->setObjectName(QString::fromUtf8("mInverterRelayONBtn")); - mInverterRelayONBtn->setGeometry(QRect(224, 90, 51, 23)); + mInverterRelayONBtn->setGeometry(QRect(70, 50, 51, 23)); mWiFiModuleONBtn = new QPushButton(CChaletGui); mWiFiModuleONBtn->setObjectName(QString::fromUtf8("mWiFiModuleONBtn")); - mWiFiModuleONBtn->setGeometry(QRect(224, 130, 51, 23)); + mWiFiModuleONBtn->setGeometry(QRect(70, 90, 51, 23)); mWiFiSectionLabel_2 = new QLabel(CChaletGui); mWiFiSectionLabel_2->setObjectName(QString::fromUtf8("mWiFiSectionLabel_2")); - mWiFiSectionLabel_2->setGeometry(QRect(170, 90, 51, 20)); + mWiFiSectionLabel_2->setGeometry(QRect(16, 50, 51, 20)); mRebootCPUBtn = new QPushButton(CChaletGui); mRebootCPUBtn->setObjectName(QString::fromUtf8("mRebootCPUBtn")); - mRebootCPUBtn->setGeometry(QRect(220, 170, 75, 23)); + mRebootCPUBtn->setGeometry(QRect(66, 130, 75, 23)); mEnableHarakiriChkBx = new QCheckBox(CChaletGui); mEnableHarakiriChkBx->setObjectName(QString::fromUtf8("mEnableHarakiriChkBx")); - mEnableHarakiriChkBx->setGeometry(QRect(640, 80, 111, 17)); + mEnableHarakiriChkBx->setEnabled(false); + mEnableHarakiriChkBx->setGeometry(QRect(850, 80, 111, 17)); groupBox = new QGroupBox(CChaletGui); groupBox->setObjectName(QString::fromUtf8("groupBox")); - groupBox->setGeometry(QRect(620, 50, 151, 81)); + groupBox->setGeometry(QRect(830, 50, 151, 81)); mDoHarakiriButton = new QPushButton(groupBox); mDoHarakiriButton->setObjectName(QString::fromUtf8("mDoHarakiriButton")); mDoHarakiriButton->setGeometry(QRect(20, 50, 101, 23)); mBatteryVoltageLabel = new QLabel(CChaletGui); mBatteryVoltageLabel->setObjectName(QString::fromUtf8("mBatteryVoltageLabel")); - mBatteryVoltageLabel->setGeometry(QRect(170, 210, 241, 16)); + mBatteryVoltageLabel->setGeometry(QRect(147, 170, 241, 16)); + mChaletOnlineStatusLbl = new QLabel(CChaletGui); + mChaletOnlineStatusLbl->setObjectName(QString::fromUtf8("mChaletOnlineStatusLbl")); + mChaletOnlineStatusLbl->setGeometry(QRect(450, 50, 91, 21)); + QFont font1; + font1.setFamily(QString::fromUtf8("Terminal")); + font1.setPointSize(14); + font1.setBold(true); + font1.setWeight(75); + mChaletOnlineStatusLbl->setFont(font1); + mSolarPanelCurrentLabel = new QLabel(CChaletGui); + mSolarPanelCurrentLabel->setObjectName(QString::fromUtf8("mSolarPanelCurrentLabel")); + mSolarPanelCurrentLabel->setGeometry(QRect(147, 190, 241, 16)); + mBatterySOCLabel = new QLabel(CChaletGui); + mBatterySOCLabel->setObjectName(QString::fromUtf8("mBatterySOCLabel")); + mBatterySOCLabel->setGeometry(QRect(147, 210, 241, 16)); + mCurrentSensorStateLbl = new QLabel(CChaletGui); + mCurrentSensorStateLbl->setObjectName(QString::fromUtf8("mCurrentSensorStateLbl")); + mCurrentSensorStateLbl->setGeometry(QRect(147, 230, 241, 16)); + mLostReqPercentLbl = new QLabel(CChaletGui); + mLostReqPercentLbl->setObjectName(QString::fromUtf8("mLostReqPercentLbl")); + mLostReqPercentLbl->setGeometry(QRect(770, 200, 241, 16)); + mPlotWidget = new QWidget(CChaletGui); + mPlotWidget->setObjectName(QString::fromUtf8("mPlotWidget")); + mPlotWidget->setGeometry(QRect(590, 250, 571, 321)); + mVoltageLCD = new QLCDNumber(CChaletGui); + mVoltageLCD->setObjectName(QString::fromUtf8("mVoltageLCD")); + mVoltageLCD->setGeometry(QRect(30, 170, 111, 23)); + mChaletCommActivityLbl = new QLabel(CChaletGui); + mChaletCommActivityLbl->setObjectName(QString::fromUtf8("mChaletCommActivityLbl")); + mChaletCommActivityLbl->setGeometry(QRect(770, 180, 47, 16)); + mLasCommRequestReceivedLbl = new QLabel(CChaletGui); + mLasCommRequestReceivedLbl->setObjectName(QString::fromUtf8("mLasCommRequestReceivedLbl")); + mLasCommRequestReceivedLbl->setGeometry(QRect(770, 160, 301, 16)); + mLogStartDateEdit = new QDateEdit(CChaletGui); + mLogStartDateEdit->setObjectName(QString::fromUtf8("mLogStartDateEdit")); + mLogStartDateEdit->setGeometry(QRect(950, 220, 110, 22)); + mGetChaletLogButton = new QPushButton(CChaletGui); + mGetChaletLogButton->setObjectName(QString::fromUtf8("mGetChaletLogButton")); + mGetChaletLogButton->setGeometry(QRect(1070, 220, 75, 23)); groupBox->raise(); MainPageLabel->raise(); mInverterRlyStatusLabel->raise(); @@ -102,6 +155,17 @@ public: mRebootCPUBtn->raise(); mEnableHarakiriChkBx->raise(); mBatteryVoltageLabel->raise(); + mChaletOnlineStatusLbl->raise(); + mSolarPanelCurrentLabel->raise(); + mBatterySOCLabel->raise(); + mCurrentSensorStateLbl->raise(); + mLostReqPercentLbl->raise(); + mPlotWidget->raise(); + mVoltageLCD->raise(); + mChaletCommActivityLbl->raise(); + mLasCommRequestReceivedLbl->raise(); + mLogStartDateEdit->raise(); + mGetChaletLogButton->raise(); retranslateUi(CChaletGui); @@ -125,6 +189,14 @@ public: groupBox->setTitle(QCoreApplication::translate("CChaletGui", "HARAKIRI!!!", nullptr)); mDoHarakiriButton->setText(QCoreApplication::translate("CChaletGui", "DO HARAKIRI !!!", nullptr)); mBatteryVoltageLabel->setText(QCoreApplication::translate("CChaletGui", "Battery Voltage", nullptr)); + mChaletOnlineStatusLbl->setText(QCoreApplication::translate("CChaletGui", "OFFLINE", nullptr)); + mSolarPanelCurrentLabel->setText(QCoreApplication::translate("CChaletGui", "Solar Panel Current: ", nullptr)); + mBatterySOCLabel->setText(QCoreApplication::translate("CChaletGui", "Battery SOC: ", nullptr)); + mCurrentSensorStateLbl->setText(QCoreApplication::translate("CChaletGui", "Current Sensor:", nullptr)); + mLostReqPercentLbl->setText(QCoreApplication::translate("CChaletGui", "Lost requests: ", nullptr)); + mChaletCommActivityLbl->setText(QCoreApplication::translate("CChaletGui", "Activity!!!", nullptr)); + mLasCommRequestReceivedLbl->setText(QCoreApplication::translate("CChaletGui", "Last Request: ", nullptr)); + mGetChaletLogButton->setText(QCoreApplication::translate("CChaletGui", "PushButton", nullptr)); } // retranslateUi }; diff --git a/ui_TowerLightShowGui.h b/ui_TowerLightShowGui.h new file mode 100644 index 0000000..8acad50 --- /dev/null +++ b/ui_TowerLightShowGui.h @@ -0,0 +1,66 @@ +/******************************************************************************** +** Form generated from reading UI file 'TowerLightShowGui.ui' +** +** Created by: Qt User Interface Compiler version 5.14.2 +** +** WARNING! All changes made in this file will be lost when recompiling UI file! +********************************************************************************/ + +#ifndef UI_TOWERLIGHTSHOWGUI_H +#define UI_TOWERLIGHTSHOWGUI_H + +#include +#include +#include +#include +#include +#include + +QT_BEGIN_NAMESPACE + +class Ui_CTowerLightShowGui +{ +public: + QLabel *label; + QWidget *mLightCtrlWidget; + QPushButton *pushButton; + + void setupUi(QDialog *CTowerLightShowGui) + { + if (CTowerLightShowGui->objectName().isEmpty()) + CTowerLightShowGui->setObjectName(QString::fromUtf8("CTowerLightShowGui")); + CTowerLightShowGui->resize(1694, 658); + label = new QLabel(CTowerLightShowGui); + label->setObjectName(QString::fromUtf8("label")); + label->setGeometry(QRect(470, 20, 171, 31)); + QFont font; + font.setPointSize(16); + label->setFont(font); + mLightCtrlWidget = new QWidget(CTowerLightShowGui); + mLightCtrlWidget->setObjectName(QString::fromUtf8("mLightCtrlWidget")); + mLightCtrlWidget->setGeometry(QRect(39, 119, 1621, 531)); + pushButton = new QPushButton(CTowerLightShowGui); + pushButton->setObjectName(QString::fromUtf8("pushButton")); + pushButton->setGeometry(QRect(40, 100, 75, 23)); + + retranslateUi(CTowerLightShowGui); + + QMetaObject::connectSlotsByName(CTowerLightShowGui); + } // setupUi + + void retranslateUi(QDialog *CTowerLightShowGui) + { + CTowerLightShowGui->setWindowTitle(QCoreApplication::translate("CTowerLightShowGui", "Dialog", nullptr)); + label->setText(QCoreApplication::translate("CTowerLightShowGui", "Tower Light Show", nullptr)); + pushButton->setText(QCoreApplication::translate("CTowerLightShowGui", "PushButton", nullptr)); + } // retranslateUi + +}; + +namespace Ui { + class CTowerLightShowGui: public Ui_CTowerLightShowGui {}; +} // namespace Ui + +QT_END_NAMESPACE + +#endif // UI_TOWERLIGHTSHOWGUI_H

^swC%6PHvjro%NE4-LG|7x2qm=21H4$0#GbT=uA394pi2^IipE4Hk z#eTQFtE*35xao%2vyFB^MO@_mP`W7{LS_X|JR9bM$3V6UH3CKi4fmB9J{g9at;v!X zr)R{r=n!i*EhXYPipA8qF2URct&Hsz>45F?lx`220xO}d2@Radf*bm_zg!za0)|tp ztlrU`xFcHLz+AR-Ce~>HLWO}teNBNoxc;Qk=NUJ+=Q(Y~a2BRfh4MAtHAu;t+>h#? z_DaUsyT=1J$XW6ac>gr1lvBc#)8++5(%N2z>BVA(W zZ5+iYhfz-+oHJ0v$H^WpXM{JjANt87k6A=|to8cgV!_~UYK^9Z}P+2-jIk5BO8dkT; z9LN%c{$a5SO8!|;B#!X9FTIoaJCd0lYtWylewEQc?8`pipM0tpdvG;6W;heF-Oui$ zPy5pQlM8*HHzf8NMhB3Ca7QJ3=#`F|z8}1w$TKqmbfrP&)}9tIc9|dcw}r6gutFlS zd*zir@C%VbVWu=Ub+KlskxVn6FP}sDnxhM{>Ir?K96lmUpuBb5JTXgt!9AWtnl;{C zPv(&4V9h4uBMTn;^G;t#*}|e!!Mh46*+i2JiIY}U={}euF3qs`lW65;FJe7EAK6$tqvX@idOKYn1 z+1;@7Xcy;^R_MPI_2~Hry|xAYI~oRiz#PQUN4H zU{K}GRd#_^{C7K7qGarZ4X0nmt(^c7h$$xNGYO=u7iU=smN~NKMk$ADMr`yCEWJV( zb5-%bd}Fa2*Y=C!rMni@AIfH#3xJ~@z!$VS&A`3SB1{>9T;|K(dIA1-7}>R$vie1# z0X^RnR}7Rr_RJ3a*k}IvLHy)>c`swG&$osj0MA*KhyTt0|C9dxZU4_l3JE0$K&1=- z0PdJu){>^7(*_&T*RS&Ixmopd6lr_{MR?g&`l95*bYZxYL-mz70sv{2WB{PxSi8Qj z9pGq+@=ExL?J*g%ENNoz_5RiMhVJQON9qk-^>?e+&~kP4>d^@P&ZlD^*udRu%h{0I z=lwb9$Ja@P{!XoPQZ4mFrX2SlEWPNFnr*mMgDag6FP?4NmVzs1lS?bFr`S8#F)2%@ zPcCP0Zt?lCzPASDn%m;)jO$B4M$4QN!xsID)ukQobh-C$?6GXys^Zy(=wN z1ENnCHv9A8;3@tv)|PBXbNm_~EIROmuDFnubDLhz7Pe=DgNh9HuJToC+GT6K6)1ZC z4Pu#&29G9J@QoO{m^Bi~1;TH3b6?UyOZBpciE$3sG8;>pWym3)GHq+N@{qy>2aSiz z#`!5$ZEe*YSiW#ql6KqP%JONj>=X(>29SGW1s17J!{J7kG;FEZ`f%=cC9}JS_7Zab*wbH1uY^2ABb&-lFAUEoBYb#ZFYJTn zv7kuMT$-Oe41{4{n;{ruTPGO^TB4?dPrILuygdVws)52aJw2z~=2lD;1Vf$S=7AMW zMnI0V0uR*bl<5NlQs}oQwu9Bn?Z&UMc-=p;6UmM?9b)?oWgX4?9k=C04fkS9u-vrh z)yCRa%imiTELd6iX}j4KRyKXdur2G42>%A#=W;!k1YeqrbnchWqK$Azq_!$Mow?|l zhkBCiW$f#UPewtE0WrNsL~hbpHij=;+SNuS5#oa{?v|;ToCbZ^w1eaL4YT_qlpIzz zy7Ub5ES2R`)+IC?taP;=HclwN$&r}PfqtRnrlGi+x#V%75 zu4HBqF0ll6dGcU+>!VsYGIs|%$Ze`<3U_mV@gDWt<4nFO6Tyo63-hG$pi}zF{DWde z`wX+{!mq__R~l@|BBUiy@m~TeT49W~cq~ ztE)kCJ$Qk&0+D-OAxz75Bg#0k-9>NCZ(?WrB80Ha-1c2A%`r7XTYZ93kP7m;LY#70 zBchh>DnB~6LipYNxAO@xrgjCkC&@Z{q275fJ40ME69OzxwG}4=wf_y$U=BS3Z0a_< zL8P$1vVvCyKkz_jlvx-|x52yW(_<9l7=hIHCu&H>88ft|g(HHwqxCbOV%_4?=J+6v z1rggQ53-X8rDA5biIeuFqe4Q^zzi7`;I^J=VuT3x>;*)>a-9Z7BE7zd&FT=?ichH* zbmL;vgea07Oyupza({_BYanjymss7>>0ny7=}Hv;a+Sf09|maP6i?i8WQ2rKTZM}mmw>SZ^i5_l zc@@6#KyVlK4p;tL(gu+yHy(nSb@bN(1dVN5PU^N*Q3~C_$Vl~KOQxE`%l>c{*-(m_ zn9vxE%a4cRghcqn;jW=c5%^fy+tHVshMPVqweg4)FnR!p#Sqm+qx0sukxynQMJm{e zzNOZBdY#~Gc0&k}s~JmQm!Cx?ieDnYlpfN|dXKt!Ri!24z}nPn6zGJ-&xw4aq5_UL zp01vgUd*hG?`>Qbr2V)#Ofqg*1Eh7*BTqHTSMCR22FEt_iXUr26k)2N8A2k%QfUgh z5Vg4?5))rWb#A%HOyYb5n5N)H;hpmXb1&sUvyVa;l!|lEp&Wwtl2M%xy9)s3SRl$2 zB${JSy$g}Ow=jRhFitmhl-fbbRl!UF?V&_`ao%5dlWT0h5VErAjG zsyzrR*kYStsOk{W)47U{&)ra#D_FReFyjEuaXQ~sU=m3Z;z=+3k$^Sl<9aTX6FkIm z*nZSC)8hYrcp71Mz4OlOeUSawTtw?yY?(eA+6z6{TaKKzt9kC6RLfz=zIJg555D4U z@UghF>;9nfns~^IH4Yv^Adn>fW=NyJJE#=tc(=y+m<#Z=;l5P%Q+Idq`8*lBk->x3v6dJfMq2VPRcq!kvu(= zSYAugLIirAPjQ-rK^)LE&@S!?wxvUfsv!D((F~fVLA5Y?i^>&TiC=(6gHdgHUM>Yf zzw{L)W0cevcR1UZVx`j1H}q(G7!3D*Il(TxL=)=qzj&6@={$U#%+!PBbD%X51%tj2L%K@3J5U#c2GzU^6V zN?9h`UubV&1EXU&LRJE(L&Z25Wj}(p_-!?XyA6G&K&rxmBq9ubh0mfp==1Wg`a=2B z2Q5d+qq{{R!H9jkSZ;$&fG>my)(9Zbp;93cHqXA(AWq7#@ORbiz@%ru%|tUe4LgDr zB-EDV9?^UDf$Z!{M_|ZTjub zEhp-2|J0`JRCwyTj{LYQk8&&ec8u-s)JNNzr}gLytc6b(Q`gJ@!mXLe!X+i1M_s$C z{N#rtS82^>dvG=dMmz2aPj;?tVW6n{20sn_*U3)n&Msrd=KqR?!z#ideF?K;Ct4P1ThSO1(ESPf!sLR~TU zi$2;Wx2!#srFDRWObH`qWuDX(FX7z;4oO<$v%W6=g1{}wt4>=sNqSb-VzL!|?v9<6 zVz=n}yU!m{wQ-bs#@JO!B9siAt=a~@;*Nyj+(m8J?U{0-wa(o$QNknk{>Js}CzPMt z#ybE$v>vXd7N_^KaGxX$$`9zHdF)D!Cibrls0)1k&l&CSk>N0((Nq2p`b%sh;Q#V} zAOJG}p!wh7|5{u!QvVurteOA-iY&QhU3ptNZHUd^zI;OQII0pAQ9!Qj+S{nQUma@p zBwupXHH?%j>crI+Lx2I0I_-G;d~EPCx4QY0NUV?BTCF5V7{pxX@D1xX5{+e;{@#*n;sB8Loe(j}R$aACw(r4<^Pb_Du|3fin*Y8q5_G!nLk4U8s zaoFcrwyQ8FMZG=HOIhqUr$4%Bc-%W$yRcCjmvnzKiNX&DR3v8 zNbT`?-DBeFs0K@)^?bXJnjY_X^Tu#5^UPEF0qOOlshhJVUPX?;{$Th+SpPjWS{VeaF;IgWD=j)f~;mkB9r6pxJ?8b^`?KWW)s#pvV+#hx8L**_t z0>xw%RipPgb5!)y;|Np{7*501vTc%k+~No%PS)2=_{*c5F7(5j zu=3TJyuPvITd`QMc4y13lg=CNkoo-|H)b|jju)Y8K?iG0nI6Zj-+!yrBOcLWaCyG< ze*ROlPe{P00s$x#0sz1>{qGR?$8LiI>3dtBQPsb7mzTG`F@x8a5@8A1oW7D7 z-%fr!f!UaU^mbs1&I~+$zTMb9Zt&T+s4%G1jSNC)G?D)XVgW(Q7>{gGWJ?z8-^r4! zkYH#2Vb3q+PkkG2u(*bVO9p&5RI|Dzng?HR6%;=_Uum~&j60_6YEQ!gC;WM+kkWYx z@TY;Hm+|DFb_b~YScZn_VYGeF%VH{OJM+fFYx0HvrzP3vxDBmgs#J!B4ez9;!V@Tr zSVB4B6a#N}6>iF@Y?P2O+`Mdnt=Dtzy#9K^u2D1yk$CrQP8$K41xNMgceY}Gd*XYU zWlj^=bc2%Pru<(UX*(0cY>&4H+nIK3=G><_FUF$8^W+akQzZ3{{e=c>s}OgG=$-9F zetXrYb1aLCWZHm@EbX*|iW)r`JHAcH3ak~Q#<+J*>M_SiprOLr!~TE+fvPhO>Kd90 z>WYv|4`)N)2(=u@T}(>b!xEZQb#--!Ui6iPYo$RiCE_32&x{gM&@c_6q883Bb!!cb zFZZU2YX&oAXo%fgM7VFFuAZidtQx&ryPhJC>m8p!&63~UdF(2Es2&IH`F@hG!7RA5 zL^&^E2>s$^_k!6EjbY%KZPB7Pxtw%BIV9Q^4+3*}nEY1aFhOewR}?G_xbD1#EIn>} z4ao8Ki@#3*-?VI|t_b4cXpK7ZEEYA-NjUE8@cA81;}c_z=hM(3&-U>5X-;Yck`w`^ zEVS7I1q^@=fWwTFxXIzi-e@!`zg~}=?-G~(%sqHpt5gg=6tqY{V**b{3)8DC{O@F$wXAtAU)|VQZoJyungo zuXidz?Z>kB-^16tQE&u~{FR0n`z5aJqFle_lxI1o6d=uGC+l*24N#C(FB~9*(NUM| zoUsDc#2=to8X!RZg2atGsn!7>-88tD3o!3O^qP!&-b*M+AJk9ihiowscX4TGP5PV= zl5BuToS8cV1_5ve`Yf2>;c}ODwk()DNu*ewl2{5{&m|##zwU-sfkl5BQc^Xb5o~vR z2rqgJcR_qbuIX_}e`SE8U$>ok8Q=n$w-F#oB)lJe6VH^qJQgY`T}W^pDU=GQeQxi^ zGrHlKJ?4vzV*3`6mqnG_{^0jc6Gu5O51I0LQ9j{xtsN zVHgi31K$#JJ&%vnYiNN_Q`eej(;VRBB6ayyqb=wgO4UoR0h$J&TNpFm)Bsy^Ir))pD1bLJbPNr{EDGjkR$8SCp&DtA<~MFTXPO3 zMBMyju^{wGVu(wLH{&4o;eZ~{0;xMJ7YG>GyfQzM<`tBToP_@QkDlRs?P5|KVl<&3VEp$mB`Lsd%(W0}1%g6tgwTf@*UIA9%02cX-EEIeQ>x^!l(#;Y7gZJMJTGTyttJHGAu+kx`h9U{?pee+Q5Y1Q0Qnf@B{5=DnA^4RwXJ3yUmTFNn!R0ngIqV}=CSRZI870n2T00pV zXQ|DK_?4-yJ*2I~Vc?Rq+;Tud6fXwOX^Z3r_c~E+N4hrWGjfp=J`4&?<+zM()Xw0Nd`Lr^z!ij2MpFF(LHS{22$L^; z^XUY9o&Ld6cINh%_HOH`E1!F%kGhwq;jOuhdoWW+?4aR>R7IyAMDs-UZ+Ia!3d}eXZ3uJpxSvl*dq0vJ2lLP#?@*+I`wksNOGQR|6r;Ce{tV#l=8um zPT853h4@0M8x`h8GDNW0BAuk?au>8Gu`bs+dDD$iB0# z7Q{^=RA;W*;?%FcXzmWuL5m=UY6-M4u*VmI1WA)cX=U0sJbd6FbU=X^#@%<1YG35<^S{yVN85I2iUa+J z>AX1N5u_{k=0L!C+CRG|(;AZraTd}%Qq(vg(B2G>6CUL11+@80YuLJ5l*kk;Z&_FI z@WL^Rc}QfYG+2kQ843K0|KwwF9ghT3pqu1^*_T9P$0Orcbu@SDo#!N{BfDfg)ep7$ zF|_G}0s&hHx^!9_LEt^8Gvsp)MUc(jqj+Z^K?+VXeO9^#<4tLre~osjP(`rp+o!>L zGXtp1*W>{QeqIQOtwHNdCW<)2bt7J{^oJ-Iviq;qxbEU40f`1Z=AMzO`VPcJ3Log5 zDd*xhihi7<8d5{kT3j z2yn)mgQ<#193roXh)jDlWK56!00jewjI_H8_Lox|+#O@2xYU$cF$<2}nchw~yMLmm zt&bLZI6drrviVArR=7fI`SEg*a!4khKZC$U7|^(RV2Z9BLxGWrr_l$X)i?;=SE>&f z=56lZW8`dKVB*$LMFOMrkHG-{;z+pzECT>yHDwP*GRCBLEMl82Kf}i?Hn2ahI}EY* zuJH*Pbp#l;R*c}}0k^p?$22!Zj^OMed$?jq|MLsdfsz!C1# zUOG8Jl_n}Sw>E!wEgB$sW`-fVzZ;?b6Broy5s567ZR3*7*i2>Gr7sb`3TuqWS&a^Y z_mGweAe=IIvIrM`af5EI77SZ0#8Qp_JVx5v5kZwtWI$t2y!*Y0O7a|Z6GCY5wF$b1 zKqck&{YhKwsH`WNnk4}B3|tZ)(3sSs*UZnXrBOfX zdX#gAfLiQ33~;Y(Q1}-)&2Ltu-!3`~*Poe!VW_AZmy!OT!Pm)I}rc3JgFTOUmM)5dg9(t0`=8^ z4H5|;Bd6HF*E?K&ut|9vatQBq9?-+*8$hRW_~1cWpqjs+=LB|^NF6MYnm9vxr>%_P zmc3WA$T=sG7Bjcg$i%h3j%2ppKLiy6uMhHTm2v057uw!?I}v|^H>(w}QK4f2O(npVfF{%L<9!DDwh(EFrI4g zoCtObgUk08@67UyEEA$`(=*7cr}?Dj?=+yi%&pmB1 z@&D^AQ+vQW)kz*VGTUPpJx}}ZSX?a>@I~D98sZ*UWaeZozu<&Dy4Cyf^PY5(vPM%k zGdLhzV!aw)8j(Y#mcw56x+5RGEn3(L`qrBhYPX);=YefTtFFS1yo{;qr)y~ILa>4i z7aTnh!&pGTyXk8*+BoGw1P#0A#jBRv3Wa6yA~hvn5%3Hv9pp@gFVC zaDjlQ#u72&@MNA|GxhqJL!P!`bW>#z`h66BNk{<5RPq{B%dvovXp?YG}qyf z3~-sJ#r#_LEz2qGVpM^FYg`%ThYyHTLmV?12u6QGYxS?gx3h>$tfgfZ zQDv*0XQ>{~DEykCqu`|JJ4>oE=h`vbHAOGJ5L_0hKY3T2U-toM0J2=z6&Dgm;ROey z=YD00ohKREp@bko2+uHP$$^?r|M@)}b-)Y>VSprj;A*yr7@L|>o!Bw>pUkbM z_36#XefNA??S^~~lqKKB@{AKs#44-QT?JQG?fKHbfb@%D+VgQ2S(1J1r#O^l>@xbK zoq4S)RRH#EHa`gqb?M~NDhCM;NY|OAiy7J0Mm|nSdNt zbkG{$9{e(YgVRehu)uls%eA=}`BIuYPw3{deCB9VdO5WUt$ z%T`p&RTOvDfBS%=tb`x{#l+yF{!_{uVrm#4k*R@3RNJ0{isoB7Bg~#vLPPc72+od) zoHXJfy9LRAo{q5Lp*H=1g~krdzZGnN2n&-twu+&?@PryvGLWw%IkM8Zi0R)f3Qnai zI$x^Kly*jxivXBH_ONA*2AocKPzlAtrW#I>;A9AxCIEP%zVLRX*H)o2Nsx1XsQ#c) zzmg@hx`IW(a@(E*FYARt$;Eez}oKL_sCjU#xzKX99-fSJ-*z`$P~5c#U~+OWs9y z4J$GjlWZ%SqE+eg!MZ1lD#^Hv_@o}n_?SJMWGZny&u-10{>L!UftLtO<(dH|0M~Ww zh?7|_o2dp(y-|mNkx?)1_}B~?E$$?=%%X#Prfe3JN1eKJ+r^GizGN+_e1t(?ks5sW znrU(Ns#I)x!q1(~jeoYQwA*@AuR!^I@yoz^n*4KZ#WwL|<GQ_k*{#ab3VP`z@Aw5G=AA8lxns`;@SY zv)3!Lt`X5$UA0tnDgV)-vAnT@DVihbv3yPd+SS^?&}=yi9Q?~a?k;_C0o2HbeUpWz z;F6WZhMO#8uW3m~#(dTEhCC@Op6S%I4@skVih@{mje(0d>mCcC)(m)$dV#~2S)pEA z*kKBFtLh5et-ueRbt4RRX-{7)T<-bQT7aJ@K-+`!l1 zm7uHasiMcqN^KrggI_Bf(#mX^m}~o%T2^t~#H6e{(+kl4B`e}-hV6Qyx3p0Q)kTfu+fY_${+*BZufzFC^`g^ZHxj+)s zRsZg9)#i%%b0`bACmLj(sWD3fD@w+mRwEK6$n_MCg^AR#jD;=&DQ8!g`XA4Y+<)^f zAzx7!pbs*mQ|HJ3;4Hl>R9aHiN@AI6Tf_;H8!{o;4%DU+!KWOjFFqn7Z)A3kidS5k zxNY2E8Ejg&N{yeF*_EM^BIwN;B&VSGb*b#9>F+pHW3BLh_!{tv5@>z`Tr>m>rlM6p zfDRB_!&y@G0h0EA#Y}>i#cK9Qt|HJs-NSK#7a`7Dd=a?SQ1j@osLf4&@t?M)t_XV~3mqt%ZKfHcm%I`C)dIOMWnxjjGO2^@ z_6|2rBeEk*n;$nd4wq7w%bW*miHkNn-<2Ty7%xo_=x)bY>9gi!~dzp8unRxJ7< z`#47F+MhqL79nA1i^tlR^wIP&Nn3?BXr}J!?fG-)R#Ogk_v=yJ15Z&r`c;{f4Wkz3 zUl7ecr8tNxJO;x#3IMcJLs$c=3Mv+bz`w%xY>p_Vq0eY%yU2+zz-T}i20yLe=GwE( zm8nwCQ8Y!I)LR>^#I8o0i{XyGy7GblH27 z{u^ry$>aqtPky#AM_XQ5G#D)SR^;IC?UO6SfA%)9bN_5`&o{&t3D-4IyN+FS)$edJ zA%}+~&mELB;BcnHk;#^uPXUQ&0*hnwT4JOr(1rMBb!B7Hx->t zeYiNQZ<_+tVR1n1#}0SrtUwiwQk^@pE2&TTTa{k?mUVckhBvxWELq%<5gEJORW({! zp7t#I1k^dI>>e5mcAZ{TYAW$f-(YDLf#(TEeu9Ysr}GlwySBCoy2Ilba! zOEl+R50cH~o=m~+tr+~4bYtGUGNMmf)(-c_-^mf|!aY#*a1|=C!@Jy~|x5C?)?c`Ybo8>(JuJ`o(v*x8|zfJVr=X#TsGoTM2`%t0kirEy4{Fars*7 z-+O}zF;&g8-HmDH&-umdhp1YdJCk?TJ87GN&_&3D%t%{HmWjz{-) z(uU%bepy9U%Q03}Zn>czFWQfPSh4jVi*d{n3x__o?r-muinyBQwIrW;zuSd3(^E{mNR9pzHN*kyrGB%i z92icD1ahx=R-}BHZR_3&QNJq&ZnJW^V;Y*MQ%O3_7qcS;x8(%9Hn`&+Za_V!(yl^YS(ThPxz0WBR6Qvx z%DIH`%f4!QcQ)J=b!opobc>LilTG}QCAx9kQSmnU8f|I21&OxFkvNk+CRM}<$*QL) zmYFkpntnLxPg4IaXu<>qzs4>3aHE>KUq;BOFYiPLsAKGPW4*HyRUsjckT5u^Aizijz9!B2mDE;gSU4(~R9uNL$8XB) zs4oV&6E1fX+8W%LeVJ$fx_)+*%y*SZd2jVb2EP=k@QoJi!m(OVGRp)KKwk%r_{$y6 zC>E?|!i#3%-*nIslXkUQw0`Ak@KM{M`+?S+AEUH=?z4F*K85gAE*l7Y4-R7?s zuDkRY77@xbooK5$&BQH?QH)BeyqWg~kjJVvhc)>EG7^$rzpv%}*3KiS)88e>q5R)WwLS zhrZf=1CdWcwC*k(V=fY(&>z~RU2!rcUv2n>Ps)@W-PN%A(GC35)6r`J12Z~b4PY!$ zhHWF;$=c1LqN@=1M?40@qOA$E@5%#ZdbO&ak94@NO5YX0JhiSnREb&3Qomld;H6jX zyR)_EPZm)BjFcwWN>UBx38BxkglHHHVA2bjyFz|ex|A4<1$7aZU;Jm72K~E=EVJuf zvSdYG5YX7@bz-ul_{dbgN@}`8z+JDPvu%XY8-Si<+ktGD^QpgngYta9qqu>Rn_I-3imI<%o)B9^Nc$b z&I!V2F+FelSZlkbcYSWw%u*)#zOvK;C;=<@( zQjYhhSL8S!#pIC*U*ZV=_D6NYkDoY8LXI?~;U+vW+M9y}5L8Mt^*;v0>t5h({?B*d z?`~U(mm<6yv)~dnvJ5ltT+t#0Ij^L`6Cpjl)1fqNTb>9T+cK>=DvR?mu_%4b6W^OX z%B>>)0+9gs3o^iD+f(kkxGW_35Rzu$>yQNJVBKTJ*5pT57sait z#Wj8^9!2I})BRdJ%c*J=6%*9OR*ad|u8QuGM9lYkl{^ZrF2qdkd)k%fpeS!D2^9P5 zkI`Bqo2849{s*D0-mk8+M|U^bv)j`(9nyUSgw+7^msrj)^B4G?k%pqzdQP@?FMjYI zF__#eZFL#VGa9oOw}UXne-S;Zxm3-0PPnSiy42lktv8e!F}3uaWlN?&#Y&!j8hq5( zbTS?Ra+Q^KQys~F#yf0WJy*&=jBLiyPU6#Y6VcwKmV%nmsNzv0MdvWH6tpq~viO>A z9%?O)Hr4s|xQ-xT&utHrwc4eAc?uoDjfG%XpwAlRZ4NC`GQ23``>=K`hXXOR?;cMr zF<6DY4HUNLqz8996NEkH#Fks>E{b#+!eJ;&2yV#A@zRr6bZCNZUbw#S3O6*-&k%#x z$YNi@a1Z#8a6M`ms@U%B)qzwj`hT0WNN3M2;sEb$MBSgWy@56J;g&|V=)2giG+f@EbpO0L+2&VAcRv(GkLAu~T@^h683Wl~qOY8vl=r#k*>Jw+p1K%f4tNun;F(z$>;!fF~;m6cTnuTyHEdRyV6EdR_H z^U=UOdP%xEru%e8iNkAXop3}2DPq?FwRagfrQT@`*-w6Av-~QnzjIEXa8~jpe{2%r z&4Mamql5q|NWNB1W_CK$SxafR7$h}x@4z?XjA89(=wihY^ry;IU4q_#2E5dYZtCLU zvl!G|2H~Q)F37G46gG6A*PV5&tmbFb%`L+K$&l76YPZq`)?9)^%`LuL$MF)f+4ISsIz0_3ht?$i>6BF%Bh}5q%?7`b+_9Pnv z(Om4-<-uAmYAk(OCF-@jPoPFv5a6lbSNCA_Txb|se^i(SdKTSdA`K(g!x$dv82&^~ zbx2sJNtqVaxnpC?hexYI)TL-`YG8sNq7-BxlaxWd*kUgKS=Kv z2l9OUVO1^UMye|C$WzHIMYx5Lt+7#)+Y4J3EKpy5p%STzPjUg_4OuLExr91QAg-XJFg?{ye`TIF zRU~P62Ath?6|f@o%`JmsK3_jT85Q_+$~eimsVu-Kn&``L$zpYUldc5NXgGY>1}X}r z6|Yizk~ks8rH?v?S)Ly7o04}a50YG{Xp%==466|1p>X$GBQHkD*q=!sx7mDaH(&Vx zjJBOMtbNTv<1?j|AAa!o)4B@nB3Z=b#647>%J{@rArz(^*onM?l(K6nS`gHC`>F~=Yy*oa zTt)wc=ULXFN?))2URNS8Xk~h51lhrw%f=p*sXEKvSa?Hy%R2CvZy6i8JP@D)=`0xv zZq$_sjgfv2!fVHz1&Z@Y zbJr=fRj*#>wbS>rJ%((TV>gQ~ph%zJMmh?T?Es{ckw2uFIFQ>IiqI`m=EV4V%a>=fHp z8+|YHxdaf8{4f5q074}&!iB&&MNXOMHYr?7xAKhYE`OHB?VqXm7GwOakqrd$hyspJ zk=dOE93FvpOZo0XheMy?dWJugOFnsYPiAKLi$&j_T0gG=ifStDXlcfpF9ofX3Z5Ma zFu@0h-9l!L(Im)?Mf<_+AwHG1#9~IQp{~p4wT*jMA#sM_mUCoCo;m?qE6{IA;Dm(g zE;C^ye)qI1%vuqm+0Y>93}G2bj4%ciM$~|}Zdu$#;*vl8>qPyHf7=F#WIRLl2Z&(e zzL7CR?8t7djulL6zEfFk#<0%4_L8Ie-lf&nVuPpQY*Bf*O`nROU1Te?b13m;vk`ci zQe%T5o9)meZe->+QOn(9a(Ct{AQq`NA}=`gCUu2KqKRf8z1Z`4T!r|7Tyl`8G=`L0 zqGvBn{|ykac!u66M)Eni9SfplG__9x8X0b1L>PDu_3zqg2f5o$eKZ^Mlh@>`cc9C7 zl`Q_bI^V)>@kaGtZ)5+%$Y-W>e%GaV_0+Ty#F^0#K0YQgQof!*l?zZgIgjdZqDa$R z4bUAK3PHTK)Rpa1x@S@@z2^4oHeso^6v0CJ1$CjL55_KM?EMz$Ig)^s9bvchWe6J@ z`NQ--q@6>UAX~7l%XXJ-+qP}nwr!)U%eHOXwr$(Kb?zO#@ykJu;@dgNHQ2Et{xt%6 zyvnzU|NHtB4Y`Fji|H!g#H6|Ik-lR}{(~_{bSte0+Tgh(0_)|LmM@*oV62B#(ut|PPty);7U6f!HCUa1Q z3`?EzJfE~Q{LQ14`F42@!FxRyTt_*aN}@vf6pgK7-3n=!e&H<0YS-ck=n_tNAnSci z0Ux{l;iP*psRbmaKEavRpBNBJe5Sz~5MK}qZ3t=>DK*==+J zxCirH!;OK}xG78NmGgfsBpLEmq+3YM7q74Sg-jZR zM3>c*s=1w?Qsx#jd@Qau;He^i?KWr^4K^x{%PQZ)Bp!%GR9}?Wd8oYJIVpQrI`LAq z8uY%VLuGOWWBPr6=Gj5vBfqgv-75;UWGQ<+c0}X6cVnx10-zA%^Rmka!w<*dF_OU% zK{;+j0OfdaNyd%-pMOjqB#7`*cS6Pp6kx}Nh<6Tof#;h=X3dE+vt!=0wh zZF%(g=@H|t591c@O*9@&B(sy)VgL)K7Kjrhqene;pn~hVLSoiRXM>p1wmjEX(4M56 z(9$kv7kY(}FT1Bwb)oziQU|x}j_4BA>Doa;qs!QxNw>YG&sf|NRnPAA*Q46|-^S>^ zh!P>>ztwnQ#bbI5#M(G^f`DkESf5>!Mr+AN`uDEmw;|T4093N%Sen3a`b&31ck{$_~sxoic&d1hr4##I*CFklctnrN#SJ) zwhS&d8WOt*;``uTKo{VCjr|95Sz~NyIsZjSH5KBGs~sap_9ruWsChAgv1(q-O2P zk>Kv=@>PBxqFVF7{InwDDpaMAGRp3m`WIHw7Ym`5xHb!#6Y1;WZa^wqr1e#e2^3zX z5b!jtP*!p6y;iL2Ay>Ht>wn}0^v|XK9@yjksc+a6LjKy|eTX3u4PrOVt`gx@%~=VJVLGys1>|73*0&?YW_i);TZNi|~5>wo5wK+_P=I<(gO!Bn6m441=U30NKs zG2o=>oa%5v5PJj%l7t&@!iL~=QX~z1*|w@X#Oc>*#b;2GIA;Jp?Y-LkNl@YVxk`}o zC)Q+*FH#Gaba3?4nfY$7F}i9=Ha}uY<(gVp`C4C}f0DUp2QDjVC3J>&AyJP9ansSO z-`CLW1OY4hGrfj@nyn(dZG|sog`4o+c(yeb9prAOBF-ay%gR6dsA9_x)=OJt*k|iY zdQ=*-R7H?f@`!b$8Ym~tBX14NXOos3(^kGbDAdY*%B|$mKd^DOyU>G#O8}B6u!9t1 zPc)x&4>X2fUH`imD%=(3V!T@Glhp-v;!4nI*hu>V zW!%=(m52PD)983Mk9#vjLn_}f;^k_IK61@-)Jb3#Z#9o`Ad6!8(w3eWzXhd|xYgG8E zMS9ehYeK5!TFQM*R4z2C@Z;aoJ-x~eYp)9ysy{1J(dSFb@TpKrJjI79RmhcjI8<~7 z_|&@krah{WV#{?=2$@vQ((i*FRg3)1)bEw?A!!0l>W=lo?rK&D$|LinLIh(DHjU9N zcHRyh85fSoH(mrHUsS%aefDLPE6-*^<7 zG5$mqkJHnF)f2Si3Q(SQZO~J}6u@~yRGV?Iy zEM->MuSuTe4%Mr)P>vW;U3txEMugz4A)3@lrP_G0-d%;a`t};7v=bjfFH1IcsvXq1 zvOTW<8(mY=O3>k|pGW#GDpai#o7(50`l7YO_PM{pHr6N#(2j0QTuK&I8#$HRx0u}- zKV;|@_5Pl$ zYLHJJl}`qJXuG?Jo$niDLT3q^IrF$2a*OhYxQnIPTk6t;sz1<{oSr5}RB}!1w9?b} z621uRo-*=zQs82v^7Pm$Lx^&HM~Dh#$7`>THdx<1vu zMt6jA1!P1)8&d4EvDv4BU4VGNXoz39Z*MR?Um=6^85j(x)$S{U1RNrUKG$FYImH(~ zL;=0wW{P_mET48pgSm@wFYES=sxv>n#HIY+t^XLrq}-V#ADq4GcttzQMs zpv=^ys}-^pD5}h(aoyr){nDr0$(oJrcUY(`OK>}VwVtsCZMpwK#PeBRbI26SiZNO4 zMEKackrUa-!Z2I&ZX&DZbRCZF(>elH*7C`a=969alyim?Y^C6ZF{E##KZR&TdRRqG z-5P>-RXfjK@IOkzKI4Ap{1Kk#P_6PdTN~rA+>HI0^9w}hzLJDTUst;5%!- zkps(wVS@^#Gd45?$Ou@+m8drO=Q=7JgpvL`iGRd(Lcwf{_t$v7I>SwhDmmSAKAG#C zI;Y$*>(+9*iJhwabj{`%UZdxh?$>q!5e5>Yjn+%yOiiRB6)jdrTPiEV#nxlz97JCm=MVVOG9Ny18^V(S53oJ7sc6&@ZkUDs^49m!n6-P2Mv9CCsm--klVaSuT|(nd$nRxU*)SpN!1jFj-S;4&>dwB_?ZwlBW>mqTS4!FMZdmcn;! zs#AQvgX0i?zK89Qe}*Q4`atE|y{u2zw0ctr-Z*I{2-&Uw1QEu{5x>dV-+U1x12ybj zEdg55x#*WDzQ-`?e*$h*UrCh|fc_hkz7o3ONn5c|h$+{%eXVLKwuhd%?(=8jVi83D zOGRd0KUSgDTQPj1<$k)b7Q)Di0w-Wh8BlEjBEUywti#+1<%r^vv$RzhE09yEKwwl$ohzN8Q|#axZ5t@`mEV%FB)G+T|FZPEtNfd-!yDzg>Q z`8-;=d_bu-qqMls8D`o9_fmc}cD}Gns+Wzq;)gfOV)KFA*72!{qpQEvaO_ylD~maa zPU1mDwo2U|>C#(8w&tE$rbr~gnLPA>#+14{#NI{W=vzfy-+{JrYxcs#o0TqCv-F^8 z|KH|Sd2cCF2p!#>Q*s2y_h8J9_tOucf*9I=nIE~bAO(_+)w%@+hd6;4pr+8!)+^Bp z^y}#s;|uTQPb^%i7E#SBBL?Y86SocN%6O{*6fY-j_o^bN{ zkgb>py2k5W;G?@J8JJlZ!>ZO;4G(Em6v7wfd2FA}5SK|?>KT`y2ybE)EMDu@&wYZ= zi;?-YRccSi<}%`}Zcqy7+BWMMv0V{+e8HnoRB8Ot)v7+VF5?rJp%afplXcU1D^ep? z?`3XmE~D%J=GK3Q5)Uh0k(9AOGSjV9e6OAQ17kI$f|PfG&~<7u8Ww7n~|1RJ;TobOdTqVrK_Ee+YH}n`!_F7JwH{_=$jIN z!V?7>Y+%I$<5JD5(O0GOW44vpt|M5gZ??u1HD-knL4UuR%)$~xp~R%y&b`Bsd9E}< zpqTMde-q&dIz7U7L>oxwu`w`bh~c^`QX&vC?ff})CEKmLKh7><$GeUF^ez!-fhttt z*+^=d%KJnVg!V~fP@II)JcME~CatMc0{=PWdqzBKJF$A5aNT? zi7bg}eU~zM=2fF_R+LP9jj6(206Rj(f(wtveN^LS7y|Xh3Zx{_vn#9}N~yfe8Y31y zDDhwDnD~h{(qB2a#QIF&<=)-@*g2QNa2W{IgO}s{#}UJ8^p)Qa#=1WioJchf zu=yGZS5A)Edl*ej9aF?gRy!2YV-Bp2fuj|;iBNQR-{&qnOCv7~*Kdd+eI?yq0h+rv zbE>vg6F}p+bED2<^Og7Q!`PYMQ=5>lL@^}xv8MiJIjQBtJt}Qnb8FPtE_!S9p$8V_I&iY4{oV8VS%RZ%|i^iYL~C}uH^NJ!$8&F zamR9`OU}o3Fzpav(-d3<2mS+-9ZS5+Nz_HMQ(!C-ig{Q5Kon}5A>}Vbv zYYa=K*?GRSki1)%m0+=Y9-4vjy#-2Qi|R7$cX{RhU&&BymQ0! z?z@}ln z^eF6xjbQB|&XewTqt%4iK+M-y>6sc9ePvl1MJ+_Z!+4;-GkDenP*2{TC+Ook|DtE^ zk|H53hp00vgg0LG%06yb<*{1MLX^}jS_Y7~EUsPna9<%zm2&d^os(`VkHxo5F#90m ztAtmM%N~f9m)dVH`dCT$%FGVU8vjj%hHan{e238S1cP+@uBand|+ z(Ege_|7vK%(5HHC3=7wNai}VuNZAd=)AvLho3z6K&UcLrb6=BXM|H#PY44t|v$t`& z-$m9*%t`vZ)A9gcEXnV){<(S1k&vqMld?)RKC>wM-p<}c;LYjjew+t?qZ4V2&(9?Z z8$lv~W@{6ic>7RT6}J(;(F_?Cmgz2#tk&%T1~UBgpZ3HyJa8^dNp<3GTCN2CNnE$8 zPZ^u{H0vR|zE)DP-0_Joljx!A4Lh2)Lm`3h2R;dybsitY1IPPnB+YI&)E!1T)x_A^ zYwW72L70&t(?H#?pF_&fDjOwFU0HW<{Tq+r*pjDPY6uw*Irx&;;J`2pe`yaqf^fkg z(;oHfh9c);N1f9}Ie*1+vs6~jaMS>Ff0(T-@X- z(TX8Z6+i9JvfU4SJFoDQ;gGe{sk8Z3F%qF;>0BL17a*-#22t!Y$xd)fPX3c!y)5&Y z1W8b8gHmN0mFiv&4Qe6~GJ{oFZnT?({LAY%0O1J`0xKDxD9m1x#Bg4hiN2q20Yqp> z4Zw&k$ntd}?RPl&^rfZBP4~SjRObeXN;zyU_@h{mKF%%FH~dUgBfj_7*N^qT9pHT9 zkK;=SPV_?q(@hKB@SY=An# zv$BA|e!Ae&bT5uZ2p@@F3h$%WG=x4q-wpQnDJ0BkuCv-2!{NB|^+$Ty7>d|1)}CTnVNUD6`Mj=BUbd4tD8$+SIJ0S(lMz(+Ip>jp~s`^3&hTIdexB z;T^y8>c@@TVOO_kV-AgB(QsU#C_;AAhD6(wAY@twwn7cpjH}IlRS>{ffTijzI!ojZ zs%rMW6m%2F;mbaE>>ZBW2a>&xRq9WR(MP1XC29v)-n$#TP+W`WEOo7AsWPi3>sL@XeHwl$Z;h~?EFhyq z!7HRCk}e(6f)hW?1@_A*Ehr{M?aBsM>l_xs<8T7IKQx%_+OyVoJ+ML%z5HASN2fR@ z`|>?s><(JE`owNQVefg&S3QSBqL0b(SH0DC%3&TL1y#4><;RnS>TCW{ z>!r$vb8{P5IsR~Swa>}H&a^<~6#RBvw=g7&sSsZfiv{!MtJz?>;re8Kd8x>TNPBIb ziCJwgnv#fiUPDqhgrDZ?pQkH>bEp1e(B8p7d8}5gM54~xYWg{DJGJx$ry0U=OrtSe zblm1_Ds>xXX=qm@x_l!0DwF+&%>H?OB9i8g{q*5rY1Td#`N;JgG(E74$pJ?A8M%IC zMZodgBzv?nSml4;;j=o6#B|4tRSN*_!dlj19&m}kjB&rk`8u&l%|7|8t1gBbiM?n! zt~$2(qg8%?5?%pmb7*J<75*;vOiC$awXreRj2~BMtu+VciUeQ2vsle?sSi_dRb<5> z37brzO~FZ9es11MK+cuJ^QI-?f^lIVM(p6Xz{Mk~Wqgc0ntM{YeuZ>(xNwayc{|Kb zr@g0baZXwls}o#eXG21@Of}4Y7#F!!<$>>|Xak4&aaE$uf%fx?jq*nyFNLY_w$H{g zYqRFn?#Jb?wYmO{g4OXNak@=a=sM~LfPF)A3Q~04ul@@h-SggEZW>wZ%kAqTyrdl1 zI+kmH2Er(i(72DdyXj@bqcY1*lBV(X_no)P?N?gGDR_9Eq`%^O;xteo*t+gEip&4% zU4KS3P8r;}4U-npB<0c$XAUj(h7~GryYInVFBij$v%gi^Nru__mOQhtY|=E9t&2gc zjG1C{$KC`DvkI2OO|qLuasW0{ZU{S0@_sGdzQ9=Q%H+?0Z?6rN3BFXat|6o?h$~;5 zwwm`L7np4;EZBF9X4{RPjHCDw{oPX;hH6(+NLurAHSj$ELKJTpF|II%3OU((Xdt`e zeeIDuxC!w53oPV#-)x4{g1@CTF#PEdzl_wHT}bfW9FE6v?9Z!Uiz4QkTVTV(VL#A@o6=)h z%tSuc6?MLe-lZFgQ^>HG23OlY4d&M@l6bi=rqfJ1C!_b~3$XHtchS>s0(OaxzD;fR zPExJ9juh}gknG$aizj$AtV!)r*0m(1wVG4VpJvZH7@po2ILG1lf!9nfC^6-eM6cIQ zV$t+5#GErd9(5vT+Ob4=PP}IIrBw0e-*$`;Nf|49Oi{bx=+l;i3C}_bl?}az5Bpe_ z&94&z$ZoyEtCF-&H6Za(t%E~&+h1O{shXUis*>^gp}8UQiC0NnvfnCwB0ZqC;K=8q zr2hCN=Bt$rq{yMf`A=Jm<-Z`enb4x)e1sKbeDIBiX;t#Km7N&xA;s`w)a`b>TU=kc zBb*EOXEpvpBI1~exI&!8&hPUi!T9A*qw9&_h7?=j!+s@2hsDN~WiWcB2UiNUP2=*HSwK1bla)Q}|1>QMyTC7VvpdGendJXO8^e?T55Hj}#^R<7EP%YR+E z8&=&14b(I#O2GKr0J7xTPP+nAgf$QOZYo>G{PUhyFUSfZm6dn2h9WAlNi{R7Y6bCjrQ?0@05L<1MMN8j#71Gc3~LE5CN0(yVv@SrA)+&3`p39; z?>IwbzG`3T=~0CLAZ8=|>K}k=XJ8W3Utah z9^84{s_M*)DHrGqDFp2|***R^s$Qd^i1rM|;y3^>;WVS)+>P(?y7|hb(F?%OW^lLq z1*X%VgTXk;JhqmanpF;^*{LA)Vguvh8xn{phBy)s@cnvFEE+y2gF<=tnwa6{ z0}PL9kA@N2A#y&dmScX?6w$-u^p_mUmxOX73a; zumKU?8%vZSQ;{561f^yaY?rkTf#z0!Q&WkytzXIc^D*lI8yE{$_g_fXgiX_3ORFpWMl^ppzVBpDE8@#t*^tWhH1o&USn-X z!?$lg@+Rk*RGeN7DpYrgaSFK(x8ts8gat`JfVeY7LG~DfdyQ?{U}6RpKyO;4mrt{) z5q^Md{MCAH36*vij!ows^zjd`n;Hzz8C5-LFn{vMfH&%)8}fRrGTHABW$viO1!1;= zD4S{Fys1FxjyKWd&jtUMNChr{xQ~0c(ZH;ZQDdDTwZ>~01R9vZ5bZd_z?1xDlq6Vd z(d&0*R2lKBO@HcP9}d2*{YB*R_@>QRVlCF0FyJtO1n72Az!ogc_Z}LvKirVzpnba4q2~xF} z>McY8M|?usv6wuMq&43BnKtIggFuX+H29PFnH`RgyjD62w5xTHk$GB_AB;6cROV40 zES|ydx-$7P)oDVMW0-!_w*d+0bOl5pIp(vBRdP;08z=KHa^VcP-!VHw0@2s7Q#XPl z#4E%hCOkk-SsIDNqJX;esoLEUY*e@?8iEKx#jdirKb`CQubC?>%LmteMHy-6yM%O6 zH|l*TOQ1I3G{|<+F~!rMzj)CE~m(OCNa$D!5hruidl_opWa=iPNU0(ca_DqpJY9Qn&HiN^f& zKmHdW!0#B)f0ID}|4$7nH3+~qJpce&{cpx?vIqO(&c}}#1DMf7c9kNtM%bkm6T@1+ zx*)pLzdGWH(PS4WM8XT?F66Zl*=FJ-c^J`g%y^Sau8^9Slb#*C9w(g>?wNy3FOHSA zYNxCZhH2rr7?HoAAV75(rx)o#{QBn-e!p3w8h78$3*W-%oAkrz2<%{gb7t(h4Un(f zNuFQ*V)*fIA0Cv*dFat62L~yrDxT*G#2y}`zP^Z{pr8y5S*4{Zv&yd z>@`=o9gaD)#fp3Mt_Wu%DcXA-xc92kcl|=hqPhLkh-;rsiI8SIDUe+&h=AvQP&(HF z0Ik@{7gU&`pLlAM2}7ihK#WOYE%yQHcLVHr(zyUN=nNc_4JyT|WVTHn>QYzdE!P;a z@0F8uLb>y2H+Xuy3mFzVa5J8+yhnzgXC|qJBv9*to^yI}w`9EO9|8%{e$PrjD{Jg& zN#>pj$6vjvoEK;R0sU@PvmPYZxXl#@?B`RXbG!pIItedRMLCsu^pvVwbLX?{qW$#@ z;)NVM=`_gtm+hlGh>&~3-tYFIbMo9k!b&M*wzkPC$SDm*+CN7i&GNW%>aTy{jU4^} z&rz(LzZSt85Y*h@YiP_K0XtE$=}%xroUUD*l$9K(QLBaXo>KJkXTLj`njXL8$mxg$ zb-S3;tJr!Re=@!!(^~%&&xe!4GAEvua(#;l$T82l9l|u&(rrfShWtWF<-w-&k z!qZUY063wyqQ9PXBP0`n7$ky(I)k*CM09Ll?I@qACl~R-y6Spab58eAh)qYax%cM^ zZ-=8@9sh`pw;IVu|HzeIj&zN#+w4Nc9yF)Twr)*c;sd^wp1=DISExtB?vV)EC({)EPQjUhh}??|^KyiHaz< z9vyFIBZC+Fue-`~ZjWjzAIG;P=%4<$hOBtk) zL41>gpX<^Ec#bS-;cJt1mdB<5cm8h|KMG7~e0q^WnG`?ZzI3mth z4xMaxv%x2OP~W&ciK_Jl_Zi1bt;_kMbF>h_gfkia{P{%!kTc8UZ8J<$_jJ%)r<;=|H^ro;) z!RaCoWgdO*?!ZQ&0~4~0kg~Ek@&PbtzpD7d?8gvIuZsAy$#af$5^g$-!sd zR}}z^jj|2iv+d-T0V`^*M&6DDCo{m!ln7!n9+E4_Qu1*xheAG{>c0+-m!};<9_V{y z3Rf6mZeGtT(4r>X{`_G%5LHYh-9%e6#DLtzYIRA=U<9f|n2XfY=hV3d7Y7aw&?AiV zPa&%r+GK#?=6LGqCpW3y3z@5_sh%iL?Mg#k@;GEb$#y&CjmxjePZpedZDBauc@hpP z9>*EiMU!&!^}QB#cc@bb*W8)ZGW~$$rG1bDxF*VqswhhJFmLHT@CaIZ>a!%a{j1YQ z@)C*mc1cN@a$Y_5^X-LueD`rfA2f96&CtUcVO$q1(akMDHs@ktY6ytk{&n|k(Rv0# z4l3COor?G8(U8ffwLCZ2614)>Sn~Sb7f(>JEt{utIl9hbb zal(xzg`GhoeP}+>f6m(%6sEyEJC^rwi5O^aGyvjOO$?>>_S_7dq*j?ff=R<)F;~V> z5`uRK=6g7T4ZWj8*7mNsm7=-=uhN9kAfO*jc@m zM=RAbJ$pYj$1vE-RH|hXwUKex(5Kk1jfbNP8IODZT*EdEQbsmGNqUW9uWu4)4~qmC zb(?Ril!7S%>{X4!B6ufRM+8zCq_312hTFvwT0i*a&-|uS6LmFOOmw%ocN|O8&DFHc z79YW_RM8gSul`FWnpXO~vB`MQRMj(zV2Bbd0xI#DnZ`*W#}xAyn5)T_d5_c|%#5hQ zU}|yvZ+E{tYkE9$fT$sbc0$>9Jl|WMz=`S27#{4e7IQitH*gzv-W%Dp(Kvjo#eJ4G-Bv9M9(Q!qfXS{UwS zX-c9l2n4Sg{SsXC{6G@CiIZu#J<(m^L);-;EeL-rlFC#?)1oOd(uoJs1Th5u!Sr9_ z26~vJvbHG!wa;E z`ln8xOpq>7q$KnQfjmGFHZn3O4LA6L2h6QCS%d*6*y2P7H*{a94>!=z#^_&Qw^)QM zHEP6+ZF}!)sUWD)y-wHq;{m$Vhla@UTQaQ*?w(oou`yWwEHCu(~61 z;0{`wFa1szUf{g4fCZP`Rs#NgDE_3nN26bX2AO^U1B!%qARDIdsLo<9KI2+sO?l_Qb zf(FBkEUhz(kVznuqnQ#kvjY}->m=FvB87Xtzn@R^wngBnM7sPN6QSUeiQ=7z^OIJZ z!XB~1s|`d)%wKtEO=l41sPTbSHIt7o zjQ*)im9tYNbjAF7hp(FiT`l2Txlo~-+eUm3Q0EQIpDLFf?GcNzdh^P1`SH0x8m*G% z?X4(odp|fD>lyM=C^zXY%~l&)T3TGJP?YOA!+FXuyO1&yv2a#LeXv3@BST|B$gl!X z;PERU>Yz4tqf^?}9dFz0#7;)IG5(4kDH9Qd&csYcA}Gw|B(3|W$OyreL2(r`A=mM0 zk3}WtDXLc>)Q)EeJ|X=VxQmkcl*)#068b_HJF03JRvQJ%J}E<`@YIC@fYy2{{lGalGwm3LOY2ldL+!L_rJ45O;`gmr!x8Ax&;(?;g)WT%|BcB9=sjdUA&>* z2LzUXSwZtsD3u}aDQK$=DKKNh zYX#jiLTuV(4^saTCM{#Z)-u&Fg-}d4dG9gv~?Iail|>5M~?`r_uyG*h3}7u8$qz9!k-Ws&7;ZNEWG> zHe3x5hhH9y%~ftrQf-F$p*&%8$Bn3;l};>UA=nyGL^?X?V9G=-QyF33^!dY5gZ-8K z`{TtxdtO4lCilVpyP6AU2o_;9NK^J_3W{J+XTlm`0EdhHBS4uYM0xiYPTjDeaOz}1fs1qe@$5;~g5n^<*|A!@|0!9^~M1W#S4=w1>AJC!{$~a+^9BUJU8@cSG z52k5%7z&o)&3y>x$e*}Gc$_(+Uz{deJBO~$ggWmiGhg@62rqKaOV2abb8#Gx-Np8x zw7s_(w0J<^B5$c?)eowYrmTV5f$da|kU*V8I>pHPjC3v(-wr=n?HmRoD%Q9ag1Z;02^r(p4x{87)!KnAFqf^rcs=FXnjfi9kh0dOW&fznWHurrmdE+FzSU$d*acnbkG+zR$bizq8-P|F>-4B^1L*l4_{3F};{MHYw7Go`NAk zPquR#*tB$gD?ROcEx<31F_mV4P^DKsBBzsR1kK49Grwu(YXSCB+_wk;dnc z`0$6YqgIGcQ9i|nsa6fq^xfYVL_uA#Lki_x+UYk0% zd;6RX+?=!LH1A*y=2g9CMhV6k*-O)}3r7KqK_#+sKfAN%BwsXM zFO`;vl$m6jHtIW2FQJwdkvVlxfGoq5`W##>E_X-n}`T5B`{#Mr|rm zSean->v>^(aaYE)0arG!aLwt+=?{l*dMMjKy{`ANh{KVysPy)$Srk09AoxW#N+A@h zl3-#jX(iQ$b_{@6f@I(5?@Q2`w>Yrar~L8e1Qn8}(XktV@^(;q+tXWK$>#0YD7hgr zc{~y7MYAAP8sL8om!xM?x9_7yq^y%PlW?7HB)I4{%=ywdsGY2>W)ChwdW<$s{WHca z#UePrjxHpe5IZ(lvCZKoXW(v>^5T((H^*)UGYNA)sbtwWN$>Iv0s@a2C>yUKR8^$9 z`Uq&g#1`_6*{rKWU&^45evH5v7qm!Ve7(SX@Xy0P5@&-FrzrX5B-r7Wm;4EQoYZL0 zm~zT+$flpExTqhpND*N!!UB(-;@UD^MaG zl85VXl&InoMRgXce0JX+Klm{D%3~a&-f$-<3-oOvXh`P8p^GC}9SG^C8E3(SO~9D4 z!i}Z7G+$OZG>hTzE$|Yv3#n{2Q_yzu2D%up%>o_ddBY*a3I9r%3@c5SMep&ct=j$_ zVi3@_+ zfMBN;^$&*6(Ps->mpt+^eMi+SqYcX}Zd&6Y*FJS$R=Ywx>JN@t1gok8=_C`E@@ix@SLT5V%bvFjMhgZTwKihXZ_E&K9b0X1AXR{d26JBIIO+XvB~z(=iTnx88Ng=>$PQg0rRzFvv*IUbtlOKh8)kZjGr zc=kSGk{NZxDxz5Nig~s93@3~P>JG+-mOWm0<-A?PttRH4{9KS6$t)xe+V1phc)r_A zf~{`Oey+dzFE6&ZGVii?Uub@KdY4HWB|e$-KO};Yb+xV{p+>nC^VbuNv$oc$nZIe{ zONE#!G$tOPR1qfIbitHXy8S|l4=;ZD-p$#BwC@jcbv6n#vNqt0RBe`5J}y_sJ(b0g z3^K?NL`RE|V2no~1y%f4n#fTi6R93`z{wD&QPh$^{q;9|$k6klt8U-39ZH{nTeXSZ zt?M<0>gDP@|6OoFX2EZ*c{_TJ z!p`kvS69AQPaS)k=0+YFwmes+X%4Ebfm_kO#XT~9NLsN{VUihldF;&~Bj-hMAC9M! zZp<^{eL@#r_^S4{57U-hhWUiDsaLR0K>5#$X^6?Y`{*jXM6DTLr`-qK&wG0-ZA=fs z*IFx|3!QDAi|*0Ql!da{SGw*d@0HriLG{g-lNISs`=3Os6#Ja;Bl=1Byn2H=18SBs zN#kVlsfa*%NT+`q2GnD?@JSy8bH}Jz;B#m4n_EH@d-doAX`VZ!A1TP&&trT7d@jLA zLp1fIQCplWBZ1^n%9E9`St(uP%U2Q82d#X3_aNOuFY1r{(6m9RaFRPVCXk#*3;G>W!+uu`w-tyKxgQDOVJ;2UO}z_ts&YusgZV)ahU)Nq_{ zY+!n+P6-4F@$8`(2Ecu#`TtUdG44a=n&CGSWZ!n=9yY;aezu4lTzc=IzcLwdWkeg= zgvMWPFz*0uuKvQ*m_SNlL^5SsjK#-P$%>1HyU+-jkH3?%5>IedgH)M#ee`m-Ww!C} zP0c5o$i3Q&b=Ho|ofhPJ$tT)H_bCpREk#QOF^EE{1)5?UC#LHjeT$>#!cV3H>Z09D z`99v@-YKgZYIIRN=l-y-;woFlIFFOG+EE)N_wfabL+<^RA6*J5rwjh}(O-W2fh81I zh#dzy!1tEVLXfQ^(61|#4;&P>5>~W7j(2FX+#*a7n*#bRrM~UrGrCS<`Zm%Gbok3_ zZ5PwbnUv;oMwv(vKM3X^f)PJSIDgT}gUWge_;7eXFqmqQ^88~>x7fH7)LDS_?W5P}ddTacx;5tt>}h_{&;r%8djxZYeH5>8oerZQv>5W0E72mU zlvv<;HCh-Ux}(Yux9I!~xTg9Zy{xmqG|nP#uu%!9rz@y8xd@_# zju}s&AY~9H3@F#Fd_Bsu80{NLAg|tSlTBqcS2~;YP-5P$B=$CrHMIU8({v(ePPcx3 zmJhx)UtTxm!5i~gh3y)tAG}#_u?+B6^7qrQPZZ0DUhOGWDqk-LxAZzj$14q|0?Y95 z*K^A~rEEz1p)7Ab9Vo|Wf|EvAzRwHJ#Gg3jrahKV23d?8cUVa2bh<3pibXpg8T>)s zc7gl%Nlm#FJ)U_FFH=NGZ|V}Y{(ims|J#s?Xg?gmFTH52R_)Py1r#8$u=|e7@^OmOGjK=6^WW5na?=Yb2EyUQghm!uY0dZqx#ea5k=tDU?LC%C2smx<9ek-)doq6R z@d_R^8*pmtM=gUv3BjHNekhP&uTRL+gRAQcw__nC+0c_RmnO*Ey&KD;n_u}TO%90W zbmY9(Ig`9q?1unWO&q#S6BJr*pBv@3{%ti%YT930H`Ls=Tc5n@tlWrL4)b>_NUJT3 z=uu#iLiS!BRhRgtqoS!`zPyFo!p3t9mkoec< zi#BSs9k95i7|%A9XdRK*jL&q2im#l6iKznh zw@th29xaEshUu%CEBcC>_vJ3FK96tjizEK8CqTL!+qTtw+|8&oCvnftvRDWkN$U}e zwgVi%WHeJ%vTa@M-Vs&FY@3Xi_om+YtCQYU1?XE;K@hz^;j2eY$)Q@+fmH7ffD9_S zOPR_)XPqV$+Eov+w2Kid16A5dJlR8V1q+lFL7kN-P5C&T2VO8`IJ`d|_(M;t$>6(n5gCzxuB7zUi&H^YX`j@lU?Ns z9K(goMyj~ffO8 z_x=rQ;#&Gg4t>h6{V*w|zxtLVuad!`-IicWZug((%R-UKdhPaD6PHnCWp9sF{+-93 zIt996ukCI1NXqy~^)JAcAfPrMN}zX!VwHa?m2lHM144#XMI^=QWf8SbRGlahBS?g> zY7d*_|2l2gZeH+?Wxq^<71X%F{GIgcAH<37l4JF$6Y?cQ?hu3a1ADuVsBmCKu)Qvo zvfgCEzd~gU{b_=tBM}0MSM!A6T)5auMhDbIZZr>fZU}1&aVQx|cW{vhn@;EF3z0m@enj)-=jC{Ne?>)G0H(kuH2C;Pn^9!rhH%2ZVO|?0(ur|6LmlS&95-qdoh` zU;gX!EB(hg)Xj91F#mK?*H`+rUABd^!|x8i?c(ON)qmkCqEXv?iFVVu`!x7vU@J@e zp)%rgUTw(R?a^s_!AAmdHPaG=E_*>)gP_nAty?CTDfPHN@Uz9Lj<2qjzgj)F6(&1> zH&`>ZEW-2BK#whXU2tqZEZzo0&P3;PLs>fh<=WJsF$%JgKvy`By>&LDTQyUdYyB@7 z!VFkDT2;-q`kEWIg;-f-F!|h*<7L>~&=Z!kP@Pt$o&0!REBlY&NtT!jFOx}Y)9{jj zkCJPZnu@f5&ulVB+_$Q?e><&Q;Tc-|Cgu4=x-(kMjBu`)9kkh)t9Tf2sitn`;;;Uz zPhoP2UTCJejEu8kxr%J@hc!)^`B2rmE0cT#|EI<$UwGK&BBe zIz>DgUZRStVeKq?fGRdT@YKP(Zvwq^qK~3hH-|OKR-u{6?IiUg8V~H}OH$y&FD2_z zO0*_h4AJz#>lAKqe?ow|M}E$31MVv4k?(lvYErL|9{2BCm(oU2gMs^r!NY*glqsQk zS*Gn%+KEDCBw=GSN$zEKXIg6l*-C+)++OhZ1s~!4N}=a%biUcQ!aD~;T`=(7F70<( zNSJ+l&=>cu)Cb&U9XNaLNU8~q+PJ{ZL|Kp(L@DPW17kNw`4`ZwXoapE?YDGn2(-~$ zg7*i}dtKeNIcw;wuZ456882`fdc@!l2phKfylbmgs?+i9{?S{qUHS4T9^9~tC<@t^ z;=LN@92Z#NE|CYM8|0TWdkvlCk>%I>D3aKeV}~ZF7i754%r7edH0s9ZXZvW+~cLv?yig-qjEbo z)>|^xsJoBiHZjo$SITykrUs1ujRcVp!H87~D0e>drNodh$9hOxX&es%`X1H@&I{^p zcbE?ol4@Npasdd+)DFXY>1<L+{s1?%r$@`nn@}f7$;M*ZfA|dbB1xxv)-5 zy8~sN&954+RkGRdQkX!-Xj|6$ZYWOA<5$=!_wdUu`aDpUi8eb|%x<=R;*TM*Gd3%R zSvI-(VD|=AH~wwX_Q;RwPGx?Iz_v))SL@s{jKhe>2XVT7z}`>H9}gChv+Y%s?>k~Q zNF{s2{bqd9M`=lE=oyu_^0Pp*Xd$Rzzr|e1`Tk*}-|D~-YFC~v8jpCoGHHV+ZXwW4 z#bb>H)b-j~iI~cjBA7u54bc@J?~A0&+~F^gMmX`!U5VkOSt+LN%Go3z+UVWgoDpnJ7qINe$3k2 zq08BH!lUI0&->XBFy2XrJ*vO0leb{6)rs6X-eiK)HApO>B#n@d!%GRJ3oWrHC%AU) z_6?C{{&J7=U}=ch99}GnZOHtJF;#+<&Mu<_$QQp=>#J4BTgKixKmK`wRfZ+JLA}*b z_AsyG>S4#RnWZ}*61tES*u$clFHC^Ov={q4%s@bX_N)II+1eNTT-Dv2Pz0l7Z#rz~ zhW!S+2^LdtS1gIt)hh_+J=bKp2fo-K>cwzCcTogMiK--nq(4M7gwbu3#ai(kigutE z>I+mk>bHyzf9fQd)yn_fngX8Fn2b^ST7kh1w_>-q4ww7^1_3=fByLQ2=_D~Ow$Fh` z`3-O^2EZ3CvKWCV$*>B~Y#X4|8kDb$R_j*)` zezq9zH|KbbE9kAWM|M`^MUvZ#m=_AGpB9Iv4dc%sj(o3=E8zuX0p>}DI$tYb%t6t+s@y3W@N zJ|~}}78rMY{*xo167AH)zB%15W~=Zc%gLX&x3_BAuHB_(7H}RG=<0$CWtvl*0yX#t zEZ)iGNzapMGjeK;-qP~&&AE-{urrljrN39d03>H?hrAid8#u*$>~;ds>v{!BP!Zup z_T;=YMtcR48FlKj0FEP`8ETxSpggx%+=@lQ*Sm^o+mi>K^~J_H^c1RZZ5EeSniYt0 zL$L`*B7?PxmMxDxQnm}9drnj+hH)ar`O=z5J6u~mXmrUPc=OgT5FE-v4v^JIN74gn zOv@tBCBy^j7^BQLpm@LF1fRuv)wrKxg-PrH-Ge(<SxNWd45$AhN@AI_~KTyKOcJb!TZl~>=v01)al#Z`KtA_?^@@&waW^&m#9#^7yS zIBHtIb7_KJF6N!3yxR!IGd$qv%XL78uyvUS-zB_r2OACZ8HMk|#2r_R*?1f1+zf;;rupT? zI38;Frh|Q_r?cy=?1%kzjbHr(B-<`Jw_5FRVqb-9$mM5HS27YBU1!#Dna%LrK$#Jy z=?vFBIX*13-TTt7dmP!?TtI%h#!UX*ZZEs)IG+T16%IMcE{T;~QwbT~y zV^)Q2(}Q{%m+97pbjRCLg!E<535hxVv zOO=^TfsMfCrP!jPz^3s&XQ3x1_uyo|QKT?zJxmplUvqNhc4F?<^PZb&NA>ayzQfUB zHLINu#_lJ&V)e^$sQqZ=t+5N`s0Ida4WBEKLlar;0tt}z@BS)YvvvmEyxuqt1dECf z^Rb*@^wt}-=I6dJZ>rrzVU^*uA*u=b4kC6v4#`Bz!3E}yw9IG-W065 zt5vZwElu5IM4l^nEEjI2yax~O88qZ|3&duY-Ad`q&)=b1ZxVz1$g|Uis?`lYzrXi* zeCe<~T6X57k@|$OmdE19)DN4m!mKsPMgohN9;}cO(^zT7&2EUZg_Li-U4c~>mHS9t z6#5zyYNQct~_Zl=JUTg5@TfnKZ;zGli^PTcQU7ly8r z(t$>~Z8QaO{XoX^dkAIf#x~SODyJB+#L_#N>6n^5URgXd#Z6ubl0j98|M2_?Fa6_9 zlVXthPN7ccHlmm#_(FXt;m9l4xR;2Ib z&!v~0;%PBk#jKaL0K6a%r#6d|J!S3h4gCsAD zt%{YW&l%xX5+;gatg@~M7FAWG;6Me!jD?rJegS4C|CraqDCdbyuwGs3JnfH4tt{3|}^K^~!y5}!sP3nHP|j5x`> z_(7{|bd6}isng4|tR2UQ-MhE59h>a)wv-*&%qP>HuPT?x3ucugp1b7*#aeSGowHP| zLxFUcv4hdGhSjNgW8?5toHh_d;W`^SN6b)20dNBKgH)wRYAxAb z2bC|4)mTfIMNRj~`SacoX;nDKBLZQLf$4k$V2;QPX@~r^=5f zbGaMf!pQ;7U6=;VD(nnITux)i~2CxLM} z7}n`Iz8cGk0#y{eeQ~ohenz{*p+q>{>QB3H=2*NY%VB&dk=avL=?RBl*3LuE&g{*{ z=!=Kn>`mN@n_CsIx`YxW0Dyls&K0+DRnk*NV3+g`hiJ@X9)k6ODR8`0mjUI>L!w7; z=Y_;a%nf*mV0mSw5;+P1!s+#OzhQlvbcs6kv7?8O(BS&|_5J;bfx++))yAZ;07nP- zGYFR;ZHz2@$svZ=Z-muzidQ=7G4r&PIxHYlaNTu znY1fdlV8tIl<%)=fhzD)Qx*_HrubV|_I`78Li-blKoJv;rR1_LY7#?G zKX1}`Jzqxg`TR^)y8U=Q2r-wNE}l;B{MGFkm~lmXEU==DaIp+PPAh# zIU*3Ig~u|@)5in1&sr?(ByjZsF4=sKy#N)eZtQf$}heM*(EdtGmkc2Bs>X=n>uY(Enl09f|x#h z_mGIP9BggS!0H;XQ5RwCB%?0hMLj?J4Fq{Z6!spuw+K`snR}Dry1DS#? zw9Ygx742L8>i%F2bslAm2+1uh>u`dDH_+-fBazw>88225!31(7UC4D;T(?z}3&K&{ zr)#tV3qcufsr@x@$N$m7WWIrW-4EeI?F4n(4szrm&8T^^t!6XufcYF&-QP|Ks&cUd z)CNVO^hg=UkCt?7k3lK`BhwNHY(G4lkB5bG6;Cyq?I39$6NZdt583Q((wEUwB}! z!s}OJt{i5rPzFSf+tEd^Rp?&NcW-BtpfL2eOla*SNe8xcP0h%$J%^*xcz!1o$0ZyA zorE_dQwB$Uwe||e1|SOae!*RlBl0zZ}_3|^!&DJNZ*A_vq@ z(Wl_+HqVf!GhY?20Wx8)Nkgr$U;Oo@Bwuvqf%SdyJxRn<;HD*`{JLGWDbxPvB#GL6 zgSv;&%H4VMo{*lw+A~)0$;R_5B~FESmWaMME|bz|tfb@t6PN6r9>^9^=$~<=;*dP8 z;p@-qavryVG*^mG&od?|vo?z%NOsaD#2?UFxyN2Cg8O?XE+p(QD_+k#H}7D;x`0Zq zyP~|Sx)k}I500`HO;31QU)!7 zR>83o_WSM-$(0I341C}OX^XqT?U&K*y0e>B9e-{;rdm&UcaxN^s4+(moHk@|*J=8K?7u6*1NKZeI0xQS`*Ge z{K~%pFrooytP2MNn2~BY={Qf%YNT~=uN*KRvd_fL&QcMe$`trk8McXQIxN0rGRWN( zNLr5CYyik^h8ot6EL=Ak0J=k_`Y@%F zFnxbKrN>Mw3cs1`;t_d^41KMP615`d=>amLY{Zf_Hnu4;{?pzoP)hb5rj*>m9; zOHq|k=lYKe<4Jc2^Tpu*n9+wYB``B@^(P**|?}&kA`jwzR0O290!ErcpY)Cc%*KN>QLN0lNd7^(gF8x`TN;i>Ror`kwk}xs zmwNZjbDV(-f(KwDrsRCfZw9fZ>mef|{j~=}TCI?}Pp-tbqj;|mG(w-BVqOE*wu}4B35TEe?)Yn*~_4QjA;p-%n$p;!g`Avs@aD#w85pH-#Rpc66 z!&<7|=-7yhjsS&Q`y|ky6E%B!3-qtbAef0u^!%+`>;R3O9zX`<`I~{2FOQ!tCo7E( zks|3^2F7604K}D*tJtA<*h@>0*>_=A!^TC>mZC|Gk#kY~GW$*~9RwII{q$rjHZbK? zo92KCYv%5`yO~=g9rR}Kh(t!CVP?4Zg7%`O=}QJ64ghq_CjE(g^EfJg2@9pxAFA#t zkt7b*s3ScvoT3;6C-nL~R_y~N1J52~G}rD^rOaSrhx}z9wGc+XmkPM(zCG=Q@vP`s z^2J@+w>+ENIY3ynyI!`%Lb@){3)!#x=<%ai3U9tt4+6da#Im>Ag^&b38@*jnk3(JE zF?_aRKVFSCWDhf`a^zL^@}mBeS-()8tC;$FwvI>Wv2y>{tbZ_296C#lrR8hh`G?VF z&re{Y(T6G|PvS4bEq^CRz7C419_v*lJz2GJW~4uq<;MN5{u})(psN%jv7ZnizD1L& z;yEUCBYN}_5aU!pGJk+cy`D3|Xf<}58niiT@pLQh>@^q*5LilJPKr?Tzr1ZILBdLz zfFgbA+Wki(Drk0_#p5-~;nbOT4hN{>3$7vauY2A+*tLiR5R~0=wJ9kpX949R z1mvF|P&Bz2iymX(NR+WfGVBs3`(2W%b>P&B(rGlvUup=ju4&y22@IJ8J!`>5F8Ks6 z2{z8|S(KQ#u?;bOiFJDn*4FV)T1d-uJIkBQGGDn9osH_A{XV6+B|ftP>m}$kA9ip! zhas!-Vq$QU*~s$0F@Gt6$tlGSPm<1*l2-=hZ`4_*krg8L0+R4{3-&Ac6Ly6ZO`!v^ zP?N>yP~c#}!pj#Za}b$FDAJFFN9+yL$)#MpdywmvXl3PfKCzGl_F$gKX!odts>P3q zQ`&lX1(V3Nbk!_$`_j$B`?4>J0~(-H92}nVIr-FLC;`s;0;1|WJUNGeHN!1j>CP28 zDmJtFy8H{%rzN{z=7Ij)<^ACjpkceiSlKzQ=dJeBsqQFlDFcLo-4%j#-kCQE72VFDIM{8PTxoPB#kO9qxnc3W->IE%BVeTa(<2jII}eLkF=_NiFl)>;qU!o^M(g!K_~ykOJYhs6|?N9YF>3Gn|Q=1cY-u6i@1xb z1{4=_;3GWb>?;3Sg%v~^F!zVRKBbsloxR zEFfsISYYGCK0o?yU%dSqQYi~!2)UC#sRx}isko7aM&X@A?boF-F7;1Q1E5V(4`hT} znG9~w&_=0V&`@)!AI2l=$)Wk@(B(i!PwPX*P%pS;i+>#+EovC+GP@{v+1uG)=9 zHgud<{$o}b7&^@C+Me&TLD=Pg|NKp$Sj^dM2^!_dfbc+{Rn!%``>sE?=|Rnc&QVEF zO(<~12q$7OFX)A8oAy-$(gCtV&0W6ebOHFs!brP-wS!R_0S>}yvV+&c2pWI@0~yFm zVJ%2nmj0{x{GKrU*15hs{LYqreok4Z@}4l-)GRlb!3fCTPSD~t+Jt`2Wvij`yosT+%8aT)wd6!F$ZFf466 z!H?-wTJ0rt2NgSI?jk+&78#hf<^YmQOszFiX0? zvn-?X@6FTj-UE?p?9p+=X)%5+kN)BrR4!6#lwE(I<<+Q*`vQ>iYXWnn5*aI5)DoC+ zDM>)AZ|qh7MT;b>WzK0hiF^UufUGo5%faE(1Lr}`5(onRt*Z>A%SLR=W+=y9gQTrt z>Tix5Q(x4y?3Ci@xYkfOX{HZIlxenEn8MhXDKBDM5rWFUzfVhaS92MQ4N##c^q!R$ zng=1JVc4(pwms=9tRCUEtXMecsL8wX8(h|-X8|=ufyFjx0HEu{;}({XG%-ZCkSfB| zn^Wvl0mp;h=$VJQnS*nRM&0K9@}%n8yn0|`8=gGGGm3+kLPxPtephr=Qvvzca{*HE zC%?W2+7pc&(v&rag!8K^2`8?lD>G|rvxjJ{YQjuLr|e${ArDbUe)m5UVERf(`4R4n zm4J|Y^0QZKnJgZrF(Sx`Br6s;SWSnTIp4*WiWdV3^#pA?nrF8N< zh1zD7L%i3(Etnx(jz~OZmsR4PtFV)JGOGZOFt}DDe~*vH3;*`X7do~8A9tZ8Pwcs) zDT7nJMOSK1J~uRp#y`V{m;H`&?3MHJvm2qnCditpa+&d$gdtAs z2_8BNImyjxTF3URCd9}ZXP6+WHRxyLQ|MG(r>O0X+T>J;mU1-|?nE?h_jul0>$DVV z?Q^0B79}F6zZ7k0uOJP|b594eyFJN3edvi{ukw3Osk>Ta$S~Xa82gnTOkJ%;JOagJ zE4&Jt7IJTpJ+CKwoON$|cXUrz^9;W@$sfmO!Fo^0le}^FtZ;^*TT?=Ulxd`#?>I(Z zNgPRa7m#*#f^1f>^mB5}WSK}9*?Z@`3TH})D~(e(g>o1}B|rJIq%WzpTJj#^6X@KH z&>QTUU;P7Ec%_g{rFGyT_dw8ew5)b(oLgPo)sn-e-FUg4(px(1fdhWp1F5gSboqOZ zj6{Cf=l=C6-2$93B=Dw+#f{QLW3$=F+jO=WbOHv8ylQxYMJ$vd+=9DW9d(EM-J%XS zoCA&~U2s@K1GZ>l8^KGb;bvab6()zf1jyTx|jok$tD+=FZVyVE#>(pbL* zYBwJXd|U>}Ff(jR%1;ofDHkif;bF+)h1Ml@b?EY&QNAiPONC)of%o(AP{)cp7U2&# zr-bt!3b2k$+u?5LADYZlKB@|C(q{fzwqJKOzy-(VaqEE|b$~%R%;>8L~UoF-O$=q7@sx}FSeT7r6HFg2EDw)#Qf!R%0yXcmF z4;VFJ$IG@Ca5cf!EHlqIdo0N%u&^ruM@)?Bx9FTlZrot*0ty=S1_rQ~3Uxxd7ut+; z8HXU8HFD-8RwrWh=8A+p z7j!=OnAbaW_XG=;19NYkVig8iJ?sE$TMxj8W`f{x$UA5s%#;`{u4<9#1rt;OcuF=b zTi;-EhH}{!-ayAunS6Ul!u@{Ed+nA+f;9zT-c7L$9RM{0fM{ILm4PfnKh8w6d9w*n z>@*hamL0y({g#ROtYiYp&T`W+TTz)6JSsa!!;@BPO%GhDPOWCWH|)8!$R_nv#R$XT zgh{{MPtyW>)d;1iT7@9W)o3x{e0~^YkNPtc1aJ&DNM8W+sy~d@R*+yb8eL6~GYfR^ z2Z^@Pd-5Ov7b|ww2#ce>KdqmK=r%_^4%fgt>;*K=a%!FP3kyS!R>-F~yr*lrmNG7$ z&FBj5W3&4D5;AY>Pka0(h;Q)C;I@Ffv1WR? z8{Xa+mUI(#Qsnw0j~*#pgP`_sTqO_%{qn@em0-!(LBlvL+gBy%fsx$=)>sKmv-*TlTWYi%EgC| zPc2o5Kx=A(^50;70!BDxE>aMnAls`Tz=-NH>ofCS5`Vro1WX_qT85nQr_FoeP@;>z zmD-EU%uG^J())WTd-kl^lf^UHfPerbBoLhI-(|Iw0MLN|Oo0FZ=qUe|UbQdm4q6(1 za(V+tp&xB&akOs4SRv;~H(Ud*ES?n}v*bWU6dANM6iGNDX7&8c#3fR2db5w6(cJ=M ztR;xUmdJx=} zshFu-St%W2lzxEmbvNE3POd_7c-nh^-Y5eJtvgSdXnMCr8!aGMfuxbTSLicKV02(u zmdn*9X8a10hCMi>@eL(e&F;ve8iK0 zlQZsUOiluW4l*;SRNxLD1tZ=aE#2;pW3l`LLi|_D6C7lo>V8_;F-OIYHBQZ~!AoIN z>P~*Pu=T~s$02TWXZ2(R(5FQg%7Pl-0I zC}KZ4MkU_g#OyJk13{}!f9v&8d zedNfRyvoJX^pdKOr$P*}rr}ElEtYGpiUXR<-?)YSD4qISfU^Ogup)kg)hm zK{&BZIDk~z;xJFn(Z@!tnARzSm8cXlMi{85s*SU);K>@@sLN~VTX0|V5BlXl5ZZ@E z-rTy8@o^E~CyzhkOmq?E6pv2CGf;ntmWUONQ-$v70~)2;!c8c}K@a?W)%i=@=;OZt z^+bcS;#1l!3znqiu^u9U{lz!0cO+CIW4Ue_D5nN)B6h{6oDNCl)(@W$|DBUn@J1LBFXP zD*6g6Ojl<5o3^|>e>#NxhGD)o>6du5UF2b7Z_JB;7uPB26n~pZJfiYSqL$=WJGo9j zE5g{bH8>X|m8Wq}8=LmBZVi)3iStx&qT{Y3H#WLz`A2DLWN z9%mZ=%Le;*{$6q(%Xy z^;_VobK|6|P~Amy7co96x-x+}R|vIZ5I6N;VtQ4*cdkqiLre;hi6T+b_KvPDIHq&; zV5^r!7DR0RxRLys)$lE-r+&rda-4WUg2tu!P~IfuMl!57^L?kjo13@!tDEkB2zwyb zKJAH2h-VhsTWXB8Jq9*gjc~a#<+_Re-B7Jmg9<{@+>;tHh4c01WS)EPJvsd%L*PX558r5K8 z1c*q=f@RsT931+^a1rU#>hPjLVNfqNj!sD=#&9^NNI}PCB*@F}dwcCf6tx)ct{NPc zY9@##Od^vz&*TiT^<{B`DsdeV^5JWxRAldCY~OAFg|)H7lz;WAEuYE3>JwjRkBvoZ zEOu@8@MB$fv6lUI1uIS-lW4ne)QZMGb-82lMFysTRgF5+{YiE?nurCKvHlCmmFhyc zE*h(e(OUiwehr`@j3Yf(S*_b%+mwHWwZ-<)Un>Ow-bAHj*xRmNZP&*@m!r9O@*!n= z5NeXJXT0=(Ji$N>5F8Q>;mx4Q%5z13CZR|0)3|XNBE%g{yz)F82GNfi_@zbAfYJQo zZD5*C=9%M-uCY^`G7`mu6=b)MYzT%oEQ3006M&77QOIVw50(70N3{yDI6+`7hM5fWc%a=l#LRgQR5)7glD~}%q z@N8#P$Ui}q5Lusm4?}yyOhn8DAXi(Ywh$q5a@;6zULkv2t(TFiQeu9nQxImwL&P$; zNO0GK?V(`Z&J=SHBG#AOx2zVbII8t6`-rD2*M*l?4k@8Tu|v$0H)fYd?P)}c96@jm zW=$2)dO>7yt-{VEA|HxYt8og&O>)uS!LcloRREnPzDzW_`jcT;fN&a@EJn5VofJ0(^?-9aWgi zA{9Z2xdux2b+x50qTyf%wc-SrHXcN!6!U%z_j0MOA15qXx|=oAZ1)Bb^N2Io35$F)HmtSi-D@^mR}*Qy z$7X#F$lKG-WQQ{pPmgxnJpzvt*LXH6exRzc)>eP!j3jaVBEzH;yXSbx_ms@ZCXCHa z2*ttD<@<~u?hL|xE=sj;LcY+ahmtQ|-?yYve|2p6ABdyE5EK_~S2>>j>8Ju#&b^v@ z6rV05&@JS>k0X!1Dz*S=}Ij-ryOXCV<83xwn`Kh7KUr<=ADaXQ(w zoQ@8c(7t<dD0OC6AD?{NURIbF^y#4DA7I zT|fKQKKuYihW4fW%D=sJ(XxKd^t_QxNoQqk$NScaukpJw^=xg&hb4Q;cbfK?*W2fw z&dbI0;+;72<7|cOY2Wnx0{R9p7PP8IgPGUgsoR>~l+q2@uWkIpdVe?l9BRItDGC{A zdyj(ehe_J;FUz8|>5Lz@RQQjCoavgD4;;YR%GwPb*^EjQom(%yU-|aO+egIDTy$c} z%gXU2Fj!~WYkST{RHkVjUvn-zhS03(k|14|)yS(Ur_Af~6JVh>AlkWUuwG49_Nm2? zG|qvW-q%JH`daS?COSOA(oX&LRcHe{L9!-sz%Oy39G3*S8?`A7mCA3w~hSkA}n&)zl8^_WJ(HM3Qk4JT8 zeUE2EZ_o8N{~RYmD!JTl^+6X$KmF*9@5|ECg&R7r)#!9|jgKcS^b+@ColO=PEB%X_ zlir|K;+ltQx*t&FIm}GNOpU&VnZ|Qxm5{l&&*H#=?E3(qR{AcKU&ZnFSalcog3XC6Pdq?e(smbFkwJQbKjs6 z?7@~1v$4Zq+@3_nFAyFb>+Ki^B2712<+ss@aAE!i343h6=llII(|V7tw#5E+rFBZ> zLo(YZjheQ>^4RYuWUSXYQ3`$^A;e%)(M%%<0)@g~EDwBkxSV_Xw^NUr@$m{FDu{6V zbIMQd=i_B@IJGUc2Q>W+_xkDQ`|E9ga=MS?lpGUCZkxy5uIA+C3&1;x1z>^@V6qeZ zHf$V*l_@-&kYEyo*hq+9(eXw8n+vZQ5F*{2fEt|8*bRP;4j?}@kuDr1}-pkKyHo|o|w(5gWkj}1s-4patk z+NZKT3&1hW`j5trKkYxL4!8+Bwy}Th-w64(!e?OWj_d?D>N0>E^%(w#Xg#ilmN8ZS zc`!7g!?H-nk-2Cv>UrEMjsQ9P%c?@h&20Q?Si)U;Qv&^suloSneK+htC9)R0AnBT6 zRR@}0Lg?#k4W0^XddTOjfT|5j6##WW;^JWdh0eGQW984Globe_h$%*-8FbmRDsK$v>OsefEkd;7qlA&bN)W~7hmDg?yaIyW4xc%M;4=oIVLCycy*s<4+ zS5ydX3SFW{nrX-L!>*DJBkwmSePxLoTy)6y*VNHx=gF}yIqN#};;@jBG+p{SgYWmm z_PWQ+b!?)3+dLXK%a&O5Jf`%Ux@uqWxzOX;&=B%&yxIZiXo{J*4Q}O+j6fRxLZ3bh zy{B$5u7C}28x-c8+wXAj{RvIKu=b{~G14`1aJwW0%vS$jK33`kDqi zaY7Ml5C=cxH!m!X`=B}(H{ybdj|-+Xti}z-R%$q=j|e%-P&6g44oVmeZh}M%|W%YM4F7#QoL=MSurh)sSZ{p8=q%Nt9z3l~YVs8{~#L zRT^5CQ^+0D;`w}u&iA}fB6uZ%{X1c(@_>CjlwBO26QQuM%&cv^93cck*C8iLAKD-& zq}H5b%HbcEWD{m@IR&~h#(9BWd!~+?I2JayT8y%bWLRTzEQmV z>M>z->(8!E^$x`;GovWX6z~0q!YiotC+0Moj*=LI&oquAIP8MQdnaECILS$BwR3E2NNb)*JVxR_@M&-KpJRmG* z>;lM}__65b9^JM+>%K0A6FDwB5GF}`D%$OnNzdC3)VN7I8Zcj_TITi~fTaU~c)^!) zoBR5EE$YO zzJ{x0&t{v#gR%--&TcvC-)s#qffu{#_OVTj#U5CT{GE>jG)91bhaHKmPnSM5%gqZ%+n3MT6n# zRRPb|@Wmhe)^Yh&_8F3+)xg;4b}BfvfIdhM90HF4CiVtz%&}^S%LjBIv9Uvd;S^wH5OxfP`&lgvc2fDa-xp>TW8e zcqAwXj9WhUFSs%!fG>7A9s=l7l}>=l@+9{_nWl?DwDJLqU3XNY%-`_)lHs=G4xVf1 zplT)-=+AK#h}pyN6v{d12aRAy$m-p~(0sQsGIHH&eSOw1w~fd%5LnZjqxBCcL%}?r zKl6Z{S4;3t`kadah?G&J{gWY%4RcOdQ%T&0EL^hIzU$zo@IAu)_J8Q zjh`!fIc!iSsKL&hbN|fq)%bR;eJDQg7sWyyEu*bgJy)RM$p#0G#~5ZE$6Bbx-;)E? zoYujMjPE7m2#$9T4!{rXkavnB+ESPZXKpqOp!c;GjjQYdCx&n=(0cX_vUd4bif6bj zWr|mzBGJe#PM^1*FVgxtAOOOPoRi;(oUu0si<>5mNknLJ!1jB{+29=_-|E89>LUZP zr8m8Wp{VL^>(+V+^_cBc7s+g zPg{$Ir|pje=5L=>EjMymv21Q6$x0b}5(=R`N9UIcekm$PDUUIHp07}J`zT+pO=tY@ zWChKx=IE1PlpKft=BZ|60dd{20c1a8=W!uL{ojTAX>`BvO;t{Eaf^POKY$mwDbEE? z0F!1zmXc>_D<11VQe42AF}^PFdMd)v=`&Hhkc{L*a0X)7u#_oZ5Oj91{+LtZd=_qK z+kE{^e2Ro5h`e$(^!s{0%zf{!x$<^wc5g15nY|MvkNvoW=MwuId`L`Y)Ka4nZeRW&vn5wij;y zMN8_ocU#r%x$x6{xxplIa7Yw*@dD!EmJm_v80;9ioP>|;*rTu$aFyR^^xw613yUNMIEaHrEURh}R- zr~v5H#gJgwSs5QdG!#VmC$6-4LVArP1kR6;bNr+W&yyK9}zfpa~m5pEbla1|3U7j38%>^&1Jc1FtBS9tga7;ycbAIK17e%o#~@ z(~Eo!ep5)B;J=piH$YG=X`mv$QjychVy1mwItrZqR*2v-p&1`gV}rRc_MJJ#UOqYB ztN)N)Et@4)0WHf6bZ^;9QM|4Y#J;GD;2hAL3uM5(f1|Rpa4Cz*ET&F6lJH1eA_3-N*&SJQ;}>@W7sGm*{FUIOM#!j~HzIes&wdQAkKbU9QA zOWbbmfTccj0F``m}Feh*Q9Ux*-PM*!ib`M;D;h6opX*;ZFU}` znZ8{Z|NUQH2Vb71t|#epBgV2{lf(gr8?CnnSO%BEFZCgNQpZh=l}`|RWm@65`(1uk8nz4Ag3ji zEHGyX9#3-^dR_YZAmNHvse~xap2DFdp5!zGmzbn&St!j+8%;X_mJH@}Qelq96Nu~Y zu8*hTsZ0KUUjvU0^9L3Ek2D1A1%v+0QV(8w;ji(;R+wL(75`4U6pRKY1H< zkH!9^Ci@X96?WA!#qmG(y7D>*l&1;O?c?kpZ*~ClL7)q;H6ZSjsDjSBPa^>sSg3tQ zP2)UdGn_!G#AH+ckmV4IDH;ye7;Zu_;51x}Z3x!WOjB^%=V>;ZQt`5S%zN->gAY7^ z=ir7f%T@u>Bv6`~qM4>}N%|2i_=!qEnRIc-r`(JkZ0AVQTo*9p5h>CDrj8>2hrM&` z5+!K1bmO#b+qP}nwr$%!?LKYWwr$(C&FS~f+?l^HA8xJs0kyK$j?9dBVh2}WWIwn8 z#wnsmfz%+g)7Ng1N*F`qV&7ALj@kpT&9jgM{du#(SpqUhOWRXl0yeV)0ZY4infx{m zTL1gsFc){g_j60nhb*{v&vxh7fWvpB%$^R;!H;cm-0&*}4HiYKD{x>fDXU?Zcq%;X zrCiZf!GAetQ?0LFCEHf&^Mf+4!TYd+|v zF^?ftJ22uK97$j4J9n)3?h~#opIN^q9S7J34L#{UlJC0{R5&_(NEPaw&j^z9yi(kZ zyxzjRwqo_73Dn^}Y)x@Bam34m9x8NQeqt*v|2L$>XL;uxf$o9M_6zSY9ir=;8~Y8O z`@gXKqSAZOR6M85z1$>A)8u2lkH#Q$Yxj^2aF0B=2yR@ihA)hAo^!)|)1-IipEJ0+ zeS6&DwyQpZwAVqX1)m^{srI-c5>o!be-N~%C5HtqtjD0cq_Ey#!v!x0ZvptsBV$6UY5YqEa1HAL_eh4E^>4Hd0=BX$QFm z+bih5HW%P|AURmKBu#S)MxlhC?fLicl~zaA1rnOFW*u;2IF-d#in(1v+=^EiC#B-l zhf@3p>9O84i zPU?UFs4pxf?0m@Ur@B4kGV3_u!t%Q2xxB)eZxj#B?pOcagd{JWqXIj7^J|;O90rTP zVa7?64}%&rv-g;0S3DdR8CMKdmD$gXlF!xhR}Y&QaYb4nFx|xJAA&*glHwHX;1c!vSxjrAH2&l z?PAx;)t+oxJaS>b8G35p zn!BrdV5%+z1+7lPtH=Hq|@dhL z>($KW)-*tU@d8086*`V;yeJl%(N@`I>*&g%B~~J*-&#mwo(S>>#QfT!Y@ibyE>(Ak={q8x`;VccFPKie*CuGV21e_qq z8$C3P=7h)Q5LIT&wfYUyVb{_opWFj&4*P_!^{$AUHr)2B_93Q22>a+ThwQ<|lZXqC z3&tt*D1|_^96vU;Y!^?f%Sbxl^){{7WJlrFbO||wzB4i&IahV{9$gg{o%70O_>9zU z)!H8t2+AO<`9lHB2pW%Zo{_}3jMLK7N(Uv}?G}qmZ?KnjjlGp#EuVG!>iU(|9A?|b zLVcB5yi_eXw@ZQ%&GU=#WIS(7R0$?MLVL4Sc3}FNBg*mDXlhzw0SFNn4d(ek$Lomr%>4!^ zra8Aj^KHgHIv~dUC2)yxKypU#HuCn^{&pw+lmP^vJ;bIS_~TL1lNs>alv~w)_a+Fy zAj2dTb{;s<1f+%sk=bf4F)_ASsOZ2%m1UEzGcMVs2>K?wor^-~o@7aVIke?)iU8bo zs}=0iF&}>^4Y(jc)<{q5#8a_XvG&H^GiY>pd@ohB0;hi=n@ByEoCo>ERr|+6&=Csw zZv)J3vYl=UzKQ=`=DwJo%=zTL`)qH299^v7!1U9QWRm*qZkoqy>t6uRPqyYz^U)^8 z18OI~<+DZ0(CWZG1-1n&5;~2DXHaPk8S)=S6mf53fFn$qvZx_M2IL=` z)UKV41bObGeO0-LBH!q^E6MKs^9cVoDJgrSYKYCb%|JM$3J>i zz!1ZmXL=-M`#hO*rOI}bghhDyM0typ>+VS<5bl-dfVDWoc5tWls4gNs+;i1y@@R7v zG4*(f>K!`fjJcA*3VqtHW$*DU@%Nv;7#b${j0a21?LPhrQ*@LF{eiv~{5z{d$c`LZ z2b55wV_706gUyZioe8n%itms=O_<)}y3c0*ENB;@O%yD~saUYSo+zLES&XRhOWw@WSS>T6Dz-1@sMBZ9*h@_1T+Bj&)R#n; zsunDWId(E0%3!?uW^5Tl%Zo6K>AKj}$O^gdHB)Y9u^%!^ZYoLM*maD+ zK#Mm3^7@B!%h+ifV-30m2`lr3ST7zc1MfCS>#LbLVZdZ;9(kq4bT3#?XG_s?r)CfkS})dgZn^>B z6W<+Av`}f(Eq3$JYRy-14W@GIkj`74_2Iht68zd0+#VI$7jQ0wpGDn$G;7zP4VNDn zzxwaJM8|?UI)JMEN$gKI7H`m4fAHr*h-+{27(90>t`VSHh&s&R%bdH^sWlJjs*FF8 zTUsO$so$gFq0Z;~Y_?sNFMVRweP#J(6l)Rc`T#{W(7uq}@Ii^`ZlK<9uX~-B*|zKA z@@`NTQz9qOC2ZF7UU_k4W{b3;_|9JpmZA%1Vm#D#DvxnxJ&8tRUa@I9Icn6e9O41$ z*>y4hU|C&C#as;4I}mZxyhrnb{`tVXeL1=@EAD=0hTk*vNW=ZQ(jR{7bFvROr{6o$x}06ED}%0I7>jS0x5ZXZ-w1|lVLX_lIJ<4_^ZLmNa6+=MxKn~}Zl!bN_JUF1solnO3#j^tX?SO~!88CYNw^Vio>|4xu=m$>Sc)pP(yx~@y#JsLx*_>3 z*au(7(FA^%oKjsm3b>6u?-^zl7=PT}Y8iV~FyWBRtPsB`W8qaKx>R=1bu84-6{9b> zg_ZL|$8A)?IYaI#aPkwiXmZpmj6d%0xkjZ`1{nbV4y_}~ZIC;K&A{p&f_HzcXA!pk zKAoyl(Agr~`94Nlae9oK6gZa_jAV(_Rqb>=3sc%+T>J3#U*>=Rm@OLJQYH~0WgY>? z{n@Trg>f?|w>AL2(!dRN-qgUw_C3)ECE?y0@FsITrZx4qerIA^4Z=F@piqqNGf7pG zVU|94)!C!iN}jgSO~|D5sgW)aZ#`o?ZgoI#Cyvz`%mw19qEbHu>R!ESYt0y6@9-kB z%?MI3v8DxI8BcCINTQ&0vhx^iLem}&PC?PeWsCbidF_79hX5q9Qj=lJN#eaO56&w1 zzhSP48MY@H~==_s$yTHK43i5E& zG2=EWuU!0rTc_9Tu65wtM_ue!nqsFv$fObRum1b4aOAc%Lrd4qM8oq$ zf+5WmF3Lh;NK!fPg&ZP3)?^}9Iya67sp+p*5u^iE5TE_00-{4n13e?PPf;KU2!}g{ z8y2=Rj*Eu=eH)S0lGfOij3ELr!fwOXsK~h}#}P$9c$>PlY29d67sX|4b>pVv#CNx&_?@m`kMHbjXDIW}NcCpq(HuPE;N z-rfsmqfN|UiKD%i`%eq@b}1IyTF}!}Q5i4ZQ5fHNF?=ZbRR~G??s%m8t?2}OkHl86#w?2^mY;fg-AVf$MKD_a1j z%YdGbt51_FTy1gfGmxd4qjNg*;X}>iOyhUQ~xRyIoB(0(mOMQFY%-JwAX0|%0P{in6{S4lf;1p*aTug z(ju&I9iuc{3(u?;9c>IZFkoi}C$ryMU2+*DKV%%go-_?$?py&hKPD zi`3|S4k411mEU2lx%Xvs!CG+~6?M+7%59Ex>S-`E@!IhOy-8|-f*~pS8GijUVZtkJ z2ZE~nI4GadPIim!z4J$N;9_ZzbVhH2(=kJQ{4y(XxPP` zgur(z{B_lK>?AxU_TC2aW@-<>|Lw32GM`f2)_j^8fcW{t!17K95~moCzFK6H~A?)kql;3XbE@{nXnQWgq-)@+FLD&uvAiIBNmFvDZtE#qsqODnh{7yDTU$&20FjUvUC zBr%#)PI5k};v(Z;{r8`X2>PYSD6lqRe>51sQ~&dIO0ZacR;Rr68ZX+rEm3f^aDTmW zw7_tFDg{|Uoa{)Ec1!#4D21=^01 zUl_GM`Jj2FOn7)ec#rold1uA#F4t5IUQ+Xbd>j-8I<~L)I&K#BU2gyLDRGDamHkfd z*TEl4@3+1~izLo2@Uj&ff$Q)1pRIt3eUjAX*WvKtvJ6a#uj! z*=BY)6Ni|bvLV3Mv&H_X;vdHWmeiv6>f`UP!uINwnKj@tS+T1KuyS4QQhpdy;%KGZ z-*_Yxfca1JX*PXvw6WMA`8-X#QfP^)#rx~`TG!K(jGSR4|!AG940C%l@r02F{~fQ4v{ZWWnNzK&4*f4G$%D?1va-_p5L_)1r>y zr962w3JQmZrYuG8{vT+J$_Xxpsw#4C(fVIXVPKT6&h9krrtPd>r;4MmB}>1q%qCJ% z^5Z@h&Re1KwhklRu(k(sRZi~DX=Ifo2st*ECL6e2!?2~Sh@#fn4)EM7ms1}0(B}8Y zqo!DhH8G@;niB7Q66Y(2xWBp#4$NoKdS-eCJ^xk?D^l-fz$k&A#}wl}zL>9x0pC=W z{AnMNCPh{nU=~97T?0&mri*Q~nu>)NJzYh93J2TeyKF%&vLLc=VFuoZ-a7wdOElmc z+_ZJ3`zse}#)`YDe||%80ye1RqLpva(2&cP4Q5s=B;yb= zs68%L##F=4-2)|IsV;E|ka@nv2JOY>Po5n zCPmXDV&VOtvvYHpR&{1rhS}wCE967d(BfwA7pmuxYfisHU;N}U0SxJdq4_`5cS0mnEJFi!^b3moj)`MDOkC@T}`fJ2D6s-W!}ywdRw+=c^!fD{&aR; zq}tnFSxdw^PgZSkMft+m zno}KHqitV*k?v&*Y4bs%?yM1Z(pF>p`Ee3@1Nq)|Jcn)LE2uhNBQGAax`e9fe7mSV zvFT@pWuI7wh#Or*F?-6}cY&$j?k1~r2XHsuM{N2BNWArQ^|7JP@ZZGfOiB{p*}vFS zy((cjo~(r2MGZeFW2(LU8LU#?(~N~u0@f|TyKnt-K0?qsNh_lH6ikZi0B{yWqH%C) zjk!mPXzmWdKGwA>-F7N5YeMgKAoIfcd?ef6WNvZ2HqR=g*@a@~(5 zS1F!RRZbgi1y{wAiW(GWIv&mB8ilK95f?Otw}?`)8^lt`-e}U)n3UP;sG_8*YVUKV zT4i)I9cBt#(RZC5t($2e;*qC;u9p1T43)8y7V*uyYu58uS;@mJpuO6mMhl%t1%Yz3 zE=rGhvZu+0WY2a5d;&I7^kz?}W031{BJae8MulPE> zNhC!}ZMVW2wEyA*=w0tI3%hcz+1|Hyw(!K$j&J?)Xy}|?)zHQV2Dcp~!cDfFK&VWV zZH?f3)DCvi?dz60SgEbnT*xgtB5?v82s0@>WPz=J^*<;P0HPtIpf9ZxuQfK#=t6v| ztLeE*lyfP=jlat&`{yHxgQAM2YlPe8K&KYD8TCjRlFYoVzrxkXyD9D-t({yNd_6e; z%&M|!7_7g`b@3QqqOE(&!sF$Y>dL=oR+Q@8MHf?nvY%oK$_`LR$!E0(9@0B=6WN{Zxkp@QI{Fqjbwk^gh9em0HHFA2JX!tx`S8lu|Q3z>#W za*0hx4U$rhQ@gl{X4`c6R!5eM?2mv}$efNUhzJ2amX6IHiWq|6y&*9)Y>XkvA8k8Y zySGXfl;1OikS_;2MY)6rBJNPa2Pu9_UIWM|Z+(Ir5HVr~lHQ<$7Ec1g0VC;;B0&Fl zC4^iuZ4wK#9#(jCHTbJpi1_P&HFRlr<=pl~eOGJ}&f zmhzE40Gw;$JMx7IkJM#@*}2{l`Gyri4Y@?ia_#{ZyHiHJ?kz=UN-f`cy3X(fo4HNb zX5U=ox#pTzTN>aDZK<)1Sp9;yvup#})1qBJ%0okFUql!xLSzL9 zO&DReq>4k?XJh)f4fF_pkwgE2lN{pRbDCt5+C~@hq&XeQt)ehGaDO^Escv>ND1i~R zutQ04SkSRVa$H>>R#`E4L7CGwi=IOvTamDlF&L%Ic(c6jAJ^|mT|sf$sNc?d^mRj7 zad}y%mo~QG8Q_IX>a_=qs6vd5VdhYt=!+XDix@qLWvif zrdDyXQz!4GQeSnnFV;N@WcD&&os+IH&!BW_!Bz5r-?XvrjXiY)Th%m!#L2#+;X%fe zg>_JvB+fRq^|owoHcNnrTT@A=AR39%R_J>aA6VHA^Z15i zsv|T2{%EA4e;QPAp(2(QNze&YUyJ}bC&2cw@03mnuYVs&NR!ReYT;vHZE=dC3L&a# ztud|PJ@p5!%cDEW_F-I6GE2>1)RczxVQV6MP6|+|(k^VLW$nDHqNQC4z&50j^DQA= zRfQW>hU;$Sx!V}`6#dSbL5ep$+C(-B!Ltn3BFo!?sADCFJ@I@CnqJpF6pg4Mcv|1a z^o53+Ij2>OQZ&x|!urdv{)aj`52h@%V9abPNEYD!uFC^8lh=otpfA)rKBbWCnrL@& z4BNtcx)Hq<4c~^ab~4K*1+M4UhArEm^asND$AIA!@dM5=W*YshMg zw3I&Gmbnk1)5Tax=Y-eUSd7`ok8Qf8zKxEhu%*sqn75}fX??^@{J>kpo5tlumoPZm z0%vd7R%mETevot?*4-ndZM?)ahqXhaL~7;n#V_*Kx zi2Ft-YU>hr?j~=glo}`vlMuIu?JyOm=W7)*`s^%|ZeEmHpV>eDsH7_^ zPWQ(KUuM4sA;@Rnb-h^r`s)JnIm3`(b>&?xX(3Dy%#s3S`j`hBs?}m9`DX(AFTrcC zW6ngNg$n#oAYoAgk=+b8ARsyPEw^D1lC;)pWq1{LxMGz3?v=)mYZM3tWdB1T1_C4m zwR-5hgrJia{NCE>28|fF5`F1n8zHZ_9Ci`qs^SSKG=KAxtJSFV^^QG*L^L7Ckf3gn zv+&9C2?%;B@}xxB*g4FK{~TB2ml$T3(10DAXKL7W!&=7VHi;-NR(B4}4iEH>oJ3wy zlj|ZNyQPz?X_cCJ8mJIF{=nNMM=Rb;pJCO94Hi8nm5)9*?>jVRfg!L?PR%Qt=aK@S z7dr2Mz29hF=;`OY7mmAvEB^vqfW%&Blc3tWfoxE^g-g@yPXj3>ENXhaTpf{XE($C)r7A_1L6)9Ii&;(H; z&llQ*cG17(DNOkEMA0_VK~NPTn)F50!_Sk0en?oELE;UIp`y7H#^Hh4hK>( zfJGj+Ie*K3(hfq(ierFNNWz5$1!0Or@0 zanOvR8Ry~tMD3AUT)S{v(vtqE$>Et%B^>}wT#)QYT=~KC8Tm4D3@mXh!n|iC=xc5_<+WuG@EYMw{urtT)tIJ$U z`^pNW0j#1+T=Oj=o9peAJb5@nRpuBfH?+AnWXWk9TIA$cw2E%8=BF)ap0}EBiw4X# z;4K0vuxM7dY@N%E#Ema9xkHdC%Q&Gb`=Y6lxVJt67dyx!5|nJU+hnrgx7OPI)&DT* z6K3BD-y~U7NKTVQDxMlx&)JFob_?e?%3g}1XyX{eS2ci_YPxp7datnoKRU_kj*1=O zz>W}+O+#N_N^x63=mjCN?!U|qLbcq)bpXNzD5Cbo8_`VWdE*()l(y#F4a*uyKu;6} z{8WLfJ$kZ*YWyQ{3O?>nb&46>h$KClfM<=(ozzx8O~MkBi_;9tXX^ID^#nE@kgSv! z5?ViAj~(Uvts!Quw#Ec@|CuL5V%m6zb5||cMMLaE!vjkOSlFHrl*;?*lB(O9>Z3i5 zULyt0I3+edp3M=8iMX&ET(BRdqwWvNPdvSC=1OMDPdT-zI7S0ZEf8nIJ%rM4ESCox zNk1q*y?mS57dP?YFv~g4(>~3m7u@*e8Of1fh9&Ioar23*l#A%fuF(|MqM?tG>e6S}znW|CZb^>xA9_ zi`_Ns?X}!CY||VbTn)?tJ6g{kGYl>CM-|#ZnBP=^h7H zxxj2!;Tc>+E<#a(h!UGrTgW@4FG)1L*(=C=St^7Se>$t>Vdj}bo<0XMdgd9b|L9B9 zpkFpvN=E?l`T?Nf5M^ROS@K+c6{c zwv%p5L+B4($C@?iCz8-LP?Mf?HhUp|r>%A`x~ba~y}K;84H$@}wsd;c3E_f0j0Duo zHj|eM6SH@5}cyltr z3#zRq`=7<5$-TzAx3=A+#Y1(^%W#^PXGOO|^|t;{4XJ09z;@RssVjUr7$unNqGb30 zt7OHC$d0kaEp*GmJz^2XTgxR;3@q3oN^f3!H^W2@!kA3)a41GbH{mF}(hE4B+}x?n zN{;ZMb;wd4#=mq2=470XVPcqG+_c^NwhRr8!C4-~OPkyh^`F`Yd}jR0r`B_tS+B6x zZec$`Vp#g%pT5ShrQuwvfh^aob{k^V%f>&7x!vWab)|+Y)Ta0hhEynS1l)wfB4J~Y z*$q-WQi4YFt;+hY&IpB2?bY&!LLk)|6YjF&dl+ci6WUw|!G|H#+;`Er)UClvkH4gw zcJ_Aw=c`mT0@PuhAbSqeh_Y-Ds2A7Dd>P@({O#-kReX^P_^+`M)c?bwtx58MXsSkO zjtKB7mf&FdB>TBjpejF-=-rehU%JOcJTW_0x?-HJXs;Li+OY=`lpT*7#Vcl{f%F9;c z@|ThIi;8UIWidGCPnZ6fn_=W^6lI?5rr=uk`-sh}3oS{L!@am=hWQrR^KDAh)_8#* zrn&>B7ILMyrIH#VPRUx=O|-$#x{jha528ntlD3nPl*uVR{;Vb{xX_8h>>_~9ipSDi zCS7~b$COv%*X-P%?$@t>l*>EzVn0q*;v!XeTwpHh9OHZ%ad8TfGcnF9RX1zrk@lk$ zQ=4lSV`3hEr8CiXjk(&@#y?ZiL6>#HkfgrhQ0IsR1LsvY-<;KnHKOf0(v(AAcoD6eI7&s9mLYAG=1cP;tGprx)+?jbd3{-*kxd=Sbo(w|eV5p`D&SzUuI?($wJDm? z$Vs48wR#e#L|WmW*Mv}Y*DhiQ4Xx_Ca&d9l#5-Gyd1oHFETw!P8@_r)QJbJfbAc?2 z11@yor|@9K+GLsIX4$dn3;Z=au&Z4 zf77uL_OT~i3l{BXqlN9#p|AJJF?^=-rDe)fi*UqO_GvxjvHp%}`>vRNILxsLhSIL3 z)uz!#^Y6=1IpU;Jc}Q;bMgmkm4T3V$QK^|~%yId^z|CQK_+L|x9*vYWtpgpdLssRV zhI!1R-p!RZJh`3c_B=?75#OB$&#o64}s@_@&Y6E3BS8g zaz)y&{zql2Yb%}>s(`#q~8N7EPC7qFPhI%k*#$)@}OxY>MBm%)`o4W zPDn^uCre(Fm>Q;!cHQ#LkAAf#R;=taYq!ZI#NK5;bG+i+4qFBo z1h&W4`OekN(to@pZW&~3Ft2O>UlLgxiK4K%s6?6k=00)dzZhg4#QB}a;~yk|CFJDi z81=HtClj<*be>wXHMkY0&y6$IEdaabjNO-l>QvC=4b>Sb!8RmgK3XqNJV6UPU?>p4 z`jklsA{PbCT2QEcryFvo4UpBkkVFusBE)Q{5}Q0_dE!61@QUyj>^9|CH)^ZyRk!qP z#NpabkozkYnGC63CXyGDR}@yu^?rMMPxWK4;Q$*^n0>^_ZHRT|^|u@ikqV-)G#TC% zmrSfmwf!h2dyvC_qHTcC4eN=wQI2=(XTJK!0B8$HSZ!*d8xs{7$8oUj`;v;9oeQAI z&^Xud=A~$6QC}}CkX<|XBx{?)>1u?+H7lPFdRslm2fyo8) z0g~vaYkk=vK%emlvQeQ~XI7nm4^m)s2>uw^Y7ZGD6|Prj;f9#aP?uQ=>;3)lD%h?h znfe6OOu=X|MCT(#P#$7#6T8=`=Nf<48wBN#I+r+JK-5`4Q0af69OqBE- zSFxlE0;rs1!-2a6U437tftxRrSl9hJ`Qu@$-R-=ggy1zn)_!$&ku+(}fGgfa z(5xAT4SzWgZNS>~SA+a4cS8So4eqkFE^ZW2)~)@A{~MEM+eReAeQ^qUSF7RN2X<@a z-*4faJVfcb3Ni0WKON-naP;8#GcxzmRV0Ph4@%U2LpH>!Fwq|)wuK1O4ui1SI;Uu; zEomtHA~A5Swx^p&yPt*lqNrRFv+W}}@}C%%W%p!CUFXEVfxb>)?q#BP^J(ny*tTu`RH#2rf&(Ve^G z!*=T67?M`HiGqo;mg@s6^yFB5Efap$6KVAel9R!VUUc;l zeM>gld_2S z?_RqrJu)~2E!_;1Lo<9T`s9TMu*-GD~l!zBj_^?l_ww)I_iDpE3DhW(x|WI6>~+FF&79$_&>)>OW01JC2V6> zjYAr{lz18Dy815*zF%V`e3mW;Qirxv{RLK}s85tt|27UM7MGu1g{k7C^hc% zl8sd>xK=XV;saf+mDsxU({oC}E{UI=GzLBAyk4p|v@ng;WGR4FNREk0x`9V9j`B<} zf`28?1Z9tGc<#vlPZxPnK7U(x@+ms zzDTaiuQXgcStoF5eYHhNU6F(Jn{9`#`tI1yRkXEi7jdccP>QFe;x1xQlq!Lgu1Gss zpNRkO{!Lc@=d2p6FWR?PddwOqaf=VOpybq)?XUa{OwE%ze+g?-?g?@2_r(>L_s+<9 z5tfjHW$dC7446l5oLQH%#QlQ0VyT5gk698|HRULqT!#*GeW|;9cbrCNpAS6%EKnMj zq7K6dMxF{IYgA4vzpO&+(e9Zzd%Xj=jpeDA8C%uj=@071D*<@qefQ9xREpS0Y z41RR#K`amH!@AMHy-rz0Mz=T>G1t(HMk<#m?u)NMmZ#|y-wWlnmo?}63;(YjRk5q* z6*M@mGlCXt&+IcN zYT4)~S0ak)U;P81U6`LqwzIryAOLPOMbK=GbmUJnlt4P6$Tv^wPF9yJEHtr)PBcHg z*E{Pbp3Ww<4;+RTW3)Y}@h;K#OT}b^ucb)LMX73N7$d=Bd-b`^Fr&dRsGEGH0F5O_ zKJNt#6S}RY!oBn|lGeo%J}vnZqw|{!gJFJ37@VSfT16dHJ@6pox~Q?$ z1rkR14#oFMD0FvLh$(OOQZ zw2ix_Q%&_}V@(gr4|pPYfrC5GZJwoydz1?049n|JZzb410l=@{G#q_9$Emg=5zmnS z>#j6}Rxc_M&^yVDlz|MnAq&s7l;u66IGs9dIUpMm@Vf{BvzjD2y||Qr8s`CaQG!Rp ziRf4z;1_8#<9^`8{6syzD(I{AKMJVm&JrV_cL60sRjsKANKLQeO0sh5x%OuQa3;=N zJ$b6Kz@Q1?QJTLfO4vRI*0-Arf}0ZjJt2OQXDaZLm_qF8AkrZ0<{xOPvu`u4FtGy+7-EL?Y*>Qw{c2*HP zTMf~)cO71@I)>I8>%JZN)*F$0Q4KTumnrNO3#J-3fX^D$J}FjlEYv=o^jjngw8wM> zBSuYsfn3X@zLUVUJ4@x-AhU#UT3kzu7btP*XAynA&MU0ab}P;fU3gmPYEmX%&q=&n z_Q1ScmOdXDyZ^lo_jI`T3l5U3E~_x+#e ze^%iC%M}PnfMx&z2rR?|0Nf(}HE->*a>5!(rvK#WF-)nJEJPOh9V%38qNUPoZKo}l zIa*i$VcqqiT3$nJ2tT0DFR`ijlexgdgzgUj+WQyzEE!1)h!s+dNr~Bg~ z!|mtk`Qy^ifn#d>`)h;m=arPp^*@1BiL&-dlJ`V?bqd+Mn&o0@b< zT28O~^P7%rZEVQU;pzNn0uGNi(`VOg>GSibqo?aL+(^N@?d>8;(C4?|1sP&)$yuhQ&uCKP& zh^iXf!`RzU{>yp;+YFN^xewq^{93aBYU0ph&-dHZhMhDFcwN-*&;F19$K?G(|3BB} ztOktxI#>NsZJeMhE%Jdto;t)4ZKaCRvAofRispQG>J~-J#xv zRa9A8{p(&%mQ@Yr#dIX zG0G4EL_UcLXV_20Q_(n7=(<8>rCLs1l4LA7_UAp1Gz^H<@b%eIwU;6?cTRPi!&P&IIsN&+)yC z%tzUuCs?YI?km_jzuTw%2axY|8}MxY5z#w?cV(r~5J>wz@T45NPFR!dn=0BjZdedVq; z&Mz&6st*forQqQCBz6Z)C>$nala*|n#h(Z!zoq57e~lzpPhX>f31L&^J|F2`uQ|Ft zc`9c$ph>)p4)|%3KS?08Z!+4_=BsdugM$Wh)-TD-aCrgpmq;Mzs+1rSJ?R5YyCrlY#~~WHVIct=3ioLF$?-}U>7c2XGeXF6KOvl8*w+^ zxdhpfnqm$zRO^DsigpOnmm>CS=v9tW>UwHprS5z)!lT$r3A?QxBy`g1iAn1LPrB&b zQ`(*%MI{tYGkM6C*A#V3)XM?8yyusNlss6&*jqslqICFz9yp;6j**9hx73=n;J>Py zM`-8Qs3vf2x_*@HmGn#-+f1Rs_vnqLv{=Jm{ZFx3DzJzfw2ZX5H*z82AXXgS7@Om5 zCtdN;We!hdElCS#6tYmF-&2#+Ws)Gc`Q6czBqwu4eY>|2yA7y0VWb+UCy*#d+PhPw zGwC0j-eG`c;%~2vcjGA}{UK9U(lTa)s-zAorC;z`5^9fNkAwaUh?v1N%JMvwQDxuI zVE7@|IpC^{ls+OkN$FT9Bj{Y$2*UC6(PyhT%tM$>-;R{78S9UAyfm#& z^)#>Qr&=4tt}15Zir;j<(Qm1YSbGu%e8@z#Evi}H!p7kVi?wFy7r#D6;Hj68^&JG; zdpcQ`_y(m660a4e980u_>^ll63aNo^{VnYTlDbDvQgyB=_60{6K@&9!e3I%oSm{h6 zZrNT@=!=DFr)knYye7d&=E1NUunLUmWR`K|hM;xfmsx>L2R*7D5x)tS^NSq()K+)h zX&>~51-8y(Fi4|hpraMD3tHCId8yzvs%3Bh-f^w)Ikbmx3sJX{`l0_Jg$oiE*WPKu z!vUENmfm-(gyZ;Am-(4j@T^)_@IX5VQyJFE4SuuVv0M3?0@i}QAOOMD2?mXRNAg%} z`=?%QvOWOTs|zmXSO3#|+oPmZU;zzZz*>1TY%+8D=>FTC6y8S#4c!OA;ZuCo>XW-N zA#b~YOT`VQ-bceN$K~Wu`ON=|y>DvHC2F^gZD+-{ZDYl@ZQHi(WW~1aWQ8lX@y0fH zzH_S1#i{)R_QjsnU479PJ?E?%)!ok+&lpU|Bw|5ncS}_?%&UBdHKT4YmiS}!V z=uK+NFW_IxH{9k>sx6|hMdNZ!Zik0mn!>FfeoDf!6WSER0+3TnE;(`L8X&*sJ%#_l zMe-%>ZidnQnF+U9SeU2_feij$Encs4Xa~PWz^HHZ9#eMlHN*FU$$g=@(*k`LzxNRT z)H*_A!{Z!Kas-338}88G)>ddmRDoK1U$(p;yh{P{@jFG~Lq@O_qj=Y+J4yi$yA{F* z)ASGlU0>E`EoO`RUUxweUHj|TraN%*XEtmGyWxh#QLkjw+?_8$v8*;0NA54I&=aZ) zh99{G_boL3B$B!Kp?-EL{O4sRgp*2z_TOvzmbe#5%P-UZ6nQd;F4C$R!_0da%BvLd zC@!?4NIkqH#q78Jh$Npo;ilhW#`FE7s15HeSUe3cGyN^7xjN@~hk|hzl^p`D0{3NM z@x#RXlMizc>>KFLnJ~K5ZPu4aB9U{jU%sZ2w$^K_+4|@IxZu-9mkg7Hrk;1IY;#W| zoJ-JXRI85zbCQ<33F|Jh1nmRTeJV!~yYtyxV~=A{E!N1txhWv)M=JdWBu}?h{@A%v zZC@!CRPB}0q{2d*%u6=Y*%zPqoB#(%9yb+-OPS8)XcvRj99f* zZT86nV@)l&KHltes#NDvqvDRgwW&PbVXhos5d_<~Xt!4y+-a58GXXnSe#xCaHO9H8 zp{*pbOp`g8(W9YMO_yt65a@$&)op0Er?}#v<#uK(MoK=mI04jCJ%V2V|5I@D*s!L@Uj* zs$8bZk+rip0*kuoD-_m6p%Kt6<8%(54(;X(rNyB&y9)dScAJ=$9PPp@Pq?4iWTL58 zK<((8jw2d2@UhmVZu+w#;oCVp(U#dW@K5`Upmh(;;(TQF0c#K<-%{B6?W#q_0?MN< zBl6AbvpwlfyzZD3FqO{$Cv|tQ=6G1yiWeb>Bk7Zo^{qd0bcq9()IuKJO`N^Z$+OkB zKm>NrcxcamlmA?q*Q3TETZDl!t-5jYqK2(Rw>Z#G0)PqRYv3w&pL}I;4#klb%|=Wucr>Xe6uu4n$!5>h02H5`bgmEwdHFo zgn}w+*bZ*0^5$XBbn=GC?}p0lO)sF6BbsN^bQETFS!?4PxhlfGldPOW*ykWw`|k31 znCFMX?4z^vFS+a8l&ekxE2Tz2E@R~u2&*#EAM6u!GN0ukmjqtP!C6hc8?T$7;LNJo z{xgpXan()x@99ftsd1uwQZ0P{-r2pZJ*t`FVx!l~cI5!{jYI$IzZ3O-M9z3KYdDE$ z>VOwq3ZZM3)cz)sS5@KNqg`=?Yv?a2@3l}_oycZ)Bo*cq{C4~cTyZ)3}Gc?01q z;YZv~9>~Lp&{@nC76+i}zX~XDJ`=xxZk)>Hg$+| z{6_B>7p&?H3V{-OMON_atiLYra6oKe31YhSAa%G|H*w1~B|FWe(Z=h45JD5`v8I_Ld4C|gx`l^!eQ40;`vJj?zx$h&UV zOb6T~w3+7D3M!ueGYj?&_rZWcRdSJ$#+0{qP0)?<0_%cx-Ub-zzYYR{MH%>}JC z+oRRoRP1#88PoJk0`S}n(N{t|>*<}MIL>aP{q`Q177{=RzH?ey@z+eJE+AUK+nLy( ze|x&)AGWkJLCZd}^0JmDnZfauXsPi=oxD0`{Gy7fl0cqEbi#q_`0lrZ$V+1E5N>1^6xPpf@os~f3Zc|J15s(h@z2NU+G~@ zprPNYQUFvAQr_dayWbegVYb_B*53i=1uM(+)P>zCW=6|t(oqkUdtms6Z>45x?<*o) z%6Vlo;LLBNY6H`E8npYvC9CX3V$qt$cQOp_K^r6SU(|*6y0stg^1HGMOzFc2MgWN= z6vo@JjsDSHah5D1#hi~_*HOeiUGq%NT@Fy|$Q5Y+*0@_NIRV${>eTCe3b@WX7*M zYP&XAxe|as^&bQY10GdFvZR!xa1N*Mp@jWI1HX~KrR`EzJGUdG{$ zOKW12u|k49?ZL!y_>9(FWy^1L=od;yLuvQC(%Gp`N`#(zn1;E<;C}G`ucsppFF3;3 zl%*Hqp|OTZjX5%+FR;F=MOg?HFuyf>gxr&S!0IkC zM;!xqi+cG>@ed*oj$J~6|H7K=+9P=QWyIlWHRCG1p~el9P3jhvOTs0c6}5Udkl-nr z^EZ{a@#4&P1iev3zj=HXYp|43|09C%>4xVfKrye7zLjB@kujCyC5l99)$yl+Vq?m# z6F0Dy>3%PSsX8;yv=FiR?SsSe3hBZ}0sj$^CEg%3Dpm8K9ka1)f>L2*EvwiHk~^(_*W_I)@#veC?%!tKzUD&vepDPdI7c zPqL7rm9A$<&yN&t*6BMv{w~CEVGpJv^USynp&@IpWXJCsQ-`fsHlU1`eSyF0Lbi8V zs%8vzkX= zg2ri3HUG|+YbJ%LRha{qq0qImrhFW{5=Z&TuH}xwQSlR>a8;r;--|`V);3SVglJ-5 ztmf^Rz77K2iCgvy;P(BL295b1kXAnQHO({Woe!{B(OCKHB>PXUtBs}193G`-WalT@ z$-;s%*eU{J-qQbSKOOGoHboK_N?{rYtG>JD$rDm9#MR}SdU)U8jwYJ>ZEDM|#R@`| zm7rkJ-!}S137%k6!AsGgPuxO~=pG#vpTbQKM;Aup%+b+t#YfgLMh!y<5JTfckwX-U;!DIvV<}I? zh>T2Ka=H0M^>l~t59e9Esk;-K+;P&%Q%*DGr~W^io%UdhLLDJX`MxXc`uA8Q1H;VaCmrx|NQr&JwWk zX;YsYKU)f{NV;}Ix395wlbi*a;Xt7Ih>~>D3k|C{Y9jSjKtOr1d$7&$BBMIDy!V%o z6s(stwh|DV7H(Z?fYd`pM48Qj`{VN10d-eV)I3T7L|0pJzghg(t>Jwq*53V2`i z0PJnyPOM0lM;`Kt%6T1>G}M)<`21I?B*zc_=VGYgDDxR@4Xn#Y&>FTh{ZDr$%fM{rnr6Dijg>bSvnVyE!Pjj?>M`|y)2|Z#7;NLTHQNIzu@OZl*L<7Uero(jrvuhh+45ms2<|4%k7%wduyj%Q$_^IM+0GT_yEhwz zHftS*@bvV?+j<#2_pAv-}P|=s$f&;+^)_33G(+5&YQu-jzw2NZ&J=dar^+1ZboXwV`oIH~ZPH z&625?fGcl1{zPyyc#*?Lp>W0+T9F%4q?i7T^w84}Y^|!QAcZ_hq^By#e;cvkroYv3 zR|yV-kwHI|y9`bdDQ){5bG~ZRb!F8v*8@q&yd#rp(`Q^+3 zZC?HflHMpGBYB>Xide+1r^XSE0Z*{oi|p?oizQ!?W7WIEFroKZ-kSoJI9A|XCfZW5 z@%xqoAdsB^(xdc4Y`vs?8xq;!S1=?Mor~cEk`4H^BUf(Fpe4EzII4rHcKt-AjD`_t?x1 zm%M7iC?1^HNjdSzpKidCZkc@C``8o@GH0FZ1C%&UFmI>qnHlgl|F8=*V_d$gUk)q-8i8}F`~X9{8Y#FFv4%|D+Q=zeJ@0q-D? zsR(=|t)t%Fg{WKveTTL;I|6HHLcbkhc)k`g4ejZZM^F?N@pz?EG6v_lO0%*<8T`9) z>9VSGCsgyIcU`1NuF-1v&)`edEryzFFQ#hIVEuu^=^)l#mAN@GE92UB3~{o@<^Sl6 zpUA}Ogm@6G@rXpBjy=-@Ar?MQe!551%UAV%B)b@l#TpXeLIX>BFJ_7fu?ozBf+&Ip zc*b;|8$t6L<>t*Ca)jpO6w>m#9P))E7O|pd63~oA&(dja2z+Vy*M=x+6SJ3a28>p6 zYDHGdWx#41qM z3zixk+YEN6ORFgtWnxb<(Zz&m|nF<&b=BdbVrAh+^V_`mOEN)WK2uZ(lU^ zMI2cJ9l&i19!vl_5IHMY7Fatk;^%A!{~w-CDMpP2}E5G4ME4Jz-q_g+pK zX{}TBG7{=1+4=n7A80vp>>{pagQzHgK)k53Qmx^S7aOBkNlc(F*nTEc-D2_RzZU%D z$UIhQ!69CB^g9{p$eyV~n{P`agwkO}7bp);tM|Bn^;0b*ZYyQy2NY)L`o%(q`cAE( z0#(p->JrgFzvoCL8=omsbVn-o$6@brt6Qes`ITtSsHgtoB)EMR+8v)`{ne2Y)~e+o z2X2Pjp5T(vmX^2^la0brdWk>7>rIPmIT2L4aKz@*Ow9QfuH2tDo=n<&6%Wa|1=I)tAmy8yuaXcCi6J`k*di5m$cW}N#_!3wl0H~L?Th_;0IPIh=2`-0vbpfrsr@~{C=Wc7 z0x_|7=7cs?|E!O6>VW`%rXpC7zLSxHmVn}t?AE$OxW@G%S_5UoWtb(Z7!Exre!LDb zl|=={*8zeAjs3@__SK~+ln9=Ls`pZ4byG7b;*UM3W=E3Dk+SZ!hmPFg1G#x$)0PTI zJy6(y{2o#8y&AtVvI2bw5aLAO2{Zls)t#I!o4i~0cCg>SvFUY@Ax-zLmJ_UP_TQ7% z`Ws-R&)um1f~;h`u_!1gtY3LZ&1BBf*9y(C9sn~u+@aE&QOFBuC7-sDQD)28XU7ZH zVJJ=YuT&RzKYvP3r7F#(JYEDIPH4cV=INWOQ339Q3nIRi_D!8S1H&>IqbO(X%l3Fj zhmN{blA3uakiy;3_70*~<-s1)IH>_qADz}J*gbQhXo!?@y`worn*wM3c&0({g+-Nc za2Wk0{;7!UAJ@z?pf(a)u27z`xr?hRAQkZZ#Sa7!#TwIE8`Quua_O&bALeDP$>wiN zp}JteRGU>bFO?8#z^z++(!}j7%5x#c@F^qvI`#-?NXG-#YEG;QJlIQV%*^ zOky=?kxVJ`+1F@ONo2>m6wUOC3JR+qOH&`Y7oWK$csrZ|rj&z0!bv_s`#yt4qd~&+ zK}Pe$D7-;~^FcwIaEw>qkh@0*hfmyx--z`pE)$+01r`;j73|a-BOeT`=0Dd$V3P0kazIs*4NVva>5!`K20BP(FAN9W5O+G&B%8 zSyd7=G*&1W7%N1GH|0r(D~~JXu)V_Ks*s>x>cq{-#_uYatS@64m$$cx`S}F!@Uc-* z6I)wb|Nhk%7vn*J+1X#SvB%9$P0h}dFfzWVsEXj>ZnH3D!cG4`WzMSmG>7yZHJ}V%}3J?3IIuALX^L?>1 zQt6bu=&Pw(lwh(#xWFGegIF46KaS_RfT9;Qo|qz8Q-!?tQPug^B>|hPE@;epB%RqO zhlAouc%mb?Zwt1#5~~c7X&E>Kebx2`Mkd2+&(4YQ%)!82%I7BqLhJ%#Q0sJMplX}iw9PsigrjxR^EmJe-L3)l1UiaYZ=m($a)JLw~}b5)6y^WA2$xLca^Gk8)D|M|P!?3I3GjkQf*BC^dET z0H`a8bC;r4)-+yg4uFjcd>7lEJ?Y{uD5E*)S@BwC$q-Iiy~uu2O%*;z_y{cfDQbdw zVS}Im4UG+NrvMB%$>--$AB@hfZv`4Sr6I$4DnIA&7w#T4Gux2^4T|;ZHw*FlzlL#p z`G%M#Is*@879X-7{O+2697bywU0qTo{i90+qjTwpm z*V}8=wJbPPLz8-u6Z?YM;caxCMALO6rdKHm>DmhB&FQP8y6V%izO1;{ag)C9jj}-N z*QqAozoN1tqYrO4uE)K#IsePUMYSbG_QxV~iKPp(!z$@(!z320`T@yqBDuqAp)#s1 z_z#B>S2fP|vK&#J^Qln|P{mz(flq8brxdn2s?nJ~ftrfDX!_AL8ed@4dBEC=dZ_c! zMc3tQnf-*dKo9*#ms!rQ8GlyHXRM3H8)d$hbdG63e`|qjrZD{YN$i3ZHe(-wUrQ0s zOZY`HK(MMTgV~X7q4;D|#Z35opOb%oKMDB3H3eh-WS4m>_V#t$7;C7!QjxFy{Y?s! zu*bUv<5JEbHdx(*HlA!+m0tC_l$y7_Xi^2ZTQaee3(#kfR>#Zj%gR&67>-tv*HHhBg3*XVgv_W+gw zhy$G3L$x`F>iZi{0`GMc$;1mf)DGtBf!uUH(C0n)@D$>|%t08G7A}@z?Qc}vq3NiLB&Htj$+*KmUgv{PR`cfD^g(%hK`i`jOI&}!PLMqhdP}o1YaG{Nvg!9x1Ha@WNEFyv5C`g^Uw@vcYK{?J|1R>qU6v+9 z*>?{0*wunM4M0XyUWAS;DngH?>D4_q^zQ1hA{Ty%Md190LSRa3wBBmoe)ftoPe28 z(X1Sr*vc#gIVq{({CxR8z3F>tSumRSTCx-7{mD%Qf5Cwq5`kUGix>;$)7*8avjoFR9<*G66cx|Ayr zfXW0F*iba|_jh|B@U5ZYp(AgyH$NH?BmMpB`&Qrm*K3{pGDq9QM3>hN^(Al)ZZ2E@ zCPKS8Jnpusp_ZO4BC`GVDx;?2tUqz5p%syQGdBEzxdakmOht;b6iuBik&QGiloi&=h!k{JVdyvSsU_ zUSFnc^zBHG#(d5gd~2Dx86v<@1MV>fNRrl>EFiHMd2WCS_si=yBa;?hf}5_grG@)- zeGnJqK}kT>FR&;15sPL5`0$_C`mdmg5@spzU@D~<5?in!Y$byJ(Z<67){Cr(;Q5=_ zB^E~Y%Fh!{+Ey>F1fAbM_+JKL4l>{WMAF&|Nf+Tk?ZZ?pK z<^`g0!iN)s*aLD32?3q&w5AR(dmKbvi(enwZ%#Lj4h52(Wh`9el!_dR)3hSnTTaTs zn{T|#n82`-&S4^&hYiRmc>~Z zhO;K{WbpP>_;}uj6M-L#`Hj(Cn9^iG)-*6kmc!x)i&3J1MZZ z5Hkpq5u|3^<)jZ-v2jq*lrC9@8eTL^`zq_3TxXVq?9_tLJY>C?A_|`WlRlXPJLPzl z+5Afr*x!;Ki7YJuD)mFqY$rEGt9}61eiG~;NtXZPN^k=TzRl&2U8wf5d3#qlKc%Br z$+nbf$(#}vj&q^MTGyU zB#PL`6C~~H?vh7++vBYD*#9JcP?;NQEIy-vY9QUvl7jn+Vm+xLT}G5lS?p?A^Rtwm zfN(I4^raE)8m<{>96nEUQ?R-Z(!>NMf#@Jc;SQx?RbekYA!*mw`Fr2r3v8Q(AI8y_ zqq=u%MuP5);3Hzy%%nL2?81Jf+4OusSH~Q|Dc0!B;EjkH4)l}+2D`c-LEe!ts$eeC zz_mb8^NS8Y;8Ue~hYPqnxImP6GT4DR%RpU%p%S&pNY8?e1OOp~{c;Zo;>Tc-I-Ssm6P_r(BDp0Ayk9Rx zy_2eydUO(Y7XL(6Yaz#JACx%G7yv@)Rbr$CbSxauvLaLBB#_c{=*->)vc|I5K_7PX zga4IYzw<%q->P{yK|LZc-~c05WsAxRo*16na1G3jxs>IROX_EV%Lz_9wNYP6EfU%# zt`&5TXY9k<oY`0No}4gxteXdTcd=uF2EaTx+v4Z_|c9{XV%-e%E#=kK)* z<`$ar-8T)gq{oP2@|` z3B-O}Yt@YK{UrMK=YynNSVM>rx4K5f(DIQCLfdw-dFh1NK?gElLg8P}nb48+4)HS- zkr(!pfJpe|@xBxgj`KT%REGJ`o(y9Rl!v=)XNgELNu(ky39e+Wu^%gsh9e;#H$P{{ z_Uue!WhT!BL;z8TiH6q0xkoXh$2kbJaSe$9sOP|dG?S8NG9X|3N)WSM0-&s~$#=KY z_gn=H+ECXYe~_3Lr26Zjd_D7SXunN;2!l)ppHJZeI(@gq2-vL-eqv%3^$tmVn22fz z{3__qdL!mDLVz~v-Ik0Q5kH?XgK?rdnbSPTU%5_}~NoV*-up2R=Fr$|Jp4R*5}v3A1xd!f18tN*C4N}h|7 z$*Uxb65j}!)fpz(N0^IZ{U@`HjQC~K&&*~X{7ToR(b<1gXpT!}p>hNo8*#bXifLac zOJ$3D@4)AA9znK(w29I}*pzSr>@agbhy-anjpu@=bANMm%P;5qpH5#~WF5EAJCeFK z__ZS!eLJTb zzIBNh;rg9{?#zHt$kE|gQ;RyU2#>|5kVdJxGO%b0YZMcS!-ef$hznFE5*GX5I8mm@ zoJ@f+%xCtM4yI~@JMar*#%YT*Lj`0TlJYdI4An9rbS|X4NP$rJr7AR{NL4MB3y0rH z3iz|_c(R%a-xR+IK14;2&Nad*3vH%%#Oj}x`JUmss~kqSZExGFp!&by!1waUQYY9_pQ2mup9MNEZ(<(OB0hPBThmaFaD<+hFF%Lmeixa8#+` zQ1LryHM+Y?=^WBb)5kkm}!JLXy+_yHyJj?m4#aP1u5czVAlkD$j_+QZM~v7mXm6%ILe-`GvK%)%(h1*_vkL$w=I9^lFv$&b8N zfAmo(heZETO)t{j9t9X!!F_xK6lRq;FLqV_vMxbKvOWu92su^ad@I8NYQ{CF)E3%M$uohFj|**H1g zWnbk>$tK(8Eq^s3)_(i6UjhMF#@`9h@+hgjM$e%w;k*Ayt^mD4u|;Z5eqG#VuY8MuE)= zU)V^MBLi7=8tguMIS7z?j{tZbGfbT3*^SkMowxK9y2KTO70m{*gtUtXLE{-KWl&we z5NVtS2$#Zc7CG}}#@Ok-6ab1$FMzu1`vNyTDEFGq!=?+GPgTiDnwJrfNB1y=TMj26 z!&_9xrA!CSD+@dO?T&`yS9(p;R{B!zC(2;gIQYLT=8syON2=SOq^o+lvRE{4r*Ctn zdv<7tXS1=#^8x8|&l^M@Y_yqgj0sS`0?|}*U=LmGke=`t1XCQ=k%9%3AY;eDU zVIPeG4UxCP!Bfm||K>nonqsTw0bss{M`g!5mx_~Tqrf}+Yo|B4eVZZS8O3r`U&3%rl_OW`zT6N${zS)|xQ-kxYtN z=${Q7gQAc$c#6P?Fm!y^kr_@qHh2q&zZokGcrqktEZZ5z#Iz*8XWi9hTrr_&!?wsU z4WYCiqBNoD4IUeD0gR|<8V)&!At9TqIa0To4icCd5&-o%A|JL#)ulahyIWXyPAeZI zm*>W3J`a3x7VI2_QR5h7b+sS-uPyM7MJdhlqe7g3G#LiyPgwWie5z+RsIc(m_E5VQ zd^4_IrOwCas6Y_WJ0XL8h(s{yLD?!!3AE-ze|GiToP5)?-*^7{(aH*W)cLT|Hc;?W zsA$V#IU*oefPlycaOT@1ihnq26u?e}f$J4N{hlqd z$ET78XCfxN>%fZAHNem9>w55OmU{PRpl5B~3G5CgY*J?({WZ(hC>0Dn*#Duz1&vFN zQOITmf&KtVXpQM10T>xP^KVf~aF@LI$3l6S{|Z^xQ6zHg2RW@Ai zY4O+Qm(i4N0_Vzn`zuG69VX=0=R-|YUX~QxBNE!Q=@bX`L`VcZI`J_eCXeYMYvEpy zU^j$cG=DZHRWUL%y~PKZd0FMl*xPkR%NDk9P(q%-28UlJg{Xo1JQ&w+!9cxvb)aZ&|}{%5ZYdgCj_MLA~h-K!%S>i_$COAXF}=0z8{>}*b??8+^!(;4YQ zmTz7{W~t=YrmcA7z>Jj`Ja7@LXJ)V_Ih`KYyQ#X0pU)p>b3i?Uf;tP}EG0BGC(Jwd z!K8dIgXwROdWsW9HJGjO9?DFn;U(-j=A}Xg4_3`vt}O%Gi$hc*R;!5QAxyBTDd`B2 z+xbfjXF2R*7iamqPHe6`uJmn+{Qhdg-pMwNrnEvZ8*RPCsdAW0wf2fA*F~giK01e6 z;JOkkf8%Ie{=8z;&|KB`^6RDg(*}E=b2Cv*Xz#`$`C*XsdG1P*RWzNc6t-Nw>Nt)s zg)6_WdNFKsQKzjeVDQvUcI<0wmWN%}!@=d+8X%yBbtpUaMcI;PDL}gML9hKK)(PEy z7h0z-s6=K^Dd2S$b^er?=`X;t8}x~v3*v<^oD=gfH3l=_B7xzmhep;Qb5oINW)6ry zV_;Y3DxDvE%2d&Yx-JI9AuNuw3+-3h9@j&>$PE;pL}{M zMQC=5;_$)I_sr@6%ez~EiVyp?Hu<9+jrORg)BF&(uAh4uVS=Gat`FXIco?RJs)r>PyIUn~!Uz3Em+ z(5m|v=$fXN<1czcliyx_#Xk4EUPlO%m=Fa{0<4J;#|FVf|K^g1=kZDG0s&@_ku|x1V(fpyzgB2(v4}f`=+NKOYJ4c zowtlj6oDy_hpAkY9$k0(HH4(u6}%iGrq#*&0bP$7CB!17rt}0!`XKc#FN8BtVWY$XLwA6cLBrv_E|MZ9~w#p3}aclJp zD4c?@O?20?8otJe&?csiWP=Bx10&$TZHy$y&phpxTEsX1Nx|g3$5L^ICTMeB{|bNO z=h9V{oIbN*N?)dxZ2ecPe75RH+W669MAm_*2kn57N-Bjci)Y*b=$TGzTeVfw-|^EX zIjE^K1Q}&z?8ydCA~QZtKQd&I9YS-`Imm@6Pmq)Uck6B@&IX2U7>G! zMQN<;4EXrjEz96~M&IlskqG?`lEx%l2F|ktmPEHUVK77N60` zpy{W+JPtm!!Ja(15;P+T^Q$+~%);Aqzf7I+`S$v+S6#)B)e&fWA>k$S^;LCcdWX15fZ{<6RE||t z%iN5URQa%uz2nM76jUrKsCh**A+DAGE&@&m@(er#hQL+A{A2G*p@LDB!7JMykec%PHk)chEHN}%g+yCB6WaqclqtEbFy;|PMi!sVM10LbjKz(NJ zd`3Tl)!C7U;BYF^9m7$7oj87cBFm#Yt_L1)y+Dj;n(%;Kw`uQ`jIwF3d~LW((w?jC z0+&f)tl|2s%AYPf@EV8%Sk?rlJ_o*Er7v$Aeag-JhXdT8hrjX8>WlznA<>ZC1$L}v zus}MJf)Zn4XgFJZlJ9=wU{a9OOdod+8$#JZmF-kRE){>&v)6*S1l}l(Ta)kL&BJH!E5NGto`KF9$Ow< z`F=KaUNOo6*<2zPF92OdrDx$dZ#=D2{fv@qT)2pR&Q+TWpKGi8vZioE+R)>R%(o(M z|LhN1N#Z(GvrR_JuwqA4Bhl^0pTn#p(X^a=Cpw~Hk|Qj0-IPX)x&<;r19Y&_m$47W z&b?1418-B_6PpK$qs}qcO6HBx{VEegd1|Ts&-~?gQWn-QJ-q}y*9kwOdHL#jYk;m1 ziR3X4d=kqxjw~J25(_{E^}HrPBg2hR>r$HxfV@2YJ)?pK7qP&EXRIvY(`6hg5~qTv zZK3#%ET3=io-DbQ-=anNibJy$zQjuX;BeSN7x0IrY9!u>)p-uBE*OjJ@3@FlBu^FW z29lRS{$^0qUNNZG5JKUEv^?jK5G0Vp?d441^5CXiQK@(R%u#&-L>_PNdpO7yXKd4| zpwA}HpOUG&_#Y;hj{%ns?2P50ue?w<_af%+Ze0|Kd&bp(%t_~3XyFbOr9)xr;M7|_ z;`)q%dSPbzngtC7`VP!(?ZU(XW_La^$LAYu(%Y*29)cd~Diw=I3XDhnNCaxelM0! zZFjkSanP~!=oS)z+XeoAqT;Mwbj3#h#^_7;fP$TKL)MY$Ne#Tuc4w6|OL{E)t>&%J zhx->pqd>0Sf*`qw%e=ro+GIg3tBTHplH%nZ`T7; zpAR2aZ_D_p9o<}yYfGc4lKItGhy!MaoX&;gw(~D2mhOx)@bJk?!F$p1HE>utmx!Ehl>Z=@C9yJ9$ffa-I|N;1kCv_@pZu~WHmFy zs5!Kq^d?>|igM9wM@x+wrhC5p%gb*nau_si>}lnsp`F!sT+@DoHb6Rq%7jUX);l{X0eSC&e_y0yWZbWU$%_3PZYgL(J~~+!9p6u<)V2J!@wMd zouq~HymP|zco!FCT~!=LQ2nB)*Bk^=t~X-oL@UN4l`)vg;60Rv!Ejh72SkfQme}m9 z<=xhS^*k;~gEL`cOZKM@awY}A*YConXN2S6i&5A_ycf zxIIyFH&iGPqGrC`^K^C&xWk|qXm{|&0u1oxS&v+G1)C>)%GM?mwuF{6DiFc=dijEn zP6*(BieIA?jRBqcqka*laIoDpm0Fjhr3jPITa`k!MS1s?%Z`lW{_DggU{9aj9%YQK zL>Pkqmx;R}qT@8pu&N8JDI$Gw)M+yX)-H*VXc%4Jw7!W|KWE=3RZ0%$HX=yOcM~-Z zS&uueh3`pPr2uI>Ec!@%*=bk$mAfi7)7Hmw{`>uwmby)#*op);`K z*zwdmeaJnd;Nz3EI@7h3KGH#J1R2>?OWu@yaJ&tJ@1qlA%}9%-v>_WFUMRa?tAd~} zPaIN2#vAr{XYxYTmuX`t-6*r{ z4E$3xRISMI+_0Mz+T6U$etzSv?T`&W=u6wq`bR{=Ve9Illl>Ny`J7k!#4Enx#a=DjOg!e3YM~ZitgZfrv6A1%6(?e|*dvpW25xAp`$nD_rvKK3 zh`vp)Uzgn@##+AZMooj+vIezTXi5`S5|tS&P2*kD*1GFe;}8CU>Ihi)j2R3TjM!Y; z^f;V$O{?aQQ8y@kRv{u0o5Uz1PzTpHz0F$~@zJ;tf{dfUo#6m{txzSbL>B3gFr$Gj z%P#?xs~)RP0U2kq+96$RPv9xgA;uEcwrsFUEL6Hv$S4NsV20Vd^M#MsPmUaRJj7GR z3pPTLj8RN+{XWfEgc%+RH+ej*cwHP^>AGQk^S6t^20$={ng}n?Q$~aBZU#_J3|poA zgYFtWDmZ_E$qa%{3&2)qb6~(rGmp5OYwfL+pKpF{j?7!}<@|lF(DXsvA?18OCVV=8 zc?^?|_=JKGVuC<;uHj>B{`*fny!Cv*n|V-5`{J>5cP#cz{&FJuR8c~_(!!lKdk$Yx ztoFRjo4peWm&SsLmT_Y2|Fv+DCP zf7LQ>%mY{Sa7);epzrl@)&RHI-DRz>ZK4@7{meLvnCj}twe4~^{c=H|_4}=XsnMpP zH!OK}3plQ@fD88u_+c&kFJ)z-N0P*OU)rSG^BmCj;$MC}NLA*{GRe-q%31jKXlYDe z&+7t>7=0aOlTI4tO=3g@|a26PG(0YAE<~8U#Wf68h=I ziFU>9eJyo#iP0DDos!HmCH9^?b|6z*mYX3+?Eq7Cq0SK%rlQ0$*Q@7k(KXS z9vW6oN@^r;j-^7MM*cpkAb93Nt-_-p=@I?x2-^PJhjoir#{9wBgtk(JSyg0BJf-(m z^+n&P>_hacq!Jc7k#2?^?UA3c1IwBIBIUtTbhW5-!vFl<)mD$7v;=fp=`bRZ-DqmRx zY#37m)Rl|j#=S@L!RvAqEgw`AgA=gB``Me z_ux%&xlpLl1Yhm*X9ie3xv6KWD)_V+vE0hidBVl{>RvScoq_=Ds2IPAT61qyGg3p#TEa07?6~{O|bR9r*8dAaItE4IC&q&j<+Q z(9a|1qQ}yCQ#=Xi&DRe+4TlK>ps12dnPNjTcwjtwd(mKHX|^*uIx3oL5}zHrEv}3P zSm~>#28ulfFBmA*Y9)80dr}>rsOF`KXZSkE&hPbm->K`Ho>{@Xzj)mFdHil73o95< zp%oAiRO65OTh)_u(HryI^nz`)1s*ln1e@M$y!YD7hD7i8UJD$H_;E`LStFWhx~oFw zXm7Ek(PI1XbZ=^+?V?zOLOSa*&$I8h*ABq*n-k#75AYG#xu4~l{XN3H9`I`T0R$8< z*P4b2yo;8G_dN=2N5*SF} z#ij1JiIbDl-Nb~J>!UOp%+e|+BUi`N-wJ9H=bsg9|MO%42MYY-0t8H-`D0n;Ywf%t z-gx5v4O6X@+M?_=^ebPzWOn{oL!BwSO5Is=a2`1hmi=yEoje0z5G?%li7cl5LX007ef z007?!k0<{~;8J31Px;!}SOWLBq-@!Q?_ai;!`W#2Z?o^H)M;qyBbBmIU=<#XQIoAPpcc9z@(V-0z=AClBfgG< zs7|pS!-6&B@@P!rCcIKV!u1;qk$AsS0x-fDmF3J#U+Hm|UHN%>Q3V>2)yEU}n#{R+ zz0`fBzx$?qln*o1B|gT>Sc%ZS%x8vB#g^jbH6Vk$v=UkeIpa)1ZvSZ`Det-UNKESu zg(u^C`N4_Ywu#DEE`28DLi17r^Xk{~>|5(o;conRZ_k@*r7{)z>Nw#$F5{uCIL$i~ z4U3X}0lbwGZ>Nif1u+Y{BU{Z9=4)f2Uj6KB)?!9)bJ-2ko6QJwyqFop-{sEOnWW9Z zD&EH~y!+|FX@azDN_<}xZ)I`ZG$+67-+k*$MQb?zL1B}uM3EYfVcP$==2NilxRb7@ zT?e^&1N;L$7 zW|rwDK2grJB!Xr63Kv<84(8~^i;Io^X?Rp}b^drFOCUe`-gSl?Zw%x@l~(oFD8 zqI@ke^L0y^Pwfs3rxM|3X7YfefJI&W%Y$Ra-Yi})rHkT9-U`P_l`M&kSFh@2Qj-n) z?vvU^qoulqZoy;r<0;{*#&Yjv9BB2w?EJ8(H%C|#+C2XhG0;`2-A}mDzI91K8Q-oQ zE-wy*(95EhGFLfcnnF#JBw5tBRQq!IN0OPV#Rl>ysu;mn`1Mgms*`x7u_A3G*zYb7 z2Lt$@6Hwmf!X2;gMKrRQrR8(;Sti6BxlW$F~R49k~DrTY@M60002`k~Zj@2Yw;3E0;}4 zFXcLoWF`U=?+bMtRZFf+GLagrt(xJy)gdEWNnD*~*uq9O{^sF%pBxgZ@A>_(Tn?`{ zEFv$;I@nzOd-{3JoX+(MA4}t&^ae%#`)>s0_9&xgKAm%t`Ms>1+lUX!((}ofc6~5! z@$+5c8%J2xvCBw0@#K6OHcDIb%O5@JiyMx5;plS_0=A0DojHhOaCwP8VlGa=o2Q&- z`PswzrqN-&jy2P;;U0C?o_9qby02iDtT;lSa}Cg^n_g${R(Q% z}Tz-G&;5VqCi)o~zolE(^Ka|AX0Kt>mlVH&h^t@JKD$ zoXg{aJ+U;BV9ndaJJ={WZ@rq!;v%!_Kw`E{ht_&uo=1qx2Gn)`V>@dKe6 z?_tH5-QzdjkLw%<_N3|jE^pt_Pqr`J6Drt0y4$J04r1mUvjgq|C5b)hV;GhybmWDr z;a7A176P&<|4m3fIxpVBOdi8vKjOf+2Ds&>KZhUL-)eoFJi`+_5h(Smj9*=lK`^@clRqbhHrKu<$L#Z-Jnfw#J{=vXnAm(;= zWa*}ROP9x4c+GUC)mn-?{)vvM>HvkLC_lznW{kM`U7rq`ZFseDI;gRjPWc&p>w`UC zOMeKNA>h?A6C&Q=NJRcFrd68XC4LEUVOTrCjR0QPhu_)zxDFN=*vK~pbBk*M*JgEw z6zZRn8Ox$=x1_ROY)?x$Z+rwz3k_=$tAHm}V9Z%Y)^J8^`{lQ_LC;jhO&0N4uxkPX z5MN>K;RrMDYIrl62y`*N=w=MXxQkL^9ch$98EtT6R#jol>=pYA)n~&v+x5>ur;)%; zn1l<77dsRQhDQmybUvd!*!0y`cFNHDP>2u{Rw-53$@j^L&imHeg4RL6m(mGbDlms8 zLzG)%=Hf_&=|UJbGPTV>zoEDxiDvcoD8oM>%yJf|FwkbD)592nJv(w8fcHG^`=xx3i)g?uzL}bUfZP;`C+EGolCk*X1DEip#1KpZ})fqDTk&Pi#$dFUA`V& z)PjQEB}nH|xK5E3R=ock0G4B~>VofB6U%Dz!(q@>Ga9$D!R7?wYW#w|s<^ zdxXDF1Ww;C495mQ1BudAMQW>RXt^R$`baH(O&t}ahCULhEH$V6UxI5Se?ma?{})^_ z^)F-#0JN2(Wuy5&ll}s>Jq()w0080t{KNNOXGhOpy!bEr^@|tZy!|Ho|Ni>+#~(6$ zin6yWwWwz6S-DX27caj3+fjCOzFse1zIbtUb#;10Ps`QWi?_eLcpuin;m7r#&)1z_ zp4zoNdi94d;sf7b%oo*{cPxXYl^qq*q@at=;=|`tj%HT&*g%{_^i{zk6OBy=WF$s0;Vyk-A);m#fYXzr9e4OE=HH zotg7c`9$*1bPXxc*Vi7TIfc z1^}s7*&i=v)|TtfAO3y(qV&m zR%>VLHNKk96TV$FVwELep{iGSvvg*r<`FY-jX!+xAJ3m>e{l0>+GBI{q>n! z0IL+Im}JkN2ciHOUd68h9nxEYFk24=@?=@}?dtO4LanY7*%B=OxxCcR1JSFaSFbPi zd}gw6=IibJCnoIk8()SadtTbj*T1`5n81Md{G^(l0dK@mw#*@0|TuAK?k+x}IS&~^hW30aX#j<(TQzjrTZg~i%MHzY|5-lR#*)BxTe{_w>T z_+b%9o~f*wEzagHQ{fRakY*PC&Nc_g&5ye5@blM~)w;ZRJulbk2xSqifd6Sh#?8VB__16$SRnl7ixTIPhGGDH;dexT=!nc23GlTmc|o9-*V`vT_${3FoW%LHm7p`zTX$5Yk<6<0>FE8xY}J zwRpdKfgnil{3NjG%E93{S3w}J;5esmFG}mkjT7t=_SD%G|KLygt zuGCfdVpi&Z!J5@+R_`Kc9oRRZjGyomjKm3%N&Evi&FKbR6MtMI_rhIh2e>kUy71Ym z%TjQv0qtuG>&~mCT6}p#;Pp9azH_!JFP9C?zi6~zM;t|IxGj^;3B0?u;XkXb2LdFs zwYzu#0082t9MQ&LK?+R^;xY0lXE`RC=7l!6P&G*HufB(0{owpMU;zXaU^=PbclFDt z<=o=(B8Z$EeV!hFYl&aBf2GScFi70ieO%mOkO4r4F9#e%F?Kf!Dz{XiGRoC>B)n;U zdbCBX?vC$8IAI!7DwvkK@Pd0LoU_C!Q5Y($mIsOOexQF)+Rfj9EFOmOu~?Xbahlu0 z6*(`gRtgKLJyA|eL9He>_vj!o-VgK}qvme-86S& z3Uhyu81D!AjhllC2m<}JTCInneJm;lqy0q$p&#D*`|%V!>s$2~I5)Ke(|ITU_D?`>u(?hivS26ZzF-?1 z_ny+RmltSGthE$^}BQm_(QXi;rNXk@n1vB&#-SjG@_BJWipRVTcz6 z=c>RSs{**!6DK(HxyqH%coNM9EFNeUvGSn8`9&?x+=idx%L#N@rQeUC$yhv1vR7r1 z=hk9yKRlKMc_y(lm?#0f?94O)H(>EV6J3_`DcJqRy>qL|*>PANyYnen2JNJXz#MB= z5Xupk4im||pw9Rl^PRB#^P6+9pX}>02H*ZTUw__fNWGnzU)^e3S)}(;sPt_8`5rCH zek`mvuneZ-SlmvbBRAA4k;4P6krH`=P{DI09T85U+)d(^0gF%MmVn-B9G8sU@f7Sj zhIyg2;Y3pD94E$VFgXj5hB;DXnob|E_#RtT7JFW4As9%^-%bCY0nFOlgNe6BN!Hi{U@WI5ACP3|Ks(`Rj6C zuBPHSE;0_$V>drd@fFx{%Q+%>?yUwLi>=HpwuTE#rz*bQ#RH;kd8y}aDx!Z0xAL=c zF;)$Z+y4|?!`?2&MM$NR%p`1db<6YI4=c^tIw;vJ1e$fN+JBgz;}Ir5fz3hFFGK|L=FwmCMt zg=yLVW&h%j;2pWe+4}tZkz!@+z9$9lsaAQ8nK9OS%CQFn!XX8(m`4Opvm^&B{#ZEv z>2jos9J}#JNEQrp3L*;BFx8wHj->IPFi8c{PESK}|KbxPDb=NZJ3dr3cGHvMC=v-% zIAd5&n8n&NRruTsL|o3io_2}{EI#cN*ZAE{Sd88JB!MgoljlY`4#FP{O64SSMCOtf zM2g%_6UhCGKO&k(%ZsslpJYxB-XcOk(DU4e)Do_laaM9=8F;7pZh3gExaePeB7TF`8;#$wd!BT^ zrV432P*X7?yfPFAxn#gR_u5*sTPkmZ-vNtH#BVJqMx%J_wkPE-3C(iu9ii0YLKH$$ z$>GUdX=#|4rttZRd>zpx#)oz629;`u<3#W+&t!gy3L^ErqN#FsC2kdUwGgQ0UZE+Q6;~L`-J{Aen zE)+4bmh>8X#j77q<*oJi~ zXU;PXq;*1J!?E<<6OA#_)2_P*EdFQ+-x=8>5im(^Th1tEN>jwCx5#TDh-3;m;Zb3x zU7QS9d}<)6M)jX}35br}`=mpiYfivrDhM;igX6@(j3k6AYC!ItHBzFP!I+hlmmpdbn-th{2&t&U|d7Er?3UD+yPMU<^sNni(F&00Q z(w2O%Yk~lv*lSZ5##v#gr+uhPV_DqX@nD3;;vP?ZyTXIyhf4h_H=k?2%Uj;ZW z++zLRT%Dzzg;xVwvW!IEv<4p_R0$E5hJqDRfMk`%Nfk2NjKl}YHvKR+r1~Ln%5C21 zC&5^>OyU+xjlzTp1xih5&OkzPXDGM_mTI?~kGgMe>4mu=!QX>;+9JU~fi)H_)AIiW z@fIXvuCYSaP|uK*#2W?Hjoh*1Y|kX@N!U_}uAmEB| zFdi)>X16PtJ)^!K<{I@)QPxQOkHyI(BaI?rm;kl{lid&}J#vgWBn(2BxZN^F_HCr~ z!raAwn{gJX0D>{AbEF1XY9nzo$xP5iE|Fm_ls-~vB`!EPwNw_y36&qDe(Hz0ONVs# zz6lY;Oa0{Y`*MiyG8RRXQduPjQgbj#90T)2Qm&m7T4D^k%;JM2M?cJ6a@4oQ9eTuf z5Dl+g+@(d^b9`v9dTcNAFkoT;QAZ+r zQjD4xTybU%QOe{ws5_*HQ3de`5iSohvepkX5cO|ctv5OXuc^OJDkyyXbvcA8V=*-? zd|*w12vt^aglIvO1w)W&R$waJj@Ng44A(mg71hJ{*Z zM>#`IhU^Ea3J(?tI7n!>Jjgv0q95i)=EXYN4Gq!&oRctnCMz%3;l-DzpB`gzG_Bp9 z!-@(eWsWfb0089$E)>9%m>_1Q#DeZtNU(3mr5ENcdVIgQNs$3Q%Sg0LGLm(nkagN( z@13>85Moid9`{-^m+w|8vu`807v?Pz#M1JH1~n%Pu!~0`W*Q$L10E5x;FEGNIjA+( zA?yqAkq}0^=5bD4>QoA&BO0FbnrTPb4xeCdl-wFNf~|xl7xo2FNRw<0LRQ4cy0yvpoD+6hq)oeW88C$#n2?DI*3AA5Q8x`(o?K8$_qg`7|PbEgH+i4FgMh=H~w0!huk-f z#LXlFmP(8zm}YtIxFyH{{f#zQfb*inj^oMpZNT=z+|Xh7OYyOInUr{)OUxKHn%at(bCM%!wByL>5LA@TC8du=zf?1 z{Xf-hTw2d9z8;d8GY%n>TDdT8jOIDgBFwKTFp`Dh8f*cE!D~6lxL!ZZ!BoAw|HTAj zX)LNH@dR-u4mn`90FT`%r3=cuHhF=lr3ZOS+7EMwERREyv1po9f2yta+~rhh%yA(+ zRTzXL3jq~L$ZpladnQRg%y)6hW7x7|u{BA5TaLgmGh7Oj1NoW6-daH|JlP0xkawp2 zFyCaB$DqnsOie3BlvpTLyJ3VQ7@D--%*z9GJ*kz*{1CMDb`gjDD=nTP8`?v#P&GKxbt#E^o0 zh~(&pxkHXe2^EgT(j+Z{sh3(hN^-*yw^DywB%pu~{?V>ZRM?rtjm_$yu z7#6k}i`z-@{CG-=P)JEp?sJYsPPxoMeJVx8LHa}eFasU`-tD*ZVdyvj008C|x052! zg<~FTlHv;t}`}rSgHB*aq_9yGsYBsOFL_<6KjK%9TEm#!JGfoRfat_N2p)IBb zE~K%H>~`-TIzarinz==)7ul;O>;u2tz%j1B(pbz);v{Yu2lXi&2a7c?s4gtel~n9JZNAt(1YGmrgJW-DT+Kl%$R9E z%opW5ce`neoq0c?u4g1hCS53FkaJ-!o?@P0<1_+e608r$;o${8NQbr`<|=gjx{ZFX z!Z6GMH_0QBGAY#s3F5uXy~`!StN`7kjn&KxL7h6xTGD=)A0$BAvdFm5iDE#$%Saqe z%9v+bgWa85qnzWapel5JaS|SwJ4_C;lC&S@rp?|jK^Y7+kJ~4-y+2Z~#&Uh`R^eq! z$W>VOOME&Y*?TO0Cuw#WLVz9-r;THpP+J(|jLaP`tlDv$$iA~QdSPC<$X%VvhhYBx zV^+;VFkudl3r2ADrC0N6NWSq%Buxs|(cJmM=Y$z$xYS@+duue4To7vbZqDc4ot1v5 zqqX(6{JJbxc1z&F6EEH1an~cUGfB*0Zn36Hcmce}sTEvWYK#YS15UwiiDY}HL_gFf zkl=0kIuK-cN{q$Mq$>rYG_e9(K^fLkQz@81)?$=nsr=3(r3QI$&M_ktXNKj42LFm% zZyYg&gjYDs_}&gv?%WP};7vs@D$YW7)N1|JgF%78gGfhWep1~LcgTm3kP+N@&3zcT zCphRl<~*`HHu3#oR;~LRdFg7s0>i6S4IQ0+^P{BTcON=Gu%M|I8Ov6UjdNVbqIpu) z2A2qq3mhYw%h2462oL{qf(n7W+s$$xM$*5m)bhOBMjKu}4e9zfeHMTjNw%@5oMaRd zk>ikRl~M z&vU1&TV=~j{m%=xJ}+(c&o-p5uH7mKj{0$%mBC6j^O^be%cFm(cd9b0*>e4IU7nrI z-S=tTXP-T|;%CRO=Ir7ut5znUwXB>yT`tbT!B~HJ^!(^W4g6~`IA$jM?s8#5=&j0X zxSh@Xs=RpkN}_pM=SHG=E6}4ang9ySD?)`QQiq0QlII*@>J1n)&Y%XALAV>o0*`%O zw=waby<5ADs|VZjTvh-<(0eVS+jkNZ1{HMDmLaUw>MUf(!}4F&?>##{nMBI$Ph+;P zM4^St8M7ozVRBeWm3smj&l_9t0(7QYxy5<_008If5kso4_j6<>`6h@+p(SG)>@cEp zn+uDO_8zRXT#J1k;&!xq4+uwTut@N}cN`D$F8S*tN4xI@Gn2Hbpw8+7Q^gE`BrQ0t zs_>3_PrdTu324;^!cp%Km|j`1BaIVBre(&Ec|S;`Omtrrln!Gp)szvr<|cx`k*~ z7)PD<)*yxp!IfDA5>A|%R%uUJ#LKaz-TVfsK3ge;x zX+TWjaBf3C$vx7t&YRttr$&&pZF-nP(JAp5FVz!>Ou-B zsb=s$5$;Km$BdwY?(q;j3H5unca!>ebOMN^{hPWNaIv``WKMFHyk%jYqjpSjPMxw0 z=bV7Q?LFcJ{>bHZ-}WMTzv`;rR%W|JSZBagnEjw|n&9Tl6-Br*WCgd*n@|uYsK`AA zi+!IS@Y6`_hqo8<5!5_t;n{q)z8;z9xfkROCg+QI#{|DtF&(L0K)aQ7W?mg_!5zZR zAc$^7mS25wPMYtWt;)+~icd#8FF;hmjsg8DEEkQ}H|ffCd^ZuxJl1*KyoZErtU@UDW`Dq++XA1>Zh$W6P8A3OwcIwWxo5O(OA4q zzu2$MrANBdzjw947y7lq_JsHNT6++V!Z_=cpvqta;!A2yu#us)RBIRaq3Xk*=35R$ z&(@AoEPb$2xjzg9X2lN!BSDXj?t^ndz=3*Rg<3H4y!N9SZzR5%-Aq~;;++_z@>rS2 ziFPJ81vWM(7U#lvz}jv}jS0x1V?`Yay@3TOG%bk7$fKNr9j9qtfGJnNX^JyTYwKa3 zIgP!zxKOLJ*&@t%dRumZy8CzsssVM4gU2)(Fpd?%Q3u*l=S0EN1V%a6@Rw081W)0+ zFJJ!HK4-)%sj;M-)RId9aj0Y5V~ri9p$!-k1tF9Xj(419SRb3GtA6d@#jWbsy`1T6 zJ;)dyi}XpB78q{;008J9N3C}*X9XNs*awF#XhFE6JC3FLNaaF5F3RPytN?Kz{)~*J z+u