~jeru-sheng/kicad/kicad-feature

« back to all changes in this revision

Viewing changes to pagelayout_editor/pl_editor_config.cpp

  • Committer: jean-pierre charras
  • Date: 2013-07-19 18:27:22 UTC
  • mto: This revision was merged to the branch mainline in revision 4244.
  • Revision ID: jp.charras@wanadoo.fr-20130719182722-193syk49ehwi95rk
Initial release of pl_editor, the page layout and title block editor.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This program source code file is part of KiCad, a free EDA CAD application.
 
3
 *
 
4
 * Copyright (C) 2013 Jean-Pierre Charras, jp.charras at wanadoo.fr
 
5
 * Copyright (C) 2013 KiCad Developers, see AUTHORS.txt for contributors.
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or
 
8
 * modify it under the terms of the GNU General Public License
 
9
 * as published by the Free Software Foundation; either version 2
 
10
 * of the License, or (at your option) any later version.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 * GNU General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License
 
18
 * along with this program; if not, you may find one here:
 
19
 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
 
20
 * or you may search the http://www.gnu.org website for the version 2 license,
 
21
 * or you may write to the Free Software Foundation, Inc.,
 
22
 * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 
23
 */
 
24
 
 
25
/**
 
26
 * @file pl_editor_config.cpp
 
27
 * @brief page layout editor configuration.
 
28
*/
 
29
 
 
30
#include <fctsys.h>
 
31
#include <common.h>
 
32
#include <class_drawpanel.h>
 
33
#include <gestfich.h>
 
34
#include <param_config.h>
 
35
 
 
36
#include <pl_editor_frame.h>
 
37
#include <hotkeys.h>
 
38
#include <dialog_hotkeys_editor.h>
 
39
 
 
40
 
 
41
#define GROUP wxT("/pl_editor")
 
42
 
 
43
#define INSETUP true
 
44
 
 
45
 
 
46
void PL_EDITOR_FRAME::Process_Config( wxCommandEvent& event )
 
47
{
 
48
    int      id = event.GetId();
 
49
 
 
50
    switch( id )
 
51
    {
 
52
 
 
53
    default:
 
54
        wxMessageBox( wxT( "PL_EDITOR_FRAME::Process_Config error" ) );
 
55
        break;
 
56
    }
 
57
}
 
58
 
 
59
 
 
60
PARAM_CFG_ARRAY& PL_EDITOR_FRAME::GetConfigurationSettings()
 
61
{
 
62
    if( !m_configSettings.empty() )
 
63
        return m_configSettings;
 
64
 
 
65
    m_configSettings.push_back( new PARAM_CFG_INT( true, wxT( "Units" ),
 
66
                                                   (int*) &g_UserUnit, 0, 0, 1 ) );
 
67
 
 
68
    return m_configSettings;
 
69
}