skia2/debugger/QT/SkListWidget.h
commit-bot@chromium.org 57f74e0aa9 Debugger improvements
This CL:
  improves the 'SaveAs' functionality
  allows switching between # and offset indexing in the command list
  minor nit cleanup

R=bsalomon@google.com

Author: robertphillips@google.com

Review URL: https://codereview.chromium.org/211383003

git-svn-id: http://skia.googlecode.com/svn/trunk@13950 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-03-25 23:31:33 +00:00

57 lines
1.2 KiB
C++

/*
* Copyright 2012 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SKLISTWIDGET_H_
#define SKLISTWIDGET_H_
#include <QAbstractItemDelegate>
#include <QPainter>
/** \class SkListWidget
This widget contains the draw commands.
*/
class SkListWidget : public QAbstractItemDelegate {
public:
enum IndexStyle {
kIndex_IndexStyle,
kOffset_IndexStyle,
};
/**
Constructs the list widget with the specified parent for layout purposes.
@param parent The parent container of this widget
*/
SkListWidget(QObject* parent = NULL) : fIndexStyle(kIndex_IndexStyle) {}
virtual ~SkListWidget() {}
/**
Draws the current state of the widget. Overriden from QWidget.
*/
void paint(QPainter* painter, const QStyleOptionViewItem& option,
const QModelIndex& index ) const;
/**
Returns the default size of the widget. Overriden from QWidget.
*/
QSize sizeHint(const QStyleOptionViewItem& option,
const QModelIndex& index) const;
void setIndexStyle(IndexStyle indexStyle) {
fIndexStyle = indexStyle;
}
protected:
IndexStyle fIndexStyle;
};
#endif