Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
ca065833
Commit
ca065833
authored
Jan 22, 2015
by
Wayne Stambaugh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove EDA_DRAW_FRAME::IsActive() and replace with wxFrame::IsActive().
parent
ebb967c4
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
16 additions
and
22 deletions
+16
-22
basicframe.cpp
common/basicframe.cpp
+1
-2
draw_frame.cpp
common/draw_frame.cpp
+3
-5
wxstruct.h
include/wxstruct.h
+3
-6
footprint_wizard_frame.cpp
pcbnew/footprint_wizard_frame.cpp
+5
-5
modview_frame.cpp
pcbnew/modview_frame.cpp
+4
-4
No files found.
common/basicframe.cpp
View file @
ca065833
...
...
@@ -2,7 +2,7 @@
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2015 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 2013 Wayne Stambaugh <stambaughw@verizon.net>
* Copyright (C) 2013
-2015
Wayne Stambaugh <stambaughw@verizon.net>
* Copyright (C) 1992-2015 KiCad Developers, see AUTHORS.txt for contributors.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -72,7 +72,6 @@ EDA_BASE_FRAME::EDA_BASE_FRAME( wxWindow* aParent, FRAME_T aFrameType,
m_Ident
=
aFrameType
;
m_mainToolBar
=
NULL
;
m_FrameIsActive
=
true
;
m_hasAutoSave
=
false
;
m_autoSaveState
=
false
;
m_autoSaveInterval
=
-
1
;
...
...
common/draw_frame.cpp
View file @
ca065833
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2004 Jean-Pierre Charras, jean-pierre.charras@gipsa-lab.inpg.fr
* Copyright (C) 2008-201
1
Wayne Stambaugh <stambaughw@verizon.net>
* Copyright (C) 2004-201
1
KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 2004
-2015
Jean-Pierre Charras, jean-pierre.charras@gipsa-lab.inpg.fr
* Copyright (C) 2008-201
5
Wayne Stambaugh <stambaughw@verizon.net>
* Copyright (C) 2004-201
5
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
...
...
@@ -226,8 +226,6 @@ void EDA_DRAW_FRAME::EraseMsgBox()
void
EDA_DRAW_FRAME
::
OnActivate
(
wxActivateEvent
&
event
)
{
m_FrameIsActive
=
event
.
GetActive
();
if
(
m_canvas
)
m_canvas
->
SetCanStartBlock
(
-
1
);
...
...
include/wxstruct.h
View file @
ca065833
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2009 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
* Copyright (C) 2011 Wayne Stambaugh <stambaughw@verizon.net>
* Copyright (C) 1992-201
1
KiCad Developers, see AUTHORS.txt for contributors.
* Copyright (C) 2009
-2015
Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
* Copyright (C) 2011
-2015
Wayne Stambaugh <stambaughw@verizon.net>
* Copyright (C) 1992-201
5
KiCad Developers, see AUTHORS.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
...
...
@@ -118,7 +118,6 @@ protected:
wxSize
m_FrameSize
;
wxAuiToolBar
*
m_mainToolBar
;
///< Standard horizontal Toolbar
bool
m_FrameIsActive
;
wxString
m_FrameName
;
///< name used for writing and reading setup
///< It is "SchematicFrame", "PcbFrame" ....
wxString
m_AboutTitle
;
///< Name of program displayed in About.
...
...
@@ -200,8 +199,6 @@ public:
wxString
GetName
()
const
{
return
m_FrameName
;
}
bool
IsActive
()
const
{
return
m_FrameIsActive
;
}
bool
IsType
(
FRAME_T
aType
)
const
{
return
m_Ident
==
aType
;
}
void
GetKicadHelp
(
wxCommandEvent
&
event
);
...
...
pcbnew/footprint_wizard_frame.cpp
View file @
ca065833
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2012 Miguel Angel Ajo Pelayo <miguelangel@nbee.es>
* Copyright (C) 2012 Jean-Pierre Charras, jaen-pierre.charras
* Copyright (C) 2008-201
1
Wayne Stambaugh <stambaughw@verizon.net>
* Copyright (C) 2004-201
1
KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 2012
-2015
Miguel Angel Ajo Pelayo <miguelangel@nbee.es>
* Copyright (C) 2012
-2015
Jean-Pierre Charras, jaen-pierre.charras
* Copyright (C) 2008-201
5
Wayne Stambaugh <stambaughw@verizon.net>
* Copyright (C) 2004-201
5
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
...
...
@@ -440,7 +440,7 @@ void FOOTPRINT_WIZARD_FRAME::OnActivate( wxActivateEvent& event )
EDA_DRAW_FRAME
::
OnActivate
(
event
);
// Ensure we do not have old selection:
if
(
!
m_FrameIsActive
)
if
(
!
event
.
GetActive
()
)
return
;
bool
footprintWizardsChanged
=
false
;
...
...
pcbnew/modview_frame.cpp
View file @
ca065833
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2012 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 2008-201
1
Wayne Stambaugh <stambaughw@verizon.net>
* Copyright (C) 2004-201
2
KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 2012
-2015
Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 2008-201
5
Wayne Stambaugh <stambaughw@verizon.net>
* Copyright (C) 2004-201
5
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
...
...
@@ -551,7 +551,7 @@ void FOOTPRINT_VIEWER_FRAME::OnActivate( wxActivateEvent& event )
EDA_DRAW_FRAME
::
OnActivate
(
event
);
// Ensure we do not have old selection:
if
(
!
m_FrameIsActive
)
if
(
!
event
.
GetActive
()
)
return
;
// Ensure we have the right library list:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment