//----------------------------------------------------------------------------- // Copyright 2007 Jonathan Westhues // // This file is part of LDmicro. // // LDmicro is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // LDmicro is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with LDmicro. If not, see . //------ // // Dialog for setting the properties of a relay coils: negated or not, // plus the name, plus set-only or reset-only // Jonathan Westhues, Oct 2004 //----------------------------------------------------------------------------- #include #include //#include #include "ldmicro.h" static HWND CoilDialog; static HWND SourceInternalRelayRadio; static HWND SourceMcuPinRadio; static HWND NegatedRadio; static HWND NormalRadio; static HWND SetOnlyRadio; static HWND ResetOnlyRadio; static HWND NameTextbox; static LONG_PTR PrevNameProc; //----------------------------------------------------------------------------- // Don't allow any characters other than A-Za-z0-9_ in the name. //----------------------------------------------------------------------------- // static LRESULT CALLBACK MyNameProc(HWND hwnd, UINT msg, WPARAM wParam, // LPARAM lParam) // { // if(msg == WM_CHAR) { // if(!(isalpha(wParam) || isdigit(wParam) || wParam == '_' || // wParam == '\b')) // { // return 0; // } // } // return CallWindowProc((WNDPROC)PrevNameProc, hwnd, msg, wParam, lParam); // } // static void MakeControls(void) // { // HWND grouper = CreateWindowEx(0, WC_BUTTON, _("Type"), // WS_CHILD | BS_GROUPBOX | WS_VISIBLE | WS_TABSTOP, // 7, 3, 120, 105, CoilDialog, NULL, Instance, NULL); // NiceFont(grouper); // NormalRadio = CreateWindowEx(0, WC_BUTTON, _("( ) Normal"), // WS_CHILD | BS_AUTORADIOBUTTON | WS_TABSTOP | WS_VISIBLE | WS_GROUP, // 16, 21, 100, 20, CoilDialog, NULL, Instance, NULL); // NiceFont(NormalRadio); // NegatedRadio = CreateWindowEx(0, WC_BUTTON, _("(/) Negated"), // WS_CHILD | BS_AUTORADIOBUTTON | WS_TABSTOP | WS_VISIBLE, // 16, 41, 100, 20, CoilDialog, NULL, Instance, NULL); // NiceFont(NegatedRadio); // SetOnlyRadio = CreateWindowEx(0, WC_BUTTON, _("(S) Set-Only"), // WS_CHILD | BS_AUTORADIOBUTTON | WS_TABSTOP | WS_VISIBLE, // 16, 61, 100, 20, CoilDialog, NULL, Instance, NULL); // NiceFont(SetOnlyRadio); // ResetOnlyRadio = CreateWindowEx(0, WC_BUTTON, _("(R) Reset-Only"), // WS_CHILD | BS_AUTORADIOBUTTON | WS_TABSTOP | WS_VISIBLE, // 16, 81, 105, 20, CoilDialog, NULL, Instance, NULL); // NiceFont(ResetOnlyRadio); // HWND grouper2 = CreateWindowEx(0, WC_BUTTON, _("Source"), // WS_CHILD | BS_GROUPBOX | WS_VISIBLE, // 140, 3, 120, 65, CoilDialog, NULL, Instance, NULL); // NiceFont(grouper2); // SourceInternalRelayRadio = CreateWindowEx(0, WC_BUTTON, _("Internal Relay"), // WS_CHILD | BS_AUTORADIOBUTTON | WS_VISIBLE | WS_GROUP | WS_TABSTOP, // 149, 21, 100, 20, CoilDialog, NULL, Instance, NULL); // NiceFont(SourceInternalRelayRadio); // SourceMcuPinRadio = CreateWindowEx(0, WC_BUTTON, _("Pin on MCU"), // WS_CHILD | BS_AUTORADIOBUTTON | WS_VISIBLE | WS_TABSTOP, // 149, 41, 100, 20, CoilDialog, NULL, Instance, NULL); // NiceFont(SourceMcuPinRadio); // HWND textLabel = CreateWindowEx(0, WC_STATIC, _("Name:"), // WS_CHILD | WS_CLIPSIBLINGS | WS_VISIBLE | SS_RIGHT, // 135, 80, 50, 21, CoilDialog, NULL, Instance, NULL); // NiceFont(textLabel); // NameTextbox = CreateWindowEx(WS_EX_CLIENTEDGE, WC_EDIT, "", // WS_CHILD | ES_AUTOHSCROLL | WS_TABSTOP | WS_CLIPSIBLINGS | WS_VISIBLE, // 190, 80, 155, 21, CoilDialog, NULL, Instance, NULL); // FixedFont(NameTextbox); // OkButton = CreateWindowEx(0, WC_BUTTON, _("OK"), // WS_CHILD | WS_TABSTOP | WS_CLIPSIBLINGS | WS_VISIBLE | BS_DEFPUSHBUTTON, // 276, 10, 70, 23, CoilDialog, NULL, Instance, NULL); // NiceFont(OkButton); // CancelButton = CreateWindowEx(0, WC_BUTTON, _("Cancel"), // WS_CHILD | WS_TABSTOP | WS_CLIPSIBLINGS | WS_VISIBLE, // 276, 40, 70, 23, CoilDialog, NULL, Instance, NULL); // NiceFont(CancelButton); // PrevNameProc = SetWindowLongPtr(NameTextbox, GWLP_WNDPROC, // (LONG_PTR)MyNameProc); // } // void ShowCoilDialog(BOOL *negated, BOOL *setOnly, BOOL *resetOnly, char *name) // { // CoilDialog = CreateWindowClient(0, "LDmicroDialog", // _("Coil"), WS_OVERLAPPED | WS_SYSMENU, // 100, 100, 359, 115, NULL, NULL, Instance, NULL); // RECT r; // GetClientRect(CoilDialog, &r); // MakeControls(); // if(name[0] == 'R') { // SendMessage(SourceInternalRelayRadio, BM_SETCHECK, BST_CHECKED, 0); // } else { // SendMessage(SourceMcuPinRadio, BM_SETCHECK, BST_CHECKED, 0); // } // SendMessage(NameTextbox, WM_SETTEXT, 0, (LPARAM)(name + 1)); // if(*negated) { // SendMessage(NegatedRadio, BM_SETCHECK, BST_CHECKED, 0); // } else if(*setOnly) { // SendMessage(SetOnlyRadio, BM_SETCHECK, BST_CHECKED, 0); // } else if(*resetOnly) { // SendMessage(ResetOnlyRadio, BM_SETCHECK, BST_CHECKED, 0); // } else { // SendMessage(NormalRadio, BM_SETCHECK, BST_CHECKED, 0); // } // EnableWindow(MainWindow, FALSE); // ShowWindow(CoilDialog, TRUE); // SetFocus(NameTextbox); // SendMessage(NameTextbox, EM_SETSEL, 0, -1); // MSG msg; // DWORD ret; // DialogDone = FALSE; // DialogCancel = FALSE; // while((ret = GetMessage(&msg, NULL, 0, 0)) && !DialogDone) { // if(msg.message == WM_KEYDOWN) { // if(msg.wParam == VK_RETURN) { // DialogDone = TRUE; // break; // } else if(msg.wParam == VK_ESCAPE) { // DialogDone = TRUE; // DialogCancel = TRUE; // break; // } // } // if(IsDialogMessage(CoilDialog, &msg)) continue; // TranslateMessage(&msg); // DispatchMessage(&msg); // } // if(!DialogCancel) { // if(SendMessage(SourceInternalRelayRadio, BM_GETSTATE, 0, 0) // & BST_CHECKED) // { // name[0] = 'R'; // } else { // name[0] = 'Y'; // } // SendMessage(NameTextbox, WM_GETTEXT, (WPARAM)16, (LPARAM)(name+1)); // if(SendMessage(NormalRadio, BM_GETSTATE, 0, 0) & BST_CHECKED) { // *negated = FALSE; // *setOnly = FALSE; // *resetOnly = FALSE; // } else if(SendMessage(NegatedRadio, BM_GETSTATE, 0, 0) & BST_CHECKED) { // *negated = TRUE; // *setOnly = FALSE; // *resetOnly = FALSE; // } else if(SendMessage(SetOnlyRadio, BM_GETSTATE, 0, 0) & BST_CHECKED) { // *negated = FALSE; // *setOnly = TRUE; // *resetOnly = FALSE; // } else if(SendMessage(ResetOnlyRadio, BM_GETSTATE, 0, 0) & BST_CHECKED) // { // *negated = FALSE; // *setOnly = FALSE; // *resetOnly = TRUE; // } // } // EnableWindow(MainWindow, TRUE); // DestroyWindow(CoilDialog); // return; // }