aseprite/src/app/ui/data_recovery_view.cpp

213 lines
5.0 KiB
C++
Raw Normal View History

// Aseprite
// Copyright (C) 2001-2015 David Capello
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
// published by the Free Software Foundation.
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "app/ui/data_recovery_view.h"
#include "app/app_menus.h"
#include "app/crash/data_recovery.h"
#include "app/crash/session.h"
#include "app/modules/gui.h"
#include "app/ui/skin/skin_style_property.h"
#include "app/ui/skin/skin_theme.h"
#include "app/ui/workspace.h"
#include "base/bind.h"
#include "ui/alert.h"
#include "ui/button.h"
#include "ui/entry.h"
#include "ui/listitem.h"
#include "ui/message.h"
#include "ui/preferred_size_event.h"
#include "ui/resize_event.h"
#include "ui/system.h"
#include "ui/view.h"
namespace app {
using namespace ui;
using namespace app::skin;
class Item : public ListItem {
public:
Item(crash::Session* session, crash::Session::Backup* backup)
: ListItem(backup ? " > " + backup->description(): session->name())
, m_session(session)
, m_backup(backup)
, m_openButton(backup ? "Open": "Open All")
, m_deleteButton(backup ? "Delete": "Delete All")
{
addChild(&m_openButton);
addChild(&m_deleteButton);
m_openButton.Click.connect(Bind(&Item::onOpen, this));
m_deleteButton.Click.connect(Bind(&Item::onDelete, this));
setup_mini_look(&m_openButton);
setup_mini_look(&m_deleteButton);
}
Signal0<void> Regenerate;
protected:
void onPreferredSize(PreferredSizeEvent& ev) {
gfx::Size sz = m_deleteButton.getPreferredSize();
sz.h += 4*guiscale();
ev.setPreferredSize(sz);
}
void onResize(ResizeEvent& ev) override {
ListItem::onResize(ev);
gfx::Rect rc = ev.getBounds();
gfx::Size sz1 = m_openButton.getPreferredSize();
sz1.w *= 2*guiscale();
gfx::Size sz2 = m_deleteButton.getPreferredSize();
int h = rc.h*3/4;
int sep = 8*guiscale();
m_openButton.setBounds(gfx::Rect(rc.x+rc.w-sz2.w-sz1.w-2*sep, rc.y+rc.h/2-h/2, sz1.w, h));
m_deleteButton.setBounds(gfx::Rect(rc.x+rc.w-sz2.w-sep, rc.y+rc.h/2-h/2, sz2.w, h));
}
void onOpen() {
if (m_backup)
m_session->restoreBackup(m_backup);
else
for (auto backup : m_session->backups())
m_session->restoreBackup(backup);
}
void onDelete() {
Widget* parent = getParent();
if (m_backup) {
// Delete one backup
if (Alert::show(PACKAGE
"<<Do you really want to delete this backup?"
"||&Yes||&No") != 1)
return;
m_session->deleteBackup(m_backup);
Widget* parent = getParent();
parent->removeChild(this);
deferDelete();
}
else {
// Delete the whole session
if (!m_session->isEmpty()) {
if (Alert::show(PACKAGE
"<<Do you want to delete the whole session?"
"<<You will lost all backups related to this session."
"||&Yes||&No") != 1)
return;
}
crash::Session::Backups backups = m_session->backups();
for (auto backup : backups)
m_session->deleteBackup(backup);
m_session->removeFromDisk();
Regenerate();
}
parent->layout();
View::getView(parent)->updateView();
}
private:
crash::Session* m_session;
crash::Session::Backup* m_backup;
ui::Button m_openButton;
ui::Button m_deleteButton;
};
DataRecoveryView::DataRecoveryView(crash::DataRecovery* dataRecovery)
: Box(JI_VERTICAL)
, m_dataRecovery(dataRecovery)
{
SkinTheme* theme = static_cast<SkinTheme*>(getTheme());
setBgColor(theme->colors.workspace());
addChild(&m_view);
m_view.setExpansive(true);
m_view.attachToView(&m_listBox);
fillList();
}
DataRecoveryView::~DataRecoveryView()
{
}
void DataRecoveryView::fillList()
{
WidgetsList children = m_listBox.getChildren();
for (auto child : children) {
m_listBox.removeChild(child);
child->deferDelete();
}
for (auto& session : m_dataRecovery->sessions()) {
if (session->isEmpty())
continue;
Item* item = new Item(session.get(), nullptr);
item->Regenerate.connect(&DataRecoveryView::fillList, this);
m_listBox.addChild(item);
for (auto& backup : session->backups()) {
item = new Item(session.get(), backup);
item->Regenerate.connect(&DataRecoveryView::fillList, this);
m_listBox.addChild(item);
}
}
}
std::string DataRecoveryView::getTabText()
{
return "Data Recovery";
}
TabIcon DataRecoveryView::getTabIcon()
{
return TabIcon::NONE;
}
WorkspaceView* DataRecoveryView::cloneWorkspaceView()
{
return nullptr; // This view cannot be cloned
}
void DataRecoveryView::onWorkspaceViewSelected()
{
}
void DataRecoveryView::onClonedFrom(WorkspaceView* from)
{
ASSERT(false); // Never called
}
bool DataRecoveryView::onCloseView(Workspace* workspace)
{
workspace->removeView(this);
return true;
}
void DataRecoveryView::onTabPopup(Workspace* workspace)
{
Menu* menu = AppMenus::instance()->getTabPopupMenu();
if (!menu)
return;
menu->showPopup(ui::get_mouse_position());
}
} // namespace app