Skip to content

Commit

Permalink
Code changes 20191102
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulSquires committed Nov 2, 2019
1 parent 429c292 commit ab06253
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 6 deletions.
10 changes: 7 additions & 3 deletions Help/WinFBE/Visual Designer/Controls/ListView.html
Original file line number Diff line number Diff line change
Expand Up @@ -178,18 +178,22 @@ <h3 id="methods">Methods</h3>
<td>Conceals the control from the user.</td>
</tr>
<tr class="even">
<td>HitTest</td>
<td>Determines what (if any) ListView Item and/or SubItem has been clicked on. HitTest( iItem, iSubItem )</td>
</tr>
<tr class="odd">
<td>Refresh</td>
<td>Forces the form to invalidate its client area and immediately redraw itself and any child controls.</td>
</tr>
<tr class="odd">
<tr class="even">
<td>SelectNextControl</td>
<td>Moves the input control to the next (True) or previous (False) control in the tab order.</td>
</tr>
<tr class="even">
<tr class="odd">
<td>SetBounds</td>
<td>Sets the bounds of the control to the specified location and size. SetBounds(left, top, width, height).</td>
</tr>
<tr class="odd">
<tr class="even">
<td>Show</td>
<td>Creates and displays the control to the user.</td>
</tr>
Expand Down
1 change: 1 addition & 0 deletions Help/WinFBE/Visual Designer/Controls/ListView.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
| Name | Description |
| ------------------------------- | ------------------------------ |
| Hide | Conceals the control from the user.|
| HitTest | Determines what (if any) ListView Item and/or SubItem has been clicked on. HitTest( iItem, iSubItem ) |
| Refresh | Forces the form to invalidate its client area and immediately redraw itself and any child controls.|
| SelectNextControl | Moves the input control to the next (True) or previous (False) control in the tab order. |
| SetBounds | Sets the bounds of the control to the specified location and size. SetBounds(left, top, width, height).|
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.
7 changes: 6 additions & 1 deletion changes.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
Version 1.9.6 (November 2, 2019)
- Added: ListView HitTest method. Determines what (if any) ListView Item and/or SubItem has been clicked on. HitTest( iItem, iSubItem )
- Fixed: Removed "TextChanged" event from the ListView.
- Fixed: ListView Events were not firing due to missing integration code.

Version 1.9.5 (November 1, 2019)
- Added: ListView control.
- Added: Visual designer projects create WinFBE_VD_MAIN.bas that contains EQUATES to activate all controls that are present in the project. Thi helps reduce EXE size.
- Added: ListBox Insert method.
- Changed: Remove the Visual Designer sample project (a new one will be added in the future).
- Fixed: WinFBE project files for the those found in the "Sample_Projects" folder.


Version 1.9.4 (October 1, 2019)
- Fixed: Updated the WinFBE.ini file to correct path to compiler.
- Fixed: Removed the Tool UPX.
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("1.9.5")
#Define APPVERSION WStr("1.9.6")
#Define APPCOPYRIGHT WStr("Paul Squires, PlanetSquires Software, Copyright (C) 2016-2019")


Expand Down
1 change: 0 additions & 1 deletion src/modVDControls.inc
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,6 @@ private function AttachDefaultControlEvents( byval pCtrl as clsControl ptr ) as
AddControlEvent(pCtrl, "MouseEnter")
AddControlEvent(pCtrl, "MouseHover")
AddControlEvent(pCtrl, "MouseLeave")
AddControlEvent(pCtrl, "TextChanged")
AddControlEvent(pCtrl, "KeyDown")
AddControlEvent(pCtrl, "KeyPress")
AddControlEvent(pCtrl, "KeyUp")
Expand Down

0 comments on commit ab06253

Please sign in to comment.