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
cbaf4f9f
Commit
cbaf4f9f
authored
Dec 11, 2007
by
dickelbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hotkey fix for + and -
parent
eb9e1f77
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
34 additions
and
14 deletions
+34
-14
Doxyfile
Doxyfile
+3
-1
change_log.txt
change_log.txt
+18
-9
hotkeys_basic.cpp
common/hotkeys_basic.cpp
+8
-2
hotkeys.cpp
pcbnew/hotkeys.cpp
+4
-1
tool_pcb.cpp
pcbnew/tool_pcb.cpp
+1
-1
No files found.
Doxyfile
View file @
cbaf4f9f
...
...
@@ -466,7 +466,9 @@ INPUT = kicad \
common \
gerbview \
share \
include
include \
polygon
# If the value of the INPUT tag contains directories, you can use the
# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
...
...
change_log.txt
View file @
cbaf4f9f
...
...
@@ -4,6 +4,16 @@ Started 2007-June-11
Please add newer entries at the top, list the date and your name with
email address.
2007-Dec-11 UPDATE Dick Hollenbeck <dick@softplc.com>
================================================================================
+all
* Fixed hotkey table for '+' and '-' bug. The lookup table in
common/hotkeys_basic.cpp had bad entries for + and -. These hotkeys
were not working on Linux.
* Added polygon directory to Doxyfile.
2007-Dec-09 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
================================================================================
+cvpcb:
...
...
@@ -24,7 +34,6 @@ email address.
Very minor bug in drill map : inaccurate via shapes (I believe EXCELLON drill file has no problems)
2007-Dec-06 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
================================================================================
+all
...
...
common/hotkeys_basic.cpp
View file @
cbaf4f9f
...
...
@@ -61,8 +61,8 @@ static struct hotkey_name_descr s_Hotkey_Name_List[] =
{
wxT
(
"End"
),
WXK_END
},
{
wxT
(
"Page Up"
),
WXK_PAGEUP
},
{
wxT
(
"Page Down"
),
WXK_PAGEDOWN
},
{
wxT
(
"+"
),
WXK_ADD
},
{
wxT
(
"-"
),
WXK_SUBTRACT
},
{
wxT
(
"+"
),
'+'
},
{
wxT
(
"-"
),
'-'
},
{
wxT
(
"Up"
),
WXK_UP
},
{
wxT
(
"Down"
),
WXK_DOWN
},
...
...
@@ -273,6 +273,7 @@ static int ReturnKeyCodeFromKeyName( const wxString& keyname )
{
if
(
s_Hotkey_Name_List
[
ii
].
m_KeyCode
==
0
)
// End of list reached
break
;
if
(
keyname
.
CmpNoCase
(
s_Hotkey_Name_List
[
ii
].
m_Name
)
==
0
)
{
keycode
=
s_Hotkey_Name_List
[
ii
].
m_KeyCode
;
...
...
@@ -542,10 +543,13 @@ int WinEDA_BasicFrame::ReadHotkeyConfigFile( const wxString&
/* Get the key name */
strtok
(
NULL
,
"
\"\n\r
"
);
keyname
=
strtok
(
NULL
,
"
\"\n\r
"
);
strtok
(
NULL
,
"
\"\n\r
"
);
/* Get the command name */
fctname
=
strtok
(
NULL
,
"
\"\n\r
"
);
msg
=
CONV_FROM_UTF8
(
fctname
);
/* search the hotkey in current hotkey list */
for
(
Ki_HotkeyInfo
**
List
=
CurrentHotkeyList
;
*
List
!=
NULL
;
List
++
)
{
...
...
@@ -553,9 +557,11 @@ int WinEDA_BasicFrame::ReadHotkeyConfigFile( const wxString&
if
(
hk_decr
->
m_InfoMsg
==
msg
)
{
msg
=
CONV_FROM_UTF8
(
keyname
);
int
code
=
ReturnKeyCodeFromKeyName
(
msg
);
if
(
code
)
hk_decr
->
m_KeyCode
=
code
;
break
;
}
}
...
...
pcbnew/hotkeys.cpp
View file @
cbaf4f9f
...
...
@@ -187,9 +187,12 @@ void WinEDA_PcbFrame::OnHotKey( wxDC* DC, int hotkey,
hotkey
+=
'A'
-
'a'
;
Ki_HotkeyInfo
*
HK_Descr
=
GetDescriptorFromHotkey
(
hotkey
,
s_Common_Hotkey_List
);
if
(
HK_Descr
==
NULL
)
HK_Descr
=
GetDescriptorFromHotkey
(
hotkey
,
s_board_edit_Hotkey_List
);
if
(
HK_Descr
==
NULL
)
return
;
if
(
HK_Descr
==
NULL
)
return
;
int
ll
;
...
...
pcbnew/tool_pcb.cpp
View file @
cbaf4f9f
...
...
@@ -620,7 +620,7 @@ WinEDAChoiceBox* WinEDA_PcbFrame::ReCreateLayerBox( WinEDA_Toolbar* parent )
if
(
parent
==
NULL
)
return
NULL
;
m_SelLayerBox
=
new
WinEDAChoiceBox
(
parent
,
ID_TOOLBARH_PCB_SELECT_LAYER
,
wxPoint
(
-
1
,
-
1
),
wxSize
(
LISTBOX_WIDTH
,
-
1
)
);
wxPoint
(
-
1
,
-
1
),
wxSize
(
-
1
,
-
1
)
);
parent
->
AddControl
(
m_SelLayerBox
);
}
...
...
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