Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Hmm.. not sure about the backgrounds/bitmaps for buttons. But here are the options..

# (@)METHOD:new Win32::GUI::Button(PARENT, %OPTIONS)
# Creates a new Button object;
# can also be called as PARENT->AddButton(%OPTIONS).
# Class specific %OPTIONS are:
# -align => left/center/right (default left)
# -valign => top/center/bottom
#
# -default => 0/1 (default 0)
# -ok => 0/1 (default 0)
# -cancel => 0/1 (default 0)

I would assume that generic options would work with this as well (ie -color etc...). But, don't take my word for it, I've never used win32::gui.

update: Played with it a little bit. Looks like what you need to do is something like this:
$TB = $W->AddToolbar( -left => 0, -top => 0, -width => $W->ScaleWidth-10, -height => 100, -name => "Toolbar", ); $B = new Win32::GUI::Bitmap("unkfolder.bmp"); $C = new Win32::GUI::Bitmap("two.bmp"); $TB->SetBitmapSize(16, 16); $TB->AddBitmap($B, 1); $TB->AddBitmap($C, 2); $TB->AddString("ONE"); $TB->AddString("TWO"); $TB->AddButtons( 2, 0, 1, 4, 0, 0, 1, 2, 4, 0, 1, );
That's pretty much stolen directly from the toolbar.pl sample. Basically, open the bitmaps, assign the size the bitmap will be on the toolbar, and then add the bitmaps to the relative button location (1,2,3 etc). Does that help?
Another update:
In the code above, ($B, 1) and ($C, 2) should read as ($B,0) and ($C,1).

In reply to Re: Win32::GUI Bitmaps on buttons? by the_slycer
in thread Win32::GUI Bitmaps on buttons? by HaB

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (9)
As of 2024-04-19 06:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found