Esempio n. 1
0
        // constructor
        public SettingsHandler()
        {
            VH = new SettingsVisualHandler();
            AllSettingsPanels = VH.AllSettingPanels;

            /* Load all settings from database */
            // Paths Table
            Paths = Paths.GetPaths();
            // Global Settings Table
            GSettings = GlobalSettings.GetGlobals();
            // Config Table
            ConfigSettings = ConfigBaseSettings.GetConfig(2000000000);
            // Netplay Table
            NPSettings = ConfigNetplaySettings.GetNetplay();
            // Servers Table
            ServerSettings = ConfigServerSettings.GetServers();
        }
        public static void ButtonClick()
        {
            SettingsVisualHandler svh = new SettingsVisualHandler();

            svh.SetFilter();
        }
Esempio n. 3
0
 public void LoadAllSettings()
 {
     SettingsVisualHandler sv = new SettingsVisualHandler();
 }
Esempio n. 4
0
 // methods
 public void SaveAllSettings()
 {
     SettingsVisualHandler sv = new SettingsVisualHandler();
 }