GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
wxStaticBitmap(3) Erlang Module Definition wxStaticBitmap(3)

wxStaticBitmap - Functions for wxStaticBitmap class

A static bitmap control displays a bitmap. Native implementations on some platforms are only meant for display of the small icons in the dialog boxes.

If you want to display larger images portably, you may use generic implementation wxGenericStaticBitmap declared in <wx/generic/statbmpg.h>.

Notice that for the best results, the size of the control should be the same as the size of the image displayed in it, as happens by default if it's not resized explicitly. Otherwise, behaviour depends on the platform: under MSW, the bitmap is drawn centred inside the control, while elsewhere it is drawn at the origin of the control. You can use SetScaleMode() (not implemented in wx) to control how the image is scaled inside the control.

See: wxBitmap

This class is derived (and can use functions) from: wxControl wxWindow wxEvtHandler

wxWidgets docs: wxStaticBitmap

wxStaticBitmap() = wx:wx_object()

new() -> wxStaticBitmap()


Default constructor.

new(Parent, Id, Label) -> wxStaticBitmap()


Types:

Parent = wxWindow:wxWindow()
Id = integer()
Label = wxBitmap:wxBitmap()

new(Parent, Id, Label, Options :: [Option]) -> wxStaticBitmap()


Types:

Parent = wxWindow:wxWindow()
Id = integer()
Label = wxBitmap:wxBitmap()
Option = {pos, {X :: integer(), Y :: integer()}} | {size, {W :: integer(), H :: integer()}} | {style, integer()}

Constructor, creating and showing a static bitmap control.

See: create/5

create(This, Parent, Id, Label) -> boolean()


Types:

This = wxStaticBitmap()
Parent = wxWindow:wxWindow()
Id = integer()
Label = wxBitmap:wxBitmap()

create(This, Parent, Id, Label, Options :: [Option]) -> boolean()


Types:

This = wxStaticBitmap()
Parent = wxWindow:wxWindow()
Id = integer()
Label = wxBitmap:wxBitmap()
Option = {pos, {X :: integer(), Y :: integer()}} | {size, {W :: integer(), H :: integer()}} | {style, integer()}

Creation function, for two-step construction.

For details see new/4.

getBitmap(This) -> wxBitmap:wxBitmap()


Types:

This = wxStaticBitmap()

Returns the bitmap currently used in the control.

Notice that this method can be called even if SetIcon() (not implemented in wx) had been used.

See: setBitmap/2

setBitmap(This, Label) -> ok


Types:

This = wxStaticBitmap()
Label = wxBitmap:wxBitmap()

Sets the bitmap label.

See: getBitmap/1

destroy(This :: wxStaticBitmap()) -> ok


Destroys the object.

wx 2.1.1 wxWidgets team.

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.