~ubuntu-branches/ubuntu/maverick/kdeutils/maverick-proposed

« back to all changes in this revision

Viewing changes to okteta/gui/bytearraycolumnview.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-05-28 09:49:30 UTC
  • mfrom: (1.2.44 upstream)
  • Revision ID: james.westby@ubuntu.com-20100528094930-jzynf0obv1n2v13a
Tags: 4:4.4.80-0ubuntu1~ppa1
New upstream beta release

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
    Q_D( const ByteArrayColumnView );
77
77
    return d->isByteTypeColored();
78
78
}
79
 
bool ByteArrayColumnView::offsetColumnVisible() const
80
 
{
81
 
    Q_D( const ByteArrayColumnView );
82
 
    return d->offsetColumnVisible();
83
 
}
84
79
 
85
80
 
86
81
void ByteArrayColumnView::setByteArrayModel( AbstractByteArrayModel* _byteArrayModel )
177
172
    d->handleFontChange( oldFont );
178
173
}
179
174
 
180
 
void ByteArrayColumnView::toggleOffsetColumn( bool showOffsetColumn )
181
 
{
182
 
    Q_D( ByteArrayColumnView );
183
 
    d->toggleOffsetColumn( showOffsetColumn );
184
 
}
185
 
 
186
175
 
187
176
QSize ByteArrayColumnView::minimumSizeHint() const
188
177
{
192
181
}
193
182
 
194
183
 
195
 
void ByteArrayColumnView::updateCursors()
196
 
{
197
 
    Q_D( ByteArrayColumnView );
198
 
    d->updateCursors();
199
 
}
200
 
 
201
 
 
202
184
void ByteArrayColumnView::renderColumns( QPainter* painter, int cx, int cy, int cw, int ch )
203
185
{
204
186
    Q_D( ByteArrayColumnView );
206
188
}
207
189
 
208
190
 
209
 
void ByteArrayColumnView::mousePressEvent( QMouseEvent* mouseEvent )
210
 
{
211
 
    Q_D( ByteArrayColumnView );
212
 
    d->mousePressEvent( mouseEvent );
213
 
}
214
 
 
215
 
 
216
 
void ByteArrayColumnView::mouseMoveEvent( QMouseEvent* mouseEvent )
217
 
{
218
 
    Q_D( ByteArrayColumnView );
219
 
    d->mouseMoveEvent( mouseEvent );
220
 
}
221
 
 
222
 
 
223
 
void ByteArrayColumnView::mouseReleaseEvent( QMouseEvent* mouseEvent )
224
 
{
225
 
    Q_D( ByteArrayColumnView );
226
 
    d->mouseReleaseEvent( mouseEvent );
227
 
}
228
 
 
229
 
 
230
 
// gets called after press and release instead of a plain press event (?)
231
 
void ByteArrayColumnView::mouseDoubleClickEvent( QMouseEvent* mouseEvent )
232
 
{
233
 
    Q_D( ByteArrayColumnView );
234
 
    d->mouseDoubleClickEvent( mouseEvent );
235
 
}
236
 
 
237
 
 
238
191
ByteArrayColumnView::~ByteArrayColumnView()
239
192
{
240
193
}