blob: 23427f577b4676edd2820f3fd2db441e7ee9757d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
/***************************************************************************
kcharcolumn.h - description
-------------------
begin : Mit Sep 3 2003
copyright : (C) 2003 by Friedrich W. H. Kossebau
email : Friedrich.W.H@Kossebau.de
***************************************************************************/
/***************************************************************************
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Library General Public *
* License version 2 as published by the Free Software Foundation. *
* *
***************************************************************************/
#ifndef KHE_KCHARCOLUMN_H
#define KHE_KCHARCOLUMN_H
// qt specific
#include <tqstring.h>
// lib specific
#include "kbuffercolumn.h"
class TQPainter;
class TQColor;
namespace KHE
{
/** buffer column that interprets the bytes as chars
*
*@author Friedrich W. H. Kossebau
*/
class KCharColumn : public TDEBufferColumn
{
public:
KCharColumn( KColumnsView *CV, KDataBuffer *B, TDEBufferLayout *L, TDEBufferRanges *R );
virtual ~KCharColumn();
public: // modification access
/** sets whether "unprintable" chars (>32) should be displayed in the char column
* with their corresponding character.
* @param SU
* returns true if there was a change
*/
bool setShowUnprintable( bool SU = true );
/** sets the substitute character for "unprintable" chars
* returns true if there was a change
*/
bool setSubstituteChar( TQChar SC );
/** sets the undefined character for "undefined" chars
* returns true if there was a change
*/
bool setUndefinedChar( TQChar UC );
public: // value access
/** returns true if "unprintable" chars (>32) are displayed in the char column
* with their corresponding character, default is false
*/
bool showUnprintable() const;
/** returns the actually used substitute character for "unprintable" chars, default is '.' */
TQChar substituteChar() const;
/** returns the actually used undefined character for "undefined" chars, default is '?' */
TQChar undefinedChar() const;
protected: // TDEBufferColumn API
virtual void drawByte( TQPainter *P, char Byte, KHEChar B, const TQColor &Color ) const;
protected:
/** */
bool ShowUnprintable;
/** */
TQChar SubstituteChar;
/** */
TQChar UndefinedChar;
};
inline bool KCharColumn::showUnprintable() const { return ShowUnprintable; }
inline TQChar KCharColumn::substituteChar() const { return SubstituteChar; }
inline TQChar KCharColumn::undefinedChar() const { return UndefinedChar; }
inline bool KCharColumn::setSubstituteChar( TQChar SC )
{
if( SubstituteChar == SC )
return false;
SubstituteChar = SC;
return true;
}
inline bool KCharColumn::setUndefinedChar( TQChar UC )
{
if( UndefinedChar == UC )
return false;
UndefinedChar = UC;
return true;
}
inline bool KCharColumn::setShowUnprintable( bool SU )
{
if( ShowUnprintable == SU )
return false;
ShowUnprintable = SU;
return true;
}
}
#endif
|