AUI Framework  develop
Cross-platform base for C++ UI apps
Loading...
Searching...
No Matches
ADesktop Namespace Reference

Detailed Description#

These functions are intended to work only on desktop platforms; on mobile platforms functions filled with stubs.

Classes#

struct  FileExtension
 

Enumerations#

enum class  SystemSound { QUESTION , ASTERISK }
 

Functions#

API_AUI_VIEWS glm::ivec2 getMousePosition ()
 
API_AUI_VIEWS void setMousePos (const glm::ivec2 &pos)
 
API_AUI_VIEWS void playSystemSound (ADesktop::SystemSound s)
 Play system sound asynchronously.
 
API_AUI_VIEWS AFuture< APathbrowseForDir (AWindowBase *parent, const APath &startingLocation={})
 Opens native browse for directory dialog.
 
API_AUI_VIEWS AFuture< APathbrowseForFile (AWindowBase *parent, const APath &startingLocation={}, const AVector< FileExtension > &extensions={ {"All", "*"} })
 Opens native browse for file dialog.
 
API_AUI_VIEWS _< IDrawableiconOfFile (const APath &file)
 

Function Documentation#

◆ browseForDir()#

API_AUI_VIEWS AFuture< APath > ADesktop::browseForDir ( AWindowBase * parent,
const APath & startingLocation = {} )
Parameters
parentparent window which is put in the AWindowBase::blockUserInput state while the dialog is active. Can be nullptr.
startingLocationpath where the file browser dialog opened initially. Can be empty.
Returns
AFuture returning selected path. If user cancelled the operation, the returned path is empty.
Note
The future is returned instead of the regular path due to platform limitations on Windows. Never try to call blocking getter since it would cause deadlock. Use AFuture::onSuccess callback instead.
Examples
examples/ui/views/src/ExampleWindow.cpp.

◆ browseForFile()#

API_AUI_VIEWS AFuture< APath > ADesktop::browseForFile ( AWindowBase * parent,
const APath & startingLocation = {},
const AVector< FileExtension > & extensions = { {"All", "*"} } )
Parameters
parentparent window which is put in the AWindowBase::blockUserInput state while the dialog is active. Can be nullptr.
startingLocationpath where the file browser dialog opened initially. Can be empty.
extensionsextensions.
Returns
AFuture returning selected path. If user cancelled the operation, the returned path is empty.
Note
The future is returned instead of the regular path due to platform limitations on Windows. Never try to call blocking getter since it would cause deadlock. Use AFuture::onSuccess callback instead.
Examples
examples/ui/views/src/ExampleWindow.cpp.