Fix indentation :)
[reactos.git] / rosapps / applications / screensavers / circles / circles.c
index 3bbd0d2..9a05e04 100644 (file)
 
 #define RANDOM_COLOR (rand () % 256)
 
-#define APPNAME _T("Circles")
-#define APP_TIMER                      1
-#define APP_TIMER_INTERVAL     100
-#define MAX_CIRCLES                    50
+#define APPNAME              _T("Circles")
+#define APP_TIMER            1
+#define APP_TIMER_INTERVAL   100
+#define MAX_CIRCLES          50
 
 int circlesCount;
 int width, x, y;
 
-LRESULT WINAPI ScreenSaverProc (HWND hwnd, UINT iMsg, WPARAM wparam,
-                LPARAM lparam)
+LRESULT WINAPI ScreenSaverProc (HWND hwnd, UINT iMsg, WPARAM wparam, LPARAM lparam)
 {
-  HDC hdc;
-  RECT rect;
-  HBRUSH hbrush, hbrushOld;
-
-  switch (iMsg)
-  {
-   case WM_CREATE:
-          {
-                       SetTimer (
-                               hwnd, 
-                               APP_TIMER, 
-                               APP_TIMER_INTERVAL, 
-                               NULL);
-          }
-          break;
-   case WM_DESTROY:
-          {
-                       KillTimer (hwnd, APP_TIMER);
-                   PostQuitMessage (0);
-                       return 0;
-          }
-          break;
-   case WM_TIMER:
-          {
-                       hdc = GetDC (hwnd);
-                       GetClientRect (hwnd, &rect);
-                       hbrush = CreateSolidBrush (RGB (RANDOM_COLOR, RANDOM_COLOR, RANDOM_COLOR));
-                       hbrushOld = SelectObject (hdc, hbrush);
-
-                       x = rand () % rect.right;
-                       y = rand () % rect.bottom;
-
-                       /* the circle will be 10% of total screen */
-                       width = rect.right / 10;
-                       if (rect.bottom / 10 < width)
-                               width = rect.bottom / 10;
-
-                       /* Draw circle on screen */
-                       Ellipse (
-                               hdc, 
-                               x, 
-                               y, 
-                               x + width, 
-                               y + width);
-
-                       //Track the number of painted circles on scren
-                       circlesCount++;
-                       if (circlesCount == MAX_CIRCLES)
-                       {
-                               InvalidateRect (hwnd, NULL, TRUE);
-                               circlesCount = 0;
-                       }
-
-                       SelectObject (hdc, hbrushOld);
-                       DeleteObject (hbrush);
-                       ReleaseDC (hwnd, hdc);
-
-                       return 0;
-          }
-  }
-
-  return DefScreenSaverProc (hwnd, iMsg, wparam, lparam);
+    HDC hdc;
+    RECT rect;
+    HBRUSH hbrush, hbrushOld;
+
+    switch (iMsg)
+    {
+        case WM_CREATE:
+            SetTimer (hwnd, APP_TIMER, APP_TIMER_INTERVAL, NULL);
+            break;
+
+        case WM_DESTROY:
+            KillTimer (hwnd, APP_TIMER);
+            PostQuitMessage (0);
+            return 0;
+
+        case WM_TIMER:
+            hdc = GetDC (hwnd);
+            GetClientRect (hwnd, &rect);
+            hbrush = CreateSolidBrush (RGB (RANDOM_COLOR, RANDOM_COLOR, RANDOM_COLOR));
+            hbrushOld = SelectObject (hdc, hbrush);
+
+            x = rand () % rect.right;
+            y = rand () % rect.bottom;
+
+            /* the circle will be 10% of total screen */
+            width = rect.right / 10;
+            if (rect.bottom / 10 < width)
+                width = rect.bottom / 10;
+
+            /* Draw circle on screen */
+            Ellipse (
+                hdc, 
+                x, 
+                y, 
+                x + width, 
+                y + width);
+
+            //Track the number of painted circles on scren
+            circlesCount++;
+            if (circlesCount == MAX_CIRCLES)
+            {
+                InvalidateRect (hwnd, NULL, TRUE);
+                circlesCount = 0;
+            }
+
+            SelectObject (hdc, hbrushOld);
+            DeleteObject (hbrush);
+            ReleaseDC (hwnd, hdc);
+
+            return 0;
+        }
+    }
+
+    return DefScreenSaverProc (hwnd, iMsg, wparam, lparam);
 }