com.levigo.jadice.web.client.components.ToolbarIcons.java Source code

Java tutorial

Introduction

Here is the source code for com.levigo.jadice.web.client.components.ToolbarIcons.java

Source

/**
 * Copyright (c) 2007-2010, levigo holding gmbh
 *
 * Unless you have a written license agreement with the copyright holder,
 * the following license terms apply:
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package com.levigo.jadice.web.client.components;

import com.google.gwt.resources.client.ClientBundle;
import com.google.gwt.resources.client.ImageResource;

public interface ToolbarIcons extends ClientBundle {

    @Source("com/levigo/jadice/web/icons/separator2.png")
    public ImageResource separatorVertical();

    @Source("com/levigo/jadice/web/icons/famfamfam/resultset_first.png")
    public ImageResource firstPageButtonIcon();

    @Source("com/levigo/jadice/web/icons/famfamfam/resultset_last.png")
    public ImageResource lastPageButtonIcon();

    @Source("com/levigo/jadice/web/icons/famfamfam/resultset_previous.png")
    public ImageResource prevPageButtonIcon();

    @Source("com/levigo/jadice/web/icons/famfamfam/resultset_next.png")
    public ImageResource nextPageButtonIcon();

    @Source("com/levigo/jadice/web/icons/famfamfam/zoom_in.png")
    public ImageResource pageZoomInButtonIcon();

    @Source("com/levigo/jadice/web/icons/famfamfam/zoom_out.png")
    public ImageResource pageZoomOutButtonIcon();

    //   @Source("com/levigo/jadice/web/icons/13_annotations_off.png")
    //   public AbstractImagePrototype showAnnotationsButtonIcon();

    //   @Source("com/levigo/jadice/web/icons/03_nav_off.png")
    //   public AbstractImagePrototype pageSorterButtonIcon();

    //   @Source("com/levigo/jadice/web/icons/02_print_off.png")
    //   public AbstractImagePrototype printButtonIcon();

    @Source("com/levigo/jadice/web/icons/famfamfam/arrow_rotate_anticlockwise.png")
    public ImageResource turnleftButtonIcon();

    @Source("com/levigo/jadice/web/icons/famfamfam/arrow_rotate_clockwise.png")
    public ImageResource turnrightButtonIcon();

    //   @Source("com/levigo/jadice/web/icons/04_mag_off.png")
    //   public AbstractImagePrototype magnifierButtonIcon();
    //
    //   @Source("com/levigo/jadice/web/icons/04_mag_on.png")
    //   public AbstractImagePrototype floatingMagnifier();

}