2010-02-04 13:33:47 +02:00
|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 2006 by Massimiliano Torromeo *
|
|
|
|
* massimiliano.torromeo@gmail.com *
|
|
|
|
* *
|
|
|
|
* 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., *
|
|
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
|
|
***************************************************************************/
|
|
|
|
#ifndef MENUSETTINGINT_H
|
|
|
|
#define MENUSETTINGINT_H
|
|
|
|
|
|
|
|
#include "menusetting.h"
|
2010-09-17 23:34:26 +03:00
|
|
|
#include "inputmanager.h"
|
2010-02-04 13:33:47 +02:00
|
|
|
|
|
|
|
class MenuSettingInt : public MenuSetting {
|
|
|
|
private:
|
|
|
|
int originalValue;
|
|
|
|
int *_value;
|
2010-07-28 03:36:46 +03:00
|
|
|
std::string strvalue;
|
2010-07-26 07:02:37 +03:00
|
|
|
int min, max;
|
2010-02-04 13:33:47 +02:00
|
|
|
|
|
|
|
void inc();
|
|
|
|
void dec();
|
|
|
|
|
|
|
|
public:
|
2010-07-28 03:36:46 +03:00
|
|
|
MenuSettingInt(
|
|
|
|
GMenu2X *gmenu2x, const std::string &name,
|
|
|
|
const std::string &description, int *value, int min, int max);
|
|
|
|
virtual ~MenuSettingInt() {}
|
2010-02-04 13:33:47 +02:00
|
|
|
|
2010-09-17 23:34:26 +03:00
|
|
|
virtual void manageInput(bevent_t *event);
|
2010-02-04 13:33:47 +02:00
|
|
|
virtual void adjustInput();
|
2010-05-03 23:21:36 +03:00
|
|
|
virtual void draw(int);
|
2010-02-04 13:33:47 +02:00
|
|
|
virtual bool edited();
|
|
|
|
|
|
|
|
virtual void setValue(int value);
|
|
|
|
int value();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|