~ubuntu-branches/ubuntu/precise/okular/precise-proposed

« back to all changes in this revision

Viewing changes to core/form.cpp

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2011-12-23 22:53:33 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20111223225333-l6ekbg2vq4pcsvwg
Tags: 4:4.7.95-0ubuntu1
* New upstream release candidate
* Enable DebianABIManager and bump ABI of libokularcore1

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
    return d->m_type;
51
51
}
52
52
 
53
 
QString FormField::defaultValue() const
54
 
{
55
 
    Q_D( const FormField );
56
 
    return d->m_default;
57
 
}
58
 
 
59
53
bool FormField::isReadOnly() const
60
54
{
61
55
    return false;
72
66
    return d->m_activateAction;
73
67
}
74
68
 
75
 
QString FormField::fullyQualifiedName() const
76
 
{
77
 
    Q_D( const FormField );
78
 
    return d->m_fullyQualifiedName;
79
 
}
80
 
 
81
69
void FormField::setActivationAction( Action *action )
82
70
{
83
71
    Q_D( FormField );
85
73
    d->m_activateAction = action;
86
74
}
87
75
 
88
 
void FormField::setFullyQualifiedName( const QString &name )
89
 
{
90
 
    Q_D( FormField );
91
 
    d->m_fullyQualifiedName = name;
92
 
}
93
76
 
94
77
class Okular::FormFieldButtonPrivate : public Okular::FormFieldPrivate
95
78
{