main.c 13.9 KB
Newer Older
Alexandre Julliard's avatar
Alexandre Julliard committed
1 2 3
/*
 * Program Manager
 *
4 5
 * Copyright 1996 Ulrich Schmid
 * Copyright 2002 Sylvain Petreolle
6 7 8 9 10 11 12 13 14 15 16 17 18
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
19
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Alexandre Julliard's avatar
Alexandre Julliard committed
20 21 22
 */

#include <stdio.h>
23
#include <string.h>
24 25 26

#define OEMRESOURCE

Alexandre Julliard's avatar
Alexandre Julliard committed
27
#include "windows.h"
Alexandre Julliard's avatar
Alexandre Julliard committed
28
#include "progman.h"
29

Alexandre Julliard's avatar
Alexandre Julliard committed
30 31 32 33 34 35 36 37
GLOBALS Globals;

static VOID MAIN_CreateGroups(void);
static VOID MAIN_MenuCommand(HWND hWnd, WPARAM wParam, LPARAM lParam);
static ATOM MAIN_RegisterMainWinClass(void);
static VOID MAIN_CreateMainWindow(void);
static VOID MAIN_CreateMDIWindow(void);
static VOID MAIN_AutoStart(void);
38 39
static VOID WineLicense(HWND Wnd);
static VOID WineWarranty(HWND Wnd);
Alexandre Julliard's avatar
Alexandre Julliard committed
40 41 42 43 44 45 46 47

#define BUFFER_SIZE 1000

/***********************************************************************
 *
 *           WinMain
 */

48
int PASCAL WinMain (HINSTANCE hInstance, HINSTANCE prev, LPSTR cmdline, int show)
Alexandre Julliard's avatar
Alexandre Julliard committed
49 50 51 52 53 54 55 56
{
  MSG      msg;

  Globals.lpszIniFile         = "progman.ini";
  Globals.lpszIcoFile         = "progman.ico";

  Globals.hInstance           = hInstance;
  Globals.hGroups             = 0;
Alexandre Julliard's avatar
Alexandre Julliard committed
57
  Globals.hActiveGroup        = 0;
Alexandre Julliard's avatar
Alexandre Julliard committed
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87

  /* Read Options from `progman.ini' */
  Globals.bAutoArrange =
    GetPrivateProfileInt("Settings", "AutoArrange", 0, Globals.lpszIniFile);
  Globals.bMinOnRun =
    GetPrivateProfileInt("Settings", "MinOnRun", 0, Globals.lpszIniFile);
  Globals.bSaveSettings =
    GetPrivateProfileInt("Settings", "SaveSettings", 0, Globals.lpszIniFile);

  /* Load default icons */
  Globals.hMainIcon    = ExtractIcon(Globals.hInstance, Globals.lpszIcoFile, 0);
  Globals.hGroupIcon   = ExtractIcon(Globals.hInstance, Globals.lpszIcoFile, 0);
  Globals.hDefaultIcon = ExtractIcon(Globals.hInstance, Globals.lpszIcoFile, 0);
  if (!Globals.hMainIcon)    Globals.hMainIcon = LoadIcon(0, MAKEINTRESOURCE(DEFAULTICON));
  if (!Globals.hGroupIcon)   Globals.hGroupIcon = LoadIcon(0, MAKEINTRESOURCE(DEFAULTICON));
  if (!Globals.hDefaultIcon) Globals.hDefaultIcon = LoadIcon(0, MAKEINTRESOURCE(DEFAULTICON));

  /* Register classes */
  if (!prev)
    {
      if (!MAIN_RegisterMainWinClass()) return(FALSE);
      if (!GROUP_RegisterGroupWinClass()) return(FALSE);
      if (!PROGRAM_RegisterProgramWinClass()) return(FALSE);
    }

  /* Create main window */
  MAIN_CreateMainWindow();
  Globals.hAccel = LoadAccelerators(Globals.hInstance, STRING_ACCEL);

  /* Setup menu, stringtable and resourcenames */
88
  STRING_LoadMenus();
Alexandre Julliard's avatar
Alexandre Julliard committed
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112

  MAIN_CreateMDIWindow();

  /* Initialize groups */
  MAIN_CreateGroups();

  /* Start initial applications */
  MAIN_AutoStart();

  /* Message loop */
  while (GetMessage (&msg, 0, 0, 0))
    if (!TranslateAccelerator(Globals.hMainWnd, Globals.hAccel, &msg))
      {
	TranslateMessage (&msg);
	DispatchMessage (&msg);
      }
  return 0;
}

