Sorted out headers.
This commit is contained in:
parent
9fbf45ebfc
commit
86f520f76e
|
@ -22,11 +22,9 @@
|
|||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include <wx/wx.h>
|
||||
|
||||
#include <layers_id_colors_and_visibility.h>
|
||||
|
||||
#include "selection_area.h"
|
||||
#include <gal/graphics_abstraction_layer.h>
|
||||
#include <gal/color4d.h>
|
||||
|
||||
using namespace KiGfx;
|
||||
|
||||
|
@ -47,7 +45,7 @@ void SELECTION_AREA::ViewGetLayers( int aLayers[], int& aCount ) const
|
|||
}
|
||||
|
||||
|
||||
void SELECTION_AREA::ViewDraw( int aLayer, GAL* aGal ) const
|
||||
void SELECTION_AREA::ViewDraw( int aLayer, KiGfx::GAL* aGal ) const
|
||||
{
|
||||
aGal->SetLineWidth( 1.0 );
|
||||
aGal->SetStrokeColor( COLOR4D( 1.0, 1.0, 0.4, 1.0 ) );
|
||||
|
|
|
@ -25,15 +25,14 @@
|
|||
#ifndef __SELECTION_AREA_H
|
||||
#define __SELECTION_AREA_H
|
||||
|
||||
#include <tool/tool_event.h>
|
||||
#include <tool/tool_manager.h>
|
||||
|
||||
#include <math/box2.h>
|
||||
|
||||
#include <view/view.h>
|
||||
#include <gal/graphics_abstraction_layer.h>
|
||||
#include <base_struct.h>
|
||||
#include <layers_id_colors_and_visibility.h>
|
||||
#include <math/box2.h>
|
||||
|
||||
namespace KiGfx
|
||||
{
|
||||
class GAL;
|
||||
}
|
||||
|
||||
/**
|
||||
* Class SELECTION_AREA
|
||||
|
|
|
@ -36,6 +36,8 @@
|
|||
#include <view/view_controls.h>
|
||||
|
||||
#include <tool/context_menu.h>
|
||||
#include <tool/tool_event.h>
|
||||
#include <tool/tool_manager.h>
|
||||
|
||||
#include "selection_tool.h"
|
||||
#include "selection_area.h"
|
||||
|
|
Loading…
Reference in New Issue