You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.0 KiB
71 lines
2.0 KiB
/*
|
|
* Copyright (c) 2005 Bart Coppens <kde@bartcoppens.be>
|
|
* (c) 2005 Boudewijn Rempt <boud@valdyas.org>
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef __KIS_PALETTE_VIEW_H__
|
|
#define __KIS_PALETTE_VIEW_H__
|
|
|
|
#include <tqscrollview.h>
|
|
#include "kis_palette.h"
|
|
|
|
class KListBox;
|
|
class KisPalette;
|
|
class KColorCells;
|
|
class KisResource;
|
|
class KisColor;
|
|
|
|
/**
|
|
* A scrolling view that lists a single KisPalette
|
|
*/
|
|
class KisPaletteView : public TQScrollView
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
public:
|
|
KisPaletteView(TQWidget *parent, const char* name = 0, int minWidth=210, int cols = 16);
|
|
virtual ~KisPaletteView();
|
|
|
|
KisPalette* palette() const;
|
|
/// Might return the default constructed entry...
|
|
KisPaletteEntry currentEntry() const { return m_currentEntry; }
|
|
|
|
public slots:
|
|
void setPalette(KisPalette* p);
|
|
|
|
signals:
|
|
void colorSelected(const KisColor &);
|
|
void colorSelected(const TQColor &);
|
|
void colorDoubleClicked(const KisColor &, const TQString &);
|
|
|
|
protected slots:
|
|
void slotColorCellSelected( int );
|
|
void slotColorCellDoubleClicked( int );
|
|
|
|
protected:
|
|
KisPalette* m_currentPalette;
|
|
KColorCells* m_cells;
|
|
KisPaletteEntry m_currentEntry;
|
|
int mMinWidth;
|
|
int mCols;
|
|
|
|
friend class KisPaletteWidget; // Because it calls slotColorCellSelected from a FIXME
|
|
};
|
|
|
|
#endif
|
|
|