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

« back to all changes in this revision

Viewing changes to scribus/edit1format.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:
26
26
#include "colorcombo.h"
27
27
#include "alignselect.h"
28
28
#include "shadebutton.h"
 
29
#include "styles/styleset.h"
29
30
 
30
31
class ScribusDoc;
31
32
class StyleSelect;
41
42
        Q_OBJECT
42
43
 
43
44
public:
44
 
        EditStyle( QWidget* parent, struct ParagraphStyle *vor, QValueList<ParagraphStyle> v, bool neu,
 
45
        EditStyle( QWidget* parent, ParagraphStyle *vor, const StyleSet<ParagraphStyle>& v, bool neu,
45
46
                   double au, int dEin, ScribusDoc *doc);
46
47
        ~EditStyle();
47
48
 
87
88
        MSpinBox* DropDist;
88
89
        QPushButton* Cancel;
89
90
        QPushButton* OkButton;
90
 
        struct ParagraphStyle *werte;
91
 
        QValueList<ParagraphStyle> allV;
 
91
        ParagraphStyle *werte;
 
92
        const StyleSet<ParagraphStyle>& allV;
92
93
        QString OldName;
93
94
        bool IsNew;
94
95
        double AutoVal;
121
122
 
122
123
        /*! \brief Sets the preview bg with user chosen color. */
123
124
        void setPreviewBackground();
 
125
        
 
126
        /*! \brief Copies the chosen settings into a ParagraphStyle object */
 
127
        void copyStyleSettings(ParagraphStyle& parstyle);
124
128
 
125
129
protected:
126
130
        /*! \brief sample pixmap generator */