1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
/*
* Copyright (c) 1997 - 2001 Hansjrg Malthaner
*
* This file is part of the Simutrans project under the artistic licence.
* (see licence.txt)
*/
#ifndef gui_loadsave_frame_h
#define gui_loadsave_frame_h
#include "savegame_frame.h"
class karte_t;
class loadsave_frame_t : public savegame_frame_t
{
private:
karte_t *welt;
bool do_load;
protected:
/**
* Aktion, die nach Knopfdruck gestartet wird.
* @author Hansjrg Malthaner
*/
virtual void action(const char *filename);
/**
* Aktion, die nach X-Knopfdruck gestartet wird.
* @author V. Meyer
*/
virtual void del_action(const char *filename);
// returns extra file info
virtual const char *get_info(const char *fname);
public:
/**
* Manche Fenster haben einen Hilfetext assoziiert.
* @return den Dateinamen fr die Hilfe, oder NULL
* @author Hj. Malthaner
*/
virtual const char * gib_hilfe_datei() const;
loadsave_frame_t(karte_t *welt, bool do_load);
};
#endif
|