Settings.cs
Description du code
Settings.cs est un fichier du projet BrolDev.Ce fichier est situé dans /var/www/bin/sniplets/bibliobrol/broldev/src/.
Projet BrolDev : Librairie de composants réutilisables pour les applications BrolDev en CSharp.
Code source ou contenu du fichier
Code c# (Settings.cs) (191 lignes)
using System; using System.Windows.Forms; using System.Xml; using be.gaudry.observer; namespace be.gaudry.model.config { public class Settings { #region declarations and constructors private XmlDocument xmlDocument; private string documentPath; private bool hidden; /// <summary> /// Provides method to store settings in a hidden xml file in the application directory /// </summary> public Settings() : this(Application.StartupPath + "\\settings.xml",true) { } /// <summary> /// Provides method to store settings in a xml file /// </summary> /// <param name="documentPath">Path of the xml file</param> /// <param name="hidden">True if the file must be hidden</param> public Settings(string documentPath, bool hidden) { this.documentPath = documentPath; this.hidden = hidden; initDocument(); } #endregion #region initializations /// <summary> /// Loads document if file is found, or create a new xml document in memory. /// </summary> private void initDocument() { try { hide(false); xmlDocument.Load(documentPath); hide(true); } catch { xmlDocument.LoadXml("<settings></settings>"); } } #endregion #region public methods and properties public String SettingsPath { get { return documentPath; } set { documentPath = value; initDocument(); } } /// <summary> /// Saves all settings /// </summary> public void save() { try { hide(false); xmlDocument.Save(documentPath); hide(true); } catch (Exception e) { } } /// <summary> /// Modify the file attribute to hide the settings file /// </summary> private void hide(bool hide) { if (hidden && System.IO.File.Exists(documentPath)) { try { if (!hide)//((System.IO.File.GetAttributes(documentPath) & System.IO.FileAttributes.Hidden) == System.IO.FileAttributes.Hidden) { // Show the file. System.IO.File.SetAttributes(documentPath, System.IO.FileAttributes.Archive); } else { // Hide the file. System.IO.File.SetAttributes(documentPath, System.IO.File.GetAttributes(documentPath) | System.IO.FileAttributes.Hidden); } } catch { } } } #region int value //todo : use tryparse instead ? public int getSetting(string xPath, int defaultValue) { return Convert.ToInt16(getSetting(xPath, Convert.ToString(defaultValue))); } /// <summary> /// Sets an int value in the setting file. /// </summary> /// <param name="xPath">xml node path (slashes separated nodes)</param> /// <param name="value">value to set</param> /// <param name="save">true to save this value. Otherwise, you can set all values and call once the <code>save()</code> method.</param> public void putSetting(string xPath, int value, bool save) { putSetting(xPath, Convert.ToString(value), save); } #endregion #region bool value public bool getSetting(string xPath, bool defaultValue) { return "true".Equals(getSetting(xPath, (defaultValue) ? "true" : "false")); } /// <summary> /// Sets a bool value in the setting file. /// </summary> /// <param name="xPath">xml node path (slashes separated nodes)</param> /// <param name="value">value to set</param> /// <param name="save">true to save this value. Otherwise, you can set all values and call once the <code>save()</code> method.</param> public void putSetting(string xPath, bool value, bool save) { putSetting(xPath, (value) ? "true" : "false", save); } #endregion #region string value (default) public string getSetting(string xPath, string defaultValue) { XmlNode xmlNode = xmlDocument.SelectSingleNode("settings/" + xPath); if (xmlNode != null) { return xmlNode.InnerText; } else { return defaultValue; } } /// <summary> /// Sets a value in the setting file. /// </summary> /// <param name="xPath">xml node path (slashes separated nodes)</param> /// <param name="value">value to set</param> /// <param name="save">true to save this value. Otherwise, you can set all values and call once the <code>save()</code> method.</param> public void putSetting(string xPath, string value, bool save) { try { XmlNode xmlNode = xmlDocument.SelectSingleNode("settings/" + xPath); if (xmlNode == null) { xmlNode = createMissingNode("settings/" + xPath); } xmlNode.InnerText = value; if (save) { hide(false); xmlDocument.Save(documentPath); hide(true); } } catch (System.IO.DirectoryNotFoundException dnfe) { } } #endregion #endregion #region private methods private XmlNode createMissingNode(string xPath) { string[] xPathSections = xPath.Split('/'); string currentXPath = ""; XmlNode testNode = null; XmlNode currentNode = xmlDocument.SelectSingleNode("settings"); foreach (string xPathSection in xPathSections) { currentXPath += xPathSection; testNode = xmlDocument.SelectSingleNode(currentXPath); if (testNode == null) { currentNode.InnerXml += "<" + xPathSection + "></" + xPathSection + ">"; } currentNode = xmlDocument.SelectSingleNode(currentXPath); currentXPath += "/"; } return currentNode; } #endregion } }
Structure et Fichiers du projet
Afficher/masquer...Icône | Nom | Taille | Modification |
Pas de sous-répertoires. | |||
Icône | Nom | Taille | Modification |
| _ | Répertoire parent | 0 octets | 1732345480 23/11/2024 08:04:40 |
Utilisation de l'explorateur de code
- Navigation :
- Un clic sur une icône de répertoire ouvre ce répertoire pour en afficher les fichiers.
- Lorsque le répertoire en cours ne contient pas de sous-répertoires il est possible de remonter vers le répertoire parent.
- La structure de répertoires en treetable (tableau en forme d'arborescence) n'est plus possibledans cette version.
- Un clic sur une icône de fichier ouvre ce fichier pour en afficher le code avec la coloration syntaxique adaptée en fonction du langage principal utilisé dans le fichier.
- Affichage :
- Il est possible de trier les répertoires ou les fichiers selon certains critères (nom, taille, date).
- Actions :
- Les actions possible sur les fichiers dépendent de vos droits d'utilisateur sur le site. Veuillez activer le mode utilisateur pour activer les actions.
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 16/10/2009, zuletzt geändert 26/10/2018
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/cs-broldev-source-rf-model/config/Settings.cs.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.