author | Edouard Tisserant |
Wed, 17 Apr 2019 14:18:22 +0200 | |
changeset 2600 | 0e20a0d48fae |
parent 2551 | 245644bfcd24 |
child 2737 | 38afed869ff6 |
permissions | -rw-r--r-- |
814 | 1 |
#!/usr/bin/env python |
2 |
# -*- coding: utf-8 -*- |
|
3 |
||
1571
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1556
diff
changeset
|
4 |
# This file is part of Beremiz, a Integrated Development Environment for |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1556
diff
changeset
|
5 |
# programming IEC 61131-3 automates supporting plcopen standard and CanFestival. |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1556
diff
changeset
|
6 |
# |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1556
diff
changeset
|
7 |
# Copyright (C) 2007: Edouard TISSERANT and Laurent BESSARD |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1556
diff
changeset
|
8 |
# |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1556
diff
changeset
|
9 |
# See COPYING file for copyrights details. |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1556
diff
changeset
|
10 |
# |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1556
diff
changeset
|
11 |
# This program is free software; you can redistribute it and/or |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1556
diff
changeset
|
12 |
# modify it under the terms of the GNU General Public License |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1556
diff
changeset
|
13 |
# as published by the Free Software Foundation; either version 2 |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1556
diff
changeset
|
14 |
# of the License, or (at your option) any later version. |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1556
diff
changeset
|
15 |
# |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1556
diff
changeset
|
16 |
# This program is distributed in the hope that it will be useful, |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1556
diff
changeset
|
17 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1556
diff
changeset
|
18 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1556
diff
changeset
|
19 |
# GNU General Public License for more details. |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1556
diff
changeset
|
20 |
# |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1556
diff
changeset
|
21 |
# You should have received a copy of the GNU General Public License |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1556
diff
changeset
|
22 |
# along with this program; if not, write to the Free Software |
486f94a8032c
fix license notices in source files and license files under GPLv2+
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1556
diff
changeset
|
23 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
814 | 24 |
|
1881
091005ec69c4
fix pylint py3k conversion warning: "(no-absolute-import) import missing `from __future__ import absolute_import`"
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1870
diff
changeset
|
25 |
|
091005ec69c4
fix pylint py3k conversion warning: "(no-absolute-import) import missing `from __future__ import absolute_import`"
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1870
diff
changeset
|
26 |
from __future__ import absolute_import |
2456
7373e3048167
python3 support: pylint,W1610 # (reduce-builtin) reduce built-in referenced
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2450
diff
changeset
|
27 |
from functools import reduce |
814 | 28 |
|
29 |
import wx |
|
30 |
import wx.lib.buttons |
|
31 |
import wx.lib.agw.customtreectrl as CT |
|
32 |
||
33 |
from PLCControler import * |
|
34 |
from util.BitmapLibrary import GetBitmap |
|
1948
b9a3f771aaab
Moved some definitions away from controller class, and adaped references them through all code.
Edouard Tisserant
parents:
1884
diff
changeset
|
35 |
from plcopen.types_enums import GetElementType |
814 | 36 |
|
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1733
diff
changeset
|
37 |
|
814 | 38 |
def GenerateName(infos): |
39 |
if infos[0] in ["input", "output", "value"]: |
|
40 |
return "%s %d:" % (infos[0], infos[1]) |
|
41 |
elif infos[0] == "range": |
|
42 |
return "%s %d %s" % (infos[0], infos[1], infos[2]) |
|
43 |
elif infos[0] == "struct": |
|
44 |
return "element %d %s" % (infos[1], infos[2]) |
|
45 |
return "%s:" % infos[0] |
|
46 |
||
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1773
diff
changeset
|
47 |
|
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1773
diff
changeset
|
48 |
# ------------------------------------------------------------------------------- |
814 | 49 |
# Search Result Panel |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1773
diff
changeset
|
50 |
# ------------------------------------------------------------------------------- |
814 | 51 |
|
1749
d73b64672238
clean-up: fix PEP8 E305 expected 2 blank lines after class or function definition
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1745
diff
changeset
|
52 |
|
1773
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
53 |
[ |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
54 |
ID_SEARCHRESULTPANEL, ID_SEARCHRESULTPANELHEADERLABEL, |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
55 |
ID_SEARCHRESULTPANELSEARCHRESULTSTREE, ID_SEARCHRESULTPANELRESETBUTTON, |
814 | 56 |
] = [wx.NewId() for _init_ctrls in range(4)] |
57 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1733
diff
changeset
|
58 |
|
814 | 59 |
class SearchResultPanel(wx.Panel): |
60 |
||
61 |
def _init_coll_MainSizer_Items(self, parent): |
|
62 |
parent.AddSizer(self.HeaderSizer, 0, border=0, flag=wx.GROW) |
|
63 |
parent.AddWindow(self.SearchResultsTree, 1, border=0, flag=wx.GROW) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
64 |
|
814 | 65 |
def _init_coll_MainSizer_Growables(self, parent): |
66 |
parent.AddGrowableCol(0) |
|
67 |
parent.AddGrowableRow(1) |
|
68 |
||
69 |
def _init_coll_HeaderSizer_Items(self, parent): |
|
1745
f9d32913bad4
clean-up: fix PEP8 E227 missing whitespace around bitwise or shift operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1744
diff
changeset
|
70 |
parent.AddWindow(self.HeaderLabel, 1, border=5, flag=wx.LEFT | wx.RIGHT | wx.ALIGN_CENTER_VERTICAL) |
814 | 71 |
parent.AddWindow(self.ResetButton, 0, border=0, flag=0) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
72 |
|
814 | 73 |
def _init_coll_HeaderSizer_Growables(self, parent): |
74 |
parent.AddGrowableCol(0) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
75 |
|
814 | 76 |
def _init_sizers(self): |
77 |
self.MainSizer = wx.FlexGridSizer(cols=1, hgap=0, rows=2, vgap=0) |
|
78 |
self.HeaderSizer = wx.BoxSizer(wx.HORIZONTAL) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
79 |
|
814 | 80 |
self._init_coll_MainSizer_Items(self.MainSizer) |
81 |
self._init_coll_MainSizer_Growables(self.MainSizer) |
|
82 |
self._init_coll_HeaderSizer_Items(self.HeaderSizer) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
83 |
|
814 | 84 |
self.SetSizer(self.MainSizer) |
85 |
||
86 |
def _init_ctrls(self, prnt): |
|
87 |
self.HeaderLabel = wx.StaticText(id=ID_SEARCHRESULTPANELHEADERLABEL, |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
88 |
name='HeaderLabel', parent=self, |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
89 |
pos=wx.Point(0, 0), size=wx.Size(0, 17), style=0) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
90 |
|
1745
f9d32913bad4
clean-up: fix PEP8 E227 missing whitespace around bitwise or shift operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1744
diff
changeset
|
91 |
search_results_tree_style = CT.TR_HAS_BUTTONS | CT.TR_NO_LINES | CT.TR_HAS_VARIABLE_ROW_HEIGHT |
814 | 92 |
self.SearchResultsTree = CT.CustomTreeCtrl(id=ID_SEARCHRESULTPANELSEARCHRESULTSTREE, |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
93 |
name="SearchResultsTree", parent=self, |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
94 |
pos=wx.Point(0, 0), style=search_results_tree_style) |
814 | 95 |
if wx.VERSION >= (2, 8, 11): |
96 |
self.SearchResultsTree.SetAGWWindowStyleFlag(search_results_tree_style) |
|
97 |
self.Bind(wx.EVT_TREE_ITEM_ACTIVATED, self.OnSearchResultsTreeItemActivated, |
|
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
98 |
id=ID_SEARCHRESULTPANELSEARCHRESULTSTREE) |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
99 |
|
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
100 |
self.ResetButton = wx.lib.buttons.GenBitmapButton( |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
101 |
self, bitmap=GetBitmap("reset"), |
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
102 |
size=wx.Size(28, 28), style=wx.NO_BORDER) |
814 | 103 |
self.ResetButton.SetToolTipString(_("Reset search result")) |
104 |
self.Bind(wx.EVT_BUTTON, self.OnResetButton, self.ResetButton) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
105 |
|
814 | 106 |
self._init_sizers() |
107 |
||
108 |
def __init__(self, parent, window): |
|
1836
d42b6cf00fa6
fix error __init__ method from base class is not called
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1782
diff
changeset
|
109 |
wx.Panel.__init__(self, id=ID_SEARCHRESULTPANEL, |
d42b6cf00fa6
fix error __init__ method from base class is not called
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1782
diff
changeset
|
110 |
name='SearchResultPanel', parent=parent, |
d42b6cf00fa6
fix error __init__ method from base class is not called
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1782
diff
changeset
|
111 |
pos=wx.Point(0, 0), |
d42b6cf00fa6
fix error __init__ method from base class is not called
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1782
diff
changeset
|
112 |
size=wx.Size(0, 0), style=wx.TAB_TRAVERSAL) |
d42b6cf00fa6
fix error __init__ method from base class is not called
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1782
diff
changeset
|
113 |
|
814 | 114 |
self.ParentWindow = window |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
115 |
|
814 | 116 |
self._init_ctrls(parent) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
117 |
|
814 | 118 |
# Define Tree item icon list |
119 |
self.TreeImageList = wx.ImageList(16, 16) |
|
120 |
self.TreeImageDict = {} |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
121 |
|
814 | 122 |
# Icons for other items |
123 |
for imgname, itemtype in [ |
|
1766
c1e5b9f19483
clean-up: fix PEP8 E129 visually indented line with same indent as next logical line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1749
diff
changeset
|
124 |
# editables |
c1e5b9f19483
clean-up: fix PEP8 E129 visually indented line with same indent as next logical line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1749
diff
changeset
|
125 |
("PROJECT", ITEM_PROJECT), |
c1e5b9f19483
clean-up: fix PEP8 E129 visually indented line with same indent as next logical line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1749
diff
changeset
|
126 |
("TRANSITION", ITEM_TRANSITION), |
c1e5b9f19483
clean-up: fix PEP8 E129 visually indented line with same indent as next logical line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1749
diff
changeset
|
127 |
("ACTION", ITEM_ACTION), |
c1e5b9f19483
clean-up: fix PEP8 E129 visually indented line with same indent as next logical line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1749
diff
changeset
|
128 |
("CONFIGURATION", ITEM_CONFIGURATION), |
c1e5b9f19483
clean-up: fix PEP8 E129 visually indented line with same indent as next logical line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1749
diff
changeset
|
129 |
("RESOURCE", ITEM_RESOURCE), |
c1e5b9f19483
clean-up: fix PEP8 E129 visually indented line with same indent as next logical line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1749
diff
changeset
|
130 |
("DATATYPE", ITEM_DATATYPE), |
c1e5b9f19483
clean-up: fix PEP8 E129 visually indented line with same indent as next logical line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1749
diff
changeset
|
131 |
("ACTION", "action_block"), |
c1e5b9f19483
clean-up: fix PEP8 E129 visually indented line with same indent as next logical line
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1749
diff
changeset
|
132 |
("IL", "IL"), |
2524
c80b0d864475
WIP adding searching capabilities in python files. was done :
Edouard Tisserant
parents:
2456
diff
changeset
|
133 |
("ST", "ST"), |
2551
245644bfcd24
Make spaghetti-code-quality great again.
Edouard Tisserant
parents:
2529
diff
changeset
|
134 |
("FILE", ITEM_CONFNODE)]: |
814 | 135 |
self.TreeImageDict[itemtype] = self.TreeImageList.Add(GetBitmap(imgname)) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
136 |
|
814 | 137 |
for itemtype in ["function", "functionBlock", "program", |
138 |
"comment", "block", "io_variable", |
|
139 |
"connector", "contact", "coil", |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
140 |
"step", "transition", "jump", |
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
141 |
"var_local", "var_input", |
814 | 142 |
"var_inout", "var_output"]: |
143 |
self.TreeImageDict[itemtype] = self.TreeImageList.Add(GetBitmap(itemtype.upper())) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
144 |
|
814 | 145 |
# Assign icon list to TreeCtrl |
146 |
self.SearchResultsTree.SetImageList(self.TreeImageList) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
147 |
|
814 | 148 |
self.ResetSearchResults() |
149 |
||
150 |
def SetSearchResults(self, criteria, search_results): |
|
151 |
self.Criteria = criteria |
|
152 |
self.SearchResults = {} |
|
153 |
self.ElementsOrder = [] |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
154 |
|
814 | 155 |
for infos, start, end, text in search_results: |
156 |
if infos[0] not in self.ElementsOrder: |
|
157 |
self.ElementsOrder.append(infos[0]) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
158 |
|
814 | 159 |
results = self.SearchResults.setdefault(infos[0], []) |
160 |
results.append((infos, start, end, text)) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
161 |
|
814 | 162 |
self.RefreshView() |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
163 |
|
814 | 164 |
def ResetSearchResults(self): |
165 |
self.Criteria = None |
|
166 |
self.ElementsOrder = [] |
|
167 |
self.SearchResults = {} |
|
168 |
self.RefreshView() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
169 |
|
814 | 170 |
def RefreshView(self): |
171 |
self.SearchResultsTree.DeleteAllItems() |
|
172 |
if self.Criteria is None: |
|
1884
48bd91d7a0ae
fix missing root in empty search results panel
Surkov Sergey <surkovsv93@gmail.com>
parents:
1881
diff
changeset
|
173 |
self.SearchResultsTree.AddRoot("") |
48bd91d7a0ae
fix missing root in empty search results panel
Surkov Sergey <surkovsv93@gmail.com>
parents:
1881
diff
changeset
|
174 |
root = self.SearchResultsTree.GetRootItem() |
48bd91d7a0ae
fix missing root in empty search results panel
Surkov Sergey <surkovsv93@gmail.com>
parents:
1881
diff
changeset
|
175 |
root.SetHilight(False) |
814 | 176 |
self.HeaderLabel.SetLabel(_("No search results available.")) |
177 |
self.ResetButton.Enable(False) |
|
178 |
else: |
|
179 |
matches_number = 0 |
|
1773
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
180 |
search_results_tree_infos = { |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
181 |
"name": _("Project '%s':") % self.ParentWindow.Controler.GetProjectName(), |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
182 |
"type": ITEM_PROJECT, |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
183 |
"data": None, |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
184 |
"text": None, |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
185 |
"matches": None, |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
186 |
} |
814 | 187 |
search_results_tree_children = search_results_tree_infos.setdefault("children", []) |
188 |
for tagname in self.ElementsOrder: |
|
189 |
results = self.SearchResults.get(tagname, []) |
|
190 |
matches_number += len(results) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
191 |
|
814 | 192 |
words = tagname.split("::") |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
193 |
|
1948
b9a3f771aaab
Moved some definitions away from controller class, and adaped references them through all code.
Edouard Tisserant
parents:
1884
diff
changeset
|
194 |
element_type = GetElementType(tagname) |
814 | 195 |
if element_type == ITEM_POU: |
196 |
element_type = self.ParentWindow.Controler.GetPouType(words[1]) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
197 |
|
814 | 198 |
element_infos = {"name": words[-1], |
199 |
"type": element_type, |
|
200 |
"data": tagname, |
|
201 |
"text": None, |
|
202 |
"matches": len(results)} |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
203 |
|
814 | 204 |
children = element_infos.setdefault("children", []) |
205 |
for infos, start, end, text in results: |
|
2524
c80b0d864475
WIP adding searching capabilities in python files. was done :
Edouard Tisserant
parents:
2456
diff
changeset
|
206 |
if len(words) == 1: # CTN match |
2551
245644bfcd24
Make spaghetti-code-quality great again.
Edouard Tisserant
parents:
2529
diff
changeset
|
207 |
child_name = {"body": str(start[0])+":", |
245644bfcd24
Make spaghetti-code-quality great again.
Edouard Tisserant
parents:
2529
diff
changeset
|
208 |
"var_inout": _("Variable:")}[infos[1]] |
245644bfcd24
Make spaghetti-code-quality great again.
Edouard Tisserant
parents:
2529
diff
changeset
|
209 |
child_type = {"body": ITEM_CONFNODE, |
245644bfcd24
Make spaghetti-code-quality great again.
Edouard Tisserant
parents:
2529
diff
changeset
|
210 |
"var_inout": "var_inout"}[infos[1]] |
2524
c80b0d864475
WIP adding searching capabilities in python files. was done :
Edouard Tisserant
parents:
2456
diff
changeset
|
211 |
elif infos[1] == "name" or element_type == ITEM_DATATYPE: |
814 | 212 |
child_name = GenerateName(infos[1:]) |
213 |
child_type = element_type |
|
214 |
else: |
|
215 |
if element_type == ITEM_RESOURCE: |
|
216 |
child_type = element_type |
|
217 |
else: |
|
218 |
child_type = infos[1] |
|
219 |
if child_type == "name": |
|
220 |
child_name = "name" |
|
221 |
elif child_type == "body": |
|
222 |
child_name = "body" |
|
223 |
if element_type == ITEM_TRANSITION: |
|
224 |
child_type = self.ParentWindow.Controler.GetTransitionBodyType(words[1], words[2]) |
|
225 |
elif element_type == ITEM_ACTION: |
|
226 |
child_type = self.ParentWindow.Controler.GetActionBodyType(words[1], words[2]) |
|
227 |
else: |
|
228 |
child_type = self.ParentWindow.Controler.GetPouBodyType(words[1]) |
|
229 |
else: |
|
230 |
child_name = GenerateName(infos[3:]) |
|
1773
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
231 |
child_infos = { |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
232 |
"name": child_name, |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
233 |
"type": child_type, |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
234 |
"data": (infos, start, end, None), |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
235 |
"text": text, |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
236 |
"matches": 1, |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
237 |
"children": [], |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
238 |
} |
814 | 239 |
children.append(child_infos) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
240 |
|
2524
c80b0d864475
WIP adding searching capabilities in python files. was done :
Edouard Tisserant
parents:
2456
diff
changeset
|
241 |
# not Project node |
814 | 242 |
if len(words) > 2: |
243 |
for _element_infos in search_results_tree_children: |
|
244 |
if _element_infos["name"] == words[1]: |
|
245 |
_element_infos["matches"] += len(children) |
|
246 |
_element_infos["children"].append(element_infos) |
|
247 |
break |
|
899
64aa66d481c5
Fix bug in resource search result highlighting
Laurent Bessard
parents:
814
diff
changeset
|
248 |
if element_type == ITEM_RESOURCE: |
64aa66d481c5
Fix bug in resource search result highlighting
Laurent Bessard
parents:
814
diff
changeset
|
249 |
search_results_tree_children.append(element_infos) |
2524
c80b0d864475
WIP adding searching capabilities in python files. was done :
Edouard Tisserant
parents:
2456
diff
changeset
|
250 |
else: # Project node or CTN |
814 | 251 |
search_results_tree_children.append(element_infos) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
252 |
|
814 | 253 |
if matches_number < 2: |
1581
2295fdc5c271
fix translation strings with multiple parameters
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
254 |
header_format = _("'{a1}' - {a2} match in project") |
814 | 255 |
else: |
1581
2295fdc5c271
fix translation strings with multiple parameters
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1571
diff
changeset
|
256 |
header_format = _("'{a1}' - {a2} matches in project") |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
257 |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1739
diff
changeset
|
258 |
self.HeaderLabel.SetLabel(header_format.format(a1=self.Criteria["find_pattern"], a2=matches_number)) |
814 | 259 |
self.ResetButton.Enable(True) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
260 |
|
814 | 261 |
if matches_number > 0: |
262 |
root = self.SearchResultsTree.GetRootItem() |
|
263 |
if root is None: |
|
264 |
root = self.SearchResultsTree.AddRoot(search_results_tree_infos["name"]) |
|
265 |
self.GenerateSearchResultsTreeBranch(root, search_results_tree_infos) |
|
266 |
self.SearchResultsTree.Expand(root) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
267 |
|
814 | 268 |
def GetTextCtrlClickFunction(self, item): |
269 |
def OnTextCtrlClick(event): |
|
270 |
self.SearchResultsTree.SelectItem(item) |
|
271 |
event.Skip() |
|
272 |
return OnTextCtrlClick |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
273 |
|
814 | 274 |
def GetTextCtrlDClickFunction(self, item): |
275 |
def OnTextCtrlDClick(event): |
|
276 |
self.ShowSearchResults(item) |
|
277 |
event.Skip() |
|
278 |
return OnTextCtrlDClick |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
279 |
|
814 | 280 |
def GenerateSearchResultsTreeBranch(self, root, infos): |
281 |
if infos["name"] == "body": |
|
282 |
item_name = "%d:" % infos["data"][1][0] |
|
283 |
else: |
|
284 |
item_name = infos["name"] |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
285 |
|
814 | 286 |
self.SearchResultsTree.SetItemText(root, item_name) |
287 |
self.SearchResultsTree.SetPyData(root, infos["data"]) |
|
288 |
self.SearchResultsTree.SetItemBackgroundColour(root, wx.WHITE) |
|
289 |
self.SearchResultsTree.SetItemTextColour(root, wx.BLACK) |
|
290 |
if infos["type"] is not None: |
|
291 |
if infos["type"] == ITEM_POU: |
|
292 |
self.SearchResultsTree.SetItemImage(root, self.TreeImageDict[self.ParentWindow.Controler.GetPouType(infos["name"])]) |
|
293 |
else: |
|
294 |
self.SearchResultsTree.SetItemImage(root, self.TreeImageDict[infos["type"]]) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
295 |
|
814 | 296 |
text = None |
297 |
if infos["text"] is not None: |
|
298 |
text = infos["text"] |
|
299 |
start, end = infos["data"][1:3] |
|
300 |
text_lines = infos["text"].splitlines() |
|
301 |
start_idx = start[1] |
|
302 |
end_idx = reduce(lambda x, y: x + y, map(lambda x: len(x) + 1, text_lines[:end[0] - start[0]]), end[1] + 1) |
|
303 |
style = wx.TextAttr(wx.BLACK, wx.Colour(206, 204, 247)) |
|
304 |
elif infos["type"] is not None and infos["matches"] > 1: |
|
305 |
text = _("(%d matches)") % infos["matches"] |
|
306 |
start_idx, end_idx = 0, len(text) |
|
307 |
style = wx.TextAttr(wx.Colour(0, 127, 174)) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
308 |
|
814 | 309 |
if text is not None: |
1745
f9d32913bad4
clean-up: fix PEP8 E227 missing whitespace around bitwise or shift operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1744
diff
changeset
|
310 |
text_ctrl_style = wx.BORDER_NONE | wx.TE_READONLY | wx.TE_RICH2 |
814 | 311 |
if wx.Platform != '__WXMSW__' or len(text.splitlines()) > 1: |
2524
c80b0d864475
WIP adding searching capabilities in python files. was done :
Edouard Tisserant
parents:
2456
diff
changeset
|
312 |
text_ctrl_style |= wx.TE_MULTILINE | wx.TE_NO_VSCROLL |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
313 |
text_ctrl = wx.TextCtrl(id=-1, parent=self.SearchResultsTree, pos=wx.Point(0, 0), |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1766
diff
changeset
|
314 |
value=text, style=text_ctrl_style) |
814 | 315 |
width, height = text_ctrl.GetTextExtent(text) |
316 |
text_ctrl.SetClientSize(wx.Size(width + 1, height)) |
|
317 |
text_ctrl.SetBackgroundColour(self.SearchResultsTree.GetBackgroundColour()) |
|
318 |
text_ctrl.Bind(wx.EVT_LEFT_DOWN, self.GetTextCtrlClickFunction(root)) |
|
319 |
text_ctrl.Bind(wx.EVT_LEFT_DCLICK, self.GetTextCtrlDClickFunction(root)) |
|
320 |
text_ctrl.SetInsertionPoint(0) |
|
321 |
text_ctrl.SetStyle(start_idx, end_idx, style) |
|
322 |
self.SearchResultsTree.SetItemWindow(root, text_ctrl) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
323 |
|
1870
4d070115b552
fix pylint error '(too-many-function-args) Too many positional arguments for function call'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1847
diff
changeset
|
324 |
item, root_cookie = self.SearchResultsTree.GetFirstChild(root) |
814 | 325 |
for child in infos["children"]: |
326 |
if item is None: |
|
327 |
item = self.SearchResultsTree.AppendItem(root, "") |
|
328 |
item, root_cookie = self.SearchResultsTree.GetNextChild(root, root_cookie) |
|
329 |
self.GenerateSearchResultsTreeBranch(item, child) |
|
330 |
item, root_cookie = self.SearchResultsTree.GetNextChild(root, root_cookie) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
331 |
|
814 | 332 |
def ShowSearchResults(self, item): |
333 |
data = self.SearchResultsTree.GetPyData(item) |
|
2450
5024c19ca8f0
python3 support: pylint, W1652 # (deprecated-types-field) Accessing a deprecated fields on the types module
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
2177
diff
changeset
|
334 |
if isinstance(data, tuple): |
814 | 335 |
search_results = [data] |
336 |
else: |
|
337 |
search_results = self.SearchResults.get(data, []) |
|
1622
a0c7a6cb1690
fix highlight of search result in Search Result Panel
Surkov Sergey <surkovsv93@gmail.com>
parents:
1621
diff
changeset
|
338 |
self.ParentWindow.ClearHighlights(SEARCH_RESULT_HIGHLIGHT) |
1847
6198190bc121
explicitly mark unused variables found by pylint with _ or dummy
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1846
diff
changeset
|
339 |
for infos, start, end, _text in search_results: |
814 | 340 |
self.ParentWindow.ShowSearchResult(infos, start, end) |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
341 |
|
814 | 342 |
def OnSearchResultsTreeItemActivated(self, event): |
343 |
self.ShowSearchResults(event.GetItem()) |
|
344 |
event.Skip() |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1622
diff
changeset
|
345 |
|
814 | 346 |
def OnResetButton(self, event): |
347 |
self.ResetSearchResults() |
|
348 |
self.ParentWindow.ClearSearchResults() |
|
349 |
event.Skip() |