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 MENUSETTINGRGBA_H
|
|
|
|
#define MENUSETTINGRGBA_H
|
|
|
|
|
|
|
|
#include "menusetting.h"
|
2010-07-28 03:36:46 +03:00
|
|
|
#include "surface.h"
|
2010-09-17 23:34:26 +03:00
|
|
|
#include "inputmanager.h"
|
2010-02-04 13:33:47 +02:00
|
|
|
|
2010-07-28 03:36:46 +03:00
|
|
|
class GMenu2X;
|
2010-02-04 13:33:47 +02:00
|
|
|
|
|
|
|
class MenuSettingRGBA : public MenuSetting {
|
|
|
|
private:
|
|
|
|
unsigned short selPart;
|
|
|
|
int y;
|
2010-07-28 03:36:46 +03:00
|
|
|
std::string strR, strG, strB, strA;
|
2010-02-04 13:33:47 +02:00
|
|
|
RGBAColor originalValue;
|
|
|
|
RGBAColor *_value;
|
|
|
|
|
2011-04-14 20:35:50 +03:00
|
|
|
void update_value(int value);
|
2010-02-04 13:33:47 +02:00
|
|
|
void dec();
|
|
|
|
void inc();
|
|
|
|
void leftComponent();
|
|
|
|
void rightComponent();
|
|
|
|
|
|
|
|
public:
|
2010-07-28 03:36:46 +03:00
|
|
|
MenuSettingRGBA(
|
|
|
|
GMenu2X *gmenu2x, const std::string &name,
|
|
|
|
const std::string &description, RGBAColor *value);
|
2010-02-04 13:33:47 +02:00
|
|
|
virtual ~MenuSettingRGBA() {};
|
|
|
|
|
|
|
|
virtual void draw(int y);
|
|
|
|
virtual void handleTS();
|
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();
|
|
|
|
virtual void drawSelected(int y);
|
|
|
|
virtual bool edited();
|
|
|
|
|
|
|
|
void setSelPart(unsigned short value);
|
|
|
|
void setR(unsigned short r);
|
|
|
|
void setG(unsigned short g);
|
|
|
|
void setB(unsigned short b);
|
|
|
|
void setA(unsigned short a);
|
|
|
|
unsigned short getSelPart();
|
|
|
|
RGBAColor value();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|