TarzaNN
TarzaNN neural network simulator
|
00001 /**************************************************************************** 00002 ** 00003 ** Copyright C 2002-2012 Laboratory for Active and Attentive Vision (LAAV), Department of Computer Science and Engineering, York University, Toronto, ON, Canada. 00004 ** All rights reserved. 00005 ** 00006 ** This file is part of the TarzaNN Neural Network Simulator. 00007 ** 00008 ** This file may be distributed and/or modified under the terms of the 00009 ** GNU General Public License version 2 as published by the Free Software 00010 ** Foundation and appearing in the file LICENSE.GPL included in the 00011 ** packaging of this file. 00012 ** 00013 ** See http://www.tarzann.org/gpl/ for GPL licensing information. 00014 ** 00015 ** Contact info@tarzann.org if any conditions of this licensing are 00016 ** not clear to you. 00017 ** 00018 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 00019 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 00020 ** 00021 ****************************************************************************/ 00022 00023 #ifndef PLANE_H 00024 #define PLANE_H 00025 00026 #include <q3canvas.h> 00027 #include <QPainter> 00028 #include "FeaturePlaneAbstract.h" 00029 00030 #define PLANE_WIDTH 80 00031 #define PLANE_HEIGHT 40 00032 00041 class UI_DesignerPlane : public Q3CanvasRectangle 00042 { 00043 00044 public: 00053 UI_DesignerPlane(Q3Canvas * canvas,FeaturePlaneAbstract *fp); 00057 ~UI_DesignerPlane(); 00061 Q3CanvasItemList * InConnectionsList; 00065 Q3CanvasItemList * OutConnectionsList; 00069 QString getName(); 00073 QString getType(); 00081 void setPlaneColors(bool selected); 00086 FeaturePlaneAbstract * featurePlane; 00087 protected: 00094 void drawShape ( QPainter & painter ); 00095 private: 00099 QMap<QString,QString> colorScheme; 00100 }; 00101 00102 00103 00104 00105 #endif