/* * Copyright 2011 SWM Services GmbH. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package de.swm.gwt.client.theme.base; import com.google.gwt.resources.client.ClientBundle; import com.google.gwt.resources.client.TextResource; import com.google.gwt.user.cellview.client.DataGrid; import de.swm.gwt.client.theme.GWTCssBundle; import de.swm.gwt.client.theme.components.*; /** * Base SWM Mobile style. Details see {@link de.swm.gwt.client.theme.GWTCssBundle}. * * @author wiese.daniel <br> * copyright (C) 2010-14, SWM Services GmbH */ public interface BaseGWTCssBundle extends GWTCssBundle, ClientBundle, DataGrid.Resources { @Override @Source("css/datepicker.css") DatePickerCss getDatePickerCss(); @Override @Source("css/text.css") TextCss getTextCss(); @Override @Source("css/error.css") ErrorCss getErrorCss(); @Override @Source("css/page.css") PageCss getPageCss(); @Override @Source("css/button.css") ButtonCss getButtonCss(); @Override @Source("css/grid.css") GridCss getGridCss(); @Override @Source(value = { DataGrid.Style.DEFAULT_CSS, "css/dataGridExtentions.css" }) DataGrid.Style dataGridStyle(); @Source("css/pure.css") TextResource pureFramework(); }