Différences
Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentesRévision précédente | |||
doc:lecture_fichier_qet [06/09/2014 13:47] – scorpio810 | doc:lecture_fichier_qet [20/11/2014 14:01] (Version actuelle) – modification externe 127.0.0.1 | ||
---|---|---|---|
Ligne 1: | Ligne 1: | ||
+ | ~~NOCACHE~~ | ||
+ | |||
+ | ====== Lecture d'un fichier Qet ====== | ||
+ | Vous pouvez également consulter [[doc: | ||
+ | |||
+ | ===== Récupérer les informations du projet ===== | ||
+ | Class impliquées: | ||
+ | |||
+ | * Récupérer le titre d'un projet | ||
+ | <code cpp> | ||
+ | QETProject *m_project = projet_qet; | ||
+ | QString data = tr(" | ||
+ | </ | ||
+ | ===== Lister le ou les schémas ===== | ||
+ | Class impliquées: | ||
+ | |||
+ | <code cpp> | ||
+ | // declaration | ||
+ | QETProject *m_project; | ||
+ | QList< | ||
+ | |||
+ | // Get list of schema | ||
+ | m_project = projet_qet; | ||
+ | if(!m_project-> | ||
+ | //get list of schema present in project | ||
+ | m_list_diagram = m_project -> diagrams(); | ||
+ | } | ||
+ | |||
+ | //Sample load list of schema in QString | ||
+ | QString data | ||
+ | for(int i=0; i< | ||
+ | data += m_list_diagram.at(i)-> | ||
+ | } | ||
+ | </ | ||