1#
2# Notes:
3#
4# Remove all of the tags below except for the last one when creating new
5# development branch.
6#
7# Once a symbol has been included in a stable release of wxWidgets its version
8# cannot be changed.
9#
10# With each new release a section should be added containing any new symbols,
11# for example:
12#
13#   # public symbols added in release @WX_VERSION_TAG@.2 (please keep in alphabetical order):
14#   @WX_VERSION_TAG@.2 extern "C++" {
15#           "wxChoice::GetCurrentSelection() const";
16#   };
17#
18# If a symbols should have been added in this way, but is forgotten then it
19# cannot be added in the next release. This is because it has already been
20# released with the generic branch version due to the final wildcard below,
21# and once released its version cannot be changed.
22
23
24# public symbols added in 3.0.5 (please keep in alphabetical order):
25@WX_VERSION_TAG@.5 {
26    extern "C++" {
27        "wxSVGFileDCImpl::DoDrawPolyPolygon(int, int const*, wxPoint const*, int, int, wxPolygonFillMode)";
28        "wxSVGFileDCImpl::SetAxisOrientation(bool, bool)";
29        "wxSVGFileDCImpl::SetDeviceOrigin(int, int)";
30        "wxSVGFileDCImpl::SetLogicalOrigin(int, int)";
31        "wxWindow::GetContentScaleFactor() const";
32    };
33};
34
35# public symbols added in 3.0.4 (please keep in alphabetical order):
36@WX_VERSION_TAG@.4 {
37    extern "C++" {
38        "wxDirButton::DoApplyWidgetStyle(_GtkRcStyle*)";
39        "wxFileButton::DoApplyWidgetStyle(_GtkRcStyle*)";
40        "wxRibbonPage::ShowScrollButtons1()";
41        "wxWindow::GTKApplyCssStyle(char const*)";
42    };
43};
44
45# public symbols added in 3.0.3 (please keep in alphabetical order):
46@WX_VERSION_TAG@.3 {
47    extern "C++" {
48        "wxDataViewRenderer::FinishEditing()";
49        "wxFloatProperty::DoGetAttribute(wxString const&) const";
50    };
51};
52
53# public symbols added in 3.0.2 (please keep in alphabetical order):
54@WX_VERSION_TAG@.2 {
55    extern "C++" {
56        "wxGenericListCtrl::EndEditLabel(bool)";
57    };
58};
59
60
61# public symbols added in 3.0.1 (please keep in alphabetical order):
62@WX_VERSION_TAG@.1 {
63    extern "C++" {
64        "wxDataViewListCtrl::ClearColumns()";
65        "wxDataViewListStore::ClearColumns()";
66        "wxInfoBarGeneric::SetForegroundColour(wxColour const&)";
67        "wxTDIChildFrame::DoMoveWindow(int, int, int, int)";
68    };
69};
70
71# symbols available since the beginning of this branch are only given
72# generic branch tag (don't remove this!):
73
74@WX_VERSION_TAG@ {
75        *;
76};
77