Home
last modified time | relevance | path

Searched refs:wx (Results 1 – 25 of 131) sorted by relevance

123456

/external/sonivox/jet_tools/JetCreator/
DJetCtrls.py23 import wx
26 from wx.lib.mixins.listctrl import CheckListCtrlMixin, ListCtrlAutoWidthMixin, ColumnSorterMixin
30 class JetSpin(wx.SpinCtrl):
32 …def __init__(self, parent, id=-1,value=wx.EmptyString,pos=wx.DefaultPosition,size=wx.DefaultSize,s…
33wx.SpinCtrl.__init__(self, parent, id=id,value=value,pos=(pos[0]-MacOffset(),pos[1]),size=size,sty…
38 wx.SpinCtrl.SetValue(self, int(val))
40 wx.SpinCtrl.SetValue(self, val)
42 wx.SpinCtrl.SetValue(self, 0)
46 …def __init__(self, parent, id=-1,value=wx.EmptyString,pos=wx.DefaultPosition,size=wx.DefaultSize,s…
47wx.SpinCtrl.__init__(self, parent, id=id,value=value,pos=(pos[0]-MacOffset(),pos[1]),size=size,sty…
[all …]
DJetAudition.py25 import wx
57 class Audition(wx.Dialog):
60 wx.Dialog.__init__(self, None, -1, title=JetDefs.DLG_AUDITION)
73 panel = wx.Panel(self, -1)
79 self.segList.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnQueueSegment)
80 self.segList.Bind(wx.EVT_LIST_ITEM_SELECTED, self.OnSegListClick)
92 self.btnMuteAll = wx.Button(panel, -1, JetDefs.BUT_MUTEALL)
93 self.btnUnMuteAll = wx.Button(panel, -1, JetDefs.BUT_MUTENONE)
94 self.btnMuteOrg = wx.Button(panel, -1, JetDefs.BUT_ORGMUTES)
95 hMuteButs = wx.BoxSizer(wx.HORIZONTAL)
[all …]
DJetSegGraph.py24 import wx
89 class SegmentGraph(wx.Panel):
91 …def __init__(self, parent, pos=wx.DefaultPosition, size=wx.DefaultSize, ClickCallbackFct=None, sho…
92 wx.Panel.__init__(self, parent, -1, pos=pos, size=size, style=wx.BORDER_STATIC)
107 …self.font = wx.Font(8, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, False, 'C…
110 self.SetBackgroundStyle(wx.BG_STYLE_CUSTOM)
111 self.Bind(wx.EVT_PAINT, self.OnPaint)
112 self.Bind(wx.EVT_SIZE, self.OnSize)
113 self.Bind(wx.EVT_LEFT_DOWN, self.OnLeftDown)
201 self._Buffer = wx.EmptyBitmap(*Size)
[all …]
DJetCreator.py25 import wx
29 import wx.html
32 from wx.lib.mixins.listctrl import CheckListCtrlMixin, ListCtrlAutoWidthMixin
45 provider = wx.SimpleHelpProvider()
46 wx.HelpProvider_Set(provider)
49 class JetCreator(wx.Frame):
52wx.Frame.__init__(self, parent, id, size=(1050, 720), style=wx.DEFAULT_FRAME_STYLE | wx.MINIMIZE_B…
97 wx.EVT_CLOSE(self, self.OnClose)
110 panel = wx.Panel(self, -1)
112 hboxMain = wx.BoxSizer(wx.HORIZONTAL)
[all …]
DJetDialogs.py23 import wx
25 import wx.lib.newevent
50 self.ctrls[Text] = wx.Button(panel, Id, Lbl, wx.Point(Col, Row), size=Len)
52 … self.ctrls[Text].Bind(wx.EVT_BUTTON, getattr(callbackClass, Fct), self.ctrls[Text], id=Id)
53 if Id == wx.ID_OK:
58 … self.ctrls[Text] = wx.TextCtrl(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET +3), wx.Size(Len,-1))
60 …self.ctrls[Text] = JetSpinOneBased(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1)…
62 …self.ctrls[Text] = JetSpin(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), min=Mi…
64 …self.ctrls[Text] = wx.ComboBox(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), Ls…
67 … self.ctrls[Text].Bind(wx.EVT_COMBOBOX, getattr(callbackClass, Fct), self.ctrls[Text])
[all …]
DJetHelp.py23 import wx
24 import wx.html
27 app = wx.PySimpleApp()
28 frame = wx.Frame(None, -1, JetDefs.MAIN_HELPTITLE, size=(800,600))
29 html1 = wx.html.HtmlWindow(frame, -1)
DJetStatusEvent.py23 import wx
25 EVT_JET_STATUS_ID = wx.NewId()
30 class JetStatusEvent(wx.PyEvent):
33 wx.PyEvent.__init__(self)
DJetDefs.py23 import wx
344 BUTSIZE = wx.DefaultSize
395 … ('Cancel', F_CANCEL, BUTROW1+BUTOFF*3, COL3+200, BUTSIZE, 0, 0, wx.ID_CANCEL, [], "", True, ""),
404 ('Ok', F_OK, BUTROW1, COL3+100, BUTSIZE, 0, 0, wx.ID_OK, [], "OnOk", True, ""),
405 … ('Cancel', F_CANCEL, BUTROW1+BUTOFF*1, COL3+100, BUTSIZE, 0, 0, wx.ID_CANCEL, [], "", True, ""),
416 ('Ok', F_OK, BUTROW1, COL3+100, BUTSIZE, 0, 0, wx.ID_OK, [], "OnOk", True, ""),
417 … ('Cancel', F_CANCEL, BUTROW1+BUTOFF*1, COL3+100, BUTSIZE, 0, 0, wx.ID_CANCEL, [], "", True, ""),
428 ('Ok', F_OK, BUTROW1, 500, BUTSIZE, 0, 0, wx.ID_OK, [], "OnOk", True, ""),
454 … ('Ok', F_ADDCLIP, BUTROW1, COL3+EVT_OFFSET, BUTSIZE, 0, 0, wx.ID_OK, [], "OnOk", True, ""),
455 …('Cancel', F_CANCEL, BUTROW1+BUTOFF*1, COL3+EVT_OFFSET, BUTSIZE, 0, 0, wx.ID_CANCEL, [], "OnClose"…
[all …]
DJetPreview.py25 import wx
35 class PreviewPlayer(wx.Frame):
100 wx.PostEvent(self.parentWin, JetStatusEvent(JetDefs.PST_PLAY, None))
164 wx.PostEvent(self.parentWin, JetStatusEvent(JetDefs.PST_UPD_LOCATION, status.location))
174 wx.PostEvent(self.parentWin, JetStatusEvent(JetDefs.PST_DONE, None))
176 wx.PostEvent(self.parentWin, JetStatusEvent(JetDefs.PST_UPD_LOCATION, 0))
195 wx.PostEvent(self.parentWin, JetStatusEvent(JetDefs.PST_PAUSE, None))
199 wx.PostEvent(self.parentWin, JetStatusEvent(JetDefs.PST_RESUME, None))
DJetSystemInfo.py26 import wx
30 print(wx.__version__)
/external/linux-tools-perf/src/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
DSchedGui.py12 import wx
17 class RootFrame(wx.Frame):
24 wx.Frame.__init__(self, parent, id, title)
26 (self.screen_width, self.screen_height) = wx.GetDisplaySize()
39 self.panel = wx.Panel(self, size=(self.screen_width, self.screen_height))
42 self.scroll = wx.ScrolledWindow(self.panel)
48 self.scroll_panel = wx.Panel(self.scroll, size=(self.screen_width - 15, self.screen_height / 2))
49 self.scroll_panel.Bind(wx.EVT_PAINT, self.on_paint)
50 self.scroll_panel.Bind(wx.EVT_KEY_DOWN, self.on_key_press)
51 self.scroll_panel.Bind(wx.EVT_LEFT_DOWN, self.on_mouse_down)
[all …]
/external/libpng/contrib/tools/
Dgenpng.c325 double wx = bicubic[abs(dx)][0]; in alpha_calc() local
327 if (wx != 0 && arg->inside_fn(arg, x+dx/16, y+dy/16)) in alpha_calc()
328 alphay += wx; in alpha_calc()
386 double wx = fabs(arg->x1-arg->x2)/2; in square_check_line() local
390 if (square_check(x, y, cx-wx-w, cy-wy-w, cx+wx+w, cy+wy+w)) in square_check_line()
395 wx -= w; in square_check_line()
397 if (wx > 0 && wy > 0 && square_check(x, y, cx-wx, cy-wy, cx+wx, cy+wy)) in square_check_line()
495 double wx = fabs(arg->x1-arg->x2)/2; in circle_check_line() local
499 if (circle_check(x, y, cx-wx-w, cy-wy-w, cx+wx+w, cy+wy+w)) in circle_check_line()
504 wx -= w; in circle_check_line()
[all …]
/external/deqp/modules/glshared/
DglsTextureTestUtil.cpp333 static inline float triDerivateX (const tcu::Vec3& s, const tcu::Vec3& w, float wx, float width, fl… in triDerivateX() argument
335 float d = w[1]*w[2]*(width*(ny - 1.0f) + wx) - w[0]*(w[2]*width*ny + w[1]*wx); in triDerivateX()
346 …iLod (LodMode mode, const tcu::Vec3& u, const tcu::Vec3& projection, float wx, float wy, float wid… in computeProjectedTriLod() argument
349 float dudx = triDerivateX(u, projection, wx, width, wy/height); in computeProjectedTriLod()
350 float dudy = triDerivateY(u, projection, wy, height, wx/width); in computeProjectedTriLod()
356 …const tcu::Vec3& u, const tcu::Vec3& v, const tcu::Vec3& projection, float wx, float wy, float wid… in computeProjectedTriLod() argument
359 float dudx = triDerivateX(u, projection, wx, width, wy/height); in computeProjectedTriLod()
360 float dvdx = triDerivateX(v, projection, wx, width, wy/height); in computeProjectedTriLod()
361 float dudy = triDerivateY(u, projection, wy, height, wx/width); in computeProjectedTriLod()
362 float dvdy = triDerivateY(v, projection, wy, height, wx/width); in computeProjectedTriLod()
[all …]
/external/ceres-solver/include/ceres/
Drotation.h403 const T wx = angle_axis[0] / theta; in AngleAxisToRotationMatrix() local
410 R(0, 0) = costheta + wx*wx*(kOne - costheta); in AngleAxisToRotationMatrix()
411 R(1, 0) = wz*sintheta + wx*wy*(kOne - costheta); in AngleAxisToRotationMatrix()
412 R(2, 0) = -wy*sintheta + wx*wz*(kOne - costheta); in AngleAxisToRotationMatrix()
413 R(0, 1) = wx*wy*(kOne - costheta) - wz*sintheta; in AngleAxisToRotationMatrix()
415 R(2, 1) = wx*sintheta + wy*wz*(kOne - costheta); in AngleAxisToRotationMatrix()
416 R(0, 2) = wy*sintheta + wx*wz*(kOne - costheta); in AngleAxisToRotationMatrix()
417 R(1, 2) = -wx*sintheta + wy*wz*(kOne - costheta); in AngleAxisToRotationMatrix()
/external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/fake/command/
DRnfrCommandHandlerTest.groovy66 fileSystem.getEntry(FILE).permissions = new Permissions('-wx-wx-wx')
/external/mockftpserver/tags/2.0-rc1/src/test/groovy/org/mockftpserver/fake/command/
DRnfrCommandHandlerTest.groovy66 fileSystem.getEntry(FILE).permissions = new Permissions('-wx-wx-wx')
/external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/fake/command/
DRnfrCommandHandlerTest.groovy67 fileSystem.getEntry(FILE).permissions = new Permissions('-wx-wx-wx')
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/fake/command/
DRnfrCommandHandlerTest.groovy67 fileSystem.getEntry(FILE).permissions = new Permissions('-wx-wx-wx')
/external/mockftpserver/tags/2.0.1/src/test/groovy/org/mockftpserver/fake/command/
DRnfrCommandHandlerTest.groovy66 fileSystem.getEntry(FILE).permissions = new Permissions('-wx-wx-wx')
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
DRnfrCommandHandlerTest.groovy66 fileSystem.getEntry(FILE).permissions = new Permissions('-wx-wx-wx')
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
DRnfrCommandHandlerTest.groovy67 fileSystem.getEntry(FILE).permissions = new Permissions('-wx-wx-wx')
/external/mockftpserver/tags/2.0/src/test/groovy/org/mockftpserver/fake/command/
DRnfrCommandHandlerTest.groovy66 fileSystem.getEntry(FILE).permissions = new Permissions('-wx-wx-wx')
/external/mockftpserver/tags/2.2/src/test/groovy/org/mockftpserver/fake/command/
DRnfrCommandHandlerTest.groovy67 fileSystem.getEntry(FILE).permissions = new Permissions('-wx-wx-wx')
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
DRnfrCommandHandlerTest.groovy66 fileSystem.getEntry(FILE).permissions = new Permissions('-wx-wx-wx')
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/fake/command/
DRnfrCommandHandlerTest.groovy67 fileSystem.getEntry(FILE).permissions = new Permissions('-wx-wx-wx')

123456