Beispiel #1
0
TimePoint Document::isDirtyTimeChangePoint() const
{
    checkIfNull();

    return d->isDirtyChangeTimePoint;
}
Beispiel #2
0
TimePoint Document::visibleTimePoint() const
{
    checkIfNull();

    return d->visibleTimePoint;;
}
Beispiel #3
0
bool Document::isDirty() const
{
    checkIfNull();

    return d->isDirty;
}
Beispiel #4
0
void Document::setIsUsedByCurrentEditor(bool isUsedByCurrentEditor)
{
    checkIfNull();

    d->isUsedByCurrentEditor = isUsedByCurrentEditor;
}
Beispiel #5
0
bool Document::isVisibleInEditor() const
{
    checkIfNull();

    return d->isVisibleInEditor;
}
const Utf8String &TranslationUnit::projectPartId() const
{
    checkIfNull();

    return d->projectPart.projectPartId();
}
Beispiel #7
0
Utf8StringVector Document::fileArguments() const
{
    checkIfNull();

    return d->fileArguments;
}
Beispiel #8
0
bool Document::isResponsivenessIncreaseNeeded() const
{
    checkIfNull();

    return d->increaseResponsiveness;
}
Beispiel #9
0
bool Document::isSuspended() const
{
    checkIfNull();

    return d->isSuspended;
}
Beispiel #10
0
uint Document::documentRevision() const
{
    checkIfNull();

    return d->documentRevision;
}
Beispiel #11
0
void Document::setDocumentRevision(uint revision)
{
    checkIfNull();

    d->documentRevision = revision;
}
Beispiel #12
0
bool Document::isProjectPartOutdated() const
{
    checkIfNull();

    return d->projectPart.lastChangeTimePoint() >= d->lastProjectPartChangeTimePoint;
}
Beispiel #13
0
const TimePoint Document::lastProjectPartChangeTimePoint() const
{
    checkIfNull();

    return d->lastProjectPartChangeTimePoint;
}
Beispiel #14
0
const ProjectPart &Document::projectPart() const
{
    checkIfNull();

    return d->projectPart;
}
Beispiel #15
0
TranslationUnit Document::translationUnit(PreferredTranslationUnit preferredTranslationUnit) const
{
    checkIfNull();

    return d->translationUnits.get(preferredTranslationUnit);
}
Beispiel #16
0
void Document::setIsSuspended(bool isSuspended)
{
    checkIfNull();

    d->isSuspended = isSuspended;
}
const Utf8String &TranslationUnit::filePath() const
{
    checkIfNull();

    return d->filePath;
}
Beispiel #18
0
bool Document::isUsedByCurrentEditor() const
{
    checkIfNull();

    return d->isUsedByCurrentEditor;
}
const ProjectPart &TranslationUnit::projectPart() const
{
    checkIfNull();

    return d->projectPart;
}
Beispiel #20
0
Utf8String Document::filePath() const
{
    checkIfNull();

    return d->filePath;
}