-
Notifications
You must be signed in to change notification settings - Fork 2
/
GUIWizards.h
851 lines (736 loc) · 23.4 KB
/
GUIWizards.h
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
#ifndef _GUIWIZARDS_H
#define _GUIWIZARDS_H
#include <wx/wx.h>
#include <wx/wizard.h>
#include <wx/richtext/richtextctrl.h>
#include <wx/stattext.h>
#include "WindowIDs.h"
#include "ProgressPanel.h"
#include "StatsgenWeb.h"
#include "ImagePanel.h"
#define WIZARD_CHOICE_GAMESERVER "gameserver"
#define WIZARD_CHOICE_HOMEPC "homepc"
#define WIZARD_CHOICE_NEW "New"
#define WIZARD_CHOICE_EDIT "Edit"
#define WIZARD_CHOICE_DELETE "Delete"
class StatsgenWizard;
class GUIWizardPageStatsgen : public wxWizardPage
{
public:
GUIWizardPageStatsgen(StatsgenWizard *wizardIn,wxString parentPageID,wxString pageID);
virtual ~GUIWizardPageStatsgen();
virtual wxWizardPage *GetPrev() const;
virtual wxWizardPage *GetNext() const;
void SetPreviousPage(wxWizardPage *page);
void SetNextPage(wxWizardPage *page);
void SetHelp(const char *helpTextIn);
void SetCallBack(void(* callBackIn)(void *object),void *callBackObjectIn );
void SetPageCounter(int pageIndexIn,int pageCountIn);
void UpdateProgress();
void Resize(int maxHeight=-1);
virtual bool AutoAdvance();
void SetSectionTitle(const char *titleChars);
virtual wxString GetValue()=0;
wxString GetPageID();
void PageContentsChanged();
StatsgenWizard *wizard;
protected:
virtual wxSize ResizeControl(int x,int y,int width,bool resize);
protected:
virtual void UpdateScreen();
void (* callBack)(void *object);
void *callBackObject;
int pageIndex;
int wizardPageCount;
private:
wxWizardPage *previousPage;
wxWizardPage *nextPage;
wxString helpText;
wxRichTextCtrl *helpTextCtrl;
wxGauge *installProgress;
wxStaticText *sectionTitle;
wxString pageID;
};
class GUIPageLinks
{
public:
void AddPageLink(GUIWizardPageStatsgen *page,
const char *allowRule,
const char *continueRule);
void SetPageLinks(bool ignoreRules);
void SetPageCounters();
GUIWizardPageStatsgen *GetFirstPage();
void ResizePages();
private:
GUIWizardPageStatsgen *FindPage(int pageIndex,int direction,bool ignoreRules);
bool EvaluateRule(wxString &rule,bool ignoreRules);
bool EvaluateRuleSub(wxString &rule);
void PushValue(wxArrayString &valueQueue,wxString &value);
wxString PopValue(wxArrayString &valueQueue);
int ValueCount(wxArrayString &valueQueue);
wxString Bool2Value(bool value);
bool Value2Bool(wxString &value);
wxString GetValue(wxString &id);
wxArrayPtrVoid guiPages;
wxArrayString allowRules;
wxArrayString continueRules;
};
class GUIWizardPageNull : public GUIWizardPageStatsgen
{
public:
GUIWizardPageNull(StatsgenWizard *wizard,wxString parentPageID,wxString thisPageID);
virtual ~GUIWizardPageNull();
virtual wxString GetValue();
virtual bool AutoAdvance();
};
class GUIWizardPageConfig : public GUIWizardPageStatsgen
{
public:
GUIWizardPageConfig(StatsgenWizard *wizard,wxString parentPageID,wxString thisPageID);
virtual ~GUIWizardPageConfig();
void SetConfigKey(wxString &configKeyIn,const char *defaultValueIn=NULL);
void SetDefault(const char *defaultValueIn);
void SetConfigTitle(const char *titleIn);
virtual void OnValueChanged(wxCommandEvent &event);
virtual wxString GetValue();
virtual void UpdateValueFromConfig();
void VetoCtrlUpdates();
void AllowCtrlUpdates();
bool CtrlUpdatesAllowed();
protected:
virtual wxSize ResizeControl(int x,int y,int width,bool resize);
virtual void UpdateConfigFromValue();
virtual void UpdateCtrlFromValue();
virtual bool ConfigReady();
virtual void UpdateScreen();
virtual bool ScreenReady()=0;
virtual void SetCtrlFromValue()=0;
virtual void SetValueFromCtrl()=0;
wxString value;
wxString title;
wxString configKey;
wxString defaultValue;
private:
wxStaticText *titleCtrl;
bool vetoUpdates;
};
class GUIWizardPageConfigText : public GUIWizardPageConfig
{
public:
GUIWizardPageConfigText(StatsgenWizard *wizard,wxString parentPageID,wxString thisPageID);
virtual ~GUIWizardPageConfigText();
protected:
virtual void CreateControl();
virtual void SetCtrlFromValue();
virtual wxSize ResizeControl(int x,int y,int width,bool resize);
virtual bool ScreenReady();
virtual void SetValueFromCtrl();
protected:
wxTextCtrl *valueCtrl;
DECLARE_EVENT_TABLE();
};
class GUIWizardPageConfigBoolean : public GUIWizardPageConfig
{
public:
GUIWizardPageConfigBoolean(StatsgenWizard *wizard,wxString parentPageID,wxString thisPageID);
virtual ~GUIWizardPageConfigBoolean();
void SetTrueFalseLabels(const char *trueLabelIn,const char *falseLabelIn);
protected:
virtual void CreateControl();
virtual void SetCtrlFromValue();
virtual wxSize ResizeControl(int x,int y,int width,bool resize);
virtual bool ScreenReady();
virtual void SetValueFromCtrl();
protected:
wxCheckBox *valueCtrl;
private:
wxString trueLabel;
wxString falseLabel;
void UpdateLabel();
DECLARE_EVENT_TABLE();
};
class GUIWizardPageConfigFile : public GUIWizardPageConfig
{
public:
GUIWizardPageConfigFile(StatsgenWizard *wizard,wxString parentPageID,wxString thisPageID);
virtual ~GUIWizardPageConfigFile();
void OnButtonPressed(wxCommandEvent &event);
virtual void UpdateValueFromConfig();
virtual void SplitValue(wxString &valueDirectory,
wxString &valueFilename)=0;
protected:
virtual void CreateControl();
virtual void SetCtrlFromValue();
virtual wxSize ResizeControl(int x,int y,int width,bool resize);
virtual bool ScreenReady();
virtual void SetValueFromCtrl();
virtual void UpdateConfigFromValue();
virtual wxString RequestFileFromUser()=0;
protected:
wxTextCtrl *valueCtrl;
wxButton *browseButton;
protected:
void GetConfigKeys(wxString &configDirectory,
wxString &configFilename);
virtual void CombineValue();
wxString directory;
wxString filename;
DECLARE_EVENT_TABLE();
};
class GUIWizardPageConfigRemoteFile : public GUIWizardPageConfigFile
{
public:
GUIWizardPageConfigRemoteFile(StatsgenWizard *wizard,wxString parentPageID,wxString thisPageID);
virtual ~GUIWizardPageConfigRemoteFile();
virtual void SplitValue(wxString &valueDirectory,
wxString &valueFilename);
protected:
virtual wxString RequestFileFromUser();
virtual void CombineValue();
};
class GUIWizardPageConfigLocalFile : public GUIWizardPageConfigFile
{
public:
GUIWizardPageConfigLocalFile(StatsgenWizard *wizard,wxString parentPageID,wxString thisPageID);
virtual void SplitValue(wxString &valueDirectory,
wxString &valueFilename);
protected:
virtual wxString RequestFileFromUser();
virtual void CombineValue();
};
class GUIWizardPageConfigWildcard : public GUIWizardPageConfig
{
public:
GUIWizardPageConfigWildcard(StatsgenWizard *wizard,wxString parentPageID,wxString thisPageID);
virtual ~GUIWizardPageConfigWildcard();
void OnButtonPressed(wxCommandEvent &event);
virtual void UpdateValueFromConfig();
virtual wxString GetDirectoryFromUser()=0;
wxString GetWildcard();
protected:
virtual void CreateControl();
virtual void SetCtrlFromValue();
virtual wxSize ResizeControl(int x,int y,int width,bool resize);
virtual bool ScreenReady();
virtual void SetValueFromCtrl();
virtual void UpdateConfigFromValue();
protected:
wxTextCtrl *valueCtrl;
wxTextCtrl *wildcardCtrl;
wxButton *browseButton;
wxString wildcardValue;
wxStaticText *directoryLabel;
wxStaticText *wildcardLabel;
private:
void GetConfigKeys(wxString &configDirectory,
wxString &configFilename);
DECLARE_EVENT_TABLE();
};
class GUIWizardPageConfigLocalWildcard : public GUIWizardPageConfigWildcard
{
public:
GUIWizardPageConfigLocalWildcard(StatsgenWizard *wizard,wxString parentPageID,wxString thisPageID);
virtual ~GUIWizardPageConfigLocalWildcard();
virtual wxString GetDirectoryFromUser();
};
class GUIWizardPageConfigRemoteWildcard : public GUIWizardPageConfigWildcard
{
public:
GUIWizardPageConfigRemoteWildcard(StatsgenWizard *wizard,wxString parentPageID,wxString thisPageID);
virtual ~GUIWizardPageConfigRemoteWildcard();
virtual wxString GetDirectoryFromUser();
};
class GUIWizardPageConfigRemoteDirectory : public GUIWizardPageConfig
{
public:
GUIWizardPageConfigRemoteDirectory(StatsgenWizard *wizard,wxString parentPageID,wxString thisPageID);
virtual ~GUIWizardPageConfigRemoteDirectory();
void OnButtonPressed(wxCommandEvent &event);
virtual void UpdateValueFromConfig();
protected:
virtual void CreateControl();
virtual void SetCtrlFromValue();
virtual wxSize ResizeControl(int x,int y,int width,bool resize);
virtual bool ScreenReady();
virtual void SetValueFromCtrl();
virtual void UpdateConfigFromValue();
protected:
wxTextCtrl *valueCtrl;
wxButton *browseButton;
DECLARE_EVENT_TABLE();
};
class GUIWizardPageConfigChoice : public GUIWizardPageConfig
{
public:
GUIWizardPageConfigChoice(StatsgenWizard *wizard,wxString parentPageID,wxString thisPageID,
wxArrayString &answerCodesIn,
wxArrayString &buttonTextsIn,
wxArrayString &buttonDescriptionsIn);
virtual ~GUIWizardPageConfigChoice();
wxString TestResult();
void OnButtonPressed(wxCommandEvent &event);
wxString GetChoice();
protected:
virtual void CreateControl();
virtual void SetCtrlFromValue();
virtual wxSize ResizeControl(int x,int y,int width,bool resize);
virtual bool ScreenReady();
virtual void SetValueFromCtrl();
public:
void SetSelection(const char *selection);
void SetSelection(wxString &selection);
protected:
wxArrayPtrVoid buttons;
wxArrayPtrVoid labels;
wxArrayString answerCodes;
wxArrayString buttonTexts;
wxArrayString buttonDescriptions;
wxTextCtrl *valueCtrl;
wxStaticText *selectionLabel;
wxString choice;
DECLARE_EVENT_TABLE();
};
class GUIWizardPageRemoteTest : public GUIWizardPageStatsgen
{
public:
GUIWizardPageRemoteTest(StatsgenWizard *wizard,wxString parentPageID,wxString thisPageID);
virtual ~GUIWizardPageRemoteTest();
void SetGroupPrefix(wxString &groupPrefixIn);
bool TestResult();
bool PerformTest();
virtual wxSize ResizeControl(int x,int y,int width,bool resize);
void OnButtonPressed(wxCommandEvent &event);
void ResetTestResult();
virtual wxString GetValue();
private:
wxStaticText *statusCtrl;
wxRichTextCtrl *errorCtrl;
wxButton *testButton;
wxString groupPrefix;
private:
bool lastConnectionResult;
DECLARE_EVENT_TABLE();
};
class GUIWizardPageRun : public GUIWizardPageStatsgen
{
public:
GUIWizardPageRun(StatsgenWizard *wizard,wxString parentPageID,wxString thisPageID);
virtual ~GUIWizardPageRun();
bool TestResult();
bool PerformTest();
virtual wxSize ResizeControl(int x,int y,int width,bool resize);
void OnButtonPressed(wxCommandEvent &event);
void ResetTestResult();
virtual wxString GetValue();
void SetTestParameters(bool testRun);
void SetSelection(const char *selection);
private:
wxStaticText *statusCtrl;
wxRichTextCtrl *errorCtrl;
wxButton *testButton;
ProgressPanel *progressPanel;
private:
bool runSuccessful;
DECLARE_EVENT_TABLE();
};
class GUIWizardPageImagePacks : public GUIWizardPageStatsgen
{
public:
GUIWizardPageImagePacks(StatsgenWizard *wizard,wxString parentPageID,wxString thisPageID);
virtual ~GUIWizardPageImagePacks();
virtual wxSize ResizeControl(int x,int y,int width,bool resize);
void OnButtonPressed(wxCommandEvent &event);
virtual wxString GetValue();
private:
wxScrolledWindow *imagesCtrl;
wxButton *testButton;
ProgressPanel *progressPanel;
StatsgenWeb statsgenSite;
private:
void CreateImagePackPanels();
void SelectImagePackPanel(wxString &serverType);
void SelectImagePackPanels();
void ResizeImagePackPanels();
private:
wxArrayString fileDescriptions;
wxArrayString filePaths;
wxArrayString serverTypes;
wxArrayString thumbnails;
wxArrayString upgradeFiles;
wxArrayPtrVoid imagePackPanels;
DECLARE_EVENT_TABLE();
};
class GUIWizardPageRemoteFileTest : public GUIWizardPageStatsgen
{
public:
GUIWizardPageRemoteFileTest(StatsgenWizard *wizard,wxString parentPageID,wxString thisPageID);
virtual ~GUIWizardPageRemoteFileTest();
void SetGroupPrefix(wxString &groupPrefixIn);
bool TestResult();
bool PerformTest();
virtual wxSize ResizeControl(int x,int y,int width,bool resize);
void OnButtonPressed(wxCommandEvent &event);
void ResetTestResult();
void SetFile(wxString &fileDirectoryIn, wxString &fileNameIn);
virtual wxString GetValue();
private:
wxStaticText *statusCtrl;
wxRichTextCtrl *errorCtrl;
wxButton *testButton;
wxString groupPrefix;
wxString fileDirectory;
wxString fileName;
private:
bool lastResult;
wxArrayString filenameList;
wxArrayInt filesizeList;
DECLARE_EVENT_TABLE();
};
class GUIWizardPageRemoteDirectoryTest : public GUIWizardPageStatsgen
{
public:
GUIWizardPageRemoteDirectoryTest(StatsgenWizard *wizard,wxString parentPageID,wxString thisPageID);
virtual ~GUIWizardPageRemoteDirectoryTest();
void SetGroupPrefix(wxString &groupPrefixIn);
bool TestResult();
bool PerformTest();
virtual wxSize ResizeControl(int x,int y,int width,bool resize);
void OnButtonPressed(wxCommandEvent &event);
void ResetTestResult();
void SetDirectory(wxString &fileDirectoryIn);
virtual wxString GetValue();
private:
wxStaticText *statusCtrl;
wxRichTextCtrl *errorCtrl;
wxButton *testButton;
wxString groupPrefix;
wxString fileDirectory;
private:
bool lastResult;
DECLARE_EVENT_TABLE();
};
class GUIWizardPages
{
public:
GUIWizardPages();
virtual ~GUIWizardPages();
void SetPageID(wxString parentID,wxString pageIDIn);
virtual void CreateWizardPages(StatsgenWizard *wizard)=0;
protected:
wxString pageID;
StatsgenWizard *wizard;
};
class GUIWizardPagesRemoteMachine : public GUIWizardPages
{
public:
GUIWizardPagesRemoteMachine();
virtual ~GUIWizardPagesRemoteMachine();
void SetGroupPrefix(wxString &groupPrefixIn);
virtual void CreateWizardPages(StatsgenWizard *wizard);
void ResizePages();
static void ConfigChangedCallBack(void *callingObject);
void SetCallBack(void(* callBackIn)(void *object),void *callBackObjectIn );
static void ConnectionTestCallBack(void *callingObject);
void SetSectionTitle(const char *titleChars);
void PopCallBack();
bool IsFTPEnabled();
wxString GetEnabledPageID();
private:
void UpdateConfigKeys();
void ConnectionTest();
private:
wxString groupPrefix;
GUIWizardPageConfigText *pageHostname;
GUIWizardPageConfigBoolean *pageEnabled;
GUIWizardPageConfigText *pageUsername;
GUIWizardPageConfigText *pagePassword;
GUIWizardPageConfigText *pageFTPPort;
GUIWizardPageConfigBoolean *pagePassive;
GUIWizardPageRemoteTest *pageTest;
void (* callBack)(void *object);
void *callBackObject;
};
class GUIWizardPageChoice : public GUIWizardPageStatsgen
{
public:
GUIWizardPageChoice(
StatsgenWizard *wizard,wxString parentPageID,wxString thisPageID,
wxArrayString &answerCodesIn,
wxArrayString &buttonTextsIn,
wxArrayString &buttonDescriptionsIn);
virtual ~GUIWizardPageChoice();
void UpdateChoices(
wxArrayString &answerCodesIn,
wxArrayString &buttonTextsIn,
wxArrayString &buttonDescriptionsIn);
wxString TestResult();
virtual wxSize ResizeControl(int x,int y,int width,bool resize);
void OnButtonPressed(wxCommandEvent &event);
wxString GetChoice();
void SelectChoice(wxString &choiceIn);
virtual wxString GetValue();
public:
void SetSelection(const char *selection);
void SetSelection(wxString &selection);
private:
wxArrayPtrVoid buttons;
wxArrayPtrVoid labels;
wxArrayString answerCodes;
wxArrayString buttonTexts;
wxArrayString buttonDescriptions;
wxStaticText *selectedChoice;
wxStaticText *selectionLabel;
wxString choice;
DECLARE_EVENT_TABLE();
};
class GUIWizardPagesServer : public GUIWizardPages
{
public:
GUIWizardPagesServer();
virtual ~GUIWizardPagesServer();
virtual void CreateWizardPages(StatsgenWizard *wizard);
void ResizePages();
void SetTestParameters();
void SetGroupPrefix(wxString &groupPrefixIn);
void UpdateConfigKeys();
static void ConfigChangedCallBack(void *callingObject);
void SetSectionTitle(const char *titleChars);
void PrepareServerConfig();
void SetLogfileLimit(int limit);
void SetLogfileLimit();
private:
wxString groupPrefix;
GUIWizardPagesRemoteMachine remoteMachine;
GUIWizardPageConfigChoice *pageServerType;
GUIWizardPageConfigChoice *pageLocalOrRemote;
GUIWizardPageConfigBoolean *pageMessagingEnabled;
GUIWizardPageConfigText *pageRCONPassword;
GUIWizardPageConfigText *pageRCONPort;
GUIWizardPageConfigRemoteDirectory *pagePBRemoteDirectory;
GUIWizardPageRemoteDirectoryTest *pagePBRemoteDirectoryTest;
GUIWizardPageConfigRemoteFile *pageRemoteLatestFilename;
GUIWizardPageRemoteFileTest *pageRemoteLatestFilenameTest;
GUIWizardPageConfigRemoteFile *pageRemoteLatestSecondaryFilename;
GUIWizardPageRemoteFileTest *pageRemoteLatestSecondaryFilenameTest;
GUIWizardPageConfigRemoteWildcard *pageRemoteArchiveFilename;
GUIWizardPageRemoteFileTest *pageRemoteArchiveFilenameTest;
GUIWizardPageConfigLocalFile *pageLocalLatestFilename;
GUIWizardPageConfigLocalWildcard *pageLocalArchiveFilename;
GUIWizardPageConfigLocalFile *pageLocalLatestSecondaryFilename;
int logfileLimit;
};
class GUIWizardPagesMessaging : public GUIWizardPages
{
public:
GUIWizardPagesMessaging();
virtual ~GUIWizardPagesMessaging();
virtual void CreateWizardPages(StatsgenWizard *wizard);
void ResizePages();
void SetSectionTitle(const char *sectionTitle);
static void ConfigChangedCallBack(void *object);
void UpdateConfigKeys();
private:
GUIWizardPageConfigBoolean *pageMessagingEnabled;
GUIWizardPageConfigText *pageMessagingFrequency;
GUIWizardPageConfigText *pageMessagingPort;
};
class GUIWizardPagesServers : public GUIWizardPages
{
public:
GUIWizardPagesServers();
virtual ~GUIWizardPagesServers();
virtual void CreateWizardPages(StatsgenWizard *wizard);
void ResizePages();
static void DeleteEditNewCallBack(void *callingObject);
static void ServerSelectedCallBack(void *callingObject);
void SetServerChoices();
void SetDeleteEditNewChoices();
void SelectServer();
void SelectServer(wxString &prefix);
wxString GetDeleteEditNewChoice();
void PrepareServerConfig();
void SetLogfileLimit();
void SetLogfileLimit(int limit);
private:
GUIWizardPagesServer pageServer;
GUIWizardPageChoice *pageDeleteEditNew;
GUIWizardPageChoice *pageServerSelection;
int logfileLimit;
};
class GUIWizardPagesWebsite : public GUIWizardPages
{
public:
GUIWizardPagesWebsite();
virtual ~GUIWizardPagesWebsite();
virtual void CreateWizardPages(StatsgenWizard *wizard);
void ResizePages();
void UpdateConfigKeys();
void SetGroupPrefix();
static void ConfigChangedCallBack(void *callingObject);
void SetDirectory();
private:
GUIWizardPagesRemoteMachine remoteMachine;
GUIWizardPageConfigRemoteDirectory *pageRemoteDirectory;
GUIWizardPageRemoteDirectoryTest *pageRemoteDirectoryTest;
wxString groupPrefix;
};
class ImagePackPanel : wxPanel
{
public:
ImagePackPanel(wxWindow *parent,
wxString &fileDescriptionIn,
wxString &filePathIn,
wxString &serverTypeIn,
wxString &upgradeFileIn,
wxString &thumbnailIn);
virtual ~ImagePackPanel();
wxString GetServerType();
wxString GetDescription();
wxString GetFilePath();
wxString GetUpgradeFile();
void SelectForUpload();
bool Selected();
wxSize ResizeControl(int x,int y,int width,int height,bool resize);
private:
wxString fileDescription;
wxString filePath;
wxString serverType;
wxString thumbnail;
wxString upgradeFile;
wxCheckBox *checkCtrl;
wxStaticText *descriptionCtrl;
wxImage thumbnailImage;
ImagePanel *thumbnailPanel;
};
class GUIWizardPagesImagePacks : public GUIWizardPages
{
public:
GUIWizardPagesImagePacks();
virtual ~GUIWizardPagesImagePacks();
virtual void CreateWizardPages(StatsgenWizard *wizard);
void ResizePages();
private:
GUIWizardPageImagePacks *pageImagePacks;
};
class GUIWizardPagesFullConfig : public GUIWizardPages
{
public:
GUIWizardPagesFullConfig();
virtual ~GUIWizardPagesFullConfig();
virtual void CreateWizardPages(StatsgenWizard *wizard);
private:
GUIWizardPagesServers pageServers;
GUIWizardPagesWebsite pageWebsite;
};
class StatsgenWizard : public wxWizard
{
public:
StatsgenWizard(wxWindow *parent,
int id = -1,
wxString &title = wxEmptyString,
const wxBitmap &bitmap=wxNullBitmap,
const wxPoint &pos = wxDefaultPosition,
long style = wxDEFAULT_DIALOG_STYLE);
void OnWizardPageChanged(wxWizardEvent &event);
void OnWizardFinish(wxWizardEvent &event);
void OnWizardCancel(wxWizardEvent &event);
void ResizePages();
GUIPageLinks pageLinks;
void AddPageLink(GUIWizardPageStatsgen *page,
const char *allowRule,
const char *continueRule);
void UpdatePageLinks(bool fullList);
void PageContentsChanged();
void SetInitialPageLinks();
GUIWizardPageStatsgen *GetFirstPage();
private:
bool initialised;
DECLARE_EVENT_TABLE();
};
class GUIWizardPagesFirstConfig : public GUIWizardPages
{
public:
GUIWizardPagesFirstConfig();
virtual ~GUIWizardPagesFirstConfig();
virtual void CreateWizardPages(StatsgenWizard *wizard);
private:
GUIWizardPagesServers pageServers;
GUIWizardPagesWebsite pageWebsite;
GUIWizardPagesMessaging pageMessaging;
GUIWizardPagesImagePacks pageImagePacks;
GUIWizardPageRun *pageTestRun;
};
class GUIWizardPageTemplatePacks : public GUIWizardPageStatsgen
{
public:
GUIWizardPageTemplatePacks(StatsgenWizard *wizard,wxString parentPageID,wxString thisPageID);
virtual ~GUIWizardPageTemplatePacks();
virtual wxSize ResizeControl(int x,int y,int width,bool resize);
void OnButtonPressed(wxCommandEvent &event);
virtual wxString GetValue();
private:
wxScrolledWindow *imagesCtrl;
wxButton *testButton;
ProgressPanel *progressPanel;
StatsgenWeb statsgenSite;
private:
void CreateTemplatePackPanels();
void SelectTemplatePackPanel(wxString &serverType);
void SelectTemplatePackPanels();
void ResizeTemplatePackPanels();
private:
wxArrayString fileDescriptions;
wxArrayString filePaths;
wxArrayString secondFilePaths;
wxArrayString templateFilenames;
wxArrayString serverTypes;
wxArrayString upgradePaths;
wxArrayString thumbnails;
wxArrayPtrVoid templatePackPanels;
DECLARE_EVENT_TABLE();
};
class GUIWizardPagesTemplatePacks : public GUIWizardPages
{
public:
GUIWizardPagesTemplatePacks();
virtual ~GUIWizardPagesTemplatePacks();
virtual void CreateWizardPages(StatsgenWizard *wizard);
void ResizePages();
private:
GUIWizardPageTemplatePacks *pageTemplatePacks;
};
class TemplatePackPanel : wxPanel
{
public:
TemplatePackPanel(wxWindow *parent,
wxString &fileDescriptionIn,
wxString &filePathIn,
wxString &serverTypeIn,
wxString &secondPathIn,
wxString &upgradePathIn,
wxString &templateFilenameIn,
wxString &thumbnailIn);
virtual ~TemplatePackPanel();
wxString GetServerType();
wxString GetDescription();
wxString GetFilePath();
wxString GetUpgradePath();
wxString GetSecondFilePath();
wxString GetTemplateFilename();
void SelectForUpload();
bool Selected();
wxSize ResizeControl(int x,int y,int width,int height,bool resize);
private:
wxString fileDescription;
wxString filePath;
wxString upgradePath;
wxString secondFilePath;
wxString templateFilename;
wxString serverType;
wxString thumbnail;
wxCheckBox *checkCtrl;
wxStaticText *descriptionCtrl;
wxImage thumbnailImage;
ImagePanel *thumbnailPanel;
};
#endif