diff --git a/lang/gpxsee_cs.ts b/lang/gpxsee_cs.ts index a59b97fe..7ed48f94 100644 --- a/lang/gpxsee_cs.ts +++ b/lang/gpxsee_cs.ts @@ -64,22 +64,22 @@ O Qt - + GPXSee is distributed under the terms of the GNU General Public License version 3. For more info about GPXSee visit the project homepage at Program GPXSee je distribuován pod podmínkami licence GNU General Public License verze 3. Pro více informací navštivte stránky programu na adrese - + Open file Otevřít soubor - + Save as Uložit jako - + Open POI file Otevřít POI soubor @@ -89,14 +89,14 @@ Otevřít - + Quit Ukončit - - + + Keyboard controls Ovládací klávesy @@ -106,321 +106,333 @@ Uložit - + Close Zavřít - + Reload Znovu načíst - + Show Zobrazit - - + + File Soubor - - + + Data sources Zdroje dat - + Load POI file Nahrát POI soubor - + Close POI files Zavřit POI soubory - + Show POIs Zobrazit POI - + Show map Zobrazit mapu - + Clear tile cache Vymazat mezipaměť dlaždic + + + Next map + Následující mapa + + + Show graphs Zobrazovat grafy - + Show toolbars Zobrazovat nástrojové lišty - + Metric Metrické - + Imperial Imperiální - + Fullscreen mode Celoobrazovkový režim - + Next Následující - + Previous Předchozí - + Last Poslední - + First První - + Map Mapa - + POI POI - + POI files POI soubory - + Settings Nastavení - + Units Jednotky - + Help Nápověda - + + Previous map + Předchozí mapa + + + No GPX files loaded Nejsou načteny žádné GPX soubory - + Elevation Výška - + Speed Rychlost - + Heart rate Tep - + Next file Následující soubor - + Previous file Předchozí soubor - + First file První soubor - + Last file Poslední soubor - + Append modifier Modifikátor nahradit/přidat - + Map (tiles) source URLs are read on program startup from the following file: URL mapových zdrojů (dlaždic) jsou načteny při startu programu z následujícího souboru: - + The file format is one map entry per line, consisting of the map name and tiles URL delimited by a TAB character. The tile X and Y coordinates are replaced with $x and $y in the URL and the zoom level is replaced with $z. An example map file could look like: Formát souboru je jeden mapový záznam na řádku, kde mapový záznam sestává ze jména mapy a URL dlaždic navzájem oddělených tabulátorem. Souřadnice dlaždice jsou v URL nahrazeny řetězci $x a $y, úroven přiblížení (zoom) pak řetězcem $z. Příklad: - + To make GPXSee load a POI file automatically on startup, add the file to the following directory: POI soubory, které se mají automaticky nahrát při startu programu jsou načítány z následujícího adresáře: - + GPX files (*.gpx);;All files (*) soubory GPX (*.gpx);;všechny soubory (*) - - + + Line: %1 Řádka: %1 - + GPX files (*.gpx);;CSV files (*.csv);;All files (*) soubory GPX (*.gpx);;soubory CSV (*.csv);;všechny soubory (*) - - + + mi mi - - - - - + + + + + ft ft - - + + Maximum Maximum - - + + Minimum Minimum - + About GPXSee O aplikaci GPXSee - + Navigation Navigace - + GPX viewer and analyzer Prohlížeč a analyzátor GPX - + Map sources Mapové zdroje - + POIs POI body - - + + Distance Vzdálenost - - + + Time Čas - - + + Ascent Stoupání - - - - - + + + + + m m - - + + Descent Klesání - + %1 tracks Počet tras: %1 - - + + km km - - + + Error Chyba - + Error loading GPX file: %1 Soubor GPX nelze otevřít: %1 - + Error loading POI file: %1 Soubor POI nelze otevřít: diff --git a/src/gui.cpp b/src/gui.cpp index 31748ae0..dc959fd3 100644 --- a/src/gui.cpp +++ b/src/gui.cpp @@ -255,6 +255,15 @@ void GUI::createActions() } else { createMapActions(); _showMapAction->setChecked(true); + + _nextMapAction = new QAction(tr("Next map"), this); + _nextMapAction->setShortcut(QKeySequence::Forward); + connect(_nextMapAction, SIGNAL(triggered()), this, SLOT(nextMap())); + addAction(_nextMapAction); + _prevMapAction = new QAction(tr("Next map"), this); + _prevMapAction->setShortcut(QKeySequence::Back); + connect(_prevMapAction, SIGNAL(triggered()), this, SLOT(prevMap())); + addAction(_prevMapAction); } // Settings actions @@ -455,13 +464,18 @@ void GUI::keys() msgBox.setWindowTitle(tr("Keyboard controls")); msgBox.setText(QString("

") + tr("Keyboard controls") + QString("

")); msgBox.setInformativeText( - QString("
" + "" + "
") + tr("Next file") + QString("
" - "
") + tr("Next file") + QString("SPACE
") + tr("Previous file") + QString("BACKSPACE
") + tr("First file") + QString("HOME
") - + tr("Last file") + QString("END
") + tr("Append modifier") - + QString("SHIFT
")); + + tr("Last file") + QString("
END
") + + tr("Append modifier") + QString("SHIFT
") + + tr("Next map") + QString("") + + _nextMapAction->shortcut().toString() + QString("
") + + tr("Previous map") + QString("") + + _prevMapAction->shortcut().toString() + QString("
")); msgBox.exec(); } @@ -840,6 +854,24 @@ void GUI::mapChanged(int index) _track->setMap(_currentMap); } +void GUI::nextMap() +{ + if (_maps.count() < 2) + return; + int next = (_maps.indexOf(_currentMap) + 1) % _maps.count(); + _mapActions.at(next)->setChecked(true); + mapChanged(next); +} + +void GUI::prevMap() +{ + if (_maps.count() < 2) + return; + int prev = (_maps.indexOf(_currentMap) + _maps.count() - 1) % _maps.count(); + _mapActions.at(prev)->setChecked(true); + mapChanged(prev); +} + void GUI::poiFileChecked(int index) { _poi.enableFile(_poi.files().at(index), diff --git a/src/gui.h b/src/gui.h index 2da91031..c3b9cfcb 100644 --- a/src/gui.h +++ b/src/gui.h @@ -47,6 +47,8 @@ private slots: void showToolbars(bool checked); void showFullscreen(bool checked); void clearMapCache(); + void nextMap(); + void prevMap(); void mapChanged(int); void graphChanged(int); @@ -126,6 +128,8 @@ private: QAction *_firstAction; QAction *_metricUnitsAction; QAction *_imperialUnitsAction; + QAction *_nextMapAction; + QAction *_prevMapAction; QList _mapActions; QList _poiFilesActions;