File: ApplicationSettings.cs

package info (click to toggle)
quickroute-gps 2.5-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 19,576 kB
  • sloc: cs: 74,488; makefile: 72; sh: 43
file content (477 lines) | stat: -rw-r--r-- 22,384 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Drawing;
using System.IO;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters.Binary;
using System.Windows.Forms;
using QuickRoute.BusinessEntities.Exporters;
using QuickRoute.BusinessEntities.GlobalizedProperties;
using QuickRoute.BusinessEntities.RouteProperties;

namespace QuickRoute.BusinessEntities
{
  [Serializable]
  public class ApplicationSettings : GlobalizedObject
  {
    private DocumentSettings defaultDocumentSettings = new DocumentSettings();
    [Obsolete]
    private string initialFolder;
    private Size windowSize;
    private Point windowLocation;
    private FormWindowState windowState;
    private int histogramHeight = 120;
    private List<string> recentDocumentFileNames = new List<string>();
    private CultureInfo uiCulture;
    private bool autoAdjustColorRangeInterval = true;
    private List<PublishMapSettingsItem> publishMapSettings = new List<PublishMapSettingsItem>();
    private List<string> recentMapImageFileNames = new List<string>();
    private List<string> recentRouteFileNames = new List<string>();
    private KmlProperties exportKmlProperties = new KmlProperties();
    private KmlMultipleFileExporterProperties exportKmlMultipleFileProperties = new KmlMultipleFileExporterProperties();
    private bool rightPanelVisible = true;
    private bool bottomPanelVisible = true;
    private bool panelSettingsUpdated = true; // flag for handling the rightPanelVisible and bottomPanelVisible when upgrading
    private double exportImagePercentualImageSize = 1;
    private double exportImageQuality = 0.8;
    private List<SessionPerson> recentPersons = new List<SessionPerson>();
    private List<string> dontRemindAboutVersions = new List<string>();
    private Dictionary<FileDialogType, string> initialFolders = new Dictionary<FileDialogType, string>();
    private ExportRouteDataSettings exportRouteDataSettings = new ExportRouteDataSettings();
    private SelectableRoutePropertyTypeCollection lapPropertyTypes = new SelectableRoutePropertyTypeCollection();
    private SelectableRoutePropertyTypeCollection momentaneousInfoPropertyTypes = new SelectableRoutePropertyTypeCollection();
    private int externaLapDataSourceIndex = 0;

    public DocumentSettings DefaultDocumentSettings
    {
      get { return defaultDocumentSettings; }
      set { defaultDocumentSettings = value; }
    }

    public Size WindowSize
    {
      get { return windowSize; }
      set { windowSize = value; }
    }

    public Point WindowLocation
    {
      get { return windowLocation; }
      set { windowLocation = value; }
    }

    public FormWindowState WindowState
    {
      get { return windowState; }
      set { windowState = value; }
    }

    public int HistogramHeight
    {
      get { return histogramHeight; }
      set { histogramHeight = value; }
    }

    public CultureInfo UiCulture
    {
      get { return uiCulture; }
      set { uiCulture = value; }
    }

    public bool AutoAdjustColorRangeInterval
    {
      get { return autoAdjustColorRangeInterval; }
      set { autoAdjustColorRangeInterval = value; }
    }

    public List<PublishMapSettingsItem> PublishMapSettings
    {
      get { return publishMapSettings; }
      set { publishMapSettings = value; }
    }

    public List<string> RecentDocumentFileNames
    {
      get { return recentDocumentFileNames ?? new List<string>(); }
    }

    public List<string> RecentMapImageFileNames
    {
      get { return recentMapImageFileNames ?? new List<string>(); }
    }

    public List<string> RecentRouteFileNames
    {
      get { return recentRouteFileNames ?? new List<string>(); }
    }

    public KmlProperties ExportKmlProperties
    {
      get { EnsureNotNull(ref exportKmlProperties); return exportKmlProperties; }
      set { exportKmlProperties = value; }
    }

    public KmlMultipleFileExporterProperties ExportKmlMultipleFileProperties
    {
      get { EnsureNotNull(ref exportKmlMultipleFileProperties); return exportKmlMultipleFileProperties; }
      set { exportKmlMultipleFileProperties = value; }
    }

    public bool RightPanelVisible
    {
      get
      {
        if (!panelSettingsUpdated) UpdatePanelSettings();
        return rightPanelVisible;
      }
      set { rightPanelVisible = value; }
    }

