PrEditor 2.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (179) hide show
  1. preditor/__init__.py +315 -0
  2. preditor/__main__.py +13 -0
  3. preditor/about_module.py +165 -0
  4. preditor/cli.py +192 -0
  5. preditor/config.py +318 -0
  6. preditor/constants.py +13 -0
  7. preditor/contexts.py +210 -0
  8. preditor/cores/__init__.py +0 -0
  9. preditor/cores/core.py +20 -0
  10. preditor/dccs/.hab.json +10 -0
  11. preditor/dccs/maya/PrEditor_maya.mod +1 -0
  12. preditor/dccs/maya/README.md +22 -0
  13. preditor/dccs/maya/plug-ins/PrEditor_maya.py +141 -0
  14. preditor/dccs/studiomax/PackageContents.xml +32 -0
  15. preditor/dccs/studiomax/PrEditor-PrEditor_Show.mcr +8 -0
  16. preditor/dccs/studiomax/README.md +17 -0
  17. preditor/dccs/studiomax/preditor.ms +16 -0
  18. preditor/dccs/studiomax/preditor_menu.mnx +7 -0
  19. preditor/debug.py +149 -0
  20. preditor/delayable_engine/__init__.py +302 -0
  21. preditor/delayable_engine/delayables.py +85 -0
  22. preditor/enum.py +728 -0
  23. preditor/excepthooks.py +165 -0
  24. preditor/gui/__init__.py +56 -0
  25. preditor/gui/app.py +163 -0
  26. preditor/gui/codehighlighter.py +289 -0
  27. preditor/gui/completer.py +237 -0
  28. preditor/gui/console.py +605 -0
  29. preditor/gui/console_base.py +911 -0
  30. preditor/gui/dialog.py +181 -0
  31. preditor/gui/drag_tab_bar.py +625 -0
  32. preditor/gui/editor_chooser.py +57 -0
  33. preditor/gui/errordialog.py +69 -0
  34. preditor/gui/find_files.py +137 -0
  35. preditor/gui/fuzzy_search/__init__.py +0 -0
  36. preditor/gui/fuzzy_search/fuzzy_search.py +97 -0
  37. preditor/gui/group_tab_widget/__init__.py +0 -0
  38. preditor/gui/group_tab_widget/group_tab_widget.py +528 -0
  39. preditor/gui/group_tab_widget/grouped_tab_menu.py +35 -0
  40. preditor/gui/group_tab_widget/grouped_tab_models.py +107 -0
  41. preditor/gui/group_tab_widget/grouped_tab_widget.py +223 -0
  42. preditor/gui/group_tab_widget/one_tab_widget.py +96 -0
  43. preditor/gui/level_buttons.py +358 -0
  44. preditor/gui/logger_window_handler.py +77 -0
  45. preditor/gui/logger_window_plugin.py +35 -0
  46. preditor/gui/loggerwindow.py +2405 -0
  47. preditor/gui/newtabwidget.py +69 -0
  48. preditor/gui/output_console.py +11 -0
  49. preditor/gui/qtdesigner/__init__.py +21 -0
  50. preditor/gui/qtdesigner/_log_plugin.py +29 -0
  51. preditor/gui/qtdesigner/console_base_plugin.py +48 -0
  52. preditor/gui/qtdesigner/console_predit_plugin.py +48 -0
  53. preditor/gui/set_text_editor_path_dialog.py +61 -0
  54. preditor/gui/status_label.py +99 -0
  55. preditor/gui/suggest_path_quotes_dialog.py +50 -0
  56. preditor/gui/ui/editor_chooser.ui +93 -0
  57. preditor/gui/ui/errordialog.ui +74 -0
  58. preditor/gui/ui/find_files.ui +140 -0
  59. preditor/gui/ui/loggerwindow.ui +1909 -0
  60. preditor/gui/ui/set_text_editor_path_dialog.ui +189 -0
  61. preditor/gui/ui/suggest_path_quotes_dialog.ui +225 -0
  62. preditor/gui/window.py +161 -0
  63. preditor/gui/workbox_mixin.py +1139 -0
  64. preditor/gui/workbox_text_edit.py +136 -0
  65. preditor/gui/workboxwidget.py +315 -0
  66. preditor/logging_config.py +55 -0
  67. preditor/osystem.py +401 -0
  68. preditor/plugins.py +118 -0
  69. preditor/prefs.py +381 -0
  70. preditor/resource/environment_variables.html +26 -0
  71. preditor/resource/error_mail.html +85 -0
  72. preditor/resource/error_mail_inline.html +41 -0
  73. preditor/resource/img/README.md +17 -0
  74. preditor/resource/img/arrow_forward.png +0 -0
  75. preditor/resource/img/check-bold.png +0 -0
  76. preditor/resource/img/chevron-down.png +0 -0
  77. preditor/resource/img/chevron-up.png +0 -0
  78. preditor/resource/img/close-thick.png +0 -0
  79. preditor/resource/img/comment-edit.png +0 -0
  80. preditor/resource/img/content-copy.png +0 -0
  81. preditor/resource/img/content-cut.png +0 -0
  82. preditor/resource/img/content-duplicate.png +0 -0
  83. preditor/resource/img/content-paste.png +0 -0
  84. preditor/resource/img/content-save.png +0 -0
  85. preditor/resource/img/debug_disabled.png +0 -0
  86. preditor/resource/img/eye-check.png +0 -0
  87. preditor/resource/img/file-plus.png +0 -0
  88. preditor/resource/img/file-remove.png +0 -0
  89. preditor/resource/img/format-align-left.png +0 -0
  90. preditor/resource/img/format-letter-case-lower.png +0 -0
  91. preditor/resource/img/format-letter-case-upper.png +0 -0
  92. preditor/resource/img/format-letter-case.svg +1 -0
  93. preditor/resource/img/information.png +0 -0
  94. preditor/resource/img/logging_critical.png +0 -0
  95. preditor/resource/img/logging_custom.png +0 -0
  96. preditor/resource/img/logging_debug.png +0 -0
  97. preditor/resource/img/logging_error.png +0 -0
  98. preditor/resource/img/logging_info.png +0 -0
  99. preditor/resource/img/logging_not_set.png +0 -0
  100. preditor/resource/img/logging_warning.png +0 -0
  101. preditor/resource/img/marker.png +0 -0
  102. preditor/resource/img/play.png +0 -0
  103. preditor/resource/img/playlist-play.png +0 -0
  104. preditor/resource/img/plus-minus-variant.png +0 -0
  105. preditor/resource/img/preditor.ico +0 -0
  106. preditor/resource/img/preditor.png +0 -0
  107. preditor/resource/img/preditor.psd +0 -0
  108. preditor/resource/img/preditor.svg +44 -0
  109. preditor/resource/img/regex.svg +1 -0
  110. preditor/resource/img/restart.svg +1 -0
  111. preditor/resource/img/skip-forward-outline.png +0 -0
  112. preditor/resource/img/skip-next-outline.png +0 -0
  113. preditor/resource/img/skip-next.png +0 -0
  114. preditor/resource/img/skip-previous.png +0 -0
  115. preditor/resource/img/subdirectory-arrow-right.png +0 -0
  116. preditor/resource/img/text-search-variant.png +0 -0
  117. preditor/resource/img/warning-big.png +0 -0
  118. preditor/resource/lang/python.json +30 -0
  119. preditor/resource/pref_updates/pref_updates.json +17 -0
  120. preditor/resource/settings.ini +25 -0
  121. preditor/resource/stylesheet/Bright.css +76 -0
  122. preditor/resource/stylesheet/Dark.css +210 -0
  123. preditor/scintilla/__init__.py +40 -0
  124. preditor/scintilla/delayables/__init__.py +11 -0
  125. preditor/scintilla/delayables/smart_highlight.py +97 -0
  126. preditor/scintilla/delayables/spell_check.py +174 -0
  127. preditor/scintilla/documenteditor.py +1924 -0
  128. preditor/scintilla/finddialog.py +68 -0
  129. preditor/scintilla/lang/__init__.py +80 -0
  130. preditor/scintilla/lang/config/bash.ini +15 -0
  131. preditor/scintilla/lang/config/batch.ini +14 -0
  132. preditor/scintilla/lang/config/cpp.ini +19 -0
  133. preditor/scintilla/lang/config/css.ini +19 -0
  134. preditor/scintilla/lang/config/eyeonscript.ini +17 -0
  135. preditor/scintilla/lang/config/html.ini +21 -0
  136. preditor/scintilla/lang/config/javascript.ini +24 -0
  137. preditor/scintilla/lang/config/lua.ini +16 -0
  138. preditor/scintilla/lang/config/maxscript.ini +20 -0
  139. preditor/scintilla/lang/config/mel.ini +18 -0
  140. preditor/scintilla/lang/config/mu.ini +22 -0
  141. preditor/scintilla/lang/config/nsi.ini +19 -0
  142. preditor/scintilla/lang/config/perl.ini +19 -0
  143. preditor/scintilla/lang/config/puppet.ini +19 -0
  144. preditor/scintilla/lang/config/python.ini +28 -0
  145. preditor/scintilla/lang/config/ruby.ini +19 -0
  146. preditor/scintilla/lang/config/sql.ini +7 -0
  147. preditor/scintilla/lang/config/xml.ini +21 -0
  148. preditor/scintilla/lang/config/yaml.ini +18 -0
  149. preditor/scintilla/lang/language.py +240 -0
  150. preditor/scintilla/lexers/__init__.py +0 -0
  151. preditor/scintilla/lexers/cpplexer.py +22 -0
  152. preditor/scintilla/lexers/javascriptlexer.py +27 -0
  153. preditor/scintilla/lexers/maxscriptlexer.py +235 -0
  154. preditor/scintilla/lexers/mellexer.py +369 -0
  155. preditor/scintilla/lexers/mulexer.py +33 -0
  156. preditor/scintilla/lexers/pythonlexer.py +42 -0
  157. preditor/scintilla/ui/finddialog.ui +160 -0
  158. preditor/settings.py +71 -0
  159. preditor/stream/__init__.py +72 -0
  160. preditor/stream/console_handler.py +169 -0
  161. preditor/stream/director.py +144 -0
  162. preditor/stream/manager.py +97 -0
  163. preditor/streamhandler_helper.py +46 -0
  164. preditor/utils/__init__.py +191 -0
  165. preditor/utils/call_stack.py +86 -0
  166. preditor/utils/cute.py +106 -0
  167. preditor/utils/stylesheets.py +54 -0
  168. preditor/utils/text_search.py +338 -0
  169. preditor/version.py +34 -0
  170. preditor/weakref.py +363 -0
  171. preditor-2.1.0.dist-info/METADATA +308 -0
  172. preditor-2.1.0.dist-info/RECORD +179 -0
  173. preditor-2.1.0.dist-info/WHEEL +5 -0
  174. preditor-2.1.0.dist-info/entry_points.txt +19 -0
  175. preditor-2.1.0.dist-info/licenses/LICENSE +165 -0
  176. preditor-2.1.0.dist-info/top_level.txt +3 -0
  177. tests/encodings/test_ecoding.py +33 -0
  178. tests/find_files/test_find_files.py +74 -0
  179. tests/ide/test_delayable_engine.py +171 -0
