summaryrefslogtreecommitdiff
path: root/src/gui/buddywindow.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2005-05-14 15:22:32 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2005-05-14 15:22:32 +0000
commit0dd8bc994b172f65d96e11e50e51643c24111907 (patch)
tree0eb6f2d51842b9a448a5f684508cb43cb6a4849f /src/gui/buddywindow.h
parentf0af955173deacbb11c6eda1766498cd781aa2e5 (diff)
downloadmana-client-0dd8bc994b172f65d96e11e50e51643c24111907.tar.gz
mana-client-0dd8bc994b172f65d96e11e50e51643c24111907.tar.bz2
mana-client-0dd8bc994b172f65d96e11e50e51643c24111907.tar.xz
mana-client-0dd8bc994b172f65d96e11e50e51643c24111907.zip
Mainly separating core GUI classes from game interface.
Diffstat (limited to 'src/gui/buddywindow.h')
-rw-r--r--src/gui/buddywindow.h21
1 files changed, 13 insertions, 8 deletions
diff --git a/src/gui/buddywindow.h b/src/gui/buddywindow.h
index d3ddbbb3..8fa515d5 100644
--- a/src/gui/buddywindow.h
+++ b/src/gui/buddywindow.h
@@ -29,11 +29,16 @@
#include "textbox.h"
#include "../resources/buddylist.h"
+/**
+ * Window showing buddy list.
+ *
+ * \ingroup Interface
+ */
class BuddyWindow : public Window, public BuddyList,
public gcn::ActionListener
{
public:
- /**
+ /**
* Constructor.
*/
BuddyWindow();
@@ -43,19 +48,19 @@ class BuddyWindow : public Window, public BuddyList,
*/
~BuddyWindow();
- /**
+ /**
* Draws updated list
*/
void draw(gcn::Graphics *graphics);
- /**
- * Performs action.
- */
- void action(const std::string &actionId);
+ /**
+ * Performs action.
+ */
+ void action(const std::string &actionId);
private:
- TextBox *textlist;
- ScrollArea *scrollArea;
+ TextBox *textlist;
+ ScrollArea *scrollArea;
};
#endif /* _TMW_BUDDYWINDOW_H */