Home | Namespaces | Hierarchy | Alphabetical List | Class list | Files | Namespace Members | Class members | File members | Tutorials

IGUIFileOpenDialog.h

Go to the documentation of this file.
00001 // Copyright (C) 2002-2010 Nikolaus Gebhardt
00002 // This file is part of the "Irrlicht Engine".
00003 // For conditions of distribution and use, see copyright notice in irrlicht.h
00004 
00005 #ifndef __I_GUI_FILE_OPEN_DIALOG_H_INCLUDED__
00006 #define __I_GUI_FILE_OPEN_DIALOG_H_INCLUDED__
00007 
00008 #include "IGUIElement.h"
00009 #include "path.h"
00010 
00011 namespace irr
00012 {
00013 namespace gui
00014 {
00015 
00017         class IGUIFileOpenDialog : public IGUIElement
00018         {
00019         public:
00020 
00022                 IGUIFileOpenDialog(IGUIEnvironment* environment, IGUIElement* parent, s32 id, core::rect<s32> rectangle)
00023                         : IGUIElement(EGUIET_FILE_OPEN_DIALOG, environment, parent, id, rectangle) {}
00024 
00026                 virtual const wchar_t* getFileName() const = 0;
00027 
00029                 virtual const io::path& getDirectoryName() = 0;
00030         };
00031 
00032 
00033 } // end namespace gui
00034 } // end namespace irr
00035 
00036 #endif
00037 

The Irrlicht Engine
The Irrlicht Engine Documentation © 2003-2010 by Nikolaus Gebhardt. Generated on Sun Oct 24 12:41:56 2010 by Doxygen (1.6.2)