First FF3 WSA beta project

Started by Patrice Terrier, November 15, 2009, 04:01:35 PM

Previous topic - Next topic

Patrice Terrier

I have done my first FireFly project skinned with the new WinLIFT beta.

It uses the WinLIFT's anchor mode, to move the child controls when the main window is resized.

To see it in action drag the right bottom corner of the window.

Function FORM1_WM_CREATE ( _
                         hWndForm As Dword, _      ' handle of Form
                         ByVal UserData As Long _  ' optional user defined Long value
                         ) As Long
    If skInitEngine("Boxer.sks", "") Then
       Call skSkinWindow(hWndForm, "Dock|Undock|Minimize|Maximize|Restore|Close")
       Call skSetAnchorCtrl(HWND_FORM1_TABCONTROL1, %ANCHOR_HEIGHT_WIDTH)
       Call skSetAnchorCtrl(HWND_FORM1_BUTTON1, %ANCHOR_BOTTOM)
       Call skSetAnchorCtrl(HWND_FORM1_BUTTON2, %ANCHOR_BOTTOM_RIGHT)
    End If

End Function


Argh! I can't attach the ZIP file to this post because of size limitation.  >:(

The ZIP file size is 2490 Kb, if you want to try it then you will have to download it from the WinLIFT's section here:
http://www.jose.it-berater.org/smfforum/index.php?topic=3222.msg11024;topicseen#msg11024

Added:
Click on the eye (with the left or right mouse button) to change the background on the fly.

...


David Warner

That is tremendous Patrice! How much does WinLIFT cost?

Regards,

David


Paul Squires

Very, very cool. Patrice's stuff is always top notch.

Happy to see that you were able to get it working easily in FF3.
Paul Squires
PlanetSquires Software

Patrice Terrier

QuoteHow much does WinLIFT cost?
Still a work in progress...
but probably half the price of GDImage  ;)


Patrice Terrier

Skinned trackbar.

...

Patrice Terrier

Paul

Now that Version 3.04 supports negative value for Trackbar, WinLIFT is able to draw the range either from top to bottom, or from bottom to top as you can see on the attached screen shot.

(look at the third vertical trackbar on the right)