summaryrefslogtreecommitdiffstats
path: root/chalk/ui/kis_histogram_view.h
blob: 146dce8deb31f25030224634370b35a84ed1662d (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
 *  Copyright (c) 2005 Bart Coppens <kde@bartcoppens.be>
 *
 *  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_HISTOGRAM_VIEW_
#define _KIS_HISTOGRAM_VIEW_

#include <tqlabel.h>
#include <tqpixmap.h>
#include <tqvaluevector.h>
#include <tqstringlist.h>

#include "kis_types.h"
#include "kis_histogram_producer.h"
#include "kis_histogram.h"

class KisChannelInfo;

/**
 * This class displays a histogram. It has a list of channels it can select. The easy
 * way is to display channelStrings() to the user, and then use a setActiveChannel
 * with the integer the same as the one the selected string in that stringlist has.
 * If the selected one is a producer, the histogram will automatically display all its
 * channels, and color them if that is possible.
 *
 * You can also set the channels manually, just don't forget that the displayed channels
 * all need to belong to the same producer! If you set them manually, don't forget to set
 * the (non)usage of color as well.
 *
 * You can either set this to use a specific layer, or use a specific histogram. With the latter,
 * some functionality will disappear, like listProducers(). Setting a histogram will discard
 * info on the layer, and setting a layer will discard info on the histogram.
 **/
class KisHistogramView : public TQLabel {
    TQ_OBJECT
  
public:
    KisHistogramView(TQWidget *parent = 0, const char *name = 0, WFlags f = 0);
    virtual ~KisHistogramView();

    void setPaintDevice(KisPaintDeviceSP dev);
    void setHistogram(KisHistogramSP histogram);
    void setView(double from, double size);
    KisHistogramProducerSP currentProducer();
    TQStringList channelStrings();
    /** Lists all producers currently available */
    KisIDList listProducers();
    /** Sets the currently displayed channels to channels of the producer with producerID as ID*/
    void setCurrentChannels(const KisID& producerID, TQValueVector<KisChannelInfo *> channels);
    /** Be careful, producer will be modified */
    void setCurrentChannels(KisHistogramProducerSP producer, TQValueVector<KisChannelInfo *> channels);
    bool hasColor();
    void setColor(bool set);

public slots:
    void setActiveChannel(int channel);
    void setHistogramType(enumHistogramType type);
    void updateHistogram();

signals:
    void rightClicked(const TQPoint& pos);

protected:
    virtual void mousePressEvent(TQMouseEvent * e);

private:
    void setChannels();
    void addProducerChannels(KisHistogramProducerSP producer);

    typedef struct {
        bool isProducer;
        KisHistogramProducerSP producer;
        KisChannelInfo * channel;
    } ComboboxInfo;

    TQValueVector<ComboboxInfo> m_comboInfo;
    TQPixmap m_pix;
    KisHistogramSP m_histogram;
    KisColorSpace* m_cs;
    KisHistogramProducerSP m_currentProducer;
    TQValueVector<KisChannelInfo *> m_channels;
    // Maps the channels in m_channels to a real channel offset in the producer->channels()
    TQValueVector<TQ_INT32> m_channelToOffset;
    TQStringList m_channelStrings;
    bool m_color;
    double m_from;
    double m_width;
};

#endif // _KIS_HISTOGRAM_VIEW_