mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-15 00:49:55 +00:00
Porting the codebase to QT 5 (5.2) to get the latest bug fixes, performance and improved platform support. This first part is to fixup the codebase to compile on Qt 5, but some aspects have been broken (video). The second part is to migrate from Qwt 6.0.1 to the latest Qwt for multiaxis support. The third part will be to fixup any platform specific issues or issues identified at runtime.
125 lines
3.1 KiB
C++
125 lines
3.1 KiB
C++
/*
|
|
* Copyright (c) 2009 Greg Lonnon (greg.lonnon@gmail.com)
|
|
*
|
|
* 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 2 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, write to the Free Software Foundation, Inc., 51
|
|
* Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef _GC_GoogleMapControl_h
|
|
#define _GC_GoogleMapControl_h
|
|
#include "GoldenCheetah.h"
|
|
|
|
#include <QWidget>
|
|
#include <QtWebKit>
|
|
#include <QDialog>
|
|
#include <QWebPage>
|
|
#include <QWebView>
|
|
#include <QWebFrame>
|
|
|
|
#include <string>
|
|
#include <iostream>
|
|
#include <sstream>
|
|
#include <string>
|
|
#include "RideFile.h"
|
|
#include "IntervalItem.h"
|
|
#include "Context.h"
|
|
|
|
class QMouseEvent;
|
|
class RideItem;
|
|
class Context;
|
|
class QColor;
|
|
class QVBoxLayout;
|
|
class QTabWidget;
|
|
class GoogleMapControl;
|
|
|
|
// trick the maps api into ignoring gestures by
|
|
// pretending to be chrome. see: http://developer.qt.nokia.com/forums/viewthread/1643/P15
|
|
class myWebPage : public QWebPage
|
|
{
|
|
#if 0
|
|
virtual QString userAgentForUrl(const QUrl&) const {
|
|
return "Mozilla/5.0";
|
|
}
|
|
#endif
|
|
};
|
|
|
|
class WebBridge : public QObject
|
|
{
|
|
Q_OBJECT;
|
|
|
|
private:
|
|
Context *context;
|
|
GoogleMapControl *gm;
|
|
|
|
public:
|
|
WebBridge(Context *context, GoogleMapControl *gm) : context(context), gm(gm) {}
|
|
|
|
public slots:
|
|
Q_INVOKABLE void call(int count);
|
|
|
|
// drawing basic route, and interval polylines
|
|
Q_INVOKABLE int intervalCount();
|
|
Q_INVOKABLE QVariantList getLatLons(int i); // get array of latitudes for highlighted n
|
|
|
|
// once map and basic route is loaded
|
|
// this slot is called to draw additional
|
|
// overlays e.g. shaded route, markers
|
|
Q_INVOKABLE void drawOverlays();
|
|
|
|
// display/toggle interval on map
|
|
Q_INVOKABLE void toggleInterval(int);
|
|
void intervalsChanged() { emit drawIntervals(); }
|
|
|
|
signals:
|
|
void drawIntervals();
|
|
};
|
|
|
|
class GoogleMapControl : public GcChartWindow
|
|
{
|
|
Q_OBJECT
|
|
G_OBJECT
|
|
|
|
public:
|
|
GoogleMapControl(Context *);
|
|
~GoogleMapControl();
|
|
bool first;
|
|
|
|
public slots:
|
|
void rideSelected();
|
|
void createMarkers();
|
|
void drawShadedRoute();
|
|
void zoomInterval(IntervalItem*);
|
|
|
|
private:
|
|
Context *context;
|
|
QVBoxLayout *layout;
|
|
QWebView *view;
|
|
WebBridge *webBridge;
|
|
GoogleMapControl(); // default ctor
|
|
int range;
|
|
int rideCP; // rider's CP
|
|
QString currentPage;
|
|
RideItem *current;
|
|
|
|
QColor GetColor(int watts);
|
|
void createHtml();
|
|
|
|
private slots:
|
|
void loadRide();
|
|
void updateFrame();
|
|
|
|
};
|
|
|
|
#endif
|