1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
/***************************************************************
* Name: DynamicWindowMain.cpp
* Purpose: Code for Application Frame
* Author: AXSPark ()
* Created: 2016-07-29
* Copyright: AXSPark ()
* License:
**************************************************************/
#include "DynamicWindowMain.h"
#include <wx/msgdlg.h>
//(*InternalHeaders(DynamicWindowFrame)
#include <wx/intl.h>
#include <wx/string.h>
#include "DynamicData.h"
//*)
//helper functions
enum wxbuildinfoformat {
short_f, long_f };
wxString wxbuildinfo(wxbuildinfoformat format)
{
wxString wxbuild(wxVERSION_STRING);
if (format == long_f )
{
#if defined(__WXMSW__)
wxbuild << _T("-Windows");
#elif defined(__UNIX__)
wxbuild << _T("-Linux");
#endif
#if wxUSE_UNICODE
wxbuild << _T("-Unicode build");
#else
wxbuild << _T("-ANSI build");
#endif // wxUSE_UNICODE
}
return wxbuild;
}
//(*IdInit(DynamicWindowFrame)
const long DynamicWindowFrame::ID_STATICTEXT1 = wxNewId();
const long DynamicWindowFrame::idMenuQuit = wxNewId();
const long DynamicWindowFrame::idMenuAbout = wxNewId();
const long DynamicWindowFrame::ID_STATUSBAR1 = wxNewId();
//*)
BEGIN_EVENT_TABLE(DynamicWindowFrame,wxFrame)
//(*EventTable(DynamicWindowFrame)
//*)
END_EVENT_TABLE()
DynamicWindowFrame::DynamicWindowFrame(wxWindow* parent,wxWindowID id)
{
//(*Initialize(DynamicWindowFrame)
wxMenuItem* MenuItem2;
wxMenuItem* MenuItem1;
wxBoxSizer* BoxSizer2;
wxMenu* Menu1;
wxBoxSizer* BoxSizer1;
wxMenuBar* MenuBar1;
wxMenu* Menu2;
Create(parent, id, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxDEFAULT_FRAME_STYLE, _T("id"));
BoxSizer1 = new wxBoxSizer(wxHORIZONTAL);
BoxSizer2 = new wxBoxSizer(wxVERTICAL);
StaticText1 = new wxStaticText(this, ID_STATICTEXT1, _("Label"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT1"));
BoxSizer2->Add(StaticText1, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
BoxSizer1->Add(BoxSizer2, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
SetSizer(BoxSizer1);
MenuBar1 = new wxMenuBar();
Menu1 = new wxMenu();
MenuItem1 = new wxMenuItem(Menu1, idMenuQuit, _("Quit\tAlt-F4"), _("Quit the application"), wxITEM_NORMAL);
Menu1->Append(MenuItem1);
MenuBar1->Append(Menu1, _("&File"));
Menu2 = new wxMenu();
MenuItem2 = new wxMenuItem(Menu2, idMenuAbout, _("About\tF1"), _("Show info about this application"), wxITEM_NORMAL);
Menu2->Append(MenuItem2);
MenuBar1->Append(Menu2, _("Help"));
SetMenuBar(MenuBar1);
StatusBar1 = new wxStatusBar(this, ID_STATUSBAR1, 0, _T("ID_STATUSBAR1"));
int __wxStatusBarWidths_1[1] = { -1 };
int __wxStatusBarStyles_1[1] = { wxSB_NORMAL };
StatusBar1->SetFieldsCount(1,__wxStatusBarWidths_1);
StatusBar1->SetStatusStyles(1,__wxStatusBarStyles_1);
SetStatusBar(StatusBar1);
BoxSizer1->Fit(this);
BoxSizer1->SetSizeHints(this);
Connect(idMenuQuit,wxEVT_COMMAND_MENU_SELECTED,(wxObjectEventFunction)&DynamicWindowFrame::OnQuit);
Connect(idMenuAbout,wxEVT_COMMAND_MENU_SELECTED,(wxObjectEventFunction)&DynamicWindowFrame::OnAbout);
//*)
// CREATION DE LA NOUVELLE "thread"
// NECESSITE L AJOUTE DE L OPTION "-pthread" DANS LES OPTIONS DU COMPILATEUR ET LE "linker settings"
pthread_t thread_id;
pthread_create(&thread_id,NULL, &DynamicData::DataToDisplay,NULL);
}
DynamicWindowFrame::~DynamicWindowFrame()
{
//(*Destroy(DynamicWindowFrame)
//*)
}
void DynamicWindowFrame::OnQuit(wxCommandEvent& event)
{
Close();
}
void DynamicWindowFrame::OnAbout(wxCommandEvent& event)
{
wxString msg = wxbuildinfo(long_f);
wxMessageBox(msg, _("Welcome to..."));
} |
Partager