LCOV - code coverage report
Current view: top level - libreoffice/solver/unxlngi6.pro/inc/svtools - ctrltool.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 2 8 25.0 %
Date: 2012-12-27 Functions: 1 7 14.3 %
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             : 
      20             : #ifndef _CTRLTOOL_HXX
      21             : #define _CTRLTOOL_HXX
      22             : 
      23             : #include <boost/ptr_container/ptr_vector.hpp>
      24             : 
      25             : #include "svtools/svtdllapi.h"
      26             : #include <rtl/ustring.hxx>
      27             : #include <sal/types.h>
      28             : #include <vcl/metric.hxx>
      29             : 
      30             : class ImplFontListNameInfo;
      31             : class OutputDevice;
      32             : 
      33             : /*************************************************************************
      34             : 
      35             : Beschreibung
      36             : ============
      37             : 
      38             : class FontList
      39             : 
      40             : Diese Klasse verwaltet alle Fonts, die auf einem oder zwei Ausgabegeraeten
      41             : dargestellt werden koennen. Zusaetzlich bietet die Klasse Methoden an, um
      42             : aus Fett und Kursiv den StyleName zu generieren oder aus einem Stylename
      43             : die fehlenden Attribute. Zusaetzlich kann diese Klasse syntetisch nachgebildete
      44             : Fonts verarbeiten. Diese Klasse kann mit verschiedenen Standard-Controls und
      45             : Standard-Menus zusammenarbeiten.
      46             : 
      47             : Querverweise
      48             : 
      49             : class FontNameBox, class FontStyleBox, class FontSizeBox,
      50             : class FontNameMenu, class FontSizeMenu
      51             : 
      52             : --------------------------------------------------------------------------
      53             : 
      54             : FontList::FontList( OutputDevice* pDevice, OutputDevice* pDevice2 = NULL,
      55             :                     sal_Bool bAll = sal_True );
      56             : 
      57             : Konstruktor der Klasse FontList. Vom uebergebenen OutputDevice werden die
      58             : entsprechenden Fonts abgefragt. Das OutputDevice muss solange existieren,
      59             : wie auch die Klasse FontList existiert. Optional kann noch ein 2tes
      60             : Ausgabedevice uebergeben werden, damit man zum Beispiel die Fonts von
      61             : einem Drucker und dem Bildschirm zusammen in einer FontListe verwalten kann
      62             : und somit auch den FontListen und FontMenus die Fonts von beiden OutputDevices
      63             : zu uebergeben. Auch das pDevice2 muss solange existieren, wie die Klasse
      64             : FontList existiert.
      65             : 
      66             : Das OutputDevice, welches als erstes uebergeben wird, sollte das bevorzugte
      67             : sein. Dies sollte im normalfall der Drucker sein. Denn wenn 2 verschiede
      68             : Device-Schriften (eine fuer Drucker und eine fuer den Bildschirm) vorhanden
      69             : sind, wird die vom uebergebenen Device "pDevice" bevorzugt.
      70             : 
      71             : Mit dem dritten Parameter kann man angeben, ob nur skalierbare Schriften
      72             : abgefragt werden sollen oder alle. Wenn sal_True uebergeben wird, werden auch
      73             : Bitmap-Schriften mit abgefragt. Bei sal_False werden Vector-Schriften und
      74             : scalierbare Schriften abgefragt.
      75             : 
      76             : --------------------------------------------------------------------------
      77             : 
      78             : String FontList::GetStyleName( const FontInfo& rInfo ) const;
      79             : 
      80             : Diese Methode gibt den StyleName von einer FontInfo zurueck. Falls kein
      81             : StyleName gesetzt ist, wird aus den gesetzten Attributen ein entsprechender
      82             : Name generiert, der dem Anwender praesentiert werden kann.
      83             : 
      84             : --------------------------------------------------------------------------
      85             : 
      86             : XubString FontList::GetFontMapText( const FontInfo& rInfo ) const;
      87             : 
      88             : Diese Methode gibt einen Matchstring zurueck, der dem Anwender
      89             : anzeigen soll, welche Probleme es mit diesem Font geben kann.
      90             : 
      91             : --------------------------------------------------------------------------
      92             : 
      93             : FontInfo FontList::Get( const String& rName, const String& rStyleName ) const;
      94             : 
      95             : Diese Methode sucht aus dem uebergebenen Namen und dem uebergebenen StyleName
      96             : die entsprechende FontInfo-Struktur raus. Der Stylename kann in dieser
      97             : Methode auch ein syntetischer sein. In diesem Fall werden die entsprechenden
      98             : Werte in der FontInfo-Struktur entsprechend gesetzt. Wenn ein StyleName
      99             : uebergeben wird, kann jedoch eine FontInfo-Struktur ohne Stylename
     100             : zurueckgegeben werden. Um den StyleName dem Anwender zu repraesentieren,
     101             : muss GetStyleName() mit dieser FontInfo-Struktur aufgerufen werden.
     102             : 
     103             : Querverweise
     104             : 
     105             : FontList::GetStyleName()
     106             : 
     107             : --------------------------------------------------------------------------
     108             : 
     109             : FontInfo FontList::Get( const String& rName, FontWeight eWeight,
     110             :                         FontItalic eItalic ) const;
     111             : 
     112             : Diese Methode sucht aus dem uebergebenen Namen und den uebergebenen Styles
     113             : die entsprechende FontInfo-Struktur raus. Diese Methode kann auch eine
     114             : FontInfo-Struktur ohne Stylename zurueckgegeben. Um den StyleName dem
     115             : Anwender zu repraesentieren, muss GetStyleName() mit dieser FontInfo-Struktur
     116             : aufgerufen werden.
     117             : 
     118             : Querverweise
     119             : 
     120             : FontList::GetStyleName()
     121             : 
     122             : --------------------------------------------------------------------------
     123             : 
     124             : const long* FontList::GetSizeAry( const FontInfo& rInfo ) const;
     125             : 
     126             : Diese Methode liefert zum uebergebenen Font die vorhandenen Groessen.
     127             : Falls es sich dabei um einen skalierbaren Font handelt, werden Standard-
     128             : Groessen zurueckgegeben. Das Array enthaelt die Hoehen des Fonts in 10tel
     129             : Point. Der letzte Wert des Array ist 0. Das Array, was zurueckgegeben wird,
     130             : wird von der FontList wieder zerstoert. Nach dem Aufruf der naechsten Methode
     131             : von der FontList, sollte deshalb das Array nicht mehr referenziert werden.
     132             : 
     133             : *************************************************************************/
     134             : 
     135             : // ------------
     136             : // - FontList -
     137             : // ------------
     138             : 
     139             : #define FONTLIST_FONTINFO_NOTFOUND  ((sal_uInt16)0xFFFF)
     140             : 
     141             : #define FONTLIST_FONTNAMETYPE_PRINTER           ((sal_uInt16)0x0001)
     142             : #define FONTLIST_FONTNAMETYPE_SCREEN            ((sal_uInt16)0x0002)
     143             : 
     144             : class SVT_DLLPUBLIC FontList
     145             : {
     146             : private:
     147             :     OUString                maMapBoth;
     148             :     OUString                maMapPrinterOnly;
     149             :     OUString                maMapScreenOnly;
     150             :     OUString                maMapSizeNotAvailable;
     151             :     OUString                maMapStyleNotAvailable;
     152             :     OUString                maMapNotAvailable;
     153             :     OUString                maLight;
     154             :     OUString                maLightItalic;
     155             :     OUString                maNormal;
     156             :     OUString                maNormalItalic;
     157             :     OUString                maBold;
     158             :     OUString                maBoldItalic;
     159             :     OUString                maBlack;
     160             :     OUString                maBlackItalic;
     161             :     long*                   mpSizeAry;
     162             :     OutputDevice*           mpDev;
     163             :     OutputDevice*           mpDev2;
     164             :     boost::ptr_vector<ImplFontListNameInfo> maEntries;
     165             : #ifdef CTRLTOOL_CXX
     166             :     SVT_DLLPRIVATE ImplFontListNameInfo*    ImplFind( const OUString& rSearchName, sal_uLong* pIndex ) const;
     167             :     SVT_DLLPRIVATE ImplFontListNameInfo*    ImplFindByName( const OUString& rStr ) const;
     168             :     SVT_DLLPRIVATE void                 ImplInsertFonts( OutputDevice* pDev, sal_Bool bAll,
     169             :                                              sal_Bool bInsertData );
     170             : #endif
     171             : 
     172             : public:
     173             :                             FontList( OutputDevice* pDevice,
     174             :                                       OutputDevice* pDevice2 = NULL,
     175             :                                       sal_Bool bAll = sal_True );
     176             :                             ~FontList();
     177             : 
     178             :     FontList*               Clone() const;
     179             : 
     180             :     OutputDevice*           GetDevice() const { return mpDev; }
     181             :     OutputDevice*           GetDevice2() const { return mpDev2; }
     182             :     XubString               GetFontMapText( const FontInfo& rInfo ) const;
     183             : 
     184           0 :     const OUString&         GetNormalStr() const { return maNormal; }
     185           0 :     const OUString&         GetItalicStr() const { return maNormalItalic; }
     186           0 :     const OUString&         GetBoldStr() const { return maBold; }
     187           0 :     const OUString&         GetBoldItalicStr() const { return maBoldItalic; }
     188             :     const OUString&         GetStyleName( FontWeight eWeight, FontItalic eItalic ) const;
     189             :     OUString                GetStyleName( const FontInfo& rInfo ) const;
     190             : 
     191             :     FontInfo                Get( const OUString& rName,
     192             :                                  const OUString& rStyleName ) const;
     193             :     FontInfo                Get( const OUString& rName,
     194             :                                  FontWeight eWeight,
     195             :                                  FontItalic eItalic ) const;
     196             : 
     197             :     sal_Bool                IsAvailable( const OUString& rName ) const;
     198         476 :     sal_uInt16              GetFontNameCount() const
     199             :     {
     200         476 :         return (sal_uInt16)maEntries.size();
     201             :     }
     202             :     const FontInfo&         GetFontName( sal_uInt16 nFont ) const;
     203             :     sal_Handle              GetFirstFontInfo( const OUString& rName ) const;
     204             :     sal_Handle              GetNextFontInfo( sal_Handle hFontInfo ) const;
     205             :     const FontInfo&         GetFontInfo( sal_Handle hFontInfo ) const;
     206             : 
     207             :     const long*             GetSizeAry( const FontInfo& rInfo ) const;
     208             :     static const long*      GetStdSizeAry();
     209             : 
     210             : private:
     211             :                             FontList( const FontList& );
     212             :     FontList&               operator =( const FontList& );
     213             : };
     214             : 
     215             : 
     216             : // -----------------
     217             : // - FontSizeNames -
     218             : // -----------------
     219             : 
     220             : class SVT_DLLPUBLIC FontSizeNames
     221             : {
     222             : private:
     223             :     const struct ImplFSNameItem*    mpArray;
     224             :     sal_uLong                   mnElem;
     225             : 
     226             : public:
     227             :                             FontSizeNames( LanguageType eLanguage /* = LANGUAGE_DONTKNOW */ );
     228             : 
     229           0 :     sal_uLong                   Count() const { return mnElem; }
     230           0 :     sal_Bool                    IsEmpty() const { return !mnElem; }
     231             : 
     232             :     long                    Name2Size( const String& ) const;
     233             :     String                  Size2Name( long ) const;
     234             : 
     235             :     String                  GetIndexName( sal_uLong nIndex ) const;
     236             :     long                    GetIndexSize( sal_uLong nIndex ) const;
     237             : };
     238             : 
     239             : #endif  // _CTRLTOOL_HXX
     240             : 
     241             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10