diff options
author | Paul Gilbert | 2014-03-05 07:27:39 -0500 |
---|---|---|
committer | Paul Gilbert | 2014-03-05 07:27:39 -0500 |
commit | 23ebeec600f8210601dd45fc42c21a596fa6d127 (patch) | |
tree | d5c28780ace8f5e74e393dc4dfa87bc0300a898a /engines/mads/interface.h | |
parent | 568fc31b3090a70aa922479991540d4f5c2e918c (diff) | |
download | scummvm-rg350-23ebeec600f8210601dd45fc42c21a596fa6d127.tar.gz scummvm-rg350-23ebeec600f8210601dd45fc42c21a596fa6d127.tar.bz2 scummvm-rg350-23ebeec600f8210601dd45fc42c21a596fa6d127.zip |
MADS: Further implementation of drawElements
Diffstat (limited to 'engines/mads/interface.h')
-rw-r--r-- | engines/mads/interface.h | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/engines/mads/interface.h b/engines/mads/interface.h new file mode 100644 index 0000000000..3295fa450e --- /dev/null +++ b/engines/mads/interface.h @@ -0,0 +1,60 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +#ifndef MADS_INTERFACE_H +#define MADS_INTERFACE_H + +#include "common/scummsys.h" +#include "common/rect.h" +#include "common/str.h" + +namespace MADS { + +class InterfaceSurface : public MSurface { +private: + MADSEngine *_vm; +public: + ScrCategory _category; + int _screenObjectsCount; + Common::Rect _bounds; + Common::Rect *_rectP; +public: + /** + * Constructor + */ + InterfaceSurface(MADSEngine *vm); + + /** + * Loads an interface from a specified resource + */ + void load(const Common::String &resName); + + void elementHighlighted(); + + void writeText(); + + void setBounds(const Common::Rect &r); +}; + +} // End of namespace MADS + +#endif /* MADS_INTERFACE_H */ |