HomoBFieldItem wird richtig als B-Feld gezeichnet

git-svn-id: http://svn.lsim.tuxzone.org/trunk@6 4bec179b-ab65-46ed-a5f8-55b8b5c735d0
This commit is contained in:
catdog2
2008-10-14 21:22:24 +00:00
parent ffdd1677f1
commit 4b01655459
3 changed files with 72 additions and 5 deletions

View File

@@ -46,17 +46,23 @@ class HomoBFieldItem : public FieldItem {
QWidget* getDockWidget() const;
double getOuterPenWidth() const;
bool getIsDirectionIntoPlane() const;
public slots:
void setOuterPenWidth ( double theValue );
void setFieldLineDistance ( int theValue );
void setIsDirectionIntoPlane ( bool theValue );
signals:
void directionChanged(bool theValue);
private:
//! Abstand der Feldlinien in der Zeichnung
int fieldLineDistance;
double outerPenWidth;
//! Gibt an, ob das Feld in die Ebene Zeigt oder heraus (true == in die Ebene)
bool isDirectionIntoPlane;
};
#endif