mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-17 20:50:34 +01:00
Mod doc set style de same
This commit is contained in:
@@ -25,6 +25,7 @@
|
|||||||
class QPainter;
|
class QPainter;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@brief The SingleLineProperties class
|
||||||
This class represents the properties of a singleline conductor.
|
This class represents the properties of a singleline conductor.
|
||||||
*/
|
*/
|
||||||
class SingleLineProperties {
|
class SingleLineProperties {
|
||||||
@@ -59,6 +60,7 @@ class SingleLineProperties {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@brief The ConductorProperties class
|
||||||
This class represents the functional properties of a particular conductor,
|
This class represents the functional properties of a particular conductor,
|
||||||
i.e. properties other than path and terminals.
|
i.e. properties other than path and terminals.
|
||||||
*/
|
*/
|
||||||
@@ -69,14 +71,15 @@ class ConductorProperties
|
|||||||
virtual ~ConductorProperties();
|
virtual ~ConductorProperties();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief The ConductorType enum Represents the kind of a particular conductor:
|
@brief The ConductorType enum Represents
|
||||||
* Single: singleline symbols, no text input
|
the kind of a particular conductor:
|
||||||
* Multi: text input, no symbol
|
Single: singleline symbols, no text input
|
||||||
*/
|
Multi: text input, no symbol
|
||||||
|
*/
|
||||||
enum ConductorType { Single, Multi };
|
enum ConductorType { Single, Multi };
|
||||||
|
|
||||||
|
|
||||||
//Attributes
|
//Attributes
|
||||||
ConductorType type;
|
ConductorType type;
|
||||||
|
|
||||||
QColor color,
|
QColor color,
|
||||||
@@ -108,7 +111,7 @@ class ConductorProperties
|
|||||||
|
|
||||||
SingleLineProperties singleLineProperties;
|
SingleLineProperties singleLineProperties;
|
||||||
|
|
||||||
// methods
|
// methods
|
||||||
void toXml(QDomElement &) const;
|
void toXml(QDomElement &) const;
|
||||||
void fromXml(QDomElement &);
|
void fromXml(QDomElement &);
|
||||||
void toSettings(QSettings &, const QString & = QString()) const;
|
void toSettings(QSettings &, const QString & = QString()) const;
|
||||||
@@ -118,7 +121,7 @@ class ConductorProperties
|
|||||||
|
|
||||||
static ConductorProperties defaultProperties();
|
static ConductorProperties defaultProperties();
|
||||||
|
|
||||||
// operators
|
// operators
|
||||||
bool operator==(const ConductorProperties &) const;
|
bool operator==(const ConductorProperties &) const;
|
||||||
bool operator!=(const ConductorProperties &) const;
|
bool operator!=(const ConductorProperties &) const;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user