/***********************************************************************
 *
 *           MAIN_CreateGroups
 */

113
static VOID MAIN_CreateGroups(void)
Alexandre Julliard's avatar
Alexandre Julliard committed
114 115 116 117 118 119 120 121 122 123 124 125
{
  CHAR buffer[BUFFER_SIZE];
  CHAR szPath[MAX_PATHNAME_LEN];
  CHAR key[20], *ptr;

  /* Initialize groups according the `Order' entry of `progman.ini' */
  GetPrivateProfileString("Settings", "Order", "", buffer, sizeof(buffer), Globals.lpszIniFile);
  ptr = buffer;
  while (ptr < buffer + sizeof(buffer))
    {
      int num, skip, ret;
      ret = sscanf(ptr, "%d%n", &num, &skip);
Alexandre Julliard's avatar
Alexandre Julliard committed
126 127
      if (ret == 0)
	MAIN_MessageBoxIDS_s(IDS_FILE_READ_ERROR_s, Globals.lpszIniFile, IDS_ERROR, MB_OK);
Alexandre Julliard's avatar
Alexandre Julliard committed
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
      if (ret != 1) break;

      sprintf(key, "Group%d", num);
      GetPrivateProfileString("Groups", key, "", szPath,
			      sizeof(szPath), Globals.lpszIniFile);
      if (!szPath[0]) continue;

      GRPFILE_ReadGroupFile(szPath);

      ptr += skip;
    }
  /* FIXME initialize other groups, not enumerated by `Order' */
}

/***********************************************************************
 *
 *           MAIN_AutoStart
 */

147
VOID MAIN_AutoStart(void)
Alexandre Julliard's avatar
Alexandre Julliard committed
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
{
  CHAR buffer[BUFFER_SIZE];
  HLOCAL hGroup, hProgram;

  GetPrivateProfileString("Settings", "AutoStart", "Autostart", buffer,
			  sizeof(buffer), Globals.lpszIniFile);

  for (hGroup = GROUP_FirstGroup(); hGroup; hGroup = GROUP_NextGroup(hGroup))
    if (!lstrcmp(buffer, GROUP_GroupName(hGroup)))
      for (hProgram = PROGRAM_FirstProgram(hGroup); hProgram;
	   hProgram = PROGRAM_NextProgram(hProgram))
	PROGRAM_ExecuteProgram(hProgram);
}

/***********************************************************************
 *
 *           MAIN_MainWndProc
 */

167
static LRESULT CALLBACK MAIN_MainWndProc(HWND hWnd, UINT msg,
Alexandre Julliard's avatar
Alexandre Julliard committed
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
				 WPARAM wParam, LPARAM lParam)
{
#if 0
  printf("M %4.4x %4.4x\n", msg, wParam);
#endif
  switch (msg)
    {
    case WM_INITMENU:
      CheckMenuItem(Globals.hOptionMenu, PM_AUTO_ARRANGE,
		    MF_BYCOMMAND | (Globals.bAutoArrange ? MF_CHECKED : MF_UNCHECKED));
      CheckMenuItem(Globals.hOptionMenu, PM_MIN_ON_RUN,
		    MF_BYCOMMAND | (Globals.bMinOnRun ? MF_CHECKED : MF_UNCHECKED));
      CheckMenuItem(Globals.hOptionMenu, PM_SAVE_SETTINGS,
		    MF_BYCOMMAND | (Globals.bSaveSettings ? MF_CHECKED : MF_UNCHECKED));
      break;

    case WM_COMMAND:
185
      if (wParam < PM_FIRST_CHILD){
Alexandre Julliard's avatar
Alexandre Julliard committed
186
	MAIN_MenuCommand(hWnd, wParam, lParam);
187
      }
Alexandre Julliard's avatar
Alexandre Julliard committed
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
      break;

    case WM_DESTROY:
      PostQuitMessage (0);
      break;
    }
  return(DefFrameProc(hWnd, Globals.hMDIWnd, msg, wParam, lParam));
}

