コード例 #1
0
ファイル: main.cpp プロジェクト: antoine163/Talv
void App::onAbout(wxCommandEvent&)
{
    wxAboutDialogInfo info;

    info.SetName(PROJECT_NAME);
    info.SetVersion(PROJECT_VERSION);

    info.SetIcon(ManGeneral::get().getIconApp(ICON_SIZE_32X32));

    wxString msg;
    msg << wxString::FromUTF8Unchecked("Traduction A La Volées.");
    msg << _("\n Translation on the fly in English.") << "\n\n";
    msg << _("Build on") << " ";
#if defined(__UNIX__)
    msg << "Unix";
#elif defined(__WXMSW__)
    msg << "Windows";
#endif
#ifdef __i386
    msg << " " << _("in") << " " << " i386\n";
#elif __amd64
    msg << " " << _("in") << " " << " x86_64\n";
#endif
    msg << _("Date") <<  " : " << __DATE__;

    info.SetDescription(msg);

    info.SetCopyright("(C) 2012-1013");
    info.SetWebSite("http://antoine163.github.com/talv/");

    info.AddDeveloper("Maleyrie Antoine <*****@*****.**>");
    info.AddDocWriter("Maleyrie Antoine <*****@*****.**>");

    //info.AddTranslator("Maleyrie Antoine <*****@*****.**>");

    info.SetLicence(
        "The MIT License (MIT)\n\n"\

        "Copyright (c) 2012-2013 - Antoine Maleyrie.\n\n"\

        "Permission is hereby granted, free of charge, to any person obtaining a copy\n"\
        "of this software and associated documentation files (the \"Software\"), to deal\n" \
        "in the Software without restriction, including without limitation the rights\n" \
        "to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n" \
        "copies of the Software, and to permit persons to whom the Software is\n"\
        "furnished to do so, subject to the following conditions:\n\n"\

        "The above copyright notice and this permission notice shall be included in all\n"\
        "copies or substantial portions of the Software.\n\n"\

        "THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n"\
        "IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n"\
        "FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n"\
        "AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n"\
        "LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n"\
        "OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n"\
        "SOFTWARE.");

    wxAboutBox(info);
}
コード例 #2
0
ファイル: SubMainFrame.cpp プロジェクト: murdockq/OpenPaint
void SubMainFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{
    wxAboutDialogInfo info;

    info.SetName(wxT("OpenPaint"));
    info.SetVersion(wxT("1.1 Beta"));
    info.SetDescription(wxT("The open alternative to propriatry painting."));
    info.SetCopyright(wxT("(C) 2009 Steven Jedlicka"));
    info.AddDeveloper(wxT("Steven Jedlicka"));
    info.SetWebSite(wxT("http://www.openpaint.org"));
    info.SetLicense(wxString::FromAscii(
         "OpenPaint\n"
         "www.sourceforge.net/projects/openpaint\n"
         "\n"
         "Copyright (C) 2009, Steven Jedlicka\n"
         "\n"
         "This program is free software; you can redistribute it and/or\n"
         "modify it under the terms of the GNU General Public License\n"
         "as published by the Free Software Foundation; either version 2\n"
         "of the License, or (at your option) any later version.\n"
         "\n"
         "This program is distributed in the hope that it will be useful,\n"
         "but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
         "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
         "GNU General Public License for more details.\n"
         "\n"
         "You should have received a copy of the GNU General Public License\n"
         "along with this program; if not, write to the Free Software\n"
         "Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.\n"
        ));

    wxAboutBox(info);
}
コード例 #3
0
ファイル: PWUpdater.cpp プロジェクト: mihazet/my-test-apps
void PWUpdaterFrame::OnAbout(wxCommandEvent &WXUNUSED(event))
{
    wxAboutDialogInfo info;
    wxString copyright, description, version, longVersion;
    wxString &user = wxGetApp().m_user;
    wxString &contact = wxGetApp().m_contact;

    copyright
        << _("Copyright (c) 2010, Delta Electronics, Inc. All Rights Reserved.");
    description
        << _("This program is able to upgrade the firmware and/or bootloader\n")
        << _("into flash memory chips for the Pixelworks Ruby platform.\n")
        << wxT("\n") << _("Operator: ");
    if (!user.empty() || !contact.empty())
        description << user;
    else
    {
        description
            << _("anonymous") << wxT("\n\n")
            << _("No valid USB dongle inserted, the following features are disabled\n")
            << _("1. Manage flash layout setting\n")
            << _("2. Upgrade bootloader\n");
    }
    version
        << VER_MAJOR_STRING << "." << VER_MINOR_STRING << "." << VER_RELEASE_STRING;
    longVersion = version + "." + VER_BUILD_STRING;

    info.SetDescription(description);
    info.SetCopyright(copyright);
    info.SetIcon(wxIcon(ruby_48_xpm));
    info.SetName(wxT("PWUpdater"));
    info.SetVersion(version, longVersion);

    wxAboutBox(info, this);
}
コード例 #4
0
void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{
    /*wxMessageBox(wxString::Format
                 (
                    "Bienvenido a Azpazeta!\n"
                    "\n"
                    "El juego de estrategia comercial\n"
                    "funcionando sobre %s.\n\n"
					"Para mas juegos y productos visite:\n sites.google.com/site/divelmedia\n"
			"Este juego ha sido disenado por Adrian Arroyo Calle",
                    wxGetOsDescription()
                 ),
                 "Acerca de Azpazeta",
                 wxOK | wxICON_INFORMATION,
                 this);*/
        wxAboutDialogInfo aboutInfo;
        aboutInfo.SetName("Azpazeta");
        aboutInfo.SetVersion("1.0");
        aboutInfo.SetDescription(_("The game of strategy and economics by Divel"));
        aboutInfo.SetCopyright("(C) 2012");
        aboutInfo.SetWebSite("http://sites.google.com/site/divelmedia");
        aboutInfo.AddDeveloper("Adrián Arroyo Calle");
        aboutInfo.AddTranslator("Adrián Arroyo Calle and Google Translate");
        aboutInfo.AddArtist("Adrián Arroyo Calle and GIMP");

        wxAboutBox(aboutInfo);
}
コード例 #5
0
ファイル: treelist.cpp プロジェクト: ruifig/nutcracker
void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{
    wxAboutDialogInfo info;
    info.SetDescription("wxTreeListCtrl wxWidgets sample.");
    info.SetCopyright("(C) 2011 Vadim Zeitlin <*****@*****.**>");

    wxAboutBox(info);
}
コード例 #6
0
ファイル: shader.cpp プロジェクト: nocturnal/FragmentShader
void
Shader::OnAbout(wxCommandEvent& evt)
{
	wxAboutDialogInfo info;
	info.SetName(wxT("FragmentShader"));
	info.SetDescription(wxT("Built on ") __TDATE__ wxT(" ") __TTIME__);
	wxAboutBox(info);
}
コード例 #7
0
// About... menu command
void SimpleGoFrame::About(wxCommandEvent& event)
{	wxAboutDialogInfo info;
	info.SetName("Simple Go");
	info.SetVersion(VERSION);
	info.SetDescription("A simple implementation of the game Go\nby Curtis Bright");
	info.SetWebSite("http://www.curtisbright.com/simplego/");
	wxAboutBox(info);
}
コード例 #8
0
ファイル: MainFrame.cpp プロジェクト: LawnGnome/dubnium
// }}}
// {{{ void MainFrame::OnAbout(wxCommandEvent &event)
void MainFrame::OnAbout(wxCommandEvent &event) {
	wxAboutDialogInfo info;

	info.AddDeveloper(wxT("Adam Harvey"));
	info.SetName(APPNAME);
	info.SetVersion(VERSION);

	wxAboutBox(info);
}
コード例 #9
0
void MultiViewerMain::OnUIHelpAbout( wxCommandEvent&  )
{
	wxAboutDialogInfo oInfo;
	oInfo.SetVersion(_T(__VERSION__));
	oInfo.AddDeveloper(_T("Yiun Seungryong()"));
	oInfo.SetCopyright(_T("(C) 2009 Yiunsr  <*****@*****.**>"));

	wxAboutBox( oInfo );
}
コード例 #10
0
ファイル: demo.cpp プロジェクト: pbfordev/wxFreeChart
void MainFrame::OnAbout(wxCommandEvent &WXUNUSED(ev))
{
	wxAboutDialogInfo about;
	about.SetName(wxT("wxFreeChart demo"));
	about.SetVersion(version);
	about.SetDescription(wxT("This is wxFreeChart demo collection. It shows various chart types."));
	about.SetCopyright(wxT("Copyright (C) 2008-2012 Moskvichev Andrey V."));

	wxAboutBox(about);
}
コード例 #11
0
ファイル: basic_notepad.cpp プロジェクト: dnsmkl/fsqlf
void BasicNotepad::onAbout(wxCommandEvent &event)
{
    wxAboutDialogInfo info;
    info.SetName(_("Free SQL Formatter"));
    info.SetVersion(_(VERSION));
    info.SetDescription(_T("Free SQL Formatter beautifies SQL code. It is particularly useful in case one has to deal with machine generated SQL code"));
    info.SetCopyright(_T("(C) 2011-2016 Danas Mikelinskas <*****@*****.**>"));
    info.SetLicence(wxString(LICENSE_TEXT, wxConvUTF8, LICENSE_TEXT_LEN));
    wxAboutBox(info);
}
コード例 #12
0
ファイル: MainFrame.cpp プロジェクト: hampus/metalink-editor
void MainFrame::on_about(wxCommandEvent& WXUNUSED(event))
{
    wxAboutDialogInfo info;
    info.SetName(wxT("Metalink Editor"));
    info.SetVersion(wxT(METALINKEDITOR_VERSION));
    info.SetDescription(wxT("This is a development version of Metalink Editor 2"));
    info.AddDeveloper(wxT("Hampus Wessman"));
    info.AddDeveloper(wxT("Tatsuhiro Tsujikawa"));
    wxAboutBox(info);
}
コード例 #13
0
ファイル: screenshot_main.cpp プロジェクト: 3v1n0/wxWidgets
void ScreenshotFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{
    wxAboutDialogInfo info;
    info.SetName(_("Automatic Screenshot Generator"));
    info.SetVersion(_("1.0"));
    info.SetDescription(_("This utility automatically creates screenshots of wxWidgets controls for use in wxWidgets documentation."));
    info.SetCopyright(wxT("(C) 2008 Utensil Candel"));

    wxAboutBox(info);
}
コード例 #14
0
void EMFRecordEditorFrame::OnAbout( wxCommandEvent& event )
{
    wxAboutDialogInfo info;
    info.SetName(wxT("EMF Record Editor"));
    info.SetCopyright(wxT("Francesco Montorsi (c) 2007"));
    info.SetDescription(wxT("Tool for low-level EMF editing"));
    info.SetVersion(wxT("1.0.0"));
    info.SetWebSite(wxT("http://emfprinter.sourceforge.net"));
    wxAboutBox(info);
}
コード例 #15
0
ファイル: dataview.cpp プロジェクト: ruifig/nutcracker
void MyFrame::OnAbout( wxCommandEvent& WXUNUSED(event) )
{
    wxAboutDialogInfo info;
    info.SetName(_("DataView sample"));
    info.SetDescription(_("This sample demonstrates wxDataViewCtrl"));
    info.SetCopyright(wxT("(C) 2007-2009 Robert Roebling"));
    info.AddDeveloper("Robert Roebling");
    info.AddDeveloper("Francesco Montorsi");

    wxAboutBox(info);
}
コード例 #16
0
void FractalImagesFrame::OnHelp(wxCommandEvent& WXUNUSED(event))
{
	wxAboutDialogInfo info;
	info.SetName(wxT(GUI_NAME));
	info.SetVersion(wxT(VERSION_STR));
	info.SetCopyright(wxT(COPYRIGHT));
	info.SetLicense(wxT(LICENSE));
	info.SetDescription(wxT(DESCRIPTION));

	wxAboutBox(info);
}
コード例 #17
0
ファイル: treeviewsample.cpp プロジェクト: eriser/wxsqlite3
void
TreeviewSample::OnAboutClick( wxCommandEvent& event )
{
  wxUnusedVar(event);
  wxAboutDialogInfo info;
  info.SetName(_("wxSQLite3 Treeview Sample"));
  info.SetVersion(wxT("1.0.0"));
  info.SetDescription(_("\nThis sample program demonstrates the use of\n\n- SQLite in a wxWidgets based GUI application\n- Persisting a tree structure in a SQLite database\n- Drag and drop of folders within a treeview\n- Move or copy of project references via drag & drop "));
  info.SetCopyright(_T("(C) 2014 Ulrich Telle <*****@*****.**>"));
  wxAboutBox(info);
}
コード例 #18
0
void ManagerFrame::OnAboutClicked(wxCommandEvent& event)
{
	wxAboutDialogInfo aboutInfo;
	aboutInfo.SetName(wxTheApp->GetAppDisplayName());
	aboutInfo.SetDescription(_("RL Replay Manager"));
	aboutInfo.SetCopyright("(C) 2015 - 2016");
	aboutInfo.SetWebSite("https://github.com/TcT2k/RLReplayManager");
	aboutInfo.AddDeveloper("Tobias Taschner");
	aboutInfo.SetVersion(APP_VERSION);
	wxAboutBox(aboutInfo);
}
コード例 #19
0
ファイル: MenuWindow.cpp プロジェクト: Mooore/ipp2008
/**
 * Event handler pro kliknutí na tlačíko O programu
 * @param event
 */
