Beispiel #1
0
 /// <summary>
 ///     Creates a new MobilesOptions object
 /// </summary>
 public MobilesOptions()
 {
     NameMount   = false;
     Extra       = 0;
     Team        = 0;
     ArtIndex    = 0;
     RecentNames = new RecentStringList();
 }
Beispiel #2
0
 /// <summary>
 ///     Creates a new AdminOptions object
 /// </summary>
 public AdminOptions()
 {
     ConsoleHidden = false;
     ConsoleTitle  = null;
     Console       = 0;
     ServerExe     = null;
     FindByName    = new RecentStringList();
     Args          = new RecentStringList();
 }
Beispiel #3
0
 /// <summary>
 ///     Creates a new ItemsOptions object
 /// </summary>
 public ItemsOptions()
 {
     UseCustomParams = false;
     UseOptions      = false;
     Splitter        = 0;
     ArtHue          = 0;
     ArtIndex        = 0;
     Extra           = 0;
     Team            = 0;
     CustomParams    = new RecentStringList();
 }
Beispiel #4
0
        public PropsOptions()
        {
            m_RecentProps   = new RecentStringList();
            m_RecentValues  = new RecentStringList();
            m_RecentTypes   = new RecentStringList();
            m_RecentClasses = new RecentStringList();
            m_FBTypes       = new RecentStringList();
            m_FBProps       = new RecentStringList();
            m_FBValues      = new RecentStringList();

            m_Filters = new StringCollection();
        }
Beispiel #5
0
        public PropsOptions()
        {
            ShowAllProps  = false;
            ShowAllTypes  = false;
            UseType       = false;
            RecentProps   = new RecentStringList();
            RecentValues  = new RecentStringList();
            RecentTypes   = new RecentStringList();
            RecentClasses = new RecentStringList();
            FBTypes       = new RecentStringList();
            FBProps       = new RecentStringList();
            FBValues      = new RecentStringList();

            Filters = new StringCollection();
        }
Beispiel #6
0
        public GeneralOptions()
        {
            m_ArtBackground       = new ColorDef();
            m_ArtBackground.Color = System.Drawing.Color.White;

            m_Links       = new ColorDef();
            m_Links.Color = System.Drawing.Color.BlueViolet;

            m_WindowLocation.X = (System.Windows.Forms.SystemInformation.PrimaryMonitorSize.Width - 694) / 2;
            m_WindowLocation.Y = (System.Windows.Forms.SystemInformation.PrimaryMonitorSize.Height - 210) / 2;

            m_SpeechList = new RecentStringList();
            m_WebList    = new RecentStringList();
            // Issue 10 - Update the code to Net Framework 3.5 - http://code.google.com/p/pandorasbox3/issues/detail?id=10 - Smjert
            m_SpeechPresets = new List <string>();
            m_WebPresets    = new List <string>();
            // Issue 10 - End
        }
Beispiel #7
0
 /// <summary>
 /// Creates a new AdminOptions object
 /// </summary>
 public AdminOptions()
 {
     m_FindByName = new RecentStringList();
     m_Args       = new RecentStringList();
 }
Beispiel #8
0
 /// <summary>
 /// Creates a new ItemsOptions object
 /// </summary>
 public ItemsOptions()
 {
     m_CustomParams = new RecentStringList();
 }