mirror of
https://invent.kde.org/graphics/okular
synced 2024-10-28 19:28:38 +00:00
fa6b376626
For now it's disabled, as I want to investigate a bit more with poppler wrt text fields, and to verify if that is an acceptable behaviour. svn path=/trunk/KDE/kdegraphics/okular/; revision=683212
197 lines
3.9 KiB
C++
197 lines
3.9 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2007 by Pino Toscano <pino@kde.org> *
|
|
* *
|
|
* 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 "form.h"
|
|
#include "form_p.h"
|
|
|
|
// qt includes
|
|
#include <QtCore/QVariant>
|
|
|
|
using namespace Okular;
|
|
|
|
FormFieldPrivate::FormFieldPrivate( FormField::FieldType type )
|
|
: m_type( type )
|
|
{
|
|
}
|
|
|
|
FormFieldPrivate::~FormFieldPrivate()
|
|
{
|
|
}
|
|
|
|
void FormFieldPrivate::setDefault()
|
|
{
|
|
m_default = value();
|
|
}
|
|
|
|
|
|
FormField::FormField( FormFieldPrivate &dd )
|
|
: d_ptr( &dd )
|
|
{
|
|
d_ptr->q_ptr = this;
|
|
}
|
|
|
|
FormField::~FormField()
|
|
{
|
|
delete d_ptr;
|
|
}
|
|
|
|
FormField::FieldType FormField::type() const
|
|
{
|
|
Q_D( const FormField );
|
|
return d->m_type;
|
|
}
|
|
|
|
bool FormField::isReadOnly() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool FormField::isVisible() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
class Okular::FormFieldTextPrivate : public Okular::FormFieldPrivate
|
|
{
|
|
public:
|
|
FormFieldTextPrivate()
|
|
: FormFieldPrivate( FormField::FormText )
|
|
{
|
|
}
|
|
|
|
Q_DECLARE_PUBLIC( FormFieldText )
|
|
|
|
void setValue( const QString& v )
|
|
{
|
|
Q_Q( FormFieldText );
|
|
q->setText( v );
|
|
}
|
|
|
|
QString value() const
|
|
{
|
|
Q_Q( const FormFieldText );
|
|
return q->text();
|
|
}
|
|
};
|
|
|
|
|
|
FormFieldText::FormFieldText()
|
|
: FormField( *new FormFieldTextPrivate() )
|
|
{
|
|
}
|
|
|
|
FormFieldText::~FormFieldText()
|
|
{
|
|
}
|
|
|
|
void FormFieldText::setText( const QString& )
|
|
{
|
|
}
|
|
|
|
bool FormFieldText::isPassword() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool FormFieldText::isRichText() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
int FormFieldText::maximumLength() const
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
Qt::Alignment FormFieldText::textAlignment() const
|
|
{
|
|
return Qt::AlignVCenter | Qt::AlignLeft;
|
|
}
|
|
|
|
bool FormFieldText::canBeSpellChecked() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
|
|
class Okular::FormFieldChoicePrivate : public Okular::FormFieldPrivate
|
|
{
|
|
public:
|
|
FormFieldChoicePrivate()
|
|
: FormFieldPrivate( FormField::FormChoice )
|
|
{
|
|
}
|
|
|
|
Q_DECLARE_PUBLIC( FormFieldChoice )
|
|
|
|
void setValue( const QString& v )
|
|
{
|
|
Q_Q( FormFieldChoice );
|
|
QStringList choices = v.split( ';', QString::SkipEmptyParts );
|
|
QList<int> newchoices;
|
|
foreach ( const QString& str, choices )
|
|
{
|
|
bool ok = true;
|
|
int val = str.toInt( &ok );
|
|
if ( ok )
|
|
newchoices.append( val );
|
|
}
|
|
if ( !newchoices.isEmpty() )
|
|
q->setCurrentChoices( newchoices );
|
|
}
|
|
|
|
QString value() const
|
|
{
|
|
Q_Q( const FormFieldChoice );
|
|
QList<int> choices = q->currentChoices();
|
|
qSort( choices );
|
|
QStringList list;
|
|
foreach ( int c, choices )
|
|
{
|
|
list.append( QString::number( c ) );
|
|
}
|
|
return list.join( QLatin1String( ";" ) );
|
|
}
|
|
};
|
|
|
|
|
|
FormFieldChoice::FormFieldChoice()
|
|
: FormField( *new FormFieldChoicePrivate() )
|
|
{
|
|
}
|
|
|
|
FormFieldChoice::~FormFieldChoice()
|
|
{
|
|
}
|
|
|
|
bool FormFieldChoice::isEditable() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool FormFieldChoice::multiSelect() const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void FormFieldChoice::setCurrentChoices( const QList< int >& )
|
|
{
|
|
}
|
|
|
|
Qt::Alignment FormFieldChoice::textAlignment() const
|
|
{
|
|
return Qt::AlignVCenter | Qt::AlignLeft;
|
|
}
|
|
|
|
bool FormFieldChoice::canBeSpellChecked() const
|
|
{
|
|
return false;
|
|
}
|
|
|