Mercurial > sdl-ios-xcode
annotate src/video/bwindow/SDL_BView.h @ 3883:cfe850b334e7 SDL-1.2
Also save/restore fpu register in vbl interrupt
author | Patrice Mandin <patmandin@gmail.com> |
---|---|
date | Sat, 21 Oct 2006 18:53:33 +0000 |
parents | 678576473849 |
children | 4e29535b821b |
rev | line source |
---|---|
0 | 1 /* |
2 SDL - Simple DirectMedia Layer | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
3 Copyright (C) 1997-2006 Sam Lantinga |
0 | 4 |
5 This library is free software; you can redistribute it and/or | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
6 modify it under the terms of the GNU Lesser General Public |
0 | 7 License as published by the Free Software Foundation; either |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
8 version 2.1 of the License, or (at your option) any later version. |
0 | 9 |
10 This library is distributed in the hope that it will be useful, | |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
13 Lesser General Public License for more details. |
0 | 14 |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
15 You should have received a copy of the GNU Lesser General Public |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
16 License along with this library; if not, write to the Free Software |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 18 |
19 Sam Lantinga | |
252
e8157fcb3114
Updated the source with the correct e-mail address
Sam Lantinga <slouken@libsdl.org>
parents:
114
diff
changeset
|
20 slouken@libsdl.org |
0 | 21 */ |
1402
d910939febfa
Use consistent identifiers for the various platforms we support.
Sam Lantinga <slouken@libsdl.org>
parents:
1361
diff
changeset
|
22 #include "SDL_config.h" |
0 | 23 |
756
10332c6fad2e
te: Mon, 15 Dec 2003 08:25:14 -0800 PST
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
24 #ifndef _SDL_BView_h |
10332c6fad2e
te: Mon, 15 Dec 2003 08:25:14 -0800 PST
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
25 #define _SDL_BView_h |
10332c6fad2e
te: Mon, 15 Dec 2003 08:25:14 -0800 PST
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
26 |
0 | 27 /* This is the event handling and graphics update portion of SDL_BWin */ |
28 | |
29 extern "C" { | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
30 #include "../../events/SDL_events_c.h" |
0 | 31 }; |
32 | |
33 class SDL_BView : public BView | |
34 { | |
35 public: | |
36 SDL_BView(BRect frame) : | |
37 BView(frame, "SDL View", B_FOLLOW_ALL_SIDES, | |
38 (B_WILL_DRAW|B_FRAME_EVENTS)) { | |
39 image = NULL; | |
40 SetViewColor(0,0,0,0); | |
41 SetHighColor(0,0,0,0); | |
42 } | |
43 virtual ~SDL_BView() { | |
44 SetBitmap(NULL); | |
45 } | |
46 /* The view changed size. If it means we're in fullscreen, we | |
47 * draw a nice black box in the entire view to get black borders. | |
48 */ | |
49 virtual void FrameResized(float width, float height) { | |
50 BRect bounds; | |
51 bounds.top = bounds.left = 0; | |
52 bounds.right = width; | |
53 bounds.bottom = height; | |
54 /* Fill the entire view with black */ | |
3878 | 55 // FillRect(bounds, B_SOLID_HIGH); |
0 | 56 /* And if there's an image, redraw it. */ |
57 if( image ) { | |
58 bounds = image->Bounds(); | |
59 Draw(bounds); | |
60 } | |
61 } | |
3878 | 62 |
0 | 63 /* Drawing portion of this complete breakfast. :) */ |
64 virtual void SetBitmap(BBitmap *bitmap) { | |
65 if ( image ) { | |
66 delete image; | |
67 } | |
68 image = bitmap; | |
69 } | |
70 virtual void Draw(BRect updateRect) { | |
71 if ( image ) { | |
3878 | 72 DrawBitmap(image, updateRect, updateRect); |
0 | 73 } |
74 } | |
75 virtual void DrawAsync(BRect updateRect) { | |
3878 | 76 if ( image ) { |
0 | 77 DrawBitmapAsync(image, updateRect, updateRect); |
78 } | |
79 } | |
80 | |
81 private: | |
82 BBitmap *image; | |
83 }; | |
756
10332c6fad2e
te: Mon, 15 Dec 2003 08:25:14 -0800 PST
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
84 |
10332c6fad2e
te: Mon, 15 Dec 2003 08:25:14 -0800 PST
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
85 #endif /* _SDL_BView_h */ |