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

« back to all changes in this revision

Viewing changes to krita/image/kis_selection.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:
75
75
     * @param dev the parent paint device. The selection will never be
76
76
     * bigger than the parent paint device.
77
77
     */
78
 
    KisSelection(KisPaintDeviceSP dev, KisDefaultBounds defaultBounds = KisDefaultBounds());
 
78
    KisSelection(KisPaintDeviceSP dev, KisDefaultBoundsSP defaultBounds = new KisDefaultBounds());
79
79
 
80
80
    /**
81
81
     * Create a new KisSelection from the given mask. The selection
82
82
     * will share its pixel data with the mask
83
83
     */
84
 
    KisSelection(KisPaintDeviceSP parent, KisMaskSP mask, KisDefaultBounds defaultBounds = KisDefaultBounds());
 
84
    KisSelection(KisPaintDeviceSP parent, KisMaskSP mask, KisDefaultBoundsSP defaultBounds = new KisDefaultBounds());
85
85
 
86
86
    /**
87
87
     * Create a new KisSelection. This selection will not have a
198
198
    bool isVisible();
199
199
    
200
200
    ///Reimplemented
201
 
    void setDefaultBounds(KisDefaultBounds bounds);
 
201
    void setDefaultBounds(KisDefaultBoundsSP bounds);
 
202
 
 
203
    ///Reimplemented
 
204
    virtual void setX(qint32 x);
 
205
 
 
206
    ///Reimplemented
 
207
    virtual void setY(qint32 y);
202
208
 
203
209
 
204
210
private: