textcontentchange.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef TEXTCONTENTCHANGE_H
00022 #define TEXTCONTENTCHANGE_H
00023
00024 #include "src/data/node/abstractcontentchange.h"
00025 #include "src/data/node/textnodecontent.h"
00026 #include "src/gui/view/textedit.h"
00027
00028
00036 class TextContentChange : public AbstractContentChange
00037 {
00038 public:
00046 TextContentChange(QString change, TextNodeContent *content, TextEdit *edit);
00047
00048 void updateContent();
00049 void updateContentView();
00050 private:
00051 QString change;
00052 TextNodeContent *content;
00053 TextEdit *edit;
00054 };
00055
00056 #endif // TEXTCONTENTCHANGE_H
00057