source: git/src/buttontaghandler.cc @ a72ed95

RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-data
Last change on this file since a72ed95 was cea3549, checked in by Olly Betts <olly@…>, 11 years ago

INSTALL,lib/INSTALL.OSX,src/,survex.spec.in: Require at least
wxWidgets 2.8.0 - it was released just over 6 years ago now,
and the wx developers consider even 2.8 to be rather long in
the tooth. I haven't test build with wx 2.6 for more than a year
and it's no longer packaged for Debian. Dropping support for
older wx allows a number of workarounds to be removed.

  • Property mode set to 100644
File size: 1.6 KB
Line 
1/* buttontaghandler.cc
2 * Handle avenbutton tags
3 *
4 * Copyright (C) 2010 Olly Betts
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19 */
20
21#ifdef HAVE_CONFIG_H
22# include <config.h>
23#endif
24
25#include "aven.h"
26#include <wx/html/htmlwin.h>
27#include <wx/html/m_templ.h>
28#include <wx/html/forcelnk.h>
29
30FORCE_LINK_ME(buttontaghandler)
31
32TAG_HANDLER_BEGIN(AVENBUTTON, "AVENBUTTON")
33    TAG_HANDLER_PROC(tag) {
34        int id;
35        if (!tag.GetParamAsInt(wxT("id"), &id))
36            id = -1;
37        wxHtmlContainerCell * cells = m_WParser->GetContainer();
38        cells->SetAlignHor(wxHTML_ALIGN_RIGHT);
39        wxWindow * win;
40        win = m_WParser->GetWindowInterface()->GetHTMLWindow();
41        wxButton * but = new wxButton(win, id, tag.GetParam(wxT("name")));
42        if (tag.HasParam(wxT("default")))
43            but->SetDefault();
44        cells->InsertCell(new wxHtmlWidgetCell(but));
45        return false;
46    }
47TAG_HANDLER_END(TITLE)
48
49TAGS_MODULE_BEGIN(CavernLog)
50    TAGS_MODULE_ADD(AVENBUTTON)
51TAGS_MODULE_END(CavernLog)
Note: See TracBrowser for help on using the repository browser.