OSDN Git Service

Initial checkin for denncoCreator
[dennco/denncoCreator.git] / Source / codeeditor / dccodeeditor.h
1 //  Copyright (c) 2012 Dennco Project
2 //
3 // This program is free software: you can redistribute it and/or modify
4 // it under the terms of the GNU General Public License as published by
5 // the Free Software Foundation, either version 3 of the License, or
6 // (at your option) any later version.
7 //
8 // This program is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 // GNU General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
16 //
17 //  Created by tkawata on Sep-30, 2012.
18 //
19
20 #ifndef DCCODEEDITOR_H
21 #define DCCODEEDITOR_H
22
23 #include <QPlainTextEdit>
24
25 class DCCodeHighlighter;
26
27 class DCCodeEditor : public QPlainTextEdit
28 {
29     Q_OBJECT
30 public:
31     explicit DCCodeEditor(QWidget *parent = 0);
32     
33     void lineNumberAreaPaintEvent(QPaintEvent *event);
34     int lineNumberAreaWidth();
35
36     virtual QSize sizeHint() const;
37
38 protected:
39     void resizeEvent(QResizeEvent *event);
40
41 signals:
42     
43 public slots:
44
45 private slots:
46     void updateLineNumberAreaWidth(int newBlockCount);
47     void highlightCurrentLine();
48     void updateLineNumberArea(const QRect &, int);
49
50 private:
51     DCCodeHighlighter   *mHighlighter;
52     QWidget             *lineNumberArea;
53     
54 };
55
56
57
58 class DCLineNumberArea : public QWidget
59 {
60 public:
61     DCLineNumberArea(DCCodeEditor *editor) : QWidget(editor) {
62         codeEditor = editor;
63     }
64
65     QSize sizeHint() const {
66         return QSize(codeEditor->lineNumberAreaWidth(), 0);
67     }
68
69 protected:
70     void paintEvent(QPaintEvent *event) {
71         codeEditor->lineNumberAreaPaintEvent(event);
72     }
73
74 private:
75     DCCodeEditor *codeEditor;
76 };
77
78 #endif // DCCODEEDITOR_H