FOX/ObjCryst++  1.10.X (development)
wxLSQ.h
1 /* ObjCryst++ Object-Oriented Crystallographic Library
2  (c) 2008 Vincent Favre-Nicolin vincefn@users.sourceforge.net
3 
4  This program is free software; you can redistribute it and/or modify
5  it under the terms of the GNU General Public License as published by
6  the Free Software Foundation; either version 2 of the License, or
7  (at your option) any later version.
8 
9  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  GNU General Public License for more details.
13 
14  You should have received a copy of the GNU General Public License
15  along with this program; if not, write to the Free Software
16  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18 /*
19 * header file for the wxLSQ class
20 *
21 */
22 
23 #ifndef _VFN_WX_LSQ_H_
24 #define _VFN_WX_LSQ_H_
25 
26 #include "ObjCryst/RefinableObj/LSQNumObj.h"
27 #include "ObjCryst/wxCryst/wxCryst.h"
28 
29 namespace ObjCryst
30 {
31 class WXLSQ: public WXCrystObj
32 {
33  public:
34  WXLSQ(wxWindow *parent, LSQNumObj*);
35  virtual ~WXLSQ();
36  virtual bool OnChangeName(const int id);
37  private:
38  LSQNumObj* mpLSQ;
39  DECLARE_EVENT_TABLE()
40 };
41 
42 } //namespace
43 
44 #endif //_VFN_WX_ATOM_H_
virtual bool OnChangeName(const int id)
When a WXFieldName has been changed by the user, it is handled here.
Definition: wxLSQ.cpp:50
Base class for all displayed ObjCryst objects (with a title, and a sizer to stack objects)...
Definition: wxCryst.h:248
The namespace which includes all objects (crystallographic and algorithmic) in ObjCryst++.
Definition: Atom.cpp:47
(Quick & dirty) Least-Squares Refinement Object with Numerical derivatives
Definition: LSQNumObj.h:37