Reformat ALL the source!
[quassel.git] / src / uisupport / abstractitemview.h
index bffc35b..fe2c8d0 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-08 by the Quassel Project                          *
+ *   Copyright (C) 2005-09 by the Quassel Project                          *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
 #include <QAbstractItemDelegate>
 #include <QPointer>
 
-class AbstractItemView : public QWidget {
-  Q_OBJECT
+class AbstractItemView : public QWidget
+{
+    Q_OBJECT
 
 public:
-  AbstractItemView(QWidget *parent = 0);
+    AbstractItemView(QWidget *parent = 0);
 
-  inline QAbstractItemModel *model() { return _model; }
-  void setModel(QAbstractItemModel *model);
+    inline QAbstractItemModel *model() { return _model; }
+    void setModel(QAbstractItemModel *model);
 
-  inline QItemSelectionModel *selectionModel() const { return _selectionModel; }
-  void setSelectionModel(QItemSelectionModel *selectionModel);
+    inline QItemSelectionModel *selectionModel() const { return _selectionModel; }
+    void setSelectionModel(QItemSelectionModel *selectionModel);
+
+    inline QModelIndex currentIndex() const { return _selectionModel->currentIndex(); }
 
 protected slots:
-  virtual void closeEditor(QWidget *, QAbstractItemDelegate::EndEditHint) {};
-  virtual void commitData(QWidget *) {};
-  virtual void currentChanged(const QModelIndex &, const QModelIndex &) {};
-  virtual void dataChanged(const QModelIndex &, const QModelIndex &) {};
-  virtual void editorDestroyed(QObject *) {};
-  virtual void rowsAboutToBeRemoved(const QModelIndex &, int, int) {};
-  virtual void rowsInserted(const QModelIndex &, int, int) {};
-  virtual void selectionChanged(const QItemSelection &, const QItemSelection &) {};
+    virtual void closeEditor(QWidget *, QAbstractItemDelegate::EndEditHint) {};
+    virtual void commitData(QWidget *) {};
+    virtual void currentChanged(const QModelIndex &, const QModelIndex &) {};
+    virtual void dataChanged(const QModelIndex &, const QModelIndex &) {};
+    virtual void editorDestroyed(QObject *) {};
+    virtual void rowsAboutToBeRemoved(const QModelIndex &, int, int) {};
+    virtual void rowsInserted(const QModelIndex &, int, int) {};
+    virtual void selectionChanged(const QItemSelection &, const QItemSelection &) {};
 
 protected:
-  QPointer<QAbstractItemModel> _model;
-  QPointer<QItemSelectionModel> _selectionModel;
+    QPointer<QAbstractItemModel> _model;
+    QPointer<QItemSelectionModel> _selectionModel;
 };
 
+
 #endif // ABSTRACTITEMVIEW_H