pcbjam/tests/apps/minimal_test.cpp
Gergő Törcsvári 7dfd4f1834
docs 22 D-on probe + app-quit teardown spec; bump wx (alignment) + kicad (root identity)
The D-on probe (wxWASM_STAR_DISPATCH=1 on top of D5) is measured and
recorded in doc 22 §10: the week's 'environmental cliff' was adopted-fiber-
stack alignment (trap 1, fixed in wx - retires the D5 entry's findings 2-3
with a mechanism); with it fixed D5+D reached 388 passed; the remaining
reds decompose into three named Phase B gaps (wake ordering on a running
context, finished-coroutine transfer livelock, invocation-aware root
routing), each with a deterministic repro suite. D parks again behind the
switch until Phase B owns coroutine lifetimes.

app-quit.spec.ts + a wx_test_quit hook in minimal_test drive a real
File->Quit-shaped exit through D5's detached teardown (loop exits on its
context, S6 latch 'clean', OnExit + wxUninitialize there) - green in the
D-on probe, closing the D5 teardown-gate open item.

Landing state (D off): coroutine + coroutine-pthread + app-quit green;
nested red at case 3 in the pre-existing doc-19 wake-window family
(cases 1-2, yesterday's blockers, now pass); races wakeup_during_transition
stays layout-sensitive. Both are the class the C+B+E flip removes.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01LBjomQfKyRa3jBdeAKpmTw
2026-08-10 10:14:18 +02:00

920 lines
30 KiB
C++

// Comprehensive wxWidgets WASM Test Application
// Purpose: Verify wxWidgets WASM port with full widget coverage and interaction testing
#include "wx/wxprec.h"
#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif
#include "wx/notebook.h"
#include "wx/tglbtn.h"
#include "wx/listbox.h"
#include "wx/choice.h"
#include "wx/combobox.h"
#include "wx/slider.h"
#include "wx/gauge.h"
#include "wx/dcbuffer.h"
#include "wx/datetime.h"
#include "wx/grid.h"
#include "wx/spinctrl.h"
#include "wx/srchctrl.h"
#include <emscripten.h>
#include <vector>
// Quit hook for the app-quit teardown spec (docs/features/async/22 D5): close
// the main frame exactly as File->Quit would, so the spec can drive a real
// app exit through the detached main-loop teardown path from JS.
extern "C" void EMSCRIPTEN_KEEPALIVE wx_test_quit()
{
if (wxTheApp && wxTheApp->GetTopWindow())
wxTheApp->GetTopWindow()->Close(true);
}
// Control IDs
enum {
ID_BTN_TEST = wxID_HIGHEST + 1,
ID_BTN_TOGGLE,
ID_CHK_FEATURE,
ID_RADIO_OPTIONS,
ID_SLIDER,
ID_GAUGE,
ID_TEXT_SINGLE,
ID_TEXT_MULTI,
ID_TEXT_PASSWORD,
ID_COMBO,
ID_LISTBOX,
ID_CHOICE,
ID_BTN_ADD_ITEM,
ID_BTN_REMOVE_ITEM,
ID_BTN_CLEAR,
ID_EVENT_LOG,
ID_DRAWING_PANEL,
// Grid tab IDs
ID_GRID,
ID_SPIN_CTRL,
ID_SEARCH_CTRL,
// Dialogs tab IDs
ID_BTN_MSGBOX_INFO,
ID_BTN_MSGBOX_YESNO,
ID_BTN_MSGBOX_ERROR,
ID_BTN_CUSTOM_DIALOG,
ID_BTN_TIMER_START,
ID_BTN_TIMER_STOP,
ID_TIMER
};
// Forward declarations
class TestFrame;
// Global pointer for logging from child panels
TestFrame* g_frame = nullptr;
//-----------------------------------------------------------------------------
// DrawingPanel - Custom drawing canvas for mouse interaction testing
//-----------------------------------------------------------------------------
class DrawingPanel : public wxPanel
{
public:
DrawingPanel(wxWindow* parent);
void Clear();
private:
std::vector<std::vector<wxPoint>> m_strokes; // Collection of strokes
std::vector<wxPoint> m_currentStroke; // Current stroke being drawn
bool m_drawing;
void OnPaint(wxPaintEvent& evt);
void OnMouseDown(wxMouseEvent& evt);
void OnMouseMove(wxMouseEvent& evt);
void OnMouseUp(wxMouseEvent& evt);
void OnMouseEnter(wxMouseEvent& evt);
void OnMouseLeave(wxMouseEvent& evt);
wxDECLARE_EVENT_TABLE();
};
wxBEGIN_EVENT_TABLE(DrawingPanel, wxPanel)
EVT_PAINT(DrawingPanel::OnPaint)
EVT_LEFT_DOWN(DrawingPanel::OnMouseDown)
EVT_LEFT_UP(DrawingPanel::OnMouseUp)
EVT_MOTION(DrawingPanel::OnMouseMove)
EVT_ENTER_WINDOW(DrawingPanel::OnMouseEnter)
EVT_LEAVE_WINDOW(DrawingPanel::OnMouseLeave)
wxEND_EVENT_TABLE()
DrawingPanel::DrawingPanel(wxWindow* parent)
: wxPanel(parent, ID_DRAWING_PANEL, wxDefaultPosition, wxSize(400, 300),
wxBORDER_SIMPLE | wxFULL_REPAINT_ON_RESIZE)
, m_drawing(false)
{
SetBackgroundColour(*wxWHITE);
SetBackgroundStyle(wxBG_STYLE_PAINT);
}
void DrawingPanel::Clear()
{
m_strokes.clear();
m_currentStroke.clear();
m_drawing = false;
Refresh();
}
void DrawingPanel::OnPaint(wxPaintEvent& WXUNUSED(evt))
{
wxBufferedPaintDC dc(this);
dc.SetBackground(*wxWHITE_BRUSH);
dc.Clear();
// Draw instructions
dc.SetTextForeground(wxColour(150, 150, 150));
dc.DrawText("Draw here with mouse", 10, 10);
// Draw all completed strokes
dc.SetPen(wxPen(*wxBLACK, 2));
for (const auto& stroke : m_strokes) {
if (stroke.size() > 1) {
for (size_t i = 1; i < stroke.size(); ++i) {
dc.DrawLine(stroke[i-1], stroke[i]);
}
}
}
// Draw current stroke
if (m_currentStroke.size() > 1) {
dc.SetPen(wxPen(*wxBLUE, 2));
for (size_t i = 1; i < m_currentStroke.size(); ++i) {
dc.DrawLine(m_currentStroke[i-1], m_currentStroke[i]);
}
}
}
// TestFrame - Main application frame
//-----------------------------------------------------------------------------
class TestFrame : public wxFrame
{
public:
TestFrame(const wxString& title);
void LogEvent(const wxString& msg);
private:
wxNotebook* m_notebook;
wxListBox* m_eventLog;
wxGauge* m_gauge;
wxTextCtrl* m_textSingle;
wxTextCtrl* m_textMulti;
DrawingPanel* m_drawingPanel;
wxListBox* m_listBox;
// Grid tab controls
wxGrid* m_grid;
wxSpinCtrl* m_spinCtrl;
wxSearchCtrl* m_searchCtrl;
// Dialogs tab controls
wxTimer* m_timer;
wxStaticText* m_timerLabel;
int m_timerCount;
// Create tab pages
wxPanel* CreateControlsPage(wxNotebook* parent);
wxPanel* CreateTextPage(wxNotebook* parent);
wxPanel* CreateDrawingPage(wxNotebook* parent);
wxPanel* CreateListsPage(wxNotebook* parent);
wxPanel* CreateGridPage(wxNotebook* parent);
wxPanel* CreateDialogsPage(wxNotebook* parent);
// Event handlers
void OnQuit(wxCommandEvent& evt);
void OnAbout(wxCommandEvent& evt);
void OnButtonClick(wxCommandEvent& evt);
void OnToggleButton(wxCommandEvent& evt);
void OnCheckBox(wxCommandEvent& evt);
void OnRadioBox(wxCommandEvent& evt);
void OnSlider(wxCommandEvent& evt);
void OnTextChange(wxCommandEvent& evt);
void OnTextEnter(wxCommandEvent& evt);
void OnComboSelect(wxCommandEvent& evt);
void OnListBoxSelect(wxCommandEvent& evt);
void OnChoiceSelect(wxCommandEvent& evt);
void OnAddItem(wxCommandEvent& evt);
void OnRemoveItem(wxCommandEvent& evt);
void OnClearDrawing(wxCommandEvent& evt);
void OnNotebookPageChanged(wxBookCtrlEvent& evt);
// Grid tab event handlers
void OnGridCellChange(wxGridEvent& evt);
void OnGridCellSelect(wxGridEvent& evt);
void OnSpinCtrl(wxSpinEvent& evt);
void OnSearchCtrl(wxCommandEvent& evt);
void OnSearchCtrlEnter(wxCommandEvent& evt);
// Dialogs tab event handlers
void OnMsgBoxInfo(wxCommandEvent& evt);
void OnMsgBoxYesNo(wxCommandEvent& evt);
void OnMsgBoxError(wxCommandEvent& evt);
void OnCustomDialog(wxCommandEvent& evt);
void OnTimerStart(wxCommandEvent& evt);
void OnTimerStop(wxCommandEvent& evt);
void OnTimer(wxTimerEvent& evt);
wxDECLARE_EVENT_TABLE();
};
wxBEGIN_EVENT_TABLE(TestFrame, wxFrame)
EVT_MENU(wxID_EXIT, TestFrame::OnQuit)
EVT_MENU(wxID_ABOUT, TestFrame::OnAbout)
EVT_BUTTON(ID_BTN_TEST, TestFrame::OnButtonClick)
EVT_TOGGLEBUTTON(ID_BTN_TOGGLE, TestFrame::OnToggleButton)
EVT_CHECKBOX(ID_CHK_FEATURE, TestFrame::OnCheckBox)
EVT_RADIOBOX(ID_RADIO_OPTIONS, TestFrame::OnRadioBox)
EVT_SLIDER(ID_SLIDER, TestFrame::OnSlider)
EVT_TEXT(ID_TEXT_SINGLE, TestFrame::OnTextChange)
EVT_TEXT_ENTER(ID_TEXT_SINGLE, TestFrame::OnTextEnter)
EVT_COMBOBOX(ID_COMBO, TestFrame::OnComboSelect)
EVT_LISTBOX(ID_LISTBOX, TestFrame::OnListBoxSelect)
EVT_CHOICE(ID_CHOICE, TestFrame::OnChoiceSelect)
EVT_BUTTON(ID_BTN_ADD_ITEM, TestFrame::OnAddItem)
EVT_BUTTON(ID_BTN_REMOVE_ITEM, TestFrame::OnRemoveItem)
EVT_BUTTON(ID_BTN_CLEAR, TestFrame::OnClearDrawing)
EVT_NOTEBOOK_PAGE_CHANGED(wxID_ANY, TestFrame::OnNotebookPageChanged)
// Grid tab events
EVT_GRID_CELL_CHANGED(TestFrame::OnGridCellChange)
EVT_GRID_SELECT_CELL(TestFrame::OnGridCellSelect)
EVT_SPINCTRL(ID_SPIN_CTRL, TestFrame::OnSpinCtrl)
EVT_SEARCHCTRL_SEARCH_BTN(ID_SEARCH_CTRL, TestFrame::OnSearchCtrl)
EVT_TEXT_ENTER(ID_SEARCH_CTRL, TestFrame::OnSearchCtrlEnter)
// Dialogs tab events
EVT_BUTTON(ID_BTN_MSGBOX_INFO, TestFrame::OnMsgBoxInfo)
EVT_BUTTON(ID_BTN_MSGBOX_YESNO, TestFrame::OnMsgBoxYesNo)
EVT_BUTTON(ID_BTN_MSGBOX_ERROR, TestFrame::OnMsgBoxError)
EVT_BUTTON(ID_BTN_CUSTOM_DIALOG, TestFrame::OnCustomDialog)
EVT_BUTTON(ID_BTN_TIMER_START, TestFrame::OnTimerStart)
EVT_BUTTON(ID_BTN_TIMER_STOP, TestFrame::OnTimerStop)
EVT_TIMER(ID_TIMER, TestFrame::OnTimer)
wxEND_EVENT_TABLE()
TestFrame::TestFrame(const wxString& title)
: wxFrame(nullptr, wxID_ANY, title, wxDefaultPosition, wxSize(640, 480))
{
g_frame = this;
// Menu bar
wxMenu* menuFile = new wxMenu;
menuFile->Append(wxID_EXIT, "E&xit\tAlt-X", "Quit the application");
wxMenu* menuHelp = new wxMenu;
menuHelp->Append(wxID_ABOUT, "&About\tF1", "Show about dialog");
wxMenuBar* menuBar = new wxMenuBar;
menuBar->Append(menuFile, "&File");
menuBar->Append(menuHelp, "&Help");
SetMenuBar(menuBar);
// Status bar
CreateStatusBar(2);
SetStatusText("Ready");
// Main layout: notebook on top, event log on bottom
wxBoxSizer* mainSizer = new wxBoxSizer(wxVERTICAL);
// Notebook with tabs
m_notebook = new wxNotebook(this, wxID_ANY);
m_notebook->AddPage(CreateControlsPage(m_notebook), "Controls");
m_notebook->AddPage(CreateTextPage(m_notebook), "Text Input");
m_notebook->AddPage(CreateDrawingPage(m_notebook), "Drawing");
m_notebook->AddPage(CreateListsPage(m_notebook), "Lists");
m_notebook->AddPage(CreateGridPage(m_notebook), "Grid");
m_notebook->AddPage(CreateDialogsPage(m_notebook), "Dialogs");
mainSizer->Add(m_notebook, 1, wxEXPAND | wxALL, 5);
// Event log panel
wxStaticBox* logBox = new wxStaticBox(this, wxID_ANY, "Event Log");
wxStaticBoxSizer* logSizer = new wxStaticBoxSizer(logBox, wxVERTICAL);
m_eventLog = new wxListBox(this, ID_EVENT_LOG, wxDefaultPosition, wxSize(-1, 100));
logSizer->Add(m_eventLog, 1, wxEXPAND);
mainSizer->Add(logSizer, 0, wxEXPAND | wxLEFT | wxRIGHT | wxBOTTOM, 5);
SetSizer(mainSizer);
LogEvent("Application started");
}
void TestFrame::LogEvent(const wxString& msg)
{
// No wall-clock prefix: the log is screenshot-baselined, and a timestamp
// makes every Event-Log shot diff on every run.
wxString fullMsg = msg;
// Add to listbox
m_eventLog->Append(fullMsg);
// Keep max 100 entries
while (m_eventLog->GetCount() > 100) {
m_eventLog->Delete(0);
}
// Scroll to bottom
m_eventLog->SetSelection(m_eventLog->GetCount() - 1);
m_eventLog->SetSelection(wxNOT_FOUND);
// Also log to console for Playwright testing
wxPrintf("[EVENT] %s\n", msg);
fflush(stdout);
// Update status bar
SetStatusText(msg, 1);
}
wxPanel* TestFrame::CreateControlsPage(wxNotebook* parent)
{
wxPanel* panel = new wxPanel(parent);
wxBoxSizer* mainSizer = new wxBoxSizer(wxVERTICAL);
// Row 1: Buttons
wxStaticBox* btnBox = new wxStaticBox(panel, wxID_ANY, "Buttons");
wxStaticBoxSizer* btnSizer = new wxStaticBoxSizer(btnBox, wxHORIZONTAL);
wxButton* btnTest = new wxButton(panel, ID_BTN_TEST, "Click Me");
btnSizer->Add(btnTest, 0, wxALL, 5);
wxToggleButton* btnToggle = new wxToggleButton(panel, ID_BTN_TOGGLE, "Toggle");
btnSizer->Add(btnToggle, 0, wxALL, 5);
mainSizer->Add(btnSizer, 0, wxEXPAND | wxALL, 5);
// Row 2: Checkbox and Radio
wxBoxSizer* row2Sizer = new wxBoxSizer(wxHORIZONTAL);
wxCheckBox* chkFeature = new wxCheckBox(panel, ID_CHK_FEATURE, "Enable feature");
row2Sizer->Add(chkFeature, 0, wxALL | wxALIGN_CENTER_VERTICAL, 5);
wxString radioChoices[] = { "Option A", "Option B", "Option C" };
wxRadioBox* radioBox = new wxRadioBox(panel, ID_RADIO_OPTIONS, "Options",
wxDefaultPosition, wxDefaultSize, 3, radioChoices, 1, wxRA_SPECIFY_ROWS);
row2Sizer->Add(radioBox, 0, wxALL, 5);
mainSizer->Add(row2Sizer, 0, wxEXPAND);
// Row 3: Slider and Gauge
wxStaticBox* rangeBox = new wxStaticBox(panel, wxID_ANY, "Range Controls");
wxStaticBoxSizer* rangeSizer = new wxStaticBoxSizer(rangeBox, wxVERTICAL);
wxBoxSizer* sliderRow = new wxBoxSizer(wxHORIZONTAL);
sliderRow->Add(new wxStaticText(panel, wxID_ANY, "Slider:"), 0, wxALL | wxALIGN_CENTER_VERTICAL, 5);
wxSlider* slider = new wxSlider(panel, ID_SLIDER, 50, 0, 100,
wxDefaultPosition, wxSize(200, -1));
sliderRow->Add(slider, 1, wxALL, 5);
rangeSizer->Add(sliderRow, 0, wxEXPAND);
wxBoxSizer* gaugeRow = new wxBoxSizer(wxHORIZONTAL);
gaugeRow->Add(new wxStaticText(panel, wxID_ANY, "Gauge:"), 0, wxALL | wxALIGN_CENTER_VERTICAL, 5);
m_gauge = new wxGauge(panel, ID_GAUGE, 100, wxDefaultPosition, wxSize(200, -1));
m_gauge->SetValue(50);
gaugeRow->Add(m_gauge, 1, wxALL, 5);
rangeSizer->Add(gaugeRow, 0, wxEXPAND);
mainSizer->Add(rangeSizer, 0, wxEXPAND | wxALL, 5);
panel->SetSizer(mainSizer);
return panel;
}
wxPanel* TestFrame::CreateTextPage(wxNotebook* parent)
{
wxPanel* panel = new wxPanel(parent);
wxBoxSizer* mainSizer = new wxBoxSizer(wxVERTICAL);
// Single-line text
wxBoxSizer* singleRow = new wxBoxSizer(wxHORIZONTAL);
singleRow->Add(new wxStaticText(panel, wxID_ANY, "Single-line:"), 0,
wxALL | wxALIGN_CENTER_VERTICAL, 5);
m_textSingle = new wxTextCtrl(panel, ID_TEXT_SINGLE, "",
wxDefaultPosition, wxSize(200, -1), wxTE_PROCESS_ENTER);
singleRow->Add(m_textSingle, 1, wxALL, 5);
mainSizer->Add(singleRow, 0, wxEXPAND);
// Multi-line text
wxStaticBox* multiBox = new wxStaticBox(panel, wxID_ANY, "Multi-line:");
wxStaticBoxSizer* multiSizer = new wxStaticBoxSizer(multiBox, wxVERTICAL);
m_textMulti = new wxTextCtrl(panel, ID_TEXT_MULTI, "",
wxDefaultPosition, wxSize(-1, 100), wxTE_MULTILINE);
multiSizer->Add(m_textMulti, 1, wxEXPAND | wxALL, 5);
mainSizer->Add(multiSizer, 1, wxEXPAND | wxALL, 5);
// Password field
wxBoxSizer* passRow = new wxBoxSizer(wxHORIZONTAL);
passRow->Add(new wxStaticText(panel, wxID_ANY, "Password:"), 0,
wxALL | wxALIGN_CENTER_VERTICAL, 5);
wxTextCtrl* textPass = new wxTextCtrl(panel, ID_TEXT_PASSWORD, "",
wxDefaultPosition, wxSize(200, -1), wxTE_PASSWORD);
passRow->Add(textPass, 0, wxALL, 5);
mainSizer->Add(passRow, 0, wxEXPAND);
// ComboBox
wxBoxSizer* comboRow = new wxBoxSizer(wxHORIZONTAL);
comboRow->Add(new wxStaticText(panel, wxID_ANY, "ComboBox:"), 0,
wxALL | wxALIGN_CENTER_VERTICAL, 5);
wxString comboChoices[] = { "Choice 1", "Choice 2", "Choice 3" };
wxComboBox* combo = new wxComboBox(panel, ID_COMBO, "",
wxDefaultPosition, wxSize(150, -1), 3, comboChoices);
comboRow->Add(combo, 0, wxALL, 5);
mainSizer->Add(comboRow, 0, wxEXPAND);
panel->SetSizer(mainSizer);
return panel;
}
wxPanel* TestFrame::CreateDrawingPage(wxNotebook* parent)
{
wxPanel* panel = new wxPanel(parent);
wxBoxSizer* mainSizer = new wxBoxSizer(wxVERTICAL);
// Instructions
mainSizer->Add(new wxStaticText(panel, wxID_ANY,
"Click and drag to draw. Mouse events are logged."),
0, wxALL, 10);
// Drawing canvas
m_drawingPanel = new DrawingPanel(panel);
mainSizer->Add(m_drawingPanel, 1, wxEXPAND | wxALL, 10);
// Clear button
wxButton* btnClear = new wxButton(panel, ID_BTN_CLEAR, "Clear Canvas");
mainSizer->Add(btnClear, 0, wxALL | wxALIGN_CENTER_HORIZONTAL, 10);
panel->SetSizer(mainSizer);
return panel;
}
wxPanel* TestFrame::CreateListsPage(wxNotebook* parent)
{
wxPanel* panel = new wxPanel(parent);
wxBoxSizer* mainSizer = new wxBoxSizer(wxHORIZONTAL);
// ListBox section
wxStaticBox* listBoxGroup = new wxStaticBox(panel, wxID_ANY, "ListBox");
wxStaticBoxSizer* listBoxSizer = new wxStaticBoxSizer(listBoxGroup, wxVERTICAL);
wxString listItems[] = { "Item 1", "Item 2", "Item 3", "Item 4", "Item 5" };
m_listBox = new wxListBox(panel, ID_LISTBOX, wxDefaultPosition,
wxSize(150, 150), 5, listItems);
listBoxSizer->Add(m_listBox, 1, wxEXPAND | wxALL, 5);
wxBoxSizer* listBtnSizer = new wxBoxSizer(wxHORIZONTAL);
listBtnSizer->Add(new wxButton(panel, ID_BTN_ADD_ITEM, "Add"), 0, wxALL, 2);
listBtnSizer->Add(new wxButton(panel, ID_BTN_REMOVE_ITEM, "Remove"), 0, wxALL, 2);
listBoxSizer->Add(listBtnSizer, 0, wxALIGN_CENTER);
mainSizer->Add(listBoxSizer, 1, wxEXPAND | wxALL, 10);
// Choice section
wxStaticBox* choiceGroup = new wxStaticBox(panel, wxID_ANY, "Choice");
wxStaticBoxSizer* choiceSizer = new wxStaticBoxSizer(choiceGroup, wxVERTICAL);
wxString choiceItems[] = { "Red", "Green", "Blue", "Yellow", "Purple" };
wxChoice* choice = new wxChoice(panel, ID_CHOICE, wxDefaultPosition,
wxSize(150, -1), 5, choiceItems);
choiceSizer->Add(choice, 0, wxALL, 5);
choiceSizer->Add(new wxStaticText(panel, wxID_ANY,
"Select a color from\nthe dropdown above."), 0, wxALL, 5);
mainSizer->Add(choiceSizer, 1, wxEXPAND | wxALL, 10);
panel->SetSizer(mainSizer);
return panel;
}
wxPanel* TestFrame::CreateGridPage(wxNotebook* parent)
{
wxPanel* panel = new wxPanel(parent);
wxBoxSizer* mainSizer = new wxBoxSizer(wxVERTICAL);
// Description
wxStaticText* desc = new wxStaticText(panel, wxID_ANY,
"Advanced Controls Test\n"
"Tests wxSpinCtrl and wxSearchCtrl which KiCad uses extensively.\n"
"NOTE: wxGrid is NOT YET SUPPORTED in WASM (causes function signature mismatch crash).");
mainSizer->Add(desc, 0, wxALL, 10);
// wxGrid - DISABLED: causes "function signature mismatch" crash in WASM
// This needs to be fixed in wxWidgets WASM port before we can test it
/*
wxStaticBox* gridBox = new wxStaticBox(panel, wxID_ANY, "wxGrid (editable cells)");
wxStaticBoxSizer* gridSizer = new wxStaticBoxSizer(gridBox, wxVERTICAL);
m_grid = new wxGrid(panel, ID_GRID, wxDefaultPosition, wxSize(400, 150));
m_grid->CreateGrid(5, 4);
// ... grid setup ...
gridSizer->Add(m_grid, 1, wxEXPAND | wxALL, 5);
mainSizer->Add(gridSizer, 1, wxEXPAND | wxALL, 5);
*/
m_grid = nullptr; // wxGrid not supported in WASM yet
// Row with wxSpinCtrl and wxSearchCtrl
wxBoxSizer* controlRow = new wxBoxSizer(wxHORIZONTAL);
// wxSpinCtrl
wxStaticBox* spinBox = new wxStaticBox(panel, wxID_ANY, "wxSpinCtrl");
wxStaticBoxSizer* spinSizer = new wxStaticBoxSizer(spinBox, wxHORIZONTAL);
spinSizer->Add(new wxStaticText(panel, wxID_ANY, "Value (0-100):"), 0,
wxALL | wxALIGN_CENTER_VERTICAL, 5);
m_spinCtrl = new wxSpinCtrl(panel, ID_SPIN_CTRL, "50",
wxDefaultPosition, wxSize(80, -1), wxSP_ARROW_KEYS, 0, 100, 50);
spinSizer->Add(m_spinCtrl, 0, wxALL, 5);
controlRow->Add(spinSizer, 0, wxALL, 5);
// wxSearchCtrl
wxStaticBox* searchBox = new wxStaticBox(panel, wxID_ANY, "wxSearchCtrl");
wxStaticBoxSizer* searchSizer = new wxStaticBoxSizer(searchBox, wxHORIZONTAL);
m_searchCtrl = new wxSearchCtrl(panel, ID_SEARCH_CTRL, "",
wxDefaultPosition, wxSize(200, -1), wxTE_PROCESS_ENTER);
m_searchCtrl->ShowSearchButton(true);
m_searchCtrl->ShowCancelButton(true);
m_searchCtrl->SetDescriptiveText("Search...");
searchSizer->Add(m_searchCtrl, 1, wxALL | wxEXPAND, 5);
controlRow->Add(searchSizer, 1, wxALL | wxEXPAND, 5);
mainSizer->Add(controlRow, 0, wxEXPAND);
panel->SetSizer(mainSizer);
return panel;
}
// Event handlers
void TestFrame::OnQuit(wxCommandEvent& WXUNUSED(evt))
{
Close(true);
}
void TestFrame::OnAbout(wxCommandEvent& WXUNUSED(evt))
{
wxMessageBox("wxWidgets WASM Comprehensive Test\n\n"
"This application tests various wxWidgets controls\n"
"running in WebAssembly via wxUniversal.",
"About", wxOK | wxICON_INFORMATION, this);
}
void TestFrame::OnButtonClick(wxCommandEvent& WXUNUSED(evt))
{
LogEvent("Button 'Click Me' clicked");
}
void TestFrame::OnToggleButton(wxCommandEvent& evt)
{
bool pressed = evt.IsChecked();
LogEvent(wxString::Format("Toggle button %s", pressed ? "pressed" : "released"));
}
void TestFrame::OnCheckBox(wxCommandEvent& evt)
{
bool checked = evt.IsChecked();
LogEvent(wxString::Format("Checkbox toggled: %s", checked ? "checked" : "unchecked"));
}
void TestFrame::OnRadioBox(wxCommandEvent& evt)
{
int sel = evt.GetSelection();
wxString option = wxString::Format("Option %c", 'A' + sel);
LogEvent(wxString::Format("Radio selection: %s", option));
}
void TestFrame::OnSlider(wxCommandEvent& evt)
{
int value = evt.GetInt();
m_gauge->SetValue(value);
LogEvent(wxString::Format("Slider value: %d", value));
}
void TestFrame::OnTextChange(wxCommandEvent& evt)
{
wxString text = evt.GetString();
LogEvent(wxString::Format("Text changed: \"%s\"", text));
}
void TestFrame::OnTextEnter(wxCommandEvent& evt)
{
wxString text = evt.GetString();
LogEvent(wxString::Format("Text entered (Enter pressed): \"%s\"", text));
}
void TestFrame::OnComboSelect(wxCommandEvent& evt)
{
wxString selection = evt.GetString();
LogEvent(wxString::Format("ComboBox selected: %s", selection));
}
void TestFrame::OnListBoxSelect(wxCommandEvent& evt)
{
wxString selection = evt.GetString();
LogEvent(wxString::Format("ListBox selected: %s", selection));
}
void TestFrame::OnChoiceSelect(wxCommandEvent& evt)
{
wxString selection = evt.GetString();
LogEvent(wxString::Format("Choice selected: %s", selection));
}
void TestFrame::OnAddItem(wxCommandEvent& WXUNUSED(evt))
{
static int itemCount = 5;
wxString newItem = wxString::Format("Item %d", ++itemCount);
m_listBox->Append(newItem);
LogEvent(wxString::Format("Added item: %s", newItem));
}
void TestFrame::OnRemoveItem(wxCommandEvent& WXUNUSED(evt))
{
int sel = m_listBox->GetSelection();
if (sel != wxNOT_FOUND) {
wxString item = m_listBox->GetString(sel);
m_listBox->Delete(sel);
LogEvent(wxString::Format("Removed item: %s", item));
} else {
LogEvent("Remove: No item selected");
}
}
void TestFrame::OnClearDrawing(wxCommandEvent& WXUNUSED(evt))
{
m_drawingPanel->Clear();
LogEvent("Drawing canvas cleared");
}
void TestFrame::OnNotebookPageChanged(wxBookCtrlEvent& evt)
{
int page = evt.GetSelection();
wxString pageName = m_notebook->GetPageText(page);
LogEvent(wxString::Format("Tab changed to: %s", pageName));
evt.Skip();
}
// Grid tab event handlers
void TestFrame::OnGridCellChange(wxGridEvent& evt)
{
if (!m_grid) { evt.Skip(); return; } // wxGrid not supported in WASM
int row = evt.GetRow();
int col = evt.GetCol();
wxString value = m_grid->GetCellValue(row, col);
LogEvent(wxString::Format("Grid cell changed: [%d,%d] = \"%s\"", row, col, value));
evt.Skip();
}
void TestFrame::OnGridCellSelect(wxGridEvent& evt)
{
if (!m_grid) { evt.Skip(); return; } // wxGrid not supported in WASM
int row = evt.GetRow();
int col = evt.GetCol();
wxString value = m_grid->GetCellValue(row, col);
LogEvent(wxString::Format("Grid cell selected: [%d,%d] \"%s\"", row, col, value));
evt.Skip();
}
void TestFrame::OnSpinCtrl(wxSpinEvent& evt)
{
int value = evt.GetValue();
LogEvent(wxString::Format("SpinCtrl value: %d", value));
}
void TestFrame::OnSearchCtrl(wxCommandEvent& evt)
{
wxString text = m_searchCtrl->GetValue();
LogEvent(wxString::Format("Search button clicked: \"%s\"", text));
}
void TestFrame::OnSearchCtrlEnter(wxCommandEvent& evt)
{
wxString text = evt.GetString();
LogEvent(wxString::Format("Search Enter pressed: \"%s\"", text));
}
// DrawingPanel event handlers (defined after TestFrame for g_frame access)
void DrawingPanel::OnMouseDown(wxMouseEvent& evt)
{
m_drawing = true;
m_currentStroke.clear();
m_currentStroke.push_back(evt.GetPosition());
CaptureMouse();
if (g_frame) {
g_frame->LogEvent(wxString::Format("Mouse down at (%d, %d)",
evt.GetX(), evt.GetY()));
}
}
void DrawingPanel::OnMouseMove(wxMouseEvent& evt)
{
if (m_drawing) {
m_currentStroke.push_back(evt.GetPosition());
Refresh();
}
}
void DrawingPanel::OnMouseUp(wxMouseEvent& evt)
{
if (m_drawing) {
m_drawing = false;
if (HasCapture()) {
ReleaseMouse();
}
// Save the completed stroke
if (m_currentStroke.size() > 1) {
m_strokes.push_back(m_currentStroke);
}
m_currentStroke.clear();
Refresh();
if (g_frame) {
g_frame->LogEvent(wxString::Format("Mouse up at (%d, %d) - stroke completed",
evt.GetX(), evt.GetY()));
}
}
}
void DrawingPanel::OnMouseEnter(wxMouseEvent& WXUNUSED(evt))
{
if (g_frame) {
g_frame->LogEvent("Mouse entered drawing canvas");
}
}
void DrawingPanel::OnMouseLeave(wxMouseEvent& WXUNUSED(evt))
{
if (g_frame) {
g_frame->LogEvent("Mouse left drawing canvas");
}
}
//-----------------------------------------------------------------------------
// CreateDialogsPage - Dialogs tab with message boxes and timer
//-----------------------------------------------------------------------------
wxPanel* TestFrame::CreateDialogsPage(wxNotebook* parent)
{
wxPanel* panel = new wxPanel(parent);
wxBoxSizer* mainSizer = new wxBoxSizer(wxVERTICAL);
// Description
wxStaticText* desc = new wxStaticText(panel, wxID_ANY,
"Dialog and Timer Tests\n"
"Tests wxMessageBox, wxDialog, and wxTimer which KiCad uses for alerts and animations.");
mainSizer->Add(desc, 0, wxALL, 10);
// Message Box section
wxStaticBox* msgBox = new wxStaticBox(panel, wxID_ANY, "wxMessageBox");
wxStaticBoxSizer* msgSizer = new wxStaticBoxSizer(msgBox, wxHORIZONTAL);
wxButton* btnInfo = new wxButton(panel, ID_BTN_MSGBOX_INFO, "Info Dialog");
wxButton* btnYesNo = new wxButton(panel, ID_BTN_MSGBOX_YESNO, "Yes/No Dialog");
wxButton* btnError = new wxButton(panel, ID_BTN_MSGBOX_ERROR, "Error Dialog");
msgSizer->Add(btnInfo, 0, wxALL, 5);
msgSizer->Add(btnYesNo, 0, wxALL, 5);
msgSizer->Add(btnError, 0, wxALL, 5);
mainSizer->Add(msgSizer, 0, wxEXPAND | wxALL, 10);
// Custom Dialog section
wxStaticBox* dlgBox = new wxStaticBox(panel, wxID_ANY, "wxDialog");
wxStaticBoxSizer* dlgSizer = new wxStaticBoxSizer(dlgBox, wxHORIZONTAL);
wxButton* btnCustom = new wxButton(panel, ID_BTN_CUSTOM_DIALOG, "Open Custom Dialog");
dlgSizer->Add(btnCustom, 0, wxALL, 5);
dlgSizer->Add(new wxStaticText(panel, wxID_ANY,
"Opens a modal dialog with OK/Cancel buttons"), 0, wxALL | wxALIGN_CENTER_VERTICAL, 5);
mainSizer->Add(dlgSizer, 0, wxEXPAND | wxALL, 10);
// Timer section
wxStaticBox* timerBox = new wxStaticBox(panel, wxID_ANY, "wxTimer");
wxStaticBoxSizer* timerSizer = new wxStaticBoxSizer(timerBox, wxVERTICAL);
wxBoxSizer* timerBtnSizer = new wxBoxSizer(wxHORIZONTAL);
wxButton* btnStart = new wxButton(panel, ID_BTN_TIMER_START, "Start Timer");
wxButton* btnStop = new wxButton(panel, ID_BTN_TIMER_STOP, "Stop Timer");
timerBtnSizer->Add(btnStart, 0, wxALL, 5);
timerBtnSizer->Add(btnStop, 0, wxALL, 5);
timerSizer->Add(timerBtnSizer, 0, wxALIGN_CENTER);
m_timerLabel = new wxStaticText(panel, wxID_ANY, "Timer: 0");
wxFont font = m_timerLabel->GetFont();
font.SetPointSize(16);
m_timerLabel->SetFont(font);
timerSizer->Add(m_timerLabel, 0, wxALL | wxALIGN_CENTER, 10);
mainSizer->Add(timerSizer, 0, wxEXPAND | wxALL, 10);
// Initialize timer
m_timer = new wxTimer(this, ID_TIMER);
m_timerCount = 0;
panel->SetSizer(mainSizer);
return panel;
}
// Dialogs tab event handlers
void TestFrame::OnMsgBoxInfo(wxCommandEvent& WXUNUSED(evt))
{
LogEvent("Showing Info message box");
wxMessageBox("This is an information message.\n\nwxMessageBox is used throughout KiCad for notifications.",
"Information",
wxOK | wxICON_INFORMATION, this);
LogEvent("Info message box closed");
}
void TestFrame::OnMsgBoxYesNo(wxCommandEvent& WXUNUSED(evt))
{
LogEvent("Showing Yes/No message box");
int result = wxMessageBox("Do you want to proceed?\n\nThis tests wxYES_NO style dialogs.",
"Confirm Action",
wxYES_NO | wxICON_QUESTION, this);
LogEvent(wxString::Format("User clicked: %s", result == wxYES ? "Yes" : "No"));
}
void TestFrame::OnMsgBoxError(wxCommandEvent& WXUNUSED(evt))
{
LogEvent("Showing Error message box");
wxMessageBox("An error has occurred!\n\nThis tests wxICON_ERROR style dialogs.",
"Error",
wxOK | wxICON_ERROR, this);
LogEvent("Error message box closed");
}
void TestFrame::OnCustomDialog(wxCommandEvent& WXUNUSED(evt))
{
LogEvent("Opening custom dialog");
// Create a simple custom dialog
wxDialog dlg(this, wxID_ANY, "Custom Dialog",
wxDefaultPosition, wxSize(300, 200));
wxBoxSizer* sizer = new wxBoxSizer(wxVERTICAL);
sizer->Add(new wxStaticText(&dlg, wxID_ANY,
"This is a custom wxDialog.\n\n"
"KiCad uses wxDialog extensively for\n"
"property editors, settings panels, etc."),
1, wxALL | wxEXPAND, 20);
wxBoxSizer* btnSizer = new wxBoxSizer(wxHORIZONTAL);
btnSizer->Add(new wxButton(&dlg, wxID_OK, "OK"), 0, wxALL, 5);
btnSizer->Add(new wxButton(&dlg, wxID_CANCEL, "Cancel"), 0, wxALL, 5);
sizer->Add(btnSizer, 0, wxALIGN_CENTER | wxBOTTOM, 10);
dlg.SetSizer(sizer);
int result = dlg.ShowModal();
LogEvent(wxString::Format("Custom dialog closed with: %s",
result == wxID_OK ? "OK" : "Cancel"));
}
void TestFrame::OnTimerStart(wxCommandEvent& WXUNUSED(evt))
{
if (!m_timer->IsRunning()) {
m_timer->Start(1000); // 1 second interval
LogEvent("Timer started (1 second interval)");
}
}
void TestFrame::OnTimerStop(wxCommandEvent& WXUNUSED(evt))
{
if (m_timer->IsRunning()) {
m_timer->Stop();
LogEvent("Timer stopped");
}
}
void TestFrame::OnTimer(wxTimerEvent& WXUNUSED(evt))
{
m_timerCount++;
m_timerLabel->SetLabel(wxString::Format("Timer: %d", m_timerCount));
LogEvent(wxString::Format("Timer tick: %d", m_timerCount));
}
//-----------------------------------------------------------------------------
// TestApp - Application class
//-----------------------------------------------------------------------------
class TestApp : public wxApp
{
public:
virtual bool OnInit() wxOVERRIDE;
};
wxIMPLEMENT_APP(TestApp);
bool TestApp::OnInit()
{
if (!wxApp::OnInit())
return false;
TestFrame* frame = new TestFrame("wxWidgets WASM Comprehensive Test");
frame->Show(true);
return true;
}