view filestates.h @ 139:e8a481789607

* Avoid unnecessary duplicate layout; fix off-by-one in resetting changeset children
author Chris Cannam
date Tue, 30 Nov 2010 14:27:34 +0000
parents 44ed7766d55a
children 087d7cdde662
line wrap: on
line source
/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*-  vi:set ts=8 sts=4 sw=4: */

/*
    EasyMercurial

    Based on HgExplorer by Jari Korhonen
    Copyright (c) 2010 Jari Korhonen
    Copyright (c) 2010 Chris Cannam
    Copyright (c) 2010 Queen Mary, University of London

    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
    published by the Free Software Foundation; either version 2 of the
    License, or (at your option) any later version.  See the file
    COPYING included with this distribution for more information.
*/

#ifndef FILESTATES_H
#define FILESTATES_H

#include <QStringList>
#include <QMap>
#include <QString>

class FileStates
{
public:
    FileStates();

    enum State {

        Clean,
        Modified,
        Added,
        Unknown,
        Removed,
        Missing,

        FirstState = Clean,
        LastState = Missing
    };

    void parseStates(QString text);

    void clearBuckets();

    QStringList getFilesInState(State) const;

    QStringList modified() const { return m_modified; }
    QStringList added() const { return m_added; }
    QStringList unknown() const { return m_unknown; }
    QStringList removed() const { return m_removed; }
    QStringList missing() const { return m_missing; }

    State getStateOfFile(QString file) const;

private:
    QStringList m_modified;
    QStringList m_added;
    QStringList m_unknown;
    QStringList m_removed;
    QStringList m_missing;
    QMap<QString, State> m_stateMap;

    State charToState(QChar, bool * = 0);
    QStringList *stateToBucket(State);
};

#endif // FILESTATES_H