Bugfixing configuration UI

git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@139 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
henrikjust 2012-03-11 13:05:41 +00:00
parent bf0c99a95c
commit 8140cf28f0
8 changed files with 41 additions and 24 deletions

View file

@ -2,6 +2,10 @@ Changelog for Writer2LaTeX version 1.0 -> 1.2
---------- version 1.1.9 ----------
[w2x] Bugfix: Ignore empty element attribute in style maps
[all] Fixed bugs in some of the filter configuration dialogs
[w2l] Added support for the new StarMath keywords nospace (ignored) and prec, nprec, succ, nsucc, preccurlyeq, succcurlyeq,
precsim, succsim (converted)

View file

@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
* Copyright: 2002-2011 by Henrik Just
* Copyright: 2002-2012 by Henrik Just
*
* All Rights Reserved.
*
* Version 1.2 (2011-06-06)
* Version 1.2 (2012-03-07)
*
*/
@ -688,6 +688,7 @@ public abstract class ConfigurationDialogBase extends WeakBase implements XConta
if (sNewName!=null) {
styleMap[nCurrentFamily].put(sNewName, new HashMap<String,String>());
clearControls(dlg);
styleNameChange(dlg);
}
updateStyleControls(dlg);
}
@ -698,6 +699,7 @@ public abstract class ConfigurationDialogBase extends WeakBase implements XConta
String sStyleName = sCurrentStyleName;
if (deleteCurrentItem(dlg,"StyleName")) {
styleMap[nCurrentFamily].remove(sStyleName);
sCurrentStyleName=null;
styleNameChange(dlg);
}
updateStyleControls(dlg);

View file

@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
* Copyright: 2002-2011 by Henrik Just
* Copyright: 2002-2012 by Henrik Just
*
* All Rights Reserved.
*
* Version 1.2 (2011-09-20)
* Version 1.2 (2012-03-07)
*
*/
@ -164,6 +164,8 @@ public final class ConfigurationDialog extends ConfigurationDialogBase implement
}
dlg.setListBoxSelectedItem("MaxLevel", nMaxLevel);
maxLevelChange(dlg);
// Get other controls from config
checkBoxFromConfig(dlg,"UseTitlesec","use_titlesec");
@ -235,6 +237,8 @@ public final class ConfigurationDialog extends ConfigurationDialogBase implement
}
dlg.setListBoxSelectedItem("WriterLevel", nNewWriterLevel);
}
writerLevelChange(dlg);
// All controls should be disabled if the maximum level is zero
boolean bUpdate = dlg.getListBoxSelectedItem("MaxLevel")>0;

View file

@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
* Copyright: 2002-2011 by Henrik Just
* Copyright: 2002-2012 by Henrik Just
*
* All Rights Reserved.
*
* Version 1.2 (2011-06-11)
* Version 1.2 (2012-03-07)
*
*/

View file

@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
* Version 1.2 (2012-03-05)
* Version 1.2 (2012-03-11)
*
*/
@ -33,7 +33,7 @@ public class ConverterFactory {
// Version information
private static final String VERSION = "1.1.9";
private static final String DATE = "2012-03-05";
private static final String DATE = "2012-03-11";
/** Return the Writer2LaTeX version in the form
* (major version).(minor version).(patch level)<br/>

View file

@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
* Copyright: 2002-2010 by Henrik Just
* Copyright: 2002-2012 by Henrik Just
*
* All Rights Reserved.
*
* Version 1.2 (2010-05-05)
* Version 1.2 (2012-03-07)
*
*/
@ -64,7 +64,9 @@ public class ListStyleConverter extends StyleConverterHelper {
else {
String sDisplayName = style.getDisplayName();
if (styleMap.contains(sDisplayName)) {
info.sTagName = styleMap.getElement(sDisplayName);
if (styleMap.getElement(sDisplayName).length()>0) {
info.sTagName = styleMap.getElement(sDisplayName);
}
if (!"(none)".equals(styleMap.getCss(sDisplayName))) {
info.sClass = styleMap.getCss(sDisplayName);
}

View file

@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
* Copyright: 2002-2010 by Henrik Just
* Copyright: 2002-2012 by Henrik Just
*
* All Rights Reserved.
*
* Version 1.2 (2010-03-03)
* Version 1.2 (2012-03-07)
*
*/
@ -73,7 +73,9 @@ public abstract class StyleWithPropertiesConverterHelper
String sDisplayName = style.getDisplayName();
if (styleMap.contains(sDisplayName)) {
// Apply attributes as specified in style map from user
info.sTagName = styleMap.getElement(sDisplayName);
if (styleMap.getElement(sDisplayName).length()>0) {
info.sTagName = styleMap.getElement(sDisplayName);
}
if (!"(none)".equals(styleMap.getCss(sDisplayName))) {
info.sClass = styleMap.getCss(sDisplayName);
}

View file

@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
* Version 1.2 (2012-03-05)
* Version 1.2 (2012-03-07)
*
*/
@ -2076,15 +2076,18 @@ public class TextConverter extends ConverterHelper {
/* apply hard formatting attribute style maps */
private Element applyAttribute(Element node, String sAttr, boolean bApply) {
if (!bApply) { return node; }
XhtmlStyleMap xattr = config.getXAttrStyleMap();
if (!xattr.contains(sAttr)) { return node; }
Element attr = converter.createElement(xattr.getElement(sAttr));
if (!"(none)".equals(xattr.getCss(sAttr))) {
attr.setAttribute("class",xattr.getCss(sAttr));
}
node.appendChild(attr);
return attr;
if (bApply) {
XhtmlStyleMap xattr = config.getXAttrStyleMap();
if (xattr.contains(sAttr) && xattr.getElement(sAttr).length()>0) {
Element attr = converter.createElement(xattr.getElement(sAttr));
if (!"(none)".equals(xattr.getCss(sAttr))) {
attr.setAttribute("class",xattr.getCss(sAttr));
}
node.appendChild(attr);
return attr;
}
}
return node;
}
/* Create a styled paragraph node */