2012-01-23 04:33:36 +00:00
|
|
|
#include <common.h>
|
|
|
|
#include <colors_selection.h>
|
|
|
|
#include <layers_id_colors_and_visibility.h>
|
|
|
|
#include <bitmaps.h>
|
2012-05-04 17:44:42 +00:00
|
|
|
#include <colors.h>
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2012-05-04 17:44:42 +00:00
|
|
|
#include <wx/wx.h>
|
2010-11-02 23:13:56 +00:00
|
|
|
#include <wx/ownerdrw.h>
|
|
|
|
#include <wx/menuitem.h>
|
2012-05-04 17:44:42 +00:00
|
|
|
#include <wx/aui/aui.h>
|
2010-11-02 23:13:56 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <class_layer_box_selector.h>
|
2010-11-02 23:13:56 +00:00
|
|
|
|
|
|
|
/* class to display a layer list.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
LAYER_BOX_SELECTOR::LAYER_BOX_SELECTOR( wxAuiToolBar* parent, wxWindowID id,
|
2011-04-13 19:30:27 +00:00
|
|
|
const wxPoint& pos, const wxSize& size,
|
|
|
|
int n, const wxString choices[] ) :
|
|
|
|
wxBitmapComboBox( parent, id, wxEmptyString, pos, size, n, choices, wxCB_READONLY )
|
2010-11-03 18:55:51 +00:00
|
|
|
{
|
2010-11-03 21:19:46 +00:00
|
|
|
m_layerorder = true;
|
|
|
|
m_layerhotkeys = true;
|
2010-11-04 21:43:42 +00:00
|
|
|
m_hotkeys = NULL;
|
|
|
|
|
|
|
|
if( choices != NULL )
|
|
|
|
ResyncBitmapOnly();
|
2010-11-03 18:55:51 +00:00
|
|
|
}
|
2010-11-02 23:13:56 +00:00
|
|
|
|
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
LAYER_BOX_SELECTOR::LAYER_BOX_SELECTOR( wxAuiToolBar* parent, wxWindowID id,
|
2011-04-13 19:30:27 +00:00
|
|
|
const wxPoint& pos, const wxSize& size,
|
|
|
|
const wxArrayString& choices ) :
|
|
|
|
wxBitmapComboBox( parent, id, wxEmptyString, pos, size, choices, wxCB_READONLY )
|
2010-11-03 18:55:51 +00:00
|
|
|
{
|
2010-11-03 21:19:46 +00:00
|
|
|
m_layerorder = true;
|
|
|
|
m_layerhotkeys = true;
|
2010-11-04 21:43:42 +00:00
|
|
|
m_hotkeys = NULL;
|
|
|
|
|
|
|
|
if( !choices.IsEmpty() )
|
|
|
|
ResyncBitmapOnly();
|
2010-11-03 21:19:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-23 08:00:53 +00:00
|
|
|
bool LAYER_BOX_SELECTOR::SetLayersOrdered( bool value )
|
2010-11-03 21:19:46 +00:00
|
|
|
{
|
|
|
|
m_layerorder = value;
|
|
|
|
return m_layerorder;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-23 08:00:53 +00:00
|
|
|
bool LAYER_BOX_SELECTOR::SetLayersHotkeys( bool value )
|
2010-11-03 21:19:46 +00:00
|
|
|
{
|
|
|
|
m_layerhotkeys = value;
|
|
|
|
return m_layerhotkeys;
|
2010-11-03 18:55:51 +00:00
|
|
|
}
|
2010-11-02 23:13:56 +00:00
|
|
|
|
|
|
|
|
2010-11-03 18:55:51 +00:00
|
|
|
// Get Current Item #
|
2011-03-23 08:00:53 +00:00
|
|
|
int LAYER_BOX_SELECTOR::GetChoice()
|
2010-11-03 18:55:51 +00:00
|
|
|
{
|
|
|
|
return GetSelection();
|
|
|
|
}
|
2010-11-02 23:13:56 +00:00
|
|
|
|
|
|
|
|
2010-11-03 18:55:51 +00:00
|
|
|
// Get Current Layer
|
2011-03-23 08:00:53 +00:00
|
|
|
int LAYER_BOX_SELECTOR::GetLayerSelection()
|
2010-11-03 18:55:51 +00:00
|
|
|
{
|
|
|
|
return (long) GetClientData( GetSelection() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Set Layer #
|
2011-03-23 08:00:53 +00:00
|
|
|
int LAYER_BOX_SELECTOR::SetLayerSelection( int layer )
|
2010-11-03 18:55:51 +00:00
|
|
|
{
|
|
|
|
int elements = GetCount();
|
|
|
|
|
|
|
|
for( int i = 0; i < elements; i++ )
|
2010-11-02 23:13:56 +00:00
|
|
|
{
|
2013-01-23 16:13:42 +00:00
|
|
|
if( GetClientData( i ) == (void*)(intptr_t) layer )
|
2010-11-02 23:13:56 +00:00
|
|
|
{
|
2010-11-03 18:55:51 +00:00
|
|
|
if( GetSelection() != i ) // Element (i) is not selected
|
|
|
|
{
|
|
|
|
SetSelection( i );
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return i; //If element already selected; do nothing
|
2010-11-02 23:13:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-03 18:55:51 +00:00
|
|
|
// Not Found
|
|
|
|
SetSelection( -1 );
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-03-23 08:00:53 +00:00
|
|
|
void LAYER_BOX_SELECTOR::ResyncBitmapOnly()
|
2010-11-04 21:43:42 +00:00
|
|
|
{
|
|
|
|
int elements = GetCount();
|
|
|
|
for( int i = 0; i < elements; i++ )
|
|
|
|
{
|
2012-05-04 17:44:42 +00:00
|
|
|
wxBitmap layerbmp( 14, 14 );
|
|
|
|
SetBitmapLayer( layerbmp, i );
|
2010-11-04 21:43:42 +00:00
|
|
|
}
|
|
|
|
}
|
2012-05-04 17:44:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
void LAYER_BOX_SELECTOR::SetBitmapLayer( wxBitmap& aLayerbmp, int aLayerIndex )
|
|
|
|
{
|
|
|
|
wxMemoryDC bmpDC;
|
|
|
|
wxBrush brush;
|
|
|
|
|
|
|
|
// Prepare Bitmap
|
|
|
|
bmpDC.SelectObject( aLayerbmp );
|
|
|
|
brush.SetColour( MakeColour( GetLayerColor( aLayerIndex ) ) );
|
|
|
|
brush.SetStyle( wxSOLID );
|
|
|
|
|
|
|
|
bmpDC.SetBrush( brush );
|
|
|
|
bmpDC.DrawRectangle( 0, 0, aLayerbmp.GetWidth(), aLayerbmp.GetHeight() );
|
|
|
|
bmpDC.SetBrush( *wxTRANSPARENT_BRUSH );
|
|
|
|
bmpDC.SetPen( *wxBLACK_PEN );
|
|
|
|
bmpDC.DrawRectangle( 0, 0, aLayerbmp.GetWidth(), aLayerbmp.GetHeight() );
|
|
|
|
}
|