82 |
82 |
83 // ============================================================================= |
83 // ============================================================================= |
84 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * |
84 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * |
85 // ============================================================================= |
85 // ============================================================================= |
86 void NewPartDialog::StaticDialog () { |
86 void NewPartDialog::StaticDialog () { |
87 NewPartDialog dlg (g_ForgeWindow); |
87 NewPartDialog dlg (g_win); |
88 if (dlg.exec ()) { |
88 if (dlg.exec ()) { |
89 newFile (); |
89 newFile (); |
90 |
90 |
91 short idx; |
91 short idx; |
92 str zAuthor = dlg.le_author->text (); |
92 str zAuthor = dlg.le_author->text (); |
93 vector<LDObject*>& objs = g_CurrentFile->objects; |
93 vector<LDObject*>& objs = g_curfile->m_objs; |
94 |
94 |
95 idx = dlg.rb_BFC->value (); |
95 idx = dlg.rb_BFC->value (); |
96 const LDBFC::Type eBFCType = |
96 const LDBFC::Type eBFCType = |
97 (idx == BFCBOX_CCW) ? LDBFC::CertifyCCW : |
97 (idx == BFCBOX_CCW) ? LDBFC::CertifyCCW : |
98 (idx == BFCBOX_CW) ? LDBFC::CertifyCW : |
98 (idx == BFCBOX_CW) ? LDBFC::CertifyCW : |