Subversion Repositories filter_foundry

Rev

Rev 412 | Rev 433 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. /*
  2.     This file is part of "Filter Foundry", a filter plugin for Adobe Photoshop
  3.     Copyright (C) 2003-2009 Toby Thain, toby@telegraphics.com.au
  4.     Copyright (C) 2018-2021 Daniel Marschall, ViaThinkSoft
  5.  
  6.     This program is free software; you can redistribute it and/or modify
  7.     it under the terms of the GNU General Public License as published by
  8.     the Free Software Foundation; either version 2 of the License, or
  9.     (at your option) any later version.
  10.  
  11.     This program is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU General Public License for more details.
  15.  
  16.     You should have received a copy of the GNU General Public License
  17.     along with this program; if not, write to the Free Software
  18.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19. */
  20.  
  21. /* Win32 user interface routines */
  22.  
  23. #include "world.h"
  24.  
  25. #include "PIAbout.h"
  26.  
  27. #include <windows.h>
  28. #include <commctrl.h>
  29.  
  30. #include "ff.h"
  31. #include "version.h"
  32.  
  33. extern HINSTANCE hDllInstance;
  34.  
  35. INT_PTR CALLBACK builddlgproc(HWND hDlg, UINT wMsg, WPARAM wParam, LPARAM lParam);
  36.  
  37. INT_PTR CALLBACK builddlgproc(HWND hDlg, UINT wMsg, WPARAM wParam, LPARAM lParam){
  38.         int item;
  39.  
  40.         switch(wMsg){
  41.         case WM_INITDIALOG:
  42.                 centre_window(hDlg);
  43.                 builddlginit(hDlg);
  44.                 break;
  45.         case WM_COMMAND:
  46.                 item = LOWORD(wParam);
  47.                 switch(HIWORD(wParam)){
  48.                 case BN_CLICKED:
  49.                         if(!builddlgitem(hDlg,item))
  50.                                 EndDialog(hDlg,item);
  51.                         break;
  52.                 }
  53.                 break;
  54.         default:
  55.                 return false;
  56.         }
  57.  
  58.         return true;
  59. }
  60.  
  61. Boolean builddialog(FilterRecordPtr pb){
  62.         INT_PTR res;
  63.         PlatformData *p = (PlatformData *)pb->platformData;
  64.  
  65.         res = DialogBoxParam(hDllInstance,MAKEINTRESOURCE(ID_BUILDDLG),
  66.                              gdata->hWndMainDlg ? gdata->hWndMainDlg : (HWND)p->hwnd,builddlgproc,0);
  67.         if (res == 0) {
  68.                 simplealert(_strdup("DialogBoxParam in valid parent window handle"));
  69.         }
  70.         if (res == -1) {
  71.                 char s[100];
  72.                 strcpy(s, "DialogBoxParam failed: ");
  73.                 FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, GetLastError(), 0, s + strlen(s), 0x100, NULL);
  74.                 dbg(s);
  75.         }
  76.  
  77.         return res == IDOK;
  78. }
  79.