You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

97 lines
3.0 KiB

  1. /*
  2. * This program source code file is part of KiCad, a free EDA CAD application.
  3. *
  4. * Copyright (C) 2011-2014 Jean-Pierre Charras, jp.charras at wanadoo.fr
  5. * Copyright (C) 1992-2019 KiCad Developers, see CHANGELOG.TXT for contributors.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version 2
  10. * of the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, you may find one here:
  19. * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
  20. * or you may search the http://www.gnu.org website for the version 2 license,
  21. * or you may write to the Free Software Foundation, Inc.,
  22. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
  23. */
  24. #ifndef _html_messagebox_
  25. #define _html_messagebox_
  26. /**
  27. * @file include/html_messagebox.h
  28. *
  29. * Subclass of DIALOG_DISPLAY_HTML_TEXT_BASE, which is generated by wxFormBuilder.
  30. */
  31. #include <../common/dialogs/dialog_display_info_HTML_base.h>
  32. /**
  33. * HTML_MESSAGE_BOX
  34. */
  35. class HTML_MESSAGE_BOX : public DIALOG_DISPLAY_HTML_TEXT_BASE
  36. {
  37. protected:
  38. // Handlers for HTML_MESSAGE_BOX_BASE events.
  39. void OnOKButtonClick( wxCommandEvent& event ) override;
  40. public:
  41. HTML_MESSAGE_BOX( wxWindow* aParent, const wxString& aTitle = wxEmptyString,
  42. const wxPoint& aPosition = wxDefaultPosition,
  43. const wxSize& aSize = wxDefaultSize );
  44. ~HTML_MESSAGE_BOX() override;
  45. /**
  46. * set the dialog size, using a "logical value.
  47. * the physical size in pixel will depend on the display definition
  48. * so a value used here shoul be OK with any display (HDPI for instance)
  49. * @param aWidth is a "logical" value of the dialog width.
  50. * @param aHeight is a "logical" value of the dialog height.
  51. */
  52. void SetDialogSizeInDU( int aWidth, int aHeight )
  53. {
  54. SetSizeInDU( aWidth, aHeight );
  55. Center();
  56. }
  57. /**
  58. * Add a list of items.
  59. *
  60. * @param aList = a string containing items. Items are separated by '\n'
  61. */
  62. void ListSet( const wxString& aList );
  63. /**
  64. * Add a list of items.
  65. *
  66. * @param aList = a wxArrayString containing items.
  67. */
  68. void ListSet( const wxArrayString& aList );
  69. void ListClear();
  70. /**
  71. * Add a message (in bold) to message list.
  72. *
  73. * @param message = the message
  74. */
  75. void MessageSet( const wxString& message );
  76. /**
  77. * Add HTML text (without any change) to message list.
  78. *
  79. * @param message = the text to add
  80. */
  81. void AddHTML_Text( const wxString& message );
  82. };
  83. #endif // _html_messagebox_