]>
Commit | Line | Data |
---|---|---|
bd9396d5 HH |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: No names yet. | |
3 | // Purpose: Contrib. demo | |
4 | // Author: Aleksandras Gluchovas | |
5 | // Modified by: | |
6 | // Created: 23/11/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: 1998 (c) Aleksandras Gluchovas | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef __WXINFO_G__ | |
13 | #define __WXINFO_G__ | |
14 | ||
15 | #include "wx/object.h" | |
16 | #include "wx/treectrl.h" | |
17 | ||
18 | #include "objstore.h" | |
19 | ||
20 | /* | |
21 | * creates tree with hierarchically cauptured | |
22 | * information about wxWindows dynamic classes (at "current run-time") | |
23 | */ | |
24 | ||
25 | void wxCreateClassInfoTree( wxTreeCtrl* pTree, | |
26 | wxTreeItemId parentBranchId, | |
27 | long classImageNo = -1 | |
28 | ); | |
29 | ||
30 | /* | |
31 | * creates tree with information about | |
32 | * serializer-classes (at current run-time) | |
33 | * NOTE:: "objstore.cpp" should be compiled in | |
34 | */ | |
35 | ||
36 | void wxCreateSerializerInfoTree( wxTreeCtrl* pTree, // existing tree control | |
37 | wxTreeItemId parentBranchId, | |
38 | long classImageNo = -1 // (-1) - text only | |
39 | ); | |
40 | ||
41 | #endif |