Be memory efficient and clear hunk data after displaying it
[vng.git] / hunks / Hunk.h
bloba357071167566ec1c7465c512fd743e0186b3469
1 /*
2 * This file is part of the vng project
3 * Copyright (C) 2008 Thomas Zander <tzander@trolltech.com>
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #ifndef HUNK_H
20 #define HUNK_H
22 #include "../Vng.h"
24 #include <QByteArray>
26 class Hunk {
27 public:
28 Hunk();
29 Hunk(const Hunk &other);
30 ~Hunk();
32 void addLine(const QByteArray &line);
33 bool isEmpty() const;
35 int lineNumber() const;
36 int lineNumber(int subHunk) const;
37 int subHunkCount() const;
38 int linesAdded() const;
39 int linesRemoved() const;
41 Vng::Acceptance acceptance() const;
42 Vng::Acceptance acceptance(int subHunk) const;
43 void setAcceptance(Vng::Acceptance accepted);
44 void setAcceptance(int subHunk, Vng::Acceptance accepted);
45 QByteArray header() const;
47 QByteArray subHunk(int index) const;
48 QByteArray patch() const;
49 QByteArray acceptedPatch() const;
50 QByteArray rejectedPatch() const;
52 Hunk &operator=(const Hunk &other);
53 private:
54 class Private;
55 Private * d;
58 #endif