source: git/src/aventreectrl.cc @ 92cfa6ee

stereo-2025
Last change on this file since 92cfa6ee was a3f83057, checked in by Olly Betts <olly@…>, 7 months ago

Use C++11 member initialisation where sensible

  • Property mode set to 100644
File size: 18.1 KB
RevLine 
[f17e6dc6]1//
2//  aventreectrl.cc
3//
4//  Tree control used for the survey tree.
5//
6//  Copyright (C) 2001, Mark R. Shinwell.
[672459c]7//  Copyright (C) 2001-2003,2005,2006,2016,2018 Olly Betts
[887c26e]8//  Copyright (C) 2005 Martin Green
[f17e6dc6]9//
10//  This program is free software; you can redistribute it and/or modify
11//  it under the terms of the GNU General Public License as published by
12//  the Free Software Foundation; either version 2 of the License, or
13//  (at your option) any later version.
14//
15//  This program is distributed in the hope that it will be useful,
16//  but WITHOUT ANY WARRANTY; without even the implied warranty of
17//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18//  GNU General Public License for more details.
19//
20//  You should have received a copy of the GNU General Public License
21//  along with this program; if not, write to the Free Software
[ecbc6c18]22//  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
[f17e6dc6]23//
24
[cbfa50d]25#include <config.h>
26
[f17e6dc6]27#include "aventreectrl.h"
28#include "mainfrm.h"
[81d2ef0]29#include "osalloc.h"
[f17e6dc6]30
[17a38ded]31#include <stack>
32
33using namespace std;
34
[44e007d]35// STATE_BLANK is used for stations which are siblings of surveys which have
36// select checkboxes.
37enum { STATE_BLANK = 0, STATE_OFF, STATE_ON };
[672459c]38
39/* XPM */
[44e007d]40static const char *blank_xpm[] = {
41/* columns rows colors chars-per-pixel */
42"15 15 1 1",
43"  c None",
44/* pixels */
45"               ",
46"               ",
47"               ",
48"               ",
49"               ",
50"               ",
51"               ",
52"               ",
53"               ",
54"               ",
55"               ",
56"               ",
57"               ",
58"               ",
59"               "
60};
61
62/* XPM */
63static const char *off_xpm[] = {
[672459c]64/* columns rows colors chars-per-pixel */
[c78d5b4]65"15 15 2 1",
66". c #000000",
[672459c]67"  c None",
68/* pixels */
69"               ",
70"               ",
[c78d5b4]71" ............  ",
72" .          .  ",
73" .          .  ",
74" .          .  ",
75" .          .  ",
76" .          .  ",
77" .          .  ",
78" .          .  ",
79" .          .  ",
80" .          .  ",
81" .          .  ",
82" ............  ",
[672459c]83"               "
84};
85
86/* XPM */
[44e007d]87static const char *on_xpm[] = {
[672459c]88/* columns rows colors chars-per-pixel */
[c78d5b4]89"15 15 3 1",
90". c #000000",
[672459c]91"X c #007F28",
92"  c None",
93/* pixels */
94"               ",
[c78d5b4]95"               ",
96" ............XX",
97" .          XXX",
98" .         XXXX",
99" .        XXXX ",
100" .       XXXX  ",
101" .      XXXX.  ",
102" . XX  XXXX .  ",
103" . XXXXXXX  .  ",
104" .  XXXXX   .  ",
105" .   XXX    .  ",
106" .    X     .  ",
107" ............  ",
[672459c]108"               "
109};
110
[f17e6dc6]111BEGIN_EVENT_TABLE(AvenTreeCtrl, wxTreeCtrl)
112    EVT_MOTION(AvenTreeCtrl::OnMouseMove)
[887c26e]113    EVT_LEAVE_WINDOW(AvenTreeCtrl::OnLeaveWindow)
[6969b17]114    EVT_TREE_SEL_CHANGED(wxID_ANY, AvenTreeCtrl::OnSelChanged)
115    EVT_TREE_ITEM_ACTIVATED(wxID_ANY, AvenTreeCtrl::OnItemActivated)
[5901b62]116    EVT_CHAR(AvenTreeCtrl::OnKeyPress)
[6969b17]117    EVT_TREE_ITEM_MENU(wxID_ANY, AvenTreeCtrl::OnMenu)
[d5fd4f4]118    EVT_MENU(menu_SURVEY_SHOW_ALL, AvenTreeCtrl::OnRestrict)
[5e0b9f9d]119    EVT_MENU(menu_SURVEY_RESTRICT, AvenTreeCtrl::OnRestrict)
[672459c]120    EVT_MENU(menu_SURVEY_HIDE, AvenTreeCtrl::OnHide)
121    EVT_MENU(menu_SURVEY_SHOW, AvenTreeCtrl::OnShow)
122    EVT_MENU(menu_SURVEY_HIDE_SIBLINGS, AvenTreeCtrl::OnHideSiblings)
[6969b17]123    EVT_TREE_STATE_IMAGE_CLICK(wxID_ANY, AvenTreeCtrl::OnStateClick)
[f17e6dc6]124END_EVENT_TABLE()
125
126AvenTreeCtrl::AvenTreeCtrl(MainFrm* parent, wxWindow* window_parent) :
[51eab3b]127    wxTreeCtrl(window_parent, wxID_ANY, wxDefaultPosition, wxDefaultSize,
128               wxTR_DEFAULT_STYLE | wxTR_HIDE_ROOT),
[a3f83057]129    m_Parent(parent)
[f17e6dc6]130{
[672459c]131    wxImageList* img_list = new wxImageList(15, 15, 2);
[44e007d]132    img_list->Add(wxBitmap(blank_xpm));
133    img_list->Add(wxBitmap(off_xpm));
134    img_list->Add(wxBitmap(on_xpm));
[672459c]135    AssignStateImageList(img_list);
[f17e6dc6]136}
137
[17a38ded]138void AvenTreeCtrl::FillTree(const wxString& root_name)
139{
140    Freeze();
141    m_Enabled = false;
142    m_LastItem = wxTreeItemId();
143    m_SelValid = false;
144    DeleteAllItems();
145
146    const wxChar separator = m_Parent->GetSeparator();
147    filter.clear();
148    filter.SetSeparator(separator);
149
[51eab3b]150    // Create the (hidden) real root of the wxTreeCtrl.
151    wxTreeItemId treeroot = AddRoot(wxString());
152
153    // Create the root of the survey tree.
154    wxTreeItemId surveyroot = AppendItem(treeroot, root_name);
[17a38ded]155
156    // Fill the tree of stations and prefixes.
157    stack<wxTreeItemId> previous_ids;
158    wxString current_prefix;
[51eab3b]159    wxTreeItemId current_id = surveyroot;
[17a38ded]160
161    list<LabelInfo*>::const_iterator pos = m_Parent->GetLabels();
162    while (pos != m_Parent->GetLabelsEnd()) {
163        LabelInfo* label = *pos++;
164
165        if (label->IsAnon()) continue;
166
167        // Determine the current prefix.
168        wxString prefix = label->GetText().BeforeLast(separator);
169
170        // Determine if we're still on the same prefix.
171        if (prefix == current_prefix) {
172            // no need to fiddle with branches...
173        }
174        // If not, then see if we've descended to a new prefix.
175        else if (prefix.length() > current_prefix.length() &&
176                 prefix.StartsWith(current_prefix) &&
177                 (prefix[current_prefix.length()] == separator ||
178                  current_prefix.empty())) {
179            // We have, so start as many new branches as required.
180            int current_prefix_length = current_prefix.length();
181            current_prefix = prefix;
182            size_t next_dot = current_prefix_length;
183            if (!next_dot) --next_dot;
184            do {
185                size_t prev_dot = next_dot + 1;
186
187                // Extract the next bit of prefix.
188                next_dot = prefix.find(separator, prev_dot + 1);
189
190                wxString bit = prefix.substr(prev_dot, next_dot - prev_dot);
[ed7f3fc]191                // Sigh, therion can produce files with empty components in
192                // station names!
193                // assert(!bit.empty());
[17a38ded]194
195                // Add the current tree ID to the stack.
196                previous_ids.push(current_id);
197
198                // Append the new item to the tree and set this as the current branch.
199                current_id = AppendItem(current_id, bit);
200                SetItemData(current_id, new TreeData(prefix.substr(0, next_dot)));
201            } while (next_dot != wxString::npos);
202        }
203        // Otherwise, we must have moved up, and possibly then down again.
204        else {
205            size_t count = 0;
206            bool ascent_only = (prefix.length() < current_prefix.length() &&
207                                current_prefix.StartsWith(prefix) &&
208                                (current_prefix[prefix.length()] == separator ||
209                                 prefix.empty()));
210            if (!ascent_only) {
211                // Find out how much of the current prefix and the new prefix
212                // are the same.
213                // Note that we require a match of a whole number of parts
214                // between dots!
215                size_t n = min(prefix.length(), current_prefix.length());
216                size_t i;
217                for (i = 0; i < n && prefix[i] == current_prefix[i]; ++i) {
218                    if (prefix[i] == separator) count = i + 1;
219                }
220            } else {
221                count = prefix.length() + 1;
222            }
223
224            // Extract the part of the current prefix after the bit (if any)
225            // which has matched.
226            // This gives the prefixes to ascend over.
227            wxString prefixes_ascended = current_prefix.substr(count);
228
229            // Count the number of prefixes to ascend over.
230            int num_prefixes = prefixes_ascended.Freq(separator);
231
232            // Reverse up over these prefixes.
233            for (int i = 1; i <= num_prefixes; i++) {
234                previous_ids.pop();
235            }
236            current_id = previous_ids.top();
237            previous_ids.pop();
238
239            if (!ascent_only) {
240                // Add branches for this new part.
241                size_t next_dot = count - 1;
242                do {
243                    size_t prev_dot = next_dot + 1;
244
245                    // Extract the next bit of prefix.
246                    next_dot = prefix.find(separator, prev_dot + 1);
247
248                    wxString bit = prefix.substr(prev_dot, next_dot - prev_dot);
[ed7f3fc]249                    // Sigh, therion can produce files with empty components in
250                    // station names!
251                    // assert(!bit.empty());
[17a38ded]252
253                    // Add the current tree ID to the stack.
254                    previous_ids.push(current_id);
255
256                    // Append the new item to the tree and set this as the current branch.
257                    current_id = AppendItem(current_id, bit);
258                    SetItemData(current_id, new TreeData(prefix.substr(0, next_dot)));
259                } while (next_dot != wxString::npos);
260            }
261
262            current_prefix = prefix;
263        }
264
265        // Now add the leaf.
266        wxString bit = label->GetText().AfterLast(separator);
[ed7f3fc]267        // Sigh, therion can produce files with empty components in station
268        // names!
269        // assert(!bit.empty());
[17a38ded]270        wxTreeItemId id = AppendItem(current_id, bit);
271        SetItemData(id, new TreeData(label));
272        label->tree_id = id;
273        // Set the colour for an item in the survey tree.
274        if (label->IsEntrance()) {
275            // Entrances are green (like entrance blobs).
276            SetItemTextColour(id, wxColour(0, 255, 40));
277        } else if (label->IsSurface()) {
278            // Surface stations are dark green.
279            SetItemTextColour(id, wxColour(49, 158, 79));
280        }
281    }
282
[51eab3b]283    Expand(surveyroot);
[17a38ded]284    m_Enabled = true;
285    Thaw();
286}
287
[9e8e1d6]288constexpr auto TREE_MASK = wxTREE_HITTEST_ONITEMLABEL |
289                           wxTREE_HITTEST_ONITEMRIGHT |
290                           wxTREE_HITTEST_ONITEMSTATEICON;
[97dd0d2]291
[f17e6dc6]292void AvenTreeCtrl::OnMouseMove(wxMouseEvent& event)
293{
[0ae40fa]294    if (!m_Enabled || m_Parent->Animating())
295        return;
296
297    int flags;
298    wxTreeItemId pos = HitTest(event.GetPosition(), flags);
299    if (!(flags & TREE_MASK)) {
300        pos = wxTreeItemId();
301    }
302    if (pos == m_LastItem) return;
303    if (pos.IsOk()) {
[0642381]304        const TreeData* data = static_cast<const TreeData*>(GetItemData(pos));
305        m_Parent->DisplayTreeInfo(data);
306        if (data && !data->IsStation()) {
307            // For stations, MainFrm calls back to SetHere(), but for surveys
308            // we need to do that ourselves.
309            SetHere(pos);
310        }
[0ae40fa]311    } else {
312        m_Parent->DisplayTreeInfo();
[f17e6dc6]313    }
314}
315
[570d62c3]316void AvenTreeCtrl::SetHere(wxTreeItemId pos)
317{
318    if (pos == m_LastItem) return;
319
320    if (m_LastItem.IsOk()) {
321        SetItemBackgroundColour(m_LastItem, m_BackgroundColour);
322    }
323    if (pos.IsOk()) {
324        m_BackgroundColour = GetItemBackgroundColour(pos);
325        SetItemBackgroundColour(pos, wxColour(180, 180, 180));
326    }
327    m_LastItem = pos;
328}
329
[887c26e]330void AvenTreeCtrl::OnLeaveWindow(wxMouseEvent&)
331{
332    if (m_LastItem.IsOk()) {
333        SetItemBackgroundColour(m_LastItem, m_BackgroundColour);
334        m_LastItem = wxTreeItemId();
335    }
[381ae6e]336    m_Parent->DisplayTreeInfo();
[887c26e]337}
338
[5dae1ba]339void AvenTreeCtrl::OnSelChanged(wxTreeEvent&)
[f17e6dc6]340{
[b623b3e]341    m_SelValid = true;
[f17e6dc6]342}
343
[44ed489]344void AvenTreeCtrl::OnItemActivated(wxTreeEvent& e)
345{
[4dc54fa]346    if (!m_Enabled) return;
347
348    m_Parent->TreeItemSelected(GetItemData(e.GetItem()));
[44ed489]349}
350
[5e0b9f9d]351void AvenTreeCtrl::OnMenu(wxTreeEvent& e)
352{
[0ae40fa]353    if (!m_Enabled) return;
354
355    const TreeData* data = static_cast<const TreeData*>(GetItemData(e.GetItem()));
356    menu_data = data;
357    menu_item = e.GetItem();
358    if (!data) {
[51eab3b]359        // Survey tree root:
[0ae40fa]360        wxMenu menu;
361        /* TRANSLATORS: In aven's survey tree, right-clicking on the root
362         * gives a pop-up menu and this is an option (but only enabled if
363         * the view is restricted to a subsurvey). It reloads the current
364         * survey file with the who survey visible.
365         */
366        menu.Append(menu_SURVEY_SHOW_ALL, wmsg(/*Show all*/245));
367        if (m_Parent->GetSurvey().empty())
368            menu.Enable(menu_SURVEY_SHOW_ALL, false);
369        PopupMenu(&menu);
[51eab3b]370    } else if (data->IsStation()) {
[0ae40fa]371        // Station: name is data->GetLabel()->GetText()
[51eab3b]372    } else if (ItemHasChildren(menu_item)) {
[0ae40fa]373        // Survey:
374        wxMenu menu;
375        /* TRANSLATORS: In aven's survey tree, right-clicking on a survey
376         * name gives a pop-up menu and this is an option.  It reloads the
377         * current survey file with the view restricted to the survey
378         * clicked upon.
379         */
380        menu.Append(menu_SURVEY_RESTRICT, wmsg(/*Hide others*/246));
381        menu.AppendSeparator();
[ae0201e]382        //menu.Append(menu_SURVEY_HIDE, wmsg(/*&Hide*/407));
[0ae40fa]383        menu.Append(menu_SURVEY_SHOW, wmsg(/*&Show*/409));
[ae0201e]384        //menu.Append(menu_SURVEY_HIDE_SIBLINGS, wmsg(/*Hide si&blings*/388));
[0ae40fa]385        switch (GetItemState(menu_item)) {
[44e007d]386            case STATE_ON: // Currently shown.
[0ae40fa]387                menu.Enable(menu_SURVEY_SHOW, false);
388                break;
[ae0201e]389#if 0
390            case STATE_HIDDEN: // Currently hidden.
391                menu.Enable(menu_SURVEY_RESTRICT, false);
392                menu.Enable(menu_SURVEY_HIDE, false);
393                menu.Enable(menu_SURVEY_HIDE_SIBLINGS, false);
394                break;
[44e007d]395            case STATE_OFF:
[0ae40fa]396                menu.Enable(menu_SURVEY_HIDE, false);
[ae0201e]397                menu.Enable(menu_SURVEY_HIDE_SIBLINGS, false);
[0ae40fa]398                break;
[ae0201e]399#endif
[5e0b9f9d]400        }
[0ae40fa]401        PopupMenu(&menu);
[51eab3b]402    } else {
403        // Overlay - FIXME: menu here?
[5e0b9f9d]404    }
[0ae40fa]405    menu_data = NULL;
406    e.Skip();
[5e0b9f9d]407}
408
[570d62c3]409bool AvenTreeCtrl::GetSelectionData(wxTreeItemData** data) const
[f17e6dc6]410{
411    assert(m_Enabled);
[26fac5a]412    assert(data);
[b623b3e]413
414    if (!m_SelValid) {
[421b7d2]415        return false;
[b623b3e]416    }
[421b7d2]417
[f17e6dc6]418    wxTreeItemId id = GetSelection();
419    if (id.IsOk()) {
[421b7d2]420        *data = GetItemData(id);
[f17e6dc6]421    }
422
[2d9ed8ad]423    return id.IsOk() && *data;
[f17e6dc6]424}
[b623b3e]425
426void AvenTreeCtrl::UnselectAll()
427{
428    m_SelValid = false;
429    wxTreeCtrl::UnselectAll();
430}
431
[5901b62]432void AvenTreeCtrl::OnKeyPress(wxKeyEvent &e)
433{
[a6e8d45]434    switch (e.GetKeyCode()) {
[26fac5a]435        case WXK_ESCAPE:
436            m_Parent->ClearTreeSelection();
437            break;
438        case WXK_RETURN: {
439            wxTreeItemId id = GetSelection();
440            if (id.IsOk()) {
441                if (ItemHasChildren(id)) {
442                    // If on a branch, expand/contract it.
443                    if (IsExpanded(id)) {
444                        Collapse(id);
445                    } else {
446                        Expand(id);
447                    }
448                } else {
[672459c]449                    // If on a station, centre on it by selecting it twice.
450                    m_Parent->TreeItemSelected(GetItemData(id));
451                    m_Parent->TreeItemSelected(GetItemData(id));
[26fac5a]452                }
453            }
454            break;
455        }
456        case WXK_LEFT: case WXK_RIGHT: case WXK_UP: case WXK_DOWN:
457        case WXK_HOME: case WXK_END: case WXK_PAGEUP: case WXK_PAGEDOWN:
458            e.Skip();
459            break;
460        default:
461            // Pass key event to MainFrm which will pass to GfxCore which will
462            // pass to GUIControl.
463            m_Parent->OnKeyPress(e);
464            break;
[5901b62]465    }
466}
[5e0b9f9d]467
[5dae1ba]468void AvenTreeCtrl::OnRestrict(wxCommandEvent&)
[5e0b9f9d]469{
[51eab3b]470    m_Parent->RestrictTo(menu_data && menu_data->IsSurvey() ? menu_data->GetSurvey() : wxString());
471    // FIXME: Overlays
[672459c]472}
473
[5dae1ba]474void AvenTreeCtrl::OnHide(wxCommandEvent&)
[672459c]475{
476    // Shouldn't be available for the root item.
477    wxASSERT(menu_data);
[ae0201e]478    // Hide should be disabled unless the item is explicitly shown.
479    wxASSERT(GetItemState(menu_item) == STATE_ON);
[44e007d]480    SetItemState(menu_item, STATE_OFF);
[51eab3b]481    // FIXME: Overlays?
[1a46879]482    filter.remove(menu_data->GetSurvey());
[ae0201e]483#if 0
[672459c]484    Freeze();
485    // Show siblings if not already shown or hidden.
486    wxTreeItemId i = menu_item;
487    while ((i = GetPrevSibling(i)).IsOk()) {
488        if (GetItemState(i) == wxTREE_ITEMSTATE_NONE)
[ae0201e]489            SetItemState(i, 1);
[672459c]490    }
491    i = menu_item;
492    while ((i = GetNextSibling(i)).IsOk()) {
493        if (GetItemState(i) == wxTREE_ITEMSTATE_NONE)
[ae0201e]494            SetItemState(i, 1);
[672459c]495    }
496    Thaw();
[ae0201e]497#endif
[672459c]498    m_Parent->ForceFullRedraw();
499}
500
[5dae1ba]501void AvenTreeCtrl::OnShow(wxCommandEvent&)
[672459c]502{
503    // Shouldn't be available for the root item.
504    wxASSERT(menu_data);
[44e007d]505    auto old_state = GetItemState(menu_item);
[672459c]506    // Show should be disabled for an explicitly shown item.
[44e007d]507    wxASSERT(old_state != STATE_ON);
[672459c]508    Freeze();
[44e007d]509    SetItemState(menu_item, STATE_ON);
[51eab3b]510    // FIXME: Overlays?
[1a46879]511    filter.add(menu_data->GetSurvey());
[44e007d]512    if (old_state == wxTREE_ITEMSTATE_NONE) {
513        // Hide siblings if not already shown or hidden.
514        wxTreeItemId i = menu_item;
515        while ((i = GetPrevSibling(i)).IsOk()) {
516            if (GetItemState(i) == wxTREE_ITEMSTATE_NONE) {
517                const TreeData* data = static_cast<const TreeData*>(GetItemData(i));
518                SetItemState(i, data->IsStation() ? STATE_BLANK : STATE_OFF);
519            }
520        }
521        i = menu_item;
522        while ((i = GetNextSibling(i)).IsOk()) {
523            if (GetItemState(i) == wxTREE_ITEMSTATE_NONE) {
524                const TreeData* data = static_cast<const TreeData*>(GetItemData(i));
525                SetItemState(i, data->IsStation() ? STATE_BLANK : STATE_OFF);
526            }
527        }
[672459c]528    }
529    Thaw();
530    m_Parent->ForceFullRedraw();
531}
532
[5dae1ba]533void AvenTreeCtrl::OnHideSiblings(wxCommandEvent&)
[672459c]534{
535    // Shouldn't be available for the root item.
536    wxASSERT(menu_data);
537    Freeze();
[51eab3b]538    // FIXME: Overlays?
[44e007d]539    SetItemState(menu_item, STATE_ON);
[1a46879]540    filter.add(menu_data->GetSurvey());
[672459c]541
542    wxTreeItemId i = menu_item;
543    while ((i = GetPrevSibling(i)).IsOk()) {
544        const TreeData* data = static_cast<const TreeData*>(GetItemData(i));
[1a46879]545        filter.remove(data->GetSurvey());
[44e007d]546        SetItemState(i, data->IsStation() ? STATE_BLANK : STATE_OFF);
[672459c]547    }
548    i = menu_item;
549    while ((i = GetNextSibling(i)).IsOk()) {
550        const TreeData* data = static_cast<const TreeData*>(GetItemData(i));
[1a46879]551        filter.remove(data->GetSurvey());
[44e007d]552        SetItemState(i, data->IsStation() ? STATE_BLANK : STATE_OFF);
[672459c]553    }
554    Thaw();
555    m_Parent->ForceFullRedraw();
556}
557
558void AvenTreeCtrl::OnStateClick(wxTreeEvent& e)
559{
560    auto item = e.GetItem();
561    const TreeData* data = static_cast<const TreeData*>(GetItemData(item));
[44e007d]562    switch (GetItemState(item)) {
563        case STATE_BLANK:
564            // Click on blank state icon for a station - let the tree handle
565            // this in the same way as a click on the label.
566            return;
567        case STATE_ON:
[51eab3b]568            if (!ItemHasChildren(item)) {
569                // Overlay.
570                m_Parent->InvalidateOverlays();
571            } else {
572                // Survey.
573                if (data) filter.remove(data->GetSurvey());
574            }
[44e007d]575            SetItemState(item, STATE_OFF);
576            break;
577        case STATE_OFF:
[51eab3b]578            if (!ItemHasChildren(item)) {
579                // Overlay.
580                m_Parent->InvalidateOverlays();
581            } else {
582                // Survey.
583                if (data) filter.add(data->GetSurvey());
584            }
[44e007d]585            SetItemState(item, STATE_ON);
586            break;
[672459c]587    }
[5e0b9f9d]588    e.Skip();
[672459c]589    m_Parent->ForceFullRedraw();
590}
[51eab3b]591
592void AvenTreeCtrl::AddOverlay(const wxString& file)
593{
[81d2ef0]594    char* leaf = leaf_from_fnm(file.utf8_str());
595    auto id = AppendItem(GetRootItem(), leaf);
596    osfree(leaf);
[51eab3b]597    SetItemState(id, STATE_ON);
598    SetItemData(id, new TreeData(file));
599}
600
601void AvenTreeCtrl::RemoveOverlay(const wxString& file)
602{
603    // If we add an overlay but fail to load it and remove it again, the
604    // overlay will be the last one, so search from the last one back.
605    for (auto item = GetLastChild(GetRootItem());
606         item.IsOk();
607         item = GetPrevSibling(item)) {
608        if (ItemHasChildren(item)) {
609            // Not an overlay.
610            continue;
611        }
612        const TreeData* data = static_cast<const TreeData*>(GetItemData(item));
613        if (data->GetSurvey() == file) {
614            Delete(item);
615            break;
616        }
617    }
618}
619
620wxTreeItemId AvenTreeCtrl::FirstOverlay()
621{
622    wxTreeItemIdValue cookie;
623    auto item = GetFirstChild(GetRootItem(), cookie);
624    while (item.IsOk() &&
625           (ItemHasChildren(item) || GetItemState(item) != STATE_ON)) {
626        item = GetNextSibling(item);
627    }
628    return item;
629}
630
631wxTreeItemId AvenTreeCtrl::NextOverlay(wxTreeItemId item)
632{
633    do {
634        item = GetNextSibling(item);
635    } while (item.IsOk() &&
636             (ItemHasChildren(item) || GetItemState(item) != STATE_ON));
637    return item;
638}
639
640wxTreeItemId AvenTreeCtrl::RemoveOverlay(wxTreeItemId id)
641{
642    wxTreeItemId item = NextOverlay(id);
643    Delete(id);
644    return item;
645}
646
647const wxString& AvenTreeCtrl::GetOverlayFilename(wxTreeItemId item)
648{
649    if (ItemHasChildren(item)) {
650not_an_overlay:
651        static const wxString empty_string;
652        return empty_string;
653    }
654
655    const TreeData* data = static_cast<const TreeData*>(GetItemData(item));
656    if (!data) goto not_an_overlay;
657    return data->GetSurvey();
658}
Note: See TracBrowser for help on using the repository browser.