~ubuntu-branches/ubuntu/wily/marble/wily-proposed

« back to all changes in this revision

Viewing changes to src/lib/marble/MarbleGlobal.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2014-12-18 14:08:05 UTC
  • mfrom: (1.5.8) (68.1.7 vivid-proposed)
  • Revision ID: package-import@ubuntu.com-20141218140805-s9vz8rnjd34ekcbc
Tags: 4:14.12.0-0ubuntu2
Remove .acc files, there are no abi tars and we already have .symbols files

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
 * @brief This enum is used to choose the projection shown in the view.
43
43
 */
44
44
enum Projection { 
45
 
    Spherical,          ///< Spherical projection
 
45
    Spherical,          ///< Spherical projection ("Orthographic")
46
46
    Equirectangular,    ///< Flat projection ("plate carree")
47
 
    Mercator            ///< Mercator projection
48
 
    // NOTE: MarbleWidget::setProjection(int) relies on Mercator being the last
 
47
    Mercator,           ///< Mercator projection
 
48
    Gnomonic,           ///< Gnomonic projection
 
49
    Stereographic,      ///< Stereographic projection
 
50
    LambertAzimuthal,   ///< Lambert Azimuthal Equal-Area projection
 
51
    AzimuthalEquidistant,   ///< Azimuthal Equidistant projection
 
52
    VerticalPerspective ///< Vertical perspective projection
 
53
    // NOTE: MarbleWidget::setProjection(int) relies on VerticalPerspective being the last
49
54
    // value above. Adjust that method if you do changes here
50
55
};
51
56
 
239
244
 
240
245
// String for about dialog and http user agent
241
246
// FIXME: check if blanks are allowed in user agent version numbers
242
 
const QString MARBLE_VERSION_STRING = QString::fromLatin1( "0.19.2 (stable release)" );
 
247
const QString MARBLE_VERSION_STRING = QString::fromLatin1( "0.19.95 (0.20 Beta 3)" );
243
248
 
244
249
// API Version id:
245
250
// form : 0xMMmmpp
246
251
//        MM = major revision.
247
252
//        mm = minor revision.
248
253
//        pp = patch revision.
249
 
#define MARBLE_VERSION 0x001302
 
254
#define MARBLE_VERSION 0x00135f
250
255
 
251
256
static const char NOT_AVAILABLE[] = QT_TR_NOOP("not available");
252
257