mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-14 16:39:57 +00:00
File Export (part 1 of 2)
The export functions in mainwindow are getting quite cumbersome with multiple menu options. This patch creates a single menu option "Export.." which allows the user to select a supported format and a filename. To support this the ridefile reader code needed to be adjusted to allow registered readers to declare capability to write and use a consistent (virtual) method to do so. By modifying the base class for ride file reader we now allow new readers to register both read and write capability.
This commit is contained in:
@@ -60,6 +60,9 @@ using kmldom::TimeStampPtr;
|
||||
using kmldom::StylePtr;
|
||||
using kmldom::StyleMapPtr;
|
||||
|
||||
static int kmlFileReaderRegistered =
|
||||
RideFileFactory::instance().registerReader(
|
||||
"kml", "Google Earth KML Format", new KmlFileReader());
|
||||
//
|
||||
// Utility functions
|
||||
//
|
||||
@@ -174,7 +177,7 @@ static StyleMapPtr CreateStyleMap(const char* id) {
|
||||
// Serialise the ride
|
||||
//
|
||||
bool
|
||||
KmlFileReader::writeRideFile(const RideFile * ride, QFile &file) const
|
||||
KmlFileReader::writeRideFile(MainWindow *, const RideFile * ride, QFile &file) const
|
||||
{
|
||||
// Create a new DOM document and setup styles et al
|
||||
kmldom::KmlFactory* kml_factory = kmldom::KmlFactory::GetFactory();
|
||||
|
||||
Reference in New Issue
Block a user