Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fb2code.hpp « source - github.com/lintest/fb2edit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e8e4311e24d7f74e1aa3503f780dedbbd8a205fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef FB2CODE_H
#define FB2CODE_H

#include <Qsci/qsciscintilla.h>
#include <QList>

class Fb2Scintilla : public QsciScintilla
{
    Q_OBJECT
public:
    explicit Fb2Scintilla(QWidget *parent = 0);
    void load(const QByteArray &array, const QList<int> &folds);
    
signals:

public slots:

private slots:
    void linesChanged();

};

#endif // FB2CODE_H