Added wxStaticPicture
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33195 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -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
|
||||
|
@@ -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;
|
||||
|
||||
};
|
||||
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user