LCOV - code coverage report
Current view: top level - include/vcl - inputctx.hxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 18 18 100.0 %
Date: 2014-04-11 Functions: 9 9 100.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             : 
      20             : #ifndef INCLUDED_VCL_INPUTCTX_HXX
      21             : #define INCLUDED_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      127497 : class VCL_DLLPUBLIC InputContext
      41             : {
      42             : private:
      43             :     Font            maFont;
      44             :     sal_uLong           mnOptions;
      45             : 
      46             : public:
      47      122088 :                     InputContext() { mnOptions = 0; }
      48        1753 :                     InputContext( const InputContext& rInputContext ) :
      49        1753 :                         maFont( rInputContext.maFont )
      50        1753 :                     { mnOptions = rInputContext.mnOptions; }
      51        4489 :                     InputContext( const Font& rFont, sal_uLong nOptions = 0 ) :
      52        4489 :                         maFont( rFont )
      53        4489 :                     { mnOptions = nOptions; }
      54             : 
      55             :     void            SetFont( const Font& rFont ) { maFont = rFont; }
      56        3783 :     const Font&     GetFont() const { return maFont; }
      57             : 
      58        2301 :     void            SetOptions( sal_uLong nOptions ) { mnOptions = nOptions; }
      59        5536 :     sal_uLong           GetOptions() const { return mnOptions; }
      60             : 
      61             :     InputContext&   operator=( const InputContext& rInputContext );
      62             :     bool            operator==( const InputContext& rInputContext ) const;
      63             :     bool            operator!=( const InputContext& rInputContext ) const
      64             :                         { return !(InputContext::operator==( rInputContext )); }
      65             : };
      66             : 
      67       10573 : inline InputContext& InputContext::operator=( const InputContext& rInputContext )
      68             : {
      69       10573 :     maFont      = rInputContext.maFont;
      70       10573 :     mnOptions   = rInputContext.mnOptions;
      71       10573 :     return *this;
      72             : }
      73             : 
      74       12253 : inline bool InputContext::operator==( const InputContext& rInputContext ) const
      75             : {
      76       20984 :     return ((mnOptions  == rInputContext.mnOptions) &&
      77       20984 :             (maFont     == rInputContext.maFont));
      78             : }
      79             : 
      80             : #endif // INCLUDED_VCL_INPUTCTX_HXX
      81             : 
      82             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10