2002-11-14 13:46:35 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
2003-03-06 21:46:56 +00:00
|
|
|
* Copyright (C) 2002-2003 The ScummVM project
|
2002-11-14 13:46:35 +00:00
|
|
|
*
|
|
|
|
* 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 (at your option) 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, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* $Header$
|
|
|
|
*/
|
|
|
|
|
2003-08-10 20:57:41 +00:00
|
|
|
#include "stdafx.h"
|
2003-11-02 02:18:16 +00:00
|
|
|
#include "gui/browser.h"
|
|
|
|
#include "gui/newgui.h"
|
|
|
|
#include "gui/ListWidget.h"
|
2002-11-14 13:46:35 +00:00
|
|
|
|
|
|
|
#include "backends/fs/fs.h"
|
|
|
|
|
|
|
|
/* We want to use this as a general directory selector at some point... possible uses
|
|
|
|
* - to select the data dir for a game
|
|
|
|
* - to select the place where save games are stored
|
|
|
|
* - others???
|
|
|
|
*/
|
|
|
|
|
2002-11-14 14:42:39 +00:00
|
|
|
enum {
|
|
|
|
kChooseCmd = 'Chos',
|
|
|
|
kGoUpCmd = 'GoUp'
|
|
|
|
};
|
|
|
|
|
2003-11-02 02:18:16 +00:00
|
|
|
BrowserDialog::BrowserDialog(const char *title)
|
|
|
|
: Dialog(20, 10, 320 -2 * 20, 200 - 2 * 10),
|
2003-03-06 19:52:54 +00:00
|
|
|
_node(0), _nodeContent(0) {
|
2003-04-30 13:57:57 +00:00
|
|
|
|
|
|
|
_fileList = NULL;
|
|
|
|
_currentPath = NULL;
|
|
|
|
_node = NULL;
|
|
|
|
_nodeContent = NULL;
|
|
|
|
_choice = NULL;
|
|
|
|
|
2002-11-14 13:46:35 +00:00
|
|
|
// Headline - TODO: should be customizable during creation time
|
2003-11-08 23:22:16 +00:00
|
|
|
new StaticTextWidget(this, 10, 8, _w - 2 * 10, kLineHeight, title, kTextAlignCenter);
|
2003-03-06 19:52:54 +00:00
|
|
|
|
2002-11-14 14:42:39 +00:00
|
|
|
// Current path - TODO: handle long paths ?
|
2003-03-06 19:52:54 +00:00
|
|
|
_currentPath = new StaticTextWidget(this, 10, 20, _w - 2 * 10, kLineHeight,
|
|
|
|
"DUMMY", kTextAlignLeft);
|
2002-11-14 13:46:35 +00:00
|
|
|
|
|
|
|
// Add file list
|
2003-03-06 19:52:54 +00:00
|
|
|
_fileList = new ListWidget(this, 10, 34, _w - 2 * 10, _h - 34 - 24 - 10);
|
2002-11-14 14:42:39 +00:00
|
|
|
_fileList->setNumberingMode(kListNumberingOff);
|
2003-03-06 19:52:54 +00:00
|
|
|
|
2002-11-14 13:46:35 +00:00
|
|
|
// Buttons
|
2003-03-06 19:52:54 +00:00
|
|
|
addButton(10, _h - 24, "Go up", kGoUpCmd, 0);
|
2003-11-08 23:22:16 +00:00
|
|
|
addButton(_w - 2 * (kButtonWidth + 10), _h - 24, "Cancel", kCloseCmd, 0);
|
|
|
|
addButton(_w - (kButtonWidth+10), _h - 24, "Choose", kChooseCmd, 0);
|
2002-11-14 14:42:39 +00:00
|
|
|
}
|
|
|
|
|
2003-03-06 19:52:54 +00:00
|
|
|
BrowserDialog::~BrowserDialog() {
|
2002-11-19 01:36:47 +00:00
|
|
|
delete _node;
|
|
|
|
delete _nodeContent;
|
|
|
|
delete _choice;
|
|
|
|
}
|
|
|
|
|
2003-03-06 19:52:54 +00:00
|
|
|
void BrowserDialog::open() {
|
2002-11-14 14:42:39 +00:00
|
|
|
// If no node has been set, or the last used one is now invalid,
|
|
|
|
// go back to the root/default dir.
|
|
|
|
if (_node == NULL || !_node->isValid()) {
|
|
|
|
delete _node;
|
|
|
|
_node = FilesystemNode::getRoot();
|
|
|
|
assert(_node != NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Alway refresh file list
|
|
|
|
updateListing();
|
|
|
|
|
2002-11-19 01:36:47 +00:00
|
|
|
// Nothing chosen by default
|
|
|
|
delete _choice;
|
|
|
|
_choice = 0;
|
|
|
|
|
2002-11-14 14:42:39 +00:00
|
|
|
// Call super implementation
|
|
|
|
Dialog::open();
|
|
|
|
}
|
|
|
|
|
2003-03-06 19:52:54 +00:00
|
|
|
void BrowserDialog::close() {
|
2002-11-15 17:54:49 +00:00
|
|
|
delete _nodeContent;
|
|
|
|
_nodeContent = 0;
|
|
|
|
|
|
|
|
// Call super implementation
|
|
|
|
Dialog::close();
|
|
|
|
}
|
|
|
|
|
2003-03-06 19:52:54 +00:00
|
|
|
void BrowserDialog::handleCommand(CommandSender *sender, uint32 cmd, uint32 data) {
|
2002-11-14 14:42:39 +00:00
|
|
|
FilesystemNode *tmp;
|
2003-11-08 23:22:16 +00:00
|
|
|
|
2002-11-14 14:42:39 +00:00
|
|
|
switch (cmd) {
|
2002-11-19 01:36:47 +00:00
|
|
|
case kChooseCmd: {
|
|
|
|
// If nothing is selected in the list widget, choose the current dir.
|
|
|
|
// Else, choose the dir that is selected.
|
|
|
|
int selection = _fileList->getSelected();
|
|
|
|
if (selection >= 0) {
|
|
|
|
_choice = (*_nodeContent)[selection].clone();
|
|
|
|
} else {
|
|
|
|
_choice = _node->clone();
|
|
|
|
}
|
|
|
|
setResult(1);
|
|
|
|
close();
|
|
|
|
}
|
2002-11-14 14:42:39 +00:00
|
|
|
break;
|
|
|
|
case kGoUpCmd:
|
|
|
|
tmp = _node->parent();
|
|
|
|
delete _node;
|
|
|
|
_node = tmp;
|
|
|
|
updateListing();
|
|
|
|
break;
|
|
|
|
case kListItemDoubleClickedCmd:
|
|
|
|
tmp = (*_nodeContent)[data].clone();
|
|
|
|
delete _node;
|
|
|
|
_node = tmp;
|
|
|
|
updateListing();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
Dialog::handleCommand(sender, cmd, data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-03-06 19:52:54 +00:00
|
|
|
void BrowserDialog::updateListing() {
|
2002-11-14 14:42:39 +00:00
|
|
|
assert(_node != NULL);
|
2002-11-14 13:46:35 +00:00
|
|
|
|
2002-11-14 14:42:39 +00:00
|
|
|
// Update the path display
|
|
|
|
_currentPath->setLabel(_node->path());
|
|
|
|
|
|
|
|
// Read in the data from the file system
|
|
|
|
delete _nodeContent;
|
|
|
|
_nodeContent = _node->listDir();
|
|
|
|
assert(_nodeContent != NULL);
|
|
|
|
|
|
|
|
// Populate the ListWidget
|
2003-10-02 17:43:02 +00:00
|
|
|
Common::StringList list;
|
2002-11-14 14:42:39 +00:00
|
|
|
int size = _nodeContent->size();
|
|
|
|
for (int i = 0; i < size; i++) {
|
|
|
|
list.push_back((*_nodeContent)[i].displayName());
|
|
|
|
}
|
|
|
|
_fileList->setList(list);
|
|
|
|
_fileList->scrollTo(0);
|
2003-11-08 23:22:16 +00:00
|
|
|
|
2002-11-14 14:42:39 +00:00
|
|
|
// Finally, redraw
|
|
|
|
draw();
|
2002-11-14 13:46:35 +00:00
|
|
|
}
|
2002-11-14 14:42:39 +00:00
|
|
|
|