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

« back to all changes in this revision

Viewing changes to core/form.h

  • 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:
60
60
        FieldType type() const;
61
61
 
62
62
        /**
63
 
         * The field default value.
64
 
         * @since 0.14 (KDE 4.8)
65
 
         */
66
 
        QString defaultValue() const;
67
 
 
68
 
        /**
69
63
         * The bouding rect of the field, in normalized coordinates.
70
64
         */
71
65
        virtual NormalizedRect rect() const = 0;
98
92
        virtual bool isVisible() const;
99
93
 
100
94
        Action* activationAction() const;
101
 
        
102
 
        /**
103
 
         * The internal fully qualified name of the field
104
 
         * @since 0.14 (KDE 4.8)
105
 
         */
106
 
        QString fullyQualifiedName() const;
107
95
 
108
96
    protected:
109
97
        /// @cond PRIVATE
113
101
        /// @endcond
114
102
 
115
103
        void setActivationAction( Action *action );
116
 
        /// @since 0.14 (KDE 4.8)
117
 
        void setFullyQualifiedName( const QString &name );
118
104
 
119
105
    private:
120
106
        Q_DISABLE_COPY( FormField )