Add support for Ctrl+A in BrowseRefsDlg and RepositoryBrowser
[TortoiseGit.git] / src / TortoiseProc / CreateChangelistDlg.h
blobfd8dbd3de7cac7aa3f37a853ac98feda73a1acd5
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2020 - TortoiseGit
4 // Copyright (C) 2003-2008 - TortoiseSVN
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License
8 // as published by the Free Software Foundation; either version 2
9 // of the License, or (at your option) any later version.
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.
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software Foundation,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #pragma once
21 #include "StandAloneDlg.h"
23 /**
24 * \ingroup TortoiseProc
25 * Helper dialog to get the name of a change list.
27 class CCreateChangelistDlg : public CStandAloneDialog
29 DECLARE_DYNAMIC(CCreateChangelistDlg)
31 public:
32 CCreateChangelistDlg(CWnd* pParent = nullptr); // standard constructor
33 virtual ~CCreateChangelistDlg();
35 enum { IDD = IDD_CREATECHANGELIST };
37 protected:
38 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
39 virtual BOOL OnInitDialog() override;
40 afx_msg void OnEnChangeName();
42 DECLARE_MESSAGE_MAP()
43 public:
44 CString m_sName;