From f7669a3fcc87d4f6040257c3dd8708c263331458 Mon Sep 17 00:00:00 2001 From: Rr42 Date: Fri, 25 May 2018 10:13:59 +0530 Subject: Added all LDmicro filles to be ported --- ldmicro/resetdialog.cpp | 148 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 148 insertions(+) create mode 100644 ldmicro/resetdialog.cpp (limited to 'ldmicro/resetdialog.cpp') diff --git a/ldmicro/resetdialog.cpp b/ldmicro/resetdialog.cpp new file mode 100644 index 0000000..00421d5 --- /dev/null +++ b/ldmicro/resetdialog.cpp @@ -0,0 +1,148 @@ +//----------------------------------------------------------------------------- +// 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 set of a RES reset element: name, +// which can be that of either a timer or a counter. +// Jonathan Westhues, Nov 2004 +//----------------------------------------------------------------------------- +#include +#include +#include + +#include "ldmicro.h" + +static HWND ResetDialog; + +static HWND TypeTimerRadio; +static HWND TypeCounterRadio; +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, + 7, 3, 120, 65, ResetDialog, NULL, Instance, NULL); + NiceFont(grouper); + + TypeTimerRadio = CreateWindowEx(0, WC_BUTTON, _("Timer"), + WS_CHILD | BS_AUTORADIOBUTTON | WS_TABSTOP | WS_VISIBLE, + 16, 21, 100, 20, ResetDialog, NULL, Instance, NULL); + NiceFont(TypeTimerRadio); + + TypeCounterRadio = CreateWindowEx(0, WC_BUTTON, _("Counter"), + WS_CHILD | BS_AUTORADIOBUTTON | WS_TABSTOP | WS_VISIBLE, + 16, 41, 100, 20, ResetDialog, NULL, Instance, NULL); + NiceFont(TypeCounterRadio); + + HWND textLabel = CreateWindowEx(0, WC_STATIC, _("Name:"), + WS_CHILD | WS_CLIPSIBLINGS | WS_VISIBLE | SS_RIGHT, + 135, 16, 50, 21, ResetDialog, NULL, Instance, NULL); + NiceFont(textLabel); + + NameTextbox = CreateWindowEx(WS_EX_CLIENTEDGE, WC_EDIT, "", + WS_CHILD | ES_AUTOHSCROLL | WS_TABSTOP | WS_CLIPSIBLINGS | WS_VISIBLE, + 190, 16, 115, 21, ResetDialog, NULL, Instance, NULL); + FixedFont(NameTextbox); + + OkButton = CreateWindowEx(0, WC_BUTTON, _("OK"), + WS_CHILD | WS_TABSTOP | WS_CLIPSIBLINGS | WS_VISIBLE | BS_DEFPUSHBUTTON, + 321, 10, 70, 23, ResetDialog, NULL, Instance, NULL); + NiceFont(OkButton); + + CancelButton = CreateWindowEx(0, WC_BUTTON, _("Cancel"), + WS_CHILD | WS_TABSTOP | WS_CLIPSIBLINGS | WS_VISIBLE, + 321, 40, 70, 23, ResetDialog, NULL, Instance, NULL); + NiceFont(CancelButton); + + PrevNameProc = SetWindowLongPtr(NameTextbox, GWLP_WNDPROC, + (LONG_PTR)MyNameProc); +} + +void ShowResetDialog(char *name) +{ + ResetDialog = CreateWindowClient(0, "LDmicroDialog", + _("Reset"), WS_OVERLAPPED | WS_SYSMENU, + 100, 100, 404, 75, NULL, NULL, Instance, NULL); + + MakeControls(); + + if(name[0] == 'T') { + SendMessage(TypeTimerRadio, BM_SETCHECK, BST_CHECKED, 0); + } else { + SendMessage(TypeCounterRadio, BM_SETCHECK, BST_CHECKED, 0); + } + SendMessage(NameTextbox, WM_SETTEXT, 0, (LPARAM)(name + 1)); + + EnableWindow(MainWindow, FALSE); + ShowWindow(ResetDialog, 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(ResetDialog, &msg)) continue; + TranslateMessage(&msg); + DispatchMessage(&msg); + } + + if(!DialogCancel) { + if(SendMessage(TypeTimerRadio, BM_GETSTATE, 0, 0) & BST_CHECKED) { + name[0] = 'T'; + } else { + name[0] = 'C'; + } + SendMessage(NameTextbox, WM_GETTEXT, (WPARAM)16, (LPARAM)(name+1)); + } + + EnableWindow(MainWindow, TRUE); + DestroyWindow(ResetDialog); +} -- cgit From 2ef55474f6c1622b19bbd9dfa0d132bb433e08b9 Mon Sep 17 00:00:00 2001 From: Rr42 Date: Wed, 6 Jun 2018 12:12:49 +0530 Subject: Removed unnecessary files and headers. --- ldmicro/resetdialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ldmicro/resetdialog.cpp') diff --git a/ldmicro/resetdialog.cpp b/ldmicro/resetdialog.cpp index 00421d5..b83cd42 100644 --- a/ldmicro/resetdialog.cpp +++ b/ldmicro/resetdialog.cpp @@ -21,9 +21,9 @@ // which can be that of either a timer or a counter. // Jonathan Westhues, Nov 2004 //----------------------------------------------------------------------------- -#include +#include "linuxUI.h" #include -#include +//#include #include "ldmicro.h" -- cgit