OSDN Git Service

最初のコミット
[winaudioj/stedx.git] / iocs_mouse.cpp
1 /*
2   iocs_mouse.c.c
3
4   functions for compatibility to iocslib
5   ( containing mouse oriented functions )
6
7   Made by Studio Breeze. 1998, 2002
8
9
10   Permission is hereby granted, free of charge, to any person obtaining a copy
11   of this software and associated documentation files (the "Software"), to deal
12   in the Software without restriction, including without limitation the rights
13   to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14   copies of the Software, and to permit persons to whom the Software is
15   furnished to do so, subject to the following conditions:
16
17   The above copyright notice and this permission notice shall be included in
18   all copies or substantial portions of the Software.
19
20   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21   IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
23   AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24   LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25   OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26   THE SOFTWARE.
27  */
28
29 #include "sted.h"
30 #include "sted_screen.h"
31
32
33 /* functions */
34
35 void
36 _iocs_ms_curof( void )
37 {
38   CSTedScreenBase* scr;
39
40   scr = GetDriver();
41   if (!scr) return;
42
43   scr->SetMouseCursorVisible(EButtonOff);
44   return;
45 }
46
47 void
48 _iocs_ms_curon( void )
49 {
50   CSTedScreenBase* scr;
51
52   scr = GetDriver();
53   if (!scr) return;
54
55   scr->SetMouseCursorVisible(EButtonOn);
56   return;
57 }
58
59 int
60 _iocs_ms_getdt( void )
61 {
62   CSTedScreenBase* scr;
63
64   scr = GetDriver();
65   if (!scr) return 0;
66
67   return scr->GetMouseButtonState();
68 }
69
70 void _iocs_ms_init( void )
71 {
72   CSTedScreenBase* scr;
73
74   scr = GetDriver();
75   if (!scr) return;
76
77   scr->MouseInit();
78   return;
79 }
80
81 int
82 _iocs_ms_limit( int in_xs, int in_ys, int in_xe, int in_ye )
83 {
84   CSTedScreenBase* scr;
85
86   scr = GetDriver();
87   if (!scr) return 0;
88
89   return scr->SetMouseMoveLimit(in_xs, in_ys, in_xe, in_ye);
90 }
91