wgtlinenumberarea.h 404 B

1234567891011121314151617181920212223
  1. #ifndef WGTLINENUMBERAREA_H
  2. #define WGTLINENUMBERAREA_H
  3. #include <QWidget>
  4. #include "wgtcodeeditor.h"
  5. class WgtLineNumberArea : public QWidget
  6. {
  7. Q_OBJECT
  8. public:
  9. WgtLineNumberArea(WgtCodeEditor *editor);
  10. QSize sizeHint() const Q_DECL_OVERRIDE;
  11. protected:
  12. void paintEvent(QPaintEvent *event) Q_DECL_OVERRIDE;
  13. private:
  14. WgtCodeEditor *codeEditor;
  15. };
  16. #endif // WGTLINENUMBERAREA_H