aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/cgCacheView.java
blob: 6b3b433128e485e7fc27809ff5d8bca94895f133 (plain)
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
package cgeo.geocaching;

import android.widget.CheckBox;
import android.widget.ImageView;
import android.widget.RelativeLayout;
import android.widget.TextView;

public class cgCacheView {
    // layouts & views
    public RelativeLayout oneCache;
    public RelativeLayout oneInfo;
    public RelativeLayout oneCheckbox;
    public CheckBox checkbox;
    public ImageView logStatusMark;
    public TextView text;
    public TextView favourite;
    public TextView info;
    public RelativeLayout inventory;
    public RelativeLayout directionLayout;
    public cgDistanceView distance;
    public cgCompassMini direction;
    public RelativeLayout dirImgLayout;
    public ImageView dirImg;

    // status
    public float startX = -1;
    public float prevX = -1;
}