/***********************************************************************
 *
 *           MAIN_MenuCommand
 */

static VOID MAIN_MenuCommand(HWND hWnd, WPARAM wParam, LPARAM lParam)
{
  HLOCAL hActiveGroup    = GROUP_ActiveGroup();
  HLOCAL hActiveProgram  = PROGRAM_ActiveProgram(hActiveGroup);
  HWND   hActiveGroupWnd = GROUP_GroupWnd(hActiveGroup);

  switch(wParam)
    {
      /* Menu File */
    case PM_NEW:
      switch (DIALOG_New((hActiveGroupWnd && !IsIconic(hActiveGroupWnd)) ?
			 PM_NEW_PROGRAM : PM_NEW_GROUP))
      {
      case PM_NEW_PROGRAM:
	if (hActiveGroup) PROGRAM_NewProgram(hActiveGroup);
	break;

      case PM_NEW_GROUP:
	GROUP_NewGroup();
	break;
      }
      break;

    case PM_OPEN:
      if (hActiveProgram)
	PROGRAM_ExecuteProgram(hActiveProgram);
      else if (hActiveGroupWnd)
	OpenIcon(hActiveGroupWnd);
      break;

    case PM_MOVE:
    case PM_COPY:
      if (hActiveProgram)
	PROGRAM_CopyMoveProgram(hActiveProgram, wParam == PM_MOVE);
      break;

    case PM_DELETE:
      if (hActiveProgram)
	{
Alexandre Julliard's avatar
Alexandre Julliard committed
241
	if (DIALOG_Delete(IDS_DELETE_PROGRAM_s, PROGRAM_ProgramName(hActiveProgram)))
Alexandre Julliard's avatar
Alexandre Julliard committed
242 243 244 245
	  PROGRAM_DeleteProgram(hActiveProgram, TRUE);
	}
      else if (hActiveGroup)
	{
Alexandre Julliard's avatar
Alexandre Julliard committed
246
	if (DIALOG_Delete(IDS_DELETE_GROUP_s, GROUP_GroupName(hActiveGroup)))
Alexandre Julliard's avatar
Alexandre Julliard committed
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
	  GROUP_DeleteGroup(hActiveGroup);
	}
      break;

    case PM_ATTRIBUTES:
      if (hActiveProgram)
	PROGRAM_ModifyProgram(hActiveProgram);
      else if (hActiveGroup)
	GROUP_ModifyGroup(hActiveGroup);
      break;

    case PM_EXECUTE:
      DIALOG_Execute();
      break;

    case PM_EXIT:
      PostQuitMessage(0);
      break;

      /* Menu Options */
    case PM_AUTO_ARRANGE:
      Globals.bAutoArrange = !Globals.bAutoArrange;
      CheckMenuItem(Globals.hOptionMenu, PM_AUTO_ARRANGE,
		    MF_BYCOMMAND | (Globals.bAutoArrange ?
				    MF_CHECKED : MF_UNCHECKED));
      WritePrivateProfileString("Settings", "AutoArrange",
				Globals.bAutoArrange ? "1" : "0",
				Globals.lpszIniFile);
275
      WritePrivateProfileString(NULL,NULL,NULL,Globals.lpszIniFile); /* flush it */
Alexandre Julliard's avatar
Alexandre Julliard committed
276 277 278 279 280 281 282 283 284 285
      break;

    case PM_MIN_ON_RUN:
      Globals.bMinOnRun = !Globals.bMinOnRun;
      CheckMenuItem(Globals.hOptionMenu, PM_MIN_ON_RUN,
		    MF_BYCOMMAND | (Globals.bMinOnRun ?
				    MF_CHECKED : MF_UNCHECKED));
      WritePrivateProfileString("Settings", "MinOnRun",
				Globals.bMinOnRun ? "1" : "0",
				Globals.lpszIniFile);
286
      WritePrivateProfileString(NULL,NULL,NULL,Globals.lpszIniFile); /* flush it */
Alexandre Julliard's avatar
Alexandre Julliard committed
287 288 289 290 291 292 293 294 295 296
      break;

    case PM_SAVE_SETTINGS:
      Globals.bSaveSettings = !Globals.bSaveSettings;
      CheckMenuItem(Globals.hOptionMenu, PM_SAVE_SETTINGS,
		    MF_BYCOMMAND | (Globals.bSaveSettings ?
				    MF_CHECKED : MF_UNCHECKED));
      WritePrivateProfileString("Settings", "SaveSettings",
				Globals.bSaveSettings ? "1" : "0",
				Globals.lpszIniFile);
297
      WritePrivateProfileString(NULL,NULL,NULL,Globals.lpszIniFile); /* flush it */
Alexandre Julliard's avatar
Alexandre Julliard committed
298 299 300 301
      break;

      /* Menu Windows */
    case PM_ARRANGE:
302

Alexandre Julliard's avatar
Alexandre Julliard committed
303 304 305 306
      if (hActiveGroupWnd && !IsIconic(hActiveGroupWnd))
	ArrangeIconicWindows(hActiveGroupWnd);
      else
	SendMessage(Globals.hMDIWnd, WM_MDIICONARRANGE, 0, 0);
Alexandre Julliard's avatar
Alexandre Julliard committed
307 308 309 310
      break;

      /* Menu Help */
    case PM_CONTENTS:
311
      if (!WinHelp(Globals.hMainWnd, "progman.hlp", HELP_CONTENTS, 0))
Alexandre Julliard's avatar
Alexandre Julliard committed
312
	MAIN_MessageBoxIDS(IDS_WINHELP_ERROR, IDS_ERROR, MB_OK);
Alexandre Julliard's avatar
Alexandre Julliard committed
313 314 315 316
      break;

    case PM_HELPONHELP:
      if (!WinHelp(Globals.hMainWnd, "progman.hlp", HELP_HELPONHELP, 0))
Alexandre Julliard's avatar
Alexandre Julliard committed
317
	MAIN_MessageBoxIDS(IDS_WINHELP_ERROR, IDS_ERROR, MB_OK);
Alexandre Julliard's avatar
Alexandre Julliard committed
318 319 320 321 322 323 324
      break;

    case PM_TUTORIAL:
      WinExec("wintutor.exe", SW_SHOWNORMAL);
      break;

    case PM_LICENSE:
325
      WineLicense(Globals.hMainWnd);
Alexandre Julliard's avatar
Alexandre Julliard committed
326 327 328
      break;

    case PM_NO_WARRANTY:
329
      WineWarranty(Globals.hMainWnd);
Alexandre Julliard's avatar
Alexandre Julliard committed
330 331 332
      break;

    case PM_ABOUT_WINE:
Alexandre Julliard's avatar
Alexandre Julliard committed
333
      ShellAbout(hWnd, "WINE", "Program Manager", 0);
Alexandre Julliard's avatar
Alexandre Julliard committed
334 335 336
      break;

    default:
Alexandre Julliard's avatar
Alexandre Julliard committed
337
	MAIN_MessageBoxIDS(IDS_NOT_IMPLEMENTED, IDS_ERROR, MB_OK);
Alexandre Julliard's avatar
Alexandre Julliard committed
338 339 340 341 342 343 344 345 346
      break;
    }
}

