[open-beos-printing] Re: Further PDF Writer Progress
- From: Michael Pfeiffer <michael.pfeiffer@xxxxxxxxx>
- To: open-beos-printing@xxxxxxxxxxxxx
- Date: Thu, 04 Apr 2002 20:06:56 +0000
>What if DocInfoText does not handle tab, shift tab, ctrl tab, ... itself
>but calls KeyDown of the parent class BView instead?
In reply to my own question. The code below works fine!
void TextView::KeyDown(const char *bytes, int32 numBytes)
{
if (numBytes == 1 && *bytes == B_TAB) {
BView::KeyDown(bytes, numBytes);
return;
}
BTextView::KeyDown(bytes, numBytes);
}
Thank you Simon for the tip!
- Michael
- References:
- [open-beos-printing] Re: Further PDF Writer Progress
- From: Michael Pfeiffer
Other related posts:
- » [open-beos-printing] Further PDF Writer Progress
- » [open-beos-printing] Re: Further PDF Writer Progress
- » [open-beos-printing] Re: Further PDF Writer Progress
- » [open-beos-printing] Re: Further PDF Writer Progress
- » [open-beos-printing] Re: Further PDF Writer Progress
- » [open-beos-printing] Re: Further PDF Writer Progress
- » [open-beos-printing] Re: Further PDF Writer Progress
- » [open-beos-printing] Re: Further PDF Writer Progress
- » [open-beos-printing] Re: Further PDF Writer Progress
- » [open-beos-printing] Re: Further PDF Writer Progress
- » [open-beos-printing] Re: Further PDF Writer Progress
- [open-beos-printing] Re: Further PDF Writer Progress
- From: Michael Pfeiffer