| 1 |
/* --------------------------------------------------------------------- */ |
| 2 |
/* NeuroManager - A spike train analysis tool */ |
| 3 |
/* Copyright (c) 2005-2006 RIKEN, Japan. All rights reserved. */ |
| 4 |
/* http://satellite.sourceforge.jp/ */ |
| 5 |
/* --------------------------------------------------------------------- */ |
| 6 |
/* This program is free software; you can redistribute it and/or */ |
| 7 |
/* modify it under the terms of the GNU General Public License */ |
| 8 |
/* as published by the Free Software Foundation; either version 2 */ |
| 9 |
/* of the License, or (at your option) any later version. */ |
| 10 |
/* */ |
| 11 |
/* This program is distributed in the hope that it will be useful, */ |
| 12 |
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */ |
| 13 |
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */ |
| 14 |
/* GNU General Public License for more details. */ |
| 15 |
/* */ |
| 16 |
/* You should have received a copy of the GNU General Public License */ |
| 17 |
/* along with this program; see the file COPYING.txt. If not, write */ |
| 18 |
/* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth */ |
| 19 |
/* Floor, Boston, MA 02110-1301, USA. */ |
| 20 |
/* --------------------------------------------------------------------- */ |
| 21 |
|
| 22 |
/* $Id: SpikeViewBar.h,v 1.1 2006/02/02 07:33:27 orrisroot Exp $ */ |
| 23 |
|
| 24 |
// SpikeViewBar.h : interface of the CSpikeViewBar class |
| 25 |
// |
| 26 |
|
| 27 |
#pragma once |
| 28 |
|
| 29 |
// CSpikeViewBar window |
| 30 |
|
| 31 |
#ifndef baseCSpikeViewBar |
| 32 |
#define baseCSpikeViewBar CSizingControlBarG |
| 33 |
#endif |
| 34 |
|
| 35 |
class CSpikeViewBar : public baseCSpikeViewBar |
| 36 |
{ |
| 37 |
// Construction |
| 38 |
public: |
| 39 |
CSpikeViewBar(); |
| 40 |
|
| 41 |
// Attributes |
| 42 |
public: |
| 43 |
|
| 44 |
// Operations |
| 45 |
public: |
| 46 |
|
| 47 |
// Overrides |
| 48 |
|
| 49 |
// Implementation |
| 50 |
public: |
| 51 |
virtual ~CSpikeViewBar(); |
| 52 |
|
| 53 |
protected: |
| 54 |
CSpikeViewSplitter m_spWndChild; |
| 55 |
|
| 56 |
// Generated message map functions |
| 57 |
protected: |
| 58 |
afx_msg int OnCreate( LPCREATESTRUCT lpCreateStruct ); |
| 59 |
DECLARE_MESSAGE_MAP() |
| 60 |
// Inner Class |
| 61 |
public: |
| 62 |
BOOL CreateInnerViews( CCreateContext *pContext ); |
| 63 |
}; |