~ubuntu-branches/ubuntu/oneiric/koffice/oneiric-updates

« back to all changes in this revision

Viewing changes to krita/plugins/paintops/hatching/kis_hatching_paintop_settings_widget.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) 2008 Lukas Tvrdy <lukast.dev@gmail.com>
 
3
 *  Copyright (c) 2010 José Luis Vergara <pentalis@gmail.com>
 
4
 *
 
5
 *  This program is free software; you can redistribute it and/or modify
 
6
 *  it under the terms of the GNU General Public License as published by
 
7
 *  the Free Software Foundation; either version 2 of the License, or
 
8
 *  (at your option) any later version.
 
9
 *
 
10
 *  This program is distributed in the hope that it will be useful,
 
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 *  GNU General Public License for more details.
 
14
 *
 
15
 *  You should have received a copy of the GNU General Public License
 
16
 *  along with this program; if not, write to the Free Software
 
17
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
18
 */
 
19
 
 
20
#ifndef KIS_HATCHING_PAINTOP_SETTINGS_WIDGET_H_
 
21
#define KIS_HATCHING_PAINTOP_SETTINGS_WIDGET_H_
 
22
 
 
23
#include <kis_paintop_options_widget.h>
 
24
#include <kis_brush_based_paintop_options_widget.h>
 
25
 
 
26
#include "ui_wdghatchingoptions.h"
 
27
#include "ui_wdghatchingpreferences.h"
 
28
 
 
29
class KisPaintActionTypeOption;
 
30
class KisHatchingOptions;
 
31
class KisHatchingPreferences;
 
32
class KisPressureOpacityOption;
 
33
class KisHatchingPressureCrosshatchingOption;
 
34
class KisHatchingPressureSeparationOption;
 
35
class KisHatchingPressureThicknessOption;
 
36
 
 
37
class KisHatchingPaintOpSettingsWidget : public KisBrushBasedPaintopOptionWidget
 
38
{
 
39
    Q_OBJECT
 
40
 
 
41
public:
 
42
    KisHatchingPaintOpSettingsWidget(QWidget* parent = 0);
 
43
    virtual ~KisHatchingPaintOpSettingsWidget();
 
44
 
 
45
    KisPropertiesConfiguration* configuration() const;
 
46
};
 
47
 
 
48
#endif