Cute Chess  0.1
movecommenttoken.h
1 /*
2  This file is part of Cute Chess.
3 
4  Cute Chess is free software: you can redistribute it and/or modify
5  it under the terms of the GNU General Public License as published by
6  the Free Software Foundation, either version 3 of the License, or
7  (at your option) any later version.
8 
9  Cute Chess is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  GNU General Public License for more details.
13 
14  You should have received a copy of the GNU General Public License
15  along with Cute Chess. If not, see <http://www.gnu.org/licenses/>.
16 */
17 
18 #ifndef MOVECOMMENTTOKEN_H
19 #define MOVECOMMENTTOKEN_H
20 
21 #include "pgntoken.h"
22 
26 class MoveCommentToken : public PgnToken
27 {
28  public:
30  MoveCommentToken(int ply, const QString& text);
31 
32  // Inherited from PgnToken
33  virtual QString toString() const;
34 
39  void setValue(const QString& text);
40 
41  protected:
42  // Inherited from PgnToken
43  virtual void vInsert(QTextCursor& cursor);
44 
45  private:
46  int m_ply;
47  QString m_text;
48 };
49 
50 #endif // MOVECOMMENTTOKEN_H
virtual void vInsert(QTextCursor &cursor)
Definition: movecommenttoken.cpp:32
void setValue(const QString &text)
Definition: movecommenttoken.cpp:46
virtual QString toString() const
Definition: movecommenttoken.cpp:27
MoveCommentToken(int ply, const QString &text)
Definition: movecommenttoken.cpp:20
A comment token for a move in a PGN game.
Definition: movecommenttoken.h:26
A text or HTML token in a PGN game.
Definition: pgntoken.h:28