]> ruin.nu Git - eonsl.git/blob - eonsl/eonslview.cpp
These files is for making the project
[eonsl.git] / eonsl / eonslview.cpp
1 /***************************************************************************
2                           eonslview.cpp  -  description
3                              -------------------
4     begin     : mån okt 23 17:11:28 CEST 2000
5     copyright : (C) 2000 by Michael Andreen
6     email     : whale@linux.nu
7     changes   :
8  ***************************************************************************/
9
10 /***************************************************************************
11  *                                                                         *
12  *   This program is free software; you can redistribute it and/or modify  *
13  *   it under the terms of the GNU General Public License as published by  *
14  *   the Free Software Foundation; either version 2 of the License, or     *
15  *   (at your option) any later version.                                   *
16  *                                                                         *
17  ***************************************************************************/
18
19 #include "eonslview.h"
20
21 EonSLView::EonSLView(QWidget *parent, EonSLDoc *doc) : QWidget(parent)
22 {
23   /** connect doc with the view*/
24   connect(doc, SIGNAL(documentChanged()), this, SLOT(slotDocumentChanged()));
25 }
26
27 EonSLView::~EonSLView()
28 {
29 }
30
31 void EonSLView::slotDocumentChanged()
32 {
33   //TODO update the view
34
35 }