~openhommdev/openhomm/main

« back to all changes in this revision

Viewing changes to tools/defviewer/mainwindow.h

  • Committer: Roman Fomin
  • Date: 2010-02-06 13:59:46 UTC
  • Revision ID: rfomin@gmail.com-20100206135946-zvq36etl3d7lg7zb
defviewer merged

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
// You should have received a copy of the GNU General Public License
15
15
// along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
16
//
17
 
#ifndef MAINWINDOW_H
18
 
#define MAINWINDOW_H
19
 
 
 
17
#pragma once
20
18
#include <QtGui>
 
19
#include "hrTreeView.hpp"
 
20
 
21
21
 
22
22
QT_BEGIN_NAMESPACE
23
23
namespace Ui
40
40
private:
41
41
    Ui::MainWindowClass *ui;
42
42
 
 
43
    hrTreeView tree;
43
44
    QDirModel model;
44
45
    QGraphicsScene scene;
45
46
    QPainter painter;
59
60
    void on_checkBox_toggled(bool checked);
60
61
    void on_treeWidgetFrames_clicked(QModelIndex index);
61
62
    void on_treeWidgetFrames_activated(QModelIndex index);
62
 
    void on_treeView_clicked(QModelIndex index);
63
 
    void on_treeView_activated(QModelIndex index);
 
63
 
 
64
    void onTreeActivated(QModelIndex index);
64
65
};
65
66
 
66
 
#endif // MAINWINDOW_H