_ >   1   /***************************************************************************
  2   *   Copyright (C) 2001-2008 by J�zef Starosczyk                           *
  3   *   ixen@copyhandler.com                                                  *
  4   *                                                                         *
  5   *   This program is free software; you can redistribute it and/or modify  *
  6   *   it under the terms of the GNU Library General Public License          *
  7   *   (version 2) as published by the Free Software Foundation;             *
  8   *                                                                         *
  9   *   This program is distributed in the hope that it will be useful,       *
  10   *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
  11   *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
  12   *   GNU General Public License for more details.                          *
  13   *                                                                         *
  14   *   You should have received a copy of the GNU Library General Public     *
  15   *   License along with this program; if not, write to the                 *
  16   *   Free Software Foundation, Inc.,                                       *
  17   *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
  18   ***************************************************************************/
    1 // ============================================================================
    2 //  Copyright (C) 2001-2020 by Jozef Starosczyk
    3 //  ixen {at} copyhandler [dot] com
    4 //
    5 //  This program is free software; you can redistribute it and/or modify
    6 //  it under the terms of the GNU Library General Public License
    7 //  (version 2) as published by the Free Software Foundation;
    8 //
    9 //  This program is distributed in the hope that it will be useful,
    10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
    11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12 //  GNU General Public License for more details.
    13 //
    14 //  You should have received a copy of the GNU Library General Public
    15 //  License along with this program; if not, write to the
    16 //  Free Software Foundation, Inc.,
    17 //  59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
    18 // ============================================================================
19 19 #pragma once
  20 20
  21 21 #include "CDragDropListCtrl.h"
 
34 34         chengine::FeedbackRules GetRules() const { return m_rules; }
  35 35
  36 36 protected:
< >   37           void DoDataExchange(CDataExchange* pDX) override;    // DDX/DDV support
    37         void DoDataExchange(CDataExchange* pDX) override;
38 38
  39 39         void OnLanguageChanged() override;
  40 40
 
59 59         afx_msg void OnAlreadyExistsChangeButton();
  60 60         afx_msg void OnAlreadyExistsAddButton();
  61 61         afx_msg void OnAlreadyExistsRemoveButton();
< >     62         afx_msg void OnAlreadyExistsUpButton();
    63         afx_msg void OnAlreadyExistsDownButton();
62 64
  63 65         afx_msg void OnDblclkErrorList(NMHDR* pNMHDR, LRESULT* pResult);
  64 66         afx_msg void OnErrorChangeButton();
  65 67         afx_msg void OnErrorAddButton();
  66 68         afx_msg void OnErrorRemoveButton();
< >     69         afx_msg void OnErrorUpButton();
    70         afx_msg void OnErrorDownButton();
67 71
  68 72         afx_msg void OnDblclkNotEnoughSpaceList(NMHDR* pNMHDR, LRESULT* pResult);
  69 73         afx_msg void OnNotEnoughSpaceChangeButton();
  70 74         afx_msg void OnNotEnoughSpaceAddButton();
  71 75         afx_msg void OnNotEnoughSpaceRemoveButton();
< >     76         afx_msg void OnNotEnoughSpaceUpButton();
    77         afx_msg void OnNotEnoughSpaceDownButton();
< _   72 78
  73 79         DECLARE_MESSAGE_MAP()
  74 80