OSDN Git Service

Fix untranslated strings
[winmerge-jp/winmerge-jp.git] / Src / WMGotoDlg.h
1 /////////////////////////////////////////////////////////////////////////////
2 //    License (GPLv2+):
3 //    This program is free software; you can redistribute it and/or modify
4 //    it under the terms of the GNU General Public License as published by
5 //    the Free Software Foundation; either version 2 of the License, or
6 //    (at your option) any later version.
7 //
8 //    This program is distributed in the hope that it will be useful, but
9 //    WITHOUT ANY WARRANTY; without even the implied warranty of
10 //    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 //    General Public License for more details.
12 //
13 //    You should have received a copy of the GNU General Public License
14 //    along with this program; if not, write to the Free Software
15 //    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16 /////////////////////////////////////////////////////////////////////////////
17 /**
18  * @file  WMGotoDlg.h
19  *
20  * @brief Declaration file for WMGotoDlg dialog.
21  *
22  */
23 #pragma once
24
25 #include <memory>
26 #include "UnicodeString.h"
27
28 class WMGotoDlg
29 {
30 // Construction
31 public:
32         WMGotoDlg();
33         ~WMGotoDlg();
34         int DoModal();
35
36         String m_strParam;   /**< Line/difference number. */
37         int m_nFile;         /**< Target file number. */
38         int m_nGotoWhat;     /**< Goto line or difference? */
39 private:
40         WMGotoDlg(const WMGotoDlg &);
41         WMGotoDlg & operator=(const WMGotoDlg &);
42
43         class Impl;
44         std::unique_ptr<Impl> m_pimpl;
45 };