aboutsummaryrefslogtreecommitdiff
path: root/gui/theme.h
diff options
context:
space:
mode:
authorMax Horn2008-10-12 22:04:30 +0000
committerMax Horn2008-10-12 22:04:30 +0000
commit24dea3aff2e635f19695ac680a33bb6738bbad97 (patch)
treebe7f661ba61bac8f559e68f99c0d1e63774121c1 /gui/theme.h
parent1b3952fbab30b8efdae899a8f520402d2215d032 (diff)
downloadscummvm-rg350-24dea3aff2e635f19695ac680a33bb6738bbad97.tar.gz
scummvm-rg350-24dea3aff2e635f19695ac680a33bb6738bbad97.tar.bz2
scummvm-rg350-24dea3aff2e635f19695ac680a33bb6738bbad97.zip
Fixed some more bad inline Doxygen comments (if you omit the '<', Doxygen thinks you are actually documenting the code in the *next* line)
svn-id: r34784
Diffstat (limited to 'gui/theme.h')
-rw-r--r--gui/theme.h46
1 files changed, 23 insertions, 23 deletions
diff --git a/gui/theme.h b/gui/theme.h
index 09455ea590..360193361f 100644
--- a/gui/theme.h
+++ b/gui/theme.h
@@ -56,9 +56,9 @@ public:
//! Defined the align of the text
enum TextAlign {
- kTextAlignLeft, //! Text should be aligned to the left
- kTextAlignCenter, //! Text should be centered
- kTextAlignRight //! Text should be aligned to the right
+ kTextAlignLeft, //!< Text should be aligned to the left
+ kTextAlignCenter, //!< Text should be centered
+ kTextAlignRight //!< Text should be aligned to the right
};
//! Vertical alignment of the text.
@@ -70,12 +70,12 @@ public:
//! Widget background type
enum WidgetBackground {
- kWidgetBackgroundNo, //! No background at all
- kWidgetBackgroundPlain, //! Simple background, this may not include borders
- kWidgetBackgroundBorder, //! Same as kWidgetBackgroundPlain just with a border
- kWidgetBackgroundBorderSmall, //! Same as kWidgetBackgroundPlain just with a small border
- kWidgetBackgroundEditText, //! Background used for edit text fields
- kWidgetBackgroundSlider //! Background used for sliders
+ kWidgetBackgroundNo, //!< No background at all
+ kWidgetBackgroundPlain, //!< Simple background, this may not include borders
+ kWidgetBackgroundBorder, //!< Same as kWidgetBackgroundPlain just with a border
+ kWidgetBackgroundBorderSmall, //!< Same as kWidgetBackgroundPlain just with a small border
+ kWidgetBackgroundEditText, //!< Background used for edit text fields
+ kWidgetBackgroundSlider //!< Background used for sliders
};
//! Dialog background type
@@ -88,9 +88,9 @@ public:
//! State of the widget to be drawn
enum State {
- kStateDisabled, //! Indicates that the widget is disabled, that does NOT include that it is invisible
- kStateEnabled, //! Indicates that the widget is enabled
- kStateHighlight //! Indicates that the widget is highlighted by the user
+ kStateDisabled, //!< Indicates that the widget is disabled, that does NOT include that it is invisible
+ kStateEnabled, //!< Indicates that the widget is enabled
+ kStateHighlight //!< Indicates that the widget is highlighted by the user
};
typedef State WidgetStateInfo;
@@ -105,20 +105,20 @@ public:
//! Font style selector
enum FontStyle {
- kFontStyleBold = 0, //! A bold font. This is also the default font.
- kFontStyleNormal = 1, //! A normal font.
- kFontStyleItalic = 2, //! Italic styled font.
- kFontStyleFixedNormal = 3, //! Fixed size font.
- kFontStyleFixedBold = 4, //! Fixed size bold font.
- kFontStyleFixedItalic = 5, //! Fixed size italic font.
+ kFontStyleBold = 0, //!< A bold font. This is also the default font.
+ kFontStyleNormal = 1, //!< A normal font.
+ kFontStyleItalic = 2, //!< Italic styled font.
+ kFontStyleFixedNormal = 3, //!< Fixed size font.
+ kFontStyleFixedBold = 4, //!< Fixed size bold font.
+ kFontStyleFixedItalic = 5, //!< Fixed size italic font.
kFontStyleMax
};
//! Function used to process areas other than the current dialog
enum ShadingStyle {
- kShadingNone, //! No special post processing
- kShadingDim, //! Dimming unused areas
- kShadingLuminance //! Converting colors to luminance for unused areas
+ kShadingNone, //!< No special post processing
+ kShadingDim, //!< Dimming unused areas
+ kShadingLuminance //!< Converting colors to luminance for unused areas
};
/**
@@ -321,8 +321,8 @@ public:
//! Special image ids for images used in the GUI
enum kThemeImages {
- kImageLogo = 0, //! ScummVM Logo used in the launcher
- kImageLogoSmall //! ScummVM logo used in the GMM
+ kImageLogo = 0, //!< ScummVM Logo used in the launcher
+ kImageLogoSmall //!< ScummVM logo used in the GMM
};
/**