OSDN Git Service

ソースの文字コードをUTF-8(BOM無し)に、改行コードをCR+LFに変更。
[tpi/lychee.git] / src / lychee / dlg_process.h
1 /*******************************************************************************\r
2   TPI - flexible but useless plug-in framework.\r
3   Copyright (C) 2002-2009 Silky\r
4 \r
5   This library is free software; you can redistribute it and/or modify it under\r
6   the terms of the GNU Lesser General Public License as published by the Free\r
7   Software Foundation; either version 2.1 of the License, or (at your option)\r
8   any later version.\r
9 \r
10   This library is distributed in the hope that it will be useful, but WITHOUT\r
11   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or \r
12   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License\r
13   for more details.\r
14 \r
15   You should have received a copy of the GNU Lesser General Public License along\r
16   with this library; if not, write to the Free Software Foundation, Inc.,\r
17   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA\r
18 \r
19   $Id$\r
20 *******************************************************************************/\r
21 \r
22 #ifndef H_LOADED_DLG_PROCESS\r
23 #define H_LOADED_DLG_PROCESS\r
24 \r
25 class ProcessDialog: public wxDialog {\r
26 public:\r
27     wxTextCtrl* ebSource;\r
28     wxTextCtrl* ebTarget;\r
29     wxGauge* gauge;\r
30     bool fCancel;\r
31 \r
32     void OnInit(wxInitDialogEvent &);\r
33         void OnClose(wxCloseEvent &);\r
34 \r
35         ProcessDialog();\r
36         ~ProcessDialog();\r
37 \r
38         DECLARE_EVENT_TABLE()\r
39 };\r
40 \r
41 //******************************************************************************\r
42 //    プロシージャ\r
43 //******************************************************************************\r
44 \r
45 int __stdcall TPICallbackProc(unsigned int, void *);\r
46 \r
47 #endif\r