dialog_graphic_items_options.h 1.8 KB
Newer Older
1 2 3 4
/**
 * @file dialog_graphic_items_options.h
 */

5
 /*
6
 * This program source code file is part of KiCad, a free EDA CAD application.
7 8
 *
 * Copyright (C) 1992-2010 <Jean-Pierre Charras> jean-pierre.charras@gipsa-lab.inpg.fr
9
 * Copyright (C) 1992-2010 KiCad Developers, see change_log.txt for contributors.
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, you may find one here:
 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
 * or you may search the http://www.gnu.org website for the version 2 license,
 * or you may write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 */
28

29 30 31
#ifndef _DIALOG_GRAPHIC_ITEMS_OPTIONS_H_
#define _DIALOG_GRAPHIC_ITEMS_OPTIONS_H_

32
#include <dialog_graphic_items_options_base.h>
33 34

/*!
35
 * DIALOG_GRAPHIC_ITEMS_OPTIONS class declaration
36 37
 */

38
class DIALOG_GRAPHIC_ITEMS_OPTIONS: public DIALOG_GRAPHIC_ITEMS_OPTIONS_BASE
39
{
40 41 42
private:
    BOARD_DESIGN_SETTINGS  m_brdSettings;
    PCB_BASE_FRAME * m_parent;
43

44
public:
45 46
    DIALOG_GRAPHIC_ITEMS_OPTIONS( PCB_BASE_FRAME* parent );
    ~DIALOG_GRAPHIC_ITEMS_OPTIONS();
47

48 49
private:
    void initValues( );
50 51 52 53 54 55
    void OnOkClick( wxCommandEvent& event );
    void OnCancelClick( wxCommandEvent& event );
};

#endif
    // _DIALOG_GRAPHIC_ITEMS_OPTIONS_H_