~ubuntu-branches/ubuntu/saucy/digikam/saucy

« back to all changes in this revision

Viewing changes to libs/widgets/common/curveswidget.h

  • Committer: Bazaar Package Importer
  • Author(s): Christian Mangold
  • Date: 2010-04-09 21:30:01 UTC
  • mfrom: (1.2.28 upstream)
  • Revision ID: james.westby@ubuntu.com-20100409213001-4bfyibrd359rn7o3
Tags: 2:1.2.0-0ubuntu1
* New upstream release (LP: #560576)
* Remove all patches, fixed upstream
  - Remove quilt build-depend

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 * Date        : 2004-12-01
7
7
 * Description : a widget to draw histogram curves
8
8
 *
9
 
 * Copyright (C) 2004-2009 by Gilles Caulier <caulier dot gilles at gmail dot com>
 
9
 * Copyright (C) 2004-2010 by Gilles Caulier <caulier dot gilles at gmail dot com>
10
10
 *
11
11
 * This program is free software; you can redistribute it
12
12
 * and/or modify it under the terms of the GNU General
115
115
    ImageCurves* curves() const;
116
116
    bool isSixteenBits();
117
117
 
118
 
public:
119
 
 
120
 
    ChannelType     m_channelType;     // Channel type to draw.
121
 
    HistogramScale  m_scaleType;       // Scale to use for drawing.
122
 
 
123
 
    ImageHistogram* m_imageHistogram;
124
 
 
125
118
Q_SIGNALS:
126
119
 
127
120
    void signalMouseMoved(int x, int y);
129
122
    void signalHistogramComputationDone();
130
123
    void signalHistogramComputationFailed();
131
124
 
 
125
public Q_SLOTS:
 
126
 
 
127
    void setChannelType(ChannelType channel);
 
128
    void setScaleType(HistogramScale scale);
 
129
 
132
130
protected Q_SLOTS:
133
131
 
134
132
    void slotProgressTimerDone();