X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fforms%2Fdlghatch.h;h=12a1bbb0adb2de85540b204cc27deb304962299d;hb=f62cebc26c7c3af447f0e4e4c43331f8589dce22;hp=a654d3097ea1f0e07032c17b7aed083471849c7c;hpb=05a1d5fa057f4f45bc1f9903f1bdc0be2f10e3bf;p=architektonas diff --git a/src/forms/dlghatch.h b/src/forms/dlghatch.h index a654d30..12a1bbb 100644 --- a/src/forms/dlghatch.h +++ b/src/forms/dlghatch.h @@ -3,9 +3,9 @@ #include "ui_dlghatch.h" -class RS_EntityContainer; -class RS_Pattern; -class RS_Hatch; +class EntityContainer; +class Pattern; +class Hatch; class DlgHatch: public QDialog { @@ -18,18 +18,18 @@ class DlgHatch: public QDialog public slots: void polish(); void showEvent(QShowEvent * e); - void setHatch(RS_Hatch & h, bool isNew); + void setHatch(Hatch & h, bool isNew); void updateHatch(); void setPattern(const QString & p); void resizeEvent(QResizeEvent *); void updatePreview(); - void updatePreview(RS_Pattern *); + void updatePreview(Pattern *); private: - RS_EntityContainer * preview; + EntityContainer * preview; bool isNew; - RS_Pattern * pattern; - RS_Hatch * hatch; + Pattern * pattern; + Hatch * hatch; private: Ui::DlgHatch ui;