Remove .svn/ (hidden folder)
[tablet-suite] / src / ui / .svn / text-base / tsuigeneralmethods.py.svn-base
diff --git a/src/ui/.svn/text-base/tsuigeneralmethods.py.svn-base b/src/ui/.svn/text-base/tsuigeneralmethods.py.svn-base
deleted file mode 100644 (file)
index 1535527..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-# Authors: Amaury Medeiros, Nicholas Alexander and Paulo Ouriques
-# Software License: GPL
-
-from PyQt4 import QtGui
-from PyQt4 import QtCore
-
-from ui.pcsuiutils import *
-from style.styleTabletSuite import *
-
-def centralize(widget):
-    screen = QtGui.QDesktopWidget().screenGeometry()
-    size = widget.geometry()
-    widget.move((screen.width() - size.width())/2, (screen.height() - size.height())/2)
-    
-def showMessageBox(message, window_title = ""):
-    """ Creates a QMessageBox object and set its window title and text to the
-    given strings.
-    
-    Attributes:
-        String message - Message to be displayed inside the message box.
-        String window_title - String representing the title of the message box.
-    
-    """
-    message_box = QtGui.QMessageBox()
-    message_box.setStyleSheet(MESSAGE_BOX_DEFAULT)
-    message_box.setWindowFlags(QtCore.Qt.FramelessWindowHint)
-    message_box.setWindowTitle(window_title)
-    message_box.setWindowIcon(QtGui.QIcon(BACKUP_IMAGE))
-    message_box.setText(message)
-    message_box.exec_()
-    
-