mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-24 11:41:58 +00:00
revert frseltick
This commit is contained in:
parent
af4c27865c
commit
024c9812e4
2 changed files with 3 additions and 27 deletions
|
@ -1,6 +1,6 @@
|
|||
.TH FRAME 3
|
||||
.SH NAME
|
||||
frinit, frsetrects, frinittick, frclear, frcharofpt, frptofchar, frinsert, frdelete, frselect, frtick, frselectpaint, frdrawsel, frdrawsel0, frdrawseltick, frgetmouse \- frames of text
|
||||
frinit, frsetrects, frinittick, frclear, frcharofpt, frptofchar, frinsert, frdelete, frselect, frtick, frselectpaint, frdrawsel, frdrawsel0, frgetmouse \- frames of text
|
||||
.SH SYNOPSIS
|
||||
.nf
|
||||
.B
|
||||
|
@ -55,11 +55,6 @@ void frdrawsel(Frame *f, Point pt0, ulong p0, ulong p1,
|
|||
int highlighted)
|
||||
.PP
|
||||
.B
|
||||
void frdrawseltick(Frame *f, Point pt0, ulong p0, ulong p1,
|
||||
.B
|
||||
int highlighted, int ticked)
|
||||
.PP
|
||||
.B
|
||||
void frdrawsel0(Frame *f, Point pt0, ulong p0, ulong p1,
|
||||
.B
|
||||
Image *back, Image *text)
|
||||
|
@ -344,19 +339,6 @@ on the screen; like all of the selection-helper routines'
|
|||
.B Point
|
||||
arguments, it must be a value generated by
|
||||
.IR frptofchar .
|
||||
.I Frdrawseltick
|
||||
is identical to
|
||||
.I frdrawsel
|
||||
except that the
|
||||
.I ticked
|
||||
flag controls whether to draw the tick
|
||||
when
|
||||
.I highlighted
|
||||
is non-zero and
|
||||
.I p0
|
||||
and
|
||||
.I p1
|
||||
are equal.
|
||||
.I Frdrawsel0
|
||||
is a lower-level routine, taking as arguments a background color,
|
||||
.IR back ,
|
||||
|
|
|
@ -32,7 +32,7 @@ nbytes(char *s0, int nr)
|
|||
}
|
||||
|
||||
void
|
||||
frdrawseltick(Frame *f, Point pt, ulong p0, ulong p1, int issel, int ticked)
|
||||
frdrawsel(Frame *f, Point pt, ulong p0, ulong p1, int issel)
|
||||
{
|
||||
Image *back, *text;
|
||||
|
||||
|
@ -40,7 +40,7 @@ frdrawseltick(Frame *f, Point pt, ulong p0, ulong p1, int issel, int ticked)
|
|||
frtick(f, frptofchar(f, f->p0), 0);
|
||||
|
||||
if(p0 == p1){
|
||||
frtick(f, pt, issel && ticked);
|
||||
frtick(f, pt, issel);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -55,12 +55,6 @@ frdrawseltick(Frame *f, Point pt, ulong p0, ulong p1, int issel, int ticked)
|
|||
frdrawsel0(f, pt, p0, p1, back, text);
|
||||
}
|
||||
|
||||
void
|
||||
frdrawsel(Frame *f, Point pt, ulong p0, ulong p1, int issel)
|
||||
{
|
||||
frdrawseltick(f, pt, p0, p1, issel, issel);
|
||||
}
|
||||
|
||||
void
|
||||
frdrawsel0(Frame *f, Point pt, ulong p0, ulong p1, Image *back, Image *text)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue