mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-24 07:02:27 +01:00
byuu says: Changelog: - synchronizes lots of nall changes - changes displayed program title from tomoko to higan(*) - browser dialog sort is case-insensitive - .sys folders look at user-selected library path; no longer hard-coded Tried to get rid of the file modes from the Windows browser dialog, but it was being a bitch so I left it on for now. - The storage locations and binary still use tomoko. I'm not really sure what to do here. The idea is there may be more than one "higan" UI in the future, but I don't want people to go around calling the entire program by the UI name. For official Windows releases, I can rename the binaries to "higan-{profile}.exe", and by putting the config files with the binary, they won't ever see the tomoko folder. Linux is of course trickier. Note: Windows users will need to edit hiro/components.hpp and comment out these lines: #define Hiro_Console #define Hiro_IconView #define Hiro_SourceView #define Hiro_TreeView I forgot to do that, and too lazy to upload another WIP.
264 lines
8.3 KiB
C++
264 lines
8.3 KiB
C++
#if defined(Hiro_BrowserDialog)
|
|
|
|
struct BrowserDialogWindow {
|
|
BrowserDialogWindow(BrowserDialog::State& state) : state(state) {}
|
|
auto accept() -> void;
|
|
auto activate() -> void;
|
|
auto change() -> void;
|
|
auto isFolder(const string& name) -> bool;
|
|
auto isMatch(const string& name) -> bool;
|
|
auto run() -> lstring;
|
|
auto setPath(string path) -> void;
|
|
|
|
private:
|
|
Window window;
|
|
VerticalLayout layout{&window};
|
|
HorizontalLayout pathLayout{&layout, Size{~0, 0}, 8};
|
|
LineEdit pathName{&pathLayout, Size{~0, 0}, 0};
|
|
Button pathHome{&pathLayout, Size{0, 0}, 0};
|
|
Button pathRefresh{&pathLayout, Size{0, 0}, 0};
|
|
Button pathUp{&pathLayout, Size{0, 0}, 0};
|
|
ListView view{&layout, Size{~0, ~0}, 8};
|
|
HorizontalLayout controlLayout{&layout, Size{~0, 0}};
|
|
ComboButton filterList{&controlLayout, Size{120, 0}, 8};
|
|
LineEdit fileName{&controlLayout, Size{~0, 0}, 8};
|
|
Button acceptButton{&controlLayout, Size{80, 0}, 8};
|
|
Button cancelButton{&controlLayout, Size{80, 0}, 8};
|
|
|
|
BrowserDialog::State& state;
|
|
vector<lstring> filters;
|
|
};
|
|
|
|
//accept button clicked, or enter pressed on file name line edit
|
|
//also called by list view activate after special case handling
|
|
auto BrowserDialogWindow::accept() -> void {
|
|
auto selectedItems = view.selectedItems();
|
|
|
|
if(state.action == "openFile" && selectedItems) {
|
|
string name = selectedItems.first()->cell(0)->text();
|
|
if(isFolder(name)) return setPath({state.path, name});
|
|
state.response.append(string{state.path, name});
|
|
}
|
|
|
|
if(state.action == "openFiles") {
|
|
for(auto selectedItem : selectedItems) {
|
|
string name = selectedItem->cell(0)->text();
|
|
state.response.append(string{state.path, name, isFolder(name) ? "/" : ""});
|
|
}
|
|
}
|
|
|
|
if(state.action == "openFolder" && selectedItems) {
|
|
string name = selectedItems.first()->cell(0)->text();
|
|
if(!isMatch(name)) return setPath({state.path, name});
|
|
state.response.append(string{state.path, name, "/"});
|
|
}
|
|
|
|
if(state.action == "saveFile") {
|
|
string name = fileName.text();
|
|
if(!name && selectedItems) name = selectedItems.first()->cell(0)->text();
|
|
if(!name || isFolder(name)) return;
|
|
if(file::exists({state.path, name})) {
|
|
if(MessageDialog("File already exists; overwrite it?").question() != "Yes") return;
|
|
}
|
|
state.response.append(string{state.path, name});
|
|
}
|
|
|
|
if(state.action == "selectFolder" && selectedItems) {
|
|
string name = selectedItems.first()->cell(0)->text();
|
|
if(isFolder(name)) state.response.append(string{state.path, name, "/"});
|
|
}
|
|
|
|
if(state.response) window.setModal(false);
|
|
}
|
|
|
|
//list view item double-clicked, or enter pressed on selected list view item
|
|
auto BrowserDialogWindow::activate() -> void {
|
|
auto selectedItem = view.selected();
|
|
|
|
if(state.action == "saveFile" && selectedItem) {
|
|
string name = selectedItem->cell(0)->text();
|
|
if(isFolder(name)) return setPath({state.path, name});
|
|
fileName.setText(name);
|
|
}
|
|
|
|
if(state.action == "selectFolder" && selectedItem) {
|
|
string name = selectedItem->cell(0)->text();
|
|
if(isFolder(name)) return setPath({state.path, name});
|
|
}
|
|
|
|
accept();
|
|
}
|
|
|
|
//list view item changed
|
|
auto BrowserDialogWindow::change() -> void {
|
|
fileName.setText("");
|
|
if(state.action == "saveFile") {
|
|
if(auto selectedItem = view.selected()) {
|
|
string name = selectedItem->cell(0)->text();
|
|
if(!isFolder(name)) fileName.setText(name);
|
|
}
|
|
}
|
|
}
|
|
|
|
auto BrowserDialogWindow::isFolder(const string& name) -> bool {
|
|
return directory::exists({state.path, name});
|
|
}
|
|
|
|
auto BrowserDialogWindow::isMatch(const string& name) -> bool {
|
|
if(auto selectedItem = filterList.selected()) {
|
|
for(auto& filter : filters[selectedItem->offset()]) {
|
|
if(name.match(filter)) return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
auto BrowserDialogWindow::run() -> lstring {
|
|
state.response.reset();
|
|
|
|
layout.setMargin(8);
|
|
pathName.onActivate([&] { setPath(pathName.text()); });
|
|
pathHome.setBordered(false).setIcon(Icon::Go::Home).onActivate([&] { setPath(userpath()); });
|
|
pathRefresh.setBordered(false).setIcon(Icon::Action::Refresh).onActivate([&] { setPath(state.path); });
|
|
pathUp.setBordered(false).setIcon(Icon::Go::Up).onActivate([&] { setPath(state.path.dirname()); });
|
|
view.setBatchable(state.action == "openFiles").onActivate([&] { activate(); }).onChange([&] { change(); });
|
|
filterList.setVisible(state.action != "selectFolder").onChange([&] { setPath(state.path); });
|
|
for(auto& filter : state.filters) {
|
|
auto part = filter.split("|", 1L);
|
|
filterList.append(ComboButtonItem().setText(part.first()));
|
|
}
|
|
fileName.setVisible(state.action == "saveFile").onActivate([&] { accept(); });
|
|
acceptButton.onActivate([&] { accept(); });
|
|
if(state.action == "openFile" || state.action == "openFiles" || state.action == "openFolder") acceptButton.setText("Open");
|
|
if(state.action == "saveFile") acceptButton.setText("Save");
|
|
if(state.action == "selectFolder") acceptButton.setText("Select");
|
|
cancelButton.setText("Cancel").onActivate([&] { window.setModal(false); });
|
|
|
|
if(!state.filters) state.filters.append("All|*");
|
|
for(auto& filter : state.filters) {
|
|
auto part = filter.split("|", 1L);
|
|
filters.append(part.last().split(":"));
|
|
}
|
|
|
|
setPath(state.path);
|
|
|
|
window.onClose([&] { window.setModal(false); });
|
|
window.onSize([&] { view.resizeColumns(); });
|
|
window.setTitle(state.title);
|
|
window.setSize({640, 480});
|
|
window.setCentered(state.parent);
|
|
window.setVisible();
|
|
view.resizeColumns();
|
|
view.setFocused();
|
|
window.setModal();
|
|
window.setVisible(false);
|
|
|
|
return state.response;
|
|
}
|
|
|
|
auto BrowserDialogWindow::setPath(string path) -> void {
|
|
path.transform("\\", "/");
|
|
if(!path.endsWith("/")) path.append("/");
|
|
pathName.setText(state.path = path);
|
|
|
|
view.reset();
|
|
view.append(ListViewColumn().setExpandable());
|
|
view.append(ListViewColumn().setForegroundColor({192, 128, 128}));
|
|
|
|
auto contents = directory::icontents(path);
|
|
bool folderMode = state.action == "openFolder";
|
|
|
|
for(auto content : contents) {
|
|
if(!content.endsWith("/")) continue;
|
|
content.rtrim("/");
|
|
if(folderMode && isMatch(content)) continue;
|
|
|
|
view.append(ListViewItem()
|
|
.append(ListViewCell().setText(content).setIcon(Icon::Emblem::Folder))
|
|
.append(ListViewCell().setText(octal(storage::mode({path, content}) & 0777, 3L)))
|
|
);
|
|
}
|
|
|
|
for(auto content : contents) {
|
|
if(content.endsWith("/") != folderMode) continue; //file mode shows files; folder mode shows folders
|
|
content.rtrim("/");
|
|
if(!isMatch(content)) continue;
|
|
|
|
view.append(ListViewItem()
|
|
.append(ListViewCell().setText(content).setIcon(folderMode ? Icon::Action::Open : Icon::Emblem::File))
|
|
.append(ListViewCell().setText(octal(storage::mode({path, content}) & 0777, 3L)))
|
|
);
|
|
}
|
|
|
|
if(view.items()) view.item(0)->setSelected();
|
|
Application::processEvents();
|
|
view.resizeColumns().setFocused().doChange();
|
|
}
|
|
|
|
//
|
|
|
|
BrowserDialog::BrowserDialog() {
|
|
}
|
|
|
|
auto BrowserDialog::openFile() -> string {
|
|
state.action = "openFile";
|
|
if(!state.title) state.title = "Open File";
|
|
if(auto result = _run()) return result.first();
|
|
return {};
|
|
}
|
|
|
|
auto BrowserDialog::openFiles() -> lstring {
|
|
state.action = "openFiles";
|
|
if(!state.title) state.title = "Open Files";
|
|
if(auto result = _run()) return result;
|
|
return {};
|
|
}
|
|
|
|
auto BrowserDialog::openFolder() -> string {
|
|
state.action = "openFolder";
|
|
if(!state.title) state.title = "Open Folder";
|
|
if(auto result = _run()) return result.first();
|
|
return {};
|
|
}
|
|
|
|
auto BrowserDialog::saveFile() -> string {
|
|
state.action = "saveFile";
|
|
if(!state.title) state.title = "Save File";
|
|
if(auto result = _run()) return result.first();
|
|
return {};
|
|
}
|
|
|
|
auto BrowserDialog::selectFolder() -> string {
|
|
state.action = "selectFolder";
|
|
if(!state.title) state.title = "Select Folder";
|
|
if(auto result = _run()) return result.first();
|
|
return {};
|
|
}
|
|
|
|
auto BrowserDialog::setFilters(const lstring& filters) -> type& {
|
|
state.filters = filters;
|
|
return *this;
|
|
}
|
|
|
|
auto BrowserDialog::setParent(const sWindow& parent) -> type& {
|
|
state.parent = parent;
|
|
return *this;
|
|
}
|
|
|
|
auto BrowserDialog::setPath(const string& path) -> type& {
|
|
state.path = path;
|
|
return *this;
|
|
}
|
|
|
|
auto BrowserDialog::setTitle(const string& title) -> type& {
|
|
state.title = title;
|
|
return *this;
|
|
}
|
|
|
|
auto BrowserDialog::_run() -> lstring {
|
|
if(!state.path) state.path = userpath();
|
|
return BrowserDialogWindow(state).run();
|
|
}
|
|
|
|
#endif
|