DOtherSide  0.7.1
C language library for creating bindings for the Qt QML language
Functions
QApplication

Functions related to the QApplication class. More...

Functions

DOS_API void dos_qapplication_create (void)
 Create a QApplication. More...
 
DOS_API void dos_qapplication_exec (void)
 Calls the QApplication::exec() function of the current QGuiApplication. More...
 
DOS_API void dos_qapplication_quit (void)
 Calls the QApplication::quit() function of the current QGuiApplication. More...
 
DOS_API void dos_qapplication_delete (void)
 Free the memory of the current QApplication. More...
 

Detailed Description

Functions related to the QApplication class.

Function Documentation

◆ dos_qapplication_create()

DOS_API void dos_qapplication_create ( void  )

Create a QApplication.

Note
The created QApplication should be freed by calling dos_qapplication_delete()

◆ dos_qapplication_delete()

DOS_API void dos_qapplication_delete ( void  )

Free the memory of the current QApplication.

Note
A QApplication should have been already created through dos_qapplication_create()

◆ dos_qapplication_exec()

DOS_API void dos_qapplication_exec ( void  )

Calls the QApplication::exec() function of the current QGuiApplication.

Note
A QApplication should have been already created through dos_qapplication_create()

◆ dos_qapplication_quit()

DOS_API void dos_qapplication_quit ( void  )

Calls the QApplication::quit() function of the current QGuiApplication.

Note
A QApplication should have been already created through dos_qapplication_create()