]> git.saurik.com Git - wxWidgets.git/blame - utils/framelayout/samples/demo/wxinfo.h
Compile fix for GTK 1.0
[wxWidgets.git] / utils / framelayout / samples / demo / wxinfo.h
CommitLineData
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
bd9396d5
HH
18
19/*
20 * creates tree with hierarchically cauptured
21 * information about wxWindows dynamic classes (at "current run-time")
22 */
23
24void wxCreateClassInfoTree( wxTreeCtrl* pTree,
25 wxTreeItemId parentBranchId,
26 long classImageNo = -1
27 );
28
29/*
30 * creates tree with information about
31 * serializer-classes (at current run-time)
32 * NOTE:: "objstore.cpp" should be compiled in
33 */
34
bd9396d5 35#endif