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.

93 lines
2.9 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-2020 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. #include <../common/dialogs/dialog_display_info_HTML_base.h>
  27. /**
  28. * HTML_MESSAGE_BOX
  29. */
  30. class HTML_MESSAGE_BOX : public DIALOG_DISPLAY_HTML_TEXT_BASE
  31. {
  32. protected:
  33. // Handlers for HTML_MESSAGE_BOX_BASE events.
  34. void OnOKButtonClick( wxCommandEvent& event ) override;
  35. public:
  36. HTML_MESSAGE_BOX( wxWindow* aParent, const wxString& aTitle = wxEmptyString,
  37. const wxPoint& aPosition = wxDefaultPosition,
  38. const wxSize& aSize = wxDefaultSize );
  39. ~HTML_MESSAGE_BOX() override;
  40. /**
  41. * set the dialog size, using a "logical" value.
  42. * the physical size in pixel will depend on the display definition
  43. * so a value used here shoul be OK with any display (HDPI for instance)
  44. * @param aWidth is a "logical" value of the dialog width.
  45. * @param aHeight is a "logical" value of the dialog height.
  46. */
  47. void SetDialogSizeInDU( int aWidth, int aHeight )
  48. {
  49. SetSizeInDU( aWidth, aHeight );
  50. Center();
  51. }
  52. /**
  53. * Add a list of items.
  54. *
  55. * @param aList = a string containing items. Items are separated by '\n'
  56. */
  57. void ListSet( const wxString& aList );
  58. /**
  59. * Add a list of items.
  60. *
  61. * @param aList = a wxArrayString containing items.
  62. */
  63. void ListSet( const wxArrayString& aList );
  64. void ListClear();
  65. /**
  66. * Add a message (in bold) to message list.
  67. */
  68. void MessageSet( const wxString& message );
  69. /**
  70. * Add HTML text (without any change) to message list.
  71. */
  72. void AddHTML_Text( const wxString& message );
  73. /**
  74. * Show a modeless version of the dialog (without an OK button).
  75. */
  76. void ShowModeless();
  77. };
  78. #endif // _html_messagebox_