forked from Sneeds-Feed-and-Seed/sneedacity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSplashDialog.cpp
181 lines (145 loc) · 4.96 KB
/
SplashDialog.cpp
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/**********************************************************************
Sneedacity: A Digital Audio Editor
SplashDialog.cpp
James Crook
********************************************************************//**
\class SplashDialog
\brief The SplashDialog shows help information for Sneedacity when
Sneedacity starts up.
It was written for the benefit of NEW users who do not want to
read the manual. The text of the dialog is kept short to increase the
chance of it being read. The content is designed to reduce the
most commonly asked questions about Sneedacity.
*//********************************************************************/
#include "SplashDialog.h"
#include <wx/dialog.h>
#include <wx/frame.h>
#include <wx/html/htmlwin.h>
#include <wx/button.h>
#include <wx/sizer.h>
#include <wx/statbmp.h>
#include <wx/intl.h>
#include <wx/image.h>
#include "FileNames.h"
#include "Project.h"
#include "ShuttleGui.h"
#include "widgets/SneedacityMessageBox.h"
#include "widgets/HelpSystem.h"
#include "AllThemeResources.h"
#include "Prefs.h"
#include "HelpText.h"
// DA: Logo for Splash Dialog (welcome dialog)
#ifdef EXPERIMENTAL_DA
#include "../images/DarkSneedacityLogoWithName.xpm"
#else
#include "../images/SneedacityLogoWithName.xpm"
#endif
SplashDialog * SplashDialog::pSelf=NULL;
enum
{
DontShowID=1000,
};
BEGIN_EVENT_TABLE(SplashDialog, wxDialogWrapper)
EVT_BUTTON(wxID_OK, SplashDialog::OnOK)
EVT_CHECKBOX( DontShowID, SplashDialog::OnDontShow )
END_EVENT_TABLE()
IMPLEMENT_CLASS(SplashDialog, wxDialogWrapper)
void SplashDialog::DoHelpWelcome( SneedacityProject &project )
{
Show2( &GetProjectFrame( project ) );
}
SplashDialog::SplashDialog(wxWindow * parent)
: wxDialogWrapper(parent, -1, XO("Welcome to Sneedacity!"),
wxPoint( -1, 60 ), // default x position, y position 60 pixels from top of screen.
wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER)
{
SetName();
m_pLogo = NULL; //v
ShuttleGui S( this, eIsCreating );
Populate( S );
Fit();
this->Centre();
int x,y;
GetPosition( &x, &y );
Move( x, 60 );
}
void SplashDialog::OnChar(wxMouseEvent &event)
{
if ( event.ShiftDown() && event.ControlDown() )
wxLaunchDefaultBrowser("https://www.sneedacityteam.org");
}
void SplashDialog::Populate( ShuttleGui & S )
{
bool bShow;
gPrefs->Read(wxT("/GUI/ShowSplashScreen"), &bShow, true );
S.StartVerticalLay(1);
//v For now, change to SneedacityLogoWithName via old-fashioned ways, not Theme.
m_pLogo = std::make_unique<wxBitmap>((const char **) SneedacityLogoWithName_xpm); //v
// JKC: Resize to 50% of size. Later we may use a smaller xpm as
// our source, but this allows us to tweak the size - if we want to.
// It also makes it easier to revert to full size if we decide to.
const float fScale=0.5f;// smaller size.
wxImage RescaledImage( m_pLogo->ConvertToImage() );
wxColour MainColour(
RescaledImage.GetRed(1,1),
RescaledImage.GetGreen(1,1),
RescaledImage.GetBlue(1,1));
this->SetBackgroundColour(MainColour);
// wxIMAGE_QUALITY_HIGH not supported by wxWidgets 2.6.1, or we would use it here.
RescaledImage.Rescale( (int)(LOGOWITHNAME_WIDTH * fScale), (int)(LOGOWITHNAME_HEIGHT *fScale) );
wxBitmap RescaledBitmap( RescaledImage );
wxStaticBitmap *const icon =
safenew wxStaticBitmap(S.GetParent(), -1,
//*m_pLogo, //v theTheme.Bitmap(bmpSneedacityLogoWithName),
RescaledBitmap,
wxDefaultPosition,
wxSize((int)(LOGOWITHNAME_WIDTH*fScale), (int)(LOGOWITHNAME_HEIGHT*fScale)));
S.Prop(0)
#if (0)
.ConnectRoot( wxEVT_LEFT_DOWN, &SplashDialog::OnChar)
#endif
.AddWindow( icon );
mpHtml = safenew LinkingHtmlWindow(S.GetParent(), -1,
wxDefaultPosition,
wxSize(506, 280),
wxHW_SCROLLBAR_AUTO | wxSUNKEN_BORDER );
mpHtml->SetPage(HelpText( wxT("welcome") ));
S.Prop(1)
.Position( wxEXPAND )
.AddWindow( mpHtml );
S.Prop(0).StartMultiColumn(2, wxEXPAND);
S.SetStretchyCol( 1 );// Column 1 is stretchy...
{
S.SetBorder( 5 );
S.Id( DontShowID).AddCheckBox( XXO("Don't show this again at start up"), !bShow );
S.SetBorder( 5 );
S.Id(wxID_OK)
.Prop(0)
.AddButton(XXO("OK"), wxALIGN_RIGHT| wxALL, true);
}
S.EndVerticalLay();
}
SplashDialog::~SplashDialog()
{
}
void SplashDialog::OnDontShow( wxCommandEvent & Evt )
{
bool bShow = !Evt.IsChecked();
gPrefs->Write(wxT("/GUI/ShowSplashScreen"), bShow );
gPrefs->Flush();
}
void SplashDialog::OnOK(wxCommandEvent & WXUNUSED(event))
{
Show( false );
}
void SplashDialog::Show2( wxWindow * pParent )
{
if( pSelf == NULL )
{
// pParent owns it
wxASSERT(pParent);
pSelf = safenew SplashDialog( pParent );
}
pSelf->mpHtml->SetPage(HelpText( wxT("welcome") ));
pSelf->Show( true );
}