r3ownd
real/frio/r3ownd.h
r3frio
WndSetting Class
r3Output
R3CLID_OUTPUT
r3Wndsettings
R3CLID_WNDSETTINGS - 555
Window, Depth, DitheringScale, AutoSize, CustomDCControl, Master,
int R3RegisterWndSettingsClass(R3APP *app);
Window
Window
R3WNDOSETA_Window
Object
R3OBJ*
window
jsobj.SetWindow(value);
value = jsobj.GetWindow();
R3OBJ* value = ...;
R3SetAttrs(r3obj, R3WNDOSETA_Window, value, R3TAG_END);
R3OBJ* value;
R3GetAttrs(r3obj, R3WNDOSETA_Window, &value, R3TAG_END);
Depth
Depth
R3WNDOSETA_Depth
Integer
R3INT
depth bits/pixel
jsobj.SetDepth(value);
value = jsobj.GetDepth();
R3INT value = ...;
R3SetAttrs(r3obj, R3WNDOSETA_Depth, value, R3TAG_END);
R3INT value;
R3GetAttrs(r3obj, R3WNDOSETA_Depth, &value, R3TAG_END);
DitheringScale
DitheringScale
R3WNDOSETA_DitheringScale
Number
R3FLOAT
dithering scale
jsobj.SetDitheringScale(value);
value = jsobj.GetDitheringScale();
R3FLOAT value = ...;
R3SetAttrs(r3obj, R3WNDOSETA_DitheringScale, value, R3TAG_END);
R3FLOAT value;
R3GetAttrs(r3obj, R3WNDOSETA_DitheringScale, &value, R3TAG_END);
AutoSize
AutoSize
R3WNDOSETA_AutoSize
Boolean
R3BOOL
if TRUE target window is resizeable to current output TotalWidth & Height dimensions
jsobj.SetAutoSize(value);
value = jsobj.GetAutoSize();
R3BOOL value = ...;
R3SetAttrs(r3obj, R3WNDOSETA_AutoSize, value, R3TAG_END);
R3BOOL value;
R3GetAttrs(r3obj, R3WNDOSETA_AutoSize, &value, R3TAG_END);
CustomDCControl
CustomDCControl
R3WNDOSETA_CustomDCControl
Integer
R3INT
draw context buffer flags (r3dc.h) for custom control
jsobj.SetCustomDCControl(value);
value = jsobj.GetCustomDCControl();
R3INT value = ...;
R3SetAttrs(r3obj, R3WNDOSETA_CustomDCControl, value, R3TAG_END);
R3INT value;
R3GetAttrs(r3obj, R3WNDOSETA_CustomDCControl, &value, R3TAG_END);
Master
Master
R3WNDOSETA_Master
Boolean
R3BOOL
control flag for scanline output management
jsobj.SetMaster(value);
value = jsobj.GetMaster();
R3BOOL value = ...;
R3SetAttrs(r3obj, R3WNDOSETA_Master, value, R3TAG_END);
R3BOOL value;
R3GetAttrs(r3obj, R3WNDOSETA_Master, &value, R3TAG_END);
r3appobj *