예제 #1
0
        public void draw(DrawContext con)
        {
            float breite = con.getBreite();

            #region höhen und tabs punktieren
            for (int i = 0; i < hohh.Length; i++)
            {
                hohh[i] += con.y;
            }
            for (int i = 0; i < tabb.Length; i++)
            {
                tabb[i] += con.x;
            }
            #endregion
            DrawContext con2 = con.createChild(tabb, hohh, con.x, con.y, con.zeit);//con.rahmenArt, con.variante,
            #region DEBUG
            #if DEBUG_CSTRING
            {
                for (int i = 0; i < hohh.Length; i++)
                {
                    con.DrawLine(Pens.Red, con.x, hohh[i], con.x + breite, hohh[i]);
                }
                for (int i = 0; i < tabb.Length; i++)
                {
                    con.DrawLine(Pens.Red, tabb[i], hohh.First(), tabb[i], hohh.Last());
                }
            }
            #endif
            #endregion
            {
                float niveau = 0;
                IEnumerator<IDrawable> en = list.GetEnumerator();
                while (en.MoveNext())
                {
                    if (en.Current.getBenutzteBreite(con2.getBreite()) + con2.x > tabb[con2.i + 1 + en.Current.getTabs()] + 1)
                    {
                        con2.y += niveau;
                        niveau = 0;// Diese zeile fehlte! (Bug entdeckt: 06.06.2014)
                        con2.x = tabb[con2.i];
                    }
                    en.Current.draw(con2);
                    niveau = Math.Max(niveau, en.Current.getHeight(con2.getBreite()));
                    con2.x += en.Current.getBenutzteBreite(con2.getBreite());
                    if (en.Current.getTabs() > 0)
                    {
                        niveau = 0;
                        con2.i += en.Current.getTabs();
                        con2.x = tabb[con2.i];
                        con2.y = hohh[con2.j];
                    }
                    if (en.Current.neueZeile())
                    {
                        niveau = 0;
                        con2.i = 0;
                        con2.j++;
                        con2.y = con2.hohh[con2.j];
                        con2.x = con2.tabb[con2.i];
                    }
                }
            }
        }
예제 #2
0
 public void draw(DrawContext con)
 {
     con.DrawLine(p, con.tabb[0], con.y, con.tabb.Last(), con.y);
 }
예제 #3
0
 public void draw(DrawContext con)
 {
     con.DrawLine(p, con.x, con.hohh[con.j], con.x, con.hohh[con.j + 1]);
 }
예제 #4
0
 public void drawRand(DrawContext con)
 {
     if (!an)
         return;
     if ((art & 4) != 0)
         con.DrawLine(p, r.X, r.Bottom, r.Right, r.Bottom);
     if ((art & 8) != 0)
         con.DrawLine(p, r.X, r.Y + r.Height / 2, r.Right, r.Y + r.Height / 2);
     if ((art & 16) != 0)
         con.DrawLine(p, r.X, r.Y, r.Right, r.Y);
     if ((art & 32) != 0)
         con.DrawRectangle(r, p);
 }