Пример #1
0
        public ContextCustomization copy()
        {
            ContextCustomization copy = new ContextCustomization();

            copy.compareCursors    = this.compareCursors;
            copy.supportTitleBars  = this.supportTitleBars;
            copy.supportScrollBars = this.supportScrollBars;
            copy.supportTabs       = this.supportTabs;
            return(this);
        }
 public CustomizationParameters()
 {
     this.clickValues = new ClickCustomization();
     this.layoutValues = new LayoutCustomization();
     this.contextValues = new ContextCustomization();
 }
 public void merge(CustomizationParameters newCustomization)
 {
     this.clickValues = newCustomization.clickValues;
     this.layoutValues = newCustomization.layoutValues;
     this.contextValues = newCustomization.contextValues;
 }
Пример #4
0
 // Used by Customization UI to save new configurations while application is running
 public void merge(CustomizationParameters newCustomization)
 {
     this.clickValues   = newCustomization.clickValues;
     this.layoutValues  = newCustomization.layoutValues;
     this.contextValues = newCustomization.contextValues;
 }
Пример #5
0
 public CustomizationParameters()
 {
     this.clickValues   = new ClickCustomization();
     this.layoutValues  = new LayoutCustomization();
     this.contextValues = new ContextCustomization();
 }