1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
#ifndef _DataEditor_h_
#define _DataEditor_h
/* DataEditor.h
*
* Copyright (C) 1995-2011 Paul Boersma
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "Editor.h"
Thing_declare (DataSubEditor);
Thing_declare (VectorEditor);
Thing_declare (MatrixEditor);
Thing_declare (StructEditor);
Thing_declare (ClassEditor);
Thing_declare (DataEditor);
typedef struct structDataSubEditor_FieldData {
GuiObject label, button, text;
void *address;
Data_Description description;
long minimum, maximum, min2, max2;
wchar *history; // the full prefix of the members
int rank; // should the button open a StructEditor (0) or VectorEditor (1) or MatrixEditor (2) ?
} *DataSubEditor_FieldData;
#define kDataSubEditor_MAXNUM_ROWS 12
Thing_define (DataSubEditor, Editor) {
// new data:
public:
DataEditor d_root;
void *d_address;
Data_Description d_description;
GuiObject d_scrollBar;
int d_irow, d_topField, d_numberOfFields;
struct structDataSubEditor_FieldData d_fieldData [1 + kDataSubEditor_MAXNUM_ROWS];
// overridden methods:
virtual void v_destroy ();
virtual bool v_scriptable () { return false; }
virtual void v_createChildren ();
virtual void v_createHelpMenuItems (EditorMenu menu);
// new methods:
virtual long v_countFields () { return 0; }
virtual void v_showMembers () { }
};
Thing_define (VectorEditor, DataSubEditor) {
// new data:
public:
long d_minimum, d_maximum;
// overridden methods:
virtual long v_countFields ();
virtual void v_showMembers ();
};
Thing_define (MatrixEditor, DataSubEditor) {
// new data:
public:
long d_minimum, d_maximum, d_min2, d_max2;
// overridden methods:
virtual long v_countFields ();
virtual void v_showMembers ();
};
Thing_define (StructEditor, DataSubEditor) {
// overridden methods:
virtual long v_countFields ();
virtual void v_showMembers ();
};
Thing_define (ClassEditor, StructEditor) {
// overridden methods:
virtual void v_showMembers ();
};
Thing_define (DataEditor, ClassEditor) {
// new data:
public:
Collection d_children;
// overridden methods:
void v_destroy ();
void v_dataChanged ();
};
DataEditor DataEditor_create (GuiObject parent, const wchar *title, Any data);
/* End of file DataEditor.h */
#endif
|