Statistics
| Revision:

gvsig-3d / 2.1 / trunk / org.gvsig.view3d / org.gvsig.view3d.swing / org.gvsig.view3d.swing.api / src / main / java / org / gvsig / view3d / swing / api / MapControl3D.java @ 471

History | View | Annotate | Download (2.88 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright ? 2007-2015 gvSIG Association
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24

    
25
package org.gvsig.view3d.swing.api;
26

    
27
import org.gvsig.fmap.mapcontext.MapContext;
28
import org.gvsig.tools.dispose.Disposable;
29
import org.gvsig.tools.observer.Observable;
30
import org.gvsig.tools.swing.api.Component;
31
import org.gvsig.tools.task.Cancellable;
32
import org.gvsig.view3d.swing.api.View3DSwingManager.TYPE;
33

    
34

    
35
/**
36
 * @author <a href="mailto:lmarques@disid.com">Lluis Marques</a>
37
 *
38
 */
39
@SuppressWarnings("deprecation")
40
public interface MapControl3D extends Component, Disposable, Observable{
41
    
42
    static final String BEFORE_DISPOSE_PANEL_NOTIFICATION =
43
        "MapControl3D.beforeDisposePanel";
44
    static final String AFTER_DISPOSE_PANEL_NOTIFICATION =
45
        "MapControl3D.afterDisposePanel";
46
    
47
    /**
48
     * 
49
     * @return
50
     */
51
    public Cancellable getCancellable();
52
    
53
    /**
54
     * 
55
     * @return
56
     */
57
    public MapContext getMapContext();
58
    
59
    /**
60
     * 
61
     * @return
62
     */
63
    public TYPE getType();
64
    
65
    /**
66
     * 
67
     * @return
68
     */
69
    public double getVerticalExaggeration();
70

    
71
    /**
72
     * 
73
     */
74
    public void hideAtmosphere();
75

    
76
    /**
77
     * 
78
     */
79
    public void hideMiniMap();
80

    
81
    /**
82
     * 
83
     */
84
    public void hideNorthIndicator();
85

    
86
    /**
87
     * 
88
     */
89
    public void hideScale();
90

    
91
    /**
92
     * 
93
     */
94
    public void hideStarBackground();
95

    
96
    /**
97
     * 
98
     */
99
    public void reloadLayers();
100

    
101
    /**
102
     * 
103
     */
104
    public void setMapContext(MapContext theMapContext);
105

    
106
    /**
107
     * 
108
     */
109
    public void setVerticalExaggeration(double verticalExaggeration);
110

    
111
    /**
112
     * 
113
     */
114
    public void showAtmosphere();
115

    
116
    /**
117
     * 
118
     */
119
    public void showMiniMap();
120

    
121
    /**
122
     * 
123
     */
124
    public void showNortIndicator();
125

    
126
    /**
127
     * 
128
     */
129
    public void showScale();
130

    
131
    /**
132
     * 
133
     */
134
    public void showStarBackgroundLayer();
135

    
136
    /**
137
     * 
138
     */
139
    public void synchronizeViewPorts();
140
    
141
    /**
142
     * 
143
     */
144
    public void synchronizeLayers();
145

    
146
}