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

« back to all changes in this revision

Viewing changes to kid3/id3form.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:
33
33
#include <qlineedit.h>
34
34
#include "filelist.h"
35
35
#include "dirlist.h"
 
36
#include "picturelabel.h"
36
37
#include "taggedfile.h"
37
38
#include "qtcompatmac.h"
38
39
 
113
114
        void hideV2(bool hide);
114
115
 
115
116
        /**
 
117
         * Hide or show picture.
 
118
         *
 
119
         * @param hide true to hide, false to show
 
120
         */
 
121
        void hidePicture(bool hide);
 
122
 
 
123
        /**
116
124
         * Save the local settings to the configuration.
117
125
         */
118
126
        void saveConfig();
163
171
        void setFilenameEditEnabled(bool en) { m_nameLineEdit->setEnabled(en); }
164
172
 
165
173
        /**
 
174
         * Mark the filename as changed.
 
175
         * @param en true to mark as changed
 
176
         */
 
177
        void markChangedFilename(bool en);
 
178
 
 
179
        /**
 
180
         * Set preview picture data.
 
181
         * @param data picture data, 0 if no picture is available
 
182
         */
 
183
        void setPictureData(const QByteArray* data) { m_pictureLabel->setData(data); }
 
184
 
 
185
        /**
166
186
         * Set details info text.
167
187
         *
168
188
         * @param info detail information
450
470
 
451
471
        FileList* m_fileListBox;
452
472
        QComboBox* m_formatComboBox;
 
473
        QLabel* m_nameLabel;
453
474
        QLineEdit* m_nameLineEdit;
454
475
        QLabel* m_detailsLabel;
455
476
#if QT_VERSION >= 0x040000
467
488
        QPushButton* m_fnV1Button;
468
489
        QPushButton* m_id3V2PushButton;
469
490
        QWidget* m_rightHalfVBox;
 
491
        PictureLabel* m_pictureLabel;
470
492
 
471
493
private slots:
472
494
        /**