LCOV - code coverage report
Current view: top level - solver/unxlngi6.pro/inc/vcl - inputctx.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 17 17 100.0 %
Date: 2012-08-25 Functions: 9 9 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 4 4 100.0 %

           Branch data     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 _VCL_INPUTCTX_HXX
      21                 :            : #define _VCL_INPUTCTX_HXX
      22                 :            : 
      23                 :            : #include <tools/solar.h>
      24                 :            : #include <vcl/dllapi.h>
      25                 :            : #include <vcl/font.hxx>
      26                 :            : 
      27                 :            : // ----------------------
      28                 :            : // - InputContext-Flags -
      29                 :            : // ----------------------
      30                 :            : 
      31                 :            : #define INPUTCONTEXT_TEXT               ((sal_uLong)0x00000001)
      32                 :            : #define INPUTCONTEXT_EXTTEXTINPUT       ((sal_uLong)0x00000002)
      33                 :            : #define INPUTCONTEXT_EXTTEXTINPUT_ON    ((sal_uLong)0x00000004)
      34                 :            : #define INPUTCONTEXT_EXTTEXTINPUT_OFF   ((sal_uLong)0x00000008)
      35                 :            : 
      36                 :            : // ----------------
      37                 :            : // - InputContext -
      38                 :            : // ----------------
      39                 :            : 
      40                 :     133052 : class VCL_DLLPUBLIC InputContext
      41                 :            : {
      42                 :            : private:
      43                 :            :     Font            maFont;
      44                 :            :     sal_uLong           mnOptions;
      45                 :            : 
      46                 :            : public:
      47                 :     130696 :                     InputContext() { mnOptions = 0; }
      48                 :       1315 :                     InputContext( const InputContext& rInputContext ) :
      49                 :       1315 :                         maFont( rInputContext.maFont )
      50                 :       1315 :                     { mnOptions = rInputContext.mnOptions; }
      51                 :       4910 :                     InputContext( const Font& rFont, sal_uLong nOptions = 0 ) :
      52                 :       4910 :                         maFont( rFont )
      53                 :       4910 :                     { mnOptions = nOptions; }
      54                 :            : 
      55                 :            :     void            SetFont( const Font& rFont ) { maFont = rFont; }
      56                 :       3326 :     const Font&     GetFont() const { return maFont; }
      57                 :            : 
      58                 :       1847 :     void            SetOptions( sal_uLong nOptions ) { mnOptions = nOptions; }
      59                 :       4641 :     sal_uLong           GetOptions() const { return mnOptions; }
      60                 :            : 
      61                 :            :     InputContext&   operator=( const InputContext& rInputContext );
      62                 :            :     sal_Bool            operator==( const InputContext& rInputContext ) const;
      63                 :            :     sal_Bool            operator!=( const InputContext& rInputContext ) const
      64                 :            :                         { return !(InputContext::operator==( rInputContext )); }
      65                 :            : };
      66                 :            : 
      67                 :      10083 : inline InputContext& InputContext::operator=( const InputContext& rInputContext )
      68                 :            : {
      69                 :      10083 :     maFont      = rInputContext.maFont;
      70                 :      10083 :     mnOptions   = rInputContext.mnOptions;
      71                 :      10083 :     return *this;
      72                 :            : }
      73                 :            : 
      74                 :      10799 : inline sal_Bool InputContext::operator==( const InputContext& rInputContext ) const
      75                 :            : {
      76                 :            :     return ((mnOptions  == rInputContext.mnOptions) &&
      77 [ +  + ][ +  + ]:      10799 :             (maFont     == rInputContext.maFont));
      78                 :            : }
      79                 :            : 
      80                 :            : #endif // _VCL_INPUTCTX_HXX
      81                 :            : 
      82                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10