• Skip to content
  • Skip to link menu
KDE API Reference
  • KDE API Reference
  • kdeedu API Reference
  • KDE Home
  • Contact Us
 

marble

  • sources
  • kde-4.12
  • kdeedu
  • marble
  • src
  • apps
  • marble-kde
settings.h
Go to the documentation of this file.
1 // This file is generated by kconfig_compiler from marble.kcfg.
2 // All changes you do to this file will be lost.
3 #ifndef MARBLESETTINGS_H
4 #define MARBLESETTINGS_H
5 
6 #include <kconfigskeleton.h>
7 #include <kdebug.h>
8 
9 #include <kglobalsettings.h>
10 #include "../../lib/marble/MarbleGlobal.h"
11 #include <QtCore/QDir>
12 #include <QtCore/QLocale>
13 class MarbleSettings : public KConfigSkeleton
14 {
15  public:
16 
17  static MarbleSettings *self();
18  ~MarbleSettings();
19 
23  static
24  void setHomeLongitude( double v )
25  {
26  if (!self()->isImmutable( QString::fromLatin1( "homeLongitude" ) ))
27  self()->mHomeLongitude = v;
28  }
29 
33  static
34  double homeLongitude()
35  {
36  return self()->mHomeLongitude;
37  }
38 
42  static
43  void setHomeLatitude( double v )
44  {
45  if (!self()->isImmutable( QString::fromLatin1( "homeLatitude" ) ))
46  self()->mHomeLatitude = v;
47  }
48 
52  static
53  double homeLatitude()
54  {
55  return self()->mHomeLatitude;
56  }
57 
61  static
62  void setHomeZoom( int v )
63  {
64  if (!self()->isImmutable( QString::fromLatin1( "homeZoom" ) ))
65  self()->mHomeZoom = v;
66  }
67 
71  static
72  int homeZoom()
73  {
74  return self()->mHomeZoom;
75  }
76 
80  static
81  void setQuitLongitude( double v )
82  {
83  if (!self()->isImmutable( QString::fromLatin1( "quitLongitude" ) ))
84  self()->mQuitLongitude = v;
85  }
86 
90  static
91  double quitLongitude()
92  {
93  return self()->mQuitLongitude;
94  }
95 
99  static
100  void setQuitLatitude( double v )
101  {
102  if (!self()->isImmutable( QString::fromLatin1( "quitLatitude" ) ))
103  self()->mQuitLatitude = v;
104  }
105 
109  static
110  double quitLatitude()
111  {
112  return self()->mQuitLatitude;
113  }
114 
118  static
119  void setQuitRange( double v )
120  {
121  if (!self()->isImmutable( QString::fromLatin1( "quitRange" ) ))
122  self()->mQuitRange = v;
123  }
124 
128  static
129  double quitRange()
130  {
131  return self()->mQuitRange;
132  }
133 
137  static
138  void setMapTheme( const QString & v )
139  {
140  if (!self()->isImmutable( QString::fromLatin1( "mapTheme" ) ))
141  self()->mMapTheme = v;
142  }
143 
147  static
148  QString mapTheme()
149  {
150  return self()->mMapTheme;
151  }
152 
156  static
157  void setShowClouds( bool v )
158  {
159  if (!self()->isImmutable( QString::fromLatin1( "showClouds" ) ))
160  self()->mShowClouds = v;
161  }
162 
166  static
167  bool showClouds()
168  {
169  return self()->mShowClouds;
170  }
171 
175  static
176  void setWorkOffline( bool v )
177  {
178  if (!self()->isImmutable( QString::fromLatin1( "workOffline" ) ))
179  self()->mWorkOffline = v;
180  }
181 
185  static
186  bool workOffline()
187  {
188  return self()->mWorkOffline;
189  }
190 
194  static
195  void setShowCurrentLocation( bool v )
196  {
197  if (!self()->isImmutable( QString::fromLatin1( "showCurrentLocation" ) ))
198  self()->mShowCurrentLocation = v;
199  }
200 
204  static
205  bool showCurrentLocation()
206  {
207  return self()->mShowCurrentLocation;
208  }
209 
213  static
214  void setLockFloatItemPositions( bool v )
215  {
216  if (!self()->isImmutable( QString::fromLatin1( "lockFloatItemPositions" ) ))
217  self()->mLockFloatItemPositions = v;
218  }
219 
223  static
224  bool lockFloatItemPositions()
225  {
226  return self()->mLockFloatItemPositions;
227  }
228 
232  static
233  void setProjection( int v )
234  {
235  if (!self()->isImmutable( QString::fromLatin1( "projection" ) ))
236  self()->mProjection = v;
237  }
238 
242  static
243  int projection()
244  {
245  return self()->mProjection;
246  }
247 
251  static
252  void setMarbleDataPath( const QString & v )
253  {
254  if (!self()->isImmutable( QString::fromLatin1( "marbleDataPath" ) ))
255  self()->mMarbleDataPath = v;
256  }
257 
261  static
262  QString marbleDataPath()
263  {
264  return self()->mMarbleDataPath;
265  }
266 
270  static
271  void setShowBookmarks( bool v )
272  {
273  if (!self()->isImmutable( QString::fromLatin1( "showBookmarks" ) ))
274  self()->mShowBookmarks = v;
275  }
276 
280  static
281  bool showBookmarks()
282  {
283  return self()->mShowBookmarks;
284  }
285 
289  static
290  void setDateTime( const QDateTime & v )
291  {
292  if (!self()->isImmutable( QString::fromLatin1( "dateTime" ) ))
293  self()->mDateTime = v;
294  }
295 
299  static
300  QDateTime dateTime()
301  {
302  return self()->mDateTime;
303  }
304 
308  static
309  void setSpeedSlider( int v )
310  {
311  if (v < -100)
312  {
313  kDebug() << "setSpeedSlider: value " << v << " is less than the minimum value of -100";
314  v = -100;
315  }
316 
317  if (v > 100)
318  {
319  kDebug() << "setSpeedSlider: value " << v << " is greater than the maximum value of 100";
320  v = 100;
321  }
322 
323  if (!self()->isImmutable( QString::fromLatin1( "speedSlider" ) ))
324  self()->mSpeedSlider = v;
325  }
326 
330  static
331  int speedSlider()
332  {
333  return self()->mSpeedSlider;
334  }
335 
339  static
340  void setSystemTime( bool v )
341  {
342  if (!self()->isImmutable( QString::fromLatin1( "systemTime" ) ))
343  self()->mSystemTime = v;
344  }
345 
349  static
350  bool systemTime()
351  {
352  return self()->mSystemTime;
353  }
354 
358  static
359  void setLastSessionTime( bool v )
360  {
361  if (!self()->isImmutable( QString::fromLatin1( "lastSessionTime" ) ))
362  self()->mLastSessionTime = v;
363  }
364 
368  static
369  bool lastSessionTime()
370  {
371  return self()->mLastSessionTime;
372  }
373 
377  static
378  void setSystemTimezone( bool v )
379  {
380  if (!self()->isImmutable( QString::fromLatin1( "systemTimezone" ) ))
381  self()->mSystemTimezone = v;
382  }
383 
387  static
388  bool systemTimezone()
389  {
390  return self()->mSystemTimezone;
391  }
392 
396  static
397  void setUtc( bool v )
398  {
399  if (!self()->isImmutable( QString::fromLatin1( "utc" ) ))
400  self()->mUtc = v;
401  }
402 
406  static
407  bool utc()
408  {
409  return self()->mUtc;
410  }
411 
415  static
416  void setCustomTimezone( bool v )
417  {
418  if (!self()->isImmutable( QString::fromLatin1( "customTimezone" ) ))
419  self()->mCustomTimezone = v;
420  }
421 
425  static
426  bool customTimezone()
427  {
428  return self()->mCustomTimezone;
429  }
430 
434  static
435  void setChosenTimezone( int v )
436  {
437  if (!self()->isImmutable( QString::fromLatin1( "chosenTimezone" ) ))
438  self()->mChosenTimezone = v;
439  }
440 
444  static
445  int chosenTimezone()
446  {
447  return self()->mChosenTimezone;
448  }
449 
453  static
454  void setDistanceUnit( int v )
455  {
456  if (!self()->isImmutable( QString::fromLatin1( "distanceUnit" ) ))
457  self()->mDistanceUnit = v;
458  }
459 
463  static
464  int distanceUnit()
465  {
466  return self()->mDistanceUnit;
467  }
468 
472  static
473  void setAngleUnit( int v )
474  {
475  if (!self()->isImmutable( QString::fromLatin1( "angleUnit" ) ))
476  self()->mAngleUnit = v;
477  }
478 
482  static
483  int angleUnit()
484  {
485  return self()->mAngleUnit;
486  }
487 
491  static
492  void setStillQuality( int v )
493  {
494  if (!self()->isImmutable( QString::fromLatin1( "stillQuality" ) ))
495  self()->mStillQuality = v;
496  }
497 
501  static
502  int stillQuality()
503  {
504  return self()->mStillQuality;
505  }
506 
510  static
511  void setAnimationQuality( int v )
512  {
513  if (!self()->isImmutable( QString::fromLatin1( "animationQuality" ) ))
514  self()->mAnimationQuality = v;
515  }
516 
520  static
521  int animationQuality()
522  {
523  return self()->mAnimationQuality;
524  }
525 
529  static
530  void setGraphicsSystem( int v )
531  {
532  if (!self()->isImmutable( QString::fromLatin1( "graphicsSystem" ) ))
533  self()->mGraphicsSystem = v;
534  }
535 
539  static
540  int graphicsSystem()
541  {
542  return self()->mGraphicsSystem;
543  }
544 
548  static
549  void setLabelLocalization( int v )
550  {
551  if (!self()->isImmutable( QString::fromLatin1( "labelLocalization" ) ))
552  self()->mLabelLocalization = v;
553  }
554 
558  static
559  int labelLocalization()
560  {
561  return self()->mLabelLocalization;
562  }
563 
567  static
568  void setMapFont( const QFont & v )
569  {
570  if (!self()->isImmutable( QString::fromLatin1( "mapFont" ) ))
571  self()->mMapFont = v;
572  }
573 
577  static
578  QFont mapFont()
579  {
580  return self()->mMapFont;
581  }
582 
586  static
587  void setLastFileOpenDir( const QString & v )
588  {
589  if (!self()->isImmutable( QString::fromLatin1( "lastFileOpenDir" ) ))
590  self()->mLastFileOpenDir = v;
591  }
592 
596  static
597  QString lastFileOpenDir()
598  {
599  return self()->mLastFileOpenDir;
600  }
601 
605  static
606  void setShowSun( bool v )
607  {
608  if (!self()->isImmutable( QString::fromLatin1( "showSun" ) ))
609  self()->mShowSun = v;
610  }
611 
615  static
616  bool showSun()
617  {
618  return self()->mShowSun;
619  }
620 
624  static
625  void setShowCitylights( bool v )
626  {
627  if (!self()->isImmutable( QString::fromLatin1( "showCitylights" ) ))
628  self()->mShowCitylights = v;
629  }
630 
634  static
635  bool showCitylights()
636  {
637  return self()->mShowCitylights;
638  }
639 
643  static
644  void setSubSolarPointIconVisible( bool v )
645  {
646  if (!self()->isImmutable( QString::fromLatin1( "subSolarPointIconVisible" ) ))
647  self()->mSubSolarPointIconVisible = v;
648  }
649 
653  static
654  bool subSolarPointIconVisible()
655  {
656  return self()->mSubSolarPointIconVisible;
657  }
658 
662  static
663  void setLockToSubSolarPoint( bool v )
664  {
665  if (!self()->isImmutable( QString::fromLatin1( "lockToSubSolarPoint" ) ))
666  self()->mLockToSubSolarPoint = v;
667  }
668 
672  static
673  bool lockToSubSolarPoint()
674  {
675  return self()->mLockToSubSolarPoint;
676  }
677 
681  static
682  void setDragLocation( int v )
683  {
684  if (!self()->isImmutable( QString::fromLatin1( "dragLocation" ) ))
685  self()->mDragLocation = v;
686  }
687 
691  static
692  int dragLocation()
693  {
694  return self()->mDragLocation;
695  }
696 
700  static
701  void setOnStartup( int v )
702  {
703  if (!self()->isImmutable( QString::fromLatin1( "onStartup" ) ))
704  self()->mOnStartup = v;
705  }
706 
710  static
711  int onStartup()
712  {
713  return self()->mOnStartup;
714  }
715 
719  static
720  void setInertialEarthRotation( bool v )
721  {
722  if (!self()->isImmutable( QString::fromLatin1( "inertialEarthRotation" ) ))
723  self()->mInertialEarthRotation = v;
724  }
725 
729  static
730  bool inertialEarthRotation()
731  {
732  return self()->mInertialEarthRotation;
733  }
734 
738  static
739  void setAnimateTargetVoyage( bool v )
740  {
741  if (!self()->isImmutable( QString::fromLatin1( "animateTargetVoyage" ) ))
742  self()->mAnimateTargetVoyage = v;
743  }
744 
748  static
749  bool animateTargetVoyage()
750  {
751  return self()->mAnimateTargetVoyage;
752  }
753 
757  static
758  void setExternalMapEditor( int v )
759  {
760  if (!self()->isImmutable( QString::fromLatin1( "externalMapEditor" ) ))
761  self()->mExternalMapEditor = v;
762  }
763 
767  static
768  int externalMapEditor()
769  {
770  return self()->mExternalMapEditor;
771  }
772 
776  static
777  void setVolatileTileCacheLimit( int v )
778  {
779  if (v < 0)
780  {
781  kDebug() << "setVolatileTileCacheLimit: value " << v << " is less than the minimum value of 0";
782  v = 0;
783  }
784 
785  if (v > 999999)
786  {
787  kDebug() << "setVolatileTileCacheLimit: value " << v << " is greater than the maximum value of 999999";
788  v = 999999;
789  }
790 
791  if (!self()->isImmutable( QString::fromLatin1( "volatileTileCacheLimit" ) ))
792  self()->mVolatileTileCacheLimit = v;
793  }
794 
798  static
799  int volatileTileCacheLimit()
800  {
801  return self()->mVolatileTileCacheLimit;
802  }
803 
807  static
808  void setPersistentTileCacheLimit( int v )
809  {
810  if (v < 0)
811  {
812  kDebug() << "setPersistentTileCacheLimit: value " << v << " is less than the minimum value of 0";
813  v = 0;
814  }
815 
816  if (v > 999999)
817  {
818  kDebug() << "setPersistentTileCacheLimit: value " << v << " is greater than the maximum value of 999999";
819  v = 999999;
820  }
821 
822  if (!self()->isImmutable( QString::fromLatin1( "persistentTileCacheLimit" ) ))
823  self()->mPersistentTileCacheLimit = v;
824  }
825 
829  static
830  int persistentTileCacheLimit()
831  {
832  return self()->mPersistentTileCacheLimit;
833  }
834 
838  static
839  void setProxyUrl( const QString & v )
840  {
841  if (!self()->isImmutable( QString::fromLatin1( "proxyUrl" ) ))
842  self()->mProxyUrl = v;
843  }
844 
848  static
849  QString proxyUrl()
850  {
851  return self()->mProxyUrl;
852  }
853 
857  static
858  void setProxyPort( int v )
859  {
860  if (v < 0)
861  {
862  kDebug() << "setProxyPort: value " << v << " is less than the minimum value of 0";
863  v = 0;
864  }
865 
866  if (v > 65535)
867  {
868  kDebug() << "setProxyPort: value " << v << " is greater than the maximum value of 65535";
869  v = 65535;
870  }
871 
872  if (!self()->isImmutable( QString::fromLatin1( "proxyPort" ) ))
873  self()->mProxyPort = v;
874  }
875 
879  static
880  int proxyPort()
881  {
882  return self()->mProxyPort;
883  }
884 
888  static
889  void setProxyUser( const QString & v )
890  {
891  if (!self()->isImmutable( QString::fromLatin1( "proxyUser" ) ))
892  self()->mProxyUser = v;
893  }
894 
898  static
899  QString proxyUser()
900  {
901  return self()->mProxyUser;
902  }
903 
907  static
908  void setProxyPass( const QString & v )
909  {
910  if (!self()->isImmutable( QString::fromLatin1( "proxyPass" ) ))
911  self()->mProxyPass = v;
912  }
913 
917  static
918  QString proxyPass()
919  {
920  return self()->mProxyPass;
921  }
922 
926  static
927  void setProxyHttp( bool v )
928  {
929  if (!self()->isImmutable( QString::fromLatin1( "proxyHttp" ) ))
930  self()->mProxyHttp = v;
931  }
932 
936  static
937  bool proxyHttp()
938  {
939  return self()->mProxyHttp;
940  }
941 
945  static
946  void setProxyType( int v )
947  {
948  if (!self()->isImmutable( QString::fromLatin1( "proxyType" ) ))
949  self()->mProxyType = v;
950  }
951 
955  static
956  int proxyType()
957  {
958  return self()->mProxyType;
959  }
960 
964  static
965  void setProxySocks5( bool v )
966  {
967  if (!self()->isImmutable( QString::fromLatin1( "proxySocks5" ) ))
968  self()->mProxySocks5 = v;
969  }
970 
974  static
975  bool proxySocks5()
976  {
977  return self()->mProxySocks5;
978  }
979 
983  static
984  void setProxyAuth( bool v )
985  {
986  if (!self()->isImmutable( QString::fromLatin1( "proxyAuth" ) ))
987  self()->mProxyAuth = v;
988  }
989 
993  static
994  bool proxyAuth()
995  {
996  return self()->mProxyAuth;
997  }
998 
1002  static
1003  void setActivePositionTrackingPlugin( const QString & v )
1004  {
1005  if (!self()->isImmutable( QString::fromLatin1( "activePositionTrackingPlugin" ) ))
1006  self()->mActivePositionTrackingPlugin = v;
1007  }
1008 
1012  static
1013  QString activePositionTrackingPlugin()
1014  {
1015  return self()->mActivePositionTrackingPlugin;
1016  }
1017 
1021  static
1022  void setShowPositionLabel( bool v )
1023  {
1024  if (!self()->isImmutable( QString::fromLatin1( "showPositionLabel" ) ))
1025  self()->mShowPositionLabel = v;
1026  }
1027 
1031  static
1032  bool showPositionLabel()
1033  {
1034  return self()->mShowPositionLabel;
1035  }
1036 
1040  static
1041  void setShowAltitudeLabel( bool v )
1042  {
1043  if (!self()->isImmutable( QString::fromLatin1( "showAltitudeLabel" ) ))
1044  self()->mShowAltitudeLabel = v;
1045  }
1046 
1050  static
1051  bool showAltitudeLabel()
1052  {
1053  return self()->mShowAltitudeLabel;
1054  }
1055 
1059  static
1060  void setShowTileZoomLevelLabel( bool v )
1061  {
1062  if (!self()->isImmutable( QString::fromLatin1( "showTileZoomLevelLabel" ) ))
1063  self()->mShowTileZoomLevelLabel = v;
1064  }
1065 
1069  static
1070  bool showTileZoomLevelLabel()
1071  {
1072  return self()->mShowTileZoomLevelLabel;
1073  }
1074 
1078  static
1079  void setShowDownloadProgressBar( bool v )
1080  {
1081  if (!self()->isImmutable( QString::fromLatin1( "showDownloadProgressBar" ) ))
1082  self()->mShowDownloadProgressBar = v;
1083  }
1084 
1088  static
1089  bool showDownloadProgressBar()
1090  {
1091  return self()->mShowDownloadProgressBar;
1092  }
1093 
1097  static
1098  void setShowDateTimeLabel( bool v )
1099  {
1100  if (!self()->isImmutable( QString::fromLatin1( "showDateTimeLabel" ) ))
1101  self()->mShowDateTimeLabel = v;
1102  }
1103 
1107  static
1108  bool showDateTimeLabel()
1109  {
1110  return self()->mShowDateTimeLabel;
1111  }
1112 
1116  static
1117  void setWmsServers( const QStringList & v )
1118  {
1119  if (!self()->isImmutable( QString::fromLatin1( "wmsServers" ) ))
1120  self()->mWmsServers = v;
1121  }
1122 
1126  static
1127  QStringList wmsServers()
1128  {
1129  return self()->mWmsServers;
1130  }
1131 
1135  static
1136  void setStaticUrlServers( const QStringList & v )
1137  {
1138  if (!self()->isImmutable( QString::fromLatin1( "staticUrlServers" ) ))
1139  self()->mStaticUrlServers = v;
1140  }
1141 
1145  static
1146  QStringList staticUrlServers()
1147  {
1148  return self()->mStaticUrlServers;
1149  }
1150 
1154  static
1155  void setShowGuidanceModeStartupWarning( bool v )
1156  {
1157  if (!self()->isImmutable( QString::fromLatin1( "showGuidanceModeStartupWarning" ) ))
1158  self()->mShowGuidanceModeStartupWarning = v;
1159  }
1160 
1164  static
1165  bool showGuidanceModeStartupWarning()
1166  {
1167  return self()->mShowGuidanceModeStartupWarning;
1168  }
1169 
1173  static
1174  void setCurrentRoutingProfile( int v )
1175  {
1176  if (!self()->isImmutable( QString::fromLatin1( "currentRoutingProfile" ) ))
1177  self()->mCurrentRoutingProfile = v;
1178  }
1179 
1183  static
1184  int currentRoutingProfile()
1185  {
1186  return self()->mCurrentRoutingProfile;
1187  }
1188 
1192  static
1193  void setRouteColorStandard( const QColor & v )
1194  {
1195  if (!self()->isImmutable( QString::fromLatin1( "routeColorStandard" ) ))
1196  self()->mRouteColorStandard = v;
1197  }
1198 
1202  static
1203  QColor routeColorStandard()
1204  {
1205  return self()->mRouteColorStandard;
1206  }
1207 
1211  static
1212  void setRouteAlphaStandard( int v )
1213  {
1214  if (!self()->isImmutable( QString::fromLatin1( "routeAlphaStandard" ) ))
1215  self()->mRouteAlphaStandard = v;
1216  }
1217 
1221  static
1222  int routeAlphaStandard()
1223  {
1224  return self()->mRouteAlphaStandard;
1225  }
1226 
1230  static
1231  void setRouteColorHighlighted( const QColor & v )
1232  {
1233  if (!self()->isImmutable( QString::fromLatin1( "routeColorHighlighted" ) ))
1234  self()->mRouteColorHighlighted = v;
1235  }
1236 
1240  static
1241  QColor routeColorHighlighted()
1242  {
1243  return self()->mRouteColorHighlighted;
1244  }
1245 
1249  static
1250  void setRouteAlphaHighlighted( int v )
1251  {
1252  if (!self()->isImmutable( QString::fromLatin1( "routeAlphaHighlighted" ) ))
1253  self()->mRouteAlphaHighlighted = v;
1254  }
1255 
1259  static
1260  int routeAlphaHighlighted()
1261  {
1262  return self()->mRouteAlphaHighlighted;
1263  }
1264 
1268  static
1269  void setRouteColorAlternative( const QColor & v )
1270  {
1271  if (!self()->isImmutable( QString::fromLatin1( "routeColorAlternative" ) ))
1272  self()->mRouteColorAlternative = v;
1273  }
1274 
1278  static
1279  QColor routeColorAlternative()
1280  {
1281  return self()->mRouteColorAlternative;
1282  }
1283 
1287  static
1288  void setRouteAlphaAlternative( int v )
1289  {
1290  if (!self()->isImmutable( QString::fromLatin1( "routeAlphaAlternative" ) ))
1291  self()->mRouteAlphaAlternative = v;
1292  }
1293 
1297  static
1298  int routeAlphaAlternative()
1299  {
1300  return self()->mRouteAlphaAlternative;
1301  }
1302 
1306  static
1307  void setShowCloudSyncSettings( bool v )
1308  {
1309  if (!self()->isImmutable( QString::fromLatin1( "showCloudSyncSettings" ) ))
1310  self()->mShowCloudSyncSettings = v;
1311  }
1312 
1316  static
1317  bool showCloudSyncSettings()
1318  {
1319  return self()->mShowCloudSyncSettings;
1320  }
1321 
1325  static
1326  void setEnableSync( bool v )
1327  {
1328  if (!self()->isImmutable( QString::fromLatin1( "enableSync" ) ))
1329  self()->mEnableSync = v;
1330  }
1331 
1335  static
1336  bool enableSync()
1337  {
1338  return self()->mEnableSync;
1339  }
1340 
1344  static
1345  void setSyncBackend( const QString & v )
1346  {
1347  if (!self()->isImmutable( QString::fromLatin1( "syncBackend" ) ))
1348  self()->mSyncBackend = v;
1349  }
1350 
1354  static
1355  QString syncBackend()
1356  {
1357  return self()->mSyncBackend;
1358  }
1359 
1363  static
1364  void setSyncBookmarks( bool v )
1365  {
1366  if (!self()->isImmutable( QString::fromLatin1( "syncBookmarks" ) ))
1367  self()->mSyncBookmarks = v;
1368  }
1369 
1373  static
1374  bool syncBookmarks()
1375  {
1376  return self()->mSyncBookmarks;
1377  }
1378 
1382  static
1383  void setSyncRoutes( bool v )
1384  {
1385  if (!self()->isImmutable( QString::fromLatin1( "syncRoutes" ) ))
1386  self()->mSyncRoutes = v;
1387  }
1388 
1392  static
1393  bool syncRoutes()
1394  {
1395  return self()->mSyncRoutes;
1396  }
1397 
1401  static
1402  void setOwncloudServer( const QString & v )
1403  {
1404  if (!self()->isImmutable( QString::fromLatin1( "owncloudServer" ) ))
1405  self()->mOwncloudServer = v;
1406  }
1407 
1411  static
1412  QString owncloudServer()
1413  {
1414  return self()->mOwncloudServer;
1415  }
1416 
1420  static
1421  void setOwncloudUsername( const QString & v )
1422  {
1423  if (!self()->isImmutable( QString::fromLatin1( "owncloudUsername" ) ))
1424  self()->mOwncloudUsername = v;
1425  }
1426 
1430  static
1431  QString owncloudUsername()
1432  {
1433  return self()->mOwncloudUsername;
1434  }
1435 
1439  static
1440  void setOwncloudPassword( const QString & v )
1441  {
1442  if (!self()->isImmutable( QString::fromLatin1( "owncloudPassword" ) ))
1443  self()->mOwncloudPassword = v;
1444  }
1445 
1449  static
1450  QString owncloudPassword()
1451  {
1452  return self()->mOwncloudPassword;
1453  }
1454 
1455  protected:
1456  MarbleSettings();
1457  friend class MarbleSettingsHelper;
1458 
1459 
1460  // MarbleWidget
1461  double mHomeLongitude;
1462  double mHomeLatitude;
1463  int mHomeZoom;
1464  double mQuitLongitude;
1465  double mQuitLatitude;
1466  double mQuitRange;
1467  QString mMapTheme;
1468  bool mShowClouds;
1469  bool mWorkOffline;
1470  bool mShowCurrentLocation;
1471  bool mLockFloatItemPositions;
1472  int mProjection;
1473  QString mMarbleDataPath;
1474  bool mShowBookmarks;
1475 
1476  // Time
1477  QDateTime mDateTime;
1478  int mSpeedSlider;
1479  bool mSystemTime;
1480  bool mLastSessionTime;
1481  bool mSystemTimezone;
1482  bool mUtc;
1483  bool mCustomTimezone;
1484  int mChosenTimezone;
1485 
1486  // View
1487  int mDistanceUnit;
1488  int mAngleUnit;
1489  int mStillQuality;
1490  int mAnimationQuality;
1491  int mGraphicsSystem;
1492  int mLabelLocalization;
1493  QFont mMapFont;
1494  QString mLastFileOpenDir;
1495 
1496  // Sun
1497  bool mShowSun;
1498  bool mShowCitylights;
1499  bool mSubSolarPointIconVisible;
1500  bool mLockToSubSolarPoint;
1501 
1502  // Navigation
1503  int mDragLocation;
1504  int mOnStartup;
1505  bool mInertialEarthRotation;
1506  bool mAnimateTargetVoyage;
1507  int mExternalMapEditor;
1508 
1509  // Cache
1510  int mVolatileTileCacheLimit;
1511  int mPersistentTileCacheLimit;
1512  QString mProxyUrl;
1513  int mProxyPort;
1514  QString mProxyUser;
1515  QString mProxyPass;
1516  bool mProxyHttp;
1517  int mProxyType;
1518  bool mProxySocks5;
1519  bool mProxyAuth;
1520 
1521  // Plugins
1522  QString mActivePositionTrackingPlugin;
1523 
1524  // StatusBar
1525  bool mShowPositionLabel;
1526  bool mShowAltitudeLabel;
1527  bool mShowTileZoomLevelLabel;
1528  bool mShowDownloadProgressBar;
1529  bool mShowDateTimeLabel;
1530 
1531  // MapWizard
1532  QStringList mWmsServers;
1533  QStringList mStaticUrlServers;
1534 
1535  // Routing
1536  bool mShowGuidanceModeStartupWarning;
1537  int mCurrentRoutingProfile;
1538  QColor mRouteColorStandard;
1539  int mRouteAlphaStandard;
1540  QColor mRouteColorHighlighted;
1541  int mRouteAlphaHighlighted;
1542  QColor mRouteColorAlternative;
1543  int mRouteAlphaAlternative;
1544 
1545  // CloudSync
1546  bool mShowCloudSyncSettings;
1547  bool mEnableSync;
1548  QString mSyncBackend;
1549  bool mSyncBookmarks;
1550  bool mSyncRoutes;
1551  QString mOwncloudServer;
1552  QString mOwncloudUsername;
1553  QString mOwncloudPassword;
1554 
1555  private:
1556 };
1557 
1558 #endif
1559 
MarbleSettings::setDateTime
static void setDateTime(const QDateTime &v)
Set The date and time of marble clock.
Definition: settings.h:290
MarbleSettings::mWorkOffline
bool mWorkOffline
Definition: settings.h:1469
MarbleSettings::setQuitLatitude
static void setQuitLatitude(double v)
Set quitLatitude.
Definition: settings.h:100
MarbleSettings::routeColorHighlighted
static QColor routeColorHighlighted()
Get routeColorHighlighted.
Definition: settings.h:1241
MarbleSettings::mCustomTimezone
bool mCustomTimezone
Definition: settings.h:1483
MarbleSettings::mShowDateTimeLabel
bool mShowDateTimeLabel
Definition: settings.h:1529
MarbleSettings::setUtc
static void setUtc(bool v)
Set utc.
Definition: settings.h:397
MarbleSettings::mPersistentTileCacheLimit
int mPersistentTileCacheLimit
Definition: settings.h:1511
MarbleSettings::mProxyPort
int mProxyPort
Definition: settings.h:1513
MarbleSettings::mMarbleDataPath
QString mMarbleDataPath
Definition: settings.h:1473
MarbleSettings::mOwncloudPassword
QString mOwncloudPassword
Definition: settings.h:1553
MarbleSettings::volatileTileCacheLimit
static int volatileTileCacheLimit()
Get Cache for tiles reserved in the physical memory.
Definition: settings.h:799
MarbleSettings::setOnStartup
static void setOnStartup(int v)
Set The location shown on application startup.
Definition: settings.h:701
MarbleSettings::showDownloadProgressBar
static bool showDownloadProgressBar()
Get showDownloadProgressBar.
Definition: settings.h:1089
MarbleSettings::syncBackend
static QString syncBackend()
Get syncBackend.
Definition: settings.h:1355
MarbleSettings::staticUrlServers
static QStringList staticUrlServers()
Get staticUrlServers.
Definition: settings.h:1146
MarbleSettings::showPositionLabel
static bool showPositionLabel()
Get showPositionLabel.
Definition: settings.h:1032
MarbleSettings::systemTimezone
static bool systemTimezone()
Get systemTimezone.
Definition: settings.h:388
MarbleSettings::syncRoutes
static bool syncRoutes()
Get syncRoutes.
Definition: settings.h:1393
MarbleSettings::setShowSun
static void setShowSun(bool v)
Set showSun.
Definition: settings.h:606
MarbleSettings::workOffline
static bool workOffline()
Get workOffline.
Definition: settings.h:186
MarbleSettings::setRouteColorAlternative
static void setRouteColorAlternative(const QColor &v)
Set routeColorAlternative.
Definition: settings.h:1269
MarbleSettings::proxyUser
static QString proxyUser()
Get Username for authorization.
Definition: settings.h:899
MarbleSettings::setDragLocation
static void setDragLocation(int v)
Set The behaviour of the planet's axis on mouse dragging.
Definition: settings.h:682
MarbleSettings::setShowCitylights
static void setShowCitylights(bool v)
Set showCitylights.
Definition: settings.h:625
MarbleSettings::showDateTimeLabel
static bool showDateTimeLabel()
Get showDateTimeLabel.
Definition: settings.h:1108
MarbleSettings::mSpeedSlider
int mSpeedSlider
Definition: settings.h:1478
MarbleSettings::~MarbleSettings
~MarbleSettings()
Definition: settings.cpp:437
MarbleSettings::mInertialEarthRotation
bool mInertialEarthRotation
Definition: settings.h:1505
MarbleSettings::setAngleUnit
static void setAngleUnit(int v)
Set The unit chosen to measure angles.
Definition: settings.h:473
MarbleSettings::setDistanceUnit
static void setDistanceUnit(int v)
Set The unit chosen to measure distances.
Definition: settings.h:454
MarbleSettings::routeColorAlternative
static QColor routeColorAlternative()
Get routeColorAlternative.
Definition: settings.h:1279
MarbleSettings::wmsServers
static QStringList wmsServers()
Get wmsServers.
Definition: settings.h:1127
MarbleSettings::inertialEarthRotation
static bool inertialEarthRotation()
Get inertialEarthRotation.
Definition: settings.h:730
MarbleSettings::proxyType
static int proxyType()
Get proxyType.
Definition: settings.h:956
MarbleSettings::setWorkOffline
static void setWorkOffline(bool v)
Set workOffline.
Definition: settings.h:176
MarbleSettings::mAngleUnit
int mAngleUnit
Definition: settings.h:1488
MarbleSettings::setProxyType
static void setProxyType(int v)
Set proxyType.
Definition: settings.h:946
MarbleSettings::mHomeLatitude
double mHomeLatitude
Definition: settings.h:1462
MarbleSettings::setPersistentTileCacheLimit
static void setPersistentTileCacheLimit(int v)
Set Maximum space on the hard disk that can be used to store tiles.
Definition: settings.h:808
MarbleSettings::onStartup
static int onStartup()
Get The location shown on application startup.
Definition: settings.h:711
MarbleSettings::quitRange
static double quitRange()
Get quitRange.
Definition: settings.h:129
MarbleSettings::mVolatileTileCacheLimit
int mVolatileTileCacheLimit
Definition: settings.h:1510
MarbleSettings::mOnStartup
int mOnStartup
Definition: settings.h:1504
MarbleSettings::mQuitLongitude
double mQuitLongitude
Definition: settings.h:1464
MarbleSettings::stillQuality
static int stillQuality()
Get The quality at which a still map gets painted.
Definition: settings.h:502
MarbleSettings::setInertialEarthRotation
static void setInertialEarthRotation(bool v)
Set inertialEarthRotation.
Definition: settings.h:720
MarbleSettings::mQuitRange
double mQuitRange
Definition: settings.h:1466
MarbleSettings::setEnableSync
static void setEnableSync(bool v)
Set enableSync.
Definition: settings.h:1326
MarbleSettings::mProxyHttp
bool mProxyHttp
Definition: settings.h:1516
MarbleSettings::setChosenTimezone
static void setChosenTimezone(int v)
Set chosenTimezone.
Definition: settings.h:435
MarbleSettings::systemTime
static bool systemTime()
Get systemTime.
Definition: settings.h:350
MarbleSettings::setProxyPort
static void setProxyPort(int v)
Set Port for the proxy server.
Definition: settings.h:858
MarbleSettings::setSubSolarPointIconVisible
static void setSubSolarPointIconVisible(bool v)
Set subSolarPointIconVisible.
Definition: settings.h:644
MarbleSettings::setMapFont
static void setMapFont(const QFont &v)
Set The general font used on the map.
Definition: settings.h:568
MarbleSettings::lockFloatItemPositions
static bool lockFloatItemPositions()
Get lockFloatItemPositions.
Definition: settings.h:224
MarbleSettings::mProxySocks5
bool mProxySocks5
Definition: settings.h:1518
MarbleSettings::setMapTheme
static void setMapTheme(const QString &v)
Set mapTheme.
Definition: settings.h:138
MarbleSettings::proxyPort
static int proxyPort()
Get Port for the proxy server.
Definition: settings.h:880
MarbleSettings::proxyHttp
static bool proxyHttp()
Get Proxy type is HTTP.
Definition: settings.h:937
MarbleSettings::mLabelLocalization
int mLabelLocalization
Definition: settings.h:1492
KConfigSkeleton
MarbleSettings::lastFileOpenDir
static QString lastFileOpenDir()
Get The last directory that was opened by File->Open.
Definition: settings.h:597
MarbleSettings::showGuidanceModeStartupWarning
static bool showGuidanceModeStartupWarning()
Get showGuidanceModeStartupWarning.
Definition: settings.h:1165
MarbleSettings::routeAlphaStandard
static int routeAlphaStandard()
Get routeAlphaStandard.
Definition: settings.h:1222
MarbleSettings::mShowCurrentLocation
bool mShowCurrentLocation
Definition: settings.h:1470
MarbleSettings::mMapFont
QFont mMapFont
Definition: settings.h:1493
MarbleSettings::mExternalMapEditor
int mExternalMapEditor
Definition: settings.h:1507
MarbleSettings::mDragLocation
int mDragLocation
Definition: settings.h:1503
MarbleSettings::utc
static bool utc()
Get utc.
Definition: settings.h:407
MarbleSettings::dragLocation
static int dragLocation()
Get The behaviour of the planet's axis on mouse dragging.
Definition: settings.h:692
MarbleSettings::setHomeZoom
static void setHomeZoom(int v)
Set homeZoom.
Definition: settings.h:62
MarbleSettings::setShowClouds
static void setShowClouds(bool v)
Set showClouds.
Definition: settings.h:157
MarbleSettings::mLastFileOpenDir
QString mLastFileOpenDir
Definition: settings.h:1494
MarbleSettings::setQuitLongitude
static void setQuitLongitude(double v)
Set quitLongitude.
Definition: settings.h:81
MarbleSettings::showBookmarks
static bool showBookmarks()
Get showBookmarks.
Definition: settings.h:281
MarbleSettings::showClouds
static bool showClouds()
Get showClouds.
Definition: settings.h:167
MarbleSettings::mRouteColorHighlighted
QColor mRouteColorHighlighted
Definition: settings.h:1540
MarbleSettings::quitLongitude
static double quitLongitude()
Get quitLongitude.
Definition: settings.h:91
MarbleSettings::setOwncloudPassword
static void setOwncloudPassword(const QString &v)
Set owncloudPassword.
Definition: settings.h:1440
MarbleSettings::setShowTileZoomLevelLabel
static void setShowTileZoomLevelLabel(bool v)
Set showTileZoomLevelLabel.
Definition: settings.h:1060
MarbleSettings::setRouteAlphaAlternative
static void setRouteAlphaAlternative(int v)
Set routeAlphaAlternative.
Definition: settings.h:1288
MarbleSettings::mStillQuality
int mStillQuality
Definition: settings.h:1489
MarbleSettings::MarbleSettings
MarbleSettings()
Definition: settings.cpp:27
MarbleSettings::setShowCloudSyncSettings
static void setShowCloudSyncSettings(bool v)
Set showCloudSyncSettings.
Definition: settings.h:1307
MarbleSettings::animateTargetVoyage
static bool animateTargetVoyage()
Get Display animation on voyage to target.
Definition: settings.h:749
MarbleSettings::setProxySocks5
static void setProxySocks5(bool v)
Set Proxy type is Socks5.
Definition: settings.h:965
MarbleSettings::setLastSessionTime
static void setLastSessionTime(bool v)
Set lastSessionTime.
Definition: settings.h:359
MarbleSettings::mSubSolarPointIconVisible
bool mSubSolarPointIconVisible
Definition: settings.h:1499
MarbleSettings::mSyncBackend
QString mSyncBackend
Definition: settings.h:1548
MarbleSettings::mShowClouds
bool mShowClouds
Definition: settings.h:1468
MarbleSettings::mSyncRoutes
bool mSyncRoutes
Definition: settings.h:1550
MarbleSettings::setProxyPass
static void setProxyPass(const QString &v)
Set Password for authorization.
Definition: settings.h:908
MarbleSettings::mRouteAlphaHighlighted
int mRouteAlphaHighlighted
Definition: settings.h:1541
MarbleSettings::mRouteColorStandard
QColor mRouteColorStandard
Definition: settings.h:1538
MarbleSettings::mUtc
bool mUtc
Definition: settings.h:1482
MarbleSettings::mDistanceUnit
int mDistanceUnit
Definition: settings.h:1487
MarbleSettings::mShowTileZoomLevelLabel
bool mShowTileZoomLevelLabel
Definition: settings.h:1527
MarbleSettings::setShowDateTimeLabel
static void setShowDateTimeLabel(bool v)
Set showDateTimeLabel.
Definition: settings.h:1098
MarbleSettings::mActivePositionTrackingPlugin
QString mActivePositionTrackingPlugin
Definition: settings.h:1522
MarbleSettings::setShowDownloadProgressBar
static void setShowDownloadProgressBar(bool v)
Set showDownloadProgressBar.
Definition: settings.h:1079
MarbleSettings::customTimezone
static bool customTimezone()
Get customTimezone.
Definition: settings.h:426
MarbleSettings::setProxyAuth
static void setProxyAuth(bool v)
Set Proxy requires Authentication.
Definition: settings.h:984
MarbleSettings::setRouteAlphaHighlighted
static void setRouteAlphaHighlighted(int v)
Set routeAlphaHighlighted.
Definition: settings.h:1250
MarbleSettings::mRouteAlphaAlternative
int mRouteAlphaAlternative
Definition: settings.h:1543
MarbleSettings::mapFont
static QFont mapFont()
Get The general font used on the map.
Definition: settings.h:578
MarbleSettings::setCustomTimezone
static void setCustomTimezone(bool v)
Set customTimezone.
Definition: settings.h:416
MarbleSettings::setSpeedSlider
static void setSpeedSlider(int v)
Set The speed of marble clock.
Definition: settings.h:309
MarbleSettings::setMarbleDataPath
static void setMarbleDataPath(const QString &v)
Set marbleDataPath.
Definition: settings.h:252
MarbleSettings::setExternalMapEditor
static void setExternalMapEditor(int v)
Set The external OpenStreetMap editor application.
Definition: settings.h:758
MarbleSettings::showSun
static bool showSun()
Get showSun.
Definition: settings.h:616
MarbleSettings::proxyUrl
static QString proxyUrl()
Get URL for the proxy server.
Definition: settings.h:849
MarbleSettings::mStaticUrlServers
QStringList mStaticUrlServers
Definition: settings.h:1533
MarbleSettings::setLabelLocalization
static void setLabelLocalization(int v)
Set The localization of the labels.
Definition: settings.h:549
MarbleSettings::owncloudUsername
static QString owncloudUsername()
Get owncloudUsername.
Definition: settings.h:1431
MarbleSettings::setLastFileOpenDir
static void setLastFileOpenDir(const QString &v)
Set The last directory that was opened by File->Open.
Definition: settings.h:587
MarbleSettings::owncloudPassword
static QString owncloudPassword()
Get owncloudPassword.
Definition: settings.h:1450
MarbleSettings::setHomeLatitude
static void setHomeLatitude(double v)
Set homeLatitude.
Definition: settings.h:43
MarbleSettings::quitLatitude
static double quitLatitude()
Get quitLatitude.
Definition: settings.h:110
MarbleSettings
Definition: settings.h:13
MarbleSettings::mChosenTimezone
int mChosenTimezone
Definition: settings.h:1484
MarbleSettings::showAltitudeLabel
static bool showAltitudeLabel()
Get showAltitudeLabel.
Definition: settings.h:1051
MarbleSettings::setGraphicsSystem
static void setGraphicsSystem(int v)
Set The graphics system that is used by Qt to render the graphics.
Definition: settings.h:530
MarbleSettings::mapTheme
static QString mapTheme()
Get mapTheme.
Definition: settings.h:148
MarbleSettings::setProxyUrl
static void setProxyUrl(const QString &v)
Set URL for the proxy server.
Definition: settings.h:839
MarbleSettings::setRouteColorHighlighted
static void setRouteColorHighlighted(const QColor &v)
Set routeColorHighlighted.
Definition: settings.h:1231
MarbleSettings::mSystemTimezone
bool mSystemTimezone
Definition: settings.h:1481
MarbleSettings::mLockToSubSolarPoint
bool mLockToSubSolarPoint
Definition: settings.h:1500
MarbleSettings::mProjection
int mProjection
Definition: settings.h:1472
MarbleSettings::lastSessionTime
static bool lastSessionTime()
Get lastSessionTime.
Definition: settings.h:369
MarbleSettings::setShowPositionLabel
static void setShowPositionLabel(bool v)
Set showPositionLabel.
Definition: settings.h:1022
MarbleSettings::setLockFloatItemPositions
static void setLockFloatItemPositions(bool v)
Set lockFloatItemPositions.
Definition: settings.h:214
MarbleSettings::mCurrentRoutingProfile
int mCurrentRoutingProfile
Definition: settings.h:1537
MarbleSettings::routeAlphaHighlighted
static int routeAlphaHighlighted()
Get routeAlphaHighlighted.
Definition: settings.h:1260
MarbleSettings::mShowPositionLabel
bool mShowPositionLabel
Definition: settings.h:1525
MarbleSettings::mHomeZoom
int mHomeZoom
Definition: settings.h:1463
MarbleSettings::proxyAuth
static bool proxyAuth()
Get Proxy requires Authentication.
Definition: settings.h:994
MarbleSettings::setRouteAlphaStandard
static void setRouteAlphaStandard(int v)
Set routeAlphaStandard.
Definition: settings.h:1212
MarbleSettings::animationQuality
static int animationQuality()
Get The quality at which an animated map gets painted.
Definition: settings.h:521
MarbleSettings::setActivePositionTrackingPlugin
static void setActivePositionTrackingPlugin(const QString &v)
Set The position tracking plugin used to determine the current location.
Definition: settings.h:1003
MarbleSettings::setOwncloudServer
static void setOwncloudServer(const QString &v)
Set owncloudServer.
Definition: settings.h:1402
MarbleSettings::showCitylights
static bool showCitylights()
Get showCitylights.
Definition: settings.h:635
MarbleSettings::homeLongitude
static double homeLongitude()
Get homeLongitude.
Definition: settings.h:34
MarbleSettings::mHomeLongitude
double mHomeLongitude
Definition: settings.h:1461
MarbleSettings::setSystemTimezone
static void setSystemTimezone(bool v)
Set systemTimezone.
Definition: settings.h:378
MarbleSettings::speedSlider
static int speedSlider()
Get The speed of marble clock.
Definition: settings.h:331
MarbleSettings::setQuitRange
static void setQuitRange(double v)
Set quitRange.
Definition: settings.h:119
MarbleSettings::mProxyUrl
QString mProxyUrl
Definition: settings.h:1512
MarbleSettings::setLockToSubSolarPoint
static void setLockToSubSolarPoint(bool v)
Set lockToSubSolarPoint.
Definition: settings.h:663
MarbleSettings::setAnimationQuality
static void setAnimationQuality(int v)
Set The quality at which an animated map gets painted.
Definition: settings.h:511
MarbleSettings::mLockFloatItemPositions
bool mLockFloatItemPositions
Definition: settings.h:1471
MarbleSettings::setVolatileTileCacheLimit
static void setVolatileTileCacheLimit(int v)
Set Cache for tiles reserved in the physical memory.
Definition: settings.h:777
MarbleSettings::enableSync
static bool enableSync()
Get enableSync.
Definition: settings.h:1336
MarbleSettings::proxySocks5
static bool proxySocks5()
Get Proxy type is Socks5.
Definition: settings.h:975
MarbleSettings::showCurrentLocation
static bool showCurrentLocation()
Get showCurrentLocation.
Definition: settings.h:205
MarbleSettings::mProxyUser
QString mProxyUser
Definition: settings.h:1514
MarbleSettings::setSyncBookmarks
static void setSyncBookmarks(bool v)
Set syncBookmarks.
Definition: settings.h:1364
MarbleSettings::setSystemTime
static void setSystemTime(bool v)
Set systemTime.
Definition: settings.h:340
MarbleSettings::setProjection
static void setProjection(int v)
Set projection.
Definition: settings.h:233
MarbleSettings::mLastSessionTime
bool mLastSessionTime
Definition: settings.h:1480
MarbleSettings::currentRoutingProfile
static int currentRoutingProfile()
Get currentRoutingProfile.
Definition: settings.h:1184
MarbleSettings::mQuitLatitude
double mQuitLatitude
Definition: settings.h:1465
MarbleSettings::setSyncBackend
static void setSyncBackend(const QString &v)
Set syncBackend.
Definition: settings.h:1345
MarbleSettings::setRouteColorStandard
static void setRouteColorStandard(const QColor &v)
Set routeColorStandard.
Definition: settings.h:1193
MarbleSettings::mProxyPass
QString mProxyPass
Definition: settings.h:1515
MarbleSettings::setOwncloudUsername
static void setOwncloudUsername(const QString &v)
Set owncloudUsername.
Definition: settings.h:1421
MarbleSettings::mProxyAuth
bool mProxyAuth
Definition: settings.h:1519
MarbleSettings::showTileZoomLevelLabel
static bool showTileZoomLevelLabel()
Get showTileZoomLevelLabel.
Definition: settings.h:1070
MarbleSettings::homeLatitude
static double homeLatitude()
Get homeLatitude.
Definition: settings.h:53
MarbleSettings::mDateTime
QDateTime mDateTime
Definition: settings.h:1477
MarbleSettings::angleUnit
static int angleUnit()
Get The unit chosen to measure angles.
Definition: settings.h:483
MarbleSettings::routeColorStandard
static QColor routeColorStandard()
Get routeColorStandard.
Definition: settings.h:1203
MarbleSettings::mOwncloudServer
QString mOwncloudServer
Definition: settings.h:1551
MarbleSettings::setProxyHttp
static void setProxyHttp(bool v)
Set Proxy type is HTTP.
Definition: settings.h:927
MarbleSettings::labelLocalization
static int labelLocalization()
Get The localization of the labels.
Definition: settings.h:559
MarbleSettings::proxyPass
static QString proxyPass()
Get Password for authorization.
Definition: settings.h:918
MarbleSettings::setSyncRoutes
static void setSyncRoutes(bool v)
Set syncRoutes.
Definition: settings.h:1383
MarbleSettings::mShowCitylights
bool mShowCitylights
Definition: settings.h:1498
MarbleSettings::MarbleSettingsHelper
friend class MarbleSettingsHelper
Definition: settings.h:1457
MarbleSettings::mEnableSync
bool mEnableSync
Definition: settings.h:1547
MarbleSettings::mShowSun
bool mShowSun
Definition: settings.h:1497
MarbleSettings::mAnimateTargetVoyage
bool mAnimateTargetVoyage
Definition: settings.h:1506
MarbleSettings::lockToSubSolarPoint
static bool lockToSubSolarPoint()
Get lockToSubSolarPoint.
Definition: settings.h:673
MarbleSettings::showCloudSyncSettings
static bool showCloudSyncSettings()
Get showCloudSyncSettings.
Definition: settings.h:1317
MarbleSettings::mShowGuidanceModeStartupWarning
bool mShowGuidanceModeStartupWarning
Definition: settings.h:1536
MarbleSettings::externalMapEditor
static int externalMapEditor()
Get The external OpenStreetMap editor application.
Definition: settings.h:768
MarbleSettings::owncloudServer
static QString owncloudServer()
Get owncloudServer.
Definition: settings.h:1412
MarbleSettings::graphicsSystem
static int graphicsSystem()
Get The graphics system that is used by Qt to render the graphics.
Definition: settings.h:540
MarbleSettings::setAnimateTargetVoyage
static void setAnimateTargetVoyage(bool v)
Set Display animation on voyage to target.
Definition: settings.h:739
MarbleSettings::homeZoom
static int homeZoom()
Get homeZoom.
Definition: settings.h:72
MarbleSettings::mShowBookmarks
bool mShowBookmarks
Definition: settings.h:1474
MarbleSettings::distanceUnit
static int distanceUnit()
Get The unit chosen to measure distances.
Definition: settings.h:464
MarbleSettings::setCurrentRoutingProfile
static void setCurrentRoutingProfile(int v)
Set currentRoutingProfile.
Definition: settings.h:1174
MarbleSettings::mProxyType
int mProxyType
Definition: settings.h:1517
MarbleSettings::mShowCloudSyncSettings
bool mShowCloudSyncSettings
Definition: settings.h:1546
MarbleSettings::setShowBookmarks
static void setShowBookmarks(bool v)
Set showBookmarks.
Definition: settings.h:271
MarbleSettings::setStillQuality
static void setStillQuality(int v)
Set The quality at which a still map gets painted.
Definition: settings.h:492
MarbleSettings::setShowGuidanceModeStartupWarning
static void setShowGuidanceModeStartupWarning(bool v)
Set showGuidanceModeStartupWarning.
Definition: settings.h:1155
MarbleSettings::mGraphicsSystem
int mGraphicsSystem
Definition: settings.h:1491
MarbleSettings::mOwncloudUsername
QString mOwncloudUsername
Definition: settings.h:1552
MarbleSettings::activePositionTrackingPlugin
static QString activePositionTrackingPlugin()
Get The position tracking plugin used to determine the current location.
Definition: settings.h:1013
MarbleSettings::mRouteAlphaStandard
int mRouteAlphaStandard
Definition: settings.h:1539
MarbleSettings::setHomeLongitude
static void setHomeLongitude(double v)
Set homeLongitude.
Definition: settings.h:24
MarbleSettings::mShowDownloadProgressBar
bool mShowDownloadProgressBar
Definition: settings.h:1528
MarbleSettings::mSystemTime
bool mSystemTime
Definition: settings.h:1479
MarbleSettings::setShowAltitudeLabel
static void setShowAltitudeLabel(bool v)
Set showAltitudeLabel.
Definition: settings.h:1041
MarbleSettings::setProxyUser
static void setProxyUser(const QString &v)
Set Username for authorization.
Definition: settings.h:889
MarbleSettings::dateTime
static QDateTime dateTime()
Get The date and time of marble clock.
Definition: settings.h:300
MarbleSettings::mAnimationQuality
int mAnimationQuality
Definition: settings.h:1490
MarbleSettings::setShowCurrentLocation
static void setShowCurrentLocation(bool v)
Set showCurrentLocation.
Definition: settings.h:195
MarbleSettings::routeAlphaAlternative
static int routeAlphaAlternative()
Get routeAlphaAlternative.
Definition: settings.h:1298
MarbleSettings::marbleDataPath
static QString marbleDataPath()
Get marbleDataPath.
Definition: settings.h:262
MarbleSettings::syncBookmarks
static bool syncBookmarks()
Get syncBookmarks.
Definition: settings.h:1374
MarbleSettings::setWmsServers
static void setWmsServers(const QStringList &v)
Set wmsServers.
Definition: settings.h:1117
MarbleSettings::subSolarPointIconVisible
static bool subSolarPointIconVisible()
Get subSolarPointIconVisible.
Definition: settings.h:654
MarbleSettings::mWmsServers
QStringList mWmsServers
Definition: settings.h:1532
MarbleSettings::mMapTheme
QString mMapTheme
Definition: settings.h:1467
MarbleSettings::setStaticUrlServers
static void setStaticUrlServers(const QStringList &v)
Set staticUrlServers.
Definition: settings.h:1136
MarbleSettings::chosenTimezone
static int chosenTimezone()
Get chosenTimezone.
Definition: settings.h:445
MarbleSettings::persistentTileCacheLimit
static int persistentTileCacheLimit()
Get Maximum space on the hard disk that can be used to store tiles.
Definition: settings.h:830
MarbleSettings::mShowAltitudeLabel
bool mShowAltitudeLabel
Definition: settings.h:1526
MarbleSettings::mRouteColorAlternative
QColor mRouteColorAlternative
Definition: settings.h:1542
MarbleSettings::mSyncBookmarks
bool mSyncBookmarks
Definition: settings.h:1549
MarbleSettings::projection
static int projection()
Get projection.
Definition: settings.h:243
This file is part of the KDE documentation.
Documentation copyright © 1996-2014 The KDE developers.
Generated on Tue Oct 14 2014 22:38:52 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.

marble

Skip menu "marble"
  • Main Page
  • Namespace List
  • Namespace Members
  • Alphabetical List
  • Class List
  • Class Hierarchy
  • Class Members
  • File List
  • File Members
  • Related Pages

kdeedu API Reference

Skip menu "kdeedu API Reference"
  • Analitza
  •     lib
  • kalgebra
  • kalzium
  •   libscience
  • kanagram
  • kig
  •   lib
  • klettres
  • kstars
  • libkdeedu
  •   keduvocdocument
  • marble
  • parley
  • rocs
  •   App
  •   RocsCore
  •   VisualEditor
  •   stepcore

Search



Report problems with this website to our bug tracking system.
Contact the specific authors with questions and comments about the page contents.

KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal