2014-10-22 15:51:34 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011-2014 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
|
|
|
* Copyright (C) 1992-2014 KiCad Developers, see CHANGELOG.TXT for contributors.
|
|
|
|
*
|
|
|
|
* This program 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 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2011-09-04 18:35:14 +00:00
|
|
|
#ifndef _html_messagebox_
|
|
|
|
#define _html_messagebox_
|
2009-07-13 06:20:18 +00:00
|
|
|
|
2013-12-09 18:09:58 +00:00
|
|
|
|
2009-07-13 06:20:18 +00:00
|
|
|
/**
|
|
|
|
@file
|
|
|
|
Subclass of DIALOG_DISPLAY_HTML_TEXT_BASE, which is generated by wxFormBuilder.
|
|
|
|
*/
|
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <../common/dialogs/dialog_display_info_HTML_base.h>
|
2009-07-13 06:20:18 +00:00
|
|
|
|
2013-12-09 18:09:58 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class HTML_MESSAGE_BOX
|
|
|
|
*/
|
2011-09-04 18:35:14 +00:00
|
|
|
class HTML_MESSAGE_BOX : public DIALOG_DISPLAY_HTML_TEXT_BASE
|
2009-07-13 06:20:18 +00:00
|
|
|
{
|
|
|
|
protected:
|
2011-09-04 18:35:14 +00:00
|
|
|
// Handlers for HTML_MESSAGE_BOX_BASE events.
|
2010-11-12 15:17:10 +00:00
|
|
|
void OnCloseButtonClick( wxCommandEvent& event );
|
2009-07-13 06:20:18 +00:00
|
|
|
|
|
|
|
public:
|
2013-12-09 18:09:58 +00:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*/
|
|
|
|
HTML_MESSAGE_BOX( wxWindow* parent, const wxString& aTitle,
|
2011-09-04 18:35:14 +00:00
|
|
|
wxPoint aPos = wxDefaultPosition,
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
wxSize aSize = wxSize( 450, 250 ) );
|
2010-10-05 19:54:27 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
|
|
|
* Function ListSet
|
2009-07-13 06:20:18 +00:00
|
|
|
* Add a list of items.
|
2011-01-01 17:28:21 +00:00
|
|
|
* @param aList = a string containing items. Items are separated by '\n'
|
2009-07-13 06:20:18 +00:00
|
|
|
*/
|
2013-12-09 18:09:58 +00:00
|
|
|
void ListSet( const wxString& aList );
|
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
|
|
|
* Function ListSet
|
2010-10-05 19:54:27 +00:00
|
|
|
* Add a list of items.
|
2011-01-01 17:28:21 +00:00
|
|
|
* @param aList = a wxArrayString containing items.
|
2010-10-05 19:54:27 +00:00
|
|
|
*/
|
2013-12-09 18:09:58 +00:00
|
|
|
void ListSet( const wxArrayString& aList );
|
2010-10-05 19:54:27 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
void ListClear();
|
2013-12-09 18:09:58 +00:00
|
|
|
|
2010-11-12 15:17:10 +00:00
|
|
|
/**
|
|
|
|
* Function MessageSet
|
2013-12-09 18:09:58 +00:00
|
|
|
* adds a message (in bold) to message list.
|
2009-07-13 07:01:57 +00:00
|
|
|
* @param message = the message
|
2009-07-13 06:20:18 +00:00
|
|
|
*/
|
2013-12-09 18:09:58 +00:00
|
|
|
void MessageSet( const wxString& message );
|
2011-09-04 18:35:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function AddHTML_Text
|
2013-12-09 18:09:58 +00:00
|
|
|
* adds html text (without any change) to message list.
|
2011-09-04 18:35:14 +00:00
|
|
|
* @param message = the text to add
|
|
|
|
*/
|
2013-12-09 18:09:58 +00:00
|
|
|
void AddHTML_Text( const wxString& message );
|
2009-07-13 06:20:18 +00:00
|
|
|
};
|
|
|
|
|
2011-09-04 18:35:14 +00:00
|
|
|
#endif // _html_messagebox_
|