-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathiUIHandler.cs
More file actions
37 lines (31 loc) · 948 Bytes
/
Copy pathiUIHandler.cs
File metadata and controls
37 lines (31 loc) · 948 Bytes
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Android.App;
using Android.Content;
using Android.OS;
using Android.Runtime;
using Android.Views;
using Android.Widget;
namespace TouchWalkthrough
{
interface iUIHandler{
//Development functions
List<Drop> createDummyDrops(int i);
//filterung geht effizienter: List<Drop> filteredEvents; laden bei filterdruck neue elemnte in die liste oder entfernen alte
List<Drop> getDrops();
List<Drop> getDrops(Category[] filters);
List<Drop> getFollowedDrops();
Drop getDrop(int i);
void ignoreDrop(Drop d);
void followDrop(Drop d);
//client-server communication
void updateDropList(DateTime lastTimestamp);
//Julians datentyp
string getImage(string path);
// Front-End Funktionen
void showDrop();
void showDropDetail(Drop ev);
}
}