Chemical Data Processing Library C++ API - Version 1.1.1
Namespaces | Variables
Alignment.hpp File Reference

Definition of constants in namespace CDPL::Vis::Alignment. More...

Go to the source code of this file.

Namespaces

 CDPL
 The namespace of the Chemical Data Processing Library.
 
 CDPL::Vis
 Contains classes and functions related to data visualization.
 
 CDPL::Vis::Alignment
 Provides flags that are used to specify the 2D alignment of graphical objects within a bounded rectangular area.
 

Variables

const unsigned int CDPL::Vis::Alignment::NONE = 0
 Specifies that an object has no special alignment. More...
 
const unsigned int CDPL::Vis::Alignment::LEFT = 0x1
 Specifies an alignment to the left. More...
 
const unsigned int CDPL::Vis::Alignment::RIGHT = 0x2
 Specifies an alignment to the right. More...
 
const unsigned int CDPL::Vis::Alignment::H_CENTER = LEFT | RIGHT
 Specifies that an object has to be centered horizontally. More...
 
const unsigned int CDPL::Vis::Alignment::H_ALIGNMENT_MASK = H_CENTER
 A bitmask for all horizontal alignment flags. More...
 
const unsigned int CDPL::Vis::Alignment::TOP = 0x4
 Specifies an alignment to the top. More...
 
const unsigned int CDPL::Vis::Alignment::BOTTOM = 0x8
 Specifies an alignment to the bottom. More...
 
const unsigned int CDPL::Vis::Alignment::V_CENTER = TOP | BOTTOM
 Specifies that an object has to be centered vertically. More...
 
const unsigned int CDPL::Vis::Alignment::V_ALIGNMENT_MASK = V_CENTER
 A bitmask for all vertical alignment flags. More...
 
const unsigned int CDPL::Vis::Alignment::CENTER = H_CENTER | V_CENTER
 Specifies that an object has to be centered horizontally and vertically. More...
 

Detailed Description

Definition of constants in namespace CDPL::Vis::Alignment.