Stellarium 0.11.4 | |||
Home · All Namespaces · All Classes · Functions · Coding Style · Scripting · Plugins · File Structure |
This class is used to display loading bar. More...
#include <StelLoadingBar.hpp>
Public Member Functions | |
StelLoadingBar (const QString &splashTex, const QString &extraTextString="", float extraTextSize=30.f, float extraTextPosx=0.f, float extraTextPosy=0.f, int width=512, int height=512) | |
Create and initialise the StelLoadingBar. | |
void | draw () |
Draw the splashscreen. |
This class is used to display loading bar.
A StelLoadingBar has a progress bar whose value can be set after the creation of the StelLoadingBar, and a text display area, whose contents may also be modified after the creation of the StelLoadingBar. It can also have an image which is set at object creation time, and some static text (called extra text, which is set at object creation time. Stellarium's splash screen, visible when the program is first started, is a StelLoadingBar. The image is the logo for the project, the extra text is used to show the application name and version.
StelLoadingBar::StelLoadingBar | ( | const QString & | splashTex, | |
const QString & | extraTextString = "" , |
|||
float | extraTextSize = 30.f , |
|||
float | extraTextPosx = 0.f , |
|||
float | extraTextPosy = 0.f , |
|||
int | width = 512 , |
|||
int | height = 512 | |||
) |
Create and initialise the StelLoadingBar.
splashTex | the file name of a texture to display with the StelLoadingBar. | |
extraTextString | extra text which does not change during the life. life of the StelLoadingBar. This is used for the application name and version when the StelLoadingBar is used as a splash screen. | |
extraTextSize | the size of the font used for the exta text. | |
extraTextPosx | the x position of the extra text. | |
extraTextPosy | the y position of the extra text. | |
width | the width to use for the texture display. | |
height | the height to use for the texture display. |
void StelLoadingBar::draw | ( | ) |
Draw the splashscreen.