mirror of https://github.com/bsnes-emu/bsnes.git
45 lines
945 B
C++
45 lines
945 B
C++
#include "../bsnes.hpp"
|
|
#include "cheat-editor.cpp"
|
|
#include "state-manager.cpp"
|
|
unique_pointer<CheatDatabase> cheatDatabase;
|
|
unique_pointer<CheatWindow> cheatWindow;
|
|
unique_pointer<StateWindow> stateWindow;
|
|
unique_pointer<ToolsWindow> toolsWindow;
|
|
|
|
ToolsWindow::ToolsWindow() {
|
|
toolsWindow = this;
|
|
|
|
layout.setMargin(5);
|
|
|
|
setTitle("Tools");
|
|
setSize({600, 400});
|
|
setAlignment({1.0, 1.0});
|
|
setDismissable();
|
|
|
|
onSize([&] {
|
|
cheatEditor.cheatList.resizeColumns();
|
|
stateManager.stateList.resizeColumns();
|
|
});
|
|
|
|
onClose([&] {
|
|
setVisible(false);
|
|
});
|
|
}
|
|
|
|
auto ToolsWindow::setVisible(bool visible) -> ToolsWindow& {
|
|
Window::setVisible(visible);
|
|
if(!visible) {
|
|
cheatDatabase->setVisible(false);
|
|
cheatWindow->setVisible(false);
|
|
stateWindow->setVisible(false);
|
|
}
|
|
return *this;
|
|
}
|
|
|
|
auto ToolsWindow::show(uint index) -> void {
|
|
panel.item(index)->setSelected();
|
|
setVisible();
|
|
setFocused();
|
|
doSize();
|
|
}
|