KiCad PCB EDA Suite
Loading...
Searching...
No Matches
dialog_book_reporter.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (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, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24#pragma once
25
26#include <kiid.h>
28
29class KIWAY_PLAYER;
31class wxHtmlLinkEvent;
32
36wxDECLARE_EVENT( EDA_EVT_CLOSE_DIALOG_BOOK_REPORTER, wxCommandEvent );
37
39{
40public:
41 DIALOG_BOOK_REPORTER( KIWAY_PLAYER* aParent, const wxString& aName,
42 const wxString& aDialogTitle );
43
44 void OnClose( wxCloseEvent& aEvent ) override;
45 void OnApply( wxCommandEvent& event ) override;
46 void OnOK( wxCommandEvent& event ) override;
47
48 void OnErrorLinkClicked( wxHtmlLinkEvent& aEvent );
49
50 void DeleteAllPages();
51
52 WX_HTML_REPORT_BOX* AddHTMLPage( const wxString& aTitle );
53
54 wxPanel* AddBlankPage( const wxString& aTitle );
55
56 int GetPageCount() const;
57
58 KIID GetUserItemID() const { return m_userItemID; }
59 void SetUserItemID( const KIID& aID ) { m_userItemID = aID; }
60
61protected:
64};
DIALOG_BOOK_REPORTER_BASE(wxWindow *parent, wxWindowID id=wxID_ANY, const wxString &title=_("Report"), const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER)
void OnErrorLinkClicked(wxHtmlLinkEvent &aEvent)
void OnOK(wxCommandEvent &event) override
void OnClose(wxCloseEvent &aEvent) override
void OnApply(wxCommandEvent &event) override
DIALOG_BOOK_REPORTER(KIWAY_PLAYER *aParent, const wxString &aName, const wxString &aDialogTitle)
wxPanel * AddBlankPage(const wxString &aTitle)
WX_HTML_REPORT_BOX * AddHTMLPage(const wxString &aTitle)
void SetUserItemID(const KIID &aID)
Definition kiid.h:49
A wxFrame capable of the OpenProjectFiles function, meaning it can load a portion of a KiCad project.
A slimmed down version of WX_HTML_REPORT_PANEL.
wxDECLARE_EVENT(EDA_EVT_CLOSE_DIALOG_BOOK_REPORTER, wxCommandEvent)
Event sent to parent when dialog is mode-less.