// **************************************************************************** // Method: XMLEditConstants::constantlistNew // // Programmer: Jeremy Meredith // Creation: October 17, 2002 // // Modifications: // Brad Whitlock, Thu Mar 6 16:17:13 PST 2008 // Added xml2atts target. // // Cyrus Harrison, Thu May 15 16:00:46 PDT 200 // First pass at porting to Qt 4.4.0 // // **************************************************************************** void XMLEditConstants::constantlistNew() { Attribute *a = xmldoc->attribute; int newid = 1; bool okay = false; QString newname; while (!okay) { okay = true; newname = tr("unnamed%1").arg(newid); for (int i=0; i<constantlist->count() && okay; i++) { if (constantlist->item(i)->text() == newname) okay = false; } if (!okay) newid++; } Constant *c = new Constant(newname,"","",false, "xml2atts"); a->constants.push_back(c); UpdateWindowContents(); for (int i=0; i<constantlist->count(); i++) { if (constantlist->item(i)->text() == newname) { constantlist->setCurrentRow(i); UpdateWindowSingleItem(); } } }
// **************************************************************************** // Method: XMLEditFunctions::functionlistNew // // Programmer: Jeremy Meredith // Creation: October 17, 2002 // // Modifications: // Brad Whitlock, Thu Mar 6 15:57:07 PST 2008 // Added default target of xml2atts. // // Brad Whitlock, Mon Apr 28 16:11:51 PDT 2008 // Added tr(). // // Cyrus Harrison, Thu May 15 16:00:46 PDT 2008 // First pass at porting to Qt 4.4.0 // // **************************************************************************** void XMLEditFunctions::functionlistNew() { Attribute *a = xmldoc->attribute; int newid = 1; bool okay = false; QString newname; while (!okay) { okay = true; newname = tr("unnamed%1").arg(newid); for (int i=0; i<functionlist->count() && okay; i++) { if (functionlist->item(i)->text() == newname) okay = false; } if (!okay) newid++; } Function *f = new Function(newname,"","",true,true,"xml2atts"); a->functions.push_back(f); UpdateWindowContents(); for (int i=0; i<functionlist->count(); i++) { if (functionlist->item(i)->text() == newname) { functionlist->setCurrentRow(i); UpdateWindowSingleItem(); } } }
// **************************************************************************** // Method: XMLEditConstants::UpdateWindowContents // // Purpose: // Update the window based on the current state. // // Programmer: Jeremy Meredith // Creation: October 17, 2002 // // Modifications: // Brad Whitlock, Thu Mar 6 16:12:45 PST 2008 // Added targets. // // Cyrus Harrison, Thu May 15 16:00:46 PDT 200 // First pass at porting to Qt 4.4.0 // // **************************************************************************** void XMLEditConstants::UpdateWindowContents() { BlockAllSignals(true); Attribute *a = xmldoc->attribute; constantlist->clear(); for (size_t i=0; i<a->constants.size(); i++) { if(CountConstants(a->constants[i]->name) > 1) { QString id = QString("%1 [%2]").arg(a->constants[i]->name).arg(a->constants[i]->target); constantlist->addItem(id); } else constantlist->addItem(a->constants[i]->name); } BlockAllSignals(false); UpdateWindowSingleItem(); }