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

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

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

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

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

    return d->isVisibleInEditor;
}
예제 #6
0
const Utf8String &TranslationUnit::projectPartId() const
{
    checkIfNull();

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

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

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

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

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

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

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

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

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

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

    d->isSuspended = isSuspended;
}
예제 #17
0
const Utf8String &TranslationUnit::filePath() const
{
    checkIfNull();

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

    return d->isUsedByCurrentEditor;
}
예제 #19
0
const ProjectPart &TranslationUnit::projectPart() const
{
    checkIfNull();

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

    return d->filePath;
}