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

« back to all changes in this revision

Viewing changes to kid3/importconfig.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 17 Sep 2003
8
8
 *
9
 
 * Copyright (C) 2003-2007  Urs Fleisch
 
9
 * Copyright (C) 2003-2009  Urs Fleisch
10
10
 *
11
11
 * This file is part of Kid3.
12
12
 *
28
28
#define IMPORTCONFIG_H
29
29
 
30
30
#include <qstringlist.h>
 
31
#include <qmap.h>
31
32
#include "config.h"
32
33
#include "generalconfig.h"
33
34
 
121
122
        int m_exportWindowWidth;
122
123
        /** export window height */
123
124
        int m_exportWindowHeight;
 
125
 
 
126
        /** names of picture sources */
 
127
        QStringList m_pictureSourceNames;
 
128
        /** picture source URLs */
 
129
        QStringList m_pictureSourceUrls;
 
130
        /** selected picture source */
 
131
        int m_pictureSourceIdx;
 
132
        /** Browse cover art window width */
 
133
        int m_browseCoverArtWindowWidth;
 
134
        /** Browse cover art window height */
 
135
        int m_browseCoverArtWindowHeight;
 
136
        /** Mapping for picture URL matching */
 
137
        QMap<QString, QString> m_matchPictureUrlMap;
124
138
};
125
139
 
126
140
#endif