[qet] [3775] Fix compilation error on windows:

[ Thread Index | Date Index | More lists.tuxfamily.org/qet Archives ]


Revision: 3775
Author:   blacksun
Date:     2015-02-28 11:54:09 +0100 (Sat, 28 Feb 2015)
Log Message:
-----------
Fix compilation error on windows:
Replace the namespace QET::MessageBox by QET::QetMessageBox because MessageBox is already used by mingw

Modified Paths:
--------------
    branches/Qt5/sources/diagram.cpp
    branches/Qt5/sources/diagramprintdialog.cpp
    branches/Qt5/sources/diagramview.cpp
    branches/Qt5/sources/editor/polygoneditor.cpp
    branches/Qt5/sources/editor/qetelementeditor.cpp
    branches/Qt5/sources/elementdeleter.cpp
    branches/Qt5/sources/elementdialog.cpp
    branches/Qt5/sources/elementscategorydeleter.cpp
    branches/Qt5/sources/elementscategoryeditor.cpp
    branches/Qt5/sources/exportdialog.cpp
    branches/Qt5/sources/interactivemoveelementshandler.cpp
    branches/Qt5/sources/nameslistwidget.cpp
    branches/Qt5/sources/newelementwizard.cpp
    branches/Qt5/sources/projectview.cpp
    branches/Qt5/sources/qetdiagrameditor.cpp
    branches/Qt5/sources/qetmessagebox.cpp
    branches/Qt5/sources/qetmessagebox.h
    branches/Qt5/sources/qetproject.cpp
    branches/Qt5/sources/titleblock/integrationmovetemplateshandler.cpp
    branches/Qt5/sources/titleblock/qettemplateeditor.cpp
    branches/Qt5/sources/titleblock/templatedeleter.cpp
    branches/Qt5/sources/ui/dialogautonum.cpp

Modified: branches/Qt5/sources/diagram.cpp
===================================================================
--- branches/Qt5/sources/diagram.cpp	2015-02-28 10:47:26 UTC (rev 3774)
+++ branches/Qt5/sources/diagram.cpp	2015-02-28 10:54:09 UTC (rev 3775)
@@ -61,12 +61,14 @@
 	setBackgroundBrush(Qt::white);
 	conductor_setter_ = new QGraphicsLineItem(0);
 	conductor_setter_ -> setZValue(1000000);
-	QPen t;
-	t.setColor(Qt::black);
-	t.setWidthF(1.5);
-	t.setStyle(Qt::DashLine);
-	conductor_setter_ -> setPen(t);
-	conductor_setter_ -> setLine(QLineF(QPointF(0.0, 0.0), QPointF(0.0, 0.0)));
+//	QPen t;
+//	t.setColor(Qt::black);
+//	t.setWidthF(1.5);
+//	t.setStyle(Qt::DashLine);
+	QPen pen(Qt::NoBrush, 1.5, Qt::DashLine);
+	pen.setColor(Qt::black);
+	conductor_setter_ -> setPen(pen);
+	//conductor_setter_ -> setLine(QLineF(QPointF(0.0, 0.0), QPointF(0.0, 0.0)));
 	
 		//Init object for manage movement
 	elements_mover_      = new ElementsMover();

