LCOV - code coverage report
Current view: top level - libreoffice/solver/unxlngi6.pro/inc/svtools - colorcfg.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 1 5 20.0 %
Date: 2012-12-17 Functions: 1 4 25.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : #ifndef INCLUDED_SVTOOLS_COLORCFG_HXX
      20             : #define INCLUDED_SVTOOLS_COLORCFG_HXX
      21             : 
      22             : #include "svtools/svtdllapi.h"
      23             : #include <rtl/ustring.hxx>
      24             : #include <tools/color.hxx>
      25             : #include <com/sun/star/uno/Sequence.h>
      26             : #include <svl/brdcst.hxx>
      27             : #include <svl/lstner.hxx>
      28             : #include <unotools/options.hxx>
      29             : 
      30             : //-----------------------------------------------------------------------------
      31             : namespace svtools{
      32             : enum ColorConfigEntry
      33             : {
      34             :     DOCCOLOR            ,
      35             :     DOCBOUNDARIES       ,
      36             :     APPBACKGROUND       ,
      37             :     OBJECTBOUNDARIES    ,
      38             :     TABLEBOUNDARIES     ,
      39             :     FONTCOLOR           ,
      40             :     LINKS               ,
      41             :     LINKSVISITED        ,
      42             :     SPELL         ,
      43             :     SMARTTAGS     ,
      44             :     SHADOWCOLOR         ,
      45             :     WRITERTEXTGRID      ,
      46             :     WRITERFIELDSHADINGS ,
      47             :     WRITERIDXSHADINGS         ,
      48             :     WRITERDIRECTCURSOR        ,
      49             :     WRITERSCRIPTINDICATOR,
      50             :     WRITERSECTIONBOUNDARIES,
      51             :     WRITERHEADERFOOTERMARK,
      52             :     WRITERPAGEBREAKS,
      53             :     HTMLSGML            ,
      54             :     HTMLCOMMENT         ,
      55             :     HTMLKEYWORD         ,
      56             :     HTMLUNKNOWN         ,
      57             :     CALCGRID            ,
      58             :     CALCPAGEBREAK       ,
      59             :     CALCPAGEBREAKMANUAL,
      60             :     CALCPAGEBREAKAUTOMATIC,
      61             :     CALCDETECTIVE       ,
      62             :     CALCDETECTIVEERROR       ,
      63             :     CALCREFERENCE       ,
      64             :     CALCNOTESBACKGROUND     ,
      65             :     DRAWGRID            ,
      66             :     BASICIDENTIFIER,
      67             :     BASICCOMMENT   ,
      68             :     BASICNUMBER    ,
      69             :     BASICSTRING    ,
      70             :     BASICOPERATOR  ,
      71             :     BASICKEYWORD   ,
      72             :     BASICERROR   ,
      73             :     SQLIDENTIFIER,
      74             :     SQLNUMBER,
      75             :     SQLSTRING,
      76             :     SQLOPERATOR,
      77             :     SQLKEYWORD,
      78             :     SQLPARAMETER,
      79             :     SQLCOMMENT,
      80             :     ColorConfigEntryCount
      81             : };
      82             : 
      83             : class ColorConfig_Impl;
      84             : struct ColorConfigValue
      85             : {
      86             : 
      87             :     sal_Bool    bIsVisible; //validity depends on the element type
      88             :     sal_Int32   nColor;
      89        2760 :     ColorConfigValue() : bIsVisible(sal_False), nColor(0) {}
      90           0 :     sal_Bool operator !=(const ColorConfigValue& rCmp) const
      91           0 :         { return nColor != rCmp.nColor || bIsVisible != rCmp.bIsVisible;}
      92             : };
      93             : 
      94             : class SVT_DLLPUBLIC ColorConfig:
      95             :     public utl::detail::Options
      96             : {
      97             :     friend class ColorConfig_Impl;
      98             : private:
      99             :     static ColorConfig_Impl* m_pImpl;
     100             : public:
     101             :     ColorConfig();
     102             :     virtual ~ColorConfig();
     103             : 
     104             :     // get the configured value - if bSmart is set the default color setting is provided
     105             :     // instead of the automatic color
     106             :     ColorConfigValue        GetColorValue(ColorConfigEntry eEntry, sal_Bool bSmart = sal_True)const;
     107             :     static Color            GetDefaultColor(ColorConfigEntry eEntry);
     108             : };
     109             : 
     110             : class SVT_DLLPUBLIC EditableColorConfig
     111             : {
     112             :     ColorConfig_Impl*   m_pImpl;
     113             :     sal_Bool            m_bModified;
     114             : public:
     115             :     EditableColorConfig();
     116             :     ~EditableColorConfig();
     117             : 
     118             :     ::com::sun::star::uno::Sequence< ::rtl::OUString >  GetSchemeNames() const;
     119             :     void                                                DeleteScheme(const ::rtl::OUString& rScheme );
     120             :     void                                                AddScheme(const ::rtl::OUString& rScheme );
     121             :     sal_Bool                                            LoadScheme(const ::rtl::OUString& rScheme );
     122             :     const ::rtl::OUString&                              GetCurrentSchemeName()const;
     123             :     void                        SetCurrentSchemeName(const ::rtl::OUString& rScheme);
     124             : 
     125             :     const ColorConfigValue&     GetColorValue(ColorConfigEntry eEntry)const;
     126             :     void                        SetColorValue(ColorConfigEntry eEntry, const ColorConfigValue& rValue);
     127             :     void                        SetModified();
     128           0 :     void                        ClearModified(){m_bModified = sal_False;}
     129           0 :     sal_Bool                    IsModified()const{return m_bModified;}
     130             :     void                        Commit();
     131             : 
     132             :     void                        DisableBroadcast();
     133             :     void                        EnableBroadcast();
     134             : };
     135             : }//namespace svtools
     136             : #endif
     137             : 
     138             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10