AUI Framework  master
Cross-platform base for C++ UI apps
Loading...
Searching...
No Matches
aui::views

Graphical User Interface library. More...

Topics#

 Aui Style Sheets
 CSS-like styling system.
 
 Layout Managers
 Layout manager is an object that manages placement and size of views inside containers.
 
 Background effects
 Custom-rendered background effect.
 
 Views
 All ready-to-use views.
 

Detailed Description#

AUI's flagman module which provides modern declarative ways to create graphical user interfaces.

Namespaces#

namespace  ADesktop
 Desktop-specific functions.
 
namespace  AMessageBox
 Displaying native modal message dialogs.
 

Classes#

class  APointerIndex
 Wrapper class that stores either mouse button index or finger index. More...
 
class  ACustomCaptionWindow
 Represents a window with customizable caption bar. More...
 
class  ACustomWindow
 Represents a window without native caption but still draggable by top side. More...
 
class  ADragNDrop
 Utility class for creating and processing drag-n-drop events. More...
 
struct  ARenderingContextOptions
 Defines rendering API priority and options for your application. More...
 
class  AWindow
 Represents a window in the underlying windowing system. More...
 
class  ADBus
 IPC on freedesktop linux. More...
 
class  IRenderer
 Base class for rendering. More...
 
class  AAngleRadians
 Strong type used to store angle in radians. More...
 
class  AMetric
 Stores dimensions in scalable units (dp, pt, etc...). More...
 
class  AMimedData
 Mime-type data associated storage. More...
 
class  AStubWindowManager
 Window manager used to stub the default window manager. More...
 
class  ATouchScroller
 Utility object that helps with touchscreen scroll events. More...
 
struct  declarative::Style
 Extra styles wrapper. More...
 

Enumerations#

enum class  ATextInputActionIcon {
  ATextInputActionIcon::DEFAULT , ATextInputActionIcon::DONE , ATextInputActionIcon::GO , ATextInputActionIcon::SEND ,
  ATextInputActionIcon::SEARCH , ATextInputActionIcon::NEXT
}
 Controls icons representing IME text input action the user is requested to perform. More...
 
enum class  ATextInputType {
  ATextInputType::DEFAULT , ATextInputType::EMAIL , ATextInputType::MULTILINE , ATextInputType::NUMBER ,
  ATextInputType::URL
}
 Controls IME text input type of the text field. More...
 

Enumeration Type Documentation#

◆ ATextInputActionIcon#

enum class ATextInputActionIcon
strong

Each action configures soft keyboard to display the certain kind of operation. The visual appearance of the action button might differ depending on the target platform, it's version, and the keyboard implementation (especially on Android).

It's up to developer to handle the action accordingly.

Enumerator
DEFAULT 

There's no concrete input action. Let the OS decide which action is the most appropriate.

Android-specific
Corresponds to IME_ACTION_UNSPECIFIED. "Done" button or "Return" key will be likely displayed.
iOS-specific
Corresponds to UIReturnKeyDefault. The title displayed in the action button is "Return".
DONE 

The user is done providing input to a group of inputs (in a form). Finalization behaviour should now take place.

Android-specific
Corresponds to IME_ACTION_DONE. The OS displays completion action, e.g., "Done", checkmark, arrow.
iOS-specific
Corresponds to UIReturnKeyDone. The title displayed in the action button is "Done".
GO 

The user has entered some kind of destination, e.g., street address. The "Go" button is intended to take the user to the target of the text they typed.

Android-specific
Corresponds to IME_ACTION_GO. The OS displays a button that represents going to the target location, e.g., "Go", right-facing arrow.
iOS-specific
Corresponds to UIReturnKeyGo. The title displayed in the action button is "Go".
SEND 

The user has composed some kind of message and intends to send it.

Android-specific
Corresponds to IME_ACTION_SEND. The OS displays a button that represents sending something, e.g., "Send", paper plane.
iOS-specific
Corresponds to UIReturnKeySend. The title displayed in the action button is "Send".
SEARCH 

Execute a search query, i.e., taking the user to the results of searching for the data they provided.

Android-specific
Corresponds to IME_ACTION_SEARCH. The OS displays a button that represents seacrhing action, e.g., "Search", magnifying glass.
iOS-specific
Corresponds to UIReturnKeySearch. The title displayed in the action button is "Search".
NEXT 

The user has done working with the current input source ands wants to move to the next one.

Android-specific
Corresponds to IME_ACTION_NEXT. The OS displays a button that represents moving forward, e.g., "Next", right-facing arrow.
iOS-specific
Corresponds to UIReturnKeyNext. The title displayed in the action button is "Next".

◆ ATextInputType#

enum class ATextInputType
strong

The type of information for which to optimize the text input control.

On Android, behavior may vary across device and keyboard provider.

Enumerator
DEFAULT 

Optimize for textual information.

EMAIL 

Optimize for email addresses.

MULTILINE 

Optimize for multiline textual information.

NUMBER 

Optimize for unsigned numerical information without a decimal point.

URL 

Optimize for URLs.