Subversion Repositories filter_foundry

Rev

Rev 206 | Rev 412 | 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.         PlatformData *p = (PlatformData *)pb->platformData;
  63.         return DialogBoxParam(hDllInstance,MAKEINTRESOURCE(ID_BUILDDLG),
  64.                                                   gdata->hWndMainDlg ? gdata->hWndMainDlg : (HWND)p->hwnd,builddlgproc,0) == IDOK;
  65. }
  66.