Package org.rstudio.studio.client.workbench.prefs.model

Examples of org.rstudio.studio.client.workbench.prefs.model.CompilePdfPrefs


   }

   @Override
   protected void initialize(RPrefs prefs)
   {
      CompilePdfPrefs compilePdfPrefs = prefs.getCompilePdfPrefs();
      chkCleanTexi2DviOutput_.setValue(compilePdfPrefs.getCleanOutput());
      chkEnableShellEscape_.setValue(compilePdfPrefs.getEnableShellEscape());
     
      pdfPreview_.addChoice("(No Preview)", UIPrefsAccessor.PDF_PREVIEW_NONE);
     
      String desktopSynctexViewer = SynctexUtils.getDesktopSynctexViewer();
      if (desktopSynctexViewer.length() > 0)
View Full Code Here


      prefs_.defaultLatexProgram().setGlobalValue(
                                    defaultLatexProgram_.getValue());
     
      prefs_.pdfPreview().setGlobalValue(pdfPreview_.getValue());
        
      CompilePdfPrefs prefs = CompilePdfPrefs.create(
                                       chkCleanTexi2DviOutput_.getValue(),
                                       chkEnableShellEscape_.getValue());
      rPrefs.setCompilePdfPrefs(prefs);
     
      return requiresRestart;
View Full Code Here

TOP

Related Classes of org.rstudio.studio.client.workbench.prefs.model.CompilePdfPrefs

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.