From afb632d2028fdc4a37e10e41e1929264ff59f52e Mon Sep 17 00:00:00 2001
From: Hans Bolinder
Add {silent_start, boolean()} option to wx:new/1 in order
to be able to suppress error messages during startup of
- wx. (Thanks to Håkan Mattsson)
Own Id: OTP-10585
-- cgit v1.2.3 From e5875001247e6a6ac4f474157a51a8c54f94ae49 Mon Sep 17 00:00:00 2001 From: Hans BolinderAdd {silent_start, boolean()} option to wx:new/1 in order to be able to suppress error messages during startup of - wx. (Thanks to Håkan Mattsson)
+ wx. (Thanks to HÃ¥kan Mattsson)Own Id: OTP-10585
-- cgit v1.2.3 From 01af7515f1d70d0c885c41435ed9a15ad985dc2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Boris=20M=C3=BChmer?=wx:new/0
,wx:destroy/0
, and
+destroy the GUI, i.e. wx:new/0
, wx:destroy/0
, and
some other useful functions.
Objects or object references in wx should be seen as erlang
-processes rather then erlang terms. When you operate on them they can
+processes rather than erlang terms. When you operate on them they can
change state, e.g. they are not functional objects as erlang terms are.
Each object has a type or rather a class, which is manipulated with
the corresponding module or by sub-classes of that object. Type
@@ -62,7 +62,7 @@ For example the wxWindow C++ class is implemented in the
member wxWindow::CenterOnParent is
thus wxWindow:centerOnParent. The following C++ code:
- wxWindow MyWin = new wxWindo(); + wxWindow MyWin = new wxWindow(); MyWin.CenterOnParent(wxVERTICAL); ... delete MyWin; @@ -91,7 +91,7 @@ they are directly mapped to corresponding erlang terms:
wx:get_env/0
and set it in the new processes
@@ -153,26 +153,26 @@ increasing memory usage. This is especially important when
wxWidgets assumes or recommends that you (or rather the C++
programmer) have allocated the object on the stack since that will
never be done in the erlang binding. For example wxDC
class
-or its sub-classes or wxSizerFlags
.
+or its sub-classes or wxSizerFlags
.
Currently the dialogs show modal function freezes wxWidgets
until the dialog is closed. That is intended but in erlang where you
-can have several gui applications running at the same time it causes
+can have several GUI applications running at the same time it causes
trouble. This will hopefully be fixed in future wxWidgets
releases.
== Event Handling ==
-Event handling in wx differs most the from the original api.
+Event handling in wx differs most from the original API.
You must specify every event you want to handle in wxWidgets,
-that is the same in the erlang binding but can you choose to receive
-the events as messages or handle them with callback funs.
+that is the same in the erlang binding but you can choose to receive
+the events as messages or handle them with callback funs.
Otherwise the event subscription is handled as wxWidgets
dynamic event-handler connection. You subscribe to events of a certain
-type from objects with an ID or within a range of ID:s. The
-callback fun is optional, if not supplied the event will be sent to the
-process that called connect/2. Thus, a handler is a callback fun
+type from objects with an ID or within a range of IDs. The
+callback fun is optional, if not supplied the event will be sent to the
+process that called connect/2. Thus, a handler is a callback fun
or a process which will receive an event message.
Events are handled in order from bottom to top, in the widgets
@@ -195,7 +195,7 @@ subscribed to
wxKey event record where Event#wxKey.type =
key_up
.
-In wxWidgets the developer have to call
+In wxWidgets the developer has to call
wxEvent:skip()
if he wants the event to be processed by
other handlers. You can do the same in wx if you use
callbacks. If you want the event as messages you just don't supply a
@@ -217,11 +217,11 @@ following handlers. The actual event objects are deleted after
the fun returns.
The callbacks are always invoked by another process and have
-exclusive usage of the gui when invoked. This means that a callback fun
+exclusive usage of the GUI when invoked. This means that a callback fun
can not use the process dictionary and should not make calls to other
-processes. Calls to another process inside a callback fun may cause a
+processes. Calls to another process inside a callback fun may cause a
deadlock if the other process is waiting on completion of his call to
-the gui.
+the GUI.
== Acknowledgments ==
--
cgit v1.2.3
From 25237481ccccd3ddfa74582dc267632ad618ba30 Mon Sep 17 00:00:00 2001
From: Erlang/OTP This document describes the changes made to the wxErlang application.
++ wx initialization hanged with wxWidgets-3.0 on mac. Fixed + a crash with wxListBox on wxWidgets-3.0 (thanks Sergei + Golovan) Fixed documentation links. Fixed event callbacks + cleanup.
++ Own Id: OTP-11393
++ Improve documentation (Thanks to Boris Mühmer)
++ Own Id: OTP-11505
++ Fix silent make rules (Thanks to Anthony Ramine)
++ Own Id: OTP-11515
+This document describes the changes made to the wxErlang application.
++ Fixed a problem which caused the debugger to crash when + closing a window. Fixed static linking on mac.
++ Own Id: OTP-11444
+This document describes the changes made to the wxErlang application.
++ Refactored C++ code, fixed crashes and a deadlock on + linux.
++ Own Id: OTP-11586
+
+ Some local implementations of removing the last element
+ from a list are replaced by
+ Own Id: OTP-11678
++ Reworked the internal event handling to avoid crashes in + destroy objects. Thanks Tom for the bug report.
++ Own Id: OTP-11699
++ Application upgrade (appup) files are corrected for the + following applications:
+
+
+ A new test utility for testing appup files is added to + test_server. This is now used by most applications in + OTP.
++ (Thanks to Tobias Schlager)
++ Own Id: OTP-11744
+This document describes the changes made to the wxErlang application.
+Fix delayed destroy for wxPaintDC objects which could + cause an eternal loop for modal dialogs.
Fix + wxSL_LABELS compatibility between wxWidgets-2.8 and + wxWidgets-3.0 versions
++ Own Id: OTP-11985
++ Add missing classes wxPopup[Transient]Window, + wxActivateEvent and wxTextCtrl:cahngeValue/2 function.
++ Own Id: OTP-11986
+This document describes the changes made to the wxErlang application.
++ Implement --enable-sanitizers[=sanitizers]. Similar to + debugging with Valgrind, it's very useful to enable + -fsanitize= switches to catch bugs at runtime.
++ Own Id: OTP-12153
+This document describes the changes made to the wxErlang application.
++ Fixed a minor typo in the graphicsContext example.
++ Own Id: OTP-12259
+
+ Distribute
+ Own Id: OTP-12348
+This document describes the changes made to the wxErlang application.
++ Fix timing related crash during wx application stop.
++ Own Id: OTP-12374
+This document describes the changes made to the wxErlang application.
+
+ The undocumented option
+ Own Id: OTP-12183
+
+ Remove raise condition where
+ Own Id: OTP-12734
++ Use wxWidgets-3.0, if found, as default backend on + windows.
++ Own Id: OTP-12632
++ Add missing fields in some events records. May require a + recompilation of user applications.
++ Own Id: OTP-12660
+This document describes the changes made to the wxErlang application.
++ Extend AUI functionality.
++ Own Id: OTP-12961
+This document describes the changes made to the wxErlang application.
+Add wxOverlay and make wxPostScripDC optional to make + it easier to build on windows.
Correct some + function specifications.
The driver implementation + have been optimized and now invokes commands after events + have been sent to erlang.
++ Own Id: OTP-13160
+This document describes the changes made to the wxErlang application.
+
+ Fixed commands with multiple binaries, such as
+
+ Own Id: OTP-13404
+This document describes the changes made to the wxErlang application.
++ Fixed bugs which could cause called functions to be + invoked twice or not at all when callbacks where invoked + at the same time.
++ Own Id: OTP-13491
++ Changed atom 'boolean' fields in #wxMouseState{} to + 'boolean()'.
++ Moved out arguments in wxListCtrl:hitTest to result.
++ Removed no-op functions in wxGauge that have been removed + from wxWidgets-3.1.
++ *** POTENTIAL INCOMPATIBILITY ***
++ Own Id: OTP-13553
+This document describes the changes made to the wxErlang application.
-- Fixed bugs which could cause called functions to be - invoked twice or not at all when callbacks where invoked - at the same time.
-- Own Id: OTP-13491
-- Changed atom 'boolean' fields in #wxMouseState{} to - 'boolean()'.
-- Moved out arguments in wxListCtrl:hitTest to result.
-- Removed no-op functions in wxGauge that have been removed - from wxWidgets-3.1.
-- *** POTENTIAL INCOMPATIBILITY ***
-- Own Id: OTP-13553
-This document describes the changes made to the wxErlang application.
++ Fixed bugs which could cause called functions to be + invoked twice or not at all when callbacks where invoked + at the same time.
++ Own Id: OTP-13491
++ Changed atom 'boolean' fields in #wxMouseState{} to + 'boolean()'.
++ Moved out arguments in wxListCtrl:hitTest to result.
++ Removed no-op functions in wxGauge that have been removed + from wxWidgets-3.1.
++ *** POTENTIAL INCOMPATIBILITY ***
++ Own Id: OTP-13553
+This document describes the changes made to the wxErlang application.
-- Fixed bugs which could cause called functions to be - invoked twice or not at all when callbacks where invoked - at the same time.
-- Own Id: OTP-13491
-- Changed atom 'boolean' fields in #wxMouseState{} to - 'boolean()'.
-- Moved out arguments in wxListCtrl:hitTest to result.
-- Removed no-op functions in wxGauge that have been removed - from wxWidgets-3.1.
-- *** POTENTIAL INCOMPATIBILITY ***
-- Own Id: OTP-13553
-This document describes the changes made to the wxErlang application.
++ Fixed bugs which could cause called functions to be + invoked twice or not at all when callbacks where invoked + at the same time.
++ Own Id: OTP-13491
++ Changed atom 'boolean' fields in #wxMouseState{} to + 'boolean()'.
++ Moved out arguments in wxListCtrl:hitTest to result.
++ Removed no-op functions in wxGauge that have been removed + from wxWidgets-3.1.
++ *** POTENTIAL INCOMPATIBILITY ***
++ Own Id: OTP-13553
+