2018-01-24 23:02:45 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* fcolorpalette.h - Define RGB color value for a palette entry *
|
|
|
|
* *
|
|
|
|
* This file is part of the Final Cut widget toolkit *
|
|
|
|
* *
|
|
|
|
* Copyright 2018 Markus Gans *
|
|
|
|
* *
|
|
|
|
* The Final Cut is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU Lesser General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 3 of *
|
|
|
|
* the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* The Final Cut 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 Lesser General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Lesser General Public *
|
|
|
|
* License along with this program. If not, see *
|
|
|
|
* <http://www.gnu.org/licenses/>. *
|
|
|
|
***********************************************************************/
|
|
|
|
|
|
|
|
/* Standalone class
|
|
|
|
* ════════════════
|
|
|
|
*
|
|
|
|
* ▕▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▏
|
|
|
|
* ▕ FColorPalette ▏
|
|
|
|
* ▕▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▏
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FCOLORPALETTE_H
|
|
|
|
#define FCOLORPALETTE_H
|
|
|
|
|
|
|
|
#include "final/fc.h"
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// class FColorPalette
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
#pragma pack(push)
|
|
|
|
#pragma pack(1)
|
|
|
|
|
|
|
|
class FColorPalette
|
|
|
|
{
|
|
|
|
public:
|
2018-09-12 22:51:15 +02:00
|
|
|
// Constructor
|
|
|
|
explicit FColorPalette();
|
|
|
|
|
2018-09-02 03:57:57 +02:00
|
|
|
// Destructor
|
2018-09-12 22:51:15 +02:00
|
|
|
virtual ~FColorPalette();
|
2018-09-02 03:57:57 +02:00
|
|
|
|
2018-01-24 23:02:45 +01:00
|
|
|
// Typedefs
|
|
|
|
typedef void (*funcp)(short, int, int, int);
|
|
|
|
|
2018-08-09 00:04:00 +02:00
|
|
|
// Accessor
|
|
|
|
virtual const char* getClassName() const;
|
|
|
|
|
2018-01-24 23:02:45 +01:00
|
|
|
// Methods
|
|
|
|
static void set8ColorPalette (funcp);
|
|
|
|
static void set16ColorPalette (funcp);
|
|
|
|
static void reset8ColorPalette (funcp);
|
|
|
|
static void reset16ColorPalette (funcp);
|
|
|
|
};
|
|
|
|
#pragma pack(pop)
|
|
|
|
|
2018-08-09 00:04:00 +02:00
|
|
|
// FColorPalette inline functions
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline const char* FColorPalette::getClassName() const
|
|
|
|
{ return "FColorPalette"; }
|
2018-01-24 23:02:45 +01:00
|
|
|
|
|
|
|
#endif // FCOLORPALETTE_H
|