OSDN Git Service

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