2003-01-12 22:51:01 +00:00
|
|
|
//------------------------------------------------------------------------------
|
2004-09-20 22:46:37 +00:00
|
|
|
// Copyright (c) 2001-2002, Haiku, Inc.
|
2003-01-12 22:51:01 +00:00
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the "Software"),
|
|
|
|
// to deal in the Software without restriction, including without limitation
|
|
|
|
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
// and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
// Software is furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
// DEALINGS IN THE SOFTWARE.
|
|
|
|
//
|
|
|
|
// File Name: DisplayDriver.h
|
|
|
|
// Author: DarkWyrm <bpmagic@columbus.rr.com>
|
2004-01-27 00:39:41 +00:00
|
|
|
// Gabe Yoder <gyoder@stny.rr.com>
|
2005-03-25 13:15:33 +00:00
|
|
|
// Stephan Aßmus <superstippi@gmx.de>
|
2004-01-27 00:39:41 +00:00
|
|
|
//
|
2005-03-25 13:15:33 +00:00
|
|
|
// Description: Abstract class which handles all graphics output
|
2003-01-12 22:51:01 +00:00
|
|
|
// for the server
|
|
|
|
//
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
#ifndef _DISPLAY_DRIVER_H_
|
|
|
|
#define _DISPLAY_DRIVER_H_
|
|
|
|
|
2005-03-25 13:15:33 +00:00
|
|
|
|
2004-01-13 00:08:01 +00:00
|
|
|
#include <Accelerant.h>
|
2003-01-12 22:51:01 +00:00
|
|
|
#include <OS.h>
|
|
|
|
|
|
|
|
#include <View.h>
|
|
|
|
#include <Font.h>
|
|
|
|
#include <Rect.h>
|
2003-02-10 12:56:10 +00:00
|
|
|
#include <Locker.h>
|
2003-11-22 00:43:54 +00:00
|
|
|
#include <Screen.h>
|
2003-01-12 22:51:01 +00:00
|
|
|
#include "RGBColor.h"
|
2003-06-28 20:07:36 +00:00
|
|
|
#include <Region.h>
|
2003-07-28 19:13:24 +00:00
|
|
|
#include "PatternHandler.h"
|
2004-09-20 22:46:37 +00:00
|
|
|
#include "CursorHandler.h"
|
2004-08-07 20:28:03 +00:00
|
|
|
#include "DisplaySupport.h"
|
2004-01-27 00:39:41 +00:00
|
|
|
#include "LayerData.h"
|
2004-02-03 00:51:23 +00:00
|
|
|
#include "ServerBitmap.h"
|
|
|
|
#include <ft2build.h>
|
|
|
|
#include FT_FREETYPE_H
|
2003-01-12 22:51:01 +00:00
|
|
|
|
|
|
|
#ifndef ROUND
|
2003-04-30 00:34:40 +00:00
|
|
|
#define ROUND(a) ( (long)(a+.5) )
|
2003-01-12 22:51:01 +00:00
|
|
|
#endif
|
|
|
|
|
2005-03-25 13:15:33 +00:00
|
|
|
|
|
|
|
class ServerCursor;
|
|
|
|
|
2003-01-12 22:51:01 +00:00
|
|
|
/*!
|
|
|
|
\brief Data structure for passing cursor information to hardware drivers.
|
|
|
|
*/
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
uchar *xormask, *andmask;
|
|
|
|
int32 width, height;
|
|
|
|
int32 hotx, hoty;
|
|
|
|
|
|
|
|
} cursor_data;
|
|
|
|
|
2004-10-16 01:57:13 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
BPoint pt1;
|
|
|
|
BPoint pt2;
|
|
|
|
rgb_color color;
|
|
|
|
|
|
|
|
} LineArrayData;
|
|
|
|
|
|
|
|
|
2003-01-12 22:51:01 +00:00
|
|
|
#ifndef HOOK_DEFINE_CURSOR
|
|
|
|
|
|
|
|
#define HOOK_DEFINE_CURSOR 0
|
|
|
|
#define HOOK_MOVE_CURSOR 1
|
|
|
|
#define HOOK_SHOW_CURSOR 2
|
|
|
|
#define HOOK_DRAW_LINE_8BIT 3
|
|
|
|
#define HOOK_DRAW_LINE_16BIT 12
|
|
|
|
#define HOOK_DRAW_LINE_32BIT 4
|
|
|
|
#define HOOK_DRAW_RECT_8BIT 5
|
|
|
|
#define HOOK_DRAW_RECT_16BIT 13
|
|
|
|
#define HOOK_DRAW_RECT_32BIT 6
|
|
|
|
#define HOOK_BLIT 7
|
|
|
|
#define HOOK_DRAW_ARRAY_8BIT 8
|
|
|
|
#define HOOK_DRAW_ARRAY_16BIT 14 // Not implemented in current R5 drivers
|
|
|
|
#define HOOK_DRAW_ARRAY_32BIT 9
|
|
|
|
#define HOOK_SYNC 10
|
|
|
|
#define HOOK_INVERT_RECT 11
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2003-12-07 03:19:50 +00:00
|
|
|
class DisplayDriver;
|
|
|
|
|
|
|
|
typedef void (DisplayDriver::* SetPixelFuncType)(int x, int y);
|
|
|
|
typedef void (DisplayDriver::* SetHorizontalLineFuncType)(int xstart, int xend, int y);
|
|
|
|
typedef void (DisplayDriver::* SetVerticalLineFuncType)(int x, int ystart, int yend);
|
|
|
|
typedef void (DisplayDriver::* SetRectangleFuncType)(int left, int top, int right, int bottom);
|
|
|
|
|
2003-01-12 22:51:01 +00:00
|
|
|
/*!
|
|
|
|
\class DisplayDriver DisplayDriver.h
|
|
|
|
\brief Mostly abstract class which handles all graphics output for the server.
|
|
|
|
|
|
|
|
The DisplayDriver is called in order to handle all messiness associated with
|
|
|
|
a particular rendering context, such as the screen, and the methods to
|
|
|
|
handle organizing information related to it along with writing to the context
|
|
|
|
itself.
|
|
|
|
|
|
|
|
While all virtual functions are technically optional, the default versions
|
|
|
|
do very little, so implementing them all more or less required.
|
|
|
|
*/
|
|
|
|
|
2005-03-25 13:15:33 +00:00
|
|
|
class DisplayDriver {
|
|
|
|
public:
|
|
|
|
DisplayDriver();
|
|
|
|
virtual ~DisplayDriver();
|
2004-02-24 11:50:10 +00:00
|
|
|
|
2004-01-27 00:39:41 +00:00
|
|
|
// Graphics calls implemented in DisplayDriver
|
2005-03-25 13:15:33 +00:00
|
|
|
virtual void CopyBits( const BRect &src,
|
|
|
|
const BRect &dest,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void CopyRegion( BRegion *src,
|
|
|
|
const BPoint &lefttop);
|
|
|
|
|
|
|
|
virtual void InvertRect( const BRect &r);
|
|
|
|
|
|
|
|
virtual void DrawBitmap( BRegion *region,
|
|
|
|
ServerBitmap *bitmap,
|
|
|
|
const BRect &source,
|
|
|
|
const BRect &dest,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void CopyRegionList( BList* list,
|
|
|
|
BList* pList,
|
|
|
|
int32 rCount,
|
|
|
|
BRegion* clipReg);
|
|
|
|
|
|
|
|
virtual void FillArc( const BRect &r,
|
|
|
|
const float &angle,
|
|
|
|
const float &span,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void FillBezier( BPoint *pts,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void FillEllipse( const BRect &r,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void FillPolygon( BPoint *ptlist,
|
|
|
|
int32 numpts,
|
|
|
|
const BRect &bounds,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void FillRect( const BRect &r,
|
|
|
|
const RGBColor &color);
|
|
|
|
|
|
|
|
virtual void FillRect( const BRect &r,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void FillRegion( BRegion &r,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void FillRoundRect( const BRect &r,
|
|
|
|
const float &xrad,
|
|
|
|
const float &yrad,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void FillShape( const BRect &bounds,
|
|
|
|
const int32 &opcount,
|
|
|
|
const int32 *oplist,
|
|
|
|
const int32 &ptcount,
|
|
|
|
const BPoint *ptlist,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void FillTriangle( BPoint *pts,
|
|
|
|
const BRect &bounds,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void StrokeArc( const BRect &r,
|
|
|
|
const float &angle,
|
|
|
|
const float &span,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void StrokeBezier( BPoint *pts,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void StrokeEllipse( const BRect &r,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
// this version used by Decorator
|
|
|
|
virtual void StrokeLine( const BPoint &start,
|
|
|
|
const BPoint &end,
|
|
|
|
const RGBColor &color);
|
|
|
|
|
|
|
|
virtual void StrokeLine( const BPoint &start,
|
|
|
|
const BPoint &end,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
// this version used by Decorator
|
|
|
|
virtual void StrokePoint( const BPoint &pt,
|
|
|
|
const RGBColor &color);
|
|
|
|
|
|
|
|
virtual void StrokePoint( const BPoint &pt,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void StrokePolygon( BPoint *ptlist,
|
|
|
|
int32 numpts,
|
|
|
|
const BRect &bounds,
|
|
|
|
const DrawData *d,
|
|
|
|
bool is_closed=true);
|
|
|
|
|
|
|
|
// this version used by Decorator
|
|
|
|
virtual void StrokeRect( const BRect &r,
|
|
|
|
const RGBColor &color);
|
|
|
|
|
|
|
|
virtual void StrokeRect( const BRect &r,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void StrokeRegion( BRegion &r,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void StrokeRoundRect(const BRect &r,
|
|
|
|
const float &xrad,
|
|
|
|
const float &yrad,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void StrokeShape( const BRect &bounds,
|
|
|
|
const int32 &opcount,
|
|
|
|
const int32 *oplist,
|
|
|
|
const int32 &ptcount,
|
|
|
|
const BPoint *ptlist,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void StrokeTriangle( BPoint *pts,
|
|
|
|
const BRect &bounds,
|
|
|
|
const DrawData *d);
|
|
|
|
|
2004-01-27 00:39:41 +00:00
|
|
|
// Font-related calls
|
2004-10-16 22:38:43 +00:00
|
|
|
|
|
|
|
// DrawData is NOT const because this call updates the pen position in the passed DrawData
|
2005-03-25 13:15:33 +00:00
|
|
|
virtual void DrawString(const char *string,
|
|
|
|
const int32 &length,
|
|
|
|
const BPoint &pt,
|
|
|
|
DrawData *d);
|
|
|
|
|
|
|
|
virtual void DrawString(const char *string,
|
|
|
|
const int32 &length,
|
|
|
|
const BPoint &pt,
|
|
|
|
const RGBColor &color,
|
|
|
|
escapement_delta *delta=NULL);
|
|
|
|
|
|
|
|
virtual float StringWidth(const char *string,
|
|
|
|
int32 length,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual float StringHeight(const char *string,
|
|
|
|
int32 length,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void GetBoundingBoxes(const char *string,
|
|
|
|
int32 count,
|
|
|
|
font_metric_mode mode,
|
|
|
|
escapement_delta *delta,
|
|
|
|
BRect *rectarray,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void GetEscapements(const char *string,
|
|
|
|
int32 charcount,
|
|
|
|
escapement_delta *delta,
|
|
|
|
escapement_delta *escapements,
|
|
|
|
escapement_delta *offsets,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void GetEdges(const char *string,
|
|
|
|
int32 charcount,
|
|
|
|
edge_info *edgearray,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void GetHasGlyphs(const char *string,
|
|
|
|
int32 charcount,
|
|
|
|
bool *hasarray);
|
|
|
|
|
|
|
|
virtual void GetTruncatedStrings(const char **instrings,
|
|
|
|
const int32 &stringcount,
|
|
|
|
const uint32 &mode,
|
|
|
|
const float &maxwidth,
|
|
|
|
char **outstrings);
|
2004-01-27 00:39:41 +00:00
|
|
|
|
2005-03-25 13:15:33 +00:00
|
|
|
virtual void HideCursor();
|
|
|
|
virtual bool IsCursorHidden();
|
|
|
|
virtual void MoveCursorTo(const float &x, const float &y);
|
|
|
|
virtual void ShowCursor();
|
|
|
|
virtual void ObscureCursor();
|
|
|
|
virtual void SetCursor(ServerCursor *cursor);
|
|
|
|
BPoint GetCursorPosition();
|
|
|
|
virtual bool IsCursorObscured(bool state);
|
2004-01-27 00:39:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Virtual methods which need to be implemented by each subclass
|
2005-03-25 13:15:33 +00:00
|
|
|
virtual bool Initialize(void);
|
|
|
|
virtual void Shutdown(void);
|
2003-01-12 22:51:01 +00:00
|
|
|
|
2005-03-25 13:15:33 +00:00
|
|
|
// These two will rarely be implemented by subclasses,
|
|
|
|
// but it still needs to be possible
|
|
|
|
virtual bool Lock(bigtime_t timeout = B_INFINITE_TIMEOUT);
|
|
|
|
virtual void Unlock(void);
|
2003-01-12 22:51:01 +00:00
|
|
|
|
2005-03-25 13:15:33 +00:00
|
|
|
// display mode access
|
|
|
|
virtual void SetMode(const display_mode &mode);
|
|
|
|
virtual void GetMode( display_mode *mode);
|
2003-03-30 21:09:39 +00:00
|
|
|
|
2005-03-25 13:15:33 +00:00
|
|
|
virtual bool DumpToFile(const char *path);
|
|
|
|
virtual ServerBitmap* DumpToBitmap(void);
|
|
|
|
|
|
|
|
virtual void StrokeLineArray(const int32 &numlines,
|
|
|
|
const LineArrayData *data,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual status_t SetDPMSMode(const uint32 &state);
|
|
|
|
virtual uint32 DPMSMode() const;
|
|
|
|
virtual uint32 DPMSCapabilities() const;
|
|
|
|
virtual status_t GetDeviceInfo(accelerant_device_info *info);
|
|
|
|
|
|
|
|
virtual status_t GetModeList(display_mode **mode_list,
|
|
|
|
uint32 *count);
|
|
|
|
|
|
|
|
virtual status_t GetPixelClockLimits(display_mode *mode,
|
|
|
|
uint32 *low,
|
|
|
|
uint32 *high);
|
|
|
|
|
|
|
|
virtual status_t GetTimingConstraints(display_timing_constraints *dtc);
|
|
|
|
virtual status_t ProposeMode(display_mode *candidate,
|
|
|
|
const display_mode *low,
|
|
|
|
const display_mode *high);
|
|
|
|
|
|
|
|
virtual status_t WaitForRetrace(bigtime_t timeout = B_INFINITE_TIMEOUT);
|
2003-11-22 00:43:54 +00:00
|
|
|
|
2003-01-12 22:51:01 +00:00
|
|
|
protected:
|
2004-03-28 14:35:13 +00:00
|
|
|
friend class Layer;
|
|
|
|
friend class WinBorder;
|
2004-09-20 22:46:37 +00:00
|
|
|
friend CursorHandler;
|
2004-01-27 00:39:41 +00:00
|
|
|
|
2005-03-25 13:15:33 +00:00
|
|
|
ServerCursor* _GetCursor(void);
|
|
|
|
|
|
|
|
virtual void HLinePatternThick(int32 x1, int32 x2, int32 y);
|
|
|
|
|
|
|
|
virtual void VLinePatternThick(int32 x, int32 y1, int32 y2);
|
|
|
|
|
|
|
|
virtual void SetThickPatternPixel(int x, int y);
|
2004-01-27 00:39:41 +00:00
|
|
|
|
2005-03-25 13:15:33 +00:00
|
|
|
// Blit functions specific to FreeType2 glyph copying.
|
|
|
|
// These probably could be replaced with more generic functions,
|
|
|
|
// but these are written and can be replaced later.
|
|
|
|
void BlitMono2RGB32(FT_Bitmap *src,
|
|
|
|
const BPoint &pt,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
void BlitGray2RGB32(FT_Bitmap *src,
|
|
|
|
const BPoint &pt,
|
|
|
|
const DrawData *d);
|
2004-02-03 00:51:23 +00:00
|
|
|
|
2005-03-25 13:15:33 +00:00
|
|
|
// Two functions for gaining direct access to the framebuffer
|
|
|
|
// of a child class. This removes the need for a set of
|
|
|
|
// glyph-blitting virtual functions for each driver.
|
|
|
|
virtual bool AcquireBuffer(FBBitmap *bmp);
|
|
|
|
virtual void ReleaseBuffer(void);
|
2004-02-03 00:51:23 +00:00
|
|
|
|
2005-03-25 13:15:33 +00:00
|
|
|
// This is for drivers which are internally double buffered
|
|
|
|
// and calling this will cause the real framebuffer to be updated
|
|
|
|
virtual void Invalidate(const BRect &r);
|
2004-02-15 20:26:01 +00:00
|
|
|
|
2005-03-25 13:15:33 +00:00
|
|
|
/* void FillBezier(BPoint *pts,
|
|
|
|
DisplayDriver* driver,
|
|
|
|
SetHorizontalLineFuncType setLine);
|
|
|
|
|
|
|
|
void FillRegion(BRegion &r,
|
|
|
|
DisplayDriver* driver,
|
|
|
|
SetRectangleFuncType setRect);
|
|
|
|
|
|
|
|
void StrokeArc(const BRect &r,
|
|
|
|
const float &angle,
|
|
|
|
const float &span,
|
|
|
|
DisplayDriver* driver,
|
|
|
|
SetPixelFuncType setPixel);
|
|
|
|
|
|
|
|
void StrokeBezier(BPoint *pts,
|
|
|
|
DisplayDriver* driver,
|
|
|
|
SetPixelFuncType setPixel);
|
|
|
|
|
|
|
|
void StrokeEllipse(const BRect &r,
|
|
|
|
DisplayDriver* driver,
|
|
|
|
SetPixelFuncType setPixel);
|
|
|
|
|
|
|
|
void StrokeLine(const BPoint &start,
|
|
|
|
const BPoint &end,
|
|
|
|
DisplayDriver* driver,
|
|
|
|
SetPixelFuncType setPixel);*/
|
2004-01-27 00:39:41 +00:00
|
|
|
|
|
|
|
// Support functions for the rest of the driver
|
2005-03-25 13:15:33 +00:00
|
|
|
virtual void Blit(const BRect &src,
|
|
|
|
const BRect &dest,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void FillSolidRect(const BRect &rect,
|
|
|
|
const RGBColor &color);
|
|
|
|
|
|
|
|
virtual void FillPatternRect(const BRect &rect,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void StrokeSolidLine(int32 x1, int32 y1,
|
|
|
|
int32 x2, int32 y2,
|
|
|
|
const RGBColor &color);
|
|
|
|
|
|
|
|
virtual void StrokePatternLine(int32 x1, int32 y1,
|
|
|
|
int32 x2, int32 y2,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void StrokeSolidRect(const BRect &rect,
|
|
|
|
const RGBColor &color);
|
|
|
|
|
|
|
|
virtual void CopyBitmap(ServerBitmap *bitmap,
|
|
|
|
const BRect &source,
|
|
|
|
const BRect &dest,
|
|
|
|
const DrawData *d);
|
|
|
|
|
|
|
|
virtual void CopyToBitmap(ServerBitmap *target,
|
|
|
|
const BRect &source);
|
|
|
|
|
2004-03-28 14:35:13 +00:00
|
|
|
// temporarily virtual - until clipping code is added in DisplayDriver
|
2005-03-25 13:15:33 +00:00
|
|
|
virtual void ConstrainClippingRegion(BRegion *reg);
|
2004-03-28 14:35:13 +00:00
|
|
|
|
2003-12-07 03:19:50 +00:00
|
|
|
PatternHandler fDrawPattern;
|
|
|
|
RGBColor fDrawColor;
|
|
|
|
int fLineThickness;
|
2004-01-27 00:39:41 +00:00
|
|
|
|
2003-02-10 12:56:10 +00:00
|
|
|
BLocker *_locker;
|
2004-01-27 00:39:41 +00:00
|
|
|
|
2004-09-20 22:46:37 +00:00
|
|
|
uint32 fDPMSState;
|
|
|
|
uint32 fDPMSCaps;
|
|
|
|
accelerant_device_info fAccDeviceInfo;
|
|
|
|
display_mode fDisplayMode;
|
2004-02-07 13:47:52 +00:00
|
|
|
|
2004-11-06 19:44:49 +00:00
|
|
|
CursorHandler fCursorHandler;
|
2004-09-20 22:46:37 +00:00
|
|
|
|
|
|
|
DrawData fDrawData;
|
2003-01-12 22:51:01 +00:00
|
|
|
};
|
|
|
|
|
2003-02-07 17:30:17 +00:00
|
|
|
#endif
|