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
0605d072
Commit
0605d072
authored
Nov 14, 2007
by
CHARRAS
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
--no commit message
--no commit message
parent
892b46c4
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
970 additions
and
904 deletions
+970
-904
hotkeys_basic.cpp
common/hotkeys_basic.cpp
+11
-2
eeconfig.cpp
eeschema/eeconfig.cpp
+4
-0
build_version.h
include/build_version.h
+1
-1
id.h
include/id.h
+1
-1
kicad.mo
internat/fr/kicad.mo
+0
-0
kicad.po
internat/fr/kicad.po
+949
-900
pcbcfg.cpp
pcbnew/pcbcfg.cpp
+4
-0
No files found.
common/hotkeys_basic.cpp
View file @
0605d072
...
...
@@ -598,20 +598,29 @@ wxString ReturnHotkeyConfigFilePath( int choice )
void
AddHotkeyConfigMenu
(
wxMenu
*
menu
)
/***************************************/
/* add hotkey config options to a menu
* @parm menu : initial menu
/*
*
add hotkey config options to a menu
* @par
a
m menu : initial menu
*/
{
wxMenuItem
*
item
;
if
(
menu
==
NULL
)
return
;
item
=
new
wxMenuItem
(
menu
,
ID_PREFERENCES_HOTKEY_SHOW_CURRENT_LIST
,
_
(
"Show Current Hotkey List"
),
_
(
"Show the current hotkey config"
)
);
item
->
SetBitmap
(
info_xpm
);
menu
->
Append
(
item
);
item
=
new
wxMenuItem
(
menu
,
ID_PREFERENCES_CREATE_CONFIG_HOTKEYS
,
_
(
"Create Hotkey config file"
),
_
(
"Create or Recreate the hotkey config file from current hotkey list"
)
);
item
->
SetBitmap
(
save_setup_xpm
);
menu
->
Append
(
item
);
item
=
new
wxMenuItem
(
menu
,
ID_PREFERENCES_READ_CONFIG_HOTKEYS
,
_
(
"Reread Hotkey config file"
),
_
(
"Reread the hotkey config file"
)
);
...
...
eeschema/eeconfig.cpp
View file @
0605d072
...
...
@@ -101,6 +101,10 @@ wxString FullFileName;
HandleHotkeyConfigMenuSelection
(
this
,
id
);
break
;
case
ID_PREFERENCES_HOTKEY_SHOW_CURRENT_LIST
:
// Display Current hotkey list for eeschema
DisplayHotkeyList
(
this
,
s_Schematic_Hokeys_Descr
);
break
;
default
:
DisplayError
(
this
,
wxT
(
"WinEDA_SchematicFrame::Process_Config internal error"
)
);
}
...
...
include/build_version.h
View file @
0605d072
...
...
@@ -5,7 +5,7 @@
COMMON_GLOBL
wxString
g_BuildVersion
#ifdef EDA_BASE
(
wxT
(
"(2007-11-
09
)"
))
(
wxT
(
"(2007-11-
14
)"
))
#endif
;
...
...
include/id.h
View file @
0605d072
...
...
@@ -72,7 +72,7 @@ enum main_id {
ID_PREFERENCES_EDIT_CONFIG_HOTKEYS
,
ID_PREFERENCES_HOTKEY_PATH_IS_HOME
,
ID_PREFERENCES_HOTKEY_PATH_IS_KICAD
,
ID_PREFERENCES_
UNUSED1
,
ID_PREFERENCES_
HOTKEY_SHOW_CURRENT_LIST
,
ID_PREFERENCES_UNUSED2
,
ID_PREFERENCES_UNUSED3
,
ID_CONFIG_AND_PREFERENCES_END
,
...
...
internat/fr/kicad.mo
View file @
0605d072
No preview for this file type
internat/fr/kicad.po
View file @
0605d072
This diff is collapsed.
Click to expand it.
pcbnew/pcbcfg.cpp
View file @
0605d072
...
...
@@ -111,6 +111,10 @@ wxString FullFileName;
HandleHotkeyConfigMenuSelection
(
this
,
id
);
break
;
case
ID_PREFERENCES_HOTKEY_SHOW_CURRENT_LIST
:
// Display Current hotkey list for eeschema
DisplayHotkeyList
(
this
,
s_Board_Editor_Hokeys_Descr
);
break
;
default
:
DisplayError
(
this
,
wxT
(
"WinEDA_PcbFrame::Process_Config internal error"
));
}
...
...
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