d4f47ec38974d4b5192a0f9536f923b01ced1a26
[supertux.git] / src / supertux / menu / addon_dialog.cpp
1 //  SuperTux
2 //  Copyright (C) 2014 Ingo Ruhnke <grumbel@gmail.com>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #include "supertux/menu/addon_dialog.hpp"
18
19 #include <sstream>
20
21 #include "gui/menu_manager.hpp"
22 #include "util/gettext.hpp"
23
24 AddonDialog::AddonDialog(AddonManager::InstallStatusPtr status) :
25   m_status(status),
26   m_title()
27 {
28   add_button(_("Abort Download"), [this]{
29       on_abort();
30     });
31
32   update_text();
33 }
34
35 void
36 AddonDialog::update()
37 {
38   AddonManager::current()->update();
39   update_text();
40 }
41
42 void
43 AddonDialog::set_title(const std::string& title)
44 {
45   m_title = title;
46 }
47
48 void
49 AddonDialog::update_text()
50 {
51   std::ostringstream out;
52   out << m_title << "\n";
53
54   if (m_status->total == 0)
55   {
56     out << "---\n---";
57   }
58   else
59   {
60     int percent = 100 * m_status->now / m_status->total;
61     out << m_status->now/1000 << "/" << m_status->total/1000 << " kB\n" << percent << "%";
62   }
63
64   set_text(out.str());
65 }
66
67 void
68 AddonDialog::on_abort()
69 {
70   AddonManager::current()->abort_install();
71 }
72
73 /* EOF */