GL Studio C++ Runtime API
rso_interface_3.h
Go to the documentation of this file.
1/*! \file
2 \brief Defines the RSO interface v3, which extends v2 to add multitouch support through the HandleMultiTouchInput method
3
4 \par Copyright Information
5
6 Copyright (c) 2017 by The DiSTI Corporation.<br>
7 11301 Corporate Blvd; Suite 100<br>
8 Orlando, Florida 32817<br>
9 USA<br>
10 <br>
11 All rights reserved.<br>
12
13 This Software contains proprietary trade secrets of DiSTI and may not be
14reproduced, in whole or part, in any form, or by any means of electronic,
15mechanical, or otherwise, without the written permission of DiSTI. Said
16permission may be derived through the purchase of applicable DiSTI product
17licenses which detail the distribution rights of this content and any
18Derivative Works based on this or other copyrighted DiSTI Software.
19
20 NO WARRANTY. THE SOFTWARE IS PROVIDED "AS-IS," WITHOUT WARRANTY OF ANY KIND,
21AND ANY USE OF THIS SOFTWARE PRODUCT IS AT YOUR OWN RISK. TO THE MAXIMUM EXTENT
22PERMITTED BY APPLICABLE LAW, DISTI AND ITS SUPPLIERS DISCLAIM ALL WARRANTIES
23AND CONDITIONS, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
24IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY AND/OR FITNESS FOR A
25PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT, WITH REGARD TO THE SOFTWARE.
26
27 LIMITATION OF LIABILITY. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW,
28IN NO EVENT SHALL DISTI OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
29INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION,
30DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS
31INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR
32INABILITY TO USE THE SOFTWARE, EVEN IF DISTI HAS BEEN ADVISED OF THE POSSIBILITY
33OF SUCH DAMAGES. DISTI'S ENTIRE LIABILITY AND YOUR EXCLUSIVE REMEDY SHALL NOT
34EXCEED FIVE DOLLARS (US$5.00).
35
36 The aforementioned terms and restrictions are governed by the laws of the
37State of Florida and the United States of America.
38
39*/
40#ifndef INCLUDED_RSO_INTERFACE_3_H
41#define INCLUDED_RSO_INTERFACE_3_H
42
43#include "rso_interface_1.h"
44#include "rso_interface_2.h"
45
46namespace disti
47{
48////////////////////////////////////////////////////////////////////////////////
49// In order for the RSO to be discovered in a .DLL or .so file,
50// The following "C" funtions need to be defined.
51// They are only comments here.
52////////////////////////////////////////////////////////////////////////////////
53// RSOInterface1* CreateRSOInterface3_ClassNameHere()
54// Optionally:
55// const char* GlsDefaultClassName()
56////////////////////////////////////////////////////////////////////////////////
57
58/** The RSOInterface3 class defines an abstract interface to an RSO instance.
59 */
61{
62public:
63 /** An event containing mouse input. */
65 {
66 public:
67 unsigned int _cursor_id; ///< The cursor id.
68
70 : _cursor_id( 0 )
71 {
72 }
73
74 /// \return The cursor id associated with this event.
75 unsigned int CursorId() { return _cursor_id; }
76
77 /// Set the cursor id associated with this event.
78 /// \param value The new id to set.
79 void CursorId( unsigned int value ) { _cursor_id = value; }
80 };
81
82 ////////////////////////////////////////////////////////////////////////////////
83 // The RSO Interface methods
84 ////////////////////////////////////////////////////////////////////////////////
85
86 /// Allow the object to handle a multitouch event.
87 /// \param ev The event to handle.
88 /// \return True if the event was handled by the component.
90
91protected:
92 ////////////////////////////////////////////////////////////////////////////////
93 /// Protected destructor so it can't be deleted directly.
94 ////////////////////////////////////////////////////////////////////////////////
95 virtual ~RSOInterface3() {}
96};
97
98} // end namespace disti
99
100#endif
Definition: rso_interface_1.h:417
Definition: rso_interface_2.h:60
Definition: rso_interface_3.h:65
void CursorId(unsigned int value)
Definition: rso_interface_3.h:79
unsigned int CursorId()
Definition: rso_interface_3.h:75
unsigned int _cursor_id
The cursor id.
Definition: rso_interface_3.h:67
Definition: rso_interface_3.h:61
virtual ~RSOInterface3()
Protected destructor so it can't be deleted directly.
Definition: rso_interface_3.h:95
virtual bool HandleMultiTouchInput(MouseMultiTouchEvent *ev)=0
Force inclusion of the DirectShow library.
Definition: bmpimage.h:47
Defines the RSO interface, which provides a generic way of accessing RSOs and other content,...
Defines the RSO interface v2, which provides a generic way of accessing RSOs and other content,...