2010-05-02 01:35:00 +02:00
|
|
|
package com.osmand;
|
|
|
|
|
2010-05-05 11:31:54 +02:00
|
|
|
|
2010-05-02 01:35:00 +02:00
|
|
|
/**
|
|
|
|
* This class is designed to put all to do's and link them with code.
|
|
|
|
* The whole methods could be paste or just constants.
|
|
|
|
* Do not worry to put ugly code here (just a little piece)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public class ToDoConstants {
|
|
|
|
|
2010-05-02 14:35:36 +02:00
|
|
|
public int SAVE_SETTINGS_IN_ANDROID_BETWEEN_SESSION = 2;
|
|
|
|
|
2010-05-06 00:29:58 +02:00
|
|
|
// First of all switch off gps listener should be implemented
|
2010-05-02 14:35:36 +02:00
|
|
|
public int IMPLEMENT_ON_STOP_RESUME_ACTIVITY = 3;
|
|
|
|
|
|
|
|
// OsmandMapTileView.java have problem with class loading (LogFactory, MapTileDownloader) -
|
2010-05-06 00:29:58 +02:00
|
|
|
// it is not editable in editor ?
|
2010-05-02 14:35:36 +02:00
|
|
|
public int MAKE_MAP_PANEL_EDITABLE_IN_EDITOR = 4;
|
2010-05-05 11:31:54 +02:00
|
|
|
|
|
|
|
// common parts : work with cache on file system & in memory
|
|
|
|
public int EXTRACT_COMMON_PARTS_FROM_MAPPANEL_AND_OSMMAPVIEW = 5;
|
|
|
|
|
|
|
|
|
|
|
|
public int REVISE_MAP_ACTIVITY_HOLD_ALL_ZOOM_LATLON_IN_ONEPLACE = 6;
|
|
|
|
|
2010-05-06 00:29:58 +02:00
|
|
|
|
2010-05-05 11:31:54 +02:00
|
|
|
/**
|
2010-05-06 00:29:58 +02:00
|
|
|
* Write activity to show something about authors / donation ....
|
2010-05-05 11:31:54 +02:00
|
|
|
*/
|
2010-05-06 00:29:58 +02:00
|
|
|
public int DESCRIBE_ABOUT_AUTHORS = 8;
|
2010-05-05 11:31:54 +02:00
|
|
|
|
2010-05-02 01:35:00 +02:00
|
|
|
|
|
|
|
}
|