2005-02-27 23:41:19 +00:00
|
|
|
//============================================================================
|
|
|
|
//
|
|
|
|
// SSSS tt lll lll
|
|
|
|
// SS SS tt ll ll
|
|
|
|
// SS tttttt eeee ll ll aaaa
|
|
|
|
// SSSS tt ee ee ll ll aa
|
|
|
|
// SS tt eeeeee ll ll aaaaa -- "An Atari 2600 VCS Emulator"
|
|
|
|
// SS SS tt ee ll ll aa aa
|
|
|
|
// SSSS ttt eeeee llll llll aaaaa
|
|
|
|
//
|
2015-12-29 19:22:46 +00:00
|
|
|
// Copyright (c) 1995-2016 by Bradford W. Mott, Stephen Anthony
|
2010-04-10 21:37:23 +00:00
|
|
|
// and the Stella Team
|
2005-02-27 23:41:19 +00:00
|
|
|
//
|
2010-01-10 03:23:32 +00:00
|
|
|
// See the file "License.txt" for information on usage and redistribution of
|
2005-02-27 23:41:19 +00:00
|
|
|
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
|
|
|
//
|
2009-05-13 13:55:40 +00:00
|
|
|
// $Id$
|
2005-02-27 23:41:19 +00:00
|
|
|
//============================================================================
|
|
|
|
|
|
|
|
#ifndef MENU_HXX
|
|
|
|
#define MENU_HXX
|
|
|
|
|
2005-03-10 22:59:40 +00:00
|
|
|
class OSystem;
|
|
|
|
|
2005-05-04 19:04:47 +00:00
|
|
|
#include "DialogContainer.hxx"
|
2005-03-10 22:59:40 +00:00
|
|
|
|
2005-02-27 23:41:19 +00:00
|
|
|
/**
|
2005-05-04 19:04:47 +00:00
|
|
|
The base dialog for all configuration menus in Stella.
|
2005-02-27 23:41:19 +00:00
|
|
|
|
|
|
|
@author Stephen Anthony
|
2009-05-13 13:55:40 +00:00
|
|
|
@version $Id$
|
2005-02-27 23:41:19 +00:00
|
|
|
*/
|
2005-05-04 19:04:47 +00:00
|
|
|
class Menu : public DialogContainer
|
2005-02-27 23:41:19 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
Create a new menu stack
|
|
|
|
*/
|
2014-10-26 17:45:42 +00:00
|
|
|
Menu(OSystem& osystem);
|
2005-02-27 23:41:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Destructor
|
|
|
|
*/
|
|
|
|
virtual ~Menu();
|
2015-04-26 19:02:42 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
// Following constructors and assignment operators not supported
|
|
|
|
Menu() = delete;
|
|
|
|
Menu(const Menu&) = delete;
|
|
|
|
Menu(Menu&&) = delete;
|
|
|
|
Menu& operator=(const Menu&) = delete;
|
|
|
|
Menu& operator=(Menu&&) = delete;
|
2005-02-27 23:41:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|