/***********************************************************************
 *
 *           MAIN_RegisterMainWinClass
 */

347
static ATOM MAIN_RegisterMainWinClass(void)
Alexandre Julliard's avatar
Alexandre Julliard committed
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
{
  WNDCLASS class;

  class.style         = CS_HREDRAW | CS_VREDRAW;
  class.lpfnWndProc   = MAIN_MainWndProc;
  class.cbClsExtra    = 0;
  class.cbWndExtra    = 0;
  class.hInstance     = Globals.hInstance;
  class.hIcon         = Globals.hMainIcon;
  class.hCursor       = LoadCursor (0, IDC_ARROW);
  class.hbrBackground = GetStockObject (NULL_BRUSH);
  class.lpszMenuName  = 0;
  class.lpszClassName = STRING_MAIN_WIN_CLASS_NAME;

  return RegisterClass(&class);
}

/***********************************************************************
 *
 *           MAIN_CreateMainWindow
 */

370
static VOID MAIN_CreateMainWindow(void)
Alexandre Julliard's avatar
Alexandre Julliard committed
371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
{
  INT  left , top, right, bottom, width, height, show;
  CHAR buffer[100];

  Globals.hMDIWnd   = 0;
  Globals.hMainMenu = 0;

  /* Get the geometry of the main window */
  GetPrivateProfileString("Settings", "Window", "",
			  buffer, sizeof(buffer), Globals.lpszIniFile);
  if (5 == sscanf(buffer, "%d %d %d %d %d", &left, &top, &right, &bottom, &show))
  {
    width  = right - left;
    height = bottom - top;
  }
  else
  {
    left = top = width = height = CW_USEDEFAULT;
    show = SW_SHOWNORMAL;
  }

  /* Create main Window */
  Globals.hMainWnd =
    CreateWindow (STRING_MAIN_WIN_CLASS_NAME, "",
		  WS_OVERLAPPEDWINDOW, left, top, width, height,
		  0, 0, Globals.hInstance, 0);

  ShowWindow (Globals.hMainWnd, show);
  UpdateWindow (Globals.hMainWnd);
}

