annotate_dialog.h 1.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * This program source code file is part of KICAD, a free EDA CAD application.
 *
 * Copyright (C) 1992-2009 Kicad Developers, see change_log.txt for contributors.
 *
 * 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
 */
23 24 25 26

#ifndef _ANNOTATE_DIALOG_H_
#define _ANNOTATE_DIALOG_H_

27
#include "dialog_annotate_base.h"
28

29

30
class SCH_EDIT_FRAME;
31 32 33
class wxConfig;


34
/*!
35
 * DIALOG_ANNOTATE class declaration
36 37
 */

38
class DIALOG_ANNOTATE: public DIALOG_ANNOTATE_BASE
39
{
40
private:
41
    SCH_EDIT_FRAME * m_Parent;
42
    wxConfig* m_Config;
43 44

public:
45
    DIALOG_ANNOTATE( SCH_EDIT_FRAME* parent );
46
    ~DIALOG_ANNOTATE(){};
47 48

    /// Initialises member variables
49
    void InitValues();
50 51 52 53 54 55 56
    void OnCancelClick( wxCommandEvent& event );
    void OnClearAnnotationCmpClick( wxCommandEvent& event );
    void OnApplyClick( wxCommandEvent& event );

    // User functions:
    bool GetLevel( void );
    bool GetResetItems( void );
charras's avatar
charras committed
57
    int GetSortOrder( void );
58
    int GetAnnotateAlgo( void );
59 60 61
};

#endif
62
    // _ANNOTATE_DIALOG_H_