    public bool BottomPanelVisible
    {
      get
      {
        if (!panelSettingsUpdated) UpdatePanelSettings();
        return bottomPanelVisible;
      }
      set { bottomPanelVisible = value; }
    }

    private void UpdatePanelSettings()
    {
      panelSettingsUpdated = true;
      rightPanelVisible = true;
      bottomPanelVisible = true;
    }

    public double ExportImageQuality
    {
      get { return exportImageQuality; }
      set { exportImageQuality = value; }
    }

    public double ExportImagePercentualImageSize
    {
      get { return exportImagePercentualImageSize; }
      set { exportImagePercentualImageSize = value; }
    }

    public List<SessionPerson> RecentPersons
    {
      get { EnsureNotNull(ref recentPersons); return recentPersons; }
      set { recentPersons = value; }
    }

    public List<string> DontRemindAboutVersions
    {
      get { EnsureNotNull(ref dontRemindAboutVersions); return dontRemindAboutVersions; }
      set { dontRemindAboutVersions = value; }
    }

    public Dictionary<FileDialogType, string> InitialFolders
    {
      get { EnsureNotNull(ref initialFolders); return initialFolders; }
      set { initialFolders = value; }
    }

    public ExportRouteDataSettings ExportRouteDataSettings
    {
      get { EnsureNotNull(ref exportRouteDataSettings); return exportRouteDataSettings; }
      set { exportRouteDataSettings = value; }
    }

    public static SelectableRoutePropertyTypeCollection AvailableLapPropertyTypes
    {
      get
      {
          return new SelectableRoutePropertyTypeCollection()
                 {
                   new SelectableRoutePropertyType(typeof (LapNumber), true),
                   new SelectableRoutePropertyType(typeof (RouteProperties.ElapsedTime), true),
                   new SelectableRoutePropertyType(typeof (StraightLineDistance), true),
                   new SelectableRoutePropertyType(typeof (RouteDistance), true),
                   new SelectableRoutePropertyType(typeof (AverageStraightLinePace), true),
                   new SelectableRoutePropertyType(typeof (AverageRoutePace), true),
                   new SelectableRoutePropertyType(typeof (RouteToStraightLine), true),
                   new SelectableRoutePropertyType(typeof (AverageHeartRate), true),
                   new SelectableRoutePropertyType(typeof (Ascent), true),
                   new SelectableRoutePropertyType(typeof (Descent), true),
                   new SelectableRoutePropertyType(typeof (ElapsedTimeFromStart), false),
                   new SelectableRoutePropertyType(typeof (Time), false),
                   new SelectableRoutePropertyType(typeof (CircleTimeAtStartOfSpan), false),
                   new SelectableRoutePropertyType(typeof (CircleTimeAtEndOfSpan), false),
                   new SelectableRoutePropertyType(typeof (StraightLineDistanceFromStart), false),
                   new SelectableRoutePropertyType(typeof (RouteDistanceFromStart), false),
                   new SelectableRoutePropertyType(typeof (RouteToStraightLineFromStart), false),
                   new SelectableRoutePropertyType(typeof (AverageStraightLinePaceFromStart), false),
                   new SelectableRoutePropertyType(typeof (AverageRoutePaceFromStart), false),
                   new SelectableRoutePropertyType(typeof (Pace), false),
                   new SelectableRoutePropertyType(typeof (AverageStraightLineSpeed), false),
                   new SelectableRoutePropertyType(typeof (AverageStraightLineSpeedFromStart), false),
                   new SelectableRoutePropertyType(typeof (AverageRouteSpeed), false),
                   new SelectableRoutePropertyType(typeof (AverageRouteSpeedFromStart), false),
                   new SelectableRoutePropertyType(typeof (Speed), false),
                   new SelectableRoutePropertyType(typeof (AverageHeartRateFromStart), false),
                   new SelectableRoutePropertyType(typeof (MinHeartRate), false),
                   new SelectableRoutePropertyType(typeof (MinHeartRateFromStart), false),
                   new SelectableRoutePropertyType(typeof (MaxHeartRate), false),
                   new SelectableRoutePropertyType(typeof (MaxHeartRateFromStart), false),
                   new SelectableRoutePropertyType(typeof (RouteProperties.HeartRate), false),
                   new SelectableRoutePropertyType(typeof (AltitudeDifference), false),
                   new SelectableRoutePropertyType(typeof (AltitudeDifferenceFromStart), false),
                   new SelectableRoutePropertyType(typeof (AscentFromStart), false),
                   new SelectableRoutePropertyType(typeof (DescentFromStart), false),
                   new SelectableRoutePropertyType(typeof (Inclination), false),
                   new SelectableRoutePropertyType(typeof (AverageInclination), false),
                   new SelectableRoutePropertyType(typeof (AverageInclinationFromStart), false),
                   new SelectableRoutePropertyType(typeof (RouteProperties.Altitude), false),
                   new SelectableRoutePropertyType(typeof (AverageDirectionDeviationToNextLap), false),
                   new SelectableRoutePropertyType(typeof (AverageDirectionDeviationToNextLapFromStart), false),
                   new SelectableRoutePropertyType(typeof (DirectionDeviationToNextLap), false),
                   new SelectableRoutePropertyType(typeof (Direction), false),
                   new SelectableRoutePropertyType(typeof (Location), false),
                   new SelectableRoutePropertyType(typeof (MapReadingDurationInSpan), false),
                   new SelectableRoutePropertyType(typeof (MapReadingDurationFromStart), false),
                   new SelectableRoutePropertyType(typeof (MapReadingPercentage), false),
                   new SelectableRoutePropertyType(typeof (MapReadingPercentageFromStart), false),
                   new SelectableRoutePropertyType(typeof (NumberOfMapReadings), false),
                   new SelectableRoutePropertyType(typeof (NumberOfMapReadingsFromStart), false),
                   new SelectableRoutePropertyType(typeof (AverageMapReadingTime), false),
                   new SelectableRoutePropertyType(typeof (AverageMapReadingTimeFromStart), false),
                   new SelectableRoutePropertyType(typeof (AverageTimeBetweenMapReadings), false),
                   new SelectableRoutePropertyType(typeof (AverageTimeBetweenMapReadingsFromStart), false),
                   new SelectableRoutePropertyType(typeof (AveragePaceWhenReadingMap), false),
                   new SelectableRoutePropertyType(typeof (AveragePaceWhenReadingMapFromStart), false),
                   new SelectableRoutePropertyType(typeof (AveragePaceWhenNotReadingMap), false),
                   new SelectableRoutePropertyType(typeof (AveragePaceWhenNotReadingMapFromStart), false),
                 };
      }
    }

