Ejemplo n.º 1
0
//connects firstSectionFound signal & slot together; sets flag to true
void Document::bodyStart()
{
    kDebug(30513);
    connect(m_textHandler, SIGNAL(sectionFound(wvWare::SharedPtr<const wvWare::Word97::SEP>)),
            this, SLOT(slotSectionFound(wvWare::SharedPtr<const wvWare::Word97::SEP>)));
    connect(m_textHandler, SIGNAL(sectionEnd(wvWare::SharedPtr<const wvWare::Word97::SEP>)),
            this, SLOT(slotSectionEnd(wvWare::SharedPtr<const wvWare::Word97::SEP>)));
    m_bodyFound = true;
}
Ejemplo n.º 2
0
//disconnects firstSectionFound signal & slot
void Document::bodyEnd()
{
    //close a list if we need to
    if (m_textHandler->listIsOpen()) {
        kDebug(30513) << "closing the final list in the document body";
        m_textHandler->closeList();
    }

    disconnect(m_textHandler, SIGNAL(sectionFound(wvWare::SharedPtr<const wvWare::Word97::SEP>)),
               this, SLOT(slotSectionFound(wvWare::SharedPtr<const wvWare::Word97::SEP>)));
}
Ejemplo n.º 3
0
void bibtexReader::searchSection(QString file, QString bibId) {
    QFile f(file);
    if (!f.open(QFile::ReadOnly)) return; //ups...
    QTextStream stream(&f);
    QString bibFileEncoding = ConfigManagerInterface::getInstance()->getOption("Bibliography/BibFileEncoding").toString();
    QTextCodec *codec = QTextCodec::codecForName(bibFileEncoding.toLatin1());
    if (!codec) return;
    stream.setCodec(codec);
    QString line;
    QString result;
    int found=-1;
    do {
        line = stream.readLine();
        if(line.startsWith('%'))
            continue;
        if(found==-1 && line.contains(bibId)) {
            int p=line.indexOf('{');
            if(p<0)
                continue;
            QString id=line.mid(p+1).trimmed();
            if(id.endsWith(','))
                id.remove(id.length()-1,1);
            if(id!=bibId)
                continue;
            found=10;
            result=line;
            continue;
        }
        if(found==0 || (found>0 && (line.startsWith('@')||line.isEmpty())))
            break;
        if(found>=0) {
            result+="\n"+line;
            found--;
        }
    } while (!line.isNull());
    if(!result.isEmpty())
        emit sectionFound(result);
}