Modified: branches/Qt5/sources/diagramprintdialog.cpp
===================================================================
--- branches/Qt5/sources/diagramprintdialog.cpp	2015-02-28 10:47:26 UTC (rev 3774)
+++ branches/Qt5/sources/diagramprintdialog.cpp	2015-02-28 10:54:09 UTC (rev 3775)
@@ -321,7 +321,7 @@
 	if (file_print) {
 		// un fichier doit avoir ete entre
 		if (filepath_field_ -> text().isEmpty()) {
-			QET::MessageBox::information(
+			QET::QetMessageBox::information(
 				parentWidget(),
 				tr("Fichier manquant", "message box title"),
 				tr("Vous devez indiquer le chemin du fichier PDF/PS à créer.", "message box content")

Modified: branches/Qt5/sources/diagramview.cpp
===================================================================
--- branches/Qt5/sources/diagramview.cpp	2015-02-28 10:47:26 UTC (rev 3774)
+++ branches/Qt5/sources/diagramview.cpp	2015-02-28 10:54:09 UTC (rev 3775)
@@ -911,7 +911,7 @@
 	}
 	
 	else {
-		QET::MessageBox::information(
+		QET::QetMessageBox::information(
 			this,
 			tr("Propriétés de la sélection"),
 			QString(

Modified: branches/Qt5/sources/editor/polygoneditor.cpp
===================================================================
--- branches/Qt5/sources/editor/polygoneditor.cpp	2015-02-28 10:47:26 UTC (rev 3774)
+++ branches/Qt5/sources/editor/polygoneditor.cpp	2015-02-28 10:54:09 UTC (rev 3775)
@@ -73,7 +73,7 @@
 	if (!part) return;
 	QVector<QPointF> points = getPointsFromTree();
 	if (points.count() < 2) {
-		QET::MessageBox::warning(
+		QET::QetMessageBox::warning(
 			this,
 			tr("Erreur", "message box title"),
 			tr("Le polygone doit comporter au moins deux points.", "message box content")

Modified: branches/Qt5/sources/editor/qetelementeditor.cpp
===================================================================
--- branches/Qt5/sources/editor/qetelementeditor.cpp	2015-02-28 10:47:26 UTC (rev 3774)
+++ branches/Qt5/sources/editor/qetelementeditor.cpp	2015-02-28 10:54:09 UTC (rev 3775)
@@ -644,7 +644,7 @@
 	une boite de dialogue.
 */
 void QETElementEditor::xmlPreview() {
-	QET::MessageBox::information(
+	QET::QetMessageBox::information(
 		this,
 		"Export XML",
 		ce_scene -> toXml().toString(4)
@@ -793,7 +793,7 @@
 	}
 	
 	if (!state) {
-		QET::MessageBox::critical(this, tr("Erreur", "toolbar title"), error_message);
+		QET::QetMessageBox::critical(this, tr("Erreur", "toolbar title"), error_message);
 		return;
 	}
 	
@@ -803,7 +803,7 @@
 	
 	// gestion de la lecture seule
 	if (!infos_file.isWritable()) {
-		QET::MessageBox::warning(
+		QET::QetMessageBox::warning(
 			this,
 			tr("Édition en lecture seule", "message box title"),
 			tr("Vous n'avez pas les privilèges nécessaires pour modifier cet élement. Il sera donc ouvert en lecture seule.", "message box content")
@@ -828,7 +828,7 @@
 	QDomDocument element_xml = ce_scene -> toXml();
 	bool writing = QET::writeXmlFile(element_xml, fn);
 	if (!writing) {
-		QET::MessageBox::warning(
+		QET::QetMessageBox::warning(
 			this,
 			tr("Erreur", "message box title"),
 			tr("Impossible d'écrire dans ce fichier", "message box content")
@@ -854,7 +854,7 @@
 	}
 	
 	if (!element) {
-		QET::MessageBox::critical(
+		QET::QetMessageBox::critical(
 			this,
 			tr("Erreur", "message box title"),
 			tr("Impossible d'atteindre l'élément", "message box content")
@@ -865,7 +865,7 @@
 	// enregistre l'element
 	element -> setXml(ce_scene -> toXml().documentElement());
 	if (!element -> write()) {
-		QET::MessageBox::critical(
+		QET::QetMessageBox::critical(
 			this,
 			tr("Erreur", "message box title"),
 			tr("Impossible d'enregistrer l'élément", "message box content")
@@ -1066,7 +1066,7 @@
 	// we have to test the file existence here because QETApp::openElementFiles()
 	// will discard non-existent files through QFileInfo::canonicalFilePath()
 	if (!QFile::exists(filepath)) {
-		QET::MessageBox::critical(
+		QET::QetMessageBox::critical(
 			this,
 			tr("Impossible d'ouvrir le fichier", "message box title"),
 			QString(
@@ -1085,7 +1085,7 @@
 	// s'il ya des modifications, on demande a l'utilisateur s'il est certain
 	// de vouloir recharger
 	if (!ce_scene -> undoStack().isClean()) {
-		QMessageBox::StandardButton answer = QET::MessageBox::question(
+		QMessageBox::StandardButton answer = QET::QetMessageBox::question(
 			this,
 			tr("Recharger l'élément", "dialog title"),
 			tr("Vous avez efffectué des modifications sur cet élément. Si vous le rechargez, ces modifications seront perdues. Voulez-vous vraiment recharger l'élément ?", "dialog content"),
@@ -1207,7 +1207,7 @@
 bool QETElementEditor::canClose() {
 	if (ce_scene -> undoStack().isClean()) return(true);
 	// demande d'abord a l'utilisateur s'il veut enregistrer l'element en cours
-	QMessageBox::StandardButton answer = QET::MessageBox::question(
+	QMessageBox::StandardButton answer = QET::QetMessageBox::question(
 		this,
 		tr("Enregistrer l'élément en cours ?", "dialog title"),
 		QString(
@@ -1422,7 +1422,7 @@
 	ElementsCollectionItem *item = QETApp::collectionItem(location);
 	ElementDefinition *element = 0;
 	if (!item) {
-		QET::MessageBox::critical(
+		QET::QetMessageBox::critical(
 			this,
 			tr("Élément inexistant.", "message box title"),
 			tr("L'élément n'existe pas.", "message box content")
@@ -1431,7 +1431,7 @@
 	}
 	
 	if (!item -> isElement() || !(element = qobject_cast<ElementDefinition *>(item)) || element -> isNull()) {
-		QET::MessageBox::critical(
+		QET::QetMessageBox::critical(
 			this,
 			tr("Élément inexistant.", "message box title"),
 			tr("Le chemin virtuel choisi ne correspond pas à un élément.", "message box content")
@@ -1450,7 +1450,7 @@
 	
 	// gestion de la lecture seule
 	if (!element -> isWritable()) {
-		QET::MessageBox::warning(
+		QET::QetMessageBox::warning(
 			this,
 			tr("Édition en lecture seule", "message box title"),
 			tr("Vous n'avez pas les privilèges nécessaires pour modifier cet élement. Il sera donc ouvert en lecture seule.", "message box content")
@@ -1489,7 +1489,7 @@
 	}
 	
 	if (!error_message.isEmpty()) {
-		QET::MessageBox::critical(this, tr("Erreur", "toolbar title"), error_message);
+		QET::QetMessageBox::critical(this, tr("Erreur", "toolbar title"), error_message);
 	}
 	copyAndPasteXml(xml_document);
 }
@@ -1507,7 +1507,7 @@
 	ElementsCollectionItem *item = QETApp::collectionItem(location);
 	ElementDefinition *element = 0;
 	if (!item) {
-		QET::MessageBox::critical(
+		QET::QetMessageBox::critical(
 			this,
 			tr("Élément inexistant.", "message box title"),
 			tr("L'élément n'existe pas.", "message box content")
@@ -1516,7 +1516,7 @@
 	}
 	
 	if (!item -> isElement() || !(element = qobject_cast<ElementDefinition *>(item)) || element -> isNull()) {
-		QET::MessageBox::critical(
+		QET::QetMessageBox::critical(
 			this,
 			tr("Élément inexistant.", "message box title"),
 			tr("Le chemin virtuel choisi ne correspond pas à un élément.", "message box content")

Modified: branches/Qt5/sources/elementdeleter.cpp
===================================================================
--- branches/Qt5/sources/elementdeleter.cpp	2015-02-28 10:47:26 UTC (rev 3774)
+++ branches/Qt5/sources/elementdeleter.cpp	2015-02-28 10:54:09 UTC (rev 3775)
@@ -51,7 +51,7 @@
 	if (!element || !element -> isElement()) return(false);
 	
 	// confirmation #1
-	QMessageBox::StandardButton answer_1 = QET::MessageBox::question(
+	QMessageBox::StandardButton answer_1 = QET::QetMessageBox::question(
 		this,
 		tr("Supprimer l'élément ?", "message box title"),
 		tr("Êtes-vous s\373r de vouloir supprimer cet élément ?\n", "message box content"),
@@ -65,7 +65,7 @@
 	
 	// supprime l'element
 	if (!element -> remove()) {
-		QET::MessageBox::warning(
+		QET::QetMessageBox::warning(
 			this,
 			tr("Suppression de l'élément", "message box title"),
 			tr("La suppression de l'élément a échoué.", "message box content")

Modified: branches/Qt5/sources/elementdialog.cpp
===================================================================
--- branches/Qt5/sources/elementdialog.cpp	2015-02-28 10:47:26 UTC (rev 3774)
+++ branches/Qt5/sources/elementdialog.cpp	2015-02-28 10:54:09 UTC (rev 3775)
@@ -240,7 +240,7 @@
 		// on verifie d'abord que l'utilisateur a choisi quelque chose
 		ElementsLocation location = list_ -> selectedLocation();
 		if (location.isNull()) {
-			QET::MessageBox::critical(
+			QET::QetMessageBox::critical(
 				dialog_,
 				tr("Pas de sélection", "message box title"),
 				tr("Vous devez sélectionner un élément.", "message box content")
@@ -251,7 +251,7 @@
 		// on verifie donc que la selection existe
 		ElementsCollectionItem *item = QETApp::collectionItem(location);
 		if (!item) {
-			QET::MessageBox::critical(
+			QET::QetMessageBox::critical(
 				dialog_,
 				tr("Sélection inexistante", "message box title"),
 				tr("La sélection n'existe pas.", "message box content")
@@ -261,7 +261,7 @@
 		
 		// puis on verifie qu'il s'agit bien d'un element
 		if (!item -> isElement()) {
-			QET::MessageBox::critical(
+			QET::QetMessageBox::critical(
 				dialog_,
 				tr("Sélection incorrecte", "message box title"),
 				tr("La sélection n'est pas un élément.", "message box content")
@@ -278,7 +278,7 @@
 		*/
 		ElementsLocation location = list_ -> selectedLocation();
 		if (location.isNull()) {
-			QET::MessageBox::critical(
+			QET::QetMessageBox::critical(
 				dialog_,
 				tr("Pas de sélection", "message box title"),
 				tr("Vous devez sélectionner une catégorie ou un élément.", "message box content")
@@ -289,7 +289,7 @@
 		// on verifie donc que la selection existe
 		ElementsCollectionItem *item = QETApp::collectionItem(location);
 		if (!item) {
-			QET::MessageBox::critical(
+			QET::QetMessageBox::critical(
 				dialog_,
 				tr("Sélection inexistante", "message box title"),
 				tr("La sélection n'existe pas.", "message box content")
@@ -302,7 +302,7 @@
 			QString element_name(textfield_ -> text());
 			// si on a une categorie (ou une collection), il nous faut un nom d'element
 			if (element_name.isEmpty()) {
-				QET::MessageBox::critical(
+				QET::QetMessageBox::critical(
 					dialog_,
 					tr("Nom manquant", "message box title"),
 					tr("Vous devez entrer un nom pour l'élément", "message box content")
@@ -312,7 +312,7 @@
 			
 			// ce nom d'element doit etre valide
 			if (QET::containsForbiddenCharacters(element_name)) {
-				QET::MessageBox::critical(
+				QET::QetMessageBox::critical(
 					dialog_,
 					tr("Nom invalide", "message box title"),
 					QString(
@@ -340,7 +340,7 @@
 		
 		// si l'element existe, on demande confirmation pour son ecrasement
 		if (element_already_exists) {
-			QMessageBox::StandardButton answer = QET::MessageBox::question(
+			QMessageBox::StandardButton answer = QET::QetMessageBox::question(
 				dialog_,
 				tr("Écraser l'élément ?", "message box title"),
 				tr("L'élément existe déjà. Voulez-vous l'écraser ?", "message box content"),

Modified: branches/Qt5/sources/elementscategorydeleter.cpp
===================================================================
--- branches/Qt5/sources/elementscategorydeleter.cpp	2015-02-28 10:47:26 UTC (rev 3774)
+++ branches/Qt5/sources/elementscategorydeleter.cpp	2015-02-28 10:54:09 UTC (rev 3775)
@@ -54,7 +54,7 @@
 	
 	// gere le cas ou la suppression d'une collection est demandee
 	if (category -> isCollection()) {
-		QMessageBox::StandardButton answer_0 = QET::MessageBox::question(
+		QMessageBox::StandardButton answer_0 = QET::QetMessageBox::question(
 			this,
 			tr("Vider la collection ?", "message box title"),
 			tr("Êtes-vous s\373r de vouloir vider cette collection ?", "message box content"),
@@ -71,7 +71,7 @@
 	
 	// avertissement pour la suppression d'une collection
 	// confirmation #1
-	QMessageBox::StandardButton answer_1 = QET::MessageBox::question(
+	QMessageBox::StandardButton answer_1 = QET::QetMessageBox::question(
 		this,
 		tr("Supprimer la catégorie ?", "message box title"),
 		tr(
@@ -85,7 +85,7 @@
 	if (answer_1 != QMessageBox::Yes) return(false);
 	
 	// confirmation #2
-	QMessageBox::StandardButton answer_2 = QET::MessageBox::question(
+	QMessageBox::StandardButton answer_2 = QET::QetMessageBox::question(
 		this,
 		tr("Supprimer la catégorie ?", "message box title"),
 		tr(
@@ -99,7 +99,7 @@
 	
 	// supprime la categorie
 	if (!category -> remove()) {
-		QET::MessageBox::warning(
+		QET::QetMessageBox::warning(
 			this,
 			tr("Suppression de la catégorie", "message box title"),
 			tr("La suppression de la catégorie a échoué.", "message box content")

Modified: branches/Qt5/sources/elementscategoryeditor.cpp
===================================================================
--- branches/Qt5/sources/elementscategoryeditor.cpp	2015-02-28 10:47:26 UTC (rev 3774)
+++ branches/Qt5/sources/elementscategoryeditor.cpp	2015-02-28 10:54:09 UTC (rev 3775)
@@ -42,7 +42,7 @@
 	if (category_item) category_item = category_item -> toCategory();
 	
 	if (!category_item || !category_item -> isCategory()) {
-		QET::MessageBox::warning(
+		QET::QetMessageBox::warning(
 			this,
 			tr("Catégorie inexistante", "message box title"),
 			tr("La catégorie demandée n'existe pas. Abandon.", "message box content")
@@ -72,7 +72,7 @@
 	
 	// gestion de la lecture seule
 	if (!category -> isWritable()) {
-		QET::MessageBox::warning(
+		QET::QetMessageBox::warning(
 			this,
 			tr("Édition en lecture seule", "message box title"),
 			tr("Vous n'avez pas les privilèges nécessaires pour modifier cette catégorie. Elle sera donc ouverte en lecture seule.", "message box content")
@@ -124,7 +124,7 @@
 	
 	// exige un nom de dossier de la part de l'utilisateur
 	if (!internal_name_ -> isValid()) {
-		QET::MessageBox::critical(
+		QET::QetMessageBox::critical(
 			this,
 			tr("Nom interne manquant", "message box title"),
 			tr("Vous devez spécifier un nom interne.", "message box content")
@@ -135,7 +135,7 @@
 	
 	// verifie que le nom interne n'est pas deja pris
 	if (category -> category(dirname)) {
-		QET::MessageBox::critical(
+		QET::QetMessageBox::critical(
 			this,
 			tr("Nom interne déjà utilisé", "message box title"),
 			tr(
@@ -150,7 +150,7 @@
 	// cree la nouvelle categorie
 	ElementsCategory *new_category = category -> createCategory(dirname);
 	if (!new_category) {
-		QET::MessageBox::critical(
+		QET::QetMessageBox::critical(
 			this,
 			tr("Erreur", "message box title"),
 			tr("Impossible de créer la catégorie", "message box content")
@@ -166,7 +166,7 @@
 	
 	// ecriture de la 
 	if (!new_category -> write()) {
-		QET::MessageBox::critical(
+		QET::QetMessageBox::critical(
 			this,
 			tr("Erreur", "message box title"),
 			tr("Impossible d'enregistrer la catégorie", "message box content")

Modified: branches/Qt5/sources/exportdialog.cpp
===================================================================
--- branches/Qt5/sources/exportdialog.cpp	2015-02-28 10:47:26 UTC (rev 3774)
+++ branches/Qt5/sources/exportdialog.cpp	2015-02-28 10:54:09 UTC (rev 3775)
@@ -764,7 +764,7 @@
 		}
 	}
 	if (filenames.count() != diagrams_to_export.count()) {
-		QET::MessageBox::warning(
+		QET::QetMessageBox::warning(
 			this,
 			tr("Noms des fichiers cibles", "message box title"),
 			tr(
@@ -780,7 +780,7 @@
 	
 	QDir target_dir_path(epw -> exportProperties().destination_directory);
 	if (!target_dir_path.exists()) {
-		QET::MessageBox::warning(
+		QET::QetMessageBox::warning(
 			this,
 			tr("Dossier non spécifié", "message box title"),
 			tr("Vous devez spécifier le chemin du dossier dans lequel seront enregistrés les fichiers images.", "message box content"),
@@ -822,7 +822,7 @@
 	
 	// verifie qu'il est possible d'ecrire dans le fichier en question
 	if (file_infos.exists() && !file_infos.isWritable()) {
-		QET::MessageBox::critical(
+		QET::QetMessageBox::critical(
 			this,
 			tr("Impossible d'écrire dans ce fichier", "message box title"),
 			QString(

Modified: branches/Qt5/sources/interactivemoveelementshandler.cpp
===================================================================
--- branches/Qt5/sources/interactivemoveelementshandler.cpp	2015-02-28 10:47:26 UTC (rev 3774)
+++ branches/Qt5/sources/interactivemoveelementshandler.cpp	2015-02-28 10:54:09 UTC (rev 3775)
@@ -357,7 +357,7 @@
 	@return L'action choisie par l'utilisateur
 */
 QET::Action InteractiveMoveElementsHandler::retryErrorMessage(const QString &message) const {
-	int todo = QET::MessageBox::critical(
+	int todo = QET::QetMessageBox::critical(
 		parent_widget_,
 		tr("Erreur", "message box title"),
 		message,
@@ -379,7 +379,7 @@
 	@param message Message d'erreur a afficher
 */
 void InteractiveMoveElementsHandler::simpleErrorMessage(const QString &message) const {
-	QET::MessageBox::critical(
+	QET::QetMessageBox::critical(
 		parent_widget_,
 		tr("Erreur", "message box title"),
 		message,

Modified: branches/Qt5/sources/nameslistwidget.cpp
===================================================================
--- branches/Qt5/sources/nameslistwidget.cpp	2015-02-28 10:47:26 UTC (rev 3774)
+++ branches/Qt5/sources/nameslistwidget.cpp	2015-02-28 10:54:09 UTC (rev 3775)
@@ -83,7 +83,7 @@
 bool NamesListWidget::checkOneName() {
 	updateHash();
 	if (!hash_names.count()) {
-		QET::MessageBox::critical(
+		QET::QetMessageBox::critical(
 			this,
 			tr("Il doit y avoir au moins un nom.", "message box title"),
 			tr("Vous devez entrer au moins un nom.", "message box content")

Modified: branches/Qt5/sources/newelementwizard.cpp
===================================================================
--- branches/Qt5/sources/newelementwizard.cpp	2015-02-28 10:47:26 UTC (rev 3774)
+++ branches/Qt5/sources/newelementwizard.cpp	2015-02-28 10:54:09 UTC (rev 3775)
@@ -179,7 +179,7 @@
 	}
 	
 	if (!step1_ok) {
-		QET::MessageBox::critical(
+		QET::QetMessageBox::critical(
 			parentWidget(),
 			tr("Erreur", "message box title"),
 			tr("Vous devez sélectionner une catégorie.", "message box content")
@@ -199,7 +199,7 @@
 	
 	// un nom doit avoir ete entre
 	if (file_name.isEmpty()) {
-		QET::MessageBox::critical(
+		QET::QetMessageBox::critical(
 			this,
 			tr("Erreur", "message box title"),
 			tr("Vous devez entrer un nom de fichier", "message box content")
@@ -211,7 +211,7 @@
 	
 	// le nom de fichier contient peut etre des caracteres interdits
 	if (QET::containsForbiddenCharacters(file_name)) {
-		QET::MessageBox::critical(
+		QET::QetMessageBox::critical(
 			this,
 			tr("Erreur", "message box title"),
 			tr("Merci de ne pas utiliser les caractères suivants : \\ / : * ? \" < > |", "message box content")
@@ -221,7 +221,7 @@
 	
 	// le fichier existe peut etre deja
 	if (chosen_category -> element(file_name)) {
-		QMessageBox::StandardButton answer = QET::MessageBox::question(
+		QMessageBox::StandardButton answer = QET::QetMessageBox::question(
 			this,
 			"Écraser le fichier ?",
 			"Le fichier existe déjà. Souhaitez-vous l'écraser ?",

Modified: branches/Qt5/sources/projectview.cpp
===================================================================
--- branches/Qt5/sources/projectview.cpp	2015-02-28 10:47:26 UTC (rev 3774)
+++ branches/Qt5/sources/projectview.cpp	2015-02-28 10:54:09 UTC (rev 3775)
@@ -366,7 +366,7 @@
 	
 
 	//Ask confirmation to user.
-	int answer = QET::MessageBox::question(
+	int answer = QET::QetMessageBox::question(
 		this,
 		tr("Supprimer le schéma ?", "message box title"),
 		tr("Êtes-vous s\373r de vouloir supprimer ce schéma du projet ? Ce changement est irréversible.", "message box content"),
@@ -668,7 +668,7 @@
 	
 	// s'assure que le schema n'est pas en lecture seule
 	if (project_ -> isReadOnly()) {
-		QET::MessageBox::critical(
+		QET::QetMessageBox::critical(
 			this,
 			tr("Projet en lecture seule", "message box title"),
 			tr("Ce projet est en lecture seule. Il n'est donc pas possible de le nettoyer.", "message box content")

Modified: branches/Qt5/sources/qetdiagrameditor.cpp
===================================================================
--- branches/Qt5/sources/qetdiagrameditor.cpp	2015-02-28 10:47:26 UTC (rev 3774)
+++ branches/Qt5/sources/qetdiagrameditor.cpp	2015-02-28 10:54:09 UTC (rev 3775)
@@ -789,7 +789,7 @@
 	// check the file exists
 	if (!filepath_info.exists()) {
 		if (interactive) {
-			QET::MessageBox::critical(
+			QET::QetMessageBox::critical(
 				this,
 				tr("Impossible d'ouvrir le fichier", "message box title"),
 				QString(
@@ -804,7 +804,7 @@
 	// verifie que le fichier est accessible en lecture
 	if (!filepath_info.isReadable()) {
 		if (interactive) {
-			QET::MessageBox::critical(
+			QET::QetMessageBox::critical(
 				this,
 				tr("Impossible d'ouvrir le fichier", "message box title"),
 				tr("Il semblerait que le fichier que vous essayez d'ouvrir ne "
@@ -818,7 +818,7 @@
 	// gere le fait que le fichier puisse etre en lecture seule
 	if (!filepath_info.isWritable()) {
 		if (interactive) {
-			QET::MessageBox::warning(
+			QET::QetMessageBox::warning(
 				this,
 				tr("Ouverture du projet en lecture seule", "message box title"),
 				tr("Il semblerait que le projet que vous essayez d'ouvrir ne "
@@ -832,7 +832,7 @@
 	QETProject *project = new QETProject(filepath);
 	if (project -> state() != QETProject::Ok) {
 		if (interactive && project -> state() != QETProject::FileOpenDiscard) {
-			QET::MessageBox::warning(
+			QET::QetMessageBox::warning(
 				this,
 				tr("Échec de l'ouverture du projet", "message box title"),
 				QString(
@@ -2027,7 +2027,7 @@
 */
 void QETDiagramEditor::showError(const QString &error) {
 	if (error.isEmpty()) return;
-	QET::MessageBox::critical(this, tr("Erreur", "message box title"), error);
+	QET::QetMessageBox::critical(this, tr("Erreur", "message box title"), error);
 }
 
 /**

Modified: branches/Qt5/sources/qetmessagebox.cpp
===================================================================
--- branches/Qt5/sources/qetmessagebox.cpp	2015-02-28 10:47:26 UTC (rev 3774)
+++ branches/Qt5/sources/qetmessagebox.cpp	2015-02-28 10:54:09 UTC (rev 3775)
@@ -20,7 +20,7 @@
 /**
 	@see Documentation Qt pour QMessageBox::critical
 */
-QMessageBox::StandardButton QET::MessageBox::critical   (QWidget *parent, const QString &title, const QString &text, QMessageBox::StandardButtons buttons, QMessageBox::StandardButton defaultButton) {
+QMessageBox::StandardButton QET::QetMessageBox::critical   (QWidget *parent, const QString &title, const QString &text, QMessageBox::StandardButtons buttons, QMessageBox::StandardButton defaultButton) {
 #ifdef Q_OS_MAC
 	QMessageBox message_box(QMessageBox::Critical, title, text, buttons, parent, Qt::Sheet);
 	message_box.setWindowModality(Qt::WindowModal);
@@ -35,7 +35,7 @@
 /**
 	@see Documentation Qt pour QMessageBox::information
 */
-QMessageBox::StandardButton QET::MessageBox::information(QWidget *parent, const QString &title, const QString &text, QMessageBox::StandardButtons buttons, QMessageBox::StandardButton defaultButton) {
+QMessageBox::StandardButton QET::QetMessageBox::information(QWidget *parent, const QString &title, const QString &text, QMessageBox::StandardButtons buttons, QMessageBox::StandardButton defaultButton) {
 #ifdef Q_OS_MAC
 	QMessageBox message_box(QMessageBox::Information, title, text, buttons, parent, Qt::Sheet);
 	message_box.setWindowModality(Qt::WindowModal);
@@ -50,7 +50,7 @@
 /**
 	@see Documentation Qt pour QMessageBox::question
 */
-QMessageBox::StandardButton QET::MessageBox::question   (QWidget *parent, const QString &title, const QString &text, QMessageBox::StandardButtons buttons, QMessageBox::StandardButton defaultButton) {
+QMessageBox::StandardButton QET::QetMessageBox::question   (QWidget *parent, const QString &title, const QString &text, QMessageBox::StandardButtons buttons, QMessageBox::StandardButton defaultButton) {
 #ifdef Q_OS_MAC
 	QMessageBox message_box(QMessageBox::Question, title, text, buttons, parent, Qt::Sheet);
 	message_box.setWindowModality(Qt::WindowModal);
@@ -65,7 +65,7 @@
 /**
 	@see Documentation Qt pour QMessageBox::warning
 */
-QMessageBox::StandardButton QET::MessageBox::warning    (QWidget *parent, const QString &title, const QString &text, QMessageBox::StandardButtons buttons, QMessageBox::StandardButton defaultButton) {
+QMessageBox::StandardButton QET::QetMessageBox::warning    (QWidget *parent, const QString &title, const QString &text, QMessageBox::StandardButtons buttons, QMessageBox::StandardButton defaultButton) {
 #ifdef Q_OS_MAC
 	QMessageBox message_box(QMessageBox::Warning, title, text, buttons, parent, Qt::Sheet);
 	message_box.setWindowModality(Qt::WindowModal);

Modified: branches/Qt5/sources/qetmessagebox.h
===================================================================
--- branches/Qt5/sources/qetmessagebox.h	2015-02-28 10:47:26 UTC (rev 3774)
+++ branches/Qt5/sources/qetmessagebox.h	2015-02-28 10:54:09 UTC (rev 3775)
@@ -26,7 +26,7 @@
 		provided, these methodes ensure the dialog box is "window modal" and has the
 		Qt:Sheet flag, thus enabling a better MacOS integration.
 	*/
-	namespace MessageBox {
+	namespace QetMessageBox {
 		QMessageBox::StandardButton critical   (QWidget *, const QString &, const QString &, QMessageBox::StandardButtons = QMessageBox::Ok, QMessageBox::StandardButton = QMessageBox::NoButton);
 		QMessageBox::StandardButton information(QWidget *, const QString &, const QString &, QMessageBox::StandardButtons = QMessageBox::Ok, QMessageBox::StandardButton = QMessageBox::NoButton);
 		QMessageBox::StandardButton question   (QWidget *, const QString &, const QString &, QMessageBox::StandardButtons = QMessageBox::Ok, QMessageBox::StandardButton = QMessageBox::NoButton);

Modified: branches/Qt5/sources/qetproject.cpp
===================================================================
--- branches/Qt5/sources/qetproject.cpp	2015-02-28 10:47:26 UTC (rev 3774)
+++ branches/Qt5/sources/qetproject.cpp	2015-02-28 10:54:09 UTC (rev 3775)
@@ -1072,7 +1072,7 @@
 			project_qet_version_ = root_elmt.attribute("version").toDouble(&conv_ok);
 			if (conv_ok && QET::version.toDouble() < project_qet_version_) {
 				
-				int ret = QET::MessageBox::warning(
+				int ret = QET::QetMessageBox::warning(
 					0,
 					tr("Avertissement", "message box title"),
 					tr(

Modified: branches/Qt5/sources/titleblock/integrationmovetemplateshandler.cpp
===================================================================
--- branches/Qt5/sources/titleblock/integrationmovetemplateshandler.cpp	2015-02-28 10:47:26 UTC (rev 3774)
+++ branches/Qt5/sources/titleblock/integrationmovetemplateshandler.cpp	2015-02-28 10:54:09 UTC (rev 3775)
@@ -81,7 +81,7 @@
 */
 QET::Action IntegrationMoveTitleBlockTemplatesHandler::errorWithATemplate(const TitleBlockTemplateLocation &tbt, const QString &message) {
 	QString error_message = QString("Une erreur s'est produite avec le modèle %1 : %2").arg(tbt.toString()).arg(message);
-	QET::MessageBox::critical(
+	QET::QetMessageBox::critical(
 		parent_widget_,
 		tr("Erreur", "message box title"),
 		error_message,

Modified: branches/Qt5/sources/titleblock/qettemplateeditor.cpp
===================================================================
--- branches/Qt5/sources/titleblock/qettemplateeditor.cpp	2015-02-28 10:47:26 UTC (rev 3774)
+++ branches/Qt5/sources/titleblock/qettemplateeditor.cpp	2015-02-28 10:54:09 UTC (rev 3775)
@@ -105,7 +105,7 @@
 bool QETTitleBlockTemplateEditor::canClose() {
 	if (undo_stack_ -> isClean()) return(true);
 	// ask the user whether he wants to save the current template
-	QMessageBox::StandardButton answer = QET::MessageBox::question(
+	QMessageBox::StandardButton answer = QET::QetMessageBox::question(
 		this,
 		tr("Enregistrer le modèle en cours ?", "dialog title"),
 		QString(

Modified: branches/Qt5/sources/titleblock/templatedeleter.cpp
===================================================================
--- branches/Qt5/sources/titleblock/templatedeleter.cpp	2015-02-28 10:47:26 UTC (rev 3774)
+++ branches/Qt5/sources/titleblock/templatedeleter.cpp	2015-02-28 10:54:09 UTC (rev 3775)
@@ -53,7 +53,7 @@
 	}
 	
 	// require confirmation from the user
-	QMessageBox::StandardButton answer = QET::MessageBox::question(
+	QMessageBox::StandardButton answer = QET::QetMessageBox::question(
 		this,
 		tr("Supprimer le modèle de cartouche ?", "message box title"),
 		QString(

Modified: branches/Qt5/sources/ui/dialogautonum.cpp
===================================================================
--- branches/Qt5/sources/ui/dialogautonum.cpp	2015-02-28 10:47:26 UTC (rev 3774)
+++ branches/Qt5/sources/ui/dialogautonum.cpp	2015-02-28 10:54:09 UTC (rev 3775)
@@ -61,7 +61,7 @@
 		if(i+1 < listDiag.count()) diagramsTitle += ", ";
 	}
 	// Ask if user is sure to delete the conductor numerotation
-	QMessageBox::StandardButton answer = QET::MessageBox::critical(
+	QMessageBox::StandardButton answer = QET::QetMessageBox::critical(
 		this,
 		tr("Suppression des annotations conducteurs", "Attention"),
 		QString(
@@ -94,7 +94,7 @@
 		if(i+1 < listDiag.count()) diagramsTitle += ", ";
 	}
 	// Ask if user is sure to numerate the conductor
-	QET::MessageBox::warning(
+	QET::QetMessageBox::warning(
 		this,
 		tr("Annotation des conducteurs", "Attention"),
 		QString(


Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/