-
Notifications
You must be signed in to change notification settings - Fork 0
/
FormDownloadPocketQuery.cs
132 lines (104 loc) · 3.95 KB
/
FormDownloadPocketQuery.cs
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
using GeocachingAPI.Models;
using System;
using System.Collections.Generic;
using System.Data;
using System.Drawing;
using System.Windows.Forms;
namespace WinCachebox
{
public partial class FormDownloadPocketQuery : Form
{
public FormDownloadPocketQuery()
{
InitializeComponent();
}
private void DownloadButton_Click(object sender, EventArgs e)
{
this.DialogResult = DialogResult.OK;
}
private void CancelButton_Click(object sender, EventArgs e)
{
this.DialogResult = DialogResult.Cancel;
}
public void InitListOfAvailablePQs(IList<GeocacheList> pocketQueries)
{
int PocketQueryListValue = Config.GetInt("PocketQueryListValue");
if (PocketQueryListValue < 0)
{
PocketQueryListValue = 0;
}
int lastNumOfPQs = PocketQueryListValue >> 24;
int checkedValues = PocketQueryListValue & 0x00FFFFFF;
if (lastNumOfPQs != pocketQueries.Count)
{
PocketQueryListValue = 0;
checkedValues = 0;
}
int i = 0;
foreach (GeocacheList pocketQuery in pocketQueries)
{
CBCommand PQcommand;
PQcommand = Database.Data.CreateCommand("select max(CreationTimeOfPQ) from PocketQueries where PQName=@PQName");
PQcommand.ParametersAdd("@PQName", DbType.String, pocketQuery.Name);
DateTime lastImportedCreationTimeOfPQ = new DateTime();
string dateString = PQcommand.ExecuteScalar().ToString();
bool PQwasImported = false;
if (!dateString.Equals(""))
{
PQwasImported = true;
lastImportedCreationTimeOfPQ = Convert.ToDateTime(dateString);
}
PQcommand.Dispose();
try
{
DateTime creationDateTime = pocketQuery.LastUpdatedDateUtc.Value; //.DateLastGenerated;
ListViewItem item = new ListViewItem(new string[] { pocketQuery.Name, creationDateTime.ToString("dd-MM-yyyy HH:mm:ss") })
{
Checked = ((checkedValues >> i) & 0x00000001) > 0
};
if (PQwasImported)
{
if (lastImportedCreationTimeOfPQ == creationDateTime)
{
item.Checked = false;
item.ForeColor = Color.Gray;
}
else
{
item.Checked = true;
}
}
item.SubItems.Add(creationDateTime.ToString("dd-MM-yyyy HH:mm:ss"));
item.Tag = (object)pocketQuery;
listViewAvailablePQs.Items.Add(item);
}
catch (System.FormatException)
{
// Date format does not match, ignore item.
}
i++;
}
}
public List<GeocacheList> GetListOfSelectedPQs()
{
List<GeocacheList> listOfSelectedPQs = new List<GeocacheList>();
int i = 0;
int checkedValues = 0;
foreach (ListViewItem item in listViewAvailablePQs.Items)
{
if (item.Checked == true)
{
listOfSelectedPQs.Add((GeocacheList)(item.Tag));
checkedValues |= (1 << i);
}
i++;
}
checkedValues |= listViewAvailablePQs.Items.Count << 24;
Config.Set("PocketQueryListValue", checkedValues);
return listOfSelectedPQs;
}
private void pictureBox1_Click(object sender, EventArgs e)
{
}
}
}