// // Copyright 2008 Simon Edwards // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 of the License, or (at your option) any later version. // // This library 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 // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with this library. If not, see . // namespace Marble { class MarbleControlBox : QWidget { %TypeHeaderCode #include %End public: explicit MarbleControlBox (QWidget* parent /TransferThis/ = 0); void addMarbleWidget (Marble::MarbleWidget* widget); int minimumZoom () const; void setMapThemeModel (QStandardItemModel* mapThemeModel); void updateCelestialModel (); signals: void goHome (); void zoomIn (); void zoomOut (); void zoomChanged (int zoom); void moveLeft (); void moveRight (); void moveUp (); void moveDown (); void centerOn (const QModelIndex&, bool); void selectMapTheme (const QString&); void projectionSelected (Marble::Projection /Constrained/); void gpsInputDisabled (bool); void gpsPositionChanged (qreal lat, qreal lon); void updateGps (); public: void selectTheme (const QString&); void celestialBodySelected (const QString&); void selectProjection (Marble::Projection projection); // FIXME PlacemarkModel header isn't installed // void setLocations (MarblePlacemarkModel* locations); void changeZoom (int zoom); void disableGpsInput (bool); void receiveGpsCoordinates (qreal, qreal, Marble::GeoDataCoordinates::Unit); void receiveGpsCoordinates (Marble::GeoDataCoordinates in, qreal speed); void enableFileViewActions (); void setNavigationTabShown (bool show); void setLegendTabShown (bool show); void setMapViewTabShown (bool show); void setCurrentLocationTabShown (bool show); void setCurrentLocation2TabShown (bool show); void setFileViewTabShown (bool show); void updateMapThemeView (); void projectionSelected (int projectionIndex); protected: void resizeEvent (QResizeEvent*); private: MarbleControlBox (const Marble::MarbleControlBox&); }; // MarbleControlBox }; // Marble