Subversion Repositories filter_foundry

Rev

Rev 171 | Rev 198 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
18 toby 1
/*
2
    This file is part of "Filter Foundry", a filter plugin for Adobe Photoshop
192 daniel-mar 3
    Copyright (C) 2003-2009 Toby Thain, toby@telegraphics.com.au
4
    Copyright (C) 2018-2019 Daniel Marschall, ViaThinkSoft
18 toby 5
 
6
    This program is free software; you can redistribute it and/or modify
106 dmarschall 7
    it under the terms of the GNU General Public License as published by
18 toby 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
 
106 dmarschall 16
    You should have received a copy of the GNU General Public License
18 toby 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
 
78 toby 21
/* Win32 user interface routines */
2 toby 22
 
23
#include "world.h"
24
 
29 toby 25
#include "PIAbout.h"
2 toby 26
 
27
#include <windows.h>
28
#include <commctrl.h>
29
 
30
#include "ff.h"
31
#include "version.h"
32
 
33
extern HANDLE hDllInstance;
34
 
114 dmarschall 35
INT_PTR CALLBACK builddlgproc(HWND hDlg, UINT wMsg, WPARAM wParam, LPARAM lParam);
2 toby 36
 
114 dmarschall 37
INT_PTR CALLBACK builddlgproc(HWND hDlg, UINT wMsg, WPARAM wParam, LPARAM lParam){
2 toby 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 = pb->platformData;
63
        return DialogBoxParam(hDllInstance,MAKEINTRESOURCE(ID_BUILDDLG),
106 dmarschall 64
                                                  gdata->hWndMainDlg ? gdata->hWndMainDlg : (HWND)p->hwnd,builddlgproc,0) == IDOK;
2 toby 65
}