~ubuntu-branches/ubuntu/wily/scribus/wily-proposed

« back to all changes in this revision

Viewing changes to scribus/checkDocument.h

  • Committer: Package Import Robot
  • Author(s): Oleksandr Moskalenko
  • Date: 2012-02-09 21:50:56 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120209215056-2wrx1ara0jbm7fi5
Tags: 1.4.0.dfsg+r17287-1
* New upstream stable release upload into Debian (Closes: #654703).
* Applied the Ubuntu armel patch.
* Removed non-free color swatches from resources.
* debian/control:
  - Moved icc-profiles from Recommends to Suggests (Closes: #655885).
  - Updated Standards-Version to 3.9.2.
  - Updated extended description per lintian warning.
* debian/rules:
  - Update mailcap (Closes: #630751). A request for mime.types update has
    been sent to the mime-support maintainer.
  - Added build-arch and build-indep targets per lintian warning.
* debian/patches:
  - top_cmakelists.patch - don't copy extra docs and changelogs.
  - scribus_cmakelists.patch - don't copy extra docs and changelogs.
  - scribus_cmakelists.patch - don't install the non-free "doc" dir.
  - profiles_cmakelists.patch - don't install non-free sRGB profile.
* debian/copyright: 
  - Converted to the DEP5 machine readable foramt.
  - Added licenses for free color swatches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
#define CHECKDOCUMENT_H
9
9
 
10
10
#include <QMap>
 
11
#include <QPointer>
11
12
 
12
13
class QEvent;
13
14
class QHBoxLayout;
18
19
class QVBoxLayout;
19
20
 
20
21
#include "scribusapi.h"
 
22
 
 
23
#include "pageitem.h"
 
24
#include "scribusstructs.h"
21
25
#include "scrpalettebase.h"
22
 
#include "scribusstructs.h"
23
26
 
 
27
class Page;
24
28
class ScribusDoc;
25
29
class ScComboBox;
26
30
 
99
103
 
100
104
private:
101
105
        //! \brief Mappping Page Item - item nr.
102
 
        QMap<QTreeWidgetItem*, int> itemMap;
 
106
        QMap<QTreeWidgetItem*, QPointer<PageItem> > itemMap;
103
107
        //! \brief Mappping Page - page nr.
104
 
        QMap<QTreeWidgetItem*, int> pageMap;
 
108
        QMap<QTreeWidgetItem*, Page*> pageMap;
105
109
        //! \brief Mappping Master Page - MP nr.
106
 
        QMap<QTreeWidgetItem*, QString> masterPageMap;
 
110
        QMap<QTreeWidgetItem*, Page*> masterPageMap;
107
111
        //! \brief Mappping MP Item - MP item nr.
108
 
        QMap<QTreeWidgetItem*, int> masterPageItemMap;
 
112
        QMap<QTreeWidgetItem*, QPointer<PageItem> > masterPageItemMap;
109
113
 
110
114
        //! \brief a reference to the current document
111
115
        ScribusDoc* m_Doc;