MarbleControlBox Class Reference
from PyKDE4.marble import *
Inherits: QWidget → QObject
Namespace: Marble.MarbleControlBox
Detailed Description
A widget class that contains advanced controls for a MarbleWidget.
This widget lets the user control an instance of MarbleWidget. The widget contains a ToolBox with 3 pages: a Navigation page with a search tool for cities and other names, a Legend page with a legend for the symbols on the map, and a Map View page with a choice of themes / datasets.
The Navigation page lets the user navigate around the globe by using buttons for panning and a slider for zooming. There is also a "Home" button that lets the user go back to a predefined point at the earth, not unlike the home page in a web browser. In addition there is a search tool that lets the user search for names of points of interest (cities, mountains, glaciers, etc).
The Legend page does not contain any controls, but displays a legend of the symbols that are displayed on the globe.
The Map View page gives the user a choice of different datasets to display, which can also be thought of as different visual themes. The default datasets are a standard Atlas view, a Night view, and a Satellite view.
- See also:
- MarbleWidget
- See also:
- MarbleNavigator
Method Documentation
__init__ | ( | self, | ||
QWidget | parent=0 | |||
) |
addMarbleWidget | ( | self, | ||
Marble.MarbleWidget | widget | |||
) |
Add a MarbleWidget to be controlled by this widget.
- Parameters:
-
widget the MarbleWidget to be added.
Add a MarbleWidget so that it will be controlled by this widget. This call create all the connections of signals and slots that are necessary to have full control of the MarbleWidget, and thereby frees the programmer from doing it.
centerOn | ( | self, | ||
QModelIndex | a0, | |||
bool | a1 | |||
) |
Signal emitted when a user selects a placemark in the search widget.
- Parameters:
-
index the index for the chosen placemark.
This signal is emitted when the user has selected a placemark in the search, e.g. by double clicking it or by pressing return. If it is connected to the centerOn( QModelIndex&) slot in a MarbleWidget, the widget will center the view on this placemark.
- Signal syntax:
QObject.connect(source, SIGNAL("centerOn(const const QModelIndex&, bool)"), target_slot)
changeZoom | ( | self, | ||
int | zoom | |||
) |
Sets the value of the slider.
- Parameters:
-
zoom The new zoom value.
This slot should be called when the zoom value is changed from the widget itself, e.g. by using the scroll wheel. It sets the value of the slider, but nothing more. In particular it doesn't emit the zoomChanged signal.
enableFileViewActions | ( | self ) |
goHome | ( | self ) |
Signal emitted when the Home button has been pressed.
- Signal syntax:
QObject.connect(source, SIGNAL("goHome()"), target_slot)
gpsInputDisabled | ( | self, | ||
bool | a0 | |||
) |
- Signal syntax:
QObject.connect(source, SIGNAL("gpsInputDisabled(bool)"), target_slot)
gpsPositionChanged | ( | self, | ||
float | lat, | |||
float | lon | |||
) |
- Signal syntax:
QObject.connect(source, SIGNAL("gpsPositionChanged(qreal, qreal)"), target_slot)
int minimumZoom | ( | self ) |
Return the minimum zoom level set in the widget.
- Returns:
- the minimum zoom level set in the widget.
moveDown | ( | self ) |
Signal emitted when the Move Down button has been pressed.
- Signal syntax:
QObject.connect(source, SIGNAL("moveDown()"), target_slot)
moveLeft | ( | self ) |
Signal emitted when the Move Left button has been pressed.
- Signal syntax:
QObject.connect(source, SIGNAL("moveLeft()"), target_slot)
moveRight | ( | self ) |
Signal emitted when the Move Right button has been pressed.
- Signal syntax:
QObject.connect(source, SIGNAL("moveRight()"), target_slot)
moveUp | ( | self ) |
Signal emitted when the Move Up button has been pressed.
- Signal syntax:
QObject.connect(source, SIGNAL("moveUp()"), target_slot)
projectionSelected | ( | self, | ||
Marble.Projection | a0 | |||
) |
- Signal syntax:
QObject.connect(source, SIGNAL("projectionSelected(Marble::Projection)"), target_slot)
projectionSelected | ( | self, | ||
int | projectionIndex | |||
) |
receiveGpsCoordinates | ( | self, | ||
Marble.GeoDataCoordinates | in, | |||
float | speed | |||
) |
resizeEvent | ( | self, | ||
QResizeEvent | a0 | |||
) |
Reimplementation of the resizeEvent() of the widget.
If the MarbleControlBox gets shrunk enough, the slider in the Navigation tab will be hidden, leaving only the Zoom Up and Zoom Down buttons.
selectCurrentMapTheme | ( | self, | ||
QString | a0 | |||
) |
selectMapTheme | ( | self, | ||
QString | a0 | |||
) |
- Signal syntax:
QObject.connect(source, SIGNAL("selectMapTheme(const const QString&)"), target_slot)
selectProjection | ( | self, | ||
Marble.Projection | projection | |||
) |
selectTheme | ( | self, | ||
QString | a0 | |||
) |
setCurrentLocationTabShown | ( | self, | ||
bool | show | |||
) |
Control whether the Current Location tab is shown.
- Parameters:
-
show boolean that controls if the Current Location tab is shown.
setFileViewTabShown | ( | self, | ||
bool | show | |||
) |
Control whether the File View tab is shown.
- Parameters:
-
show boolean that controls if the File View tab is shown.
setLegendTabShown | ( | self, | ||
bool | show | |||
) |
Control whether the Legend tab is shown.
- Parameters:
-
show boolean that controls if the Legend tab is shown.
setMapThemeModel | ( | self, | ||
QStandardItemModel | mapThemeModel | |||
) |
setMapViewTabShown | ( | self, | ||
bool | show | |||
) |
Control whether the Map View tab is shown.
- Parameters:
-
show boolean that controls if the Map View tab is shown.
setNavigationTabShown | ( | self, | ||
bool | show | |||
) |
Control whether the Navigation tab is shown.
- Parameters:
-
show boolean that controls if the Navigation tab is shown.
updateCelestialModel | ( | self ) |
updateGps | ( | self ) |
- Signal syntax:
QObject.connect(source, SIGNAL("updateGps()"), target_slot)
updateMapThemeView | ( | self ) |
zoomChanged | ( | self, | ||
int | zoom | |||
) |
Signal emitted when the zoom slider has been moved.
- Parameters:
-
zoom The new zoom value.
- Signal syntax:
QObject.connect(source, SIGNAL("zoomChanged(int)"), target_slot)
zoomIn | ( | self ) |
Signal emitted when the Zoom In button has been pressed.
- Signal syntax:
QObject.connect(source, SIGNAL("zoomIn()"), target_slot)
zoomOut | ( | self ) |
Signal emitted when the Zoom Out button has been pressed.
- Signal syntax:
QObject.connect(source, SIGNAL("zoomOut()"), target_slot)