#pragma once /************************************************************************ MeOS - Orienteering Software Copyright (C) 2009-2023 Melin Software HB 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 . Melin Software HB - software@melin.nu - www.melin.nu Eksoppsvägen 16, SE-75646 UPPSALA, Sweden ************************************************************************/ #include "tabbase.h" struct ClassDrawSpecification; class TabCourse : public TabBase { int courseId; /** canSwitchViewMode: 0 = no, 1 = yes, 2 = switching to legs */ void save(gdioutput &gdi, int canSwitchViewMode); int courseCB(gdioutput &gdi, int type, void *data); bool addedCourse; wstring time_limit; wstring point_limit; wstring point_reduction; bool tableMode = false; void fillCourseControls(gdioutput &gdi, const wstring &ctrl); void fillOtherCourses(gdioutput &gdi, oCourse &crs, bool withLoops); void saveLegLengths(gdioutput &gdi); vector courseDrawClasses; oEvent::DrawMethod getDefaultMethod() const; wstring encodeCourse(const wstring &in, bool rogaining, bool firstStart, bool lastFinish); void refreshCourse(const wstring &text, gdioutput &gdi); const wstring &formatControl(int id, wstring &bf) const; protected: void clearCompetitionData(); public: void selectCourse(gdioutput &gdi, pCourse pc); bool loadPage(gdioutput &gdi); const char * getTypeStr() const {return "TCourseTab";} TabType getType() const {return TCourseTab;} TabCourse(oEvent *oe); ~TabCourse(void); static void runCourseImport(gdioutput& gdi, const wstring &filename, oEvent *oe, bool addToClasses, bool createClasses); static void setupCourseImport(gdioutput& gdi, GUICALLBACK cb); friend int CourseCB(gdioutput *gdi, int type, void *data); };