Add the HTML Editor !

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@2081 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
cfdev
2013-04-01 13:49:34 +00:00
parent 1a2d82186b
commit b10c83f8fe
46 changed files with 2472 additions and 6 deletions

View File

@@ -211,7 +211,7 @@ void QETDiagramEditor::actions() {
conductor_reset = new QAction(QET::Icons::ConductorSettings, tr("R\351initialiser les conducteurs"), this);
infos_diagram = new QAction(QET::Icons::DialogInformation, tr("Propri\351t\351s du sch\351ma"), this);
add_text = new QAction(QET::Icons::PartTextField, tr("Ajouter un champ de texte"), this);
add_edittext = new QAction(QET::Icons::EditText, tr("\311diter un champ de texte"), this);
add_edittext = new QAction(QET::Icons::EditText, tr("\311diter le champ de texte"), this);
add_column = new QAction(QET::Icons::EditTableInsertColumnRight, tr("Ajouter une colonne"), this);
remove_column = new QAction(QET::Icons::EditTableDeleteColumn, tr("Enlever une colonne"), this);
add_row = new QAction(QET::Icons::EditTableInsertRowUnder, tr("Ajouter une ligne"), this);
@@ -1471,6 +1471,15 @@ void QETDiagramEditor::slot_addText() {
}
}
/**
to Edit en text through the html editor
*/
void QETDiagramEditor::slot_editText() {
if (DiagramView *dv = currentDiagram()) {
dv -> editText();
}
}
/**
Affiche les projets dans des fenetres.
*/