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

« back to all changes in this revision

Viewing changes to kid3/importsourcedialog.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:
6
6
 * \author Urs Fleisch
7
7
 * \date 09 Oct 2006
8
8
 *
9
 
 * Copyright (C) 2006-2007  Urs Fleisch
 
9
 * Copyright (C) 2006-2009  Urs Fleisch
10
10
 *
11
11
 * This file is part of Kid3.
12
12
 *
149
149
        void setAdditionalTags(bool enable);
150
150
 
151
151
        /**
 
152
         * Get cover art option.
 
153
         *
 
154
         * @return true if cover art are enabled.
 
155
         */
 
156
        bool getCoverArt() const;
 
157
 
 
158
        /**
 
159
         * Set cover art option.
 
160
         *
 
161
         * @param enable true if cover art are enabled
 
162
         */
 
163
        void setCoverArt(bool enable);
 
164
 
 
165
        /**
152
166
         * Set a find string from artist and album information.
153
167
         *
154
168
         * @param artist artist
204
218
         */
205
219
        void showHelp();
206
220
 
 
221
        /**
 
222
         * Display message in status bar.
 
223
         *
 
224
         * @param msg status message
 
225
         */
 
226
        void showStatusMessage(const QString& msg);
 
227
 
207
228
signals:
208
229
        /**
209
230
         * Emitted when the m_trackDataVector was updated with new imported data.
232
253
        QComboBox* m_serverComboBox;
233
254
        QLineEdit* m_cgiLineEdit;
234
255
        QCheckBox* m_additionalTagsCheckBox;
 
256
        QCheckBox* m_coverArtCheckBox;
235
257
        QStatusBar* m_statusBar;
236
258
        ImportSourceClient* m_client;
237
259
        const Properties& m_props;