summaryrefslogtreecommitdiff
path: root/src/gui/widgets/dropdown.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-03-26 10:30:04 +0100
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-03-26 10:30:04 +0100
commit489777645843c7c88d0a84c8f2c7e1a7bdbcf0a9 (patch)
tree7aad9a389ebe2f8756f65906503b91e586fa4230 /src/gui/widgets/dropdown.h
parent74f4c80b84b6f0ca934bb8f2a593ca0cea326325 (diff)
downloadmana-client-489777645843c7c88d0a84c8f2c7e1a7bdbcf0a9.tar.gz
mana-client-489777645843c7c88d0a84c8f2c7e1a7bdbcf0a9.tar.bz2
mana-client-489777645843c7c88d0a84c8f2c7e1a7bdbcf0a9.tar.xz
mana-client-489777645843c7c88d0a84c8f2c7e1a7bdbcf0a9.zip
First batch of include cleanup
Since the relative includes are getting ugly and somewhat inconvenient, we'll switch to includes relative to the project root. We've done this for a while already with tmwserv. Another rule which we've always had but was never written down, is that each source file first includes its own header. This is common practice and ensures each header compiles without needing other stuff to be included first. Somebody using Code::Blocks might want to fix the project file by adding the 'src' directory to the list of include paths.
Diffstat (limited to 'src/gui/widgets/dropdown.h')
-rw-r--r--src/gui/widgets/dropdown.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/gui/widgets/dropdown.h b/src/gui/widgets/dropdown.h
index 1e6dc821..601d55c8 100644
--- a/src/gui/widgets/dropdown.h
+++ b/src/gui/widgets/dropdown.h
@@ -27,15 +27,15 @@
class Image;
class ImageRect;
- /**
- * A drop down box from which you can select different values. It is one of
- * the most complicated Widgets you will find in Guichan. For drawing the
- * DroppedDown box it uses one ScrollArea and one ListBox. It also uses an
- * internal FocusHandler to handle the focus of the internal ScollArea and
- * ListBox. DropDown uses a ListModel to handle the list. To be able to use
- * DropDown you must give DropDown an implemented ListModel which represents
- * your list.
- */
+/**
+ * A drop down box from which you can select different values. It is one of
+ * the most complicated Widgets you will find in Guichan. For drawing the
+ * DroppedDown box it uses one ScrollArea and one ListBox. It also uses an
+ * internal FocusHandler to handle the focus of the internal ScollArea and
+ * ListBox. DropDown uses a ListModel to handle the list. To be able to use
+ * DropDown you must give DropDown an implemented ListModel which represents
+ * your list.
+ */
class DropDown : public gcn::DropDown
{
public:
@@ -57,9 +57,9 @@ class DropDown : public gcn::DropDown
*/
~DropDown();
- void draw(gcn::Graphics* graphics);
+ void draw(gcn::Graphics *graphics);
- void drawFrame(gcn::Graphics* graphics);
+ void drawFrame(gcn::Graphics *graphics);
/**
* Sets the widget to be opaque, that is sets the widget to display its
@@ -67,7 +67,7 @@ class DropDown : public gcn::DropDown
*
* @param opaque True if the widget should be opaque, false otherwise.
*/
- void setOpaque(bool opaque) {mOpaque = opaque;}
+ void setOpaque(bool opaque) { mOpaque = opaque; }
/**
* Checks if the widget is opaque, that is if the widget area displays
@@ -75,7 +75,7 @@ class DropDown : public gcn::DropDown
*
* @return True if the widget is opaque, false otherwise.
*/
- bool isOpaque() const {return mOpaque;}
+ bool isOpaque() const { return mOpaque; }
protected: