49 lines
480 B
C
49 lines
480 B
C
![]() |
#pragma once
|
|||
|
|
|||
|
|
|||
|
#ifndef CONTROLLERVIEWER_H
|
|||
|
#define CONTROLLERVIEWER_H
|
|||
|
|
|||
|
//TODO sort the header you don<6F>t need
|
|||
|
#include <QtGui>
|
|||
|
|
|||
|
|
|||
|
|
|||
|
class ControllerViewer : public QTreeView
|
|||
|
{
|
|||
|
Q_OBJECT
|
|||
|
public:
|
|||
|
ControllerViewer ( QWidget *parent = 0 );
|
|||
|
~ControllerViewer();
|
|||
|
void SetupTree( void );
|
|||
|
|
|||
|
QStandardItemModel *m_Model;
|
|||
|
|
|||
|
protected:
|
|||
|
private:
|
|||
|
|
|||
|
public:
|
|||
|
|
|||
|
|
|||
|
|
|||
|
protected:
|
|||
|
|
|||
|
private:
|
|||
|
|
|||
|
private slots:
|
|||
|
|
|||
|
signals:
|
|||
|
|
|||
|
|
|||
|
};
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
#endif
|