2009-11-09 14:00:22 +00:00
|
|
|
/************************************************/
|
|
|
|
/* Locate items at the current cursor position. */
|
|
|
|
/************************************************/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
#include "fctsys.h"
|
|
|
|
#include "common.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "class_drawpanel.h"
|
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
#include "pcbnew.h"
|
2007-06-05 12:10:51 +00:00
|
|
|
#include "gerbview.h"
|
|
|
|
#include "trigo.h"
|
|
|
|
#include "protos.h"
|
|
|
|
|
|
|
|
|
2009-11-09 14:00:22 +00:00
|
|
|
/* Display the character of the localized STRUCTURE and return a pointer
|
|
|
|
* to it.
|
2007-08-20 19:33:15 +00:00
|
|
|
*/
|
2009-11-09 14:00:22 +00:00
|
|
|
BOARD_ITEM* WinEDA_GerberFrame::Locate( int typeloc )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-08-20 19:33:15 +00:00
|
|
|
MsgPanel->EraseMsgBox();
|
|
|
|
return NULL;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|