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 <cmdid.h>
21 : #include <swtypes.hxx>
22 : #include <popbox.hxx>
23 : #include <navipi.hxx>
24 :
25 0 : SwHelpToolBox::SwHelpToolBox( SwNavigationPI* pParent, const ResId& rResId )
26 : : ToolBox( pParent, rResId ),
27 0 : DropTargetHelper( this )
28 : {
29 0 : }
30 :
31 0 : void SwHelpToolBox::MouseButtonDown(const MouseEvent &rEvt)
32 : {
33 : // If doubleclick is detected use doubleclick handler
34 0 : if(rEvt.GetButtons() == MOUSE_RIGHT &&
35 0 : 0 == GetItemId(rEvt.GetPosPixel()))
36 : {
37 0 : aRightClickLink.Call((MouseEvent *)&rEvt);
38 : }
39 : else
40 0 : ToolBox::MouseButtonDown(rEvt);
41 0 : }
42 :
43 0 : long SwHelpToolBox::DoubleClick( ToolBox* pCaller )
44 : {
45 : // No doubleclick on button
46 0 : if( 0 == pCaller->GetCurItemId() && aDoubleClickLink.Call(0) )
47 0 : return sal_True;
48 0 : return sal_False;
49 : }
50 :
51 0 : SwHelpToolBox::~SwHelpToolBox() {}
52 :
53 0 : sal_Int8 SwHelpToolBox::AcceptDrop( const AcceptDropEvent& rEvt )
54 : {
55 0 : return ((SwNavigationPI*)GetParent())->AcceptDrop( rEvt );
56 : }
57 :
58 0 : sal_Int8 SwHelpToolBox::ExecuteDrop( const ExecuteDropEvent& rEvt )
59 : {
60 0 : return ((SwNavigationPI*)GetParent())->ExecuteDrop( rEvt );
61 : }
62 :
63 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|