unused class removed
[fedora-idea.git] / plugins / images / src / org / intellij / images / editor / ImageZoomModel.java
bloba8902fd9aa215b1d8cd5371170c6c9dfa431b30e
1 /*
2 * Copyright 2004-2005 Alexey Efimov
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package org.intellij.images.editor;
18 /**
19 * Location model presents bounds of image.
20 * The zoom it calculated as y = exp(x/2).
22 * @author <a href="mailto:aefimov.box@gmail.com">Alexey Efimov</a>
24 public interface ImageZoomModel {
25 int MACRO_ZOOM_LIMIT = 32;
26 int MICRO_ZOOM_LIMIT = 8;
28 double getZoomFactor();
30 void setZoomFactor(double zoomFactor);
32 void zoomOut();
34 void zoomIn();
36 boolean canZoomOut();
38 boolean canZoomIn();
40 boolean isZoomLevelChanged();