Commit ba04f832 authored by CHARRAS's avatar CHARRAS
Browse files

small change on hotkey management. Added: drag component

parent 3e3ae892
Loading
Loading
Loading
Loading
+12 −0
Original line number Original line Diff line number Diff line
@@ -4,6 +4,18 @@ Started 2007-June-11
Please add newer entries at the top, list the date and your name with 
Please add newer entries at the top, list the date and your name with 
email address.
email address.



2007-sept-22 UPDATE   Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
================================================================================
+ all
    * small change in hotkeys handling
		(Ki_HotkeyInfo: new member m_IdMenuEvent to call an existing event handler from a hotkey list)

+ eeschema:
	* added drag component in pop up menu and hotkeys
	* plot svg format: incorrect arc draw fixed


2007-Sep-22 UPDATE   Dick Hollenbeck <dick@softplc.com>
2007-Sep-22 UPDATE   Dick Hollenbeck <dick@softplc.com>
================================================================================
================================================================================
+ pcbnew
+ pcbnew
+5 −4
Original line number Original line Diff line number Diff line
@@ -166,10 +166,11 @@ char Line[256];
void PlotPolyPS(int nb_segm, int * coord, int fill, int width)
void PlotPolyPS(int nb_segm, int * coord, int fill, int width)
/*****************************************************************/
/*****************************************************************/


/* Trace un polygone ( ferme si rempli ) en format POSTSCRIPT
/* Draw a polygon ( a filled polygon if fill == 1 ) in POSTSCRIPT format
 * coord = tableau des coord des sommets
 * @param nb_segm = corner count
 * nb_segm = nombre de coord ( 1 coord = 2 elements: X et Y du tableau )
 * @param coord = corner list (a corner uses 2 int = X coordinate followed by Y  coordinate
 * fill : si != 0 polygone rempli
 * @param fill :if == 0 : filled polygon
 * @param  width = line width
 */
 */
{
{
int ii;
int ii;
+530 −417

File changed.

Preview size limit exceeded, changes collapsed.

+156 −151

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Original line Diff line number Diff line
@@ -15,7 +15,7 @@
#include "colors.h"
#include "colors.h"


// Define print format d to display a schematic component line
// Define print format d to display a schematic component line
#define CMP_FORMAT wxT("%3d %+8s - %+16s : %-.32s")
#define CMP_FORMAT wxT("%3d %8s - %16s : %-.32s")


#define FILTERFOOTPRINTKEY "FilterFootprint"
#define FILTERFOOTPRINTKEY "FilterFootprint"


Loading