summaryrefslogtreecommitdiff
path: root/src/gui/windows/mailviewwindow.cpp
blob: d0d42f168a7bdd6efa6f22c996410b63444860da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
/*
 *  The ManaPlus Client
 *  Copyright (C) 2011-2020  The ManaPlus Developers
 *  Copyright (C) 2020-2023  The ManaVerse Developers
 *
 *  This file is part of The ManaPlus Client.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "gui/windows/mailviewwindow.h"

#include "settings.h"

#include "net/mail2handler.h"
#include "net/mailhandler.h"

#include "gui/mailmessage.h"

#include "gui/windows/maileditwindow.h"
#include "gui/windows/mailwindow.h"

#include "gui/widgets/button.h"
#include "gui/widgets/containerplacer.h"
#include "gui/widgets/createwidget.h"
#include "gui/widgets/itemcontainer.h"
#include "gui/widgets/label.h"
#include "gui/widgets/scrollarea.h"

#include "utils/delete2.h"
#include "utils/gettext.h"
#include "utils/stringutils.h"

#include "resources/inventory/inventory.h"
#include "debug.h"

MailViewWindow *mailViewWindow = nullptr;

MailViewWindow::MailViewWindow(MailMessage *const message,
                               const int itemsCount) :
    // TRANSLATORS: mail view window name
    Window(_("View mail"), Modal_false, nullptr, "mailview.xml"),
    ActionListener(),
    mMessage(message),
    mGetAttachButton(new Button(this,
        // TRANSLATORS: mail view attach / items button
        settings.enableNewMailSystem ? _("Get items") : _("Get attach"),
        "attach",
        BUTTON_SKIN,
        this)),
    mGetMoneyButton(nullptr),
    // TRANSLATORS: mail view window button
    mCloseButton(new Button(this, _("Close"), "close", BUTTON_SKIN, this)),
    mPrevButton(new Button(this, "<", "prev", BUTTON_SKIN, this)),
    mNextButton(new Button(this, ">", "next", BUTTON_SKIN, this)),
    // TRANSLATORS: mail view window button
    mReplyButton(new Button(this, _("Reply"), "reply", BUTTON_SKIN, this)),
    // TRANSLATORS: mail view window label
    mTimeLabel(new Label(this, strprintf("%s %s", _("Time:"),
        message->strTime.c_str()))),
    mMoneyLabel(nullptr),
    // TRANSLATORS: mail view window label
    mFromLabel(new Label(this, strprintf("%s %s", _("From:"),
        message->sender.c_str()))),
    // TRANSLATORS: mail view window label
    mSubjectLabel(new Label(this, strprintf("%s %s", _("Subject:"),
        message->title.c_str()))),
    // TRANSLATORS: mail view window label
    mMessageLabel(new Label(this, strprintf("%s %s", _("Message:"),
        message->text.c_str()))),
    mInventory(new Inventory(InventoryType::MailView, itemsCount)),
    mItemContainer(new ItemContainer(this, mInventory, 100000,
        ShowEmptyRows_false, ForceQuantity_false)),
    mItemScrollArea(new ScrollArea(this, mItemContainer,
        fromBool(getOptionBool("showitemsbackground", false), Opaque),
        "mailview_listbackground.xml")),
    mUseMail2(settings.enableNewMailSystem)
{
    setWindowName("MailView");
    setCloseButton(true);
    setResizable(true);
    setSaveVisible(false);
    setStickyButtonLock(true);
    setVisible(Visible_true);

    setDefaultSize(380, 370, ImagePosition::CENTER, 0, 0);
    setMinWidth(200);
    setMinHeight(100);
    center();
    mItemScrollArea->setHeight(100);

    mItemScrollArea->setHorizontalScrollPolicy(ScrollArea::SHOW_NEVER);

    ContainerPlacer placer(nullptr, nullptr);
    placer = getPlacer(0, 0);

    int n = 0;
    placer(0, n++, mTimeLabel, 1, 1);
    placer(0, n++, mFromLabel, 1, 1);
    placer(0, n++, mSubjectLabel, 1, 1);
    if (message->money != 0)
    {
        mMoneyLabel = new Label(this, strprintf("%s %u",
            // TRANSLATORS: mail view window label
            _("Money:"),
            CAST_U32(message->money)));
        placer(0, n++, mMoneyLabel, 1, 1);
    }
    placer(0, n++, mMessageLabel, 1, 1);
    placer(0, n++, mItemScrollArea, 1, 1);

    if (mUseMail2 && message->money != 0)
    {
        mGetMoneyButton = new Button(this,
            // TRANSLATORS: mail view attached money button
            _("Get money"),
            "money",
            BUTTON_SKIN,
            this);
        placer(0, n++, mGetMoneyButton, 1, 1);
    }
    placer(0, n++, mGetAttachButton, 1, 1);
    updateAttachButton();

    ContainerPlacer placer2(nullptr, nullptr);
    placer2 = getPlacer(0, n);

    placer2(0, 0, mPrevButton, 1, 1);
    placer2(1, 0, mNextButton, 1, 1);
    placer2(3, 0, mReplyButton, 1, 1);
    placer2(4, 0, mCloseButton, 1, 1);

    loadWindowState();
    enableVisibleSound(true);
}

MailViewWindow::~MailViewWindow()
{
    if (mUseMail2)
    {
        mMessage = nullptr;
    }
    else
    {
        delete2(mMessage)
        delete2(mGetMoneyButton)
    }
    delete2(mInventory)
    mailViewWindow = nullptr;
}

void MailViewWindow::action(const ActionEvent &event)
{
    const std::string &eventId = event.getId();
    if (eventId == "close")
    {
        scheduleDelete();
    }
    else if (eventId == "attach")
    {
        if (mUseMail2)
        {
            mail2Handler->requestItems(mailWindow->getOpenType(),
                mMessage->id);
        }
        else
        {
            mailHandler->getAttach(CAST_S32(mMessage->id));
        }
    }
    else if (eventId == "money")
    {
        if (mUseMail2)
        {
            mail2Handler->requestMoney(mailWindow->getOpenType(),
                mMessage->id);
        }
    }
    else if (eventId == "next")
    {
        if (mMessage != nullptr)
            mailWindow->viewNext(mMessage->id);
    }
    else if (eventId == "prev")
    {
        if (mMessage != nullptr)
            mailWindow->viewPrev(mMessage->id);
    }
    else if (eventId == "reply")
    {
        if (mMessage == nullptr)
            return;
        if (mailEditWindow != nullptr)
            mailEditWindow->scheduleDelete();
        CREATEWIDGETV0(mailEditWindow, MailEditWindow);
        mailEditWindow->setTo(mMessage->sender);
        mailEditWindow->setSubject("Re:" + mMessage->title);
        mailEditWindow->setMessage(">" + mMessage->text);
        mail2Handler->queueCheckName(MailQueueType::ValidateTo,
            mMessage->sender,
            std::string(),
            std::string(),
            0);
        scheduleDelete();
    }
}

Inventory *MailViewWindow::getInventory() const
{
    return mInventory;
}

void MailViewWindow::updateAttachButton()
{
    if ((mMessage->money != 0 && !mUseMail2) ||
        mInventory->getLastUsedSlot() != -1)
    {
        mGetAttachButton->setVisible(Visible_true);
    }
    else
    {
        mGetAttachButton->setVisible(Visible_false);
    }
}

void MailViewWindow::updateItems()
{
    mItemContainer->updateMatrix();
    updateAttachButton();
}

void MailViewWindow::removeItems(const int64_t mailId)
{
    if (mailId != mMessage->id)
        return;
    mInventory->clear();
    mMessage->type = static_cast<MailMessageType::Type>(
        CAST_S32(mMessage->type) | CAST_S32(MailMessageType::Item));
    mMessage->type = static_cast<MailMessageType::Type>(
        CAST_S32(mMessage->type) ^ CAST_S32(MailMessageType::Item));
    updateAttachButton();
    if (mailWindow != nullptr)
        mailWindow->refreshMailNames();
}

void MailViewWindow::removeMoney(const int64_t mailId)
{
    if (mailId != mMessage->id)
        return;
    mMessage->type = static_cast<MailMessageType::Type>(
        CAST_S32(mMessage->type) | CAST_S32(MailMessageType::Money));
    mMessage->type = static_cast<MailMessageType::Type>(
        CAST_S32(mMessage->type) ^ CAST_S32(MailMessageType::Money));

    mMessage->money = 0;

    if (mMoneyLabel == nullptr)
        return;

    if (mGetMoneyButton != nullptr)
        mGetMoneyButton->setVisible(Visible_false);

    mMoneyLabel->setCaption(strprintf("%s %d",
        // TRANSLATORS: mail view window label
        _("Money:"),
        0));
    if (mailWindow != nullptr)
        mailWindow->refreshMailNames();
}