LCOV - code coverage report
Current view: top level - sw/source/uibase/cctrl - actctrl.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 1 27 3.7 %
Date: 2014-11-03 Functions: 2 6 33.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             : #include <comphelper/string.hxx>
      21             : #include <vcl/builder.hxx>
      22             : #include "actctrl.hxx"
      23             : 
      24           0 : void NumEditAction::Action()
      25             : {
      26           0 :     aActionLink.Call( this );
      27           0 : }
      28             : 
      29           0 : bool NumEditAction::Notify( NotifyEvent& rNEvt )
      30             : {
      31           0 :     bool nHandled = false;
      32             : 
      33           0 :     if ( rNEvt.GetType() == EVENT_KEYINPUT )
      34             :     {
      35           0 :         const KeyEvent* pKEvt = rNEvt.GetKeyEvent();
      36           0 :         const vcl::KeyCode aKeyCode = pKEvt->GetKeyCode();
      37           0 :         const sal_uInt16 nModifier = aKeyCode.GetModifier();
      38           0 :         if( aKeyCode.GetCode() == KEY_RETURN &&
      39             :                 !nModifier)
      40             :         {
      41           0 :             Action();
      42           0 :             nHandled = true;
      43             :         }
      44             : 
      45             :     }
      46           0 :     if(!nHandled)
      47           0 :         NumericField::Notify( rNEvt );
      48           0 :     return nHandled;
      49             : }
      50             : 
      51           0 : void ReturnActionEdit::KeyInput( const KeyEvent& rEvt)
      52             : {
      53           0 :     const vcl::KeyCode aKeyCode = rEvt.GetKeyCode();
      54           0 :     const sal_uInt16 nModifier = aKeyCode.GetModifier();
      55           0 :     if( aKeyCode.GetCode() == KEY_RETURN &&
      56             :             !nModifier)
      57             :     {
      58           0 :         if(aReturnActionLink.IsSet())
      59           0 :             aReturnActionLink.Call(this);
      60             :     }
      61             :     else
      62           0 :         Edit::KeyInput(rEvt);
      63           0 : }
      64             : 
      65           0 : extern "C" SAL_DLLPUBLIC_EXPORT vcl::Window* SAL_CALL makeReturnActionEdit(vcl::Window *pParent, VclBuilder::stringmap &rMap)
      66             : {
      67           0 :     VclBuilder::ensureDefaultWidthChars(rMap);
      68           0 :     return new ReturnActionEdit(pParent, WB_LEFT|WB_VCENTER|WB_BORDER|WB_3DLOOK);
      69         270 : }
      70             : 
      71             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10