Browse Source

test case for OnLeftClick() handling enhancements

pull/1/head
CHARRAS 19 years ago
parent
commit
f066aa1898
  1. 2
      change_log.txt
  2. 2
      pcbnew/classpcb.cpp
  3. 1200
      pcbnew/pcbcfg.h
  4. 3
      pcbnew/pcbnew.h
  5. 2
      pcbnew/set_color.cpp
  6. 2
      share/drawpanel.cpp

2
change_log.txt

@ -12,6 +12,8 @@ email address.
(SHIHT ou CTRL or ALT key is sufficient to suppress the popup menu
if needed for a double click )
Some work is still needed, of course
+ pcbnew
Color grid setting now works
2007-Sep-26 UPDATE Dick Hollenbeck <dick@softplc.com>

2
pcbnew/classpcb.cpp

@ -343,7 +343,7 @@ void PCB_SCREEN::Init()
/*************************/
/*
* Options diverses d'affichage l'ran:
* Handle display options like enable/disable some optional drawings:
*/
DISPLAY_OPTIONS::DISPLAY_OPTIONS()

1200
pcbnew/pcbcfg.h
File diff suppressed because it is too large
View File

3
pcbnew/pcbnew.h

@ -292,9 +292,6 @@ eda_global wxString g_ViaType_Name[4]
;
eda_global int g_ViaHoleLastValue; // Last value for non default value via hole
/* Couleur de fond affichage de bas d'ecran */
eda_global int g_PcbGridColor;
/* couleurs des autres items des empreintes */
#if defined MAIN
int g_PadCMPColor = RED;

2
pcbnew/set_color.cpp

@ -379,7 +379,7 @@ static ColorButton Grid_Butt =
{
_( "Grid" ), /* Title */
-1,
&g_PcbGridColor, /* adr du parametre optionnel */
&g_GridColor, /* adr du parametre optionnel */
FALSE,
&g_ShowGrid // address of boolean display control parameter to toggle
};

2
share/drawpanel.cpp

@ -1007,7 +1007,7 @@ void WinEDA_DrawPanel::OnKeyEvent( wxKeyEvent& event )
case WXK_NUMLOCK:
case WXK_LBUTTON:
case WXK_RBUTTON:
case 0x0135: /* Alt key */
case WXK_ALT:
return;
case WXK_ESCAPE:

Loading…
Cancel
Save