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

« back to all changes in this revision

Viewing changes to scribus/scribus.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:
376
376
        void slotNewPage(int w, const QString& masterPageName=QString::null, bool mov = true);
377
377
        void duplicateToMasterPage();
378
378
        /** \brief Loescht die aktuelle Seite */
379
 
        void DeletePage();
 
379
        void deletePage();
380
380
        /**
381
381
         * \brief Delete pages
382
382
         * @param from First page to delete
383
383
         * @param to Last page to delete
384
384
         */
385
 
        void DeletePage(int from, int to);
386
 
        void DeletePage2(int pg);
 
385
        void deletePage(int from, int to);
 
386
        void deletePage2(int pg);
387
387
        /** \brief Verschiebt Seiten */
388
 
        void MovePage();
389
 
        void CopyPage();
 
388
        void movePage();
 
389
        void copyPage();
390
390
        void changePageMargins();
391
391
        /*!
392
392
        \author Craig Bradney
545
545
        void enableTextActions(QMap<QString, QPointer<ScrAction> > *actionMap, bool enabled, const QString& fontName=QString::null);
546
546
        //! \brief allow SE to get the SM for edit stlyes
547
547
        StyleManager *styleMgr() const {return styleManager;};
 
548
        //! \brief drawnew, call palettes to update for new page layout
 
549
        void updateGUIAfterPagesChanged();
548
550
 
549
551
signals:
550
552
        void TextStyle(const ParagraphStyle&);