/***********************************************************************
 *
 *           MAIN_CreateMDIWindow
 */

407
static VOID MAIN_CreateMDIWindow(void)
Alexandre Julliard's avatar
Alexandre Julliard committed
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
{
  CLIENTCREATESTRUCT ccs;
  RECT rect;

  /* Get the geometry of the MDI window */
  GetClientRect(Globals.hMainWnd, &rect);

  ccs.hWindowMenu  = Globals.hWindowsMenu;
  ccs.idFirstChild = PM_FIRST_CHILD;

  /* Create MDI Window */
  Globals.hMDIWnd =
    CreateWindow (STRING_MDI_WIN_CLASS_NAME, "",
		  WS_CHILD, rect.left, rect.top,
		  rect.right - rect.left, rect.bottom - rect.top,
		  Globals.hMainWnd, 0,
		  Globals.hInstance, &ccs);

  ShowWindow (Globals.hMDIWnd, SW_SHOW);
  UpdateWindow (Globals.hMDIWnd);
}

/**********************************************************************/
/***********************************************************************
 *
Alexandre Julliard's avatar
Alexandre Julliard committed
433
 *           MAIN_MessageBoxIDS
Alexandre Julliard's avatar
Alexandre Julliard committed
434
 */
Alexandre Julliard's avatar
Alexandre Julliard committed
435
INT MAIN_MessageBoxIDS(UINT ids_text, UINT ids_title, WORD type)
Alexandre Julliard's avatar
Alexandre Julliard committed
436
{
Alexandre Julliard's avatar
Alexandre Julliard committed
437 438
  CHAR text[MAX_STRING_LEN];
  CHAR title[MAX_STRING_LEN];
Alexandre Julliard's avatar
Alexandre Julliard committed
439

Alexandre Julliard's avatar
Alexandre Julliard committed
440 441
  LoadString(Globals.hInstance, ids_text, text, sizeof(text));
  LoadString(Globals.hInstance, ids_title, title, sizeof(title));
Alexandre Julliard's avatar
Alexandre Julliard committed
442

Alexandre Julliard's avatar
Alexandre Julliard committed
443
  return(MessageBox(Globals.hMainWnd, text, title, type));
Alexandre Julliard's avatar
Alexandre Julliard committed
444 445 446 447
}

