The Qtitan namespace contains miscellaneous identifiers used throughout the Qtitan components. More...
#include <Qtitan>
| class | CommonStyle |
| class | MinimizedEvent |
| class | OfficePopupMenu |
| class | OfficePopupWindow |
| class | OfficeStyle |
| class | PopupColorButton |
| class | RibbonBackstageButton |
| class | RibbonBackstagePage |
| class | RibbonBackstageSeparator |
| class | RibbonBackstageView |
| class | RibbonBar |
| class | RibbonGallery |
| class | RibbonGalleryGroup |
| class | RibbonGalleryItem |
| class | RibbonGroup |
| class | RibbonMainWindow |
| class | RibbonPage |
| class | RibbonPageSystemPopup |
| class | RibbonPageSystemPopupListCaption |
| class | RibbonPageSystemRecentFileList |
| class | RibbonQuickAccessBar |
| class | RibbonSeparator |
| class | RibbonSliderPane |
| class | RibbonStatusBar |
| class | RibbonStatusBarSwitchGroup |
| class | RibbonStyle |
| class | RibbonSystemButton |
| class | RibbonSystemPopupBar |
| class | RibbonTitleButton |
| class | RibbonToolTip |
| class | StyleSystemToolButton |
| enum | ContextColor { ContextColorNone, ContextColorGreen, ContextColorBlue, ContextColorRed, ..., ContextColorOrange } |
| enum | PopupAnimation { PopupAnimationNone, PopupAnimationFade, PopupAnimationSlide, PopupAnimationUnfold } |
| enum | PopupLocation { PopupLocationNearTaskBar, PopupLocationBottomRight, PopupLocationCenter } |
| QString | getEnvironmentVariable ( QProcess * process, const QString & key ) |
| QString | getSystemEnvironmentVariable ( const QString & key ) |
| Class & | qtn_p () |
| const Class & | qtn_p () const |
| void | setEnvironmentVariable ( QProcess * process, const QString & key, const QString & value ) |
The Qtitan namespace contains miscellaneous identifiers used throughout the Qtitan components.
CommonStyle is an intermediate class between QWindowsStyle and OfficeStyle, it implements some of the supporting mechanisms. More...
OfficePopupWindow class is a realization of a Microsoft Office popup window. Such window is widely used in products of Microsoft Office for showing messages or groups of messages. Typically, a window appears at the bottom right. Just above the desktop task bar. OfficeStyle and RibbonStyle have a property setPopupDecoration() to set the decoration of this window. With this property you can give a look of Microsoft Messanger (MSN) or it allows to decorate the window depending on the style which installed in QApplication. More...
OfficeStyle class implements the style of Microsoft Office 2007 and Microsoft Office 2010 for Qt. The styles are available for Windows, Linux and MacOSX without restrictions. To change the appearance of your application to the Microsoft Office 2007 style, you must initialize it using this line of code: QApplication::setStyle(new Qtitan::OfficeStyle()); Style OfficeStyle supports 8 themes - Office2007Blue, Office2007Black, Office2007Silver, Office2007Aqua, Windows7Scenic, Office2010Blue, Office2010Black, Office2010Silver. More...
PopupColorButton class implements a button for the color selection. More...
Class RibbonBackstageButton used to display buttons onto backstage page. Buttons can be presented as tabs, ordinary buttons or flat buttons. The button has apropriate style and look-and-feel for the backstageview concept. More...
The class RibbonBackstagePage is used for rendering pages for the backstage view concept. More...
Class RibbonBackstageSeparator used to display separators for both vertical and horizontal forms in RibbonBackstagePage. More...
The class for rendering backstage view window in ribbon concept. Can be top level window or placed on other windows. More...
RibbonBar class represents a component Ribbon UI used in Microsoft Office 2007/2010. Please note, after the ribbon bar has been added to the main window you need to setup the Ribbon's style (or MS-Office Style) to the application. To do that please use the following code: More...
RibbonGallery class represents the gallery control. More...
Class RibbonGalleryGroup is a container for the RibbonGalleryItem. More...
RibbonGalleryItem represents one element of the gallery. More...
RibbonGroup class implements a group of items that is hosted within RibbonPage. More...
RibbonMainWindow class represents the main window of the application used to create the Ribbon UI. More...
RibbonPage class implements the Ribbon UI Page. Used to place objects of type - RibbonGroup. More...
Class RibbonPageSystemRecentFileList Used to display a list of recently used files in the Ribbon UI system menu. More...
RibbonQuickAccessBar class quick access Toolbar, which is located on RibbonBar. Quick access toolbar contains a set of controls that are always available to users regardless of which page is selected. More...
RibbonStatusBar class represents a horizontal bar at the bottom of the main window, adapted to display information about application state and to place UI controls on it. More...
RibbonStyle class inherits from a class OfficeStyle. The class is the style for rendering Ribbon UI specific primitives. More...
RibbonSystemPopupBar is derived from the QMenu class. It is used to implement the system menu RibbonBar. More...
The RibbonToolTip class provides tool tips (balloon help) for any widget. More...
This enum describes the colors for the ribbon context pages.
| Constant | Value | Description |
|---|---|---|
| Qtitan::ContextColorNone | 0 | Color is not used to highlight contextual tab |
| Qtitan::ContextColorGreen | 1 | Contextual tab is highlighted in green color |
| Qtitan::ContextColorBlue | 2 | Contextual tab is highlighted in blue color |
| Qtitan::ContextColorRed | 3 | Contextual tab is highlighted in red color |
| Qtitan::ContextColorYellow | 4 | Contextual tab is highlighted in yellow color |
| Qtitan::ContextColorCyan | 5 | Contextual tab is highlighted in cyan color |
| Qtitan::ContextColorPurple | 6 | Contextual tab is highlighted in purple color |
| Qtitan::ContextColorOrange | 7 | Contextual tab is highlighted in orange color |
This enum describes the style of how window will appearing on the screen.
| Constant | Value | Description |
|---|---|---|
| Qtitan::PopupAnimationNone | 0 | Animation is not using. |
| Qtitan::PopupAnimationFade | 1 | Fade method of animation |
| Qtitan::PopupAnimationSlide | 2 | Slide method of animation |
| Qtitan::PopupAnimationUnfold | 3 | Unfold method of animation |
This enum describes the start position of the OfficePopupWindow.
| Constant | Value | Description |
|---|---|---|
| Qtitan::PopupLocationNearTaskBar | ? | OfficePopupWindow appear at the bottom-right corner of the desktop (above the desktop taskbar). Please note this value is relevant to OS Windows only. |
| Qtitan::PopupLocationBottomRight | 0 | OfficePopupWindow appear in the bottom-right corner of the desktop. |
| Qtitan::PopupLocationCenter | 1 | OfficePopupWindow appear in the center of the desktop. |
Returns environment variable by key from process.
Returns system environment variable by key from current process.
Sets environment variable using key and value for process.