-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
239 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#ifndef UPDATEMAN_H | ||
#define UPDATEMAN_H | ||
|
||
//(*Headers(UpdateMan) | ||
#include <wx/button.h> | ||
#include <wx/dialog.h> | ||
#include <wx/sizer.h> | ||
#include <wx/stattext.h> | ||
#include <wx/textctrl.h> | ||
//*) | ||
|
||
class UpdateMan: public wxDialog | ||
{ | ||
public: | ||
|
||
UpdateMan(wxWindow* parent, wxString newv, wxString oldv ,wxWindowID id=wxID_ANY,const wxPoint& pos=wxDefaultPosition,const wxSize& size=wxDefaultSize); | ||
virtual ~UpdateMan(); | ||
|
||
//(*Declarations(UpdateMan) | ||
wxButton* CANCEL; | ||
wxButton* OK; | ||
wxStaticText* heading; | ||
wxTextCtrl* UpdateDetails; | ||
//*) | ||
|
||
protected: | ||
|
||
//(*Identifiers(UpdateMan) | ||
static const long ID_STATICTEXT2; | ||
static const long ID_TEXTCTRL1; | ||
static const long ID_BUTTON1; | ||
static const long ID_BUTTON2; | ||
//*) | ||
|
||
private: | ||
|
||
//(*Handlers(UpdateMan) | ||
void OnOKClick(wxCommandEvent& event); | ||
void OnCANCELClick(wxCommandEvent& event); | ||
//*) | ||
|
||
DECLARE_EVENT_TABLE() | ||
}; | ||
|
||
#endif |
Binary file modified
BIN
+7.5 KB
(100%)
HDL-Batch-installer-SRC/_bin/playground/HDL-Batch-installer-x86.exe
Binary file not shown.
Binary file modified
BIN
+7.5 KB
(100%)
HDL-Batch-installer-SRC/_bin/playground/HDL-Batch-installer.exe
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<wxsmith> | ||
<object class="wxDialog" name="UpdateMan"> | ||
<pos_arg>1</pos_arg> | ||
<size_arg>1</size_arg> | ||
<style>wxRESIZE_BORDER|wxDIALOG_NO_PARENT|wxMAXIMIZE_BOX</style> | ||
<object class="wxBoxSizer" variable="BoxSizer1" member="no"> | ||
<orient>wxVERTICAL</orient> | ||
<object class="sizeritem"> | ||
<object class="wxBoxSizer" variable="BoxSizer2" member="no"> | ||
<orient>wxVERTICAL</orient> | ||
<object class="sizeritem"> | ||
<object class="wxStaticText" name="ID_STATICTEXT2" variable="heading" member="yes"> | ||
<label></label> | ||
<minsize>200,0</minsize> | ||
<style>wxALIGN_CENTRE</style> | ||
</object> | ||
<flag>wxALL|wxEXPAND</flag> | ||
<border>5</border> | ||
<option>1</option> | ||
</object> | ||
</object> | ||
<flag>wxALL|wxEXPAND</flag> | ||
<border>5</border> | ||
<option>2</option> | ||
</object> | ||
<object class="sizeritem"> | ||
<object class="wxStaticBoxSizer" variable="StaticBoxSizer1" member="no"> | ||
<label>Changes:</label> | ||
<object class="sizeritem"> | ||
<object class="wxTextCtrl" name="ID_TEXTCTRL1" variable="UpdateDetails" member="yes"> | ||
<minsize>700,200</minsize> | ||
<style>wxTE_MULTILINE|wxTE_READONLY</style> | ||
</object> | ||
<flag>wxEXPAND</flag> | ||
<border>5</border> | ||
<option>2</option> | ||
</object> | ||
</object> | ||
<flag>wxLEFT|wxRIGHT|wxEXPAND</flag> | ||
<border>5</border> | ||
<option>3</option> | ||
</object> | ||
<object class="sizeritem"> | ||
<object class="wxBoxSizer" variable="BoxSizer4" member="no"> | ||
<object class="sizeritem"> | ||
<object class="wxButton" name="ID_BUTTON1" variable="OK" member="yes"> | ||
<label>OK</label> | ||
<handler function="OnOKClick" entry="EVT_BUTTON" /> | ||
</object> | ||
<flag>wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL</flag> | ||
<border>5</border> | ||
<option>1</option> | ||
</object> | ||
<object class="sizeritem"> | ||
<object class="wxButton" name="ID_BUTTON2" variable="CANCEL" member="yes"> | ||
<label>Cancel</label> | ||
<handler function="OnCANCELClick" entry="EVT_BUTTON" /> | ||
</object> | ||
<flag>wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL</flag> | ||
<border>5</border> | ||
<option>1</option> | ||
</object> | ||
</object> | ||
<flag>wxALL|wxEXPAND</flag> | ||
<border>5</border> | ||
<option>1</option> | ||
</object> | ||
</object> | ||
</object> | ||
</wxsmith> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.