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/builderfactory.hxx>
22 : #include "actctrl.hxx"
23 :
24 0 : void NumEditAction::Action()
25 : {
26 0 : aActionLink.Call( this );
27 0 : }
28 :
29 8 : bool NumEditAction::Notify( NotifyEvent& rNEvt )
30 : {
31 8 : bool nHandled = false;
32 :
33 8 : if ( rNEvt.GetType() == MouseNotifyEvent::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 8 : if(!nHandled)
47 8 : NumericField::Notify( rNEvt );
48 8 : 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 : VCL_BUILDER_DECL_FACTORY(ReturnActionEdit)
66 : {
67 0 : VclBuilder::ensureDefaultWidthChars(rMap);
68 0 : rRet = VclPtr<ReturnActionEdit>::Create(pParent, WB_LEFT|WB_VCENTER|WB_BORDER|WB_3DLOOK);
69 177 : }
70 :
71 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|