Esempio n. 1
0
        protected void SetReactions(SimpleReaction curReaction, SimpleReaction newReaction, bool bSeq, bool bExtentAndHOR)
        {
            ChangeGeneric(false);
            Font BoldFont = new Font(txtCurReactants.Font, FontStyle.Bold);

            bool HOR = bExtentAndHOR && (curReaction.CustomHeatOfReaction || newReaction.CustomHeatOfReaction);

            //Current Reaction:
            txtCurReactants.Text = curReaction.GetReactantsString();
            txtCurDirection.Text = curReaction.DirectionString;
            txtCurProducts.Text = curReaction.GetProductsString();
            txtCurExtent.Text = curReaction.ExtentInfo.ToString();
            if (curReaction.CustomHeatOfReaction)
                txtCurHOR.Text = curReaction.HeatOfReactionString;
            else
                txtCurHOR.Text = "HeatOfReaction: Default";

            if (bSeq)
                txtCurSeq.Text = "Sequence: " + curReaction.Sequence;
            
            //New Reaction:
            txtNewReactants.Text = newReaction.GetReactantsString();
            txtNewDirection.Text = newReaction.DirectionString;
            txtNewProducts.Text = newReaction.GetProductsString();
            txtNewExtent.Text = newReaction.ExtentInfo.ToString();
            if (newReaction.CustomHeatOfReaction)
                txtNewHOR.Text = newReaction.HeatOfReactionString;
            else
                txtNewHOR.Text = "HeatOfReaction: Default";
            if (bSeq)
                txtNewSeq.Text = "Sequence: " + newReaction.Sequence;

            //Customise the layout:
            txtCurHOR.Visible = txtNewHOR.Visible = HOR;
            txtCurSeq.Visible = txtNewSeq.Visible = bSeq;
            txtCurExtent.Visible = txtNewExtent.Visible = bExtentAndHOR;

            txtCurSeq.Top = txtNewSeq.Top = HOR ? sSeqLowTop : txtCurHOR.Top;

            grpCurrentReaction.Height = grpNewReaction.Height = sMaxGrpHeight - ((HOR ? 0 : 1) + (bSeq ? 0 : 1) + (bExtentAndHOR ? 0 : 1)) * sHeightPerBox;
            grpNewReaction.Top = grpCurrentReaction.Bottom + sPadding;
            this.MaximumSize = this.MinimumSize = new Size(this.Width, sMaxFrmHeight - 2 * ((HOR ? 0 : 1) + (bSeq ? 0 : 1) + (bExtentAndHOR ? 0 : 1)) * sHeightPerBox);
            this.Height = sMaxFrmHeight - 2 * ((HOR ? 0 : 1) + (bSeq ? 0 : 1) + (bExtentAndHOR ? 0 : 1)) * sHeightPerBox;
            
            //Width:
            Graphics gfx = txtCurReactants.CreateGraphics();
            float w1 = gfx.MeasureString(txtCurReactants.Text, BoldFont).Width;
            float w2 = gfx.MeasureString(txtCurProducts.Text, BoldFont).Width;
            float w3 = gfx.MeasureString(txtNewReactants.Text, BoldFont).Width;
            float w4 = gfx.MeasureString(txtNewProducts.Text, BoldFont).Width;

            int MaxW = (int)Math.Max(w1, Math.Max(w2, Math.Max(w3, w4)));
            if (MaxW > sMaxWidth) MaxW = sMaxWidth;
            if (MaxW < sMinWidth) MaxW = sMinWidth;
            txtCurProducts.Width = txtCurReactants.Width = txtNewProducts.Width = txtNewReactants.Width = MaxW;
            txtCurDirection.Left = txtNewDirection.Left = txtCurReactants.Right + sPadding;
            txtCurProducts.Left = txtNewProducts.Left = txtCurDirection.Right + sPadding;
            grpCurrentReaction.Width = grpNewReaction.Width = 2 * MaxW + txtCurDirection.Width + 4 * sPadding;
            this.MinimumSize = this.MaximumSize = new Size(grpCurrentReaction.Width + sExtraFrmPadding, this.Height);
            this.Width = grpCurrentReaction.Width + sExtraFrmPadding;

            //Format text boxes:
            //Alignment:
            txtCurReactants.SelectAll(); txtNewReactants.SelectAll();
            txtCurDirection.SelectAll(); txtNewDirection.SelectAll();
            txtCurProducts.SelectAll(); txtNewProducts.SelectAll();
            txtCurReactants.SelectionAlignment = txtNewReactants.SelectionAlignment = 
                txtCurProducts.SelectionAlignment = txtNewProducts.SelectionAlignment =
                txtCurDirection.SelectionAlignment = txtNewDirection.SelectionAlignment =
                HorizontalAlignment.Center;

            #region Bold changes in reactants / products / direction:
            if (!curReaction.ReactantsOk || !curReaction.ProductsOk)
            {
                //Do a straight string comparison:
                if (txtCurReactants.Text != txtNewReactants.Text)
                {
                    HighlightText(txtCurReactants);
                    HighlightText(txtNewReactants);
                }
            }
            else
            {
                //Compare each coefficient:
                foreach (Compound c in curReaction.OrderedReactants)
                    if (!newReaction.OrderedReactants.Contains(c))
                    {
                        txtCurReactants.Select(curReaction.ReactantIndex(c), curReaction.Reactants[c].ToString().Length + c.ToString().Length + 1);
                        HighlightText(txtCurReactants);
                    }
                    else if (newReaction.Reactants[c] != curReaction.Reactants[c])
                    {
                        txtCurReactants.Select(curReaction.ReactantIndex(c), curReaction.Reactants[c].ToString().Length);
                        txtNewReactants.Select(newReaction.ReactantIndex(c), newReaction.Reactants[c].ToString().Length);
                        HighlightText(txtCurReactants);
                        HighlightText(txtNewReactants);
                    }
                foreach (Compound c in newReaction.OrderedReactants)
                    if (!curReaction.OrderedReactants.Contains(c))
                    {
                        txtNewReactants.Select(newReaction.ReactantIndex(c), newReaction.Reactants[c].ToString().Length + c.ToString().Length + 1);
                        HighlightText(txtNewReactants);
                    }
            }

            //Bold changes in products:
            if (!curReaction.ProductsOk || !curReaction.ProductsOk)
            {
                //Do a straight string comparison:
                if (txtCurProducts.Text != txtNewProducts.Text)
                {
                    HighlightText(txtCurProducts);
                    HighlightText(txtNewProducts);
                }
            }
            else
            {
                //Compare each coefficient:
                foreach (Compound c in curReaction.OrderedProducts)
                    if (!newReaction.OrderedProducts.Contains(c))
                    {
                        txtCurProducts.Select(curReaction.ProductIndex(c), curReaction.Products[c].ToString().Length + c.ToString().Length + 1);
                        HighlightText(txtCurProducts);
                    }
                    else if (newReaction.Products[c] != curReaction.Products[c])
                    {
                        txtCurProducts.Select(curReaction.ProductIndex(c), curReaction.Products[c].ToString().Length);
                        txtNewProducts.Select(newReaction.ProductIndex(c), newReaction.Products[c].ToString().Length);
                        HighlightText(txtCurProducts);
                        HighlightText(txtNewProducts);
                    }
                foreach (Compound c in newReaction.OrderedProducts)
                    if (!curReaction.OrderedProducts.Contains(c))
                    {
                        txtNewProducts.Select(newReaction.ProductIndex(c), newReaction.Products[c].ToString().Length + c.ToString().Length + 1);
                        HighlightText(txtNewProducts);
                    }
            }

            //Direction
            if (txtCurDirection.Text != txtNewDirection.Text)
            {
                HighlightText(txtCurDirection); HighlightText(txtNewDirection);
            }
            #endregion Formula

            #region Extent
            if (curReaction.ExtentType != newReaction.ExtentType)
            {
                txtCurExtent.SelectAll(); txtNewExtent.SelectAll();
                HighlightText(txtCurExtent);
                HighlightText(txtNewExtent);
            }
            else if (txtCurExtent.Text != txtNewExtent.Text)
            {
                //We only want to bold the stuff after "Extent: [Type]"
                txtCurExtent.Select(curReaction.ExtentInfo.StartString.Length, txtCurExtent.Text.Length - curReaction.ExtentInfo.StartString.Length);
                txtNewExtent.Select(newReaction.ExtentInfo.StartString.Length, txtNewExtent.Text.Length - newReaction.ExtentInfo.StartString.Length);
                HighlightText(txtCurExtent);
                HighlightText(txtNewExtent);
            }
            #endregion Extent

            #region HOR
            if (curReaction.CustomHeatOfReaction != newReaction.CustomHeatOfReaction)
            {
                txtCurHOR.SelectAll(); txtNewHOR.SelectAll();
                HighlightText(txtCurHOR);
                HighlightText(txtNewHOR);
            }
            else if (HOR)
            {
                Match curMatch = SimpleReaction.s_HORRegex.Match(curReaction.HeatOfReactionString);
                Match newMatch = SimpleReaction.s_HORRegex.Match(newReaction.HeatOfReactionString);
                foreach (string s in SimpleReaction.s_HORRegex.GetGroupNames())
                {
                    if (curMatch.Groups[s].Value != newMatch.Groups[s].Value)
                    {
                        if (curMatch.Groups[s].Success)
                        {
                            txtCurHOR.Select(curMatch.Groups[s].Index, curMatch.Groups[s].Length);
                            HighlightText(txtCurHOR);
                        }
                        if (newMatch.Groups[s].Success)
                        {
                            txtNewHOR.Select(newMatch.Groups[s].Index, newMatch.Groups[s].Length);
                            HighlightText(txtNewHOR);
                        }
                    }
                }
                #region Old way of going about it
                /*if (curReaction.HeatOfReactionType != newReaction.HeatOfReactionType) //Type
                {
                    txtCurHOR.Select(curMatch.Groups["Type"].Index, curMatch.Groups["Type"].Length);
                    txtNewHOR.Select(newMatch.Groups["Type"].Index, newMatch.Groups["Type"].Length);
                    txtCurHOR.SelectionFont = txtNewHOR.SelectionFont = BoldFont;
                }
                if (curReaction.HeatOfReactionValue != newReaction.HeatOfReactionValue) //Value
                {
                    txtCurHOR.Select(curMatch.Groups["Value"].Index, curMatch.Groups["Value"].Length);
                    txtNewHOR.Select(newMatch.Groups["Value"].Index, newMatch.Groups["Value"].Length);
                    txtCurHOR.SelectionFont = txtNewHOR.SelectionFont = BoldFont;
                }
                if (curReaction.HeatOfReactionSpecie != newReaction.HeatOfReactionSpecie) //Specie
                {
                    txtCurHOR.Select(curMatch.Groups["Specie"].Index, curMatch.Groups["Specie"].Length);
                    txtNewHOR.Select(newMatch.Groups["Specie"].Index, newMatch.Groups["Specie"].Length);
                    txtCurHOR.SelectionFont = txtNewHOR.SelectionFont = BoldFont;
                }
                if (curReaction.HeatOfReactionConditions != newReaction.HeatOfReactionConditions) //Conditions
                {
                    txtCurHOR.Select(curMatch.Groups["Cond"].Index, curMatch.Groups["Cond"].Length);
                    txtNewHOR.Select(newMatch.Groups["Cond"].Index, newMatch.Groups["Cond"].Length);
                    txtCurHOR.SelectionFont = txtNewHOR.SelectionFont = BoldFont;
                }
                else if (curReaction.HeatOfReactionConditions == TPConditions.Custom)
                {
                    if (curReaction.HeatOfReactionT != newReaction.HeatOfReactionT)
                    {
                        txtCurHOR.Select(curMatch.Groups["T"].Index, curMatch.Groups["T"].Length);
                        txtNewHOR.Select(newMatch.Groups["T"].Index, newMatch.Groups["T"].Length);
                        txtCurHOR.SelectionFont = txtNewHOR.SelectionFont = BoldFont;
                    }
                    if (curReaction.HeatOfReactionP != newReaction.HeatOfReactionP)
                    {
                        txtCurHOR.Select(curMatch.Groups["P"].Index, curMatch.Groups["P"].Length);
                        txtNewHOR.Select(newMatch.Groups["P"].Index, newMatch.Groups["P"].Length);
                        txtCurHOR.SelectionFont = txtNewHOR.SelectionFont = BoldFont;
                    }
                }*/
                #endregion
            }
            #endregion HOR

            #region Seq
            if (bSeq && curReaction.Sequence != newReaction.Sequence)
            {
                txtCurSeq.SelectAll(); txtNewSeq.SelectAll();
                HighlightText(txtCurSeq);
                HighlightText(txtNewSeq);
            }
            #endregion Seq
        }