    public static SelectableRoutePropertyTypeCollection AvailableMomentaneousInfoPropertyTypes
    {
      get
      {
        return new SelectableRoutePropertyTypeCollection()
                 {
                   new SelectableRoutePropertyType(typeof (LapNumber), true),
                   new SelectableRoutePropertyType(typeof (Time), true),
                   new SelectableRoutePropertyType(typeof (RouteProperties.ElapsedTime), true),
                   new SelectableRoutePropertyType(typeof (ElapsedTimeFromStart), true),
                   new SelectableRoutePropertyType(typeof (CircleTimeBackward), true),
                   new SelectableRoutePropertyType(typeof (CircleTimeForward), true),
                   new SelectableRoutePropertyType(typeof (StraightLineDistance), true),
                   new SelectableRoutePropertyType(typeof (RouteDistance), true),
                   new SelectableRoutePropertyType(typeof (RouteDistanceFromStart), true),
                   new SelectableRoutePropertyType(typeof (Pace), true),
                   new SelectableRoutePropertyType(typeof (Speed), true),
                   new SelectableRoutePropertyType(typeof (RouteProperties.HeartRate), true),
                   new SelectableRoutePropertyType(typeof (RouteProperties.Altitude), true),
                   new SelectableRoutePropertyType(typeof (Inclination), true),
                   new SelectableRoutePropertyType(typeof (AscentFromStart), true),
                   new SelectableRoutePropertyType(typeof (DescentFromStart), true),
                   new SelectableRoutePropertyType(typeof (DirectionDeviationToNextLap), true),
                   new SelectableRoutePropertyType(typeof (Location), true),
                   new SelectableRoutePropertyType(typeof (StraightLineDistanceFromStart), false),
                   new SelectableRoutePropertyType(typeof (RouteToStraightLine), false),
                   new SelectableRoutePropertyType(typeof (RouteToStraightLineFromStart), false),
                   new SelectableRoutePropertyType(typeof (AverageStraightLinePace), false),
                   new SelectableRoutePropertyType(typeof (AverageStraightLinePaceFromStart), false),
                   new SelectableRoutePropertyType(typeof (AverageRoutePace), false),
                   new SelectableRoutePropertyType(typeof (AverageRoutePaceFromStart), false),
                   new SelectableRoutePropertyType(typeof (AverageStraightLineSpeed), false),
                   new SelectableRoutePropertyType(typeof (AverageStraightLineSpeedFromStart), false),
                   new SelectableRoutePropertyType(typeof (AverageRouteSpeed), false),
                   new SelectableRoutePropertyType(typeof (AverageRouteSpeedFromStart), false),
                   new SelectableRoutePropertyType(typeof (AverageHeartRate), false),
                   new SelectableRoutePropertyType(typeof (AverageHeartRateFromStart), false),
                   new SelectableRoutePropertyType(typeof (MinHeartRate), false),
                   new SelectableRoutePropertyType(typeof (MinHeartRateFromStart), false),
                   new SelectableRoutePropertyType(typeof (MaxHeartRate), false),
                   new SelectableRoutePropertyType(typeof (MaxHeartRateFromStart), false),
                   new SelectableRoutePropertyType(typeof (AltitudeDifference), false),
                   new SelectableRoutePropertyType(typeof (AltitudeDifferenceFromStart), false),
                   new SelectableRoutePropertyType(typeof (Ascent), false),
                   new SelectableRoutePropertyType(typeof (Descent), false),
                   new SelectableRoutePropertyType(typeof (AverageInclination), false),
                   new SelectableRoutePropertyType(typeof (AverageInclinationFromStart), false),
                   new SelectableRoutePropertyType(typeof (AverageDirectionDeviationToNextLap), false),
                   new SelectableRoutePropertyType(typeof (AverageDirectionDeviationToNextLapFromStart), false),
                   new SelectableRoutePropertyType(typeof (Direction), false),
                   new SelectableRoutePropertyType(typeof (RouteProperties.MapReadingState), false),
                   new SelectableRoutePropertyType(typeof (MapReadingDuration), false),
                   new SelectableRoutePropertyType(typeof (MapReadingDurationInSpan), false),
                   new SelectableRoutePropertyType(typeof (MapReadingDurationFromStart), false),
                   new SelectableRoutePropertyType(typeof (MapReadingPercentage), false),
                   new SelectableRoutePropertyType(typeof (MapReadingPercentageFromStart), false),
                   new SelectableRoutePropertyType(typeof (NumberOfMapReadings), false),
                   new SelectableRoutePropertyType(typeof (NumberOfMapReadingsFromStart), false),
                   new SelectableRoutePropertyType(typeof (AverageMapReadingTime), false),
                   new SelectableRoutePropertyType(typeof (AverageMapReadingTimeFromStart), false),
                   new SelectableRoutePropertyType(typeof (AverageTimeBetweenMapReadings), false),
                   new SelectableRoutePropertyType(typeof (AverageTimeBetweenMapReadingsFromStart), false),
                   new SelectableRoutePropertyType(typeof (AveragePaceWhenReadingMap), false),
                   new SelectableRoutePropertyType(typeof (AveragePaceWhenReadingMapFromStart), false),
                   new SelectableRoutePropertyType(typeof (AveragePaceWhenNotReadingMap), false),
                   new SelectableRoutePropertyType(typeof (AveragePaceWhenNotReadingMapFromStart), false),
                   new SelectableRoutePropertyType(typeof (PreviousMapReadingEnd), false),
                   new SelectableRoutePropertyType(typeof (NextMapReadingStart), false),
                 };
      }
    }

