ALBA
albaGUIViewWin.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: ALBA (Agile Library for Biomedical Applications)
4 Module: albaGUIViewWin
5 Authors: Paolo Quadrani
6
7 Copyright (c) BIC
8 All rights reserved. See Copyright.txt or
9
10
11 This software is distributed WITHOUT ANY WARRANTY; without even
12 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
13 PURPOSE. See the above copyright notice for more information.
14
15=========================================================================*/
16
17#ifndef __albaGUIViewWin_H__
18#define __albaGUIViewWin_H__
19
20//----------------------------------------------------------------------------
21// forward references
22//----------------------------------------------------------------------------
23class albaView;
24
29class albaGUIViewWin : public wxPanel
30{
31public:
34 wxWindow *parent,
35 wxWindowID id,
36 const wxPoint& pos = wxDefaultPosition,
37 const wxSize& size = wxDefaultSize,
38 long style = 0
39 );
40
42 void OnSize(wxSizeEvent &event);
45DECLARE_EVENT_TABLE()
46};
47#endif
class name: albaGUIViewWin This class is used only to trap the OnSize event.
albaView * m_Owner
void OnSize(wxSizeEvent &event)
called when resizing the object
albaGUIViewWin(wxWindow *parent, wxWindowID id, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=0)
constructor
albaView is the base class for Views in alba.
Definition: albaView.h:79