/***********************************************************************
 *
Alexandre Julliard's avatar
Alexandre Julliard committed
448
 *           MAIN_MessageBoxIDS_s
Alexandre Julliard's avatar
Alexandre Julliard committed
449
 */
Alexandre Julliard's avatar
Alexandre Julliard committed
450
INT MAIN_MessageBoxIDS_s(UINT ids_text, LPCSTR str, UINT ids_title, WORD type)
Alexandre Julliard's avatar
Alexandre Julliard committed
451
{
Alexandre Julliard's avatar
Alexandre Julliard committed
452 453 454
  CHAR text[MAX_STRING_LEN];
  CHAR title[MAX_STRING_LEN];
  CHAR newtext[MAX_STRING_LEN + MAX_PATHNAME_LEN];
Alexandre Julliard's avatar
Alexandre Julliard committed
455

Alexandre Julliard's avatar
Alexandre Julliard committed
456 457 458
  LoadString(Globals.hInstance, ids_text, text, sizeof(text));
  LoadString(Globals.hInstance, ids_title, title, sizeof(title));
  wsprintf(newtext, text, str);
Alexandre Julliard's avatar
Alexandre Julliard committed
459

Alexandre Julliard's avatar
Alexandre Julliard committed
460
  return(MessageBox(Globals.hMainWnd, newtext, title, type));
Alexandre Julliard's avatar
Alexandre Julliard committed
461 462 463 464
}

/***********************************************************************
 *
Alexandre Julliard's avatar
Alexandre Julliard committed
465
 *           MAIN_ReplaceString
Alexandre Julliard's avatar
Alexandre Julliard committed
466 467
 */

Alexandre Julliard's avatar
Alexandre Julliard committed
468
VOID MAIN_ReplaceString(HLOCAL *handle, LPSTR replace)
Alexandre Julliard's avatar
Alexandre Julliard committed
469
{
Alexandre Julliard's avatar
Alexandre Julliard committed
470 471 472 473 474 475 476 477 478
  HLOCAL newhandle = LocalAlloc(LMEM_FIXED, strlen(replace) + 1);
  if (newhandle)
    {
      LPSTR  newstring = LocalLock(newhandle);
      lstrcpy(newstring, replace);
      LocalFree(*handle);
      *handle = newhandle;
    }
  else MAIN_MessageBoxIDS(IDS_OUT_OF_MEMORY, IDS_ERROR, MB_OK);
Alexandre Julliard's avatar
Alexandre Julliard committed
479 480
}

481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
VOID WineLicense(HWND Wnd)
{
  char cap[20], text[1024];
  LoadString(Globals.hInstance, IDS_LICENSE, text, sizeof text);
  LoadString(Globals.hInstance, IDS_LICENSE_CAPTION, cap, sizeof cap);
  MessageBox(Wnd, text, cap, MB_ICONINFORMATION | MB_OK);
}

VOID WineWarranty(HWND Wnd)
{
  char cap[20], text[1024];
  LoadString(Globals.hInstance, IDS_WARRANTY, text, sizeof text);
  LoadString(Globals.hInstance, IDS_WARRANTY_CAPTION, cap, sizeof cap);
  MessageBox(Wnd, text, cap, MB_ICONEXCLAMATION | MB_OK);
}

Alexandre Julliard's avatar
Alexandre Julliard committed
497 498 499
/* Local Variables:    */
/* c-file-style: "GNU" */
/* End:                */