~efargaspro/+junk/codeblocks-16.01-release

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
* This file is part of wxSmithAui plugin for Code::Blocks Studio
* Copyright (C) 2008-2009  César Fernández Domínguez
*
* wxSmithAui is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* wxSmithAui is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with wxSmithAui. If not, see <http://www.gnu.org/licenses/>.
*/

#include "wxSmithAuiToolBar.h"

#if wxCHECK_VERSION(2,8,9)

// missing wxITEM_* items, the same as in wx/auibar.cpp, needed for adding spacer exception
enum
{
    wxITEM_CONTROL = wxITEM_MAX,
    wxITEM_LABEL,
    wxITEM_SPACER
};

wxSmithAuiToolBar::wxSmithAuiToolBar(wxWindow* parent,wxWindowID id,const wxPoint& position,const wxSize& size,long style)
    : wxAuiToolBar(parent,id,position,size,style)
{
    //ctor
}

wxSmithAuiToolBar::~wxSmithAuiToolBar()
{
    //dtor
}

int wxSmithAuiToolBar::HitTest(const wxPoint& pt)
{
    for (unsigned int i=0; i<m_items.Count(); i++)
    {
        wxAuiToolBarItem& Item = m_items.Item(i);

        if (!Item.GetSizerItem())
            continue;

        wxRect rect = Item.GetSizerItem()->GetRect();
        if ( Item.GetKind() == wxITEM_SPACER )
        {
            if ( rect.Contains(pt.x,rect.y) )
            {
                return GetToolIndex(Item.GetId());
            }
        }

        if ( rect.Contains(pt.x,pt.y) )
        {
            return GetToolIndex(Item.GetId());
        }
    }

    return wxNOT_FOUND;
}

void wxSmithAuiToolBar::AddSpacer(int pixels,wxWindowID SpacerId)
{
    wxAuiToolBarItem Item;
    Item.SetHasDropDown(false);
    Item.SetSpacerPixels(pixels);
    Item.SetId(SpacerId);
    Item.SetKind(wxITEM_SPACER);
    Item.SetSticky(false);

    m_items.Add(Item);
}

void wxSmithAuiToolBar::AddStretchSpacer(int proportion,wxWindowID SpacerId)
{
    wxAuiToolBarItem item;
    item.SetHasDropDown(false);
    item.SetId(SpacerId);
    item.SetProportion(proportion);
    item.SetSticky(false);

    m_items.Add(item);
}

#endif // wxCHECK_VERSION(2,8,9)