summaryrefslogtreecommitdiff
path: root/noncore/graphics/drawpad/page.cpp
blob: a08168077514c1e9e1936f1753ed296c0ce224d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/***************************************************************************
 *                                                                         *
 *   DrawPad - a drawing program for Opie Environment                      *
 *                                                                         *
 *   (C) 2002 by S. Prud'homme <prudhomme@laposte.net>                     *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#include "page.h"

const int PAGE_BACKUPS = 9;

Page::Page()
{
    m_title = "";
    m_lastModified = QDateTime::currentDateTime();
    m_pPixmap = new QPixmap();

    m_backHistory.setAutoDelete(true);
    m_forwardHistory.setAutoDelete(true);
}

Page::Page(QString title, int w, int h)
{
    m_title = title;
    m_lastModified = QDateTime::currentDateTime();
    m_pPixmap = new QPixmap(w, h);

    m_backHistory.setAutoDelete(true);
    m_forwardHistory.setAutoDelete(true);
}

Page::Page(QString title, const QSize& size)
{
    m_title = title;
    m_lastModified = QDateTime::currentDateTime();
    m_pPixmap = new QPixmap(size);

    m_backHistory.setAutoDelete(true);
    m_forwardHistory.setAutoDelete(true);
}

Page::~Page()
{
    delete m_pPixmap;
}

QString Page::title() const
{
    return m_title;
}

QDateTime Page::lastModified() const
{
    return m_lastModified;
}

QPixmap* Page::pixmap() const

{
    return m_pPixmap;
}

void Page::setTitle(QString title)
{
    m_title = title;
}

void Page::setLastModified(QDateTime lastModified)
{
    m_lastModified = lastModified;
}

bool Page::undoEnabled()
{
    return (!m_backHistory.isEmpty());
}

bool Page::redoEnabled()
{
    return (!m_forwardHistory.isEmpty());
}

void Page::backup()
{
    setLastModified(QDateTime::currentDateTime());

    while (m_backHistory.count() >= (PAGE_BACKUPS + 1)) {
        m_backHistory.removeFirst();
    }

    m_backHistory.append(new QPixmap(*m_pPixmap));
    m_forwardHistory.clear();
}

void Page::undo()
{
    m_forwardHistory.append(new QPixmap(*m_pPixmap));
    m_pPixmap = new QPixmap(*(m_backHistory.last()));
    m_backHistory.removeLast();
}

void Page::redo()
{
    m_backHistory.append(new QPixmap(*m_pPixmap));
    m_pPixmap = new QPixmap(*(m_forwardHistory.last()));
    m_forwardHistory.removeLast();
}