Skip to content
Snippets Groups Projects
Select Git revision
  • dailybuild_linux-x64
  • dailybuild_win32
  • master default protected
  • sqlite
  • rip_abstraction
  • dailybuild_macos-armv8
  • dd_file_lister_filanem_in_desc_color
  • mode7
  • dd_msg_reader_are_you_there_warning_improvement
  • c23-playing
  • syncterm-1.3
  • syncterm-1.2
  • test-build
  • hide_remote_connection_with_telgate
  • 638-can-t-control-c-during-a-file-search
  • add_body_to_pager_email
  • mingw32-build
  • cryptlib-3.4.7
  • ree/mastermind
  • new_user_dat
  • sbbs320d
  • syncterm-1.6
  • syncterm-1.5
  • syncterm-1.4
  • sbbs320b
  • syncterm-1.3
  • syncterm-1.2
  • syncterm-1.2rc6
  • syncterm-1.2rc5
  • push
  • syncterm-1.2rc4
  • syncterm-1.2rc2
  • syncterm-1.2rc1
  • sbbs319b
  • sbbs318b
  • goodbuild_linux-x64_Sep-01-2020
  • goodbuild_win32_Sep-01-2020
  • goodbuild_linux-x64_Aug-31-2020
  • goodbuild_win32_Aug-31-2020
  • goodbuild_win32_Aug-30-2020
40 results

ConfigWizardUnit.h

Blame
  • ConfigWizardUnit.h 3.39 KiB
    //---------------------------------------------------------------------------
    
    #ifndef MainUnitH
    #define MainUnitH
    //---------------------------------------------------------------------------
    #include <Classes.hpp>
    #include <Controls.hpp>
    #include <StdCtrls.hpp>
    #include <Forms.hpp>
    #include <ComCtrls.hpp>
    #include <ExtCtrls.hpp>
    #include <jpeg.hpp>
    #include "sbbs.h"
    //---------------------------------------------------------------------------
    class TConfigWizard : public TForm
    {
    __published:	// IDE-managed Components
        TShape *Shape1;
        TButton *BackButton;
        TButton *NextButton;
        TButton *CancelButton;
        TNotebook *WizNotebook;
        TMemo *IntroMemo;
        TLabel *TitleLabel;
        TLabel *IntroductionLabel;
        TLabel *IdentificationLabel;
        TLabel *QWKLabel;
        TLabel *InternetLabel;
        TLabel *MaximumsLabel;
        TLabel *OptionsLabel;
        TLabel *Label1;
        TEdit *SysopNameEdit;
        TEdit *SystemNameEdit;
        TLabel *SystemNameLabel;
        TLabel *Label2;
        TEdit *SystemLocationEdit;
        TLabel *Label3;
        TEdit *SystemPasswordEdit;
        TLabel *Label4;
        TLabel *Label6;
        TEdit *NodesEdit;
        TUpDown *NodesUpDown;
        TLabel *Label7;
        TEdit *MaxFtpEdit;
        TUpDown *MaxFtpUpDown;
        TLabel *Label8;
        TEdit *MaxMailEdit;
        TUpDown *MaxMailUpDown;
        TLabel *Label9;
        TEdit *QWKIDEdit;
        TLabel *Label10;
        TEdit *QNetTaglineEdit;
        TProgressBar *ProgressBar;
        TLabel *VerifyLabel;
        TImage *LogoImage;
        TMemo *CompleteMemo;
        TEdit *SysPassVerifyEdit;
        TLabel *CompleteLabel;
        TMemo *SysPassVerificationMemo;
        TLabel *Label11;
        TMemo *Memo1;
        TLabel *IllegalCharsLabel;
        TLabel *TimeLabel;
        TGroupBox *GroupBox1;
        TRadioButton *Time12hrRadioButton;
        TRadioButton *Time24hrRadioButton;
        TGroupBox *GroupBox2;
        TRadioButton *DateUsRadioButton;
        TRadioButton *DateEuRadioButton;
        TGroupBox *GroupBox3;
        TComboBox *TimeZoneComboBox;
        TCheckBox *DaylightCheckBox;
        TComboBox *InternetAddressComboBox;
        TCheckBox *AllNodesTelnetCheckBox;
        TLabel *Label12;
        TLabel *Label13;
        TGroupBox *GroupBox4;
        TGroupBox *GroupBox5;
        TRadioButton *DeletedEmailYesButton;
        TRadioButton *DeletedEmailNoButton;
        TCheckBox *FeedbackCheckBox;
        TCheckBox *NewUsersCheckBox;
        TRadioButton *DeletedEmailSysopButton;
        TCheckBox *AliasesCheckBox;
        TLabel *Label15;
        TEdit *MaxWebEdit;
        TUpDown *MaxWebUpDown;
        void __fastcall NextButtonClick(TObject *Sender);
        void __fastcall CancelButtonClick(TObject *Sender);
        void __fastcall BackButtonClick(TObject *Sender);
        void __fastcall FormShow(TObject *Sender);
        void __fastcall LogoImageClick(TObject *Sender);
        void __fastcall TitleLabelClick(TObject *Sender);
        void __fastcall WizNotebookPageChanged(TObject *Sender);
        void __fastcall VerifyIdentification(TObject *Sender);
        void __fastcall VerifyPassword(TObject *Sender);
        void __fastcall VerifyQWK(TObject *Sender);
        void __fastcall QNetTaglineEditKeyPress(TObject *Sender, char &Key);
        void __fastcall VerifyInternetAddresses(TObject *Sender);
        void __fastcall TimeZoneComboBoxChange(TObject *Sender);
        void __fastcall NewUsersCheckBoxClick(TObject *Sender);
    private:	// User declarations
        scfg_t  scfg;
    	AnsiString SysPass;
    public:		// User declarations
        __fastcall TConfigWizard(TComponent* Owner);
    };
    //---------------------------------------------------------------------------
    #endif