X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fwidgets%2Fpatternbox.cpp;h=fe4e2498764874d8f1a2c7e22bda67695fbd0cfb;hb=2ee84c5948ede7fc2f7b4435c5edef42a030ac05;hp=fb92c4c4923360d04816f22e8ea52f1c05e534b1;hpb=3239ef39dcee08fa6e8cd68cdf2727fc68cc7a8c;p=architektonas diff --git a/src/widgets/patternbox.cpp b/src/widgets/patternbox.cpp index fb92c4c..fe4e249 100644 --- a/src/widgets/patternbox.cpp +++ b/src/widgets/patternbox.cpp @@ -36,17 +36,24 @@ PatternBox::~PatternBox() } /** - * Initialisation (called manually and only once). + * Initialization (called manually and only once). */ void PatternBox::init() { QStringList patterns; - for(RS_Pattern * f=RS_PATTERNLIST->firstPattern(); f!=NULL; f=RS_PATTERNLIST->nextPattern()) + for(Pattern * f=PATTERNLIST->firstPattern(); f!=NULL; f=PATTERNLIST->nextPattern()) patterns.append(f->getFileName()); +#if 0 +std::cout << "patterns size = " << patterns.size() << std::endl; + +for(int i=0; iprint("PatternBox::setPattern %s\n", pName.toLatin1().data()); -// setCurrentText(pName); + DEBUG->print("PatternBox::setPattern %s\n", pName.toAscii().data()); setItemText(currentIndex(), pName); slotPatternChanged(currentIndex()); } @@ -77,11 +83,11 @@ void PatternBox::setPattern(const QString & pName) */ void PatternBox::slotPatternChanged(int index) { - RS_DEBUG->print("PatternBox::slotPatternChanged %d\n", index); - currentPattern = RS_PATTERNLIST->requestPattern(currentText()); + DEBUG->print("PatternBox::slotPatternChanged %d\n", index); + currentPattern = PATTERNLIST->requestPattern(currentText()); - if (currentPattern!=NULL) - RS_DEBUG->print("Current pattern is (%d): %s\n", index, currentPattern->getFileName().toLatin1().data()); + if (currentPattern) + DEBUG->print("Current pattern is (%d): %s\n", index, currentPattern->getFileName().toAscii().data()); emit patternChanged(currentPattern); }