af11388a62
2 - removed pf_sample from library - this was test code 3 - modified newbmpbutton to create all button images once at initial creation 4 - newbmpbutton only refreses when necessary 5 - non-msw platforms may now disable (enable(FALSE)) a button - this will half-grey the image and draw text in disabled color. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1941 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
42 lines
1.1 KiB
C
42 lines
1.1 KiB
C
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: No names yet.
|
|
// Purpose: Contrib. demo
|
|
// Author: Aleksandras Gluchovas
|
|
// Modified by:
|
|
// Created: 23/11/98
|
|
// RCS-ID: $Id$
|
|
// Copyright: 1998 (c) Aleksandras Gluchovas
|
|
// Licence: wxWindows license
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef __WXINFO_G__
|
|
#define __WXINFO_G__
|
|
|
|
#include "wx/object.h"
|
|
#include "wx/treectrl.h"
|
|
|
|
#include "objstore.h"
|
|
|
|
/*
|
|
* creates tree with hierarchically cauptured
|
|
* information about wxWindows dynamic classes (at "current run-time")
|
|
*/
|
|
|
|
void wxCreateClassInfoTree( wxTreeCtrl* pTree,
|
|
wxTreeItemId parentBranchId,
|
|
long classImageNo = -1
|
|
);
|
|
|
|
/*
|
|
* creates tree with information about
|
|
* serializer-classes (at current run-time)
|
|
* NOTE:: "objstore.cpp" should be compiled in
|
|
*/
|
|
|
|
void wxCreateSerializerInfoTree( wxTreeCtrl* pTree, // existing tree control
|
|
wxTreeItemId parentBranchId,
|
|
long classImageNo = -1 // (-1) - text only
|
|
);
|
|
|
|
#endif
|