Skip to content

Commit

Permalink
Code changes 20191216
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulSquires committed Dec 16, 2019
1 parent 66b1168 commit bca8509
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 37 deletions.
18 changes: 0 additions & 18 deletions Help/WinFBE/Visual Designer/01_Overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,24 +22,6 @@
<body>
<h1 id="overview">Overview</h1>
<p>The visual designer is still a work in progress so please do not assume that all functionality is available and/or working correctly. The purpose of this release to show the progress of the visual designer to date and to allow input from users regarding its direction and whether changes in basic design philosophy should occur at this point.</p>
<p>There are a few controls that have been implemented. More to come as the core structure of the designer itself matures.</p>
<ul>
<li>Forms</li>
<li>Label</li>
<li>Button (Jose Roca’s CXpButton class)</li>
<li>MaskedEdit (Jose Roca’s CMaskedEdit class)</li>
<li>TextBox</li>
<li>CheckBox</li>
<li>Frame</li>
<li>ListBox</li>
<li>ComboBox</li>
<li>OptionButton</li>
<li>Main Menu</li>
<li>StatusBar</li>
<li>ToolBar</li>
<li>PictureBox</li>
<li>ProgressBar</li>
</ul>
<p>The forms and controls are being implemented via the WinFormsX library that is also a free and open source PlanetSquires product that is available on GitHub.</p>
<p>The rest of this document will give you a bare bones introduction to the use of the visual designer and code to perform various tasks.</p>
<p>The visual designer will automatically generate code whenever something changes related to a form or control. The generated code is based on the syntax of the <strong>WinFormsX library</strong>.</p>
Expand Down
18 changes: 0 additions & 18 deletions Help/WinFBE/Visual Designer/01_Overview.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,6 @@
# Overview
The visual designer is still a work in progress so please do not assume that all functionality is available and/or working correctly. The purpose of this release to show the progress of the visual designer to date and to allow input from users regarding its direction and whether changes in basic design philosophy should occur at this point.

There are a few controls that have been implemented. More to come as the core structure of the designer itself matures.

- Forms
- Label
- Button (Jose Roca’s CXpButton class)
- MaskedEdit (Jose Roca’s CMaskedEdit class)
- TextBox
- CheckBox
- Frame
- ListBox
- ComboBox
- OptionButton
- Main Menu
- StatusBar
- ToolBar
- PictureBox
- ProgressBar

The forms and controls are being implemented via the WinFormsX library that is also a free and open source PlanetSquires product that is available on GitHub.

The rest of this document will give you a bare bones introduction to the use of the visual designer and code to perform various tasks.
Expand Down
Binary file modified WinFBE.wfbe
Binary file not shown.
Binary file modified WinFBE32.exe
Binary file not shown.
Binary file modified WinFBE64.exe
Binary file not shown.
5 changes: 5 additions & 0 deletions changes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 2.0.2 (December 16, 2019)
- Fixed: ToolTip needed to have at least 1 character set at design time in order for ToolTip to display at runtime because the hWndToolTip would not be created.
- Fixed: ListBox code regression in wfxApplication.inc WM_ERASEBKGND handler that caused excessive visual flicker (ControlType.ListBox was accidently set to ControlType.ListView).
- Fixed: ListView now draws significantly faster becase only affected changed visible line items invoke a redraw of the ListView. Uses ListView_IsItemVisible to determine if item is visible.

Version 2.0.1 (December 13, 2019)
- Added: Month Calendar control.
- Added: DateTimePicker control.
Expand Down
2 changes: 1 addition & 1 deletion src/WinFBE.bas
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Using Afx

#Define APPNAME WStr("WinFBE - FreeBASIC Editor")
#Define APPNAMESHORT WStr("WinFBE")
#Define APPVERSION WStr("2.0.1")
#Define APPVERSION WStr("2.0.2")
#Define APPCOPYRIGHT WStr("Paul Squires, PlanetSquires Software, Copyright (C) 2016-2019")


Expand Down

0 comments on commit bca8509

Please sign in to comment.