kicad/gerbview/class_gbr_screen.h

45 lines
928 B
C
Raw Normal View History

2012-04-25 19:46:30 +00:00
/**
* @file class_gbr_screen.h
*/
#ifndef CLASS_GBR_SCREEN_H_
#define CLASS_GBR_SCREEN_H_
#include <base_units.h>
#include <class_base_screen.h>
2012-04-25 19:46:30 +00:00
#define ZOOM_FACTOR( x ) ( x * IU_PER_DECIMILS )
2012-04-25 19:46:30 +00:00
/* Handle info to display a board */
class GBR_SCREEN : public BASE_SCREEN
2012-04-25 19:46:30 +00:00
{
public:
int m_Active_Layer;
2012-04-25 19:46:30 +00:00
/**
* Constructor
* @param aPageSizeIU is the size of the initial paper page in internal units.
*/
GBR_SCREEN( const wxSize& aPageSizeIU );
~GBR_SCREEN();
GBR_SCREEN* Next() { return (GBR_SCREEN*) Pnext; }
// void SetNextZoom();
// void SetPreviousZoom();
// void SetLastZoom();
2012-04-25 19:46:30 +00:00
virtual int MilsToIuScalar();
/**
* Function ClearUndoORRedoList
* virtual pure in BASE_SCREEN, so it must be defined here
*/
void ClearUndoORRedoList( UNDO_REDO_CONTAINER& aList, int aItemCount = -1 );
2012-04-25 19:46:30 +00:00
};
2012-04-25 19:46:30 +00:00
#endif // CLASS_GBR_SCREEN_H_