1 /*
2  * PreferencesDialogResources.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.workbench.prefs.views;
16 
17 import com.google.gwt.resources.client.ClientBundle;
18 import com.google.gwt.resources.client.CssResource;
19 import com.google.gwt.resources.client.ImageResource;
20 
21 public interface PreferencesDialogResources extends ClientBundle
22 {
23 
24    interface Styles extends CssResource
25    {
panelContainer()26       String panelContainer();
panelContainerNoChooser()27       String panelContainerNoChooser();
paneLayoutTable()28       String paneLayoutTable();
label()29       String label();
themeChooser()30       String themeChooser();
sshKeyWidget()31       String sshKeyWidget();
usingVcsHelp()32       String usingVcsHelp();
newSection()33       String newSection();
alwaysCompletePanel()34       String alwaysCompletePanel();
themeInfobar()35       String themeInfobar();
themeInfobarShowing()36       String themeInfobarShowing();
selectWidgetHelp()37       String selectWidgetHelp();
smallerText()38       String smallerText();
visualModeWrapSelectWidget()39       String visualModeWrapSelectWidget();
userDictEditButton()40       String userDictEditButton();
41    }
42 
43    @Source("PreferencesDialog.css")
styles()44    Styles styles();
45 
46    @Source("iconAppearance_2x.png")
iconAppearance2x()47    ImageResource iconAppearance2x();
48 
49    @Source("iconPanes_2x.png")
iconPanes2x()50    ImageResource iconPanes2x();
51 
52    @Source("iconPackages_2x.png")
iconPackages2x()53    ImageResource iconPackages2x();
54 
55    @Source("iconRMarkdown_2x.png")
iconRMarkdown2x()56    ImageResource iconRMarkdown2x();
57 
58    @Source("iconTerminal_2x.png")
iconTerminal2x()59    ImageResource iconTerminal2x();
60 
61    @Source("iconAccessibility_2x.png")
iconAccessibility2x()62    ImageResource iconAccessibility2x();
63 
64    @Source("iconAddSourcePane.png")
iconAddSourcePane()65    ImageResource iconAddSourcePane();
66 
67    @Source("iconRemoveSourcePane.png")
iconRemoveSourcePane()68    ImageResource iconRemoveSourcePane();
69 
70    @Source("iconConsole_2x.png")
iconConsole2x()71    ImageResource iconConsole2x();
72 }
73