SQLite compatibility and related fixes
[kworship.git] / kworship / media / KwMediaPreferencesVisual.cpp
blobd1cbfff7aec39ea604b620fcbf30d9f5cc07ebdf
1 /***************************************************************************
2 * This file is part of KWorship. *
3 * Copyright 2008 James Hogan <james@albanarts.com> *
4 * *
5 * KWorship is free software: you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation, either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * KWorship is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with KWorship. If not, write to the Free Software Foundation, *
17 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
18 ***************************************************************************/
20 /**
21 * @file KwMediaPreferencesVisual.cpp
22 * @brief A media item's visual preferences.
23 * @author James Hogan <james@albanarts.com>
26 #include "KwMediaPreferencesVisual.h"
29 * Constructors + destructors
32 /// Default constructor.
33 KwMediaPreferencesVisual::KwMediaPreferencesVisual()
34 : m_brightness(0.0)
35 , m_contrast(0.0)
36 , m_hue(0.0)
37 , m_saturation(0.0)
38 , m_scaleMode(Stretch)
42 /// Destructor.
43 KwMediaPreferencesVisual::~KwMediaPreferencesVisual()
48 * Accessors
51 /// Get the brightness value.
52 KwMediaPreferencesVisual::Parameter KwMediaPreferencesVisual::getBrightness() const
54 return m_brightness;
57 /// Get the contrast value.
58 KwMediaPreferencesVisual::Parameter KwMediaPreferencesVisual::getContrast() const
60 return m_contrast;
63 /// Get the hue value.
64 KwMediaPreferencesVisual::Parameter KwMediaPreferencesVisual::getHue() const
66 return m_hue;
69 /// Get the saturation value.
70 KwMediaPreferencesVisual::Parameter KwMediaPreferencesVisual::getSaturation() const
72 return m_saturation;
75 /// Get the scale mode.
76 KwMediaPreferencesVisual::ScaleMode KwMediaPreferencesVisual::getScaleMode() const
78 return m_scaleMode;
82 * Mutators
85 /// Set the brightness value.
86 void KwMediaPreferencesVisual::setBrightness(Parameter brightness)
88 m_brightness = brightness;
91 /// Set the contrast value.
92 void KwMediaPreferencesVisual::setContrast(Parameter contrast)
94 m_contrast = contrast;
97 /// Set the hue value.
98 void KwMediaPreferencesVisual::setHue(Parameter hue)
100 m_hue = hue;
103 /// Set the saturation value.
104 void KwMediaPreferencesVisual::setSaturation(Parameter saturation)
106 m_saturation = saturation;
109 /// Set the scale mode.
110 void KwMediaPreferencesVisual::setScaleMode(ScaleMode scaleMode)
112 m_scaleMode = scaleMode;