~ubuntu-branches/ubuntu/precise/koffice/precise

« back to all changes in this revision

Viewing changes to krita/plugins/extensions/dockers/colorselectorng/kis_color_selector_container.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2010-10-27 17:52:57 UTC
  • mfrom: (0.12.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20101027175257-s04zqqk5bs8ckm9o
Tags: 1:2.2.83-0ubuntu1
* Merge with Debian git remaining changes:
 - Add build-deps on librcps-dev, opengtl-dev, libqtgtl-dev, freetds-dev,
   create-resources, libspnav-dev
 - Remove needless build-dep on libwv2-dev
 - koffice-libs recommends create-resources
 - krita recommends pstoedit
 - Keep our patches
* New upstream release 2.3 beta 3
  - Remove debian/patches fixed by upstream
  - Update install files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  Copyright (c) 2010 Adam Celarek <kdedev at xibo dot at>
 
3
 *
 
4
 *  This program is free software; you can redistribute it and/or modify
 
5
 *  it under the terms of the GNU General Public License as published by
 
6
 *  the Free Software Foundation; either version 2 of the License, or
 
7
 *  (at your option) any later version.
 
8
 *
 
9
 *  This program is distributed in the hope that it will be useful,
 
10
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 *  GNU General Public License for more details.
 
13
 *
 
14
 *  You should have received a copy of the GNU General Public License
 
15
 *  along with this program; if not, write to the Free Software
 
16
 */
 
17
 
 
18
#ifndef KIS_COLOR_SELECTOR_CONTAINER_H
 
19
#define KIS_COLOR_SELECTOR_CONTAINER_H
 
20
 
 
21
#include <QWidget>
 
22
 
 
23
class KisColorSelector;
 
24
class KisMyPaintShadeSelector;
 
25
class KisMinimalShadeSelector;
 
26
class KoColorSpace;
 
27
class QBoxLayout;
 
28
class KisCanvas2;
 
29
class KAction;
 
30
 
 
31
class KisColorSelectorContainer : public QWidget
 
32
{
 
33
Q_OBJECT
 
34
public:
 
35
    explicit KisColorSelectorContainer(QWidget *parent = 0);
 
36
    void setCanvas(KisCanvas2* canvas);
 
37
 
 
38
    enum ShadeSelectorType{MyPaintSelector, MinimalSelector, NoSelector};
 
39
 
 
40
signals:
 
41
    void openSettings();
 
42
    void settingsChanged();
 
43
 
 
44
protected slots:
 
45
    void updateSettings();
 
46
    void reactOnLayerChange();
 
47
 
 
48
protected:
 
49
    void resizeEvent(QResizeEvent *);
 
50
 
 
51
private:
 
52
    KisColorSelector* m_colorSelector;
 
53
    KisMyPaintShadeSelector* m_myPaintShadeSelector;
 
54
    KisMinimalShadeSelector* m_minimalShadeSelector;
 
55
    QWidget* m_shadeSelector;
 
56
 
 
57
    bool m_shadeSelectorHideable;
 
58
    bool m_allowHorizontalLayout;
 
59
 
 
60
    QBoxLayout* m_widgetLayout;
 
61
 
 
62
    KAction* m_colorSelAction;
 
63
    KAction* m_mypaintAction;
 
64
    KAction* m_minimalAction;
 
65
 
 
66
    KisCanvas2* m_canvas;
 
67
};
 
68
 
 
69
#endif // KIS_COLOR_SELECTOR_CONTAINER_H