summaryrefslogtreecommitdiff
path: root/common/dialog_about/dialog_about.h
diff options
context:
space:
mode:
authorsaurabhb172020-02-26 16:20:48 +0530
committerGitHub2020-02-26 16:20:48 +0530
commitb77f5d9d8097c38159c6f60917995d6af13bbe1c (patch)
tree1392c90227aeea231c1d86371131e04c40382918 /common/dialog_about/dialog_about.h
parentdadc4d490966a24efe15b5cc533ef8695986048a (diff)
parent003d02608917e7a69d1a98438837e94ccf68352a (diff)
downloadKiCad-eSim-b77f5d9d8097c38159c6f60917995d6af13bbe1c.tar.gz
KiCad-eSim-b77f5d9d8097c38159c6f60917995d6af13bbe1c.tar.bz2
KiCad-eSim-b77f5d9d8097c38159c6f60917995d6af13bbe1c.zip
Merge pull request #4 from FOSSEE/develop
merging dev into master
Diffstat (limited to 'common/dialog_about/dialog_about.h')
-rw-r--r--common/dialog_about/dialog_about.h99
1 files changed, 99 insertions, 0 deletions
diff --git a/common/dialog_about/dialog_about.h b/common/dialog_about/dialog_about.h
new file mode 100644
index 0000000..067ee63
--- /dev/null
+++ b/common/dialog_about/dialog_about.h
@@ -0,0 +1,99 @@
+/*
+ * This program source code file is part of KiCad, a free EDA CAD application.
+ *
+ * Copyright (C) 2010 Rafael Sokolowski <Rafael.Sokolowski@web.de>
+ * Copyright (C) 2010-2015 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
+ */
+
+#ifndef DIALOG_ABOUT_H
+#define DIALOG_ABOUT_H
+
+#include <wx/html/htmlwin.h>
+#include <wx/statbmp.h>
+#include <wx/stattext.h>
+#include <wx/hyperlink.h>
+
+#include <aboutinfo.h>
+#include <dialog_about_base.h>
+
+/* Pixel information of icons in XPM format.
+ * All KiCad icons are linked into shared library 'libbitmaps.a'.
+ * Icons:
+ * preference_xpm[]; // Icon for 'Developers' tab
+ * editor_xpm[]; // Icon for 'Doc Writers' tab
+ * palette_xpm[]; // Icon for 'Artists' tab
+ * language_xpm[]; // Icon for 'Translators' tab
+ * right_xpm[]; // Right arrow icon for list items
+ * info_xpm[]; // Bulb for description tab
+ * tools_xpm[]; // Sheet of paper icon for license info tab
+ */
+#include <bitmaps.h>
+
+/**
+ * About dialog to show application specific information.
+ * Needs an <code>AboutAppInfo</code> object that contains the data to be displayed.
+ */
+class dialog_about : public dialog_about_base
+{
+private:
+
+ // Icons for the various tabs of wxAuiNotebook
+ wxBitmap picInformation;
+ wxBitmap picDevelopers;
+ wxBitmap picDocWriters;
+ wxBitmap picArtists;
+ wxBitmap picTranslators;
+ wxBitmap picPackagers;
+ wxBitmap picLicense;
+
+ AboutAppInfo info;
+
+public:
+ dialog_about( wxWindow* dlg, AboutAppInfo& appInfo );
+ ~dialog_about();
+
+private:
+ void initDialog();
+ virtual void OnClose( wxCloseEvent& event );
+ virtual void OnOkClick( wxCommandEvent& event );
+ virtual void OnHtmlLinkClicked( wxHtmlLinkEvent& event );
+
+ // Notebook pages
+ wxFlexGridSizer* CreateFlexGridSizer();
+ void DeleteNotebooks();
+ void CreateNotebooks();
+ void CreateNotebookPage( wxAuiNotebook* parent,
+ const wxString& caption,
+ const wxBitmap& icon,
+ const Contributors& contributors );
+ void CreateNotebookPageByCategory( wxAuiNotebook* parent,
+ const wxString& caption,
+ const wxBitmap& icon,
+ const Contributors& contributors );
+ void CreateNotebookHtmlPage( wxAuiNotebook* parent,
+ const wxString& caption,
+ const wxBitmap& icon,
+ const wxString& html );
+
+ wxHyperlinkCtrl* CreateHyperlink( wxScrolledWindow* parent, const wxString& email );
+ wxStaticBitmap* CreateStaticBitmap( wxScrolledWindow* parent, wxBitmap* icon );
+};
+
+#endif // DIALOG_ABOUT_H