Added GetSettings() method for obtaining current rendering settings used by PAINTER class.

This commit is contained in:
Maciej Suminski 2013-04-04 11:23:23 +02:00
parent 826d5a8954
commit 329eae1f74
1 changed files with 10 additions and 0 deletions

View File

@ -179,6 +179,16 @@ public:
m_settings = aSettings; m_settings = aSettings;
} }
/**
* Function GetSettings
* Returns pointer to current settings that are going to be used when drawing items.
* @return Current rendering settings.
*/
virtual RENDER_SETTINGS* GetSettings()
{
return m_settings;
}
/** /**
* Function Draw * Function Draw
* Takes an instance of EDA_ITEM and passes it to a function that know how to draw the item. * Takes an instance of EDA_ITEM and passes it to a function that know how to draw the item.