21#import "OFKernelEventObserver.h"
27OF_ASSUME_NONNULL_BEGIN
41#ifdef OF_STDIO_STREAM_WIN32_CONSOLE_H
42OF_SUBCLASSING_RESTRICTED
45#if !defined(OF_WINDOWS) && !defined(OF_AMIGAOS) && !defined(OF_WII_U)
49#if defined(OF_AMIGAOS)
52#elif !defined(OF_WII_U)
61@property (readonly, nonatomic)
bool hasTerminal;
67@property (readonly, nonatomic)
int columns;
73@property (readonly, nonatomic)
int rows;
75#if defined(OF_WII) || defined(OF_NINTENDO_DS) || defined(OF_NINTENDO_3DS) || \
86- (instancetype)init OF_UNAVAILABLE;
94- (void)setForegroundColor: (
OFColor *)color;
102- (void)setBackgroundColor: (
OFColor *)color;
128- (void)setCursorColumn: (
unsigned int)column;
136- (void)setCursorPosition: (
OFPoint)position;
144- (void)setRelativeCursorPosition: (
OFPoint)position;
void OFLog(OFConstantString *format,...)
Logs the specified printf-style format to OFStdErr.
Definition OFStdIOStream.m:113
OFStdIOStream * OFStdIn
The standard input as an OFStream.
Definition OFStdIOStream.m:99
OFStdIOStream * OFStdOut
The standard output as an OFStream.
Definition OFStdIOStream.m:100
void OFLogV(OFConstantString *format, va_list arguments)
Logs the specified printf-style format to OFStdErr.
Definition OFStdIOStream.m:123
OFStdIOStream * OFStdErr
The standard error as an OFStream.
Definition OFStdIOStream.m:101
A class for storing a color.
Definition OFColor.h:30
A class for storing constant strings using the @"" literal.
Definition OFConstantString.h:42
A class for providing standard input, output and error as OFStream.
Definition OFStdIOStream.h:45
A base class for different types of streams.
Definition OFStream.h:280
This protocol is implemented by classes which can be observed for readiness for reading by OFKernelEv...
Definition OFKernelEventObserver.h:83
This protocol is implemented by classes which can be observed for readiness for writing by OFKernelEv...
Definition OFKernelEventObserver.h:97
A point in 2D space.
Definition OFObject.h:161