summaryrefslogtreecommitdiff
path: root/noncore/graphics/drawpad/page.cpp
authorleseb <leseb>2002-06-13 17:11:03 (UTC)
committer leseb <leseb>2002-06-13 17:11:03 (UTC)
commit615176c17202f1a8aa7aa504b8dd747b089385a9 (patch) (side-by-side diff)
treeb5906e134037cd72871e0cecac4a3c9ed4c9a9e2 /noncore/graphics/drawpad/page.cpp
parent54de91b66a2f0f985ff89503e919f85713d1f22c (diff)
downloadopie-615176c17202f1a8aa7aa504b8dd747b089385a9.zip
opie-615176c17202f1a8aa7aa504b8dd747b089385a9.tar.gz
opie-615176c17202f1a8aa7aa504b8dd747b089385a9.tar.bz2
More progress in page attributes
Diffstat (limited to 'noncore/graphics/drawpad/page.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/drawpad/page.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/noncore/graphics/drawpad/page.cpp b/noncore/graphics/drawpad/page.cpp
index 35ec0e0..7034a20 100644
--- a/noncore/graphics/drawpad/page.cpp
+++ b/noncore/graphics/drawpad/page.cpp
@@ -13,21 +13,45 @@
#include "page.h"
Page::Page()
: QPixmap()
{
+ m_lastModified = QDateTime::currentDateTime();
}
Page::Page(int w, int h)
: QPixmap(w, h)
{
+ m_lastModified = QDateTime::currentDateTime();
}
Page::Page(const QSize& size)
: QPixmap(size)
{
+ m_lastModified = QDateTime::currentDateTime();
}
Page::~Page()
{
}
+
+QString Page::title() const
+{
+ return m_title;
+}
+
+QDateTime Page::lastModified() const
+{
+ return m_lastModified;
+}
+
+void Page::setTitle(QString title)
+{
+ m_title = title;
+}
+
+void Page::setLastModified(QDateTime lastModified)
+{
+ m_lastModified = lastModified;
+}
+