Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate
Photo

[AHK & AHK_L] Forms Framework 0.8


  • Please log in to reply
205 replies to this topic
majkinetor
  • Moderators
  • 4512 posts
  • Last active: May 20 2019 07:41 AM
  • Joined: 24 May 2006

F o r m s

Forms framework is a group of modules used together to create rich AHK and AHK_L applications and graphical user interfaces. It contains the list of optional module includes with each module designed to work with or without the framework in place. It includes number of custom controls, extensions and useful libraries.


Download          Documentation         Project
 
Unlicensed


Notes:

[*:1gse30tb] All 3thd party dll controls are not Unicode and will be removed from the framework in the future (HiEdit, RaGrid, SpredSheet (Property)). Those controls will be kept on their respective pages outside the framework.
[*:1gse30tb] Latest source code is always here.Posted Image[/list]
Posted Image

Learning one
  • Members
  • 1483 posts
  • Last active: Jan 02 2016 02:30 PM
  • Joined: 04 Apr 2009
Majkinetor this is fantastic! :D :shock: :D
Thank you so much. Bravo!

It looks that I have new homework - to study all that modules :lol:

Croatian/Serbian:
Bravo majstore! Tako to rade najbolji!

fred
  • Guests
  • Last active:
  • Joined: --
Looks very nice! :)

n-l-i-d
  • Guests
  • Last active:
  • Joined: --
Great stuff!

8)

IsNull
  • Moderators
  • 990 posts
  • Last active: May 15 2014 11:56 AM
  • Joined: 10 May 2007
really nice and usefull :)

majkinetor
  • Moderators
  • 4512 posts
  • Last active: May 20 2019 07:41 AM
  • Joined: 24 May 2006
Thx.
Any suggestions, comments and/or reports are welcome.
Posted Image

n-l-i-d
  • Guests
  • Last active:
  • Joined: --
How about adding the RMChart.dll as a third-party GUI element?

8)

majkinetor
  • Moderators
  • 4512 posts
  • Last active: May 20 2019 07:41 AM
  • Joined: 24 May 2006
The framework is extensible. Anybody can make RMChart module and if it conforms to other principles I used (described in docs under Features) I will be more then happy to include it. This is more or less how freakkk's RichEdit entered the framework. Some extensions are also produced by forum members (like CColor or ILButton) and are included in framework with some modifications to follow mentioned principles.

Some non-mandatory principles are also described in project wiki about code styling and some mechanism used cross module, like message chains that are mostly used for WM_NOTIFY message used by many different controls at the same time or methods of hiding globals inside "storage" functions.

Other then that, if I ever need charting in AHK Ill probably do it myself.
Posted Image

n-l-i-d
  • Guests
  • Last active:
  • Joined: --
Ok, great. I'll see what I can do myself.

:)

majkinetor
  • Moderators
  • 4512 posts
  • Last active: May 20 2019 07:41 AM
  • Joined: 24 May 2006
If you need any help designing API, PM me.

Cheers.
Posted Image

kdoske
  • Members
  • 138 posts
  • Last active: Nov 06 2012 01:58 AM
  • Joined: 17 Dec 2008
this is fantastic

automaticman
  • Members
  • 658 posts
  • Last active: Nov 20 2012 06:10 PM
  • Joined: 27 Oct 2006
Does this replace LilBuilder?

majkinetor
  • Moderators
  • 4512 posts
  • Last active: May 20 2019 07:41 AM
  • Joined: 24 May 2006
It has nothing to do with Lil Builder.

The purpose of Lil Builder was to generate "standard" AHK script from drag & drop GUI editor.

This is GUI framework which is used instead Gui, Add and several other function (or in parallel) , not all to be AHK internal (like Attach or Anchor for example). It is also implementation of some wishes, for example this one.

LiL Builder could be updated to generate Forms code out and it would be much easier to do so as Forms standardize Gui creation among custom or internal AHK controls.

In essence, Forms editor is not that much needed because its follows very simple idea consistently across modules.

It also allows for custom control creation using Panel control. I call such high level controls widgets and one example is given as Writter control that uses Toolbar, RichEdit, Dlg, Align & Attach to implement. it. The code then may look like the one bellow without the need to know details of implementation of Writer (i.e. black box)

hForm1	:=	Form_New("w400 e1 h500 +Resize +ToolWindow")

	hWriter := Form_Add(hForm1, "Writer", "", "w100 h100", "Align T,200")

Posted Image

automaticman
  • Members
  • 658 posts
  • Last active: Nov 20 2012 06:10 PM
  • Joined: 27 Oct 2006
I see, would it make sense to combine Forms Framework with Jucer.

majkinetor
  • Moderators
  • 4512 posts
  • Last active: May 20 2019 07:41 AM
  • Joined: 24 May 2006
2automaticman
No, it doesn't make sense :)

*** version 0.61 ***
+ Demo.ahk script added that can be used to launch and view other test scripts.
* Attach: changed reset without any arguments so that it uses first window created instead the last one.
! Toolbar: doc fixes
+ Toolbar: New sample Dynamic.ahk - shows how you can reposition controls bellow the toolbar when main window resizes and new toolbar rows are added.
+ Scroller: New sample added that shows how to scroll everything except the toolbar (thx HotKeyIt)
* Some small changes in various tests
* Doc fixes.
Posted Image