    public SelectableRoutePropertyTypeCollection LapPropertyTypes
    {
      get
      {
        if (lapPropertyTypes == null || lapPropertyTypes.Count == 0)
        {
          lapPropertyTypes = AvailableLapPropertyTypes;
        }
        
        // a fix for double storage of lap property types
        var realLapPropertyTypes = new SelectableRoutePropertyTypeCollection();
        foreach(var lpt in lapPropertyTypes)
        {
          var found = false;
          foreach(var lpt2 in realLapPropertyTypes)
          {
            if(lpt.RoutePropertyType == lpt2.RoutePropertyType)
            {
              found = true;
              break;
            }
          }
          if (!found) realLapPropertyTypes.Add(lpt);
        }
        lapPropertyTypes = realLapPropertyTypes;
        
        return lapPropertyTypes;
      }
      set { lapPropertyTypes = value; }
    }

    public SelectableRoutePropertyTypeCollection MomentaneousInfoPropertyTypes
    {
      get
      {
        if (momentaneousInfoPropertyTypes == null || momentaneousInfoPropertyTypes.Count == 0)
        {
          momentaneousInfoPropertyTypes = AvailableMomentaneousInfoPropertyTypes;
        }
        else if (momentaneousInfoPropertyTypes.Count < AvailableMomentaneousInfoPropertyTypes.Count)
        {
          // make sure new property types are propagated to the settings
          foreach (var mipt in AvailableMomentaneousInfoPropertyTypes)
          {
            if (!momentaneousInfoPropertyTypes.ContainsRoutePropertyType(mipt.RoutePropertyType))
            {
              momentaneousInfoPropertyTypes.Add(mipt);
            }
          }
        }
        return momentaneousInfoPropertyTypes;
      }
      set { momentaneousInfoPropertyTypes = value; }
    }

