Rename libreoffice digalogs

This commit is contained in:
Georgy Litvinov 2020-03-11 08:11:06 +01:00
parent 125d7817d2
commit 0a324c8a2b
51 changed files with 29 additions and 29 deletions

View file

@ -70,7 +70,7 @@ public class ConfigurationDialog extends ConfigurationDialogBase implements XSer
// Configure the base class // Configure the base class
@Override protected String getMIMEType() { return "text/html"; } @Override protected String getMIMEType() { return "text/html"; }
@Override protected String getDialogLibraryName() { return "W2PaginatedHTMLDialogs2"; } @Override protected String getDialogLibraryName() { return "w2phtml2"; }
@Override protected String getConfigFileName() { return "writer2xhtml.xml"; } @Override protected String getConfigFileName() { return "writer2xhtml.xml"; }

View file

@ -133,7 +133,7 @@ public class EpubMetadataDialog extends DialogBase {
// -------------------------------------------------- // --------------------------------------------------
// Ensure that the super can find us :-) // Ensure that the super can find us :-)
@Override public String getDialogLibraryName() { @Override public String getDialogLibraryName() {
return "W2PaginatedHTMLDialogs2"; return "w2phtml2";
} }
@Override public String getDialogName() { @Override public String getDialogName() {
@ -196,7 +196,7 @@ public class EpubMetadataDialog extends DialogBase {
} }
private boolean authorAddclick() { private boolean authorAddclick() {
SimpleDialog dialog = new SimpleDialog(xContext,"W2PaginatedHTMLDialogs2.AuthorDialog"); SimpleDialog dialog = new SimpleDialog(xContext,"w2phtml2.AuthorDialog");
if (dialog.getDialog()!=null) { if (dialog.getDialog()!=null) {
dialog.getControls().setListBoxSelectedItem("Type", (short) 0); dialog.getControls().setListBoxSelectedItem("Type", (short) 0);
dialog.getControls().setListBoxSelectedItem("Role", (short) 0); dialog.getControls().setListBoxSelectedItem("Role", (short) 0);
@ -216,7 +216,7 @@ public class EpubMetadataDialog extends DialogBase {
private boolean authorModifyclick() { private boolean authorModifyclick() {
short nIndex = getListBoxSelectedItem("Authors"); short nIndex = getListBoxSelectedItem("Authors");
AuthorInfo author = authors.get(nIndex); AuthorInfo author = authors.get(nIndex);
SimpleDialog dialog = new SimpleDialog(xContext,"W2PaginatedHTMLDialogs2.AuthorDialog"); SimpleDialog dialog = new SimpleDialog(xContext,"w2phtml2.AuthorDialog");
if (dialog.getDialog()!=null) { if (dialog.getDialog()!=null) {
dialog.getControls().setTextFieldText("Author", author.sName); dialog.getControls().setTextFieldText("Author", author.sName);
dialog.getControls().setListBoxSelectedItem("Type", author.isCreator ? (short)0 : (short) 1); dialog.getControls().setListBoxSelectedItem("Type", author.isCreator ? (short)0 : (short) 1);
@ -234,7 +234,7 @@ public class EpubMetadataDialog extends DialogBase {
private boolean authorDeleteclick() { private boolean authorDeleteclick() {
if (authors.size()>0) { if (authors.size()>0) {
SimpleDialog dialog = new SimpleDialog(xContext,"W2PaginatedHTMLDialogs2.DeleteDialog"); SimpleDialog dialog = new SimpleDialog(xContext,"w2phtml2.DeleteDialog");
if (dialog.getDialog()!=null) { if (dialog.getDialog()!=null) {
short nIndex = getListBoxSelectedItem("Authors"); short nIndex = getListBoxSelectedItem("Authors");
String sLabel = dialog.getControls().getLabelText("DeleteLabel"); String sLabel = dialog.getControls().getLabelText("DeleteLabel");
@ -272,7 +272,7 @@ public class EpubMetadataDialog extends DialogBase {
} }
private boolean dateAddClick() { private boolean dateAddClick() {
SimpleDialog dialog = new SimpleDialog(xContext,"W2PaginatedHTMLDialogs2.DateDialog"); SimpleDialog dialog = new SimpleDialog(xContext,"w2phtml2.DateDialog");
if (dialog.getDialog()!=null) { if (dialog.getDialog()!=null) {
dialog.getControls().setDateFieldValue("Date", datetime2int(xDocumentProperties.getModificationDate())); dialog.getControls().setDateFieldValue("Date", datetime2int(xDocumentProperties.getModificationDate()));
if (dialog.getDialog().execute()==ExecutableDialogResults.OK) { if (dialog.getDialog().execute()==ExecutableDialogResults.OK) {
@ -290,7 +290,7 @@ public class EpubMetadataDialog extends DialogBase {
private boolean dateModifyClick() { private boolean dateModifyClick() {
short nIndex = getListBoxSelectedItem("Dates"); short nIndex = getListBoxSelectedItem("Dates");
DateInfo date = dates.get(nIndex); DateInfo date = dates.get(nIndex);
SimpleDialog dialog = new SimpleDialog(xContext,"W2PaginatedHTMLDialogs2.DateDialog"); SimpleDialog dialog = new SimpleDialog(xContext,"w2phtml2.DateDialog");
if (dialog.getDialog()!=null) { if (dialog.getDialog()!=null) {
dialog.getControls().setDateFieldValue("Date", date.nDate); dialog.getControls().setDateFieldValue("Date", date.nDate);
dialog.getControls().setTextFieldText("Event", date.sEvent); dialog.getControls().setTextFieldText("Event", date.sEvent);
@ -306,7 +306,7 @@ public class EpubMetadataDialog extends DialogBase {
private boolean dateDeleteClick() { private boolean dateDeleteClick() {
if (dates.size()>0) { if (dates.size()>0) {
SimpleDialog dialog = new SimpleDialog(xContext,"W2PaginatedHTMLDialogs2.DeleteDialog"); SimpleDialog dialog = new SimpleDialog(xContext,"w2phtml2.DeleteDialog");
if (dialog.getDialog()!=null) { if (dialog.getDialog()!=null) {
short nIndex = getListBoxSelectedItem("Dates"); short nIndex = getListBoxSelectedItem("Dates");
String sLabel = dialog.getControls().getLabelText("DeleteLabel"); String sLabel = dialog.getControls().getLabelText("DeleteLabel");

View file

@ -51,7 +51,7 @@ public class EpubOptionsDialog extends OptionsDialogBase {
*/ */
public static String __implementationName = "org.openoffice.da.comp.writer2xhtml.EpubOptionsDialog"; public static String __implementationName = "org.openoffice.da.comp.writer2xhtml.EpubOptionsDialog";
@Override public String getDialogLibraryName() { return "W2PaginatedHTMLDialogs2"; } @Override public String getDialogLibraryName() { return "w2phtml2"; }
/** Return the name of the dialog within the library /** Return the name of the dialog within the library
*/ */

View file

@ -45,7 +45,7 @@ public class XhtmlOptionsDialog extends OptionsDialogBase {
*/ */
public static String __implementationName = "org.openoffice.da.comp.writer2xhtml.XhtmlOptionsDialog"; public static String __implementationName = "org.openoffice.da.comp.writer2xhtml.XhtmlOptionsDialog";
public String getDialogLibraryName() { return "W2PaginatedHTMLDialogs"; } public String getDialogLibraryName() { return "w2phtml"; }
/** Return the name of the dialog within the library /** Return the name of the dialog within the library
*/ */

View file

@ -1,3 +1,3 @@
#Tue Mar 10 14:37:23 CET 2020 #Wed Mar 11 07:03:57 CET 2020
releaseVersion=0.5.4 releaseVersion=0.5.5
releaseDate=14\:37\:23 10-03-2020 releaseDate=07\:03\:57 11-03-2020

View file

@ -54,11 +54,11 @@
manifest:media-type="application/vnd.sun.star.configuration-data"/> manifest:media-type="application/vnd.sun.star.configuration-data"/>
<manifest:file-entry <manifest:file-entry
manifest:full-path="W2PaginatedHTMLDialogs/" manifest:full-path="w2phtml/"
manifest:media-type="application/vnd.sun.star.basic-library"/> manifest:media-type="application/vnd.sun.star.basic-library"/>
<manifest:file-entry <manifest:file-entry
manifest:full-path="W2PaginatedHTMLDialogs2/" manifest:full-path="w2phtml2/"
manifest:media-type="application/vnd.sun.star.basic-library"/> manifest:media-type="application/vnd.sun.star.basic-library"/>
<manifest:file-entry <manifest:file-entry

View file

@ -28,7 +28,7 @@
<value xml:lang="en-US">Writer2xhtml</value> <value xml:lang="en-US">Writer2xhtml</value>
</prop> </prop>
<prop oor:name="OptionsPage"> <prop oor:name="OptionsPage">
<value>%origin%/W2PaginatedHTMLDialogs2/ConfigurationRoot.xdl</value> <value>%origin%/w2phtml2/ConfigurationRoot.xdl</value>
</prop> </prop>
<prop oor:name="EventHandlerService"> <prop oor:name="EventHandlerService">
<value></value> <value></value>
@ -52,7 +52,7 @@
<value xml:lang="en-US">General</value> <value xml:lang="en-US">General</value>
</prop> </prop>
<prop oor:name="OptionsPage"> <prop oor:name="OptionsPage">
<value>%origin%/W2PaginatedHTMLDialogs2/General.xdl</value> <value>%origin%/w2phtml2/General.xdl</value>
</prop> </prop>
<prop oor:name="EventHandlerService"> <prop oor:name="EventHandlerService">
<value>org.openoffice.da.writer2xhtml.ConfigurationDialog</value> <value>org.openoffice.da.writer2xhtml.ConfigurationDialog</value>
@ -74,7 +74,7 @@
<value xml:lang="en-US">Template</value> <value xml:lang="en-US">Template</value>
</prop> </prop>
<prop oor:name="OptionsPage"> <prop oor:name="OptionsPage">
<value>%origin%/W2PaginatedHTMLDialogs2/Template.xdl</value> <value>%origin%/w2phtml2/Template.xdl</value>
</prop> </prop>
<prop oor:name="EventHandlerService"> <prop oor:name="EventHandlerService">
<value>org.openoffice.da.writer2xhtml.ConfigurationDialog</value> <value>org.openoffice.da.writer2xhtml.ConfigurationDialog</value>
@ -96,7 +96,7 @@
<value xml:lang="en-US">Master styles</value> <value xml:lang="en-US">Master styles</value>
</prop> </prop>
<prop oor:name="OptionsPage"> <prop oor:name="OptionsPage">
<value>%origin%/W2PaginatedHTMLDialogs2/Styles1.xdl</value> <value>%origin%/w2phtml2/Styles1.xdl</value>
</prop> </prop>
<prop oor:name="EventHandlerService"> <prop oor:name="EventHandlerService">
<value>org.openoffice.da.writer2xhtml.ConfigurationDialog</value> <value>org.openoffice.da.writer2xhtml.ConfigurationDialog</value>
@ -118,7 +118,7 @@
<value xml:lang="en-US">Other styles</value> <value xml:lang="en-US">Other styles</value>
</prop> </prop>
<prop oor:name="OptionsPage"> <prop oor:name="OptionsPage">
<value>%origin%/W2PaginatedHTMLDialogs2/Styles2.xdl</value> <value>%origin%/w2phtml2/Styles2.xdl</value>
</prop> </prop>
<prop oor:name="EventHandlerService"> <prop oor:name="EventHandlerService">
<value>org.openoffice.da.writer2xhtml.ConfigurationDialog</value> <value>org.openoffice.da.writer2xhtml.ConfigurationDialog</value>
@ -140,7 +140,7 @@
<value xml:lang="en-US">Formatting</value> <value xml:lang="en-US">Formatting</value>
</prop> </prop>
<prop oor:name="OptionsPage"> <prop oor:name="OptionsPage">
<value>%origin%/W2PaginatedHTMLDialogs2/Formatting.xdl</value> <value>%origin%/w2phtml2/Formatting.xdl</value>
</prop> </prop>
<prop oor:name="EventHandlerService"> <prop oor:name="EventHandlerService">
<value>org.openoffice.da.writer2xhtml.ConfigurationDialog</value> <value>org.openoffice.da.writer2xhtml.ConfigurationDialog</value>
@ -162,7 +162,7 @@
<value xml:lang="en-US">Content</value> <value xml:lang="en-US">Content</value>
</prop> </prop>
<prop oor:name="OptionsPage"> <prop oor:name="OptionsPage">
<value>%origin%/W2PaginatedHTMLDialogs2/Content.xdl</value> <value>%origin%/w2phtml2/Content.xdl</value>
</prop> </prop>
<prop oor:name="EventHandlerService"> <prop oor:name="EventHandlerService">
<value>org.openoffice.da.writer2xhtml.ConfigurationDialog</value> <value>org.openoffice.da.writer2xhtml.ConfigurationDialog</value>

View file

@ -28,7 +28,7 @@
<value xml:lang="en-US">Writer2xhtml toolbar</value> <value xml:lang="en-US">Writer2xhtml toolbar</value>
</prop> </prop>
<prop oor:name="OptionsPage"> <prop oor:name="OptionsPage">
<value>%origin%/W2PaginatedHTMLDialogs2/ToolbarConfigurationRoot.xdl</value> <value>%origin%/w2phtml2/ToolbarConfigurationRoot.xdl</value>
</prop> </prop>
<prop oor:name="EventHandlerService"> <prop oor:name="EventHandlerService">
<value></value> <value></value>
@ -45,7 +45,7 @@
<value xml:lang="en-US">Settings</value> <value xml:lang="en-US">Settings</value>
</prop> </prop>
<prop oor:name="OptionsPage"> <prop oor:name="OptionsPage">
<value>%origin%/W2PaginatedHTMLDialogs2/ToolbarSettings.xdl</value> <value>%origin%/w2phtml2/ToolbarSettings.xdl</value>
</prop> </prop>
<prop oor:name="EventHandlerService"> <prop oor:name="EventHandlerService">
<value>org.openoffice.da.writer2xhtml.ToolbarSettingsDialog</value> <value>org.openoffice.da.writer2xhtml.ToolbarSettingsDialog</value>

View file

@ -3,7 +3,7 @@
<identifier value="pro.litvinovg.writer2paginatedhtml"/> <identifier value="pro.litvinovg.writer2paginatedhtml"/>
<version value="0.5.4"/> <version value="0.5.5"/>
<dependencies> <dependencies>
<OpenOffice.org-minimal-version d:name="OpenOffice.org 3.0" value="3.0"/> <OpenOffice.org-minimal-version d:name="OpenOffice.org 3.0" value="3.0"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE library:library PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "library.dtd"> <!DOCTYPE library:library PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "library.dtd">
<library:library xmlns:library="http://openoffice.org/2000/library" library:name="W2PaginatedHTMLDialogs" library:readonly="false" library:passwordprotected="false"> <library:library xmlns:library="http://openoffice.org/2000/library" library:name="w2phtml" library:readonly="false" library:passwordprotected="false">
<library:element library:name="XhtmlOptions"/> <library:element library:name="XhtmlOptions"/>
</library:library> </library:library>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE library:library PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "library.dtd"> <!DOCTYPE library:library PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "library.dtd">
<library:library xmlns:library="http://openoffice.org/2000/library" library:name="W2PaginatedHTMLDialogs" library:readonly="false" library:passwordprotected="false"> <library:library xmlns:library="http://openoffice.org/2000/library" library:name="w2phtml" library:readonly="false" library:passwordprotected="false">
<library:element library:name="Module1"/> <library:element library:name="Module1"/>
</library:library> </library:library>

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE library:library PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "library.dtd"> <!DOCTYPE library:library PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "library.dtd">
<library:library xmlns:library="http://openoffice.org/2000/library" library:name="W2PaginatedHTMLDialogs2" library:readonly="false" library:passwordprotected="false"> <library:library xmlns:library="http://openoffice.org/2000/library" library:name="w2phtml2" library:readonly="false" library:passwordprotected="false">
<library:element library:name="ConfigurationRoot"/> <library:element library:name="ConfigurationRoot"/>
<library:element library:name="General"/> <library:element library:name="General"/>
<library:element library:name="Template"/> <library:element library:name="Template"/>

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE library:library PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "library.dtd"> <!DOCTYPE library:library PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "library.dtd">
<library:library xmlns:library="http://openoffice.org/2000/library" library:name="W2PaginatedHTMLDialogs2" library:readonly="false" library:passwordprotected="false"> <library:library xmlns:library="http://openoffice.org/2000/library" library:name="w2phtml2" library:readonly="false" library:passwordprotected="false">
<library:element library:name="Module1"/> <library:element library:name="Module1"/>
</library:library> </library:library>