summaryrefslogblamecommitdiffstats
path: root/src/sessiontreeitem.h
blob: a95fb4543608d6e0d96a1a0c94dcd58f6fe947bb (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                                         
                                             
















                                      
#ifndef SESSIONTREEITEM_H
#define SESSIONTREEITEM_H

#include <QList>
#include <QVariant>

// class ... instead of include?
#include "session.h"
#include <QString>

class SessionTreeItem {
  public:
    SessionTreeItem(const Session* session, SessionTreeItem *parent = 0);
    SessionTreeItem(const QString& text, SessionTreeItem *parent = 0);
    ~SessionTreeItem();

    void appendChild(SessionTreeItem *child);
    void removeChild(SessionTreeItem *child);

    SessionTreeItem *child(int row);
    int childCount() const;
    int columnCount() const;
    int row() const;
    SessionTreeItem *parent();
    const Session* session() const;
    const QString text() const;

  private:
    QList<SessionTreeItem*> children_;
    SessionTreeItem *parent_;
    const Session *session_;
    const QString text_;
};

#endif // SESSIONTREEITEM_H