Annotation of sbbs/src/sbbs3/ctrl/webcfgdlgunit.h, revision 1.1.1.1

1.1       root        1: /* $Id: WebCfgDlgUnit.h,v 1.3 2005/04/26 08:49:35 rswindell Exp $ */
                      2: 
                      3: /****************************************************************************
                      4:  * @format.tab-size 4          (Plain Text/Source Code File Header)                    *
                      5:  * @format.use-tabs true       (see http://www.synchro.net/ptsc_hdr.html)              *
                      6:  *                                                                                                                                                     *
                      7:  * Copyright 2005 Rob Swindell - http://www.synchro.net/copyright.html         *
                      8:  *                                                                                                                                                     *
                      9:  * This program is free software; you can redistribute it and/or                       *
                     10:  * modify it under the terms of the GNU General Public License                         *
                     11:  * as published by the Free Software Foundation; either version 2                      *
                     12:  * of the License, or (at your option) any later version.                                      *
                     13:  * See the GNU General Public License for more details: gpl.txt or                     *
                     14:  * http://www.fsf.org/copyleft/gpl.html                                                                                *
                     15:  *                                                                                                                                                     *
                     16:  * Anonymous FTP access to the most recent released source is available at     *
                     17:  * ftp://vert.synchro.net, ftp://cvs.synchro.net and ftp://ftp.synchro.net     *
                     18:  *                                                                                                                                                     *
                     19:  * Anonymous CVS access to the development source and modification history     *
                     20:  * is available at cvs.synchro.net:/cvsroot/sbbs, example:                                     *
                     21:  * cvs -d :pserver:[email protected]:/cvsroot/sbbs login                       *
                     22:  *     (just hit return, no password is necessary)                                                     *
                     23:  * cvs -d :pserver:[email protected]:/cvsroot/sbbs checkout src                *
                     24:  *                                                                                                                                                     *
                     25:  * For Synchronet coding style and modification guidelines, see                                *
                     26:  * http://www.synchro.net/source.html                                                                          *
                     27:  *                                                                                                                                                     *
                     28:  * You are encouraged to submit any modifications (preferably in Unix diff     *
                     29:  * format) via e-mail to [email protected]                                                                      *
                     30:  *                                                                                                                                                     *
                     31:  * Note: If this box doesn't appear square, then you need to fix your tabs.    *
                     32:  ****************************************************************************/
                     33: 
                     34: //---------------------------------------------------------------------------
                     35: 
                     36: #ifndef WebCfgDlgUnitH
                     37: #define WebCfgDlgUnitH
                     38: //---------------------------------------------------------------------------
                     39: #include <Classes.hpp>
                     40: #include <Controls.hpp>
                     41: #include <StdCtrls.hpp>
                     42: #include <Forms.hpp>
                     43: #include <ComCtrls.hpp>
                     44: #include <Dialogs.hpp>
                     45: //---------------------------------------------------------------------------
                     46: class TWebCfgDlg : public TForm
                     47: {
                     48: __published:   // IDE-managed Components
                     49:     TPageControl *PageControl;
                     50:     TTabSheet *GeneralTabSheet;
                     51:     TLabel *MaxClientesLabel;
                     52:     TLabel *MaxInactivityLabel;
                     53:     TLabel *PortLabel;
                     54:     TLabel *InterfaceLabel;
                     55:     TCheckBox *AutoStartCheckBox;
                     56:     TEdit *MaxClientsEdit;
                     57:     TEdit *MaxInactivityEdit;
                     58:     TEdit *PortEdit;
                     59:     TEdit *NetworkInterfaceEdit;
                     60:     TCheckBox *HostnameCheckBox;
                     61:     TTabSheet *HttpTabSheet;
                     62:     TLabel *HtmlDirLabel;
                     63:     TEdit *HtmlRootEdit;
                     64:     TEdit *ErrorSubDirEdit;
                     65:     TEdit *ServerSideJsExtEdit;
                     66:     TTabSheet *LogTabSheet;
                     67:     TCheckBox *DebugTxCheckBox;
                     68:     TCheckBox *DebugRxCheckBox;
                     69:     TCheckBox *AccessLogCheckBox;
                     70:     TTabSheet *SoundTabSheet;
                     71:     TLabel *AnswerSoundLabel;
                     72:     TLabel *HangupSoundLabel;
                     73:     TLabel *HackAttemptSoundLabel;
                     74:     TEdit *AnswerSoundEdit;
                     75:     TButton *AnswerSoundButton;
                     76:     TEdit *HangupSoundEdit;
                     77:     TButton *HangupSoundButton;
                     78:     TEdit *HackAttemptSoundEdit;
                     79:     TButton *HackAttemptSoundButton;
                     80:     TButton *OKBtn;
                     81:     TButton *CancelBtn;
                     82:     TButton *ApplyBtn;
                     83:     TLabel *ErrorSubDirLabel;
                     84:     TLabel *ServerSideJsExtLabel;
                     85:     TLabel *EmbeddedJsExtLabel;
                     86:     TEdit *EmbeddedJsExtEdit;
                     87:     TCheckBox *VirtualHostsCheckBox;
                     88:     TEdit *LogBaseNameEdit;
                     89:     TLabel *LogBaseLabel;
                     90:     TOpenDialog *OpenDialog;
                     91:     TLabel *IndexLabel;
                     92:     TEdit *IndexFileEdit;
                     93:     TTabSheet *CGITabSheet;
                     94:     TLabel *CGIDirLabel;
                     95:     TEdit *CGIDirEdit;
                     96:     TCheckBox *CGICheckBox;
                     97:     TLabel *CGIExtLabel;
                     98:     TEdit *CGIExtEdit;
                     99:     TLabel *CGIMaxInactivityLabel;
                    100:     TEdit *CGIMaxInactivityEdit;
                    101:     TLabel *CGIContentLabel;
                    102:     TEdit *CGIContentEdit;
                    103:     TButton *CGIEnvButton;
                    104:     TButton *WebHandlersButton;
                    105:     void __fastcall FormShow(TObject *Sender);
                    106:     void __fastcall AnswerSoundButtonClick(TObject *Sender);
                    107:     void __fastcall HangupSoundButtonClick(TObject *Sender);
                    108:     void __fastcall HackAttemptSoundButtonClick(TObject *Sender);
                    109:     void __fastcall OKBtnClick(TObject *Sender);
                    110:     void __fastcall AccessLogCheckBoxClick(TObject *Sender);
                    111:     void __fastcall CGIEnvButtonClick(TObject *Sender);
                    112:     void __fastcall WebHandlersButtonClick(TObject *Sender);
                    113:     void __fastcall CGICheckBoxClick(TObject *Sender);
                    114: private:       // User declarations
                    115: public:                // User declarations
                    116:     __fastcall TWebCfgDlg(TComponent* Owner);
                    117: };
                    118: //---------------------------------------------------------------------------
                    119: extern PACKAGE TWebCfgDlg *WebCfgDlg;
                    120: //---------------------------------------------------------------------------
                    121: #endif

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.