1 |
|
|
/* |
2 |
|
|
* The ManaPlus Client |
3 |
|
|
* Copyright (C) 2004-2009 The Mana World Development Team |
4 |
|
|
* Copyright (C) 2009-2010 The Mana Developers |
5 |
|
|
* Copyright (C) 2011-2019 The ManaPlus Developers |
6 |
|
|
* |
7 |
|
|
* This file is part of The ManaPlus Client. |
8 |
|
|
* |
9 |
|
|
* This program is free software; you can redistribute it and/or modify |
10 |
|
|
* it under the terms of the GNU General Public License as published by |
11 |
|
|
* the Free Software Foundation; either version 2 of the License, or |
12 |
|
|
* any later version. |
13 |
|
|
* |
14 |
|
|
* This program is distributed in the hope that it will be useful, |
15 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
16 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
17 |
|
|
* GNU General Public License for more details. |
18 |
|
|
* |
19 |
|
|
* You should have received a copy of the GNU General Public License |
20 |
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
21 |
|
|
*/ |
22 |
|
|
|
23 |
|
|
#ifndef GUI_WINDOWS_SHOPSELLDIALOG_H |
24 |
|
|
#define GUI_WINDOWS_SHOPSELLDIALOG_H |
25 |
|
|
|
26 |
|
|
#ifdef TMWA_SUPPORT |
27 |
|
|
|
28 |
|
|
#include "gui/widgets/selldialog.h" |
29 |
|
|
|
30 |
|
|
/** |
31 |
|
|
* The sell dialog. |
32 |
|
|
* |
33 |
|
|
* \ingroup Interface |
34 |
|
|
*/ |
35 |
|
|
class ShopSellDialog final : public SellDialog |
36 |
|
|
{ |
37 |
|
|
public: |
38 |
|
|
/** |
39 |
|
|
* Constructor. |
40 |
|
|
* |
41 |
|
|
* @see Window::Window |
42 |
|
|
*/ |
43 |
|
|
explicit ShopSellDialog(const std::string &nick); |
44 |
|
|
|
45 |
|
|
A_DELETE_COPY(ShopSellDialog) |
46 |
|
|
|
47 |
|
|
protected: |
48 |
|
|
void sellAction(const ActionEvent &event) override final; |
49 |
|
|
|
50 |
|
|
std::string mNick; |
51 |
|
|
}; |
52 |
|
|
|
53 |
|
|
#endif // TMWA_SUPPORT |
54 |
|
|
#endif // GUI_WINDOWS_SHOPSELLDIALOG_H |