2005-11-18 15:26:20 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2001-2005, Haiku, Inc.
|
|
|
|
* Distributed under the terms of the MIT license.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Adi Oanca <adioanca@myrealbox.com>
|
|
|
|
* Axel Dörfler, axeld@pinc-software.de
|
|
|
|
* Stephan Aßmus, <superstippi@gmx.de>
|
|
|
|
*/
|
2004-01-13 14:00:22 +03:00
|
|
|
#ifndef _SCREEN_H_
|
|
|
|
#define _SCREEN_H_
|
2004-01-12 01:12:55 +03:00
|
|
|
|
2005-11-18 15:26:20 +03:00
|
|
|
|
2005-06-24 03:46:17 +04:00
|
|
|
#include <Accelerant.h>
|
2005-11-26 19:55:23 +03:00
|
|
|
#include <GraphicsDefs.h>
|
2004-01-12 01:12:55 +03:00
|
|
|
#include <Point.h>
|
2005-05-26 13:21:51 +04:00
|
|
|
|
2005-11-18 15:26:20 +03:00
|
|
|
|
2005-11-04 18:23:54 +03:00
|
|
|
class DrawingEngine;
|
2005-06-24 03:46:17 +04:00
|
|
|
class HWInterface;
|
2004-01-12 01:12:55 +03:00
|
|
|
|
2005-05-26 13:21:51 +04:00
|
|
|
class Screen {
|
2005-06-24 03:46:17 +04:00
|
|
|
public:
|
2005-11-18 15:26:20 +03:00
|
|
|
Screen(::HWInterface *interface, int32 id);
|
2005-06-24 03:46:17 +04:00
|
|
|
Screen();
|
|
|
|
virtual ~Screen();
|
|
|
|
|
|
|
|
status_t Initialize();
|
|
|
|
void Shutdown();
|
|
|
|
|
|
|
|
void SetID(int32 ID)
|
|
|
|
{ fID = ID; }
|
|
|
|
|
|
|
|
status_t SetMode(display_mode mode);
|
|
|
|
status_t SetMode(uint16 width,
|
|
|
|
uint16 height,
|
|
|
|
uint32 colorspace,
|
|
|
|
float frequency);
|
|
|
|
void GetMode(display_mode* mode) const;
|
|
|
|
void GetMode(uint16 &width,
|
|
|
|
uint16 &height,
|
|
|
|
uint32 &colorspace,
|
|
|
|
float &frequency) const;
|
2005-07-15 16:45:23 +04:00
|
|
|
BRect Frame() const;
|
2005-11-26 19:55:23 +03:00
|
|
|
color_space ColorSpace() const;
|
2005-07-15 16:45:23 +04:00
|
|
|
|
2005-06-24 03:46:17 +04:00
|
|
|
inline int32 ScreenNumber() const
|
|
|
|
{ return fID; }
|
|
|
|
|
2005-11-04 18:23:54 +03:00
|
|
|
inline DrawingEngine* GetDrawingEngine() const
|
2005-06-24 03:46:17 +04:00
|
|
|
{ return fDriver; }
|
2005-11-18 15:26:20 +03:00
|
|
|
inline ::HWInterface* HWInterface() const
|
2005-06-24 03:46:17 +04:00
|
|
|
{ return fHWInterface; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
status_t _FindMode(uint16 width,
|
|
|
|
uint16 height,
|
|
|
|
uint32 colorspace,
|
|
|
|
float frequency,
|
|
|
|
display_mode* mode) const;
|
|
|
|
|
2005-07-17 02:50:17 +04:00
|
|
|
int32 _FindMode(const display_mode* modeList,
|
|
|
|
uint32 count, uint16 width, uint16 height, uint32 colorspace,
|
|
|
|
float frequency,
|
|
|
|
bool ignoreFrequency = false) const;
|
|
|
|
|
2005-06-24 03:46:17 +04:00
|
|
|
int32 fID;
|
2005-11-04 18:23:54 +03:00
|
|
|
DrawingEngine* fDriver;
|
2005-11-18 15:26:20 +03:00
|
|
|
::HWInterface* fHWInterface;
|
2004-01-12 01:12:55 +03:00
|
|
|
};
|
|
|
|
|
2005-05-26 13:21:51 +04:00
|
|
|
#endif /* _SCREEN_H_ */
|