Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
369e0581
Commit
369e0581
authored
21 years ago
by
rswindell
Browse files
Options
Downloads
Patches
Plain Diff
Exposed the Terminal Screen's AutoWrap attribute as a property.
parent
963cd5c7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/sbbs3/ctrl/emulvt.hpp
+36
-14
36 additions, 14 deletions
src/sbbs3/ctrl/emulvt.hpp
src/sbbs3/ctrl/emulvt.pas
+14
-0
14 additions, 0 deletions
src/sbbs3/ctrl/emulvt.pas
with
50 additions
and
14 deletions
src/sbbs3/ctrl/emulvt.hpp
+
36
−
14
View file @
369e0581
...
...
@@ -2,10 +2,10 @@
// Copyright (c) 1995, 2002 by Borland Software Corporation
// All rights reserved
// (DO NOT EDIT: machine generated header) 'Emul
vt
.pas' rev: 6.00
// (DO NOT EDIT: machine generated header) 'Emul
VT
.pas' rev: 6.00
#ifndef Emul
vt
HPP
#define Emul
vt
HPP
#ifndef Emul
VT
HPP
#define Emul
VT
HPP
#pragma delphiheader begin
#pragma option push -w-
...
...
@@ -70,8 +70,8 @@ class PASCALIMPLEMENTATION TLine : public System::TObject
typedef
System
::
TObject
inherited
;
public:
char
Txt
[
1
33
];
Byte
Att
[
1
33
];
char
Txt
[
1
61
];
Byte
Att
[
1
61
];
__fastcall
TLine
(
void
);
void
__fastcall
Clear
(
Byte
Attr
);
public:
...
...
@@ -206,7 +206,8 @@ class PASCALIMPLEMENTATION TCustomEmulVT : public Controls::TCustomControl
typedef
Controls
::
TCustomControl
inherited
;
private:
TScreen
*
FScreen
;
int
FCharPos
[
162
];
int
FLinePos
[
52
];
TextFile
FFileHandle
;
bool
FCursorVisible
;
bool
FCaretShown
;
...
...
@@ -236,8 +237,13 @@ private:
Types
::
TRect
FSelectRect
;
#pragma pack(pop)
int
FTopMargin
;
int
FLeftMargin
;
int
FRightMargin
;
int
FBottomMargin
;
HPALETTE
FPal
;
tagPALETTEENTRY
FPaletteEntries
[
16
];
int
FMarginColor
;
HIDESBASE
MESSAGE
void
__fastcall
WMPaint
(
Messages
::
TWMPaint
&
Message
);
HIDESBASE
MESSAGE
void
__fastcall
WMSetFocus
(
Messages
::
TWMSetFocus
&
Message
);
HIDESBASE
MESSAGE
void
__fastcall
WMKillFocus
(
Messages
::
TWMKillFocus
&
Message
);
...
...
@@ -252,6 +258,7 @@ private:
HIDESBASE
void
__fastcall
SetFont
(
Graphics
::
TFont
*
Value
);
void
__fastcall
SetAutoLF
(
bool
Value
);
void
__fastcall
SetAutoCR
(
bool
Value
);
void
__fastcall
SetAutoWrap
(
bool
Value
);
void
__fastcall
SetXlat
(
bool
Value
);
void
__fastcall
SetLog
(
bool
Value
);
void
__fastcall
SetRows
(
int
Value
);
...
...
@@ -263,14 +270,21 @@ private:
void
__fastcall
SetLineHeight
(
int
Value
);
bool
__fastcall
GetAutoLF
(
void
);
bool
__fastcall
GetAutoCR
(
void
);
bool
__fastcall
GetAutoWrap
(
void
);
bool
__fastcall
GetXlat
(
void
);
int
__fastcall
GetRows
(
void
);
int
__fastcall
GetCols
(
void
);
int
__fastcall
GetBackRows
(
void
);
TBackColors
__fastcall
GetBackColor
(
void
);
TScreenOptions
__fastcall
GetOptions
(
void
);
void
__fastcall
SetMarginColor
(
const
int
Value
);
void
__fastcall
SetLeftMargin
(
const
int
Value
);
void
__fastcall
SetBottomMargin
(
const
int
Value
);
void
__fastcall
SetRightMargin
(
const
int
Value
);
void
__fastcall
SetTopMargin
(
const
int
Value
);
protected:
TScreen
*
FScreen
;
void
__fastcall
AppMessageHandler
(
tagMSG
&
Msg
,
bool
&
Handled
);
virtual
void
__fastcall
DoKeyBuffer
(
char
*
Buffer
,
int
Len
);
void
__fastcall
PaintGraphicChar
(
HDC
DC
,
int
X
,
int
Y
,
Types
::
PRect
rc
,
char
ch
);
...
...
@@ -302,9 +316,14 @@ public:
__property
bool
GraphicDraw
=
{
read
=
FGraphicDraw
,
write
=
FGraphicDraw
,
nodefault
};
__property
int
TopLine
=
{
read
=
FTopLine
,
write
=
SetTopLine
,
nodefault
};
__property
Stdctrls
::
TScrollBar
*
VScrollBar
=
{
read
=
FVScrollBar
};
__property
int
TopMargin
=
{
read
=
FTopMargin
,
write
=
SetTopMargin
,
nodefault
};
__property
int
LeftMargin
=
{
read
=
FLeftMargin
,
write
=
SetLeftMargin
,
nodefault
};
__property
int
RightMargin
=
{
read
=
FRightMargin
,
write
=
SetRightMargin
,
nodefault
};
__property
int
BottomMargin
=
{
read
=
FBottomMargin
,
write
=
SetBottomMargin
,
nodefault
};
__property
int
MarginColor
=
{
read
=
FMarginColor
,
write
=
SetMarginColor
,
nodefault
};
private
:
void
__fastcall
PaintOneLine
(
HDC
DC
,
int
Y
,
int
Y1
,
const
TLine
*
Line
,
int
nColFrom
,
int
nColTo
);
void
__fastcall
PaintOneLine
(
HDC
DC
,
int
Y
,
int
Y1
,
const
TLine
*
Line
,
int
nColFrom
,
int
nColTo
,
bool
Blank
);
void
__fastcall
SetupFont
(
void
);
__property
AnsiString
Text
=
{
read
=
ReadStr
,
write
=
WriteStr
};
__property
OnMouseMove
;
...
...
@@ -324,6 +343,7 @@ private:
__property
bool
LocalEcho
=
{
read
=
FLocalEcho
,
write
=
FLocalEcho
,
nodefault
};
__property
bool
AutoLF
=
{
read
=
GetAutoLF
,
write
=
SetAutoLF
,
nodefault
};
__property
bool
AutoCR
=
{
read
=
GetAutoCR
,
write
=
SetAutoCR
,
nodefault
};
__property
bool
AutoWrap
=
{
read
=
GetAutoWrap
,
write
=
SetAutoWrap
,
nodefault
};
__property
bool
Xlat
=
{
read
=
GetXlat
,
write
=
SetXlat
,
nodefault
};
__property
bool
MonoChrome
=
{
read
=
FMonoChrome
,
write
=
FMonoChrome
,
nodefault
};
__property
bool
Log
=
{
read
=
FLog
,
write
=
SetLog
,
nodefault
};
...
...
@@ -369,6 +389,7 @@ __published:
__property
LocalEcho
;
__property
AutoLF
;
__property
AutoCR
;
__property
AutoWrap
;
__property
Xlat
;
__property
MonoChrome
;
__property
Log
;
...
...
@@ -382,6 +403,11 @@ __published:
__property
TabStop
=
{
default
=
0
};
__property
TabOrder
=
{
default
=-
1
};
__property
FKeys
;
__property
TopMargin
;
__property
LeftMargin
;
__property
RightMargin
;
__property
BottomMargin
;
__property
MarginColor
;
public
:
#pragma option push -w-inl
/* TCustomEmulVT.Create */
inline
__fastcall
virtual
TEmulVT
(
Classes
::
TComponent
*
AOwner
)
:
TCustomEmulVT
(
AOwner
)
{
}
...
...
@@ -399,14 +425,10 @@ public:
//-- var, const, procedure ---------------------------------------------------
static
const
Byte
EmulVTVersion
=
0xd
8
;
static
const
Byte
EmulVTVersion
=
0xd
b
;
extern
PACKAGE
AnsiString
CopyRight
;
static
const
Shortint
MAX_ROW
=
0x32
;
static
const
Byte
MAX_COL
=
0x84
;
static
const
Shortint
TopMargin
=
0x4
;
static
const
Shortint
LeftMargin
=
0x6
;
static
const
Shortint
RightMargin
=
0x6
;
static
const
Shortint
BottomMargin
=
0x4
;
static
const
Byte
MAX_COL
=
0xa0
;
static
const
Shortint
NumPaletteEntries
=
0x10
;
static
const
Shortint
F_BLACK
=
0x0
;
static
const
Shortint
F_BLUE
=
0x1
;
...
...
@@ -444,4 +466,4 @@ using namespace Emulvt;
#pragma delphiheader end.
//-- end unit ----------------------------------------------------------------
#endif // Emul
vt
#endif // Emul
VT
This diff is collapsed.
Click to expand it.
src/sbbs3/ctrl/emulvt.pas
+
14
−
0
View file @
369e0581
...
...
@@ -311,6 +311,7 @@ type
procedure
SetFont
(
Value
:
TFont
);
procedure
SetAutoLF
(
Value
:
Boolean
);
procedure
SetAutoCR
(
Value
:
Boolean
);
procedure
SetAutoWrap
(
Value
:
Boolean
);
procedure
SetXlat
(
Value
:
Boolean
);
procedure
SetLog
(
Value
:
Boolean
);
procedure
SetRows
(
Value
:
Integer
);
...
...
@@ -322,6 +323,7 @@ type
procedure
SetLineHeight
(
Value
:
Integer
);
function
GetAutoLF
:
Boolean
;
function
GetAutoCR
:
Boolean
;
function
GetAutoWrap
:
Boolean
;
function
GetXlat
:
Boolean
;
function
GetRows
:
Integer
;
function
GetCols
:
Integer
;
...
...
@@ -395,6 +397,7 @@ type
property
LocalEcho
:
Boolean
read
FLocalEcho
write
FLocalEcho
;
property
AutoLF
:
Boolean
read
GetAutoLF
write
SetAutoLF
;
property
AutoCR
:
Boolean
read
GetAutoCR
write
SetAutoCR
;
property
AutoWrap
:
Boolean
read
GetAutoWrap
write
SetAutoWrap
;
property
Xlat
:
Boolean
read
GetXlat
write
SetXlat
;
property
MonoChrome
:
Boolean
read
FMonoChrome
write
FMonoChrome
;
property
Log
:
Boolean
read
FLog
write
SetLog
;
...
...
@@ -430,6 +433,7 @@ type
property
LocalEcho
;
property
AutoLF
;
property
AutoCR
;
property
AutoWrap
;
property
Xlat
;
property
MonoChrome
;
property
Log
;
...
...
@@ -2613,6 +2617,11 @@ begin
FScreen
.
FAutoCR
:=
Value
;
end
;
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
procedure
TCustomEmulVT
.
SetAutoWrap
(
Value
:
Boolean
);
begin
FScreen
.
FAutoWrap
:=
Value
;
end
;
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
procedure
TCustomEmulVT
.
SetLog
(
Value
:
Boolean
);
...
...
@@ -2666,6 +2675,11 @@ begin
Result
:=
FScreen
.
FAutoCR
;
end
;
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
function
TCustomEmulVT
.
GetAutoWrap
:
Boolean
;
begin
Result
:=
FScreen
.
FAutoWrap
;
end
;
{* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *}
destructor
TCustomEmulVT
.
Destroy
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment