forked from koush/sqlite-net
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStocksView.xib.cs
107 lines (90 loc) · 2.74 KB
/
StocksView.xib.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
using System;
using System.Collections.Generic;
using System.Linq;
using MonoTouch.Foundation;
using MonoTouch.UIKit;
using SQLite.MonoTouchAdmin;
namespace Stocks.Touch
{
public partial class StocksView : UIViewController
{
Database _db;
public StocksView (Database db)
{
_db = db;
Title = "Symbols";
}
public override void ViewDidLoad ()
{
var ds = new SymbolsData (_db);
table.DataSource = ds;
table.SetEditing (true, false);
NavigationItem.RightBarButtonItem = new UIBarButtonItem (UIBarButtonSystemItem.Add, delegate {
var c = new AddStockView (_db);
c.Finished += delegate {
ds.Refresh ();
table.ReloadData ();
};
var n = new UINavigationController (c);
NavigationController.PresentModalViewController(n, true);
});
NavigationItem.LeftBarButtonItem = new UIBarButtonItem ("Admin", UIBarButtonItemStyle.Plain, delegate {
var c = new SQLiteAdmin(_db);
NavigationController.PushViewController(c.NewTablesViewController(), true);
});
}
public class SymbolsData : UITableViewDataSource
{
List<Stock> rows;
Database _db;
public SymbolsData(Database db) {
_db = db;
rows = _db.QueryAllStocks().ToList();
}
public void Refresh () {
rows = _db.QueryAllStocks().ToList();
}
public override void MoveRow (UITableView tableView, NSIndexPath sourceIndexPath, NSIndexPath destinationIndexPath)
{
var item = rows[sourceIndexPath.Row];
rows.RemoveAt(sourceIndexPath.Row);
rows.Insert(destinationIndexPath.Row, item);
}
public override bool CanMoveRow (UITableView tableView, NSIndexPath indexPath)
{
return true;
}
public override void CommitEditingStyle (UITableView tableView, UITableViewCellEditingStyle editingStyle, NSIndexPath indexPath)
{
switch (editingStyle) {
case UITableViewCellEditingStyle.Delete:
_db.Delete(rows[indexPath.Row]);
rows.RemoveAt(indexPath.Row);
tableView.DeleteRows(new[]{indexPath}, UITableViewRowAnimation.Fade);
break;
}
}
public override int NumberOfSections (UITableView tableView)
{
return 1;
}
public override int RowsInSection (UITableView tableview, int section)
{
return rows.Count;
}
public override UITableViewCell GetCell (UITableView tableView, NSIndexPath indexPath)
{
var cell = tableView.DequeueReusableCell ("cell");
if (cell == null) {
cell = new UITableViewCell (UITableViewCellStyle.Subtitle, "cell");
}
cell.ShowsReorderControl = true;
var stock = rows[indexPath.Row];
var val = _db.QueryLatestValuation (stock);
cell.TextLabel.Text = stock.Symbol;
cell.DetailTextLabel.Text = val != null ? val.Price.ToString () : "?";
return cell;
}
}
}
}