Esempio n. 2
0
    protected void LoadReaction(SimpleReaction rxn)
    {
      m_bLoading = true;
      if (m_CurrentReaction != null)
      {
        m_CurrentReaction.Changed -= new EventHandler(currentReactionChanged);
        m_CurrentReaction.ReactantsChanged -= new EventHandler(rxn_ReactantsChanged);
        m_CurrentReaction.ProductsChanged -= new EventHandler(rxn_ReactantsChanged);
      }
      m_CurrentReaction = rxn;
      txtReactants.Visible = txtProducts.Visible = comboDirection.Visible = true;
      txtFormula.Visible = false;
      if (SelectedReactionChanged != null)
        SelectedReactionChanged(this, new EventArgs());
      if (rxn == null)
      {
        SetPanelEnables(pnlReaction, false);
        //pnlReaction.Enabled = false;
        txtReactants.Text = txtProducts.Text = "";
        comboDirection.SelectedIndex = -1;
        comboExtentType.SelectedIndex = -1;
        comboExtentSpecie.SelectedIndex = -1;
        comboHORSpecie.SelectedIndex = -1;
        chkHOROverride.Checked = false;
        numSequence.Text = "";
        chkEnabled.Checked = false;
        m_bLoading = false;
        return;
      }
      rxn.Changed += new EventHandler(currentReactionChanged);
      rxn.ReactantsChanged += new EventHandler(rxn_ReactantsChanged);
      rxn.ProductsChanged += new EventHandler(rxn_ReactantsChanged);
      btnCopy.Enabled = btnMoveDown.Enabled = btnMoveUp.Enabled = btnRemove.Enabled = true;
      if (rxn.UseOriginalString)
      {
        txtReactants.Visible = txtProducts.Visible = comboDirection.Visible = false;
        txtFormula.Visible = true;
        txtFormula.Text = rxn.ToString();
      }
      /*if (string.IsNullOrEmpty(rxn.GetProductsString()))
          SetWaitingText(txtProducts, "Products");
      else
      {
          txtProducts.Text = rxn.GetProductsString();
          txtProducts.TextAlign = HorizontalAlignment.Left;
          txtProducts.ForeColor = System.Drawing.SystemColors.WindowText;
          txtProducts.Tag = true;
      }
      if (string.IsNullOrEmpty(rxn.GetReactantsString()))
          SetWaitingText(txtReactants, "Reactants");
      else
      {
          txtReactants.TextAlign = HorizontalAlignment.Right;
          txtReactants.Text = rxn.GetReactantsString();
          txtReactants.ForeColor = System.Drawing.SystemColors.WindowText;
          txtReactants.Tag = true;
      }*/

      SetPanelEnables(pnlReaction, true);

      comboExtentSpecie.Enabled = !chkFirstReactant.Checked;
      numSequence.Enabled = chkSequence.Checked;
      SetHOREnabled(rxn.CustomHeatOfReaction);

      txtReactants.Text = rxn.GetReactantsString();
      txtProducts.Text = rxn.GetProductsString();

      RepopulateSpecies(false);

      comboDirection.SelectedIndex = (int)rxn.Direction;

      comboExtentType.SelectedIndex = (int)rxn.ExtentType;
      chkHOROverride.Checked = rxn.CustomHeatOfReaction;

      numExtentValue.Text = rxn.ExtentInfo.Value.ToString();
      chkEnabled.Checked = rxn.Enabled;
      txtComment.Text = rxn.Comment;

      if (chkSequence.Checked)
      {
        numSequence.Value = Math.Min(Math.Max(rxn.Sequence, 1), sMaxSequences);
        numSequence.Text = numSequence.Value.ToString();
      }
      //pnlReaction.Enabled = true;

      m_bLoading = false;
      btnBalance.Enabled = rxn.CanBalance;
    }