DriveHQ Start Menu
Cloud Drive Mapping
Folder Sync
Cloud Backup
True Drop Box
FTP/SFTP Hosting
Group Account
DriveHQ Start Menu
Online File Server
My Storage
|
Manage Shares
|
Publishes
|
Drop Boxes
|
Group Account
WebDAV Drive Mapping
Cloud Drive Home
|
WebDAV Guide
|
Drive Mapping Tool
|
Drive Mapping URL
Complete Data Backup
Backup Guide
|
Online Backup Tool
|
Cloud-to-Cloud Backup
FTP, Email & Web Service
FTP Home
|
FTP Hosting FAQ
|
Email Hosting
|
EmailManager
|
Web Hosting
Help & Resources
About
|
Enterprise Service
|
Partnership
|
Comparisons
|
Support
Quick Links
Security and Privacy
Download Software
Service Manual
Use Cases
Group Account
Online Help
Blog
Contact
Cloud Surveillance
Sign Up
Login
Features
Business Features
Online File Server
FTP Hosting
Cloud Drive Mapping
Cloud File Backup
Email Backup & Hosting
Cloud File Sharing
Folder Synchronization
Group Management
True Drop Box
Full-text Search
AD Integration/SSO
Mobile Access
IP Camera & DVR Solution
More...
Personal Features
Personal Cloud Drive
Backup All Devices
Mobile APPs
Personal Web Hosting
Sub-Account (for Kids)
Home/PC/Kids Monitoring
More...
Software
DriveHQ Drive Mapping Tool
DriveHQ FileManager
DriveHQ Online Backup
DriveHQ Mobile Apps
Pricing
Business Plans & Pricing
Personal Plans & Pricing
Price Comparison with Others
Feature Comparison with Others
Install Mobile App
Sign up
Creating account...
Invalid character in username! Only 0-9, a-z, A-Z, _, -, . allowed.
Username is required!
Invalid email address!
E-mail is required!
Password is required!
Password is invalid!
Password and confirmation do not match.
Confirm password is required!
I accept
Membership Agreement
Please read the Membership Agreement and check "I accept"!
Free Quick Sign-up
Sign-up Page
Log in
Signing in...
Username or e-mail address is required!
Password is required!
Keep me logged in
Quick Login
Forgot Password
Up
Upload
Download
Share
Publish
New Folder
New File
Copy
Cut
Delete
Paste
Rate
Upgrade
Rotate
Effect
Edit
Slide
History
/*********************************************************************** filename: CEGUIFalEnums.h created: Mon Jun 13 2005 author: Paul D Turner
*************************************************************************/ /*************************************************************************** * Copyright (C) 2004 - 2006 Paul D Turner & The CEGUI Development Team * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. ***************************************************************************/ #ifndef _CEGUIFalEnums_h_ #define _CEGUIFalEnums_h_ // Start of CEGUI namespace section namespace CEGUI { /*! \brief Enumeration of possible values to indicate what a given dimension represents. */ enum DimensionType { DT_LEFT_EDGE, //!< Dimension represents the left edge of some entity (same as DT_X_POSITION). DT_X_POSITION, //!< Dimension represents the x position of some entity (same as DT_LEFT_EDGE). DT_TOP_EDGE, //!< Dimension represents the top edge of some entity (same as DT_Y_POSITION). DT_Y_POSITION, //!< Dimension represents the y position of some entity (same as DT_TOP_EDGE). DT_RIGHT_EDGE, //!< Dimension represents the right edge of some entity. DT_BOTTOM_EDGE, //!< Dimension represents the bottom edge of some entity. DT_WIDTH, //!< Dimension represents the width of some entity. DT_HEIGHT, //!< Dimension represents the height of some entity. DT_X_OFFSET, //!< Dimension represents the x offset of some entity (usually only applies to an Image entity). DT_Y_OFFSET, //!< Dimension represents the y offset of some entity (usually only applies to an Image entity). DT_INVALID //!< Invalid / uninitialised DimensionType. }; /*! \brief Enumeration of possible values to indicate the vertical formatting to be used for an image component. */ enum VerticalFormatting { VF_TOP_ALIGNED, //!< Top of Image should be aligned with the top of the destination area. VF_CENTRE_ALIGNED, //!< Image should be vertically centred within the destination area. VF_BOTTOM_ALIGNED, //!< Bottom of Image should be aligned with the bottom of the destination area. VF_STRETCHED, //!< Image should be stretched vertically to fill the destination area. VF_TILED //!< Image should be tiled vertically to fill the destination area (bottom-most tile may be clipped). }; /*! \brief Enumeration of possible values to indicate the horizontal formatting to be used for an image component. */ enum HorizontalFormatting { HF_LEFT_ALIGNED, //!< Left of Image should be aligned with the left of the destination area. HF_CENTRE_ALIGNED, //!< Image should be horizontally centred within the destination area. HF_RIGHT_ALIGNED, //!< Right of Image should be aligned with the right of the destination area. HF_STRETCHED, //!< Image should be stretched horizontally to fill the destination area. HF_TILED //!< Image should be tiled horizontally to fill the destination area (right-most tile may be clipped). }; /*! \brief Enumeration of possible values to indicate the vertical formatting to be used for a text component. */ enum VerticalTextFormatting { VTF_TOP_ALIGNED, //!< Top of text should be aligned with the top of the destination area. VTF_CENTRE_ALIGNED, //!< text should be vertically centred within the destination area. VTF_BOTTOM_ALIGNED //!< Bottom of text should be aligned with the bottom of the destination area. }; /*! \brief Enumeration of possible values to indicate the horizontal formatting to be used for a text component. */ enum HorizontalTextFormatting { HTF_LEFT_ALIGNED, //!< Left of text should be aligned with the left of the destination area (single line of text only). HTF_RIGHT_ALIGNED, //!< Right of text should be aligned with the right of the destination area (single line of text only). HTF_CENTRE_ALIGNED, //!< text should be horizontally centred within the destination area (single line of text only). HTF_JUSTIFIED, //!< text should be spaced so that it takes the full width of the destination area (single line of text only). HTF_WORDWRAP_LEFT_ALIGNED, //!< Left of text should be aligned with the left of the destination area (word wrapped to multiple lines as needed). HTF_WORDWRAP_RIGHT_ALIGNED, //!< Right of text should be aligned with the right of the destination area (word wrapped to multiple lines as needed). HTF_WORDWRAP_CENTRE_ALIGNED, //!< text should be horizontally centred within the destination area (word wrapped to multiple lines as needed). HTF_WORDWRAP_JUSTIFIED //!< text should be spaced so that it takes the full width of the destination area (word wrapped to multiple lines as needed). }; /*! \brief Enumeration of possible values to indicate a particular font metric. */ enum FontMetricType { FMT_LINE_SPACING, //!< Vertical line spacing value for font. FMT_BASELINE, //!< Vertical baseline value for font. FMT_HORZ_EXTENT //!< Horizontal extent of a string. }; /*! \brief Enumeration of values representing mathematical operations on dimensions. */ enum DimensionOperator { DOP_NOOP, //!< Do nothing operator. DOP_ADD, //!< Dims should be added. DOP_SUBTRACT, //!< Dims should be subtracted. DOP_MULTIPLY, //!< Dims should be multiplied. DOP_DIVIDE //!< Dims should be divided. }; /*! \brief Enumeration of values referencing available images forming a frame component. */ enum FrameImageComponent { FIC_BACKGROUND, //!< References image used for the background. FIC_TOP_LEFT_CORNER, //!< References image used for the top-left corner. FIC_TOP_RIGHT_CORNER, //!< References image used for the top-right corner. FIC_BOTTOM_LEFT_CORNER, //!< References image used for the bottom-left corner. FIC_BOTTOM_RIGHT_CORNER, //!< References image used for the bottom-right corner. FIC_LEFT_EDGE, //!< References image used for the left edge. FIC_RIGHT_EDGE, //!< References image used for the right edge. FIC_TOP_EDGE, //!< References image used for the top edge. FIC_BOTTOM_EDGE, //!< References image used for the bottom edge. FIC_FRAME_IMAGE_COUNT //!< Max number of images for a frame. }; } // End of CEGUI namespace section #endif // end of guard _CEGUIFalEnums_h_
CEGUIFalEnums.h
Page URL
File URL
Prev
4/20
Next
Download
( 8 KB )
Note: The DriveHQ service banners will NOT be displayed if the file owner is a paid member.
Comments
Total ratings:
0
Average rating:
Not Rated
Would you like to comment?
Join DriveHQ
for a free account, or
Logon
if you are already a member.