Control_DrawDistrbutionImageAndBSE.cs 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112
  1. using NLog;
  2. using OTSIncAReportApp;
  3. using OTSIncAReportApp.DataOperation.DataAccess;
  4. using OTSIncAReportApp.DataOperation.Model;
  5. using OTSIncAReportApp.OTSSampleReportInfo;
  6. using OTSIncAReportApp.SysMgrTools;
  7. using OTSIncAReportGraph.Class;
  8. using OTSIncAReportGraph.OTSIncAReportGraphFuncation;
  9. using OTSIncAReportMailInterface;
  10. using OTSPeriodicTable;
  11. using System;
  12. using System.Collections.Generic;
  13. using System.Data;
  14. using System.Diagnostics;
  15. using System.Drawing;
  16. using System.Drawing.Drawing2D;
  17. using System.IO;
  18. using System.Linq;
  19. using System.Threading;
  20. using System.Windows.Forms;
  21. using System.Windows.Media.Imaging;
  22. using System.Xml;
  23. namespace OTSIncAReportGraph.Controls
  24. {
  25. public enum SelectedShape
  26. {
  27. Rectangle=0,
  28. Ellipse = 1
  29. }
  30. public struct SelectTool
  31. {
  32. public SelectedShape Shape;
  33. public Point StartPoint;
  34. public bool IsSelecting;
  35. //进行选择的矩形范围
  36. public RectangleF Rect ;
  37. }
  38. public enum RightButtonMenu
  39. {
  40. Include=0,
  41. MoveSEMToParticle=1,
  42. CopyImage=2
  43. }
  44. public partial class Control_DrawDistrbutionImageAndBSE : UserControl
  45. {
  46. //缩放的增大缩小的增量
  47. private const float const_zoom_increment = 0.05f;
  48. //最大缩放倍数
  49. private const float m_f_zoom_max = 4f;
  50. //最小缩放倍数
  51. private float m_f_zoom_mix = 0.05f;
  52. //标尺原先大小的记录,参与计算
  53. private const float m_f_old_ruler_size = 100;
  54. //int m_operator_currentid;
  55. double ls_d_cz_width;
  56. double ls_d_cz_height;
  57. #region 变量定义
  58. private SelectTool m_SelectTool;
  59. //缩放的基数,临时变量
  60. private float m_Zoom_Base = 0;
  61. //与原先缩放的记录数
  62. private float m_zoom_record = 1;
  63. //标尺的大小记录
  64. public float m_f_ruler_size = 100;
  65. //每像素代表的尺寸大小,还不知道在哪里进行计算
  66. public float m_pixelSize = 4.5f;
  67. //国际化存储信息
  68. System.Collections.Hashtable table;
  69. //包含particle的field的列表对象
  70. public List<DisplayField> m_list_allDfield = null;
  71. //这里要做成控件,不要是窗体
  72. public List<BaseObject> m_list_allDPart = null;
  73. //总背景矩形
  74. public RectangleF m_backRect = new RectangleF();
  75. //记录原值,总背景矩形
  76. public RectangleF m_old_backRect = new RectangleF();
  77. //记录总物理矩形总大小
  78. public RectangleF m_back_wl_rectf = new RectangleF();
  79. //是否显示网格线
  80. private bool m_is_showgrid = false;
  81. //绘制的网格中,需要几条线,宽
  82. public double m_i_grid_showlinesnumber_width = 0;
  83. //绘制的网格中,需要几条线,高
  84. public double m_i_grid_showlinesnumber_height = 0;
  85. //是否拖动
  86. private bool m_isDrag = false;
  87. //拖动前的坐标记录
  88. private PointF m_beforedrag_pointf = new PointF();
  89. //提供鼠标在右下角显示的文本,左侧
  90. private string m_str_mouseshow_left = "";
  91. //提供鼠标在右下角显示的文本,右侧
  92. private string m_str_mouseshow_right = "";
  93. //整个背景矩形的背景色
  94. private Color m_backrangecolor = Color.White;
  95. OTSImageDisHelp m_ReportFun = null;
  96. //当前鼠标的位置
  97. Point m_mouse_now_point = new Point();
  98. //记录当前鼠标位置对应SEM电镜的位置
  99. Point m_sem_mouse_now_point = new Point();
  100. //鼠标移动经过的颗粒对象,临时存放,用来记录是否要显示xray与隐藏xray
  101. DisplayParticle m_mouseOver_dparticle = null;
  102. //保存数据源名称
  103. private string m_showsourcename = "";
  104. //保存当前数据源的ID
  105. private int m_datasourceid = 0;
  106. //移动SEM到指定位置发生线程
  107. private Thread m_mythread;
  108. //记录线程是否已经运行完成的状态
  109. //private bool m_mythread_state = false;
  110. private Color m_ColorNotContent = Color.SkyBlue;
  111. //读取背景原图的名称和图片
  112. private Dictionary<string, Image> originalImages = new Dictionary<string, Image>();
  113. //private List<string> originalImageNames = new List<string>();
  114. //背景使用原图
  115. private bool OriginalBackground = false;
  116. static System.Windows.Forms.Timer delaytimer = new System.Windows.Forms.Timer();
  117. Logger log;
  118. /// <summary>
  119. /// 当前正在显示的数据源名称,用来与框架调用条件判断使用
  120. /// </summary>
  121. public string ShowSourceName
  122. {
  123. set { m_showsourcename = value; }
  124. get { return m_showsourcename; }
  125. }
  126. /// <summary>
  127. /// 当前正在显示的数据源的ID
  128. /// </summary>
  129. public int DataSourceID
  130. {
  131. set { m_datasourceid = value; }
  132. get { return m_datasourceid; }
  133. }
  134. /// <summary>
  135. /// 背景矩形属性
  136. /// </summary>
  137. public RectangleF BackRectF
  138. {
  139. set { m_backRect = value; }
  140. get { return m_backRect; }
  141. }
  142. public OTSImageDisHelp ReportFun { get => m_ReportFun; set => m_ReportFun = value; }
  143. //测试用隐藏颗粒的id号,回头去掉
  144. public int test_hide_particle_tagid = 1000;
  145. //进度条窗体
  146. public Frm_UserProgress m_frm_userprogress;
  147. /// <summary>
  148. /// 是否显示过小颗粒
  149. /// </summary>
  150. public bool bShowSmallParticle = false;
  151. OTSIncAReportApp.frmReportApp m_ReportApp;
  152. ResultFile resultFile = null;
  153. #endregion
  154. #region 构造函数及窗体加载
  155. public Control_DrawDistrbutionImageAndBSE(OTSIncAReportApp.frmReportApp ReportApp)
  156. {
  157. log = NLog.LogManager.GetCurrentClassLogger();
  158. m_list_allDfield = new List<DisplayField>();
  159. m_list_allDPart = new List<BaseObject>();
  160. m_frm_userprogress = new Frm_UserProgress();
  161. //m_mythread_state = false;
  162. m_mythread = new Thread(new ParameterizedThreadStart(Thread_GO));
  163. m_ReportApp = ReportApp;
  164. resultFile = m_ReportApp.m_rstDataMgr.CurResultFile;
  165. //初始化底层操作类
  166. ReportFun = new OTSImageDisHelp(resultFile);
  167. InitializeComponent();
  168. #region 国际化语言
  169. Language lan = new Language(this);
  170. table = lan.GetNameTable(this.Name);
  171. #endregion
  172. //load the userdefine control dynamically
  173. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Control_DrawDistrbutionImageAndBSE));
  174. this.control_XRayTable1 = new Control_XRayTable();
  175. this.control_XRayTable1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  176. this.control_XRayTable1.Dock = System.Windows.Forms.DockStyle.Bottom;
  177. this.control_XRayTable1.GBInfoStr = "";
  178. this.control_XRayTable1.GoodChineseName = "";
  179. this.control_XRayTable1.MaterialName = "";
  180. this.control_XRayTable1.List_ShowElementInfo = ((System.Collections.Generic.List<OTSIncAReportGraph.Controls.ShowElementInfo>)(resources.GetObject("control_XRayTable1.List_ShowElementInfo")));
  181. this.control_XRayTable1.Location = new System.Drawing.Point(0, 400);
  182. this.control_XRayTable1.Name = "control_XRayTable1";
  183. this.control_XRayTable1.ShowAnalysisXray = true;
  184. this.control_XRayTable1.ShowSearchXray = false;
  185. this.control_XRayTable1.Size = new System.Drawing.Size(1004, 200);
  186. this.control_XRayTable1.STDName = "";
  187. this.control_XRayTable1.TabIndex = 6;
  188. this.control_XRayTable1.Visible = false;
  189. //
  190. // control_Ruler1
  191. //
  192. this.control_Ruler1 = new Control_Ruler();
  193. this.control_Ruler1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  194. this.control_Ruler1.Location = new System.Drawing.Point(3, 400);
  195. this.control_Ruler1.Name = "control_Ruler1";
  196. this.control_Ruler1.RulerWidth = 100;
  197. this.control_Ruler1.ShowString = "100um";
  198. this.control_Ruler1.Size = new System.Drawing.Size(120, 40);
  199. this.control_Ruler1.TabIndex = 8;
  200. this.control_Ruler1.Value = 0D;
  201. this.control_Ruler1.Visible = false;
  202. this.Controls.Add(this.control_XRayTable1);
  203. this.Controls.Add(this.control_Ruler1);
  204. }
  205. private void ProgressBarUpdate(int progress, string message)
  206. {
  207. //显示进度条,计算进度条应该显示的位置和宽度
  208. if (m_frm_userprogress.Visible == false)
  209. {
  210. Form ls_main_form = this.ParentForm.ParentForm;//取出父窗体
  211. m_frm_userprogress.Width = (int)(MyPrimaryScreen.DESKTOP.Width / MyPrimaryScreen.ScaleX * 0.9);
  212. m_frm_userprogress.Location = new Point(ls_main_form.Location.X + 80, ls_main_form.Location.Y + (int)(MyPrimaryScreen.DESKTOP.Height / MyPrimaryScreen.ScaleX) / 2);
  213. m_frm_userprogress.Show();
  214. }
  215. m_frm_userprogress.SetProgressValueAndText(progress, message);
  216. }
  217. private void Control_DrawDistrbutionImageAndBSE_Load(object sender, EventArgs e)
  218. {
  219. ProgressBarUpdate(0, table["str1"].ToString());
  220. //执行获取颗粒分布图数据,总过程函数
  221. GetDistrbutionImageAndBSE_Total();
  222. //设置双缓冲
  223. SetDoubleBufferByIsDraw();
  224. //设置标尺
  225. //根据f_onepixel_size计算出要显示出100um的实际宽度
  226. double d_onefixel_width = 100 / m_pixelSize;
  227. if (d_onefixel_width == 0)
  228. {
  229. this.control_Ruler1.Visible = false;
  230. }
  231. else
  232. {
  233. //将标尺定位到合理的位置上
  234. this.control_Ruler1.Location = new Point(10, MyPrimaryScreen.WorkingArea.Height - 300);
  235. this.control_Ruler1.Visible = true;
  236. this.control_Ruler1.SetValue(m_f_ruler_size, m_pixelSize);
  237. }
  238. //记录原值,用于缩放计算操作 ,此处要用克隆 ,原particle颗粒的值,在底层调用时已经赋值过了
  239. foreach (DisplayParticle ls_dp in m_list_allDPart)
  240. {
  241. ls_dp.SetPaintState(PaintState.NORMALPAINT);
  242. DisplayParticle old_dp = ls_dp.Clone() as DisplayParticle;
  243. ReportFun. m_original_list_baseobject.Add(old_dp);
  244. }
  245. //加载时将背景rect设置与整个窗体一边大小
  246. m_old_backRect = m_backRect;
  247. ////赋值给old保存原值
  248. for (int i = 0; i < m_list_allDfield.Count; i++)
  249. {
  250. DisplayField df = new DisplayField(m_list_allDfield[i].List_DParticle);
  251. df.Show_Rect = new RectangleF(m_list_allDfield[i].Show_Rect.X,
  252. m_list_allDfield[i].Show_Rect.Y,
  253. m_list_allDfield[i].Show_Rect.Width,
  254. m_list_allDfield[i].Show_Rect.Height);
  255. ReportFun. m_original_list_dfield.Add(df);
  256. }
  257. ProgressBarUpdate(100, table["str2"].ToString());
  258. //加载完成,关闭进度条
  259. m_frm_userprogress.Close();
  260. }
  261. /// <summary>
  262. /// 获取组整个获取分布图和排序图图像数据的底层数据组建方式,的总过程
  263. /// </summary>
  264. public void GetDistrbutionImageAndBSE_Total()
  265. {
  266. string str27 = "begin to loading data....";
  267. log.Info(str27);
  268. Application.DoEvents();
  269. ProgressBarUpdate(1, str27);
  270. List<Field> fieldlist = resultFile.List_OTSField;
  271. //防止有时底层返回的Field的List是0,直接返回
  272. if (fieldlist.Count == 0)
  273. {
  274. ProgressBarUpdate(100, "field number =0 !....");
  275. return;
  276. }
  277. string str29 = "begin to composit field picture....";
  278. log.Info(str29);
  279. Application.DoEvents();
  280. ProgressBarUpdate(15, str29);
  281. //第一次循环,用来计算单个Field的像素分辨率,和将所有的物理位置存放到List当中
  282. List<Point> list_point = new List<Point>();
  283. int fieldwidth = 0, fieldheight = 0;
  284. //获取到该field的分辨率大小,循环中都是一样的
  285. if (fieldlist.Count > 0)
  286. {
  287. Bitmap bitmp = DrawFunction.ReadImageFile(fieldlist[0].FieldImage);
  288. fieldwidth = bitmp.Width;
  289. fieldheight = bitmp.Height;
  290. }
  291. for (int i = 0; i < fieldlist.Count(); i++)
  292. {
  293. //然后取出物理坐标,这个一会要与分辨率坐标进行变算一下
  294. Point ls_point = new Point() { X = fieldlist[i].FieldPosX, Y = fieldlist[i].FieldPosY };
  295. list_point.Add(ls_point);
  296. }
  297. //计算出整个绘制图像总Rectagnle的大小
  298. m_backRect = ReportFun. ConvertAndGetMaxRect(list_point, fieldwidth, fieldheight);
  299. ProgressBarUpdate(18, "calculate ruler....");
  300. #region //标尺相关------------------------------------------------------------------------------
  301. RectangleF ls_jsblrect = ReportFun.GetPhysicalFieldWidthAndHeight(list_point,fieldwidth,fieldheight);
  302. //然后用宽度来除以i_field_width 获取单个的像素比例
  303. double d_onepixel_scale = Convert.ToDouble(ls_jsblrect.Width) / Convert.ToDouble(fieldwidth);
  304. //再用该比例对标尺进行相应的赋值
  305. m_pixelSize = (float)d_onepixel_scale;
  306. #endregion //---------------------------------------------------------------------------------------
  307. ProgressBarUpdate(20, "composit whole picture....");
  308. //70的进度条给到下面的循环中,计算进度条各分类进度分配
  309. float ls_int_progresscalc = 0;
  310. if (fieldlist.Count > 0)
  311. ls_int_progresscalc = (float)70 / (float)fieldlist.Count;
  312. string str32 = "finished ";
  313. string str33 = "total ";
  314. string str34 = "field...";
  315. var otsLeftBottomPoint = ReportFun.GetOTSCoordLeftBottomPoint(list_point);
  316. for (int i = 0; i < fieldlist.Count(); i++)
  317. {
  318. ProgressBarUpdate(20 + (int)(ls_int_progresscalc * (i + 1)), str32 + i.ToString() + str33 + resultFile.List_OTSField.Count.ToString() + str34);
  319. //取出该Field的物理坐标,将其转换成对应的屏幕像素坐标,屏幕左上角为原点(0,0)的偏移值,用于后面计算各Segment的位置使用
  320. Point thisfield_point = new Point() { X = fieldlist[i].FieldPosX, Y = fieldlist[i].FieldPosY };
  321. Point offset_point = ReportFun.ConvertOTSCoordinateToScreenCoord(otsLeftBottomPoint, m_pixelSize, thisfield_point, m_backRect, new RectangleF(0,0,fieldwidth,fieldheight));//the ots coordinate is always the up right positive.
  322. DisplayField df = new DisplayField(fieldlist[i],fieldwidth,fieldheight, offset_point);
  323. m_list_allDfield.Add(df);
  324. m_list_allDPart.AddRange(df.List_DParticle);
  325. }
  326. ProgressBarUpdate(90, "convert solution...");
  327. //然后这里还需要计算出,各field的宽和高,帧图边框分别需要显示多少个框
  328. if (fieldwidth != 0 && fieldheight != 0)
  329. {
  330. m_i_grid_showlinesnumber_width = Convert.ToInt32(BackRectF.Width / fieldwidth);
  331. m_i_grid_showlinesnumber_height = Convert.ToInt32(BackRectF.Height / fieldheight);
  332. }
  333. ProgressBarUpdate(95, "other work...");
  334. //相关计数
  335. ReportFun.m_field_count = fieldlist.Count;
  336. ReportFun.m_particle_count = m_list_allDPart.Count;
  337. }
  338. /// <summary>
  339. /// 分布图和BSE图中,从底层获取相关结果后,重新组织显示
  340. /// </summary>
  341. /// <param name="sourceGridData"></param>
  342. public void FilterParticleByOtherCondition(ReportCondition sourceGridData)
  343. {
  344. bool sizeconditionResult;
  345. bool stdIdconditionResult;
  346. string stdId = "";
  347. int stdIdIndex = 0;
  348. //find the stdId condition
  349. var STDIdItm = sourceGridData.ConditionItemList.Find(s => s.iItemId == OTS_REPORT_PROP_GRID_ITEMS.STD_ID);
  350. if (STDIdItm != null)
  351. {
  352. stdId = STDIdItm.itemDisplayVal.ToString();
  353. stdIdIndex = STDIdItm.comboDownList.IndexOf(stdId);
  354. }
  355. //find the size condition
  356. var size_cal_method_type = (SIZE_CAL_METHOD_TYPE)sourceGridData.GetComboDownListIndexByItemName(OTS_REPORT_PROP_GRID_ITEMS.SIZE_CAL_METHOD_TYPE);
  357. var itm = sourceGridData.ConditionItemList.Find(s => s.iItemId == OTS_REPORT_PROP_GRID_ITEMS.GRAIN_SIZE_CLASS);
  358. string size = itm.itemDisplayVal.ToString();
  359. int index = itm.comboDownList.IndexOf(size);
  360. string min = "0";
  361. string max = "999";
  362. if (index > 0)
  363. {
  364. max = sourceGridData.ConditionItemList.Find(s => s.iItemId == OTS_REPORT_PROP_GRID_ITEMS.GRAIN_SIZE_MAX).itemDisplayVal.ToString();
  365. min = sourceGridData.ConditionItemList.Find(s => s.iItemId == OTS_REPORT_PROP_GRID_ITEMS.GRAIN_SIZE_MIN).itemDisplayVal.ToString();
  366. if (max.ToLower() == "max")
  367. {
  368. max = "999";
  369. }
  370. }
  371. double dia_min = Convert.ToDouble(min);
  372. double dia_max = Convert.ToDouble(max);
  373. foreach (DisplayParticle ls_dp in m_list_allDPart)
  374. {
  375. if (index > 0)
  376. {
  377. double diameter = 0;
  378. switch (size_cal_method_type)
  379. {
  380. case SIZE_CAL_METHOD_TYPE.DMAX:
  381. diameter = ls_dp.objParticleData.DMAX;
  382. break;
  383. case SIZE_CAL_METHOD_TYPE.DMIN:
  384. diameter = ls_dp.objParticleData.DMIN;
  385. break;
  386. case SIZE_CAL_METHOD_TYPE.CIRCLE:
  387. diameter = Math.Sqrt(ls_dp.objParticleData.Area / 3.14159f) * 2f;
  388. break;
  389. case SIZE_CAL_METHOD_TYPE.DFERET:
  390. diameter = ls_dp.objParticleData.DFERET;
  391. break;
  392. default:
  393. diameter = 0;
  394. break;
  395. }
  396. if (diameter >= dia_min && diameter <= dia_max)
  397. {
  398. sizeconditionResult = true;
  399. }
  400. else
  401. {
  402. sizeconditionResult = false;
  403. }
  404. }
  405. else
  406. {
  407. sizeconditionResult = true;
  408. }
  409. if (stdIdIndex > 0)// it's not "All"
  410. {
  411. if (ls_dp.objParticleData.TypeName != stdId)
  412. {
  413. stdIdconditionResult = false;
  414. }
  415. else
  416. {
  417. stdIdconditionResult = true;
  418. }
  419. }
  420. else
  421. {
  422. stdIdconditionResult = true;
  423. }
  424. if (stdIdconditionResult && sizeconditionResult)
  425. {
  426. ls_dp.SetDisplayState(DisplayState.DISPLAY);
  427. }
  428. else
  429. {
  430. ls_dp.SetDisplayState(DisplayState.NODISPLAY);
  431. }
  432. }
  433. }
  434. #endregion
  435. #region 设置双缓冲
  436. /// <summary>
  437. /// 设置双缓冲
  438. /// </summary>
  439. public void SetDoubleBufferByIsDraw()
  440. {
  441. SetStyle(ControlStyles.UserPaint, true); //没什么效果,开与关
  442. SetStyle(ControlStyles.AllPaintingInWmPaint, true); // 禁止擦除背景,关了闪
  443. SetStyle(ControlStyles.OptimizedDoubleBuffer, true); // 双缓冲,关了闪
  444. //上面是必须有的
  445. SetStyle(ControlStyles.UserMouse, true); //执行自己的鼠标行为,这个打开后,在win7下鼠标操作明显改善
  446. }
  447. #endregion
  448. #region 绘制函数
  449. protected override void OnPaint(PaintEventArgs e)//处理重绘情况
  450. {
  451. if (OriginalBackground)
  452. {
  453. GetPic(e);
  454. }
  455. else
  456. {
  457. #region //填充个背景色矩形-----------------------------------------------
  458. SolidBrush b = new SolidBrush(m_backrangecolor);
  459. e.Graphics.FillRectangle(b, m_backRect);
  460. #endregion
  461. }
  462. #region //计算并进行绘制部份------------------------------------
  463. //log.Info(" m_f_widthAndheight_js=" +m_Zoom_Base.ToString());
  464. foreach (BaseObject item in m_list_allDPart)
  465. {
  466. DisplayParticle dp = (DisplayParticle)item;
  467. if (dp.GetPaintState() != PaintState.NOPAINT)
  468. {
  469. dp.OnPaint(e);
  470. }
  471. }
  472. #endregion
  473. #region //判断是否使用了矩形或圆形工具进行多选,是的话,那么这里就开始绘制------------------------
  474. if (m_SelectTool.IsSelecting)
  475. {
  476. if (m_SelectTool.Shape==SelectedShape.Rectangle && m_SelectTool.Rect.Width > 0 && m_SelectTool.Rect.Height > 0)
  477. {
  478. Graphics g = e.Graphics;
  479. //绘制矩形
  480. g.DrawRectangle(new Pen(Color.Blue), m_SelectTool.Rect.X, m_SelectTool.Rect.Y, m_SelectTool.Rect.Width, m_SelectTool.Rect.Height);
  481. //半透明画刷
  482. SolidBrush brush = new SolidBrush(Color.FromArgb(50, m_ColorNotContent));
  483. //填充选择矩形
  484. g.FillRectangle(brush, m_SelectTool.Rect.X, m_SelectTool.Rect.Y, m_SelectTool.Rect.Width, m_SelectTool.Rect.Height);
  485. }
  486. if (m_SelectTool.Shape == SelectedShape.Ellipse && m_SelectTool.Rect.Width > 0 && m_SelectTool.Rect.Height > 0)
  487. {
  488. Graphics g = e.Graphics;
  489. //绘制圆形
  490. g.DrawEllipse(new Pen(Color.Blue), m_SelectTool.Rect.X, m_SelectTool.Rect.Y, m_SelectTool.Rect.Width, m_SelectTool.Rect.Height);
  491. //半透明画刷
  492. SolidBrush brush = new SolidBrush(Color.FromArgb(50, m_ColorNotContent));
  493. //填充选择圆形
  494. g.FillEllipse(brush, m_SelectTool.Rect.X, m_SelectTool.Rect.Y, m_SelectTool.Rect.Width, m_SelectTool.Rect.Height);
  495. }
  496. }
  497. #endregion
  498. #region 绘制网格线,帧图边框部份
  499. if (true == m_is_showgrid)
  500. {
  501. RectangleF ls_rect_gridline = Rectangle.Round(new RectangleF(m_backRect.X,
  502. m_backRect.Y,
  503. m_backRect.Width,
  504. m_backRect.Height));
  505. //共绘制外边框,和里面横竖,各4个线
  506. ControlPaint.DrawBorder(e.Graphics,
  507. Rectangle.Ceiling(ls_rect_gridline),
  508. Color.BurlyWood,
  509. 1,
  510. ButtonBorderStyle.Solid,
  511. Color.BurlyWood,
  512. 1,
  513. ButtonBorderStyle.Solid,
  514. Color.BurlyWood,
  515. 1,
  516. ButtonBorderStyle.Solid,
  517. Color.BurlyWood,
  518. 1,
  519. ButtonBorderStyle.Solid);
  520. //然后再把rectangle,横竖分成4块,画上4条横竖线
  521. //画横线
  522. for (int i = 1; i < m_i_grid_showlinesnumber_height; i++)
  523. {
  524. double y_zl = ls_rect_gridline.Height / m_i_grid_showlinesnumber_height;
  525. e.Graphics.DrawLine(new Pen(Color.BurlyWood),
  526. ls_rect_gridline.X,
  527. Convert.ToInt64(ls_rect_gridline.Y + y_zl * i),
  528. ls_rect_gridline.X + ls_rect_gridline.Width,
  529. Convert.ToInt64(ls_rect_gridline.Y + y_zl * i));
  530. }
  531. //画竖线
  532. for (int i = 1; i < m_i_grid_showlinesnumber_width; i++)
  533. {
  534. double x_zl = ls_rect_gridline.Width / m_i_grid_showlinesnumber_width;
  535. e.Graphics.DrawLine(new Pen(Color.BurlyWood),
  536. Convert.ToInt64(ls_rect_gridline.X + x_zl * i),
  537. ls_rect_gridline.Y,
  538. Convert.ToInt64(ls_rect_gridline.X + x_zl * i),
  539. ls_rect_gridline.Y + ls_rect_gridline.Height);
  540. }
  541. }
  542. #endregion
  543. #region 绘制鼠标跟踪线部份
  544. //XX虚线-----------------------------------------------
  545. Pen xxpen = new Pen(Color.GreenYellow, 1);
  546. xxpen.DashStyle = System.Drawing.Drawing2D.DashStyle.Custom;
  547. xxpen.DashPattern = new float[] { 5, 5 };
  548. //竖线
  549. e.Graphics.DrawLine(xxpen, 0, m_mouse_now_point.Y, m_mouse_now_point.X - 10, m_mouse_now_point.Y);
  550. e.Graphics.DrawLine(xxpen, m_mouse_now_point.X + 10, m_mouse_now_point.Y, this.Width, m_mouse_now_point.Y);
  551. //横线
  552. e.Graphics.DrawLine(xxpen, m_mouse_now_point.X, 0, m_mouse_now_point.X, m_mouse_now_point.Y - 10);
  553. e.Graphics.DrawLine(xxpen, m_mouse_now_point.X, m_mouse_now_point.Y + 10, m_mouse_now_point.X, this.Height);
  554. ////--------------------------------------------------------------------------------
  555. #endregion
  556. }
  557. #endregion
  558. #region 鼠标操作事件
  559. /// <summary>
  560. /// 按指定的增量刻度对整个图像进行缩放,x,y为手动缩放时当前鼠标所在的位置,如果在其它地方调用则传入0在计算过程中,不会影响
  561. /// </summary>
  562. /// <param name="zoom"></param>
  563. private void ImageZoomByIncrement(float zoom, float in_mouse_x, float in_mouse_y)
  564. {
  565. //先计算鼠标的位置与背景rect的位置的差值
  566. //用于存储锚点缩放记录原backrectf值的,一用来于计算差值
  567. float oldwidth = m_backRect.Width;
  568. float oldheight = m_backRect.Height;
  569. m_backRect.Width = (float)(m_backRect.Width + Convert.ToDouble(m_old_backRect.Width * zoom));
  570. m_backRect.Height = (float)(m_backRect.Height + Convert.ToDouble(m_old_backRect.Height * zoom));
  571. //锚点缩放补差值计算,得出差值
  572. float f_czx = (in_mouse_x - m_backRect.X) * ((oldwidth - m_backRect.Width) / oldwidth);
  573. float f_czy = (in_mouse_y - m_backRect.Y) * ((oldheight - m_backRect.Height) / oldheight);
  574. //对背景矩形与所有的segment进行修补差值
  575. m_backRect.X = m_backRect.X + f_czx;
  576. m_backRect.Y = m_backRect.Y + f_czy;
  577. for (int i = 0; i < m_list_allDPart.Count(); i++)
  578. {
  579. DisplayParticle dp = (DisplayParticle)m_list_allDPart[i];
  580. //dp.displayState = DisplayState.NORMALDISPLAY;
  581. for (int y = 0; y < dp.DSegments.Count(); y++)
  582. {
  583. //这里重新设置每条线的高度,和x,y坐标
  584. DisplaySegment ds = dp.DSegments[y];
  585. DisplaySegment old_ds = ((DisplayParticle)ReportFun.m_original_list_baseobject[i]).DSegments[y];
  586. ds.PenWidthAndHeight = ds.PenWidthAndHeight + old_ds.PenWidthAndHeight
  587. * zoom;
  588. ds.Rect = new RectangleF(ds.Rect.X + old_ds.Rect.X * zoom + f_czx, ds.Rect.Y + old_ds.Rect.Y * zoom + f_czy,
  589. ds.Rect.Width + old_ds.Rect.Width * zoom, ds.Rect.Height + old_ds.Rect.Height * zoom);
  590. }
  591. //获取矩形的rectangle
  592. dp.Rect = dp.GetRectFromDSegment();
  593. //重新计算小矩形边框
  594. dp.SmallRect = dp.GetSmallRectangleFromRect();
  595. //设置缩放到多少倍时进行显示
  596. if (m_zoom_record >= dp.Zoom_DisPlayThreshold)
  597. {
  598. dp.SetPaintState(PaintState.NORMALPAINT);
  599. }
  600. else
  601. {
  602. dp.SetPaintState(PaintState.CONCISEPAINT);
  603. }
  604. if (dp.Rect.Left < -120 || dp.Rect.Right > this.Width+120 || dp.Rect.Top < -120 || dp.Rect.Bottom > this.Height+120)
  605. {
  606. dp.SetPaintState(PaintState.NOPAINT);//the particles which are out of screen don't display.to speed up the display efficient.
  607. }
  608. }
  609. if (m_list_allDfield != null)
  610. {
  611. if (m_list_allDfield.Count > 0)
  612. {
  613. for (int i = 0; i < m_list_allDfield.Count; i++)
  614. {
  615. DisplayField theField = m_list_allDfield[i];
  616. theField.Current_Rect = new RectangleF(theField.Current_Rect.X + theField.Show_Rect.X * zoom + f_czx,
  617. theField.Current_Rect.Y + theField.Show_Rect.Y * zoom + f_czy,
  618. theField.Current_Rect.Width + theField.Show_Rect.Width * zoom,
  619. theField.Current_Rect.Height + theField.Show_Rect.Height * zoom);
  620. }
  621. }
  622. }
  623. #region 计算标尺尺寸部份-----放大------
  624. //计算标尺实际占用像素的宽度
  625. m_f_ruler_size = m_f_ruler_size + Convert.ToInt32(m_f_old_ruler_size * zoom);
  626. control_Ruler1.SetValue(m_f_ruler_size, m_pixelSize);
  627. #endregion
  628. }
  629. protected override void OnMouseWheel(MouseEventArgs e)
  630. {
  631. if (e.Delta > 0)
  632. {
  633. if (m_zoom_record < m_f_zoom_max)
  634. {
  635. //图形缩放计算部份-------放大------------//是放大 一个刻度
  636. m_Zoom_Base = const_zoom_increment;
  637. }
  638. else return;
  639. }
  640. else
  641. {
  642. if (m_zoom_record > m_f_zoom_mix)
  643. {
  644. //图形缩放计算部份------缩小--------------//是缩小 一个刻度
  645. m_Zoom_Base = -const_zoom_increment;
  646. }
  647. else return;
  648. }
  649. m_zoom_record = m_zoom_record + m_Zoom_Base;
  650. //这里对缩放的总记录进行校验
  651. if (m_zoom_record < m_f_zoom_mix)
  652. {
  653. m_zoom_record = m_f_zoom_mix;
  654. return;
  655. }
  656. //传入增减缩放的刻度,进行缩放
  657. ImageZoomByIncrement(m_Zoom_Base, e.X, e.Y);
  658. Invalidate();
  659. }
  660. protected override void OnMouseDown(MouseEventArgs e)
  661. {
  662. if (e.Button == MouseButtons.Left)
  663. {
  664. this.Cursor = Cursors.Hand;
  665. if (m_SelectTool.IsSelecting)
  666. {
  667. m_SelectTool.StartPoint = e.Location;
  668. }
  669. else
  670. {
  671. bool ifClickOnParticle=false;
  672. foreach (BaseObject item in m_list_allDPart)
  673. {
  674. var dp = (DisplayParticle)item;
  675. if (ReportFun.WhetherInRange(dp, e.Location))
  676. {
  677. dp.IsSelect = !dp.IsSelect;
  678. ifClickOnParticle = true;
  679. break;
  680. }
  681. }
  682. if (ifClickOnParticle == false)
  683. {
  684. foreach (BaseObject item in m_list_allDPart)
  685. {
  686. var dp = (DisplayParticle)item;
  687. if (dp.Rect.Left > -120 && dp.Rect.Right < this.Width + 120 && dp.Rect.Top > -120 && dp.Rect.Bottom < this.Height + 120)
  688. {
  689. item.IsDragging = true;
  690. }
  691. item.DraggingPoint = e.Location;
  692. if (OriginalBackground)
  693. {
  694. dp.SetPaintState(PaintState.NOPAINT);
  695. }
  696. }
  697. foreach (DisplayField item in m_list_allDfield)
  698. {
  699. item.IsDragging = true;
  700. item.DraggingPoint = e.Location;
  701. }
  702. m_isDrag = true;
  703. m_beforedrag_pointf = e.Location;
  704. }
  705. }
  706. }
  707. Invalidate();
  708. }
  709. protected override void OnMouseMove(MouseEventArgs e)
  710. {
  711. //当前鼠标的位置,用来绘制鼠标线用
  712. m_mouse_now_point = e.Location;
  713. if (m_SelectTool.IsSelecting)
  714. {
  715. if (e.Button == MouseButtons.Left)
  716. {
  717. if (e.Location.X > m_SelectTool.StartPoint.X && e.Location.Y > m_SelectTool.StartPoint.Y)
  718. {
  719. //右下拖动
  720. m_SelectTool.Rect = new RectangleF(m_SelectTool.StartPoint, new SizeF(e.Location.X - m_SelectTool.StartPoint.X, e.Location.Y - m_SelectTool.StartPoint.Y));
  721. }
  722. if (e.Location.X < m_SelectTool.StartPoint.X && e.Location.Y < m_SelectTool.StartPoint.Y)
  723. {
  724. //左上拖动
  725. PointF lspointf = new PointF(e.Location.X, e.Location.Y);
  726. m_SelectTool.Rect = new RectangleF(lspointf, new SizeF(m_SelectTool.StartPoint.X - e.Location.X, m_SelectTool.StartPoint.Y - e.Location.Y));
  727. }
  728. if (e.Location.X > m_SelectTool.StartPoint.X && e.Location.Y < m_SelectTool.StartPoint.Y)
  729. {
  730. //右上,这种画法,需要将左下,右上两点转换成左上,右下
  731. PointF left_pointf = new PointF(m_SelectTool.StartPoint.X, e.Location.Y);
  732. PointF right_pointf = new PointF(e.Location.X, m_SelectTool.StartPoint.Y);
  733. m_SelectTool.Rect = new RectangleF(left_pointf, new SizeF(right_pointf.X - left_pointf.X, right_pointf.Y - left_pointf.Y));
  734. }
  735. if (e.Location.X < m_SelectTool.StartPoint.X && e.Location.Y > m_SelectTool.StartPoint.Y)
  736. {
  737. //左下,这种画法,需要将左下,右上两点转换成左上,右下
  738. PointF left_pointf = new PointF(e.Location.X, m_SelectTool.StartPoint.Y);
  739. PointF right_pointf = new PointF(m_SelectTool.StartPoint.X, e.Location.Y);
  740. m_SelectTool.Rect = new RectangleF(left_pointf, new SizeF(right_pointf.X - left_pointf.X, right_pointf.Y - left_pointf.Y));
  741. }
  742. }
  743. }
  744. else
  745. {
  746. if (m_isDrag)
  747. {
  748. foreach (BaseObject item in m_list_allDPart)
  749. {
  750. DisplayParticle dp = (DisplayParticle)item;
  751. if (true == item.IsDragging)
  752. {
  753. foreach (DisplaySegment ds in dp.DSegments)
  754. {
  755. var rec = ds.Rect;
  756. rec.X = ds.Rect.X + e.X - item.DraggingPoint.X; //获取到原先点与移动点的增减量,+原先的x坐标,就是新的坐标
  757. rec.Y = ds.Rect.Y + e.Y - item.DraggingPoint.Y;
  758. ds.Rect = rec;
  759. ds.DraggingPoint = e.Location;
  760. }
  761. item.DraggingPoint = e.Location;
  762. //获取矩形的rectangle
  763. dp.Rect = dp.GetRectFromDSegment();
  764. //重新计算小矩形边框
  765. dp.SmallRect = dp.GetSmallRectangleFromRect();
  766. if (m_zoom_record >= dp.Zoom_DisPlayThreshold)
  767. {
  768. dp.SetPaintState(PaintState.NORMALPAINT);
  769. }
  770. else
  771. {
  772. dp.SetPaintState(PaintState.CONCISEPAINT);
  773. }
  774. if (dp.Rect.Left < -120 || dp.Rect.Right > this.Width + 120 || dp.Rect.Top < -120 || dp.Rect.Bottom > this.Height + 120)
  775. {
  776. dp.SetPaintState(PaintState.NOPAINT);
  777. }
  778. }
  779. }
  780. foreach (var item in m_list_allDfield)
  781. {
  782. if (true == item.IsDragging)
  783. {
  784. item.Current_Rect = new RectangleF(
  785. item.Current_Rect.Left + Convert.ToSingle((e.X - item.DraggingPoint.X)),
  786. item.Current_Rect.Top + Convert.ToSingle((e.Y - item.DraggingPoint.Y)),
  787. item.Current_Rect.Width,
  788. item.Current_Rect.Height);
  789. item.DraggingPoint = e.Location;
  790. }
  791. }
  792. //同样重新计算backrectf的坐标
  793. m_backRect = new RectangleF(m_backRect.Location.X + e.X - m_beforedrag_pointf.X,
  794. m_backRect.Location.Y + e.Y - m_beforedrag_pointf.Y, m_backRect.Width, m_backRect.Height);
  795. m_beforedrag_pointf = e.Location;
  796. }
  797. else
  798. {
  799. foreach (BaseObject item in m_list_allDPart)
  800. {
  801. DisplayParticle dp = (DisplayParticle)item;
  802. if (dp.GetPaintState() == PaintState.NORMALPAINT)
  803. {
  804. if (ReportFun.WhetherInRange(dp, e.Location))
  805. {
  806. dp.IsMouseOver = true;
  807. //显示x-ray能谱图
  808. if (control_XRayTable1.Visible == false)
  809. ShowXRay(dp);
  810. //m_sem_mouse_now_point = new Point(dp.SEMPosX, dp.SEMPosY);
  811. m_str_mouseshow_left = "颗粒SEM位置:" + dp.SEMPosX.ToString() + ":" + dp.SEMPosY.ToString();
  812. m_sem_mouse_now_point = new Point(dp.SEMPosX, dp.SEMPosY);
  813. }
  814. else
  815. {
  816. dp.IsMouseOver = false;
  817. //移动在颗粒外面时,要判断,Operator_ShowXray不为选下显示XRAY时,才对XRay进行隐藏
  818. if (dp.Operator_ShowXRay != ParticleShowXray.SELECTANDDISPLAYXRAY)
  819. {
  820. //隐藏x-ray能谱图
  821. HideXRay(dp);
  822. }
  823. }
  824. }
  825. }
  826. }
  827. }
  828. #region 向报告程序右下角,传送鼠标颗粒等相关信息
  829. //获取颜色方法1,使用API来获取当前鼠标指向位置的颜色值-----------------------------------------------------
  830. Color ls_c = GetColorByMousePoint(e.X, e.Y);
  831. m_str_mouseshow_right = "灰度#" + ls_c.R.ToString();
  832. m_ReportApp.mouseMatter.Text = m_str_mouseshow_right ;
  833. m_ReportApp.RSGrayVal.Text = m_str_mouseshow_left;
  834. #endregion
  835. Invalidate();
  836. }
  837. /// <summary>
  838. /// 获取鼠标所在位置的信息,显示在框架的右下角
  839. /// </summary>
  840. /// <param name="mouseshow_left"></param>
  841. /// <param name="mouseshow_rightb"></param>
  842. public void GetMouseLowerRightCornerText(out string mouseshow_left, out string mouseshow_rightb)
  843. {
  844. mouseshow_left = m_str_mouseshow_left;
  845. mouseshow_rightb = m_str_mouseshow_right;
  846. }
  847. /// <summary>
  848. /// 鼠标抬起事件
  849. /// </summary>
  850. /// <param name="e"></param>
  851. protected override void OnMouseUp(MouseEventArgs e)
  852. {
  853. if (e.Button == MouseButtons.Left)
  854. {
  855. this.Cursor = Cursors.Default;
  856. if (m_SelectTool.IsSelecting)
  857. {
  858. if (m_SelectTool.Rect.Width > 0 && m_SelectTool.Rect.Height > 0)
  859. {
  860. GraphicsPath ls_gpath = new GraphicsPath();
  861. switch (m_SelectTool.Shape)
  862. {
  863. case SelectedShape.Rectangle:
  864. ls_gpath.AddRectangle(m_SelectTool.Rect);
  865. break;
  866. case SelectedShape.Ellipse:
  867. ls_gpath.AddEllipse(m_SelectTool.Rect);
  868. break;
  869. default:
  870. break;
  871. }
  872. foreach (DisplayParticle dp in m_list_allDPart)
  873. {
  874. if (dp.GetPaintState() != PaintState.NOPAINT )
  875. {
  876. PointF[] lspointf = ls_gpath.PathPoints;
  877. if (true == ReportFun.WhetherInRange(m_SelectTool.Rect, lspointf,new Point((int)dp.Rect.X,(int)dp.Rect.Y)))
  878. {
  879. dp.IsSelect =!dp.IsSelect ;// set the particle to the opsite selected state
  880. }
  881. }
  882. }
  883. }
  884. m_SelectTool.IsSelecting = false;
  885. }
  886. else
  887. {
  888. if (m_isDrag)
  889. {
  890. foreach (BaseObject item in m_list_allDPart)
  891. {
  892. DisplayParticle dp = (DisplayParticle)item;
  893. foreach (DisplaySegment ds in dp.DSegments)
  894. {
  895. var rec = ds.Rect;
  896. rec.X = ds.Rect.X + e.X - item.DraggingPoint.X; //获取到原先点与移动点的增减量,+原先的x坐标,就是新的坐标
  897. rec.Y = ds.Rect.Y + e.Y - item.DraggingPoint.Y;
  898. ds.Rect = rec;
  899. ds.DraggingPoint = Point.Empty;
  900. ds.IsDragging = false;
  901. }
  902. item.DraggingPoint = Point.Empty;
  903. item.IsDragging = false;
  904. //获取矩形的rectangle
  905. dp.Rect = dp.GetRectFromDSegment();
  906. //重新计算小矩形边框
  907. dp.SmallRect = dp.GetSmallRectangleFromRect();
  908. if (m_zoom_record >= dp.Zoom_DisPlayThreshold)
  909. {
  910. dp.SetPaintState(PaintState.NORMALPAINT);
  911. }
  912. else
  913. {
  914. dp.SetPaintState(PaintState.CONCISEPAINT);
  915. }
  916. if (dp.Rect.Left < -120 || dp.Rect.Right > this.Width + 120 || dp.Rect.Top < -120 || dp.Rect.Bottom > this.Height + 120)
  917. {
  918. dp.SetPaintState(PaintState.NOPAINT);
  919. }
  920. }
  921. m_isDrag = false;
  922. }
  923. }
  924. }
  925. if (e.Button == MouseButtons.Right)
  926. {
  927. bool ifClickOnParticle=false;
  928. bool ifThereIsSelectedParticle = false;
  929. foreach (BaseObject item in m_list_allDPart)
  930. {
  931. if (true == ReportFun.WhetherInRange((DisplayParticle)item, e.Location))
  932. {
  933. ifClickOnParticle = true;
  934. CMenuStrip.Items[(int)RightButtonMenu.Include].Visible = false;
  935. CMenuStrip.Items[(int)RightButtonMenu.CopyImage].Visible = false;
  936. CMenuStrip.Items[(int)RightButtonMenu.MoveSEMToParticle].Visible = true;
  937. CMenuStrip.Items[(int)RightButtonMenu.MoveSEMToParticle].Tag = item;
  938. }
  939. if (((DisplayParticle)item).IsSelect)
  940. {
  941. ifThereIsSelectedParticle = true;
  942. }
  943. }
  944. if (ifClickOnParticle == false)
  945. {
  946. if (ifThereIsSelectedParticle)
  947. {
  948. CMenuStrip.Items[(int)RightButtonMenu.Include].Visible = true;
  949. }
  950. else
  951. {
  952. CMenuStrip.Items[(int)RightButtonMenu.Include].Visible = false;
  953. }
  954. CMenuStrip.Items[(int)RightButtonMenu.CopyImage].Visible = true;
  955. CMenuStrip.Items[(int)RightButtonMenu.MoveSEMToParticle].Visible = false;
  956. }
  957. }
  958. Invalidate();
  959. }
  960. #endregion
  961. #region 鼠标右键菜单
  962. private void ToolStripMenuItem_id_Click(object sender, EventArgs e)
  963. {
  964. //ID
  965. //DisplayParticle dp = (DisplayParticle)CMenuStrip.Items[0].Tag;
  966. //MessageBox.Show(dp.guid.ToString());
  967. }
  968. //是否显示过小颗菜单
  969. private void ToolStripMenuItem_ShowSmallParticle_Click(object sender, EventArgs e)
  970. {
  971. }
  972. private void ToolStripMenuItem_selected_Click(object sender, EventArgs e)
  973. {
  974. List<DisplayParticle> selectedParts = new List<DisplayParticle>();
  975. List<Particle> Particles = new List<Particle>();
  976. foreach (var dp in m_list_allDPart)
  977. {
  978. if (dp.IsSelect)
  979. {
  980. selectedParts.Add((DisplayParticle)dp);
  981. Particle particle = new Particle();
  982. particle.FieldId = ((OTSIncAReportGraph.DisplayParticle)dp).FieldId;
  983. particle.ParticleId = ((OTSIncAReportGraph.DisplayParticle)dp).ParticleId;
  984. Particles.Add(particle);
  985. }
  986. }
  987. frmReportApp.selectedRegion = m_SelectTool.Rect;
  988. SendSelectParticleListToReportFrame(selectedParts);
  989. }
  990. /// <summary>
  991. /// 显示x-ray能谱图
  992. /// </summary>
  993. /// <param name="in_dparticle"></param>
  994. private void ShowXRay(DisplayParticle in_dparticle)
  995. {
  996. m_mouseOver_dparticle = in_dparticle;//将显示xray的dparticle记录给全局变量
  997. if (delaytimer.Enabled == false)
  998. {
  999. delaytimer.Tick += Delaytimer_Tick;
  1000. delaytimer.Interval = 500;
  1001. delaytimer.Start();
  1002. }
  1003. }
  1004. private void Delaytimer_Tick(object sender, EventArgs e)
  1005. {
  1006. delaytimer.Enabled = false;
  1007. //显示xray相关信息
  1008. uint[] Search_xray = new uint[2000];
  1009. uint[] Analysis_xray = new uint[2000];
  1010. //
  1011. int i_xray_id = 0;
  1012. List<Element> list_celementchemistryclr = new List<Element>();
  1013. //获取Xray数据
  1014. ReportFun.GetXrayByParticleTagIDAndFieldID_ForDrawDistrbutionImageAndBSE(m_mouseOver_dparticle.ParticleId, m_mouseOver_dparticle.FieldId, out Search_xray, out Analysis_xray, out i_xray_id, out list_celementchemistryclr);
  1015. //get CElementChemistryClr list
  1016. List<ShowElementInfo> list_showelementinfo = new List<ShowElementInfo>();
  1017. for (int i = 0; i < list_celementchemistryclr.Count; i++)
  1018. {
  1019. ShowElementInfo ls_sei = new ShowElementInfo();
  1020. ls_sei.ElementName = list_celementchemistryclr[i].Name;
  1021. ls_sei.Percentage = list_celementchemistryclr[i].Percentage;
  1022. ls_sei.dKF = Convert.ToDouble(CListPeriodic.GetPeriodicByYsm(CListPeriodic.GetListPeriodic(), ls_sei.ElementName).SX1);
  1023. list_showelementinfo.Add(ls_sei);
  1024. }
  1025. //获取使用标准库的名称
  1026. string str_IncAName = "";
  1027. str_IncAName = m_mouseOver_dparticle.TypeName;
  1028. //获取数据后,需要对xraytable设置
  1029. control_XRayTable1.Visible = false;
  1030. control_XRayTable1.SetXRayShowLineValue(Search_xray, Analysis_xray, list_showelementinfo);
  1031. //颗粒国标信息
  1032. control_XRayTable1.GBInfoStr = "";
  1033. control_XRayTable1.MaterialName = str_IncAName;//杂夹物
  1034. control_XRayTable1.List_ShowElementInfo = list_showelementinfo;
  1035. control_XRayTable1.Visible = true;
  1036. this.Refresh();
  1037. }
  1038. /// <summary>
  1039. /// 隐藏x-ray能谱图
  1040. /// </summary>
  1041. private void HideXRay(DisplayParticle in_dparticle)
  1042. {
  1043. if (m_mouseOver_dparticle == null)
  1044. return;
  1045. if (m_mouseOver_dparticle.guid == in_dparticle.guid)
  1046. {
  1047. //如果是刚才移动过的颗粒的话,那么这里再对xray进行隐藏
  1048. control_XRayTable1.Visible = false;
  1049. delaytimer.Enabled = false;
  1050. }
  1051. }
  1052. /// <summary>
  1053. /// 根据传入的鼠标位置,来获取当前鼠标位置上的灰度值
  1054. /// </summary>
  1055. /// <param name="int_x"></param>
  1056. /// <param name="int_y"></param>
  1057. /// <returns></returns>
  1058. private Color GetColorByMousePoint(int int_x, int int_y)
  1059. {
  1060. Graphics g = Graphics.FromHwnd(this.Handle);
  1061. IntPtr hdc = g.GetHdc();
  1062. uint u_color = 0;
  1063. try
  1064. {
  1065. u_color = DrawFunction.GetPixel(hdc, int_x, int_y);
  1066. }
  1067. catch
  1068. { }
  1069. Color ls_c = Color.FromArgb
  1070. (
  1071. (int)(u_color << 24 >> 24),
  1072. (int)(u_color << 16 >> 24),
  1073. (int)(u_color << 8 >> 24)
  1074. );
  1075. return ls_c;
  1076. }
  1077. /// <summary>
  1078. /// 封装,将分布图中的颗粒list传送给报告项目框架中
  1079. /// </summary>
  1080. private void SendSelectParticleListToReportFrame(List<DisplayParticle> selectParts)
  1081. {
  1082. //先获取分布图中,有哪些颗粒已经被选择上了
  1083. foreach (var p in selectParts)
  1084. {
  1085. if (!frmReportApp.selectedParticles.ContainsKey(p.guid))
  1086. {
  1087. frmReportApp.selectedParticles.Add(p.guid, p);
  1088. }
  1089. }
  1090. }
  1091. /// <summary>
  1092. /// 设置当前对哪些颗粒进行设置为选择状态
  1093. /// </summary>
  1094. /// <param name="in_list_cotsparticleclr"></param>
  1095. public void SetSelectParticle(List<Particle> particles)
  1096. {
  1097. if (particles == null)
  1098. {
  1099. return;
  1100. }
  1101. if (particles.Count == 0)
  1102. {
  1103. return;
  1104. }
  1105. foreach (DisplayParticle ls_dp in m_list_allDPart)
  1106. {
  1107. if (ls_dp.GetPaintState() == PaintState.NORMALPAINT)
  1108. {
  1109. for (int i = 0; i < particles.Count; i++)
  1110. {
  1111. if (particles[i].ParticleId == ls_dp.ParticleId
  1112. && particles[i].FieldId == ls_dp.FieldId)
  1113. {
  1114. ls_dp.IsSelect=true;
  1115. }
  1116. }
  1117. }
  1118. }
  1119. }
  1120. private void ToolStripMenuItem_delete_Click(object sender, EventArgs e)
  1121. {
  1122. List<DisplayParticle> selectedParts = new List<DisplayParticle>();
  1123. foreach (var obj in m_list_allDPart)
  1124. {
  1125. var dp = (DisplayParticle)obj;
  1126. if (dp.IsSelect)
  1127. {
  1128. dp.IsDeleted = true;
  1129. }
  1130. else
  1131. {
  1132. selectedParts.Add(dp);
  1133. }
  1134. }
  1135. SendSelectParticleListToReportFrame(selectedParts);
  1136. }
  1137. //复制图像
  1138. private void toolStripMenuItem_copyimage_Click(object sender, EventArgs e)
  1139. {
  1140. //outpic();
  1141. if (outpic())
  1142. {
  1143. MessageBox.Show("Picture export complete");
  1144. }
  1145. else
  1146. {
  1147. MessageBox.Show("Picture export failed");
  1148. }
  1149. //CopyImage();
  1150. }
  1151. private void ToolStripMenuItem_movesempoint_Click(object sender, EventArgs e)
  1152. {
  1153. //移动SEM到指定位置
  1154. if (m_mythread == null)
  1155. {
  1156. return;
  1157. }
  1158. if (m_mythread.ThreadState == System.Threading.ThreadState.Running || m_mythread.ThreadState == System.Threading.ThreadState.WaitSleepJoin)
  1159. {
  1160. return;
  1161. }
  1162. if (m_mythread.ThreadState == System.Threading.ThreadState.Stopped)
  1163. {
  1164. m_mythread = new Thread(new ParameterizedThreadStart(Thread_GO));
  1165. }
  1166. //改为线程调用,先判断线程状态
  1167. m_mythread.Start(new Point(m_sem_mouse_now_point.X, m_sem_mouse_now_point.Y));
  1168. }
  1169. #endregion
  1170. #region 自定义功能函数
  1171. /// <summary>
  1172. /// 复制图像
  1173. /// </summary>
  1174. private void CopyImage()
  1175. {
  1176. int height, width;
  1177. width = this.Width;
  1178. height = this.Height;
  1179. Bitmap image = new Bitmap(width, height);
  1180. //this.BackgroundImage
  1181. this.DrawToBitmap(image, new Rectangle(0, 0, width, height));
  1182. Clipboard.SetImage(image);
  1183. }
  1184. /// <summary>
  1185. /// 移动SEM到指定位置线程函数
  1186. /// </summary>
  1187. private void Thread_GO(object in_obj)
  1188. {
  1189. Point sem_point = (Point)in_obj;
  1190. //第一步,连接电镜
  1191. ReportFun.ConnectToSEM();
  1192. Thread.Sleep(500);
  1193. //第二步,移动到指定位置,先读取再设置
  1194. if (ReportFun.m_SEMConnectionState == true)
  1195. {
  1196. ReportFun.MoveSemToPointXY(sem_point.X, sem_point.Y);
  1197. }
  1198. Thread.Sleep(1500);
  1199. //第三步,断开电镜连接
  1200. ReportFun.DisConnectSEM();
  1201. }
  1202. /// <summary>
  1203. /// 按框架传入的底层计算结果,重新对颗粒进行区分显示
  1204. /// </summary>
  1205. /// <param name="in_cgriddataclr"></param>
  1206. public void DrawDistrbutionImageAndBSE_ByQuery(OTSIncAReportApp.OTSSampleReportInfo.ReportCondition in_griddata)
  1207. {
  1208. FilterParticleByOtherCondition(in_griddata);
  1209. Invalidate();
  1210. this.Refresh();
  1211. }
  1212. /// <summary>
  1213. /// 对分布图进行宽度匹配操作
  1214. /// </summary>
  1215. public void WidthMatch()
  1216. {
  1217. if (this.Width != m_backRect.Width)
  1218. {
  1219. float f_cz = 0;//进行调整的差值
  1220. f_cz = -((m_backRect.Width - this.Width) / m_old_backRect.Width);
  1221. m_zoom_record = m_zoom_record + f_cz;//更新上缩放值,与下面处理缩放对应上
  1222. ImageZoomByIncrement(f_cz, 0, 0);
  1223. }
  1224. MoveImageToPoint(new PointF(0, 0));
  1225. }
  1226. /// <summary>
  1227. /// 对分布图进行高度匹配操作
  1228. /// </summary>
  1229. public void HeightMatch()
  1230. {
  1231. if (this.Height != m_backRect.Height)
  1232. {
  1233. float f_cz = 0;//进行调整的差值
  1234. f_cz = -((m_backRect.Height - this.Height) / m_old_backRect.Height);
  1235. m_zoom_record = m_zoom_record + f_cz;//更新上缩放值,与下面处理缩放对应上
  1236. ImageZoomByIncrement(f_cz, 0, 0);
  1237. }
  1238. //移动到,this.width - backrectf.width /2
  1239. int ls_x = (int)(this.Width - m_backRect.Width) / 2;
  1240. MoveImageToPoint(new PointF(ls_x, 0));
  1241. }
  1242. /// <summary>
  1243. /// 对分布图进行全图匹配操作
  1244. /// </summary>
  1245. public void FullGraphMatch()
  1246. {
  1247. //全图匹配,首先要判断出来是按宽度来计算缩放,还是按高度来计算缩放
  1248. double thiswidth = this.Width;
  1249. double thisheight = this.Height;
  1250. double imagewidth = m_backRect.Width;
  1251. double imageheight = m_backRect.Height;
  1252. //如果宽已相等rect在thisheight范围内,是宽度匹配已经达到目的,或是高已相等rect在thiswidth范围内,是高度匹配已经达到目的
  1253. if ((thiswidth == imagewidth && thisheight > imagewidth) || (thisheight == imageheight && thiswidth > imagewidth))
  1254. {
  1255. //已经达到目的不操作,返回
  1256. return;
  1257. }
  1258. //判断当前是否宽度匹配未达到全图匹配效果
  1259. if (thiswidth == imagewidth && thisheight < imageheight)
  1260. {
  1261. //说明目前已经达到了宽度匹配,但是未能显示完全整图需要高度匹配
  1262. HeightMatch();
  1263. return;
  1264. }
  1265. //判断当前是否高度匹配未达到全图匹配效果
  1266. if (thisheight == imageheight && thiswidth < imagewidth)
  1267. {
  1268. //说明目前已经达到了高度匹配,但是未能显示完全的整图需要宽度匹配
  1269. WidthMatch();
  1270. return;
  1271. }
  1272. ls_d_cz_width = Math.Abs(thiswidth / imagewidth);
  1273. ls_d_cz_height = Math.Abs(thisheight / imageheight);
  1274. //应该是看谁差的倍数大就按谁的进行调整,而不只能看高宽的差值
  1275. if ((1 - ls_d_cz_width) > (1 - ls_d_cz_height))
  1276. {
  1277. //宽差大,就调用WidthMate
  1278. WidthMatch();
  1279. }
  1280. else
  1281. {
  1282. //高差大,则调用HightMate
  1283. HeightMatch();
  1284. }
  1285. m_f_zoom_mix = m_zoom_record;
  1286. }
  1287. /// <summary>
  1288. /// 将整个图像的位置移动到指定的位置上
  1289. /// </summary>
  1290. private void MoveImageToPoint(PointF in_pointf)
  1291. {
  1292. //先计算,当前所在的位置,和需要移动的位置之间的差
  1293. //想复杂了,其实就是当前backrectf的x,y与in_pointf的差就完了呗
  1294. PointF offex_p = new PointF(m_backRect.X - in_pointf.X, m_backRect.Y - in_pointf.Y);
  1295. for (int i = 0; i < m_list_allDPart.Count; i++)
  1296. {
  1297. DisplayParticle dp = (DisplayParticle)m_list_allDPart[i];
  1298. for (int k = 0; k < dp.DSegments.Count; k++)
  1299. {
  1300. dp.DSegments[k].Rect = new RectangleF(
  1301. dp.DSegments[k].Rect.X - offex_p.X,
  1302. dp.DSegments[k].Rect.Y - offex_p.Y,
  1303. dp.DSegments[k].Rect.Width,
  1304. dp.DSegments[k].Rect.Height);
  1305. }
  1306. //获取矩形的rectangle
  1307. dp.Rect = dp.GetRectFromDSegment();
  1308. //通过line获取路径边缘
  1309. dp.GPath = dp.GetRegionFromDSegments();
  1310. //重新计算小矩形边框
  1311. dp.SmallRect = dp.GetSmallRectangleFromRect();
  1312. if (dp.Rect.Left < -120 || dp.Rect.Right > this.Width + 120 || dp.Rect.Top < -120 || dp.Rect.Bottom > this.Height + 120)
  1313. {
  1314. dp.SetPaintState(PaintState.NOPAINT);
  1315. }
  1316. }
  1317. //同样重新计算backrectf的坐标
  1318. m_backRect = new RectangleF(m_backRect.X - offex_p.X, m_backRect.Y - offex_p.Y,
  1319. m_backRect.Width, m_backRect.Height);
  1320. for (int i =0;i< m_list_allDfield.Count;i++)
  1321. {
  1322. RectangleF dField = m_list_allDfield[i].Current_Rect;
  1323. dField.X = dField.X-offex_p.X;
  1324. dField.Y = dField.Y - offex_p.Y;
  1325. m_list_allDfield[i].Current_Rect = dField;
  1326. }
  1327. Invalidate();
  1328. }
  1329. /// <summary>
  1330. /// 是否显示边框格线,自动切换显示与不显示
  1331. /// </summary>
  1332. /// <param name="b_show"></param>
  1333. public void ShowGridLine()
  1334. {
  1335. m_is_showgrid = !m_is_showgrid;
  1336. }
  1337. /// <summary>
  1338. /// 是否显示标尺控件
  1339. /// </summary>
  1340. /// <param name="b_show"></param>
  1341. public void ShowRulerControl()
  1342. {
  1343. control_Ruler1.Visible = !control_Ruler1.Visible;
  1344. }
  1345. /// <summary>
  1346. /// 是否显示边框格线,带参重载
  1347. /// </summary>
  1348. /// <param name="b_show"></param>
  1349. public void ShowGridLine(bool b_show)
  1350. {
  1351. m_is_showgrid = b_show;
  1352. }
  1353. /// <summary>
  1354. /// 是否显示标尺控件,带参重载
  1355. /// </summary>
  1356. /// <param name="b_show"></param>
  1357. public void ShowRulerControl(bool b_show)
  1358. {
  1359. control_Ruler1.Visible = b_show;
  1360. }
  1361. /// <summary>
  1362. /// 是否进行矩形多选操作
  1363. /// </summary>
  1364. public void MultiSelect_Rectangle()
  1365. {
  1366. m_SelectTool.IsSelecting = true;
  1367. m_SelectTool.Shape = SelectedShape.Rectangle;
  1368. m_SelectTool.Rect = new RectangleF();
  1369. m_SelectTool.Rect.Width = 0;
  1370. m_SelectTool.Rect.Height = 0;
  1371. }
  1372. /// <summary>
  1373. /// 是否进行圆形多选操作
  1374. /// </summary>
  1375. public void MultiSelect_Ellipse()
  1376. {
  1377. m_SelectTool.IsSelecting = true;
  1378. m_SelectTool.Shape = SelectedShape.Ellipse;
  1379. m_SelectTool.Rect = new RectangleF();
  1380. m_SelectTool.Rect.Width = 0;
  1381. m_SelectTool.Rect.Height = 0;
  1382. }
  1383. /// <summary>
  1384. /// 对选择的多边形进行反选操作
  1385. /// </summary>
  1386. public void ReverseSelection()
  1387. {
  1388. foreach (DisplayParticle dp in m_list_allDPart)
  1389. {
  1390. if (dp.IsSelect)
  1391. {
  1392. dp.IsSelect = false;
  1393. }
  1394. else
  1395. {
  1396. dp.IsSelect = true;
  1397. }
  1398. }
  1399. //将排列图选择的颗粒传送给报告框架中
  1400. //SendSelectParticleListToReportFrame();
  1401. this.Invalidate();
  1402. }
  1403. /// <summary>
  1404. /// 取消所有的颗粒的选择状态
  1405. /// </summary>
  1406. public void DeselectAllParticle()
  1407. {
  1408. foreach (DisplayParticle dp in m_list_allDPart)
  1409. {
  1410. dp.IsSelect=false;
  1411. }
  1412. this.Invalidate();
  1413. }
  1414. /// <summary>
  1415. /// 将整个图像拷贝到内存中
  1416. /// </summary>
  1417. public void CopyToBitmap()
  1418. {
  1419. Bitmap bp = new Bitmap(this.Size.Width, this.Size.Height);
  1420. this.DrawToBitmap(bp, new Rectangle(0, 0, this.Size.Width, this.Size.Height));
  1421. Clipboard.SetImage(bp);
  1422. }
  1423. /// <summary>
  1424. /// 设置显示BSE原图,还是显示分布图带有标准库的
  1425. /// </summary>
  1426. public void ShowMode(IMAGE_TYPE a_type)
  1427. {
  1428. if (a_type == IMAGE_TYPE.BSE)
  1429. {
  1430. OriginalBackground = false;
  1431. //bse图时,显示背景图为白色
  1432. m_backrangecolor = Color.White;
  1433. foreach (DisplayParticle ls_dp in m_list_allDPart)
  1434. {
  1435. foreach (DisplaySegment ls_ds in ls_dp.DSegments)
  1436. {
  1437. ls_ds.ShowMode = SegmentShowMode.DRAWPOINT;
  1438. }
  1439. }
  1440. FullGraphMatch();
  1441. }
  1442. else if (a_type == IMAGE_TYPE.CLASSIFIED)
  1443. {
  1444. m_backrangecolor = Color.Gainsboro;
  1445. OriginalBackground = false;
  1446. foreach (DisplayParticle ls_dp in m_list_allDPart)
  1447. {
  1448. //ls_dp.DisplayState = DisplayState.DISPLAY;
  1449. foreach (DisplaySegment ls_ds in ls_dp.DSegments)
  1450. {
  1451. ls_ds.ShowMode = SegmentShowMode.DRAWLINE;
  1452. }
  1453. }
  1454. FullGraphMatch();
  1455. }
  1456. else if (a_type== IMAGE_TYPE.ORIGINAl)
  1457. {
  1458. m_backrangecolor = Color.Gainsboro;
  1459. OriginalBackground = true;
  1460. foreach (DisplayParticle ls_dp in m_list_allDPart)
  1461. {
  1462. ls_dp.SetDisplayState(DisplayState.NODISPLAY);
  1463. }
  1464. FullGraphMatch();
  1465. }
  1466. else if(a_type== IMAGE_TYPE.ORIGINALCLASSIFIED)
  1467. {
  1468. m_backrangecolor = Color.Gainsboro;
  1469. OriginalBackground = true;
  1470. foreach (DisplayParticle ls_dp in m_list_allDPart)
  1471. {
  1472. //ls_dp.DisplayState = DisplayState.DISPLAY;
  1473. foreach (DisplaySegment ls_ds in ls_dp.DSegments)
  1474. {
  1475. ls_ds.ShowMode = SegmentShowMode.DRAWLINE;
  1476. }
  1477. }
  1478. FullGraphMatch();
  1479. }
  1480. this.Invalidate();
  1481. }
  1482. /// <summary>
  1483. /// 根据传入的颗粒状态,来获取所有该颗粒状态下的数据,用来测试统计使用
  1484. /// </summary>
  1485. /// <param name="str_particlestate"></param>
  1486. /// <returns></returns>
  1487. public int GetParticleNumberByState(PaintState in_ParticleState)
  1488. {
  1489. int icount = 0;
  1490. foreach (DisplayParticle ls_dp in m_list_allDPart)
  1491. {
  1492. if (ls_dp.GetPaintState() == in_ParticleState)
  1493. {
  1494. icount++;
  1495. }
  1496. }
  1497. return icount;
  1498. }
  1499. /// <summary>
  1500. /// 获取所有原图
  1501. /// </summary>
  1502. /// <param name="args"></param>
  1503. /// <returns></returns>
  1504. private void GetPic(PaintEventArgs args)
  1505. {
  1506. //outpic();
  1507. foreach (var f in m_list_allDfield)
  1508. {
  1509. var curfldrec = f.Current_Rect;
  1510. if (curfldrec.Left > -1000 && curfldrec.Right < this.Width + 1000 && curfldrec.Top > -1000 && curfldrec.Bottom < this.Height + 1000)
  1511. {
  1512. args.Graphics.DrawImage(f.OriginalImage, f.Current_Rect.X, f.Current_Rect.Y, f.Current_Rect.Width, f.Current_Rect.Height);
  1513. }
  1514. }
  1515. }
  1516. #endregion
  1517. private bool outpic()
  1518. {
  1519. SaveFileDialog sfd = new SaveFileDialog();
  1520. //|ALL Files(*.*)|*.*
  1521. sfd.Filter = "BMP Files(*.bmp)|*.bmp|JPG Files(*.jpg)|*.jpg;*.jpeg";
  1522. if (sfd.ShowDialog() == DialogResult.OK)
  1523. {
  1524. try
  1525. {
  1526. DataTable picDatat = new DataTable();
  1527. picDatat.Columns.Add("X", typeof(double));
  1528. picDatat.Columns.Add("Y", typeof(double));
  1529. picDatat.Columns.Add("pic_ID");
  1530. foreach (var f in m_list_allDfield)
  1531. {
  1532. DataRow dr = picDatat.NewRow();
  1533. dr["X"] = f.Rect.X;
  1534. dr["Y"] = f.Rect.Y;
  1535. dr["pic_ID"] = f.FieldID;
  1536. picDatat.Rows.Add(dr);
  1537. }
  1538. double x_max = Convert.ToDouble(picDatat.Compute("Max(X)", "true"));
  1539. double y_max = Convert.ToDouble(picDatat.Compute("Max(Y)", "true"));
  1540. Bitmap pic_bitmap = new Bitmap((int)x_max, (int)y_max);
  1541. Graphics graph = Graphics.FromImage(pic_bitmap);
  1542. foreach (var f in m_list_allDfield)
  1543. {
  1544. graph.DrawImage(f.OriginalImage, f.Rect.X, f.Rect.Y, f.Rect.Width, f.Rect.Height);
  1545. }
  1546. pic_bitmap.Save(sfd.FileName);
  1547. pic_bitmap.Dispose();
  1548. return true;
  1549. }
  1550. catch
  1551. {
  1552. return false;
  1553. }
  1554. }
  1555. return false;
  1556. }
  1557. private bool outpic_Render()
  1558. {
  1559. SaveFileDialog sfd = new SaveFileDialog();
  1560. sfd.Filter = "BMP Files(*.bmp)|*.bmp|JPG Files(*.jpg)|*.jpg;*.jpeg";
  1561. List<Field> fieldlist = resultFile.List_OTSField;
  1562. if (sfd.ShowDialog() == DialogResult.OK)
  1563. {
  1564. try
  1565. {
  1566. double x_max ;
  1567. double y_max ;
  1568. DataTable picDatat = new DataTable();
  1569. picDatat.Columns.Add("X", typeof(double));
  1570. picDatat.Columns.Add("Y", typeof(double));
  1571. picDatat.Columns.Add("pic_ID");
  1572. foreach (var f in m_list_allDfield)
  1573. {
  1574. DataRow dr = picDatat.NewRow();
  1575. dr["X"] = f.Rect.X;
  1576. dr["Y"] = f.Rect.Y;
  1577. dr["pic_ID"] = f.FieldID;
  1578. picDatat.Rows.Add(dr);
  1579. }
  1580. x_max = Convert.ToDouble(picDatat.Compute("Max(X)", "true"));
  1581. y_max = Convert.ToDouble(picDatat.Compute("Max(Y)", "true"));
  1582. Bitmap pic_bitmap = new Bitmap((int)x_max, (int)y_max);
  1583. Graphics graph = Graphics.FromImage(pic_bitmap);
  1584. foreach (var f in m_list_allDfield)
  1585. {
  1586. Bitmap image = new Bitmap(f.OriginalImage.Width,f.OriginalImage.Height);
  1587. Graphics g2= Graphics.FromImage(image);
  1588. g2.DrawImage(f.OriginalImage,0,0, f.OriginalImage.Width, f.OriginalImage.Height);
  1589. Graphics graph_2 = Graphics.FromImage(image);
  1590. for (int i = 0; i < fieldlist.Count; i++)
  1591. {
  1592. if (fieldlist[i].FieldID.ToString() == f.FieldID.ToString())
  1593. {
  1594. //先获取该Field中的所有Particle
  1595. List<Particle> list_particle;
  1596. list_particle = fieldlist[i].ParticleList;
  1597. //再循环计算所有的Particle对象
  1598. foreach (Particle particle in list_particle)
  1599. {
  1600. //创建DParticle颗粒
  1601. DisplayParticle dp = new DisplayParticle(particle);
  1602. List<Segment> list_seg;
  1603. list_seg = particle.SegmentList;
  1604. //创建颗粒分布图对应的类对象
  1605. List<DisplaySegment> list_dsegment = new List<DisplaySegment>();
  1606. //再循环取出里面所有的segment
  1607. foreach (Segment seg in list_seg)
  1608. {
  1609. #region 创建DSegment对象,并将STD分析出的化合物颜色保存到DSegment对象中
  1610. Point on_p = new Point() { X = seg.Start, Y = seg.Height };
  1611. Point off_p = new Point() { X = seg.Start + seg.Length, Y = seg.Height };
  1612. Pen npen = new Pen(dp.Color);
  1613. graph_2.DrawLine(npen, on_p, off_p);
  1614. #endregion
  1615. }
  1616. }
  1617. }
  1618. }
  1619. graph.DrawImage(image, f.Rect.X, f.Rect.Y, f.Rect.Width, f.Rect.Height);
  1620. }
  1621. pic_bitmap.Save(sfd.FileName);
  1622. pic_bitmap.Dispose();
  1623. pic_bitmap.Dispose();
  1624. return true;
  1625. }
  1626. catch
  1627. {
  1628. return false;
  1629. }
  1630. }
  1631. return false;
  1632. }
  1633. private static byte[] ImgtoByte(Image img)
  1634. {
  1635. MemoryStream ms = new MemoryStream();
  1636. byte[] imagedata = null;
  1637. img.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
  1638. imagedata = ms.GetBuffer();
  1639. return imagedata;
  1640. }
  1641. private static Image BytesToImage(byte[] buffer)
  1642. {
  1643. MemoryStream ms = new MemoryStream(buffer);
  1644. Image image = System.Drawing.Image.FromStream(ms);
  1645. return image;
  1646. }
  1647. #region Debug下执行的辅助测试代码
  1648. private void Control_DrawDistrbutionImageAndBSE_MouseDoubleClick(object sender, MouseEventArgs e)
  1649. {
  1650. #if DEBUG
  1651. Screen[] screens = Screen.AllScreens;
  1652. string ls_str = "";
  1653. for (int i = 0; i < screens.Count(); i++)
  1654. {
  1655. ls_str = ls_str + "显示器" + (i + 1).ToString() + " 名称:" + screens[i].DeviceName + Environment.NewLine +
  1656. "显示器" + (i + 1).ToString() + " 是否主要显示器:" + screens[i].Primary + Environment.NewLine +
  1657. "显示器" + (i + 1).ToString() + " WorkingArea:" + screens[i].WorkingArea + Environment.NewLine +
  1658. "显示器" + (i + 1).ToString() + " Bounds:" + screens[i].Bounds + Environment.NewLine +
  1659. "显示器" + (i + 1).ToString() + " 色深:" + screens[i].BitsPerPixel + Environment.NewLine;
  1660. }
  1661. MessageBox.Show("------------------该段代码主要用来测试程序---------------------" + Environment.NewLine +
  1662. //"当前窗体X:" + this.ParentForm.Location.X.ToString() + " Y:" + this.ParentForm.Location.Y.ToString() + Environment.NewLine +
  1663. "显示器数量" + Screen.AllScreens.Count().ToString() + Environment.NewLine +
  1664. ls_str +
  1665. "DESKTOP.Width:" + MyPrimaryScreen.DESKTOP.Width + " DESKTOP.Height:" + MyPrimaryScreen.DESKTOP.Height + Environment.NewLine +
  1666. "DpiX:" + MyPrimaryScreen.DpiX + " DpiY:" + MyPrimaryScreen.DpiY + Environment.NewLine +
  1667. "ScaleX:" + MyPrimaryScreen.ScaleX + " ScaleY:" + MyPrimaryScreen.ScaleY + Environment.NewLine +
  1668. "WorkingArea.Width:" + MyPrimaryScreen.WorkingArea.Width + " WorkingArea.Height:" + MyPrimaryScreen.WorkingArea.Height + Environment.NewLine +
  1669. "this.Width:" + this.Width + " this.Height:" + this.Height + Environment.NewLine +
  1670. "单像素比:" + m_pixelSize.ToString() + Environment.NewLine +
  1671. "缩放倍数:" + m_zoom_record.ToString() + Environment.NewLine +
  1672. "屏幕像素backrectf x:" + m_backRect.X.ToString() + " y:" + m_backRect.Y.ToString() + " width:" + m_backRect.Width.ToString() + " height:" + m_backRect.Height.ToString() + Environment.NewLine +
  1673. "屏幕像素oldbackrectf x:" + m_old_backRect.X.ToString() + " y:" + m_old_backRect.Y.ToString() + " width:" + m_old_backRect.Width.ToString() + " height:" + m_old_backRect.Height.ToString() + Environment.NewLine +
  1674. "物理像素back_wl_rectf x:" + m_back_wl_rectf.X.ToString() + " y:" + m_back_wl_rectf.Y.ToString() + " width:" + m_back_wl_rectf.Width.ToString() + " height:" + m_back_wl_rectf.Height.ToString() + Environment.NewLine +
  1675. //"单个Field视域屏幕像素宽:" + m_OneField_Screen_BackRectf.Width.ToString() + " 高:" + m_OneField_Screen_BackRectf.Height.ToString() + Environment.NewLine +
  1676. //"单个OTS视域屏幕像素宽:" + m_OneField_OTS_Rect.Width.ToString() + " 高:" + m_OneField_OTS_Rect.Height.ToString() + Environment.NewLine +
  1677. "屏幕像素backrectf x:" + m_backRect.X.ToString() + " y:" + m_backRect.Y.ToString() + " width:" + m_backRect.Width.ToString() + " height:" + m_backRect.Height.ToString() + Environment.NewLine +
  1678. "包含Field数量:" + ReportFun.m_field_count.ToString() + " Particle数量:" + ReportFun.m_particle_count.ToString() + Environment.NewLine +
  1679. "正常显示Paticle数量:" + GetParticleNumberByState(PaintState.NORMALPAINT).ToString() + " 不显示Particel数量:" + GetParticleNumberByState(PaintState.NOPAINT).ToString() + Environment.NewLine +
  1680. //"删除Particle数量:" + GetParticleNumberByState("删除").ToString() + " 选中Particle数量:" + GetParticleNumberByState("选择").ToString() + Environment.NewLine +
  1681. "加载底层数据用时:" + ReportFun.m_time_str + Environment.NewLine +
  1682. "组建并计算图像用时:" + ReportFun.m_time_str2 + Environment.NewLine +
  1683. "---------------------------END----------------------------------"
  1684. );
  1685. #endif
  1686. }
  1687. #endregion
  1688. private void ExportoriginalspliceToolStripMenuItem_Click(object sender, EventArgs e)
  1689. {
  1690. if (outpic_Render())
  1691. {
  1692. MessageBox.Show("Picture export complete");
  1693. }
  1694. else
  1695. {
  1696. MessageBox.Show("Picture export failed");
  1697. }
  1698. }
  1699. }
  1700. }