- Compile screensavers as UNICODE applications + minor fixes (Part 2/2)
[reactos.git] / rosapps / applications / screensavers / scrnsave / scrnsave.c
index 06579d8..93eb763 100644 (file)
-/*\r
- *  Copyright 2003 J Brown\r
- *  Copyright 2006 Eric Kohl\r
- *\r
- *  This program is free software; you can redistribute it and/or modify\r
- *  it under the terms of the GNU General Public License as published by\r
- *  the Free Software Foundation; either version 2 of the License, or\r
- *  (at your option) any later version.\r
- *\r
- *  This program is distributed in the hope that it will be useful,\r
- *  but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
- *  GNU General Public License for more details.\r
- *\r
- *  You should have received a copy of the GNU General Public License\r
- *  along with this program; if not, write to the Free Software\r
- *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA\r
- */\r
-\r
-#include <windows.h>\r
-#include <tchar.h>\r
-#include "resource.h"\r
-\r
-#define APPNAME _T("Scrnsave")\r
-\r
-\r
-HINSTANCE hInstance;\r
-\r
-BOOL fullscreen = FALSE;\r
-\r
-\r
-LRESULT WINAPI WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)\r
-{\r
-       static POINT ptLast;\r
-       static POINT ptCursor;\r
-       static BOOL  fFirstTime = TRUE;\r
-\r
-       switch (msg)\r
-       {\r
-               case WM_DESTROY:\r
-                 ShowCursor(TRUE);\r
-                       PostQuitMessage(0);\r
-                       break;\r
-\r
-               // break out of screen-saver if any keyboard activity\r
-               case WM_NOTIFY:\r
-               case WM_SYSKEYDOWN:\r
-                       PostMessage(hwnd, WM_CLOSE, 0, 0);\r
-                       break;\r
-\r
-               // break out of screen-saver if any mouse activity\r
-               case WM_LBUTTONDOWN:\r
-               case WM_LBUTTONUP:\r
-               case WM_RBUTTONDOWN:\r
-               case WM_RBUTTONUP:\r
-               case WM_MBUTTONDOWN:\r
-               case WM_MBUTTONUP:\r
-               case WM_MOUSEMOVE:\r
-                       // If we've got a parent then we must be a preview\r
-                       if(GetParent(hwnd) != 0)\r
-                               return 0;\r
-\r
-                       if(fFirstTime)\r
-                       {\r
-                               GetCursorPos(&ptLast);\r
-                               fFirstTime = FALSE;\r
-                       }\r
-\r
-               GetCursorPos(&ptCursor);\r
-\r
-               // if the mouse has moved more than 3 pixels then exit\r
-               if(abs(ptCursor.x - ptLast.x) >= 3 || abs(ptCursor.y - ptLast.y) >= 3)\r
-                       PostMessage(hwnd, WM_CLOSE, 0, 0);\r
-\r
-               ptLast = ptCursor;\r
-\r
-               return 0;\r
-       }\r
-\r
-       return DefWindowProc(hwnd, msg, wParam, lParam);\r
-}\r
-\r
-void InitSaver(HWND hwndParent)\r
-{\r
-       WNDCLASS wc;\r
-       ZeroMemory(&wc, sizeof(wc));\r
-       wc.style            = CS_HREDRAW | CS_VREDRAW;\r
-       wc.lpfnWndProc      = WndProc;\r
-       wc.lpszClassName    = APPNAME;\r
-       wc.hbrBackground    = (HBRUSH)GetStockObject(BLACK_BRUSH);\r
-       RegisterClass(&wc);\r
-\r
-       if (hwndParent != 0)\r
-       {\r
-               RECT rect;\r
-               GetClientRect(hwndParent, &rect);\r
-               CreateWindow(APPNAME, APPNAME,\r
-                            WS_VISIBLE | WS_CHILD,\r
-                            0, 0,\r
-                            rect.right,\r
-                            rect.bottom,\r
-                            hwndParent, 0,\r
-                            hInstance, NULL);\r
-               fullscreen = FALSE;\r
-       }\r
-       else\r
-       {\r
-               HWND hwnd;\r
-    hwnd = CreateWindowEx(WS_EX_TOPMOST,\r
-                          APPNAME,\r
-                          APPNAME,\r
-                          WS_VISIBLE | WS_POPUP,\r
-                          0, 0,\r
-                          GetSystemMetrics(SM_CXSCREEN), GetSystemMetrics(SM_CYSCREEN),\r
-                          HWND_DESKTOP, 0,\r
-                          hInstance, NULL);\r
-\r
-    SetWindowPos(hwnd,\r
-                 0, 0, 0, 0, 0,\r
-                 SWP_NOZORDER|SWP_NOACTIVATE|SWP_NOSIZE|SWP_SHOWWINDOW);\r
-\r
-               ShowCursor(FALSE);\r
-               fullscreen = TRUE;\r
-       }\r
-}\r
-\r
-void ParseCommandLine(PSTR szCmdLine, int *chOption, HWND *hwndParent)\r
-{\r
-       int ch = *szCmdLine++;\r
-\r
-       if(ch == '-' || ch == '/')\r
-               ch = *szCmdLine++;\r
-\r
-       if(ch >= 'A' && ch <= 'Z')\r
-               ch += 'a' - 'A';\r
-\r
-       *chOption = ch;\r
-       ch = *szCmdLine++;\r
-\r
-       if(ch == ':')\r
-               ch = *szCmdLine++;\r
-\r
-       while(ch == ' ' || ch == '\t')\r
-               ch = *szCmdLine++;\r
-\r
-       if(isdigit(ch))\r
-       {\r
-               unsigned int i = atoi(szCmdLine - 1);\r
-               *hwndParent = (HWND)i;\r
-       }\r
-       else\r
-               *hwndParent = 0;\r
-}\r
-\r
-void Configure(void)\r
-{\r
-       TCHAR szTitle[256];\r
-       TCHAR szText[256];\r
-\r
-       LoadString(hInstance,\r
-                  IDS_TITLE,\r
-                  szTitle,\r
-                  256);\r
-\r
-       LoadString(hInstance,\r
-                  IDS_TEXT,\r
-                  szText,\r
-                  256);\r
-\r
-       MessageBox(0,\r
-                  szText,\r
-                  szTitle,\r
-                  MB_OK | MB_ICONWARNING);\r
-}\r
-\r
-\r
-int WINAPI WinMain (HINSTANCE hInst,\r
-                    HINSTANCE hPrev,\r
-                    LPSTR lpCmdLine,\r
-                    int iCmdShow)\r
-{\r
-       HWND    hwndParent;\r
-       UINT    nPreviousState;\r
-       int     chOption;\r
-       MSG     Message;\r
-\r
-       hInstance = hInst;\r
-\r
-       ParseCommandLine(lpCmdLine, &chOption, &hwndParent);\r
-\r
-       SystemParametersInfo(SPI_SETSCREENSAVERRUNNING, TRUE, &nPreviousState, 0);\r
-\r
-       switch (chOption)\r
-       {\r
-               case 's':\r
-                       InitSaver(0);\r
-                       break;\r
-\r
-               case 'p':\r
-                       InitSaver(hwndParent);\r
-                       break;\r
-\r
-               case 'c':\r
-               default:\r
-                       Configure();\r
-                       return 0;\r
-       }\r
-\r
-       while (GetMessage(&Message, 0, 0, 0))\r
-               DispatchMessage(&Message);\r
-\r
-       SystemParametersInfo(SPI_SETSCREENSAVERRUNNING, FALSE, &nPreviousState, 0);\r
-\r
-       return Message.wParam;\r
-}\r
+/*
+ *  Copyright 2003 J Brown
+ *  Copyright 2006 Eric Kohl
+ *
+ *  This program 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 2 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program 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 this program; if not, write to the Free Software
+ *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
+ */
+
+#include <windows.h>
+#include <tchar.h>
+#include "resource.h"
+
+#define APPNAME _T("Scrnsave")
+
+
+HINSTANCE hInstance;
+
+BOOL fullscreen = FALSE;
+
+
+LRESULT WINAPI WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
+{
+       static POINT ptLast;
+       static POINT ptCursor;
+       static BOOL  fFirstTime = TRUE;
+
+       switch (msg)
+       {
+               case WM_DESTROY:
+                 ShowCursor(TRUE);
+                       PostQuitMessage(0);
+                       break;
+
+               // break out of screen-saver if any keyboard activity
+               case WM_NOTIFY:
+               case WM_SYSKEYDOWN:
+                       PostMessage(hwnd, WM_CLOSE, 0, 0);
+                       break;
+
+               // break out of screen-saver if any mouse activity
+               case WM_LBUTTONDOWN:
+               case WM_LBUTTONUP:
+               case WM_RBUTTONDOWN:
+               case WM_RBUTTONUP:
+               case WM_MBUTTONDOWN:
+               case WM_MBUTTONUP:
+               case WM_MOUSEMOVE:
+                       // If we've got a parent then we must be a preview
+                       if(GetParent(hwnd) != 0)
+                               return 0;
+
+                       if(fFirstTime)
+                       {
+                               GetCursorPos(&ptLast);
+                               fFirstTime = FALSE;
+                       }
+
+               GetCursorPos(&ptCursor);
+
+               // if the mouse has moved more than 3 pixels then exit
+               if(abs(ptCursor.x - ptLast.x) >= 3 || abs(ptCursor.y - ptLast.y) >= 3)
+                       PostMessage(hwnd, WM_CLOSE, 0, 0);
+
+               ptLast = ptCursor;
+
+               return 0;
+       }
+
+       return DefWindowProc(hwnd, msg, wParam, lParam);
+}
+
+void InitSaver(HWND hwndParent)
+{
+       WNDCLASS wc;
+       ZeroMemory(&wc, sizeof(wc));
+       wc.style            = CS_HREDRAW | CS_VREDRAW;
+       wc.lpfnWndProc      = WndProc;
+       wc.lpszClassName    = APPNAME;
+       wc.hbrBackground    = (HBRUSH)GetStockObject(BLACK_BRUSH);
+       RegisterClass(&wc);
+
+       if (hwndParent != 0)
+       {
+               RECT rect;
+               GetClientRect(hwndParent, &rect);
+               CreateWindow(APPNAME, APPNAME,
+                            WS_VISIBLE | WS_CHILD,
+                            0, 0,
+                            rect.right,
+                            rect.bottom,
+                            hwndParent, 0,
+                            hInstance, NULL);
+               fullscreen = FALSE;
+       }
+       else
+       {
+               HWND hwnd;
+    hwnd = CreateWindowEx(WS_EX_TOPMOST,
+                          APPNAME,
+                          APPNAME,
+                          WS_VISIBLE | WS_POPUP,
+                          0, 0,
+                          GetSystemMetrics(SM_CXSCREEN), GetSystemMetrics(SM_CYSCREEN),
+                          HWND_DESKTOP, 0,
+                          hInstance, NULL);
+
+    SetWindowPos(hwnd,
+                 0, 0, 0, 0, 0,
+                 SWP_NOZORDER|SWP_NOACTIVATE|SWP_NOSIZE|SWP_SHOWWINDOW);
+
+               ShowCursor(FALSE);
+               fullscreen = TRUE;
+       }
+}
+
+VOID ParseCommandLine(LPWSTR szCmdLine, UCHAR *chOption, HWND *hwndParent)
+{
+       UCHAR ch = *szCmdLine++;
+
+       if(ch == '-' || ch == '/')
+               ch = *szCmdLine++;
+
+       if(ch >= 'A' && ch <= 'Z')
+               ch += 'a' - 'A';                //convert to lower case
+
+       *chOption = ch;
+       ch = *szCmdLine++;
+
+       if(ch == ':')
+               ch = *szCmdLine++;
+
+       while(ch == ' ' || ch == '\t')
+               ch = *szCmdLine++;
+
+       if(isdigit(ch))
+       {
+               unsigned int i = _wtoi(szCmdLine - 1);
+               *hwndParent = (HWND)i;
+       }
+       else
+               *hwndParent = NULL;
+}
+
+void Configure(void)
+{
+       TCHAR szTitle[256];
+       TCHAR szText[256];
+
+       LoadString(hInstance,
+                  IDS_TITLE,
+                  szTitle,
+                  256);
+
+       LoadString(hInstance,
+                  IDS_TEXT,
+                  szText,
+                  256);
+
+       MessageBox(0,
+                  szText,
+                  szTitle,
+                  MB_OK | MB_ICONWARNING);
+}
+
+
+int CALLBACK wWinMain (HINSTANCE hInst,
+                    HINSTANCE hPrev,
+                    LPWSTR lpCmdLine,
+                    int iCmdShow)
+{
+       HWND    hwndParent;
+       UINT    nPreviousState;
+       UCHAR   chOption;
+       MSG     Message;
+
+       hInstance = hInst;
+
+       ParseCommandLine(lpCmdLine, &chOption, &hwndParent);
+
+       SystemParametersInfo(SPI_SETSCREENSAVERRUNNING, TRUE, &nPreviousState, 0);
+
+       switch (chOption)
+       {
+               case 's':
+                       InitSaver(0);
+                       break;
+
+               case 'p':
+                       InitSaver(hwndParent);
+                       break;
+
+               case 'c':
+               default:
+                       Configure();
+                       return 0;
+       }
+
+       while (GetMessage(&Message, 0, 0, 0))
+               DispatchMessage(&Message);
+
+       SystemParametersInfo(SPI_SETSCREENSAVERRUNNING, FALSE, &nPreviousState, 0);
+
+       return Message.wParam;
+}