/branches/Version13x/Scribus/configure.MacOSX |
---|
38,6 → 38,7 |
echo "Mac OSX Scribus bundle installed!" |
echo "Please check bundle dependencies manually:" |
echo |
otool -hv \$BUNDLE_CONTENTS/bin/scribus |
otool -L \$BUNDLE_CONTENTS/bin/scribus |
EOF |
/branches/Version13x/Scribus/scribus/pageitem_polyline.h |
---|
47,6 → 47,8 |
PageItem_PolyLine(ScribusDoc *pa, double x, double y, double w, double h, double w2, QString fill, QString outline); |
~PageItem_PolyLine() {}; |
virtual PageItem_PolyLine * asPolyLine() { return this; } |
protected: |
virtual void DrawObj_Item(ScPainter *p); |
/branches/Version13x/Scribus/scribus/pageitem_imageframe.h |
---|
46,6 → 46,8 |
public: |
PageItem_ImageFrame(ScribusDoc *pa, double x, double y, double w, double h, double w2, QString fill, QString outline); |
~PageItem_ImageFrame() {}; |
virtual PageItem_ImageFrame * asImageFrame() { return this; } |
protected: |
virtual void DrawObj_Item(ScPainter *p, double sc); |
/branches/Version13x/Scribus/scribus/pageitem_line.h |
---|
47,6 → 47,8 |
PageItem_Line(ScribusDoc *pa, double x, double y, double w, double h, double w2, QString fill, QString outline); |
~PageItem_Line() {}; |
virtual PageItem_Line * asLine() { return this; } |
protected: |
virtual void DrawObj_Item(ScPainter *p); |
/branches/Version13x/Scribus/scribus/pageitem_pathtext.h |
---|
48,6 → 48,8 |
PageItem_PathText(ScribusDoc *pa, double x, double y, double w, double h, double w2, QString fill, QString outline); |
~PageItem_PathText() {}; |
virtual PageItem_PathText * asPathText() { return this; } |
protected: |
virtual void DrawObj_Item(ScPainter *p, double sc); |
/branches/Version13x/Scribus/scribus/pageitem_textframe.h |
---|
46,7 → 46,9 |
public: |
PageItem_TextFrame(ScribusDoc *pa, double x, double y, double w, double h, double w2, QString fill, QString outline); |
~PageItem_TextFrame() {}; |
virtual PageItem_TextFrame * asTextFrame() { return this; } |
protected: |
virtual void DrawObj_Item(ScPainter *p, QRect e, double sc); |
/branches/Version13x/Scribus/scribus/pslib.cpp |
---|
299,8 → 299,9 |
QString PSLib::PSEncode(QString in) |
{ |
static QRegExp badchars("[\\s\\/\\{\\[\\]\\}\\<\\>\\(\\)\\%]"); |
QString tmp = ""; |
tmp = in.simplifyWhiteSpace().replace( QRegExp("[\\s\\/\\{\\[\\]\\}\\<\\>\\(\\)\\%]"), "_" ); |
tmp = in.simplifyWhiteSpace().replace( badchars, "_" ); |
return tmp; |
} |
/branches/Version13x/Scribus/scribus/pageitem_polygon.h |
---|
46,6 → 46,8 |
public: |
PageItem_Polygon(ScribusDoc *pa, double x, double y, double w, double h, double w2, QString fill, QString outline); |
~PageItem_Polygon() {}; |
virtual PageItem_Polygon * asPolygon() { return this; } |
protected: |
virtual void DrawObj_Item(ScPainter *p); |