kde-playground/kdepim-runtime/migration/knotes/notedisplayattribute.cpp
2015-04-14 22:08:21 +00:00

255 lines
5.1 KiB
C++

/*
Copyright (c) 2013, 2014 Montel Laurent <montel@kde.org>
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "notedisplayattribute.h"
#include <KGlobalSettings>
#include <QByteArray>
NoteDisplayAttribute::NoteDisplayAttribute()
: Akonadi::Attribute(),
mFont(KGlobalSettings::generalFont()),
mTitleFont(KGlobalSettings::windowTitleFont()),
mBackgroundColor(Qt::yellow),
mForegroundgroundColor(Qt::black),
mSize(300,300),
mPosition(QPoint( -10000, -10000 )),
mTabSize(4),
mDesktop(-10),
mRememberDesktop(true),
mAutoIndent(true),
mHide(false),
mShowInTaskbar(false),
mKeepAbove(false),
mKeepBelove(false),
mKeepBelow(false)
{
}
NoteDisplayAttribute::~NoteDisplayAttribute()
{
}
NoteDisplayAttribute* NoteDisplayAttribute::clone() const
{
NoteDisplayAttribute *attr = new NoteDisplayAttribute();
attr->setBackgroundColor(backgroundColor());
attr->setForegroundColor(foregroundColor());
attr->setSize(size());
attr->setRememberDesktop(rememberDesktop());
attr->setTabSize(tabSize());
attr->setFont(font());
attr->setTitleFont(titleFont());
attr->setDesktop(desktop());
attr->setIsHidden(isHidden());
attr->setPosition(position());
attr->setShowInTaskbar(showInTaskbar());
attr->setKeepAbove(keepAbove());
attr->setKeepBelow(keepBelow());
attr->setAutoIndent(autoIndent());
return attr;
}
void NoteDisplayAttribute::deserialize(const QByteArray& data)
{
QDataStream s( data );
s >> mFont;
s >> mTitleFont;
s >> mBackgroundColor;
s >> mForegroundgroundColor;
s >> mSize;
s >> mPosition;
s >> mTabSize;
s >> mDesktop;
s >> mRememberDesktop;
s >> mAutoIndent;
s >> mHide;
s >> mShowInTaskbar;
s >> mKeepAbove;
s >> mKeepBelove;
s >> mKeepBelow;
}
QByteArray NoteDisplayAttribute::serialized() const
{
QByteArray result;
QDataStream s( &result, QIODevice::WriteOnly );
s << mFont;
s << mTitleFont;
s << mBackgroundColor;
s << mForegroundgroundColor;
s << mSize;
s << mPosition;
s << mTabSize;
s << mDesktop;
s << mRememberDesktop;
s << mAutoIndent;
s << mHide;
s << mShowInTaskbar;
s << mKeepAbove;
s << mKeepBelove;
s << mKeepBelow;
return result;
}
QByteArray NoteDisplayAttribute::type() const
{
return "NoteDisplayAttribute";
}
void NoteDisplayAttribute::setBackgroundColor(const QColor &color)
{
mBackgroundColor = color;
}
QColor NoteDisplayAttribute::backgroundColor() const
{
return mBackgroundColor;
}
void NoteDisplayAttribute::setForegroundColor(const QColor &color)
{
mForegroundgroundColor = color;
}
QSize NoteDisplayAttribute::size() const
{
return mSize;
}
void NoteDisplayAttribute::setSize(const QSize &size)
{
mSize = size;
}
QColor NoteDisplayAttribute::foregroundColor() const
{
return mForegroundgroundColor;
}
bool NoteDisplayAttribute::rememberDesktop() const
{
return mRememberDesktop;
}
void NoteDisplayAttribute::setRememberDesktop(bool b)
{
mRememberDesktop = b;
}
int NoteDisplayAttribute::tabSize() const
{
return mTabSize;
}
void NoteDisplayAttribute::setTabSize(int value)
{
mTabSize = value;
}
bool NoteDisplayAttribute::autoIndent() const
{
return mAutoIndent;
}
void NoteDisplayAttribute::setAutoIndent(bool b)
{
mAutoIndent = b;
}
void NoteDisplayAttribute::setFont(const QFont &f)
{
mFont = f;
}
QFont NoteDisplayAttribute::font() const
{
return mFont;
}
void NoteDisplayAttribute::setTitleFont(const QFont &f)
{
mTitleFont = f;
}
QFont NoteDisplayAttribute::titleFont() const
{
return mTitleFont;
}
void NoteDisplayAttribute::setDesktop(int v)
{
mDesktop = v;
}
int NoteDisplayAttribute::desktop() const
{
return mDesktop;
}
void NoteDisplayAttribute::setIsHidden(bool b)
{
mHide = b;
}
bool NoteDisplayAttribute::isHidden() const
{
return mHide;
}
void NoteDisplayAttribute::setPosition(const QPoint &pos)
{
mPosition = pos;
}
QPoint NoteDisplayAttribute::position() const
{
return mPosition;
}
void NoteDisplayAttribute::setShowInTaskbar(bool b)
{
mShowInTaskbar = b;
}
bool NoteDisplayAttribute::showInTaskbar() const
{
return mShowInTaskbar;
}
void NoteDisplayAttribute::setKeepAbove(bool b)
{
mKeepAbove = b;
}
bool NoteDisplayAttribute::keepAbove() const
{
return mKeepAbove;
}
void NoteDisplayAttribute::setKeepBelow(bool b)
{
mKeepBelow = b;
}
bool NoteDisplayAttribute::keepBelow() const
{
return mKeepBelow;
}