Added wxStaticPicture

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33195 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2005-03-30 18:56:05 +00:00
parent 6a9e7de988
commit 7e4b7f9a8b
3 changed files with 64 additions and 1 deletions

View File

@@ -32,5 +32,10 @@
%rename(TL_SEARCH_NOCASE) wxTL_SEARCH_NOCASE;
%rename(TR_DONT_ADJUST_MAC) wxTR_DONT_ADJUST_MAC;
%rename(TreeListColumnInfo) wxTreeListColumnInfo;
%rename(SCALE_HORIZONTAL) wxSCALE_HORIZONTAL;
%rename(SCALE_VERTICAL) wxSCALE_VERTICAL;
%rename(SCALE_UNIFORM) wxSCALE_UNIFORM;
%rename(SCALE_CUSTOM) wxSCALE_CUSTOM;
%rename(StaticPicture) wxStaticPicture;
#endif

View File

@@ -26,6 +26,7 @@
#include <wx/gizmos/editlbox.h>
#include <wx/gizmos/splittree.h>
#include <wx/gizmos/ledctrl.h>
#include <wx/gizmos/statpict.h>
#include <wx/listctrl.h>
#include <wx/treectrl.h>
@@ -47,7 +48,8 @@
MAKE_CONST_WXSTRING2(DynamicSashNameStr, wxT("dynamicSashWindow"));
MAKE_CONST_WXSTRING2(EditableListBoxNameStr, wxT("editableListBox"));
MAKE_CONST_WXSTRING2(TreeListCtrlNameStr, wxT("treelistctrl"));
MAKE_CONST_WXSTRING(StaticPictureNameStr);
MAKE_CONST_WXSTRING_NOSWIG(EmptyString);
@@ -957,7 +959,55 @@ public:
};
//----------------------------------------------------------------------
enum
{
wxSCALE_HORIZONTAL,
wxSCALE_VERTICAL,
wxSCALE_UNIFORM,
wxSCALE_CUSTOM
};
MustHaveApp(wxStaticPicture);
class wxStaticPicture : public wxControl
{
public:
%pythonAppend wxStaticPicture "self._setOORInfo(self)"
%pythonAppend wxStaticPicture() ""
wxStaticPicture( wxWindow* parent, wxWindowID id,
const wxBitmap& label,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = 0,
const wxString& name = wxPyStaticPictureNameStr );
%RenameCtor(PreStaticPicture, wxStaticPicture());
bool Create( wxWindow* parent, wxWindowID id,
const wxBitmap& label,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = 0,
const wxString& name = wxPyStaticPictureNameStr );
void SetBitmap( const wxBitmap& bmp );
wxBitmap GetBitmap() const;
void SetIcon( const wxIcon& icon );
wxIcon GetIcon() const;
void SetAlignment( int align );
int GetAlignment() const;
void SetScale( int scale );
int GetScale() const;
void SetCustomScale( float sx, float sy );
void GetCustomScale( float* OUTPUT, float* OUTPUT ) const;
};
//----------------------------------------------------------------------

View File

@@ -22,6 +22,7 @@ del sys, _wx
wxDynamicSashNameStr = wx.gizmos.DynamicSashNameStr
wxEditableListBoxNameStr = wx.gizmos.EditableListBoxNameStr
wxTreeListCtrlNameStr = wx.gizmos.TreeListCtrlNameStr
wxStaticPictureNameStr = wx.gizmos.StaticPictureNameStr
wxDS_MANAGE_SCROLLBARS = wx.gizmos.DS_MANAGE_SCROLLBARS
wxDS_DRAG_CORNER = wx.gizmos.DS_DRAG_CORNER
wxEVT_DYNAMIC_SASH_SPLIT = wx.gizmos.wxEVT_DYNAMIC_SASH_SPLIT
@@ -71,6 +72,13 @@ wxTreeListCtrl = wx.gizmos.TreeListCtrl
wxTreeListCtrlPtr = wx.gizmos.TreeListCtrlPtr
wxTreeListCtrl = wx.gizmos.TreeListCtrl
wxPreTreeListCtrl = wx.gizmos.PreTreeListCtrl
wxSCALE_HORIZONTAL = wx.gizmos.SCALE_HORIZONTAL
wxSCALE_VERTICAL = wx.gizmos.SCALE_VERTICAL
wxSCALE_UNIFORM = wx.gizmos.SCALE_UNIFORM
wxSCALE_CUSTOM = wx.gizmos.SCALE_CUSTOM
wxStaticPicture = wx.gizmos.StaticPicture
wxStaticPicturePtr = wx.gizmos.StaticPicturePtr
wxPreStaticPicture = wx.gizmos.PreStaticPicture
d = globals()