~ubuntu-branches/ubuntu/trusty/virtualbox-lts-xenial/trusty-proposed

« back to all changes in this revision

Viewing changes to src/VBox/Additions/haiku/VBoxMouse/VBoxMouseFilter.h

  • Committer: Package Import Robot
  • Author(s): Gianfranco Costamagna
  • Date: 2016-02-23 14:28:26 UTC
  • Revision ID: package-import@ubuntu.com-20160223142826-bdu69el2z6wa2a44
Tags: upstream-4.3.36-dfsg
Import upstream version 4.3.36-dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: VBoxMouseFilter.h $ */
 
2
/** @file
 
3
 * VBoxMouse; input_server filter - Haiku Guest Additions, header.
 
4
 */
 
5
 
 
6
/*
 
7
 * Copyright (C) 2012 Oracle Corporation
 
8
 *
 
9
 * This file is part of VirtualBox Open Source Edition (OSE), as
 
10
 * available from http://www.virtualbox.org. This file is free software;
 
11
 * you can redistribute it and/or modify it under the terms of the GNU
 
12
 * General Public License (GPL) as published by the Free Software
 
13
 * Foundation, in version 2 as it comes in the "COPYING" file of the
 
14
 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
 
15
 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
 
16
 */
 
17
 
 
18
/*
 
19
 * This code is based on:
 
20
 *
 
21
 * VirtualBox Guest Additions for Haiku.
 
22
 * Copyright (c) 2011 Mike Smith <mike@scgtrp.net>
 
23
 *                    Fran�ois Revol <revol@free.fr>
 
24
 *
 
25
 * Permission is hereby granted, free of charge, to any person
 
26
 * obtaining a copy of this software and associated documentation
 
27
 * files (the "Software"), to deal in the Software without
 
28
 * restriction, including without limitation the rights to use,
 
29
 * copy, modify, merge, publish, distribute, sublicense, and/or sell
 
30
 * copies of the Software, and to permit persons to whom the
 
31
 * Software is furnished to do so, subject to the following
 
32
 * conditions:
 
33
 *
 
34
 * The above copyright notice and this permission notice shall be
 
35
 * included in all copies or substantial portions of the Software.
 
36
 *
 
37
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
38
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 
39
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
40
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 
41
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 
42
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 
43
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 
44
 * OTHER DEALINGS IN THE SOFTWARE.
 
45
 */
 
46
 
 
47
#ifndef __VBOXMOUSE_FILTER__H
 
48
#define __VBOXMOUSE_FILTER__H
 
49
 
 
50
#include <InputServerFilter.h>
 
51
 
 
52
extern "C" _EXPORT BInputServerFilter* instantiate_input_filter();
 
53
 
 
54
class VBoxMouseFilter : public BInputServerFilter
 
55
{
 
56
    public:
 
57
        VBoxMouseFilter();
 
58
        virtual ~VBoxMouseFilter();
 
59
 
 
60
        virtual filter_result       Filter(BMessage* message, BList* outList);
 
61
 
 
62
    private:
 
63
        static status_t             _ServiceThreadNub(void *_this);
 
64
        status_t                    _ServiceThread();
 
65
 
 
66
        int                         fDriverFD;
 
67
        thread_id                   fServiceThreadID;
 
68
        bool                        fExiting;
 
69
        bool                        fEnabled;
 
70
        int32                       fCurrentButtons;
 
71
};
 
72
 
 
73
#endif /* __VBOXMOUSE_FILTER__H */
 
74