@@ -0,0 +1,369 @@
1
+ from __future__ import absolute_import
2
+
3
+ import re
4
+
5
+ from Qt.QtGui import QColor
6
+
7
+ from .. import Qsci
8
+
9
+ MEL_SYNTAX = """and array as case catch continue do else exit float for from global if
10
+ in int local not of off on or proc random return select string then throw to try vector
11
+ when where while with true false
12
+ """
13
+
14
+ # Generated by the following code
15
+ # import maya.cmds as cmds
16
+ # print(' '.join(cmds.help( '[a-z]*', list=True )))
17
+ MEL_KEYWORDS = """window aaf2fcp about abs acos acosd acosh addAttr addDynamic
18
+ addExtension addIK2BsolverCallbacks addMetadata addPP adskAsset adskAssetLibrary
19
+ adskAssetList adskAssetListUI adskRepresentation affectedNet affects agFormatIn
20
+ agFormatOut aimConstraint air aliasAttr align alignCtx alignCurve alignSurface
21
+ allNodeTypes ambientLight aminocompound angle angleBetween animCurveEditor animDisplay
22
+ animLayer animView annotate apfEntityNode applicationcomplex applyAttrPattern
23
+ applyMetadata applyTake arcLenDimContext arcLengthDimension arclen arrayMapper
24
+ art3dPaintCtx artAttr artAttrCtx artAttrPaintVertexCtx artAttrSkinPaint
25
+ artAttrSkinPaintCmd artAttrSkinPaintCtx artAttrTool artBaseCtx artBuildPaintMenu
26
+ artFluidAttr artFluidAttrCtx artPuttyCtx artSelect artSelectCtx artSetPaint
27
+ artSetPaintCtx artUserPaintCtx asin asind asinh assembly assignCommand assignInputDevice
28
+ assignViewportFactories atan atan2 atan2d atand atanh attachCurve attachDeviceAttr
29
+ attachFluidCache attachGeometryCache attachNclothCache attachSurface attrColorSliderGrp
30
+ attrCompatibility attrControlGrp attrEnumOptionMenu attrEnumOptionMenuGrp attrFieldGrp
31
+ attrFieldSliderGrp attrNavigationControlGrp attributeInfo attributeMenu attributeName
32
+ attributeQuery audioTrack autoKeyframe autoPlace autoSave bakeClip bakePartialHistory
33
+ bakeResults bakeSimulation baseTemplate baseView batchRender besselj0 besselj1 besseljn
34
+ besselyn bevel bevelPlus bezierAnchorPreset bezierAnchorState bezierCurveToNurbs
35
+ bezierInfo bifrost bifrostCreateMayaView bifrostproject binMembership bindSkin blend
36
+ blend2 blendCtx blendShape blendShapeEditor blendShapePanel blendTwoAttr blindDataType
37
+ blocksize boneLattice boundary boxDollyCtx boxZoomCtx bufferCurve buildBookmarkMenu
38
+ buildKeyframeMenu buildSendToBackburnerDialog button buttonManip cMuscleAbout
39
+ cMuscleBindSticky cMuscleCache cMuscleCompIndex cMuscleQuery cMuscleRayIntersect
40
+ cMuscleRelaxSetup cMuscleSimulate cMuscleSplineBind cMuscleWeight cMuscleWeightDefault
41
+ cMuscleWeightMirror cMuscleWeightPrune cMuscleWeightSave cacheFile cacheFileCombine
42
+ cacheFileMerge cacheFileTrack callbacks camera cameraSet cameraView canCreateManip
43
+ canvas ceil changeSubdivComponentDisplayLevel changeSubdivRegion channelBox character
44
+ characterMap characterizationToolUICmd characterize chdir checkBox checkBoxGrp
45
+ checkDefaultRenderGlobals choice circle circularFillet clamp clear clearCache
46
+ clearNClothStartState clearShear clip clipEditor clipEditorCurrentTimeCtx clipMatching
47
+ clipSchedule clipSchedulerOutliner closeCurve closeSurface cluster cmdFileOutput
48
+ cmdScrollFieldExecuter cmdScrollFieldReporter cmdShell cmdpipe
49
+ coarsenSubdivSelectionList collision color colorAtPoint colorEditor colorIndex
50
+ colorIndexSliderGrp colorManagementCatalog colorManagementPrefs colorSliderButtonGrp
51
+ colorSliderGrp columnLayout commandEcho commandLine commandLogging commandPort
52
+ componentBox componentEditor condition cone confirmDialog connectAttr connectControl
53
+ connectDynamic connectJoint connectionInfo constrain constrainValue constructionHistory
54
+ container containerBind containerProxy containerPublish containerTemplate containerView
55
+ contextInfo control convertIffToPsd convertLightmap convertLightmapSetup convertSolidTx
56
+ convertTessellation convertUnit copyAttr copyDeformerWeights copyFlexor copyKey copyNode
57
+ copySkinWeights cos cosd cosh createAttrPatterns createDisplayLayer createEditor
58
+ createLayeredPsdFile createNode createNurbsCircleCtx createNurbsConeCtx
59
+ createNurbsCubeCtx createNurbsCylinderCtx createNurbsPlaneCtx createNurbsSphereCtx
60
+ createNurbsSquareCtx createNurbsTorusCtx createPolyConeCtx createPolyCubeCtx
61
+ createPolyCylinderCtx createPolyHelixCtx createPolyPipeCtx createPolyPlaneCtx
62
+ createPolyPlatonicSolidCtx createPolyPrismCtx createPolyPyramidCtx
63
+ createPolySoccerBallCtx createPolySphereCtx createPolyTorusCtx createPtexUV
64
+ createRenderLayer createSubdivRegion cross ctxAbort ctxCompletion ctxData ctxEditMode
65
+ ctxTraverse currentCtx currentTime currentTimeCtx currentUnit curve curveAddPtCtx
66
+ curveBezierCtx curveCVCtx curveEPCtx curveEditorCtx curveIntersect curveMoveEPCtx
67
+ curveOnSurface curveRGBColor curveSketchCtx customerInvolvementProgram cutKey cycleCheck
68
+ cylinder dR_DoCmd dR_activeHandleX dR_activeHandleXY dR_activeHandleXYZ
69
+ dR_activeHandleXZ dR_activeHandleY dR_activeHandleYZ dR_activeHandleZ
70
+ dR_autoActivateMtkTGL dR_autoWeldTGL dR_bevelPress dR_bevelRelease dR_bevelTool
71
+ dR_bridgePress dR_bridgeRelease dR_bridgeTool dR_cameraToPoly dR_connectPress
72
+ dR_connectRelease dR_connectTool dR_contextChanged dR_convertSelectionToEdge
73
+ dR_convertSelectionToFace dR_convertSelectionToUV dR_convertSelectionToVertex
74
+ dR_coordSpaceCustom dR_coordSpaceLocal dR_coordSpaceObject dR_coordSpaceWorld
75
+ dR_createCameraFromView dR_curveSnapPress dR_curveSnapRelease dR_customPivotTool
76
+ dR_customPivotToolPress dR_customPivotToolRelease dR_cycleCustomCameras
77
+ dR_decreaseManipSize dR_defLightTGL dR_disableTexturesTGL dR_edgedFacesTGL
78
+ dR_extrudeBevelPress dR_extrudeBevelRelease dR_extrudePress dR_extrudeRelease
79
+ dR_extrudeTool dR_graphEditorTGL dR_gridAllTGL dR_gridSnapPress dR_gridSnapRelease
80
+ dR_hypergraphTGL dR_hypershadeTGL dR_increaseManipSize dR_loadRecentFile1
81
+ dR_loadRecentFile2 dR_loadRecentFile3 dR_loadRecentFile4 dR_lockSelTGL dR_modeEdge
82
+ dR_modeMulti dR_modePoly dR_modeUV dR_modeVert dR_movePress dR_moveRelease
83
+ dR_moveTweakTool dR_mtkPanelTGL dR_mtkToolTGL dR_multiCutPointCmd dR_multiCutPress
84
+ dR_multiCutRelease dR_multiCutSlicePointCmd dR_multiCutTool dR_nexCmd dR_nexTool
85
+ dR_objectBackfaceTGL dR_objectEdgesOnlyTGL dR_objectHideTGL dR_objectTemplateTGL
86
+ dR_objectXrayTGL dR_outlinerTGL dR_overlayAppendMeshTGL dR_paintPress dR_paintRelease
87
+ dR_pointSnapPress dR_pointSnapRelease dR_preferencesTGL dR_quadDrawClearDots
88
+ dR_quadDrawPress dR_quadDrawRelease dR_quadDrawTool dR_renderGlobalsTGL dR_renderLastTGL
89
+ dR_rotatePress dR_rotateRelease dR_rotateTweakTool dR_safeFrameTGL dR_scalePress
90
+ dR_scaleRelease dR_scaleTweakTool dR_selConstraintAngle dR_selConstraintBorder
91
+ dR_selConstraintElement dR_selConstraintOff dR_selectAll dR_selectInvert
92
+ dR_selectModeHybrid dR_selectModeMarquee dR_selectModeRaycast dR_selectModeTweakMarquee
93
+ dR_selectPress dR_selectRelease dR_selectSimilar dR_selectTool dR_setExtendBorder
94
+ dR_setExtendEdge dR_setExtendLoop dR_setRelaxAffectsAll dR_setRelaxAffectsAuto
95
+ dR_setRelaxAffectsBorders dR_setRelaxAffectsInterior dR_showAbout dR_showHelp
96
+ dR_showOptions dR_shrinkWrap dR_slideEdge dR_slideOff dR_slideSurface
97
+ dR_softSelDistanceTypeSurface dR_softSelDistanceTypeVolume dR_softSelStickyPress
98
+ dR_softSelStickyRelease dR_softSelToolTGL dR_symmetrize dR_symmetryTGL
99
+ dR_targetWeldPress dR_targetWeldRelease dR_targetWeldTool dR_testCmd dR_timeConfigTGL
100
+ dR_tweakPress dR_tweakRelease dR_vertLockSelected dR_vertSelectLocked dR_vertUnlockAll
101
+ dR_viewBack dR_viewBottom dR_viewFront dR_viewGridTGL dR_viewJointsTGL dR_viewLeft
102
+ dR_viewLightsTGL dR_viewPersp dR_viewRight dR_viewTop dR_viewXrayTGL dR_visorTGL
103
+ dR_wireframeSmoothTGL dagObjectCompare dagObjectHit dagPose dataStructure date dbPeek
104
+ dbcount dbmessage dbpeek dbtrace debug debugNamespace debugVar defaultLightListCheckBox
105
+ defaultNavigation defineDataServer defineVirtualDevice deformer deformerWeights
106
+ deg_to_rad delete deleteAttr deleteAttrPattern deleteExtension deleteGeometryCache
107
+ deleteHistoryAheadOfGeomCache deleteNclothCache deleteUI delrandstr detachCurve
108
+ detachDeviceAttr detachSurface deviceEditor deviceManager devicePanel dgControl dgInfo
109
+ dgPerformance dgcontrol dgdebug dgdirty dgeval dgfilter dgfootprint dgmodified dgstats
110
+ dgtimer dimWhen directConnectPath directKeyCtx directionalLight dirmap disable
111
+ disableIncorrectNameWarning disconnectAttr disconnectJoint diskCache displacementToPoly
112
+ displayAffected displayColor displayCull displayLevelOfDetail displayPref
113
+ displayRGBColor displaySmoothness displayStats displayString displaySurface
114
+ distanceDimContext distanceDimension dnoise doBlur dockControl dolly dollyCtx
115
+ dopeSheetEditor dot doubleProfileBirailSurface dpBirailCtx drag dragAttrContext
116
+ draggerContext drawExtrudeFacetCtx dropoffLocator duplicate duplicateCurve
117
+ duplicateSurface dynCache dynControl dynExport dynExpression dynGlobals dynPaintCtx
118
+ dynPaintEditor dynParticleCtx dynPref dynSelectCtx dynTestData dynWireCtx
119
+ dynamicConstraintRemove dynamicLoad editDisplayLayerGlobals editDisplayLayerMembers
120
+ editMetadata editRenderLayerAdjustment editRenderLayerGlobals editRenderLayerMembers
121
+ editor editorTemplate effector emit emitter enableDevice encodeString env erf erfc error
122
+ eval evalContinue evalDeferred evalEcho evalNoSelectNotify event exactWorldBoundingBox
123
+ exclusiveLightCheckBox exec exists exp expm1 exportEdits expression
124
+ expressionEditorListen extendCurve extendFluid extendSurface extrude fcheck fclose feof
125
+ fflush fgetline fgetword file fileBrowserDialog fileDialog fileDialog2 fileInfo
126
+ filePathEditor filetest filletCurve filter filterCurve filterExpand findKeyframe
127
+ findType fitBspline flagTest flexor floatField floatFieldGrp floatScrollBar floatSlider
128
+ floatSlider2 floatSliderButtonGrp floatSliderGrp floor flow flowLayout fluidAppend
129
+ fluidAppendOpt fluidCacheInfo fluidDeleteCache fluidDeleteCacheFrames
130
+ fluidDeleteCacheFramesOpt fluidDeleteCacheOpt fluidEmitter fluidMergeCache
131
+ fluidMergeCacheOpt fluidReplaceCache fluidReplaceCacheOpt fluidReplaceFrames
132
+ fluidReplaceFramesOpt fluidVoxelInfo flushIdleQueue flushThumbnailCache flushUndo fmod
133
+ fontAttributes fontDialog fopen formLayout format fprint frameBufferName frameLayout
134
+ fread freadAllLines freadAllText freeFormFillet frewind fwrite fwriteAllLines
135
+ fwriteAllText gameExporter gamma gauss gbGameCommand gbLogManager geoUtils geomBind
136
+ geomToBBox geometryAppendCache geometryAppendCacheOpt geometryCache geometryCacheOpt
137
+ geometryConstraint geometryDeleteCacheFrames geometryDeleteCacheFramesOpt
138
+ geometryDeleteCacheOpt geometryExportCache geometryExportCacheOpt geometryMergeCache
139
+ geometryMergeCacheOpt geometryReplaceCache geometryReplaceCacheFrames
140
+ geometryReplaceCacheFramesOpt geometryReplaceCacheOpt getAttr getClassification
141
+ getDefaultBrush getFileList getFluidAttr getInputDeviceRange getLastError getMetadata
142
+ getModifiers getModulePath getPanel getParticleAttr getProcArguments
143
+ getRenderDependencies getRenderTasks getenv getpid glRender glRenderEditor globalStitch
144
+ gmatch goal gpuCache grabColor gradientControl gradientControlNoAttr graphDollyCtx
145
+ graphSelectContext graphTrackCtx gravity greasePencil greasePencilCtx greasePencilHelper
146
+ greaseRenderPlane grid gridLayout group groupParts hardenPointCurve hardware
147
+ hardwareRenderPanel hasMetadata headsUpDisplay headsUpMessage help helpLine hermite hide
148
+ hikBodyPart hikCharacterToolWidget hikCustomRigToolWidget hikGetEffectorIdFromName
149
+ hikGetNodeCount hikGetNodeIdFromName hikGlobals hikManip hikRigAlign hikRigSync hilite
150
+ hitTest hotBox hotkey hotkeyCheck hsv_to_rgb hudButton hudSlider hudSliderButton
151
+ hwReflectionMap hwRender hwRenderLoad hyperGraph hyperPanel hyperShade hypot iGroom
152
+ iconTextButton iconTextCheckBox iconTextRadioButton iconTextRadioCollection
153
+ iconTextScrollList iconTextStaticLabel igBrush igBrushContext igConvertToLogical
154
+ ikHandle ikHandleCtx ikHandleDisplayScale ikSolver ikSplineHandleCtx
155
+ ikSpringSolverCallbacks ikSpringSolverRestPose ikSystem ikSystemInfo ikfkDisplayMethod
156
+ illustratorCurves image imagePlane imageWindowEditor imfPlugins inViewMessage
157
+ inheritTransform insertJoint insertJointCtx insertKeyCtx insertKnotCurve
158
+ insertKnotSurface instance instanceable instancer intField intFieldGrp intScrollBar
159
+ intSlider intSliderGrp interactionStyle internalVar intersect iprEngine isConnected
160
+ isDescendentPulling isDirty isTrue isolateSelect itemFilter itemFilterAttr
161
+ itemFilterRender itemFilterType iterOnNurbs joint jointCluster jointCtx
162
+ jointDisplayScale jointLattice journal keyTangent keyframe keyframeOutliner
163
+ keyframeRegionCurrentTimeCtx keyframeRegionDirectKeyCtx keyframeRegionDollyCtx
164
+ keyframeRegionInsertKeyCtx keyframeRegionMoveKeyCtx keyframeRegionScaleKeyCtx
165
+ keyframeRegionSelectKeyCtx keyframeRegionSetKeyCtx keyframeRegionTrackCtx keyframeStats
166
+ keyingGroup lassoContext lattice latticeDeformKeyCtx launch launchImageEditor
167
+ layerButton layeredShaderPort layeredTexturePort layout layoutDialog license
168
+ licenseCheck lightList lightlink linearPrecision linstep listAnimatable listAttr
169
+ listAttrPatterns listCameras listConnections listDeviceAttachments listHistory
170
+ listInputDeviceAxes listInputDeviceButtons listInputDevices listNodeTypes
171
+ listNodesWithIncorrectNames listRelatives listSets loadFluid loadModule loadPlugin
172
+ loadPrefObjects loadUI lockNode loft log log10 log1p lookThru ls lsThroughFilter lsUI
173
+ mag makeIdentity makeLive makePaintable makeSingleSurface makebot manipComponentPivot
174
+ manipMoveContext manipMoveLimitsCtx manipOptions manipPivot manipRotateContext
175
+ manipRotateLimitsCtx manipScaleContext manipScaleLimitsCtx marker match mateCtx max
176
+ maxfloat maxint mayaPreviewRenderIntoNewWindow melInfo memory memoryDiag menu
177
+ menuBarLayout menuEditor menuItem menuSet menuSetPref meshIntersectTest messageLine min
178
+ minfloat minimizeApp minint mirrorJoint modelCurrentTimeCtx modelEditor modelPanel
179
+ modelingToolkitSuperCtx moduleDetectionLogic moduleInfo mouldMesh mouldSrf mouldSubdiv
180
+ mouse movIn movOut move moveKeyCtx moveVertexAlongDirection movieCompressor movieInfo
181
+ mpBirailCtx mrFactory mrMapVisualizer mrProgress mrShaderManager mtkQuadDrawPoint
182
+ mtkShrinkWrap muMessageAdd muMessageDelete muMessageQuery multiProfileBirailSurface
183
+ multiTouch mute mw_FloatingMaya mw_vpe myTestCmd nBase nClothAppend nClothAppendOpt
184
+ nClothCache nClothCacheOpt nClothCreate nClothCreateOptions nClothDeleteCacheFrames
185
+ nClothDeleteCacheFramesOpt nClothDeleteCacheOpt nClothDeleteHistory
186
+ nClothDeleteHistoryOpt nClothMakeCollide nClothMakeCollideOptions nClothMergeCache
187
+ nClothMergeCacheOpt nClothRemove nClothReplaceCache nClothReplaceCacheOpt
188
+ nClothReplaceFrames nClothReplaceFramesOpt nParticle nameCommand nameField namespace
189
+ namespaceInfo newton nexConnectContext nexConnectCtx nexCtx nexMultiCutContext
190
+ nexMultiCutCtx nexOpt nexQuadDrawContext nexQuadDrawCtx nexTRSContext nodeCast
191
+ nodeEditor nodeGrapher nodeIconButton nodeOutliner nodePreset nodeTreeLister nodeType
192
+ noise nonLinear nop normalConstraint nucleusDisplayDynamicConstraintNodes
193
+ nucleusDisplayMaterialNodes nucleusDisplayNComponentNodes nucleusDisplayOtherNodes
194
+ nucleusDisplayTextureNodes nucleusDisplayTransformNodes nucleusGetEffectsAsset
195
+ nucleusGetnClothExample nucleusGetnParticleExample nurbsBoolean nurbsCopyUVSet nurbsCube
196
+ nurbsCurveRebuildPref nurbsCurveToBezier nurbsEditUV nurbsPlane nurbsSelect nurbsSquare
197
+ nurbsToPoly nurbsToPolygonsPref nurbsToSubdiv nurbsToSubdivPref nurbsUVSet objExists
198
+ objectCenter objectType objectTypeUI objstats offsetCurve offsetCurveOnSurface
199
+ offsetSurface ogs ogsRender ogsdebug openGLExtension openMayaPref optionMenu
200
+ optionMenuGrp optionVar orbit orbitCtx orientConstraint outlinerEditor outlinerPanel
201
+ overrideModifier paint3d paintEffectsDisplay pairBlend palettePort panZoom panZoomCtx
202
+ paneLayout panel panelConfiguration panelHistory paramDimContext paramDimension
203
+ paramLocator parent parentConstraint particle particleExists particleFill
204
+ particleInstancer particleRenderInfo partition pasteKey pathAnimation pause pclose
205
+ perCameraVisibility percent performanceOptions pfxstrokes pickWalk picture pixelMove
206
+ planarSrf plane play playbackOptions playblast pluginDisplayFilter pluginInfo
207
+ pointConstraint pointCurveConstraint pointLight pointOnCurve pointOnPolyConstraint
208
+ pointOnSurface pointPosition poleVectorConstraint polyAppend polyAppendFacetCtx
209
+ polyAppendVertex polyAutoProjection polyAverageNormal polyAverageVertex polyBevel
210
+ polyBlendColor polyBlindData polyBoolOp polyBridgeEdge polyCBoolOp polyCacheMonitor
211
+ polyCheck polyChipOff polyClipboard polyCloseBorder polyCollapseEdge polyCollapseFacet
212
+ polyColorBlindData polyColorDel polyColorMod polyColorPerVertex polyColorSet polyCompare
213
+ polyCone polyConnectComponents polyCopyUV polyCrease polyCreaseCtx polyCreateFacet
214
+ polyCreateFacetCtx polyCube polyCut polyCutCtx polyCylinder polyCylindricalProjection
215
+ polyDelEdge polyDelFacet polyDelVertex polyDuplicateAndConnect polyDuplicateEdge
216
+ polyEditEdgeFlow polyEditUV polyEditUVShell polyEvaluate polyExtrudeEdge
217
+ polyExtrudeFacet polyExtrudeVertex polyFlipEdge polyFlipUV polyForceUV polyGeoSampler
218
+ polyHelix polyHole polyInfo polyInstallAction polyIterOnPoly polyLayoutUV
219
+ polyListComponentConversion polyMapCut polyMapDel polyMapSew polyMapSewMove
220
+ polyMergeEdge polyMergeEdgeCtx polyMergeFacet polyMergeFacetCtx polyMergeUV
221
+ polyMergeVertex polyMirrorFace polyMoveEdge polyMoveFacet polyMoveFacetUV polyMoveUV
222
+ polyMoveVertex polyMultiLayoutUV polyNormal polyNormalPerVertex polyNormalizeUV
223
+ polyOptUvs polyOptions polyOutput polyPipe polyPlanarProjection polyPlane
224
+ polyPlatonicSolid polyPoke polyPrimitive polyPrimitiveMisc polyPrism polyProjectCurve
225
+ polyProjection polyPyramid polyQuad polyQueryBlindData polyReduce polySelect
226
+ polySelectConstraint polySelectConstraintMonitor polySelectCtx polySelectEditCtx
227
+ polySelectEditCtxDataCmd polySelectSp polySeparate polySetToFaceNormal polySetVertices
228
+ polySewEdge polyShortestPathCtx polySlideEdge polySlideEdgeCtx polySmooth polySoftEdge
229
+ polySphere polySphericalProjection polySpinEdge polySplit polySplitCtx polySplitCtx2
230
+ polySplitEdge polySplitRing polySplitVertex polyStraightenUVBorder polySubdivideEdge
231
+ polySubdivideFacet polySuperCtx polyTestPop polyToCurve polyToSubdiv polyTorus
232
+ polyTransfer polyTriangulate polyUVRectangle polyUVSet polyUnite polyUniteSkinned
233
+ polyVertexNormalCtx polyWarpImage polyWedgeFace popPinning popen popupMenu pose pow
234
+ preloadRefEd prepareRender print profiler profilerTool progressBar progressWindow
235
+ projectCurve projectTangent projectionContext projectionManip promptDialog propModCtx
236
+ propMove psdChannelOutliner psdConvSolidTxOptions psdEditTextureFile psdExport
237
+ psdTextureFile ptexBake pushPinning putenv pwd python querySubdiv quit rad_to_deg radial
238
+ radioButton radioButtonGrp radioCollection radioMenuItemCollection rampColorPort
239
+ rampWidget rampWidgetAttrless rand randstate rangeControl readPDC readTake rebuildCurve
240
+ rebuildSurface recordAttr recordDevice redo reference referenceEdit referenceQuery
241
+ refineSubdivSelectionList refresh refreshEditorTemplates regionSelectKeyCtx regmatch
242
+ rehash relationship reloadImage removeJoint removeMultiInstance rename renameAttr
243
+ renameUI render renderGlobalsNode renderInfo renderLayerPostProcess renderManip
244
+ renderPartition renderPassRegistry renderQualityNode renderSettings
245
+ renderThumbnailUpdate renderWindowEditor renderWindowSelectContext renderer reorder
246
+ reorderContainer reorderDeformers repeatLast requires reroot resampleFluid resetTool
247
+ resolutionNode resourceManager retarget retimeHelper retimeKeyCtx reverseCurve
248
+ reverseSurface revolve rgb_to_hsv rigidBody rigidSolver roll rollCtx rot rotate
249
+ rotationInterpolation roundCRCtx roundConstantRadius rowColumnLayout rowLayout
250
+ runTimeCommand runup sampleImage saveAllShelves saveFluid saveImage saveInitialState
251
+ saveMenu savePrefObjects savePrefs saveShelf saveToolSettings saveViewportSettings
252
+ sbs_AffectTheseAttributes sbs_AffectedByAllInputs sbs_EditSubstance
253
+ sbs_GetAllInputsFromSubstanceNode sbs_GetBakeFormat
254
+ sbs_GetChannelsNamesFromSubstanceNode sbs_GetEditionModeScale sbs_GetEngine
255
+ sbs_GetEnumCount sbs_GetEnumName sbs_GetEnumValue sbs_GetGlobalTextureHeight
256
+ sbs_GetGlobalTextureWidth sbs_GetGraphsNamesFromSubstanceNode
257
+ sbs_GetPackageFullPathNameFromSubstanceNode sbs_GetSubstanceBuildVersion
258
+ sbs_GoToMarketPlace sbs_IsSubstanceRelocalized sbs_SetBakeFormat sbs_SetEditionModeScale
259
+ sbs_SetEngine sbs_SetGlobalTextureHeight sbs_SetGlobalTextureWidth scale scaleComponents
260
+ scaleConstraint scaleKey scaleKeyCtx sceneEditor sceneUIReplacement scmh scriptCtx
261
+ scriptEditorInfo scriptJob scriptNode scriptTable scriptedPanel scriptedPanelType
262
+ scrollField scrollLayout sculpt seed selLoadSettings select selectContext selectKey
263
+ selectKeyCtx selectKeyframe selectKeyframeRegionCtx selectMode selectPref selectPriority
264
+ selectType selectedNodes selectionConnection separator sequenceManager setAttr
265
+ setAttrMapping setDefaultShadingGroup setDrivenKeyframe setDynamic setEditCtx
266
+ setFluidAttr setFocus setInfinity setInputDeviceMapping setKeyCtx setKeyPath setKeyframe
267
+ setKeyframeBlendshapeTargetWts setMenuMode setNClothStartState setNodeTypeFlag setParent
268
+ setParticleAttr setRenderPassType setStartupMessage setToolTo setUITemplate
269
+ setXformManip sets shaderfx shadingConnection shadingGeometryRelCtx shadingLightRelCtx
270
+ shadingNetworkCompare shadingNode shapeCompare shelfButton shelfLayout shelfTabLayout
271
+ shot shotRipple shotTrack showHelp showHidden showManipCtx showSelectionInTitle
272
+ showShadingGroupAttrEditor showWindow sign simplify sin sind singleProfileBirailSurface
273
+ sinh size sizeBytes skinBindCtx skinCluster skinPercent smoothCurve smoothTangentSurface
274
+ smoothstep snapKey snapMode snapTogetherCtx snapshot snapshotBeadContext snapshotBeadCtx
275
+ snapshotModifyKeyCtx soft softMod softModContext softModCtx softSelect
276
+ softSelectOptionsCtx sort sound soundControl spBirailCtx spaceLocator sphere sphrand
277
+ spotLight spotLightPreviewPort spreadSheetEditor spring sqrt squareSurface srtContext
278
+ stackTrace stitchSurface stitchSurfaceCtx stitchSurfacePoints strcmp
279
+ stringArrayIntersector stringArrayRemove stroke subdAutoProjection subdCleanTopology
280
+ subdCollapse subdDisplayMode subdDuplicateAndConnect subdEditUV subdLayoutUV
281
+ subdListComponentConversion subdMapCut subdMapSewMove subdMatchTopology subdMirror
282
+ subdPlanarProjection subdToBlind subdToNurbs subdToPoly subdTransferUVsToCache subdiv
283
+ subdivCrease subdivDisplaySmoothness subgraph substitute substituteGeometry substring
284
+ suitePrefs superCtx surface surfaceSampler surfaceShaderList swatchDisplayPort
285
+ swatchRefresh switchTable symbolButton symbolCheckBox symmetricModelling sysFile system
286
+ tabLayout tan tand tangentConstraint tanh targetWeldCtx testPa testPassContribution
287
+ texLatticeDeformContext texManipContext texMoveContext texMoveUVShellContext
288
+ texRotateContext texScaleContext texSelectContext texSelectShortestPathCtx
289
+ texSmoothContext texSmudgeUVContext texTweakUVContext texWinToolCtx text textCurves
290
+ textField textFieldButtonGrp textFieldGrp textManip textScrollList textureDeformer
291
+ textureLassoContext texturePlacementContext textureWindow threadCount threePointArcCtx
292
+ timeCode timeControl timePort timeWarp timer timerX toggle toggleAxis
293
+ toggleWindowVisibility tokenize tolerance tolower toolBar toolButton toolCollection
294
+ toolDropped toolHasOptions toolPropertyWindow torus toupper trace track trackCtx
295
+ transferAttributes transferShadingSets transformCompare transformLimits translator
296
+ treeLister treeView trim trimCtx trunc truncateFluidCache truncateHairCache tumble
297
+ tumbleCtx turbulence twoPointArcCtx ubercam uiTemplate unassignInputDevice undo undoInfo
298
+ unfold ungroup uniform unit unloadPlugin untangleUV untrim upAxis userCtx uvLink
299
+ uvSnapshot vectorize vectornum view2dToolCtx viewCamera viewClipPlane viewFit viewHeadOn
300
+ viewLookAt viewManip viewPlace viewSet visor volumeAxis volumeBind vortex waitCursor
301
+ walkCtx warning webBrowser webBrowserPrefs webView webViewCmd wfnum whatIs
302
+ whatsNewHighlight window windowPref wire wireContext workspace wrinkle wrinkleContext
303
+ writeTake xform xgmAddGuide xgmBakeGuideVertices xgmBindPatches xgmClumpMap
304
+ xgmCopyDescription xgmCurveToGuide xgmDensityComp xgmDraRender xgmExport xgmExportToP3D
305
+ xgmFileRender xgmFindAttachment xgmGuideContext xgmGuideGeom xgmGuideRender
306
+ xgmInterpSetup xgmMelRender xgmMoveDescription xgmNullRender xgmParticleRender
307
+ xgmPatchInfo xgmPointRender xgmPoints xgmPointsContext xgmPolyToGuide xgmPreview
308
+ xgmPrimSelectionContext xgmPromoteRender xgmPushOver xgmRebuildCurve xgmSelectedPrims
309
+ xgmSetActive xgmSetArchiveSize xgmSetAttr xgmSetGuideCVCount xgmSyncPatchVisibility
310
+ xgmWrapXGen xgmr xpmPicker
311
+ """
312
+
313
+
314
+ class MelLexer(Qsci.QsciLexerCPP):
315
+ # Items in this list will be highlighted using the color for self.GlobalClass
316
+ _highlightedKeywords = ''
317
+ # Mel uses $varName for variables, so we have to allow them in words
318
+ selectionValidator = re.compile(r'[ \t\n\r\.,?;:!()\[\]+\-\*\/#@^%"\\~&{}|=<>\']')
319
+ wordCharactersOverride = (
320
+ 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_$'
321
+ )
322
+
323
+ @property
324
+ def highlightedKeywords(self):
325
+ return self._highlightedKeywords
326
+
327
+ @highlightedKeywords.setter
328
+ def highlightedKeywords(self, keywords):
329
+ if len(keywords.split(' ')) == 1:
330
+ # If only one keyword was passed in, check if the current selection starts
331
+ # with a $ if so, insert it in front of provided keyword
332
+ parent = self.parent()
333
+ if parent:
334
+ sline, spos, eline, epos = parent.getSelection()
335
+ pos = parent.positionFromLineIndex(sline, spos)
336
+ try:
337
+ if parent.text()[pos - 1] == '$':
338
+ keywords = '${}'.format(keywords)
339
+ except IndexError:
340
+ pass
341
+ self._highlightedKeywords = keywords
342
+
343
+ def defaultColor(self, style):
344
+ if style == self.KeywordSet2:
345
+ # Set the highlight color for this lexer
346
+ return QColor(0, 127, 0)
347
+ return super(MelLexer, self).defaultColor(style)
348
+
349
+ def defaultFont(self, style):
350
+ if style == self.KeywordSet2:
351
+ return super(MelLexer, self).defaultFont(self.Keyword)
352
+ return super(MelLexer, self).defaultFont(style)
353
+
354
+ def defaultPaper(self, style):
355
+ if style == self.GlobalClass:
356
+ # Set the highlight color for this lexer
357
+ return QColor(155, 255, 155)
358
+ return super(MelLexer, self).defaultPaper(style)
359
+
360
+ def keywords(self, style):
361
+ if (
362
+ style == 4 and self.highlightedKeywords
363
+ ): # GlobalClass Used to handle SmartHighlighting
364
+ return self.highlightedKeywords
365
+ elif style == 1: # Keyword
366
+ return MEL_SYNTAX
367
+ elif style == 2: # KeywordSet2
368
+ return MEL_KEYWORDS
369
+ return super(MelLexer, self).keywords(style)
@@ -0,0 +1,33 @@
1
+ from __future__ import absolute_import
2
+
3
+ from Qt.QtGui import QColor
4
+
5
+ from .. import Qsci
6
+
7
+ MU_KEYWORDS = """
8
+ method string Color use require module for_each let global function nil void
9
+ """
10
+
11
+
12
+ class MuLexer(Qsci.QsciLexerCPP):
13
+ # Items in this list will be highlighted using the color for self.KeywordSet2
14
+ highlightedKeywords = ''
15
+
16
+ def defaultPaper(self, style):
17
+ if style == self.CommentLine:
18
+ # Set the highlight color for this lexer
19
+ return QColor(155, 255, 155)
20
+ return super(MuLexer, self).defaultPaper(style)
21
+
22
+ def keywords(self, style):
23
+ # Words to be highlighted
24
+ if style == self.CommentLine and self.highlightedKeywords:
25
+ return self.highlightedKeywords
26
+
27
+ output = super(MuLexer, self).keywords(style)
28
+ # for some reason, CPP lexer uses comment style for
29
+ # its keywords
30
+ if style == self.Comment:
31
+ output += MU_KEYWORDS
32
+
33
+ return output
@@ -0,0 +1,42 @@
1
+ from __future__ import absolute_import
2
+
3
+ from Qt.QtGui import QColor
4
+
5
+ from .. import Qsci
6
+
7
+
8
+ class PythonLexer(Qsci.QsciLexerPython):
9
+ # Items in this list will be highlighted using the color
10
+ # for Qsci.QsciLexerPython.HighlightedIdentifier.
11
+ highlightedKeywords = ''
12
+
13
+ def __init__(self, *args):
14
+ super(PythonLexer, self).__init__(*args)
15
+
16
+ # set the indentation warning
17
+ self.setIndentationWarning(Qsci.QsciLexerPython.IndentationWarning.Inconsistent)
18
+
19
+ def defaultPaper(self, style):
20
+ if style == Qsci.QsciLexerPython.HighlightedIdentifier:
21
+ # Set the highlight color for this lexer
22
+ return QColor(155, 255, 155)
23
+ return super(PythonLexer, self).defaultPaper(style)
24
+
25
+ def keywords(self, keyset):
26
+ # Words to be highlighted
27
+ if keyset == 2 and self.highlightedKeywords:
28
+ return self.highlightedKeywords
29
+ ret = super(PythonLexer, self).keywords(keyset)
30
+ if keyset == 1:
31
+ ret += (
32
+ ' True False abs divmod input open staticmethod all enumerate int ord '
33
+ 'str any eval isinstance pow sum basestring execfile'
34
+ ' issubclass print super bin file iter property tuple bool filter len '
35
+ 'range type bytearray float list raw_input unichr'
36
+ ' callable format locals reduce unicode chr frozenset long reload vars '
37
+ 'classmethod getattr map repr xrange cmp globals max'
38
+ ' reversed zip compile hasattr memoryview round complex hash min set '
39
+ 'apply delattr help next setattr buffer dict hex object'
40
+ ' slice coerce dir id oct sorted intern __import__'
41
+ )
42
+ return ret
@@ -0,0 +1,160 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <ui version="4.0">
3
+ <class>dialog</class>
4
+ <widget class="QDialog" name="dialog">
5
+ <property name="geometry">
6
+ <rect>
7
+ <x>0</x>
8
+ <y>0</y>
9
+ <width>436</width>
10
+ <height>170</height>
11
+ </rect>
12
+ </property>
13
+ <property name="windowTitle">
14
+ <string>Find</string>
15
+ </property>
16
+ <layout class="QGridLayout" name="gridLayout">
17
+ <item row="0" column="4">
18
+ <widget class="QPushButton" name="uiFindNextBTN">
19
+ <property name="minimumSize">
20
+ <size>
21
+ <width>118</width>
22
+ <height>0</height>
23
+ </size>
24
+ </property>
25
+ <property name="maximumSize">
26
+ <size>
27
+ <width>118</width>
28
+ <height>16777215</height>
29
+ </size>
30
+ </property>
31
+ <property name="text">
32
+ <string>Find Next</string>
33
+ </property>
34
+ <property name="autoDefault">
35
+ <bool>true</bool>
36
+ </property>
37
+ </widget>
38
+ </item>
39
+ <item row="1" column="4">
40
+ <widget class="QPushButton" name="uiFindPrevBTN">
41
+ <property name="minimumSize">
42
+ <size>
43
+ <width>118</width>
44
+ <height>0</height>
45
+ </size>
46
+ </property>
47
+ <property name="maximumSize">
48
+ <size>
49
+ <width>118</width>
50
+ <height>16777215</height>
51
+ </size>
52
+ </property>
53
+ <property name="text">
54
+ <string>Find Prev</string>
55
+ </property>
56
+ </widget>
57
+ </item>
58
+ <item row="2" column="4">
59
+ <spacer name="verticalSpacer">
60
+ <property name="orientation">
61
+ <enum>Qt::Vertical</enum>
62
+ </property>
63
+ <property name="sizeHint" stdset="0">
64
+ <size>
65
+ <width>115</width>
66
+ <height>62</height>
67
+ </size>
68
+ </property>
69
+ </spacer>
70
+ </item>
71
+ <item row="3" column="0">
72
+ <widget class="QCheckBox" name="uiFindWholeWordsCHK">
73
+ <property name="text">
74
+ <string>Match Whole Word</string>
75
+ </property>
76
+ </widget>
77
+ </item>
78
+ <item row="3" column="1">
79
+ <widget class="QCheckBox" name="uiCaseSensitiveCHK">
80
+ <property name="text">
81
+ <string>Case Sensitive</string>
82
+ </property>
83
+ </widget>
84
+ </item>
85
+ <item row="3" column="3">
86
+ <spacer name="horizontalSpacer">
87
+ <property name="orientation">
88
+ <enum>Qt::Horizontal</enum>
89
+ </property>
90
+ <property name="sizeHint" stdset="0">
91
+ <size>
92
+ <width>32</width>
93
+ <height>20</height>
94
+ </size>
95
+ </property>
96
+ </spacer>
97
+ </item>
98
+ <item row="3" column="4">
99
+ <widget class="QPushButton" name="uiCloseBTN">
100
+ <property name="minimumSize">
101
+ <size>
102
+ <width>118</width>
103
+ <height>0</height>
104
+ </size>
105
+ </property>
106
+ <property name="maximumSize">
107
+ <size>
108
+ <width>118</width>
109
+ <height>16777215</height>
110
+ </size>
111
+ </property>
112
+ <property name="text">
113
+ <string>Close</string>
114
+ </property>
115
+ </widget>
116
+ </item>
117
+ <item row="3" column="2">
118
+ <widget class="QCheckBox" name="uiQRegExpCHK">
119
+ <property name="toolTip">
120
+ <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Use Qt's QRegExp engine to find using regular expressions instead of a plain text find.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
121
+ </property>
122
+ <property name="text">
123
+ <string>QRegExp</string>
124
+ </property>
125
+ </widget>
126
+ </item>
127
+ <item row="0" column="0" rowspan="3" colspan="4">
128
+ <widget class="QPlainTextEdit" name="uiSearchTXT"/>
129
+ </item>
130
+ </layout>
131
+ </widget>
132
+ <tabstops>
133
+ <tabstop>uiSearchTXT</tabstop>
134
+ <tabstop>uiFindNextBTN</tabstop>
135
+ <tabstop>uiFindPrevBTN</tabstop>
136
+ <tabstop>uiFindWholeWordsCHK</tabstop>
137
+ <tabstop>uiCaseSensitiveCHK</tabstop>
138
+ <tabstop>uiQRegExpCHK</tabstop>
139
+ <tabstop>uiCloseBTN</tabstop>
140
+ </tabstops>
141
+ <resources/>
142
+ <connections>
143
+ <connection>
144
+ <sender>uiCloseBTN</sender>
145
+ <signal>clicked()</signal>
146
+ <receiver>dialog</receiver>
147
+ <slot>reject()</slot>
148
+ <hints>
149
+ <hint type="sourcelabel">
150
+ <x>322</x>
151
+ <y>154</y>
152
+ </hint>
153
+ <hint type="destinationlabel">
154
+ <x>284</x>
155
+ <y>172</y>
156
+ </hint>
157
+ </hints>
158
+ </connection>
159
+ </connections>
160
+ </ui>