59 lines
1.5 KiB
C++
59 lines
1.5 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 _QLINE_NUMBER_PANEL_H_
|
|
#define _QLINE_NUMBER_PANEL_H_
|
|
|
|
/*!
|
|
\file qlinenumberpanel.h
|
|
\brief Definition of the QLineNumberPanel class
|
|
|
|
\see QLineNumberPanel
|
|
*/
|
|
|
|
#include "qpanel.h"
|
|
|
|
class QCE_EXPORT QLineNumberPanel : public QPanel {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Q_PANEL(QLineNumberPanel, "Line Number Panel")
|
|
|
|
QLineNumberPanel(QWidget *p = nullptr);
|
|
virtual ~QLineNumberPanel();
|
|
|
|
bool isVerboseMode() const;
|
|
|
|
virtual QString type() const;
|
|
virtual QString name() const;
|
|
|
|
virtual QSize sizeHint() const;
|
|
|
|
public slots:
|
|
void setVerboseMode(bool y);
|
|
|
|
void setFont_slot(const QFont &font);
|
|
|
|
protected:
|
|
virtual void editorChange(QEditor *e);
|
|
virtual void paint(QPainter *p, QEditor *e);
|
|
|
|
bool m_verbose;
|
|
int mutable m_minWidth = 0;
|
|
int _fixWidth = 0;
|
|
};
|
|
|
|
#endif // _QLINE_NUMBER_PANEL_H_
|