    public int ExternaLapDataSourceIndex
    {
      get { return externaLapDataSourceIndex; }
      set { externaLapDataSourceIndex = value; }
    }

    public void AddRecentDocumentFileName(string fileName)
    {
      AddRecentFileName(fileName, ref recentDocumentFileNames, 0);
    }

    public void AddRecentDocumentFileName(string fileName, int maxNoOfItems)
    {
      AddRecentFileName(fileName, ref recentDocumentFileNames, maxNoOfItems);
    }

    public void AddRecentMapImageFileName(string fileName)
    {
      AddRecentFileName(fileName, ref recentMapImageFileNames, 0);
    }

    public void AddRecentMapImageFileName(string fileName, int maxNoOfItems)
    {
      AddRecentFileName(fileName, ref recentMapImageFileNames, maxNoOfItems);
    }

    public void AddRecentRouteFileName(string fileName)
    {
      AddRecentFileName(fileName, ref recentRouteFileNames, 0);
    }

    public void AddRecentRouteFileName(string fileName, int maxNoOfItems)
    {
      AddRecentFileName(fileName, ref recentRouteFileNames, maxNoOfItems);
    }

    public void AddRecentPerson(SessionPerson person)
    {
      if (person.Name != "" || person.Club != "") AddRecentPerson(person, ref recentPersons, 0);
    }

    private static void AddRecentFileName(string fileName, ref List<string> fileNames, int maxNoOfItems)
    {
      if (fileNames == null) fileNames = new List<string>();
      fileNames.RemoveAll(s => s.ToLower() == fileName.ToLower());
      fileNames.Insert(0, fileName);
      if (maxNoOfItems > 0 && fileNames.Count > maxNoOfItems)
      {
        fileNames.RemoveRange(maxNoOfItems, fileNames.Count - maxNoOfItems);
      }
    }

    private static void AddRecentPerson(SessionPerson person, ref List<SessionPerson> persons, int maxNoOfItems)
    {
      if (persons == null) persons = new List<SessionPerson>();
      persons.RemoveAll(p => p.Name.ToLower() == person.Name.ToLower() && p.Club.ToLower() == person.Club.ToLower());
      persons.Insert(0, person);
      if (maxNoOfItems > 0 && persons.Count > maxNoOfItems)
      {
        persons.RemoveRange(maxNoOfItems, persons.Count - maxNoOfItems);
      }
    }

    private static void EnsureNotNull<T>(ref T item) where T : class, new()
    {
      if (item == null) item = new T();
    }

    public ApplicationSettings Copy()
    {
      var ms = new MemoryStream();
      var bf = new BinaryFormatter();
      bf.Serialize(ms, this);
      ms.Flush();
      ms.Seek(0, SeekOrigin.Begin);
      return bf.Deserialize(ms) as ApplicationSettings;
    }

    [Serializable]
    public enum FileDialogType
    {
      OpenDocument,
      SaveDocument,
      ImportMapImage,
      ImportRoute,
      ExportImage,
      ExportFile
    }

  }

  [Serializable]
  public class PublishMapSettingsItem
  {
    public string WebServiceURL { get; set; }
    public string Username { get; set; }
    public string Password { get; set; }
  }
}