1 /*
2  * ProjectPreferencesDialogResources.java
3  *
4  * Copyright (C) 2021 by RStudio, PBC
5  *
6  * Unless you have received this program directly from RStudio pursuant
7  * to the terms of a commercial license agreement with RStudio, then
8  * this program is licensed to you under the terms of version 3 of the
9  * GNU Affero General Public License. This program is distributed WITHOUT
10  * ANY EXPRESS OR IMPLIED WARRANTY, INCLUDING THOSE OF NON-INFRINGEMENT,
11  * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Please refer to the
12  * AGPL (http://www.gnu.org/licenses/agpl-3.0.txt) for more details.
13  *
14  */
15 package org.rstudio.studio.client.projects.ui.prefs;
16 
17 import com.google.gwt.core.client.GWT;
18 import com.google.gwt.resources.client.ClientBundle;
19 import com.google.gwt.resources.client.CssResource;
20 import com.google.gwt.resources.client.ImageResource;
21 
22 public interface ProjectPreferencesDialogResources extends ClientBundle
23 {
24    interface Styles extends CssResource
25    {
panelContainer()26       String panelContainer();
panelContainerNoChooser()27       String panelContainerNoChooser();
buildToolsPanel()28       String buildToolsPanel();
workspaceGrid()29       String workspaceGrid();
enableCodeIndexing()30       String enableCodeIndexing();
useSpacesForTab()31       String useSpacesForTab();
numberOfTabs()32       String numberOfTabs();
editingOption()33       String editingOption();
encodingChooser()34       String encodingChooser();
lineEndings()35       String lineEndings();
vcsSelectExtraSpaced()36       String vcsSelectExtraSpaced();
vcsOriginLabel()37       String vcsOriginLabel();
vcsOriginUrl()38       String vcsOriginUrl();
vcsNoOriginUrl()39       String vcsNoOriginUrl();
buildToolsAdditionalArguments()40       String buildToolsAdditionalArguments();
buildToolsRoxygenize()41       String buildToolsRoxygenize();
buildToolsCheckBox()42       String buildToolsCheckBox();
buildToolsDevtools()43       String buildToolsDevtools();
previewWebsite()44       String previewWebsite();
directorySelector()45       String directorySelector();
websiteOutputFormat()46       String websiteOutputFormat();
infoLabel()47       String infoLabel();
48    }
49 
50    @Source("ProjectPreferencesDialog.css")
styles()51    Styles styles();
52 
53    @Source("iconBuild_2x.png")
iconBuild2x()54    ImageResource iconBuild2x();
55 
56    @Source("iconPackrat_2x.png")
iconPackrat2x()57    ImageResource iconPackrat2x();
58 
59    @Source("iconRenv_2x.png")
iconRenv2x()60    ImageResource iconRenv2x();
61 
62    @Source("iconShare_2x.png")
iconShare2x()63    ImageResource iconShare2x();
64 
65    @Source("iconRMarkdown_2x.png")
iconRMarkdown2x()66    ImageResource iconRMarkdown2x();
67 
68    ProjectPreferencesDialogResources INSTANCE = GWT.create(ProjectPreferencesDialogResources.class);
69 }
70