diff options
author | Kostas Nakos | 2006-07-01 08:13:46 +0000 |
---|---|---|
committer | Kostas Nakos | 2006-07-01 08:13:46 +0000 |
commit | 6a8749ace05649fdf69593c76a75c322f34a5bfa (patch) | |
tree | da214254c9ca56ded22af377fe0763ad73dd7bb5 /backends/platform/wince/CEgui/Toolbar.h | |
parent | 294dcea3ef063ee4ec95f3f418af4534445da1c6 (diff) | |
download | scummvm-rg350-6a8749ace05649fdf69593c76a75c322f34a5bfa.tar.gz scummvm-rg350-6a8749ace05649fdf69593c76a75c322f34a5bfa.tar.bz2 scummvm-rg350-6a8749ace05649fdf69593c76a75c322f34a5bfa.zip |
move ce port to its new home
svn-id: r23366
Diffstat (limited to 'backends/platform/wince/CEgui/Toolbar.h')
-rw-r--r-- | backends/platform/wince/CEgui/Toolbar.h | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/backends/platform/wince/CEgui/Toolbar.h b/backends/platform/wince/CEgui/Toolbar.h new file mode 100644 index 0000000000..ae97c1c8d5 --- /dev/null +++ b/backends/platform/wince/CEgui/Toolbar.h @@ -0,0 +1,49 @@ +/* ScummVM - Scumm Interpreter + * Copyright (C) 2001-2006 The ScummVM project + * + * 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. + * + * $URL$ + * $Id$ + * + */ + +#ifndef CEGUI_TOOLBAR +#define CEGUI_TOOLBAR + +#include "common/stdafx.h" +#include "common/scummsys.h" +#include "common/system.h" + +//#include "common/map.h" +#include "common/str.h" + +#include "GUIElement.h" + + + +namespace CEGUI { + + class Toolbar : public GUIElement { + public: + virtual ~Toolbar(); + virtual bool action(int x, int y, bool pushed) = 0; + protected: + Toolbar(); + + }; +} + +#endif |