blob: 1a43a7eff6c5bbf9a586b2f68c59bda9d8d4dee4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Logging;
using System.Text.RegularExpressions;
using System.IO;
using System.Globalization;
namespace Tango.LogViewer.UI.LogViewerFileParser
{
public class ApplicationLogViewerParser : ILogViewerParser
{
public ApplicationLogViewerParser()
{
}
publicusing System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using RealTimeGraphEx.Models;
using RealTimeGraphEx.DataSeries;
using RealTimeGraphEx.Controllers;
using RealTimeGraphEx.Enums;
namespace RealTimeGraphEx.FastGraphs
{
public class RealTimeGraphExShapeScroll : RealTimeGraphExLineScroll
{
#region Cross Thread Fields
protected ShapeTypeEnum _shapeType;
protected int _shapeWidth;
protected int _shapeGap;
protected OpacityTypeEnum _opacityAnimationType;
protected RealTimeGraphColumnsCollection graphColumns;
protected int currentColumnIndex;
#endregion
#region Properties
public ShapeTypeEnum ShapeType
{
get { return (ShapeTypeEnum)GetValue(ShapeTypeProperty); }
set { SetValue(ShapeTypeProperty, value); }
}
public static readonly DependencyProperty ShapeTypeProperty =
DependencyProperty.Register("ShapeType", typeof<
|