summaryrefslogtreecommitdiffstats
path: root/chalk/ui/kis_palette_view.h
blob: 1f8ddb0d3b4915afffa9ced11b2ca859839ce60f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
 *  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 TDEListBox;
class KisPalette;
class KColorCells;
class KisResource;
class KisColor;

/**
 * A scrolling view that lists a single KisPalette
 */
class KisPaletteView : public TQScrollView
{
    Q_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