int leftSpacing = wxFPB_DEFAULT_LEFTSPACING, int rightSpacing = wxFPB_DEFAULT_RIGHTSPACING)
: _wnd(wnd)
, _type(WINDOW)
- , _ySpacing(ySpacing)
+ , _flags(flags)
, _leftSpacing(leftSpacing)
, _rightSpacing(rightSpacing)
- , _flags(flags)
+ , _ySpacing(ySpacing)
, _lineWidth(0)
, _lineY(0)
{
int rightSpacing = wxFPB_DEFAULT_RIGHTLINESPACING)
: _wnd(0)
, _type(SEPARATOR)
- , _ySpacing(ySpacing)
+ , _flags(wxFPB_ALIGN_WIDTH)
, _leftSpacing(leftSpacing)
, _rightSpacing(rightSpacing)
- , _flags(wxFPB_ALIGN_WIDTH)
- , _sepLineColour(lineColor)
+ , _ySpacing(ySpacing)
, _lineWidth(0)
, _lineY(y)
+ , _sepLineColour(lineColor)
{
};
const wxCaptionBarStyle &cbstyle, const wxPoint& pos, const wxSize& size, long style)
: wxWindow(parent, id, pos, size, style)
, _caption(caption)
- , _collapsed(false)
, _foldIcons(images)
, _rightIndent(wxFPB_BMP_RIGHTSPACE)
, _iconWidth(16)
, _iconHeight(16)
+ , _collapsed(false)
{
// do initialisy thingy stuff
wxColour currCol;
for(int y = rect.y; y < rect.y + rect.height; y++)
{
- currCol.Set(col1.Red() + rf, col1.Green() + gf, col1.Blue() + bf);
+ currCol.Set(
+ (unsigned char)(col1.Red() + rf),
+ (unsigned char)(col1.Green() + gf),
+ (unsigned char)(col1.Blue() + bf)
+ );
dc.SetBrush( wxBrush( currCol, wxSOLID ) );
dc.DrawRectangle( rect.x, rect.y + (y - rect.y), rect.width, rect.height );
//currCol.Set(currCol.Red() + rstep, currCol.Green() + gstep, currCol.Blue() + bstep);
wxColour currCol;
for(int x = rect.x; x < rect.x + rect.width; x++)
{
- currCol.Set(col1.Red() + rf, col1.Green() + gf, col1.Blue() + bf);
+ currCol.Set(
+ (unsigned char)(col1.Red() + rf),
+ (unsigned char)(col1.Green() + gf),
+ (unsigned char)(col1.Blue() + bf)
+ );
dc.SetBrush( wxBrush( currCol, wxSOLID ) );
dc.DrawRectangle( rect.x + (x - rect.x), rect.y, 1, rect.height );
rf += rstep; gf += gstep; bf += bstep;