2002-11-14 13:46:35 +00:00
|
|
|
/* ScummVM - Scumm Interpreter
|
2005-01-01 16:09:25 +00:00
|
|
|
* Copyright (C) 2002-2005 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
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2002-11-14 13:46:35 +00:00
|
|
|
*
|
|
|
|
* $Header$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BROWSER_DIALOG_H
|
|
|
|
#define BROWSER_DIALOG_H
|
|
|
|
|
2004-02-05 00:19:57 +00:00
|
|
|
#include "gui/dialog.h"
|
2002-11-14 13:46:35 +00:00
|
|
|
#include "common/str.h"
|
2004-11-20 21:35:49 +00:00
|
|
|
#include "backends/fs/fs.h"
|
2002-11-14 13:46:35 +00:00
|
|
|
|
2004-02-01 02:03:01 +00:00
|
|
|
#ifdef MACOSX
|
|
|
|
#include <Carbon/Carbon.h>
|
|
|
|
#endif
|
|
|
|
|
2003-11-10 23:40:48 +00:00
|
|
|
namespace GUI {
|
|
|
|
|
|
|
|
class ListWidget;
|
|
|
|
class StaticTextWidget;
|
|
|
|
|
2005-04-16 17:55:09 +00:00
|
|
|
class BrowserDialog : public Dialog {
|
2003-10-02 17:43:02 +00:00
|
|
|
typedef Common::String String;
|
|
|
|
typedef Common::StringList StringList;
|
2002-11-14 13:46:35 +00:00
|
|
|
public:
|
2005-04-16 17:55:09 +00:00
|
|
|
BrowserDialog(const char *title, bool dirBrowser);
|
2002-11-14 13:46:35 +00:00
|
|
|
|
2004-02-01 02:03:01 +00:00
|
|
|
#ifdef MACOSX
|
2005-04-16 17:55:09 +00:00
|
|
|
~BrowserDialog();
|
2004-02-01 02:03:01 +00:00
|
|
|
virtual int runModal();
|
|
|
|
#else
|
2002-11-15 17:54:49 +00:00
|
|
|
virtual void open();
|
2002-11-14 14:42:39 +00:00
|
|
|
virtual void handleCommand(CommandSender *sender, uint32 cmd, uint32 data);
|
2004-02-01 02:03:01 +00:00
|
|
|
#endif
|
2003-03-06 19:52:54 +00:00
|
|
|
|
2005-04-06 15:21:32 +00:00
|
|
|
const FilesystemNode &getResult() { return _choice; }
|
2002-11-14 14:42:39 +00:00
|
|
|
|
2002-11-14 13:46:35 +00:00
|
|
|
protected:
|
2004-02-01 02:03:01 +00:00
|
|
|
#ifdef MACOSX
|
|
|
|
CFStringRef _titleRef;
|
|
|
|
#else
|
2002-11-14 13:46:35 +00:00
|
|
|
ListWidget *_fileList;
|
2005-04-10 14:33:44 +00:00
|
|
|
StaticTextWidget *_currentPath;
|
2004-11-20 21:35:49 +00:00
|
|
|
FilesystemNode _node;
|
|
|
|
FSList _nodeContent;
|
2004-02-01 02:03:01 +00:00
|
|
|
#endif
|
2004-11-20 21:35:49 +00:00
|
|
|
FilesystemNode _choice;
|
2005-04-16 17:55:09 +00:00
|
|
|
bool _isDirBrowser;
|
2003-03-06 19:52:54 +00:00
|
|
|
|
2004-02-01 02:03:01 +00:00
|
|
|
#ifndef MACOSX
|
2002-11-14 14:42:39 +00:00
|
|
|
void updateListing();
|
2004-02-01 02:03:01 +00:00
|
|
|
#endif
|
2002-11-14 13:46:35 +00:00
|
|
|
};
|
|
|
|
|
2003-11-10 23:40:48 +00:00
|
|
|
} // End of namespace GUI
|
|
|
|
|
2002-11-14 13:46:35 +00:00
|
|
|
#endif
|