/* * Copyright 2008 Google Inc. * * 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 com.google.gwt.sample.showcase.client; import com.google.gwt.i18n.client.Constants; import com.google.gwt.sample.showcase.client.content.i18n.CwConstantsExample; import com.google.gwt.sample.showcase.client.content.i18n.CwConstantsWithLookupExample; import com.google.gwt.sample.showcase.client.content.i18n.CwDateTimeFormat; import com.google.gwt.sample.showcase.client.content.i18n.CwDictionaryExample; import com.google.gwt.sample.showcase.client.content.i18n.CwMessagesExample; import com.google.gwt.sample.showcase.client.content.i18n.CwNumberFormat; import com.google.gwt.sample.showcase.client.content.lists.CwListBox; import com.google.gwt.sample.showcase.client.content.lists.CwMenuBar; import com.google.gwt.sample.showcase.client.content.lists.CwStackPanel; import com.google.gwt.sample.showcase.client.content.lists.CwSuggestBox; import com.google.gwt.sample.showcase.client.content.lists.CwTree; import com.google.gwt.sample.showcase.client.content.other.CwAnimation; import com.google.gwt.sample.showcase.client.content.other.CwCookies; import com.google.gwt.sample.showcase.client.content.other.CwFrame; import com.google.gwt.sample.showcase.client.content.panels.CwAbsolutePanel; import com.google.gwt.sample.showcase.client.content.panels.CwDecoratorPanel; import com.google.gwt.sample.showcase.client.content.panels.CwDisclosurePanel; import com.google.gwt.sample.showcase.client.content.panels.CwDockPanel; import com.google.gwt.sample.showcase.client.content.panels.CwFlowPanel; import com.google.gwt.sample.showcase.client.content.panels.CwHorizontalPanel; import com.google.gwt.sample.showcase.client.content.panels.CwHorizontalSplitPanel; import com.google.gwt.sample.showcase.client.content.panels.CwTabPanel; import com.google.gwt.sample.showcase.client.content.panels.CwVerticalPanel; import com.google.gwt.sample.showcase.client.content.panels.CwVerticalSplitPanel; import com.google.gwt.sample.showcase.client.content.popups.CwBasicPopup; import com.google.gwt.sample.showcase.client.content.popups.CwDialogBox; import com.google.gwt.sample.showcase.client.content.tables.CwFlexTable; import com.google.gwt.sample.showcase.client.content.tables.CwGrid; import com.google.gwt.sample.showcase.client.content.text.CwBasicText; import com.google.gwt.sample.showcase.client.content.text.CwRichText; import com.google.gwt.sample.showcase.client.content.widgets.CwBasicButton; import com.google.gwt.sample.showcase.client.content.widgets.CwCheckBox; import com.google.gwt.sample.showcase.client.content.widgets.CwCustomButton; import com.google.gwt.sample.showcase.client.content.widgets.CwFileUpload; import com.google.gwt.sample.showcase.client.content.widgets.CwHyperlink; import com.google.gwt.sample.showcase.client.content.widgets.CwRadioButton; /** * Constants used throughout the showcase. */ public interface ShowcaseConstants extends Constants, ContentWidget.CwConstants, CwCheckBox.CwConstants, CwRadioButton.CwConstants, CwBasicButton.CwConstants, CwCustomButton.CwConstants, CwListBox.CwConstants, CwSuggestBox.CwConstants, CwTree.CwConstants, CwMenuBar.CwConstants, CwFlowPanel.CwConstants, CwDisclosurePanel.CwConstants, CwTabPanel.CwConstants, CwDockPanel.CwConstants, CwHorizontalPanel.CwConstants, CwHorizontalSplitPanel.CwConstants, CwVerticalPanel.CwConstants, CwVerticalSplitPanel.CwConstants, CwBasicPopup.CwConstants, CwDialogBox.CwConstants, CwGrid.CwConstants, CwFlexTable.CwConstants, CwBasicText.CwConstants, CwRichText.CwConstants, CwFileUpload.CwConstants, CwAbsolutePanel.CwConstants, CwHyperlink.CwConstants, CwFrame.CwConstants, CwStackPanel.CwConstants, CwCookies.CwConstants, CwNumberFormat.CwConstants, CwDateTimeFormat.CwConstants, CwMessagesExample.CwConstants, CwConstantsExample.CwConstants, CwConstantsWithLookupExample.CwConstants, CwDictionaryExample.CwConstants, CwDecoratorPanel.CwConstants, CwAnimation.CwConstants { /** * The path to source code for examples, raw files, and style definitions. */ String DST_SOURCE = "gwtShowcaseSource/"; /** * The destination folder for parsed source code from Showcase examples. */ String DST_SOURCE_EXAMPLE = DST_SOURCE + "java/"; /** * The destination folder for raw files that are included in entirety. */ String DST_SOURCE_RAW = DST_SOURCE + "raw/"; /** * The destination folder for parsed CSS styles used in Showcase examples. */ String DST_SOURCE_STYLE = DST_SOURCE + "css/"; /** * Link to GWT homepage. */ String GWT_HOMEPAGE = "http://code.google.com/webtoolkit/"; /** * Link to GWT examples page. */ String GWT_EXAMPLES = GWT_HOMEPAGE + "examples/"; /** * The available style themes that the user can select. */ String[] STYLE_THEMES = {"standard", "chrome", "dark"}; String categoryI18N(); String categoryLists(); String categoryOther(); String categoryPanels(); String categoryPopups(); String categoryTables(); String categoryTextInput(); String categoryWidgets(); /** * @return text for the link to more examples */ String mainLinkExamples(); /** * @return text for the link to the GWT homepage */ String mainLinkHomepage(); /** * @return the title of the main menu */ String mainMenuTitle(); /** * @return the sub title of the application */ String mainSubTitle(); /** * @return the title of the application */ String mainTitle(); }