Conductor : remove "simple" conductor, and add option "visible" for text of multiwire conductor

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3338 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
blacksun
2014-09-28 09:47:06 +00:00
parent 373c833eb7
commit 8eaa2949c6
5 changed files with 62 additions and 46 deletions

View File

@@ -70,7 +70,7 @@ class ConductorProperties {
* Single: singleline symbols, no text input
* Multi: text input, no symbol
*/
enum ConductorType { Simple, Single, Multi };
enum ConductorType { Single, Multi };
// attributes
/// Conductor type
@@ -84,6 +84,7 @@ class ConductorProperties {
/// rotation angle texte
double verti_rotate_text;
double horiz_rotate_text;
bool m_show_text;
/// conducteur style (Qt::SolidLine or Qt::DashLine)
Qt::PenStyle style;