-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
a new SLIC3R_BUILD define to be replaced by the build script, a menu item to open the "New Issue" github page.
- Loading branch information
Showing
7 changed files
with
222 additions
and
0 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,70 @@ | ||
package Slic3r::GUI::SystemInfo; | ||
use strict; | ||
use warnings; | ||
use utf8; | ||
|
||
use Wx qw(:font :html :misc :dialog :sizer :systemsettings :frame :id wxTheClipboard); | ||
use Wx::Event qw(EVT_HTML_LINK_CLICKED EVT_LEFT_DOWN EVT_BUTTON); | ||
use Wx::Html; | ||
use base 'Wx::Dialog'; | ||
|
||
sub new { | ||
my ($class, %params) = @_; | ||
my $self = $class->SUPER::new($params{parent}, -1, 'Slic3r Prusa Edition - System Information', wxDefaultPosition, [600, 340], | ||
wxDEFAULT_DIALOG_STYLE | wxMAXIMIZE_BOX | wxRESIZE_BORDER); | ||
$self->{text_info} = $params{text_info}; | ||
|
||
$self->SetBackgroundColour(Wx::wxWHITE); | ||
my $vsizer = Wx::BoxSizer->new(wxVERTICAL); | ||
$self->SetSizer($vsizer); | ||
|
||
# text | ||
my $text = | ||
'<html>' . | ||
'<body bgcolor="#ffffff" link="#808080">' . | ||
($params{slic3r_info} // '') . | ||
($params{copyright_info} // '') . | ||
($params{system_info} // '') . | ||
($params{opengl_info} // '') . | ||
'</body>' . | ||
'</html>'; | ||
my $html = $self->{html} = Wx::HtmlWindow->new($self, -1, wxDefaultPosition, wxDefaultSize, wxHW_SCROLLBAR_AUTO); | ||
my $font = Wx::SystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT); | ||
# my $size = &Wx::wxMSW ? 8 : 10; | ||
# $html->SetFonts($font->GetFaceName, $font->GetFaceName, [$size, $size, $size, $size, $size, $size, $size]); | ||
$html->SetBorders(2); | ||
$html->SetPage($text); | ||
$vsizer->Add($html, 1, wxEXPAND | wxALIGN_LEFT | wxRIGHT | wxBOTTOM, 20); | ||
EVT_HTML_LINK_CLICKED($self, $html, \&link_clicked); | ||
|
||
my $buttons = $self->CreateStdDialogButtonSizer(wxOK); | ||
my $btn_copy_to_clipboard = Wx::Button->new($self, -1, "Copy to Clipboard", wxDefaultPosition, wxDefaultSize); | ||
$buttons->Insert(0, $btn_copy_to_clipboard, 0, wxLEFT, 5); | ||
EVT_BUTTON($self, $btn_copy_to_clipboard, \©_to_clipboard); | ||
$self->SetEscapeId(wxID_CLOSE); | ||
EVT_BUTTON($self, wxID_CLOSE, sub { | ||
$self->EndModal(wxID_CLOSE); | ||
$self->Close; | ||
}); | ||
# $vsizer->Add($buttons, 0, wxEXPAND | wxRIGHT | wxBOTTOM, 3); | ||
$vsizer->Add($buttons, 0, wxEXPAND | wxALL, 3); | ||
|
||
return $self; | ||
} | ||
|
||
sub link_clicked { | ||
my ($self, $event) = @_; | ||
|
||
Wx::LaunchDefaultBrowser($event->GetLinkInfo->GetHref); | ||
$event->Skip(0); | ||
} | ||
|
||
sub copy_to_clipboard { | ||
my ($self, $event) = @_; | ||
my $data = $self->{text_info}; | ||
wxTheClipboard->Open; | ||
wxTheClipboard->SetData(Wx::TextDataObject->new($data)); | ||
wxTheClipboard->Close; | ||
} | ||
|
||
1; |
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