~ubuntu-branches/ubuntu/maverick/scribus-ng/maverick-backports

« back to all changes in this revision

Viewing changes to scribus/pageitem_pathtext.h

  • Committer: Bazaar Package Importer
  • Author(s): Oleksandr Moskalenko
  • Date: 2007-08-11 17:41:51 UTC
  • mfrom: (0.1.1 upstream) (4.1.2 feisty)
  • Revision ID: james.westby@ubuntu.com-20070811174151-tmkgjvjuc0mtk8ul
Tags: 1.3.4.dfsg+svn20071115-1
* Upstream svn update (Closes: #447480, #448949).
* debian/NEWS: Added a note for users wanting stable Scribus to switch to
  the "scribus" package (Closes: #427638).
* debian/watch: Updated the watch regex to properly track sourceforge
  releases for this branch (Closes: #449700).

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
class ScribusDoc;
44
44
class UndoManager;
45
45
class UndoState;
46
 
class Foi;
47
46
struct CopyPasteBuffer;
48
47
 
49
48
class SCRIBUS_API PageItem_PathText : public PageItem
56
55
        ~PageItem_PathText() {};
57
56
        
58
57
        virtual PageItem_PathText * asPathText() { return this; }
 
58
        virtual void layout();
59
59
 
60
60
protected:
61
 
        virtual void DrawObj_Item(ScPainter *p, double sc);
 
61
        virtual void DrawObj_Item(ScPainter *p, QRect e, double sc);
62
62
 
63
63
};
64
64