54 lines
1.4 KiB
C++
54 lines
1.4 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2006-2009 fullmetalcoder <fullmetalcoder@hotmail.fr>
|
|
**
|
|
** This file is part of the Edyuk project <http://edyuk.org>
|
|
**
|
|
** This file may be used under the terms of the GNU General Public License
|
|
** version 3 as published by the Free Software Foundation and appearing in the
|
|
** file GPL.txt included in the packaging of this file.
|
|
**
|
|
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
|
|
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#ifndef _QFOLD_PANEL_H_
|
|
#define _QFOLD_PANEL_H_
|
|
|
|
#include "qpanel.h"
|
|
|
|
/*!
|
|
\file qfoldpanel.h
|
|
\brief Definition of the QFoldPanel class.
|
|
|
|
\see QFoldPanel
|
|
*/
|
|
|
|
class QDocumentLine;
|
|
|
|
class QCE_EXPORT QFoldPanel : public QPanel {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Q_PANEL(QFoldPanel, "Fold Panel")
|
|
|
|
QFoldPanel(QWidget *p = nullptr);
|
|
virtual ~QFoldPanel();
|
|
|
|
virtual QString type() const;
|
|
virtual QString name() const;
|
|
|
|
protected:
|
|
virtual void mousePressEvent(QMouseEvent *e);
|
|
virtual void paint(QPainter *p, QEditor *e);
|
|
|
|
QRect drawIcon(QPainter *p, QEditor *e, int x, int y, bool expand);
|
|
|
|
private:
|
|
QList<QRect> m_rects;
|
|
QList<int> m_lines;
|
|
};
|
|
|
|
#endif // _QFOLD_PANEL_H_
|