Colour Manager

From Scribus Wiki
Revision as of 16:24, 25 August 2007 by Ale (talk | contribs) (New page: Category:Scribus_development == The Colour Manager == * The colour manager is defined by <tt>colorm.cpp</tt> * It's called by <tt>scribus.cpp</tt> as follows: <pre>ColorManager* di...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


The Colour Manager

  • The colour manager is defined by colorm.cpp
  • It's called by scribus.cpp as follows:
ColorManager* dia = new ColorManager(this, edc, doc, prefsManager->colorSetName(), prefsManager->appPrefs.CustomColorSets);
  • The constructors parameters are named as:
    • QWidget* parent = this (cannot be used outside of the constructor)
    • ColorList EditColors = doco = edc = (HaveDoc ? doc->PageColors : prefsManager->colorSet())
    • ScribusDoc* m_Doc = doc
    • QString* docColSet = prefsManager->colorSetName()
    • QStringList customColSet = custColSet = prefsManager->appPrefs.CustomColorSets