~kst-plot/kst/debian-xenial

« back to all changes in this revision

Viewing changes to src/libkstapp/arrowitem.h

  • Committer: Steven Benton
  • Date: 2012-11-04 22:45:35 UTC
  • mfrom: (1.2.10)
  • Revision ID: stevebenton@rogers.com-20121104224535-mnnvrp4mhvuz0h2p
* New upstream release.
* Non-maintainer upload.
* Remove patches that have been resolved upstream:
  - desktop-entry-contains-encoding-key.diff
  - desktop-entry-lacks-main-category.diff
    - upstream uses Education category rather than Graphics
  - fix-qreal-vs-double-for-arm.diff
* kst package Replaces and Conflicts with kst2 -- for old PPA users only

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
    ArrowItem(View *parent);
26
26
    virtual ~ArrowItem();
27
27
 
 
28
    const QString defaultsGroupName() const {return ArrowItem::staticDefaultsGroupName();}
 
29
    static QString staticDefaultsGroupName() { return QString("arrow");}
 
30
 
 
31
    // for view item dialogs
 
32
    virtual bool hasStroke() const {return true;}
 
33
    virtual bool hasBrush() const {return false;}
 
34
 
28
35
    virtual void save(QXmlStreamWriter &xml);
29
36
    virtual void paint(QPainter *painter);
30
37
 
42
49
 
43
50
    virtual QPainterPath shape() const;
44
51
 
 
52
    virtual bool customDimensionsTab() {return true;}
 
53
    void applyDialogDefaultsHeads();
 
54
 
45
55
  public Q_SLOTS:
46
56
    virtual void edit();
47
57