Added check for not saved documents
This commit is contained in:
parent
14be21dbce
commit
ff29c7c8cb
1 changed files with 19 additions and 16 deletions
|
@ -83,31 +83,34 @@ public class Document {
|
|||
}
|
||||
XStorable storable = UnoRuntime.queryInterface(XStorable.class, textDoc);
|
||||
|
||||
if (storable == null || storable.isReadonly()) {
|
||||
Debug.printLog("Document is read only", componentContext);
|
||||
} else {
|
||||
//Debug.printLog("Document is in rw mode", componentContext);
|
||||
}
|
||||
/*
|
||||
* if (storable == null || storable.isReadonly()) {
|
||||
* Debug.printLog("Document is read only", componentContext); } else {
|
||||
* Debug.printLog("Document is in rw mode", componentContext); }
|
||||
*/
|
||||
|
||||
XModifiable modifieable = UnoRuntime.queryInterface(XModifiable.class, textDoc);
|
||||
|
||||
if (modifieable == null || modifieable.isModified()) {
|
||||
Debug.printLog("Document is modified", componentContext);
|
||||
Debug.printLog("Document is modified. Save changes before conversion.", componentContext);
|
||||
} else {
|
||||
//Debug.printLog("Document isn't modified", componentContext);
|
||||
}
|
||||
|
||||
String url = model.getURL();
|
||||
URI uri = new URI(url);
|
||||
File file = new File(uri);
|
||||
if (file.exists() && file.canRead()) {
|
||||
//Debug.printLog("File exists!", componentContext);
|
||||
fileName = file.getAbsolutePath();
|
||||
if (!storable.hasLocation()) {
|
||||
Debug.printLog("Document is not saved. Save document before conversion.", componentContext);
|
||||
return;
|
||||
}
|
||||
String url = model.getURL();
|
||||
URI uri = new URI(url);
|
||||
File file = new File(uri);
|
||||
if (file.exists() && file.canRead()) {
|
||||
fileName = file.getAbsolutePath();
|
||||
}
|
||||
|
||||
} catch (Exception e) {
|
||||
} catch (Throwable e) {
|
||||
System.out.println("xDesktop inaccessible. Can not proceed.");
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
Debug.printLog(e.getStackTrace().toString(), componentContext);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue