[PATCH] Init: Added new file ErrorHandler.py
Javier Fernandez (via Code Review)
gerrit at gerrit.libreoffice.org
Mon Mar 25 03:46:14 PDT 2013
Hi,
I have submitted a patch for review:
https://gerrit.libreoffice.org/2996
To pull it, you can do:
git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/96/2996/1
Init: Added new file ErrorHandler.py
Change-Id: Id4118c5f2e13e38d5c6803e8e07ef250cdcb2d7f
---
A wizards/com/sun/star/wizards/web/ErrorHandler.py
1 file changed, 79 insertions(+), 0 deletions(-)
diff --git a/wizards/com/sun/star/wizards/web/ErrorHandler.py b/wizards/com/sun/star/wizards/web/ErrorHandler.py
new file mode 100644
index 0000000..093e498
--- /dev/null
+++ b/wizards/com/sun/star/wizards/web/ErrorHandler.py
@@ -0,0 +1,79 @@
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+# This file incorporates work covered by the following license notice:
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed
+# with this work for additional information regarding copyright
+# ownership. The ASF licenses this file to you under the Apache
+# License, Version 2.0 (the "License"); you may not use this file
+# except in compliance with the License. You may obtain a copy of
+# the License at http://www.apache.org/licenses/LICENSE-2.0 .
+
+from com.sun.star.awt.VclWindowPeerAttribute import OK, DEF_OK, OK_CANCEL, DEF_CANCEL
+from com.sun.star.awt.VclWindowPeerAttribute import YES_NO, DEF_NO, DEF_YES
+
+class ErrorHandler:
+
+ MESSAGE_INFO = "infobox"
+ MESSAGE_QUESTION = "querybox"
+ MESSAGE_ERROR = "errorbox"
+ MESSAGE_WARNING = "warningbox"
+ BUTTONS_OK = OK
+ BUTTONS_OK_CANCEL = OK_CANCEL
+ BUTTONS_YES_NO = YES_NO
+ RESULT_CANCEL = 0
+ RESULT_OK = 1
+ RESULT_YES = 2
+ DEF_OK = DEF_OK
+ DEF_NO = DEF_NO
+ DEF_CANCEL = DEF_CANCEL
+
+ #Error type for fatal errors which should abort application
+ # execution. Should actually never be used :-)
+ ERROR_FATAL = 0
+ # An Error type for errors which should stop the current process.
+ ERROR_PROCESS_FATAL = 1
+ # An Error type for errors to which the user can choose, whether
+ # to continue or to abort the current process.
+ # default is abort.
+ ERROR_NORMAL_ABORT = 2
+ # An Error type for errors to which the user can choose, whether
+ # to continue or to abort the current process.
+ # default is continue.
+ ERROR_NORMAL_IGNORE = 3
+ # An error type for warnings which requires user interaction.
+ # (a question :-) )
+ # Default is abort (cancel).
+ ERROR_QUESTION_CANCEL = 4
+ # An error type for warnings which requires user interaction
+ # (a question :-) )
+ # Default is to continue (ok).
+ ERROR_QUESTION_OK = 5
+ # An error type for warnings which requires user interaction.
+ # (a question :-) )
+ # Default is abort (No).
+ ERROR_QUESTION_NO = 6
+ # An error type for warnings which requires user interaction
+ # (a question :-) )
+ # Default is to continue (Yes).
+ ERROR_QUESTION_YES = 7
+ # An error type which is just a warning...
+ ERROR_WARNING = 8
+ # An error type which just tells the user something
+ # ( like "you look tired! you should take a bath! and so on)
+ ERROR_MESSAGE = 9
+
+ # @param ex the exception that accured
+ # @param arg an object as help for recognizing the exception
+ # @param ix an integer which helps for detailed recognizing of the exception
+ # @param errorType one of the int constants defined by this Interface
+ # @return true if the execution should continue, false if it should stop.
+ def error(self, ex, arg, ix, errorType):
+ pass
+
--
To view, visit https://gerrit.libreoffice.org/2996
To unsubscribe, visit https://gerrit.libreoffice.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: Id4118c5f2e13e38d5c6803e8e07ef250cdcb2d7f
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Javier Fernandez <javier.fgb at gmail.com>
More information about the LibreOffice
mailing list