![]() |
Home · All Namespaces · All Classes · Functions · Coding Style · Scripting · Plugins · File Structure |
#include <StelApp.hpp>
This is the central class of Stellarium. Only one singleton instance of this class is created and can be accessed from anywhere else. This class is the access point to several "Manager" class which provide application-wide services for managment of font, textures, localization, sky culture, and in theory all other services used by the other part of the program.
The StelApp class is also the one managing the StelModule in a generic manner by calling their update, drawing and other methods when needed.
StelApp::StelApp | ( | QObject * | parent = NULL |
) |
Create and initialize the main Stellarium application.
argc | The number of command line parameters | |
argv | an array of char* command line arguments | |
parent | the QObject parent The configFile will be search for in the search path by the StelFileMgr, it is therefor possible to specify either just a file name or path within the search path, or use a full path or even a relative path to an existing file |
virtual StelApp::~StelApp | ( | ) | [virtual] |
Deinitialize and destroy the main Stellarium application.
void StelApp::init | ( | QSettings * | conf | ) |
Initialize core and default modules.
void StelApp::initPlugIns | ( | ) |
Load and initialize external modules (plugins).
static StelApp& StelApp::getInstance | ( | ) | [inline, static] |
StelModuleMgr& StelApp::getModuleMgr | ( | ) | [inline] |
Get the module manager to use for accessing any module loaded in the application.
StelLocaleMgr& StelApp::getLocaleMgr | ( | ) | [inline] |
Get the locale manager to use for i18n & date/time localization.
StelSkyCultureMgr& StelApp::getSkyCultureMgr | ( | ) | [inline] |
Get the sky cultures manager.
StelTextureMgr& StelApp::getTextureManager | ( | ) | [inline] |
Get the texture manager to use for loading textures.
StelLocationMgr& StelApp::getLocationMgr | ( | ) | [inline] |
Get the Location manager to use for managing stored locations.
StelObjectMgr& StelApp::getStelObjectMgr | ( | ) | [inline] |
Get the StelObject manager to use for querying from all stellarium objects.
StelSkyLayerMgr& StelApp::getSkyImageMgr | ( | ) | [inline] |
Get the StelObject manager to use for querying from all stellarium objects.
StelAudioMgr* StelApp::getStelAudioMgr | ( | ) | [inline] |
Get the audio manager.
StelCore* StelApp::getCore | ( | ) | [inline] |
Get the core of the program.
It is the one which provide the projection, navigation and tone converter.
StelLoadingBar* StelApp::getStelLoadingBar | ( | ) | [inline] |
Get the main loading bar used by modules for displaying loading informations.
QNetworkAccessManager* StelApp::getNetworkAccessManager | ( | ) | [inline] |
Get the common instance of QNetworkAccessManager used in stellarium.
void StelApp::updateI18n | ( | ) |
Update translations, font for GUI and sky everywhere in the program.
void StelApp::updateSkyCulture | ( | ) |
Update and reload sky culture informations everywhere in the program.
QSettings* StelApp::getSettings | ( | ) | [inline] |
Return the main configuration options.
const StelStyle* StelApp::getCurrentStelStyle | ( | ) | [inline] |
Return the currently used style.
void StelApp::update | ( | double | deltaTime | ) |
Update all object according to the deltaTime in seconds.
void StelApp::draw | ( | ) |
Draw all registered StelModule in the order defined by the order lists.
bool StelApp::drawPartial | ( | ) |
Iterate through the drawing sequence.
This allow us to split the slow drawing operation into small parts, we can then decide to pause the painting for this frame and used the cached image instead.
void StelApp::glWindowHasBeenResized | ( | float | x, | |
float | y, | |||
float | w, | |||
float | h | |||
) |
Call this when the size of the GL window has changed.
StelGuiBase* StelApp::getGui | ( | ) | const [inline] |
Get the GUI instance implementing the abstract GUI interface.
void StelApp::setGui | ( | StelGuiBase * | b | ) | [inline] |
Tell the StelApp instance which GUI si currently being used.
The caller is responsible for destroying the GUI.
static void StelApp::makeMainGLContextCurrent | ( | ) | [static] |
Make sure that the GL context of the main window is current and valid.
bool StelApp::getUseGLShaders | ( | ) | const [inline] |
Get flag for using opengl shaders.
void StelApp::setVisionModeNight | ( | bool | ) | [slot] |
Set flag for activating night vision mode.
bool StelApp::getVisionModeNight | ( | ) | const [inline, slot] |
Get flag for activating night vision mode.
float StelApp::getFps | ( | ) | const [inline, slot] |
Get the current number of frame per second.
static double StelApp::getTotalRunTime | ( | ) | [static, slot] |
Return the time since when stellarium is running in second.
void StelApp::reportFileDownloadFinished | ( | QNetworkReply * | reply | ) | [slot] |
Report that a download occured.
This is used for statistics purposes. Connect this slot to QNetworkAccessManager::finished() slot to obtain statistics at the end of the program.