Example #1
0
        public ConfigurationsTab(XcodeEditorWindow parent, Styling style)
        {
            if (parent == null)
            {
                throw new System.ArgumentNullException(nameof(parent), "parent cannot be null");
            }

            _parent = parent;
            _style  = style;
            _platformConfiguration = XcodeController.Instance().Configuration(_parent.Platform);
        }
Example #2
0
        protected BaseChangeFileDrawer(XcodeEditorWindow parent, Styling style)
        {
            if (parent == null)
            {
                throw new System.ArgumentNullException((parent).ToString(), "Parent cannot be null");
            }

            Parent = parent;
            Style  = style;

            foreach (Sections e in System.Enum.GetValues(typeof(Sections)))
            {
                _foldoutStates[e] = true;
            }

            MaxFolderSectionWidth = DEFAULT_FOLDER_NAME_WIDTH;
        }
Example #3
0
 public PreviewTab(XcodeEditorWindow parent, Styling style)
     : base(parent, style)
 {
     _plistDrawer = new PListElementDrawer(style);
 }