Mana
Loading...
Searching...
No Matches
helpwindow.h
Go to the documentation of this file.
1/*
2 * The Mana Client
3 * Copyright (C) 2004-2009 The Mana World Development Team
4 * Copyright (C) 2009-2012 The Mana Developers
5 *
6 * This file is part of The Mana Client.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#pragma once
23
25#include "gui/widgets/window.h"
26
27#include <guichan/actionlistener.hpp>
28
29class BrowserBox;
30class LinkHandler;
31
35class HelpWindow : public Window, public LinkHandler,
36 public gcn::ActionListener
37{
38 public:
39 HelpWindow();
40
44 void action(const gcn::ActionEvent &event) override;
45
49 void handleLink(const std::string &link) override;
50
54 void loadHelp(const std::string &helpFile);
55
56 private:
57 void loadFile(const std::string &file);
58
60 gcn::ScrollArea *mScrollArea;
61};
62
A simple browser box able to handle links and forward events to the parent conteiner.
Definition browserbox.h:74
The help dialog.
Definition helpwindow.h:37
gcn::ScrollArea * mScrollArea
Definition helpwindow.h:60
void loadFile(const std::string &file)
void action(const gcn::ActionEvent &event) override
Called when receiving actions from the widgets.
void handleLink(const std::string &link) override
Handles link action.
void loadHelp(const std::string &helpFile)
Loads help in the dialog.
BrowserBox * mBrowserBox
Definition helpwindow.h:59
A simple interface to windows that need to handle links from BrowserBox widget.
Definition linkhandler.h:31
A window.
Definition window.h:59
HelpWindow * helpWindow
Definition game.cpp:102