void MenuWindow::clickAbout(wxCommandEvent &event)
{
    wxAboutDialogInfo info;
    info.SetName(_("Dáma 2008"));
    info.SetDescription(_("Černý Lukáš <[email protected]\n"
                          "Dvořák Miroslav <*****@*****.**>\n"
                          "Mrázek Petr <*****@*****.**>\n"
                          "Oujeský Miroslav <*****@*****.**>"));
    
    wxAboutBox(info);
}
コード例 #20
0
void fwknop_guiFrame::OnAbout(wxCommandEvent &event)
{
    //wxString msg = _("Fwknop-gui was created by Jonathan Bennett \nBased on fwknop and libfko written by Michael Rash");
    //wxMessageBox(msg, _("Fwknop-gui"));
    wxAboutDialogInfo aboutInfo;
    aboutInfo.SetName(_("Fwknop-gui"));
    aboutInfo.SetVersion(_("Version 1.0"));
    aboutInfo.SetDescription(_("Fwknop-gui is a cross platform graphical fwknop client."));
    aboutInfo.SetWebSite(_("https://github.com/oneru/fwknop-gui"));
    aboutInfo.AddDeveloper(_("Jonathan Bennett"));
    wxAboutBox(aboutInfo);
}
コード例 #21
0
void SpectraMainFrame::DoShowAboutDialog(wxCommandEvent&)
{
    wxAboutDialogInfo info;
    info.SetName(wxGetTranslation(wxT("OGLplus spectra")));
    info.SetVersion(wxGetTranslation(wxT("0.0.1 Alpha")));
    info.SetDescription(wxGetTranslation(wxT("3D viewer of signal Fourier spectra.")));
    info.SetCopyright(wxGetTranslation(wxT("(C) 2013 Matus Chochlik")));
    info.SetWebSite(wxGetTranslation(wxT("http://oglplus.org/")));
    info.AddDeveloper(wxGetTranslation(wxT("Matus Chochlik")));

    wxAboutBox(info);
}
コード例 #22
0
ファイル: TaskBarIcon.cpp プロジェクト: ChooJeremy/HearthLog
void TaskBarIcon::OnAbout(wxCommandEvent& event)
{
	wxAboutDialogInfo about;
	about.SetName("Hearth Log");
	about.SetVersion(Helper::AppVersion());
	about.SetDescription(_("Hearthstone game logger."));
	about.SetCopyright("(C) 2013 Chip Bradford");
	about.SetWebSite("http://www.hearthlog.com");
	about.SetIcon(wxIcon(favicon_32_32_8));

	wxAboutBox(about);
}
コード例 #23
0
ファイル: anitest.cpp プロジェクト: jfiguinha/Regards
void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event) )
{
    wxAboutDialogInfo info;
    info.SetName(_("wxAnimationCtrl and wxAnimation sample"));
    info.SetDescription(_("This sample program demonstrates the usage of wxAnimationCtrl"));
    info.SetCopyright(wxT("(C) 2006 Julian Smart"));

    info.AddDeveloper(wxT("Julian Smart"));
    info.AddDeveloper(wxT("Guillermo Rodriguez Garcia"));
    info.AddDeveloper(wxT("Francesco Montorsi"));

    wxAboutBox(info, this);
}
コード例 #24
0
void DictionaryFrame::OnAboutToolbarButtonClicked(wxCommandEvent &event)
{
    // If user clicked on about toolbar button, the display information about the program
    wxAboutDialogInfo *aboutInfo = new wxAboutDialogInfo;
    aboutInfo->SetName("GRE Mnemonic Dictionary");
    aboutInfo->SetVersion("1.0");
    aboutInfo->SetDescription(_("An useful dictionary for GRE students !!!"));
    aboutInfo->SetCopyright("(C) 2015");
    aboutInfo->SetLicence("GNU GPLv3");
    aboutInfo->AddDeveloper("Mohammad Zunayed Hassan\nEmail: [email protected]");
    aboutInfo->AddArtist("GNOME icon artists\nhttp://gnome.org");
    wxAboutBox(*aboutInfo);
}
コード例 #25
0
ファイル: AeroQSPFrame.cpp プロジェクト: Nesles/qsp
void AeroQSPFrame::OnAbout( wxCommandEvent &event )
{
	wxString verQSP = _flash->GetVersion();
	wxAboutDialogInfo info;
	info.SetIcon(wxICON(logo));
	info.SetName(wxT("AeroQSP"));
	info.SetCopyright(wxT("Quest Soft, 2001-2010"));
	info.SetDescription(wxString::Format("Shell version: %s\nQSP version: %s", AERO_VERSION, verQSP.wx_str()));
	info.SetWebSite(wxT("http://qsp.su"));
	info.AddDeveloper(wxT("BaxZzZz [[email protected]]"));
	info.AddDeveloper(wxT("Byte [[email protected]]"));
	wxAboutBox(info);
}
コード例 #26
0
void ExploreFrame::OnAboutClicked( wxCommandEvent& event )
{
	wxAboutDialogInfo aboutInfo;
	aboutInfo.SetName(wxTheApp->GetAppDisplayName());
	aboutInfo.SetDescription(_("HLM Wad Extractor"));
	aboutInfo.SetCopyright("(C) 2015");
	aboutInfo.SetWebSite("https://github.com/TcT2k/HLMWadExplorer");
	aboutInfo.AddDeveloper("Tobias Taschner");
	aboutInfo.AddArtist("LightVelox");
	aboutInfo.AddArtist("Everaldo Coelho");
	aboutInfo.SetVersion(APP_VERSION);
	wxAboutBox(aboutInfo);
}
コード例 #27
0
ファイル: frame.cpp プロジェクト: stahta01/wxCode_components
void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{

 
 	wxAboutDialogInfo AboutDialogInfo;
	AboutDialogInfo.AddDeveloper(wxT("Ettl Martin [email protected]\nLeidig Andreas [email protected]\nThis demo is based\non KWIC library project\n(http://www.koansoftware.com/kwic/index.htm)."));
	AboutDialogInfo.SetDescription(wxT("KWIC wxIndustrialControl Demo\nby\nEttl Martin\nLeidig Andreas"));
	AboutDialogInfo.SetName(wxT("KWIC | wxIndustrialControl"));
	AboutDialogInfo.SetVersion(wxT("v22.06.2007"));
 
 	wxAboutBox(AboutDialogInfo);

}
コード例 #28
0
ファイル: NyqBench.cpp プロジェクト: finefin/audacity
void NyqBench::OnAbout(wxCommandEvent & e)
{
   wxAboutDialogInfo i;

   i.AddArtist(_("Harvey Lubin (logo)"));
   i.AddArtist(_("Tango Icon Gallery (toolbar icons)"));
   i.AddDeveloper(_("Leland Lucius"));
   i.SetCopyright(_("(C) 2009 by Leland Lucius"));
   i.SetDescription(_("External Audacity module which provides a simple IDE for writing effects."));
   i.SetName(_("Nyquist Effect Workbench"));
   i.SetVersion(__TDATE__);

   wxAboutBox(i);
}
コード例 #29
0
ファイル: Frame.cpp プロジェクト: orbitcowboy/wxGetApp
void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{
    wxAboutDialogInfo AboutDialogInfo;
    AboutDialogInfo.AddDeveloper(wxT("Dr. rer. nat. Martin Ettl"));
    AboutDialogInfo.SetName(this->GetTitle());
    wxString versionInfo = wxT("(");
    versionInfo += wxT(__DATE__);
    versionInfo += wxT(")");
    versionInfo += wxT("\n");
    versionInfo += wxVERSION_STRING;
    AboutDialogInfo.SetVersion(versionInfo);
    AboutDialogInfo.SetDescription(wxT("\n"));
    wxAboutBox(AboutDialogInfo);
}
コード例 #30
0
ファイル: main.cpp プロジェクト: krpors/navi
void NaviMainFrame::onAbout(wxCommandEvent& event) {
    wxAboutDialogInfo info;
    info.SetName(wxT("Navi"));
    info.SetVersion(wxT("0.1a"));
    info.SetDescription(wxT("Hey, listen! Hello! Hey, listen!\nNavi is a directory based music player for Linux."));
    info.AddArtist(wxT("James 'adamorjames' Corley"));
    info.AddDeveloper(wxT("Kevin 'Azzkikr' Pors"));
    info.SetWebSite(wxT("http://github.com/krpors/navi"));

    wxBitmap bm(wxT("./data/icons/navi.png"), wxBITMAP_TYPE_PNG);
    wxIcon icon;
    icon.CopyFromBitmap(bm);
    info.SetIcon(icon);

    wxAboutBox(info);
}