w2l toolbar configuration: Define behavior of TeX-button

git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@245 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
henrikjust 2015-05-15 06:49:11 +00:00
parent 853ff0968d
commit 2953e5845c
10 changed files with 142 additions and 64 deletions

View file

@ -2,6 +2,9 @@ Changelog for Writer2LaTeX version 1.4 -> 1.6
---------- version 1.5.3 ---------- ---------- version 1.5.3 ----------
[w2l] The Application dialog in the toolbar configuration can now be used to select the behavior after export
(do nothing, compile or (default) export, compile and preview)
---------- version 1.5.2 ---------- ---------- version 1.5.2 ----------
[all] Using the filters from the command line with soffice --headless --convert-to is now documented in the user manual [all] Using the filters from the command line with soffice --headless --convert-to is now documented in the user manual

View file

@ -20,7 +20,7 @@
* *
* All Rights Reserved. * All Rights Reserved.
* *
* Version 1.6 (2015-04-05) * Version 1.6 (2015-05-14)
* *
*/ */
@ -85,6 +85,9 @@ public final class ApplicationsDialog
if (sMethod.equals("external_event") ){ if (sMethod.equals("external_event") ){
return handleExternalEvent(dlg, event); return handleExternalEvent(dlg, event);
} }
else if (sMethod.equals("AfterExportChange")) {
return changeBehavior(dlg);
}
else if (sMethod.equals("ApplicationChange")) { else if (sMethod.equals("ApplicationChange")) {
return changeApplication(dlg); return changeApplication(dlg);
} }
@ -111,7 +114,7 @@ public final class ApplicationsDialog
} }
public String[] getSupportedMethodNames() { public String[] getSupportedMethodNames() {
String[] sNames = { "external_event", "ApplicationChange", "BrowseClick", "ExecutableUnfocus", "OptionsUnfocus", "AutomaticClick" }; String[] sNames = { "external_event", "AfterExportChange", "ApplicationChange", "BrowseClick", "ExecutableUnfocus", "OptionsUnfocus", "AutomaticClick" };
return sNames; return sNames;
} }
@ -140,6 +143,7 @@ public final class ApplicationsDialog
return true; return true;
} else if (sMethod.equals("back") || sMethod.equals("initialize")) { } else if (sMethod.equals("back") || sMethod.equals("initialize")) {
externalApps.load(); externalApps.load();
updateBehavior(dlg);
return changeApplication(dlg); return changeApplication(dlg);
} }
} }
@ -149,6 +153,16 @@ public final class ApplicationsDialog
} }
return false; return false;
} }
private boolean changeBehavior(DialogAccess dlg) {
externalApps.setProcessingLevel(dlg.getListBoxSelectedItem("AfterExport"));
return true;
}
private boolean updateBehavior(DialogAccess dlg) {
dlg.setListBoxSelectedItem("AfterExport", externalApps.getProcessingLevel());
return true;
}
private boolean changeApplication(DialogAccess dlg) { private boolean changeApplication(DialogAccess dlg) {
String sAppName = getSelectedAppName(dlg); String sAppName = getSelectedAppName(dlg);

View file

@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA * MA 02111-1307 USA
* *
* Copyright: 2002-2014 by Henrik Just * Copyright: 2002-2015 by Henrik Just
* *
* All Rights Reserved. * All Rights Reserved.
* *
* Version 1.6 (2014-10-29) * Version 1.6 (2015-05-14)
* *
*/ */
@ -36,9 +36,10 @@ import java.util.Vector;
import org.openoffice.da.comp.w2lcommon.helper.RegistryHelper; import org.openoffice.da.comp.w2lcommon.helper.RegistryHelper;
import org.openoffice.da.comp.w2lcommon.helper.StreamGobbler; import org.openoffice.da.comp.w2lcommon.helper.StreamGobbler;
//import java.util.Map; import org.openoffice.da.comp.w2lcommon.helper.XPropertySetHelper;
import com.sun.star.beans.XMultiHierarchicalPropertySet; import com.sun.star.beans.XMultiHierarchicalPropertySet;
import com.sun.star.beans.XPropertySet;
import com.sun.star.uno.UnoRuntime; import com.sun.star.uno.UnoRuntime;
import com.sun.star.uno.XComponentContext; import com.sun.star.uno.XComponentContext;
import com.sun.star.util.XChangesBatch; import com.sun.star.util.XChangesBatch;
@ -49,7 +50,11 @@ import com.sun.star.util.XChangesBatch;
* The registry is used for persistent storage of the settings. * The registry is used for persistent storage of the settings.
*/ */
public class ExternalApps { public class ExternalApps {
public final static short EXPORT = (short)0;
public final static short BUILD = (short)1;
public final static short PREVIEW = (short)2;
public final static String LATEX = "LaTeX"; public final static String LATEX = "LaTeX";
public final static String PDFLATEX = "PdfLaTeX"; public final static String PDFLATEX = "PdfLaTeX";
public final static String XELATEX = "XeLaTeX"; public final static String XELATEX = "XeLaTeX";
@ -65,6 +70,8 @@ public class ExternalApps {
private XComponentContext xContext; private XComponentContext xContext;
private short nLevel = (short)2;
private HashMap<String,String[]> apps; private HashMap<String,String[]> apps;
/** Construct a new ExternalApps object, with empty definitions */ /** Construct a new ExternalApps object, with empty definitions */
@ -75,6 +82,22 @@ public class ExternalApps {
setApplication(sApps[i], "?", "?"); setApplication(sApps[i], "?", "?");
} }
} }
/** Set the desired processing level (0: export only, 1: export and build, 2: export, build and preview)
*
* @param nLevel the desired level
*/
public void setProcessingLevel(short nLevel) {
this.nLevel = nLevel;
}
/** Get the desired processing level (0: export only, 1: export and build, 2: export, build and preview)
*
* @return the level
*/
public short getProcessingLevel() {
return nLevel;
}
/** Define an external application /** Define an external application
* @param sAppName the name of the application to define * @param sAppName the name of the application to define
@ -175,7 +198,10 @@ public class ExternalApps {
return; return;
} }
XMultiHierarchicalPropertySet xProps = (XMultiHierarchicalPropertySet) XPropertySet xSimpleProps = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class,view);
nLevel = XPropertySetHelper.getPropertyValueAsShort(xSimpleProps,"AfterExport");
XMultiHierarchicalPropertySet xProps = (XMultiHierarchicalPropertySet)
UnoRuntime.queryInterface(XMultiHierarchicalPropertySet.class, view); UnoRuntime.queryInterface(XMultiHierarchicalPropertySet.class, view);
for (int i=0; i<sApps.length; i++) { for (int i=0; i<sApps.length; i++) {
String[] sNames = new String[2]; String[] sNames = new String[2];
@ -205,6 +231,9 @@ public class ExternalApps {
// Give up... // Give up...
return; return;
} }
XPropertySet xSimpleProps = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class,view);
XPropertySetHelper.setPropertyValue(xSimpleProps, "AfterExport", nLevel);
XMultiHierarchicalPropertySet xProps = (XMultiHierarchicalPropertySet) XMultiHierarchicalPropertySet xProps = (XMultiHierarchicalPropertySet)
UnoRuntime.queryInterface(XMultiHierarchicalPropertySet.class, view); UnoRuntime.queryInterface(XMultiHierarchicalPropertySet.class, view);

View file

@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA * MA 02111-1307 USA
* *
* Copyright: 2002-2010 by Henrik Just * Copyright: 2002-2015 by Henrik Just
* *
* All Rights Reserved. * All Rights Reserved.
* *
* Version 1.2 (2011-01-25) * Version 1.6 (2015-05-14)
* *
*/ */
@ -67,15 +67,15 @@ public final class TeXify {
ExternalApps.XELATEX, ExternalApps.MAKEINDEX, ExternalApps.XELATEX }; ExternalApps.XELATEX, ExternalApps.MAKEINDEX, ExternalApps.XELATEX };
// Global objects // Global objects
//private XComponentContext xContext;
private ExternalApps externalApps; private ExternalApps externalApps;
public TeXify(XComponentContext xContext) { public TeXify(XComponentContext xContext) {
//this.xContext = xContext;
externalApps = new ExternalApps(xContext); externalApps = new ExternalApps(xContext);
} }
/** Process a document /** Process a document. This will either (depending on the registry settings) do nothing, build with LaTeX
* or build with LaTeX and preview
*
* @param file the LaTeX file to process * @param file the LaTeX file to process
* @param sBibinputs value for the BIBINPUTS environment variable (or null if it should not be extended) * @param sBibinputs value for the BIBINPUTS environment variable (or null if it should not be extended)
* @param nBackend the desired backend format (generic, dvips, pdftex) * @param nBackend the desired backend format (generic, dvips, pdftex)
@ -94,45 +94,48 @@ public final class TeXify {
externalApps.load(); externalApps.load();
// Process LaTeX document // Process LaTeX document
boolean bResult = false; if (externalApps.getProcessingLevel()>=ExternalApps.BUILD) {
if (nBackend==GENERIC) { boolean bPreview = externalApps.getProcessingLevel()>=ExternalApps.PREVIEW;
bResult = doTeXify(genericTexify, file, sBibinputs); boolean bResult = false;
if (!bResult) return false; if (nBackend==GENERIC) {
if (externalApps.execute(ExternalApps.DVIVIEWER, bResult = doTeXify(genericTexify, file, sBibinputs);
new File(file.getParentFile(),file.getName()+".dvi").getPath(), if (!bResult) return false;
file.getParentFile(), null, false)>0) { if (bPreview && externalApps.execute(ExternalApps.DVIVIEWER,
throw new IOException("Error executing dvi viewer"); new File(file.getParentFile(),file.getName()+".dvi").getPath(),
} file.getParentFile(), null, false)>0) {
throw new IOException("Error executing dvi viewer");
}
}
else if (nBackend==PDFTEX) {
bResult = doTeXify(pdfTexify, file, sBibinputs);
if (!bResult) return false;
if (bPreview && externalApps.execute(ExternalApps.PDFVIEWER,
new File(file.getParentFile(),file.getName()+".pdf").getPath(),
file.getParentFile(), null, false)>0) {
throw new IOException("Error executing pdf viewer");
}
}
else if (nBackend==DVIPS) {
bResult = doTeXify(dvipsTexify, file, sBibinputs);
if (!bResult) return false;
if (bPreview && externalApps.execute(ExternalApps.POSTSCRIPTVIEWER,
new File(file.getParentFile(),file.getName()+".ps").getPath(),
file.getParentFile(), null, false)>0) {
throw new IOException("Error executing postscript viewer");
}
}
else if (nBackend==XETEX) {
bResult = doTeXify(xeTexify, file, sBibinputs);
if (!bResult) return false;
if (bPreview && externalApps.execute(ExternalApps.PDFVIEWER,
new File(file.getParentFile(),file.getName()+".pdf").getPath(),
file.getParentFile(), null, false)>0) {
throw new IOException("Error executing pdf viewer");
}
}
return bResult;
} }
else if (nBackend==PDFTEX) { return true;
bResult = doTeXify(pdfTexify, file, sBibinputs);
if (!bResult) return false;
if (externalApps.execute(ExternalApps.PDFVIEWER,
new File(file.getParentFile(),file.getName()+".pdf").getPath(),
file.getParentFile(), null, false)>0) {
throw new IOException("Error executing pdf viewer");
}
}
else if (nBackend==DVIPS) {
bResult = doTeXify(dvipsTexify, file, sBibinputs);
if (!bResult) return false;
if (externalApps.execute(ExternalApps.POSTSCRIPTVIEWER,
new File(file.getParentFile(),file.getName()+".ps").getPath(),
file.getParentFile(), null, false)>0) {
throw new IOException("Error executing postscript viewer");
}
}
else if (nBackend==XETEX) {
bResult = doTeXify(xeTexify, file, sBibinputs);
if (!bResult) return false;
if (externalApps.execute(ExternalApps.PDFVIEWER,
new File(file.getParentFile(),file.getName()+".pdf").getPath(),
file.getParentFile(), null, false)>0) {
throw new IOException("Error executing pdf viewer");
}
}
return bResult;
} }
private boolean doTeXify(String[] sAppList, File file, String sBibinputs) throws IOException { private boolean doTeXify(String[] sAppList, File file, String sBibinputs) throws IOException {

View file

@ -33,7 +33,7 @@ public class ConverterFactory {
// Version information // Version information
private static final String VERSION = "1.5.3"; private static final String VERSION = "1.5.3";
private static final String DATE = "2015-05-12"; private static final String DATE = "2015-05-15";
/** Return the Writer2LaTeX version in the form /** Return the Writer2LaTeX version in the form
* (major version).(minor version).(patch level)<br/> * (major version).(minor version).(patch level)<br/>

View file

@ -13,6 +13,7 @@
</templates> </templates>
<component> <component>
<group oor:name="Applications"> <group oor:name="Applications">
<prop oor:name="AfterExport" oor:type="xs:short" />
<node-ref oor:name="LaTeX" oor:node-type="Application" /> <node-ref oor:name="LaTeX" oor:node-type="Application" />
<node-ref oor:name="PdfLaTeX" oor:node-type="Application" /> <node-ref oor:name="PdfLaTeX" oor:node-type="Application" />
<node-ref oor:name="XeLaTeX" oor:node-type="Application" /> <node-ref oor:name="XeLaTeX" oor:node-type="Application" />

View file

@ -5,6 +5,9 @@
xmlns:oor="http://openoffice.org/2001/registry" xmlns:oor="http://openoffice.org/2001/registry"
xmlns:xs="http://www.w3.org/2001/XMLSchema"> xmlns:xs="http://www.w3.org/2001/XMLSchema">
<node oor:name="Applications"> <node oor:name="Applications">
<prop oor:name="AfterExport" oor:type="xs:short">
<value>2</value><!-- compile and preview -->
</prop>
<node oor:name="LaTeX" oor:type="xs:string"> <node oor:name="LaTeX" oor:type="xs:string">
<prop oor:name="Executable"> <prop oor:name="Executable">
<value>latex</value> <value>latex</value>

View file

@ -3,12 +3,17 @@
<dlg:window xmlns:dlg="http://openoffice.org/2000/dialog" xmlns:script="http://openoffice.org/2000/script" dlg:id="Configuration" dlg:left="139" dlg:top="84" dlg:width="260" dlg:height="185" dlg:closeable="true" dlg:moveable="true" dlg:title="Writer2LaTeX Toolbar Configuration" dlg:withtitlebar="false" dlg:help-url="org.openoffice.da.writer2latex.oxt:ConfigurationDialog"> <dlg:window xmlns:dlg="http://openoffice.org/2000/dialog" xmlns:script="http://openoffice.org/2000/script" dlg:id="Configuration" dlg:left="139" dlg:top="84" dlg:width="260" dlg:height="185" dlg:closeable="true" dlg:moveable="true" dlg:title="Writer2LaTeX Toolbar Configuration" dlg:withtitlebar="false" dlg:help-url="org.openoffice.da.writer2latex.oxt:ConfigurationDialog">
<dlg:bulletinboard> <dlg:bulletinboard>
<dlg:text dlg:id="ExternalAppsLabel" dlg:tab-index="0" dlg:left="6" dlg:top="4" dlg:width="210" dlg:height="12" dlg:value="External Applications"/> <dlg:text dlg:id="ExternalAppsLabel" dlg:tab-index="0" dlg:left="6" dlg:top="4" dlg:width="210" dlg:height="12" dlg:value="External Applications"/>
<dlg:text dlg:id="AppLabel" dlg:tab-index="1" dlg:left="12" dlg:top="18" dlg:width="55" dlg:height="12" dlg:value="Application"/> <dlg:text dlg:id="AfterExportLabel" dlg:tab-index="1" dlg:left="12" dlg:top="18" dlg:width="55" dlg:height="12" dlg:value="After export"/>
<dlg:button dlg:id="BrowseButton" dlg:tab-index="5" dlg:left="200" dlg:top="30" dlg:width="55" dlg:height="14" dlg:value="Browse..."> <dlg:menulist dlg:id="AfterExport" dlg:tab-index="2" dlg:left="72" dlg:top="16" dlg:width="120" dlg:height="12" dlg:spin="true" dlg:linecount="3" dlg:help-url="org.openoffice.da.writer2latex.oxt:AfterExport">
<script:event script:event-name="on-mouseup" script:macro-name="vnd.sun.star.UNO:BrowseClick" script:language="UNO"/> <dlg:menupopup>
</dlg:button> <dlg:menuitem dlg:value="Do nothing"/>
<dlg:text dlg:id="ExecutableLabel" dlg:tab-index="3" dlg:left="12" dlg:top="32" dlg:width="55" dlg:height="12" dlg:value="Executable"/> <dlg:menuitem dlg:value="Build with LaTeX"/>
<dlg:menulist dlg:id="Application" dlg:tab-index="2" dlg:left="72" dlg:top="16" dlg:width="120" dlg:height="12" dlg:spin="true" dlg:linecount="10" dlg:help-url="org.openoffice.da.writer2latex.oxt:ConfigurationApplication"> <dlg:menuitem dlg:value="Build with LaTeX and view result" dlg:selected="true"/>
</dlg:menupopup>
<script:event script:event-name="on-itemstatechange" script:macro-name="vnd.sun.star.UNO:AfterExportChange" script:language="UNO"/>
</dlg:menulist>
<dlg:text dlg:id="AppLabel" dlg:tab-index="3" dlg:left="12" dlg:top="32" dlg:width="55" dlg:height="12" dlg:value="Application"/>
<dlg:menulist dlg:id="Application" dlg:tab-index="4" dlg:left="72" dlg:top="30" dlg:width="120" dlg:height="12" dlg:spin="true" dlg:linecount="10" dlg:help-url="org.openoffice.da.writer2latex.oxt:ConfigurationApplication">
<dlg:menupopup> <dlg:menupopup>
<dlg:menuitem dlg:value="LaTeX" dlg:selected="true"/> <dlg:menuitem dlg:value="LaTeX" dlg:selected="true"/>
<dlg:menuitem dlg:value="PdfLaTeX"/> <dlg:menuitem dlg:value="PdfLaTeX"/>
@ -23,15 +28,19 @@
</dlg:menupopup> </dlg:menupopup>
<script:event script:event-name="on-itemstatechange" script:macro-name="vnd.sun.star.UNO:ApplicationChange" script:language="UNO"/> <script:event script:event-name="on-itemstatechange" script:macro-name="vnd.sun.star.UNO:ApplicationChange" script:language="UNO"/>
</dlg:menulist> </dlg:menulist>
<dlg:textfield dlg:id="Executable" dlg:tab-index="4" dlg:left="72" dlg:top="30" dlg:width="120" dlg:height="12" dlg:help-url="org.openoffice.da.writer2latex.oxt:ConfigurationExecutable"> <dlg:text dlg:id="ExecutableLabel" dlg:tab-index="5" dlg:left="12" dlg:top="46" dlg:width="55" dlg:height="12" dlg:value="Executable"/>
<dlg:textfield dlg:id="Executable" dlg:tab-index="6" dlg:left="72" dlg:top="44" dlg:width="120" dlg:height="12" dlg:help-url="org.openoffice.da.writer2latex.oxt:ConfigurationExecutable">
<script:event script:event-name="on-blur" script:macro-name="vnd.sun.star.UNO:ExecutableUnfocus" script:language="UNO"/> <script:event script:event-name="on-blur" script:macro-name="vnd.sun.star.UNO:ExecutableUnfocus" script:language="UNO"/>
</dlg:textfield> </dlg:textfield>
<dlg:textfield dlg:id="Options" dlg:tab-index="7" dlg:left="72" dlg:top="44" dlg:width="120" dlg:height="12" dlg:help-url="org.openoffice.da.writer2latex.oxt:ConfigurationOptions"> <dlg:button dlg:id="BrowseButton" dlg:tab-index="7" dlg:left="200" dlg:top="44" dlg:width="55" dlg:height="14" dlg:value="Browse...">
<script:event script:event-name="on-mouseup" script:macro-name="vnd.sun.star.UNO:BrowseClick" script:language="UNO"/>
</dlg:button>
<dlg:text dlg:id="OptionsLabel" dlg:tab-index="8" dlg:left="12" dlg:top="60" dlg:width="55" dlg:height="12" dlg:value="Options"/>
<dlg:textfield dlg:id="Options" dlg:tab-index="9" dlg:left="72" dlg:top="58" dlg:width="120" dlg:height="12" dlg:help-url="org.openoffice.da.writer2latex.oxt:ConfigurationOptions">
<script:event script:event-name="on-blur" script:macro-name="vnd.sun.star.UNO:OptionsUnfocus" script:language="UNO"/> <script:event script:event-name="on-blur" script:macro-name="vnd.sun.star.UNO:OptionsUnfocus" script:language="UNO"/>
</dlg:textfield> </dlg:textfield>
<dlg:button dlg:id="AutoButton" dlg:tab-index="8" dlg:left="72" dlg:top="64" dlg:width="120" dlg:height="14" dlg:value="Automatic configuration" dlg:help-url="org.openoffice.da.writer2latex.oxt:ConfigurationAutoButton"> <dlg:button dlg:id="AutoButton" dlg:tab-index="10" dlg:left="72" dlg:top="78" dlg:width="120" dlg:height="14" dlg:value="Automatic configuration" dlg:help-url="org.openoffice.da.writer2latex.oxt:ConfigurationAutoButton">
<script:event script:event-name="on-mouseup" script:macro-name="vnd.sun.star.UNO:AutomaticClick" script:language="UNO"/> <script:event script:event-name="on-mouseup" script:macro-name="vnd.sun.star.UNO:AutomaticClick" script:language="UNO"/>
</dlg:button> </dlg:button>
<dlg:text dlg:id="OptionsLabel" dlg:tab-index="6" dlg:left="12" dlg:top="46" dlg:width="55" dlg:height="12" dlg:value="Options"/>
</dlg:bulletinboard> </dlg:bulletinboard>
</dlg:window> </dlg:window>

View file

@ -67,7 +67,23 @@
<paragraph xml-lang="en-US"><emph>Note</emph>: The Writer2LaTeX toolbar is not tested on Mac OS X.</paragraph> <paragraph xml-lang="en-US"><emph>Note</emph>: The Writer2LaTeX toolbar is not tested on Mac OS X.</paragraph>
</case> </case>
</switch> </switch>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:AfterExport" id="bm_afterexport"/>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:AfterExport" visibility="hidden">Choose the desired behavior after export</ahelp></paragraph>
<paragraph role="heading" level="2" xml-lang="en-US">After Export</paragraph>
<paragraph role="paragraph" xml-lang="en-US">After Export, Writer2LaTeX can build the result with LaTeX and display the final document in a viewer. Choose the desired behavior in the list.</paragraph>
<list type="unordered">
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>Do nothing</emph> will only export the document to LaTeX</paragraph>
</listitem>
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>Build with LaTeX</emph> will build the converted document with LaTeX to produce the final result in DVI, PDF or PostScript format</paragraph>
</listitem>
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>Build with LaTeX and view result</emph> will display the final result in a DVI, PDF or PostScript viewer</paragraph>
</listitem>
</list>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:ConfigurationAutoButton" id="bm_configurationautobutton"/> <bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:ConfigurationAutoButton" id="bm_configurationautobutton"/>
<paragraph role="heading" level="2" xml-lang="en-US">Automatic Configuration</paragraph> <paragraph role="heading" level="2" xml-lang="en-US">Automatic Configuration</paragraph>
<paragraph role="paragraph" xml-lang="en-US">If you click this button, Writer2LaTeX will try to locate the external programs <paragraph role="paragraph" xml-lang="en-US">If you click this button, Writer2LaTeX will try to locate the external programs

View file

@ -17,8 +17,8 @@
<dlg:menulist dlg:id="XhtmlView" dlg:tab-index="4" dlg:left="72" dlg:top="30" dlg:width="120" dlg:height="12" dlg:spin="true" dlg:linecount="3" dlg:help-url="org.openoffice.da.writer2xhtml.oxt:SettingsXhtmlView"> <dlg:menulist dlg:id="XhtmlView" dlg:tab-index="4" dlg:left="72" dlg:top="30" dlg:width="120" dlg:height="12" dlg:spin="true" dlg:linecount="3" dlg:help-url="org.openoffice.da.writer2xhtml.oxt:SettingsXhtmlView">
<dlg:menupopup> <dlg:menupopup>
<dlg:menuitem dlg:value="Do nothing"/> <dlg:menuitem dlg:value="Do nothing"/>
<dlg:menuitem dlg:value="open with default web browser" dlg:selected="true"/> <dlg:menuitem dlg:value="Open with default web browser" dlg:selected="true"/>
<dlg:menuitem dlg:value="open with custom application"/> <dlg:menuitem dlg:value="Open with custom application"/>
</dlg:menupopup> </dlg:menupopup>
<script:event script:event-name="on-itemstatechange" script:macro-name="vnd.sun.star.UNO:XhtmlViewChange" script:language="UNO"/> <script:event script:event-name="on-itemstatechange" script:macro-name="vnd.sun.star.UNO:XhtmlViewChange" script:language="UNO"/>
</dlg:menulist> </dlg:menulist>