]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/gui/filelist.h
Initial changeset to experimental branch
[virtualjaguar] / src / gui / filelist.h
diff --git a/src/gui/filelist.h b/src/gui/filelist.h
deleted file mode 100644 (file)
index 943cbd7..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-//
-// FileList class
-//
-// by James L. Hammons
-//
-
-#ifndef __FILELIST_H__
-#define __FILELIST_H__
-
-#include "window.h"
-#include "listbox.h"
-
-class FileList: public Window
-{
-       public:
-               FileList(uint32 x = 0, uint32 y = 0, uint32 w = 0, uint32 h = 0);
-               virtual ~FileList() {}
-               virtual void HandleKey(SDLKey key);
-               virtual void HandleMouseMove(uint32 x, uint32 y);
-               virtual void HandleMouseButton(uint32 x, uint32 y, bool mouseDown);
-               virtual void Draw(uint32 offsetX = 0, uint32 offsetY = 0);
-               virtual void Notify(Element * e);
-
-       protected:
-               ListBox * files;
-               Button * load;
-};
-
-#endif // __FILELIST_H__