Board index » delphi » Blinking cursor for graph input?
ChrisEd
![]() Delphi Developer |
Wed, 18 Jun 1902 08:00:00 GMT
|
ChrisEd
![]() Delphi Developer |
Wed, 18 Jun 1902 08:00:00 GMT
Blinking cursor for graph input?I am creating a procedure to read input in graphics mode. The only Thanks, |
Alf P. Steinbac
![]() Delphi Developer |
Wed, 18 Jun 1902 08:00:00 GMT
Re:Blinking cursor for graph input?QuoteChrisEd wrote: IBM and Microsoft just because that's what people are used to. - Alf |
Timo Sal
![]() Delphi Developer |
Wed, 18 Jun 1902 08:00:00 GMT
Re:Blinking cursor for graph input?QuoteIn article <326978C1.5...@Why.net>, ChrisEd <S...@Why.net> wrote: :problem that I'm having is making a blinking cursor. The only way I can Forget that and make an unblinking cursor with Bar. All the best, Timo .................................................................... |
R.E.Dona
![]() Delphi Developer |
Wed, 18 Jun 1902 08:00:00 GMT
Re:Blinking cursor for graph input?QuoteIn article <326A2EC5.1...@online.no> Alf P. Steinbach wrote: the movement to help them locate the blessed thing. :) When your eyes start to fail you you'll feel differently about the ...red You can call it folly if you want, |
Alf P. Steinbac
![]() Delphi Developer |
Wed, 18 Jun 1902 08:00:00 GMT
Re:Blinking cursor for graph input?QuoteR.E.Donais wrote: the eyes -- this is a hardwired response, as well as part of the functionality of some dedicated retina cells (which respond to changes in the visual field). However, that attraction is *precisely* why a blinking cursor is so darn irritating, sort of like a TV: you can't avoid looking at it! No problem making it easy for sight impaired people to locate the cursor, there are lots of ways (all of them based on creating changes in the visual field, but only when the user specifically request it, e.g. by hitting the Home button). - Alf |
Jason Burgo
![]() Delphi Developer |
Wed, 18 Jun 1902 08:00:00 GMT
Re:Blinking cursor for graph input?In article: <54dm7r$...@reimari.uwasa.fi> t...@reimari.uwasa.fi (Timo Salmi) Quote
even truer on a high resolution screen that might have 6000 or more characters on it. A blinking cursor can be implemented on a graphics screen with relative ease. The Basic steps are: Implement an ISR chained to int 8 (the timer interrupt) that decriments the Poll the boolean flag as part of your main program loop (eg at the same time You could either use an XOR operation to draw/undraw the cursor, or save the There are a few more details to consider, like if you want a normal and -- Jay -------------------------------------------------------------------------- |