~ubuntu-branches/ubuntu/karmic/kid3/karmic

« back to all changes in this revision

Viewing changes to kid3/frametable.h

  • Committer: Bazaar Package Importer
  • Author(s): Patrick Matthäi
  • Date: 2009-05-20 16:12:30 UTC
  • mfrom: (1.2.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 23.
  • Revision ID: james.westby@ubuntu.com-20090520161230-qetp532r8ydujkz2
Tags: upstream-1.2
Import upstream version 1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
        void markRows(unsigned char rowMask) { m_markedRows = rowMask; }
74
74
 
75
75
        /**
 
76
         * Mark changed frames.
 
77
         * @param frameMask mask with bits of frame types to mark
 
78
         */
 
79
        void markChangedFrames(unsigned long frameMask) { m_changedFrames = frameMask; }
 
80
 
 
81
        /**
76
82
         * Set all check boxes on or off.
77
83
         * Will take effect when framesToTable() is called.
78
84
         *
163
169
        int m_cursorRow;
164
170
        int m_cursorColumn;
165
171
        unsigned char m_markedRows;
 
172
        unsigned long m_changedFrames;
166
173
        bool m_setCheckBoxes;
167
174
        const bool m_id3v1;
168
175
        FrameCollection m_frames;