~ubuntu-branches/ubuntu/oneiric/psi/oneiric

« back to all changes in this revision

Viewing changes to src/sxe/sxerecordedit.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2009-09-25 17:49:51 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090925174951-lvm7kdap82o8xhn3
Tags: 0.13-1
* Updated to upstream version 0.13
* Set Standards-Version to 3.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
         *  Parses a SxeRecordEdit from \a sxeElement.
39
39
         */
40
40
        SxeRecordEdit(const QDomElement &sxeElement, bool remote = true);
 
41
 
41
42
        /*! \brief The type of edit.*/
42
43
        SxeEdit::EditType type() const;
43
44
        /*! \brief The XML (the SXE) representing the edit.*/
48
49
        QList<Key> keys() const;
49
50
        /*! \brief The value that the edit will set for the given record entry. */
50
51
        QString value(Key key) const;
51
 
    
 
52
 
 
53
        /*! \brief Turns the edit into a no-op.*/
 
54
        void nullify();
 
55
 
52
56
    private:
53
57
        static QString keyToString(Key key);
54
58