Subversion Repositories filter_foundry

Rev

Rev 177 | Rev 194 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 177 Rev 192
Line 1... Line 1...
1
/*
1
/*
2
    This file is part of "Filter Foundry", a filter plugin for Adobe Photoshop
2
    This file is part of "Filter Foundry", a filter plugin for Adobe Photoshop
3
    Copyright (C) 2003-2019 Toby Thain, toby@telegraphics.com.au
3
    Copyright (C) 2003-2009 Toby Thain, toby@telegraphics.com.au
-
 
4
    Copyright (C) 2018-2019 Daniel Marschall, ViaThinkSoft
4
 
5
 
5
    This program is free software; you can redistribute it and/or modify
6
    This program is free software; you can redistribute it and/or modify
6
    it under the terms of the GNU General Public License as published by
7
    it under the terms of the GNU General Public License as published by
7
    the Free Software Foundation; either version 2 of the License, or
8
    the Free Software Foundation; either version 2 of the License, or
8
    (at your option) any later version.
9
    (at your option) any later version.
Line 44... Line 45...
44
        }else{
45
        }else{
45
                /* strictly speaking this is not needed on the Mac,
46
                /* strictly speaking this is not needed on the Mac,
46
                   we can set initial values statically in the rez description */
47
                   we can set initial values statically in the rez description */
47
                SetDlgItemText(dp,CATEGORYITEM, "Filter Foundry");
48
                SetDlgItemText(dp,CATEGORYITEM, "Filter Foundry");
48
                SetDlgItemText(dp,TITLEITEM,    "Untitled");
49
                SetDlgItemText(dp,TITLEITEM,    "Untitled");
49
                SetDlgItemText(dp,COPYRIGHTITEM,""); //"Filter Foundry Copyright (C) 2003-2019 Toby Thain, toby@telegraphics.com.au");
50
                SetDlgItemText(dp,COPYRIGHTITEM,""); //"Filter Foundry Copyright (C) 2003-2009 Toby Thain, 2018-2019 Daniel Marschall");
50
                SetDlgItemText(dp,AUTHORITEM,   "Anonymous");
51
                SetDlgItemText(dp,AUTHORITEM,   "Anonymous");
51
                strcpy(s,"Map X");
52
                strcpy(s,"Map X");
52
                for(i = 0; i < 4; ++i){
53
                for(i = 0; i < 4; ++i){
53
                        s[4] = '0'+i;
54
                        s[4] = '0'+i;
54
                        SetDlgItemText(dp,FIRSTMAPNAMEITEM+i,s);
55
                        SetDlgItemText(dp,FIRSTMAPNAMEITEM+i,s);