-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Exit button added to GUI - Save file dialog fixed - Listener Feature Added - Builder now allows client for remote access (beta)
- Loading branch information
Showing
34 changed files
with
2,310 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#include "frmAbout.h" | ||
|
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,109 @@ | ||
#pragma once | ||
|
||
namespace AHXRScreenLock { | ||
|
||
using namespace System; | ||
using namespace System::ComponentModel; | ||
using namespace System::Collections; | ||
using namespace System::Windows::Forms; | ||
using namespace System::Data; | ||
using namespace System::Drawing; | ||
|
||
/// <summary> | ||
/// Summary for frmAbout | ||
/// </summary> | ||
public ref class frmAbout : public System::Windows::Forms::Form | ||
{ | ||
public: | ||
frmAbout(void) | ||
{ | ||
InitializeComponent(); | ||
// | ||
//TODO: Add the constructor code here | ||
// | ||
} | ||
|
||
protected: | ||
/// <summary> | ||
/// Clean up any resources being used. | ||
/// </summary> | ||
~frmAbout() | ||
{ | ||
if (components) | ||
{ | ||
delete components; | ||
} | ||
} | ||
private: System::Windows::Forms::Label^ label1; | ||
protected: | ||
private: System::Windows::Forms::LinkLabel^ linkLabel1; | ||
|
||
private: | ||
/// <summary> | ||
/// Required designer variable. | ||
/// </summary> | ||
System::ComponentModel::Container ^components; | ||
|
||
#pragma region Windows Form Designer generated code | ||
/// <summary> | ||
/// Required method for Designer support - do not modify | ||
/// the contents of this method with the code editor. | ||
/// </summary> | ||
void InitializeComponent(void) | ||
{ | ||
this->label1 = (gcnew System::Windows::Forms::Label()); | ||
this->linkLabel1 = (gcnew System::Windows::Forms::LinkLabel()); | ||
this->SuspendLayout(); | ||
// | ||
// label1 | ||
// | ||
this->label1->AutoSize = true; | ||
this->label1->Font = (gcnew System::Drawing::Font(L"Trebuchet MS", 12, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point, | ||
static_cast<System::Byte>(0))); | ||
this->label1->ForeColor = System::Drawing::Color::DarkCyan; | ||
this->label1->Location = System::Drawing::Point(12, 9); | ||
this->label1->Name = L"label1"; | ||
this->label1->Size = System::Drawing::Size(159, 22); | ||
this->label1->TabIndex = 0; | ||
this->label1->Text = L"AHXRBuilder (c) 2017"; | ||
// | ||
// linkLabel1 | ||
// | ||
this->linkLabel1->AutoSize = true; | ||
this->linkLabel1->Font = (gcnew System::Drawing::Font(L"Trebuchet MS", 12, System::Drawing::FontStyle::Regular, System::Drawing::GraphicsUnit::Point, | ||
static_cast<System::Byte>(0))); | ||
this->linkLabel1->Location = System::Drawing::Point(12, 31); | ||
this->linkLabel1->Name = L"linkLabel1"; | ||
this->linkLabel1->Size = System::Drawing::Size(326, 22); | ||
this->linkLabel1->TabIndex = 1; | ||
this->linkLabel1->TabStop = true; | ||
this->linkLabel1->Text = L"https://github.com/AHXR/AHXR-ScreenLock"; | ||
this->linkLabel1->LinkClicked += gcnew System::Windows::Forms::LinkLabelLinkClickedEventHandler(this, &frmAbout::linkLabel1_LinkClicked); | ||
// | ||
// frmAbout | ||
// | ||
this->AutoScaleDimensions = System::Drawing::SizeF(6, 13); | ||
this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font; | ||
this->BackColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(35)), static_cast<System::Int32>(static_cast<System::Byte>(35)), | ||
static_cast<System::Int32>(static_cast<System::Byte>(35))); | ||
this->ClientSize = System::Drawing::Size(352, 72); | ||
this->Controls->Add(this->linkLabel1); | ||
this->Controls->Add(this->label1); | ||
this->FormBorderStyle = System::Windows::Forms::FormBorderStyle::FixedDialog; | ||
this->MaximizeBox = false; | ||
this->MaximumSize = System::Drawing::Size(358, 98); | ||
this->MinimizeBox = false; | ||
this->MinimumSize = System::Drawing::Size(358, 98); | ||
this->Name = L"frmAbout"; | ||
this->ShowIcon = false; | ||
this->Text = L"About"; | ||
this->ResumeLayout(false); | ||
this->PerformLayout(); | ||
|
||
} | ||
#pragma endregion | ||
private: System::Void linkLabel1_LinkClicked(System::Object^ sender, System::Windows::Forms::LinkLabelLinkClickedEventArgs^ e) { | ||
System::Diagnostics::Process::Start("https://github.com/AHXR/AHXR-ScreenLock"); | ||
} | ||
}; | ||
} |
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
Oops, something went wrong.