adjusted indentation with astyle; added Id keyword
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52383 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -9,17 +9,17 @@
|
||||
/**
|
||||
@class wxStaticBitmap
|
||||
@wxheader{statbmp.h}
|
||||
|
||||
|
||||
A static bitmap control displays a bitmap. It is meant for display of the
|
||||
small icons in the dialog boxes and is not meant to be a general purpose image
|
||||
display control. In particular, under Windows 9x the size of bitmap is limited
|
||||
to 64*64 pixels and thus you should use your own control if you want to
|
||||
display larger images portably.
|
||||
|
||||
|
||||
@library{wxcore}
|
||||
@category{ctrl}
|
||||
@appearance{staticbitmap.png}
|
||||
|
||||
|
||||
@seealso
|
||||
wxStaticBitmap, wxStaticBox
|
||||
*/
|
||||
@@ -30,36 +30,36 @@ public:
|
||||
/**
|
||||
Constructor, creating and showing a static bitmap control.
|
||||
|
||||
@param parent
|
||||
@param parent
|
||||
Parent window. Should not be @NULL.
|
||||
|
||||
@param id
|
||||
@param id
|
||||
Control identifier. A value of -1 denotes a default value.
|
||||
|
||||
@param label
|
||||
@param label
|
||||
Bitmap label.
|
||||
|
||||
@param pos
|
||||
@param pos
|
||||
Window position.
|
||||
|
||||
@param size
|
||||
@param size
|
||||
Window size.
|
||||
|
||||
@param style
|
||||
@param style
|
||||
Window style. See wxStaticBitmap.
|
||||
|
||||
@param name
|
||||
@param name
|
||||
Window name.
|
||||
|
||||
@sa Create()
|
||||
*/
|
||||
wxStaticBitmap();
|
||||
wxStaticBitmap(wxWindow* parent, wxWindowID id,
|
||||
const wxBitmap& label,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
long style = 0,
|
||||
const wxString& name = "staticBitmap");
|
||||
wxStaticBitmap(wxWindow* parent, wxWindowID id,
|
||||
const wxBitmap& label,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
long style = 0,
|
||||
const wxString& name = "staticBitmap");
|
||||
//@}
|
||||
|
||||
/**
|
||||
@@ -83,7 +83,7 @@ public:
|
||||
/**
|
||||
Returns the icon currently used in the control. Notice that this method can
|
||||
only be called if SetIcon() had been used: an icon
|
||||
can't be retrieved from the control if a bitmap had been set (using
|
||||
can't be retrieved from the control if a bitmap had been set (using
|
||||
wxStaticBitmap::SetBitmap).
|
||||
|
||||
@sa SetIcon()
|
||||
@@ -93,7 +93,7 @@ public:
|
||||
/**
|
||||
Sets the bitmap label.
|
||||
|
||||
@param label
|
||||
@param label
|
||||
The new bitmap.
|
||||
|
||||
@sa GetBitmap()
|
||||
@@ -103,7 +103,7 @@ public:
|
||||
/**
|
||||
Sets the label to the given icon.
|
||||
|
||||
@param label
|
||||
@param label
|
||||
The new icon.
|
||||
*/
|
||||
virtual void SetIcon(const wxIcon& label);
|
||||
|
Reference in New Issue
Block a user