public WatchVariableControl( WatchVariableControlPrecursor watchVarPrecursor, string name, WatchVariable watchVar, WatchVariableSubclass subclass, Color?backgroundColor, bool?useHex, bool?invertBool, WatchVariableCoordinate?coordinate, List <VariableGroup> groupList) { // Store the precursor _watchVarPrecursor = watchVarPrecursor; // Initialize main fields _varName = name; GroupList = groupList; _showBorder = false; _editMode = false; _renameMode = false; FixedAddressList = null; // Initialize color fields _baseColor = backgroundColor ?? DEFAULT_COLOR; _currentColor = _baseColor; _isFlashing = false; _flashStartTime = DateTime.Now; // Initialize size fields _variableNameWidth = VariableNameWidth; _variableValueWidth = VariableValueWidth; _variableHeight = VariableHeight; // Create controls InitializeBase(); _namePanel = CreateNamePanel(); _nameTextBox = CreateNameTextBox(); _lockPictureBox = CreateLockPictureBox(); _pinPictureBox = CreatePinPictureBox(); _valueTextBox = CreateValueTextBox(); _valueCheckBox = CreateValueCheckBox(); // Add controls to their containers base.Controls.Add(_valueTextBox, 1, 0); base.Controls.Add(_valueCheckBox, 1, 0); base.Controls.Add(_namePanel, 0, 0); _namePanel.Controls.Add(_pinPictureBox); _namePanel.Controls.Add(_lockPictureBox); _namePanel.Controls.Add(_nameTextBox); // Create var x _watchVarWrapper = WatchVariableWrapper.CreateWatchVariableWrapper( watchVar, this, subclass, useHex, invertBool, coordinate); // Initialize context menu strip _valueTextboxOriginalContextMenuStrip = _valueTextBox.ContextMenuStrip; _nameTextboxOriginalContextMenuStrip = _nameTextBox.ContextMenuStrip; ContextMenuStrip = _watchVarWrapper.GetContextMenuStrip(); _nameTextBox.ContextMenuStrip = ContextMenuStrip; _valueTextBox.ContextMenuStrip = ContextMenuStrip; // Set whether to start as a checkbox SetUseCheckbox(_watchVarWrapper.StartsAsCheckbox()); // Add functions _namePanel.Click += (sender, e) => OnNameTextBoxClick(); _nameTextBox.Click += (sender, e) => OnNameTextBoxClick(); _nameTextBox.Leave += (sender, e) => { RenameMode = false; }; _nameTextBox.KeyDown += (sender, e) => OnNameTextValueKeyDown(e); _valueTextBox.DoubleClick += (sender, e) => { EditMode = true; }; _valueTextBox.KeyDown += (sender, e) => OnValueTextValueKeyDown(e); _valueTextBox.Leave += (sender, e) => { EditMode = false; }; _valueCheckBox.Click += (sender, e) => OnCheckboxClick(); }
public WatchVariableControl( WatchVariableControlPrecursor watchVarPrecursor, string name, WatchVariable watchVar, WatchVariableSubclass subclass, Color?backgroundColor, Type displayType, int?roundingLimit, bool?useHex, bool?invertBool, bool?isYaw, Coordinate?coordinate, List <VariableGroup> groupList, List <uint> fixedAddresses) { // Initialize controls InitializeComponent(); _tableLayoutPanel.BorderColor = Color.Red; _tableLayoutPanel.BorderWidth = 3; _nameTextBox.Text = name; // Store the precursor WatchVarPrecursor = watchVarPrecursor; // Initialize main fields _varName = name; GroupList = groupList; _editMode = false; _renameMode = false; IsSelected = false; List <uint> copy1 = fixedAddresses == null ? null : new List <uint>(fixedAddresses); _defaultFixedAddressListGetter = () => copy1; List <uint> copy2 = fixedAddresses == null ? null : new List <uint>(fixedAddresses); FixedAddressListGetter = () => copy2; // Initialize color fields _initialBaseColor = backgroundColor ?? DEFAULT_COLOR; _baseColor = _initialBaseColor; _currentColor = _baseColor; _isFlashing = false; _flashStartTime = DateTime.Now; // Initialize flush/size fields _rightFlush = true; _variableNameWidth = 0; _variableValueWidth = 0; _variableHeight = 0; _variableTextSize = 0; _variableOffset = 0; // Create watch var wrapper WatchVarWrapper = WatchVariableWrapper.CreateWatchVariableWrapper( watchVar, this, subclass, displayType, roundingLimit, useHex, invertBool, isYaw, coordinate); // Set whether to start as a checkbox SetUseCheckbox(WatchVarWrapper.StartsAsCheckbox()); // Add functions _namePanel.Click += (sender, e) => OnVariableClick(); _namePanel.DoubleClick += (sender, e) => OnNameTextBoxDoubleClick(); _nameTextBox.Click += (sender, e) => OnVariableClick(); _nameTextBox.DoubleClick += (sender, e) => OnNameTextBoxDoubleClick(); _nameTextBox.Leave += (sender, e) => { RenameMode = false; }; _nameTextBox.KeyDown += (sender, e) => OnNameTextValueKeyDown(e); _valueTextBox.Click += (sender, e) => _watchVariablePanel.UnselectAllVariables(); _valueTextBox.DoubleClick += (sender, e) => { EditMode = true; }; _valueTextBox.KeyDown += (sender, e) => OnValueTextValueKeyDown(e); _valueTextBox.Leave += (sender, e) => { EditMode = false; }; _valueCheckBox.Click += (sender, e) => OnCheckboxClick(); MouseDown += ShowMainContextMenu; _valueTextBox.MouseDown += ShowMainContextMenu; _namePanel.MouseDown += ShowMainContextMenu; _valuePanel.MouseDown += ShowMainContextMenu; _nameTextBox.MouseDown += (sender, e) => { if (e.Button == MouseButtons.Right) { if (RenameMode) { ShowRenameContextMenu(); } else { ShowContextMenu(); } } }; _valueTextBox.ContextMenu = _nameTextBox.ContextMenu = DummyContextMenu; }