コード例 #1
0
	def _remove(self, comp):
		self._gtk_inner_widget.remove(comp._gtk_outer_widget)
		GContainer._remove(self, comp)
コード例 #2
0
ファイル: Container.py プロジェクト: rceballos98/hapticJacket
 def _remove(self, comp):
     GContainer._remove(self, comp)
     comp._ns_view.removeFromSuperview()
コード例 #3
0
	def _add(self, comp):
		GContainer._add(self, comp)
		x, y = comp._position
		self._gtk_inner_widget.put(comp._gtk_outer_widget, int(x), int(y))
コード例 #4
0
ファイル: Container.py プロジェクト: tomihasa/pygui
 def _remove(self, comp):
     GContainer._remove(self, comp)
     comp._ns_view.removeFromSuperview()
コード例 #5
0
ファイル: Container.py プロジェクト: rceballos98/hapticJacket
 def _add(self, comp):
     GContainer._add(self, comp)
     self._ns_inner_view.addSubview_(comp._ns_view)
コード例 #6
0
ファイル: Container.py プロジェクト: tomihasa/pygui
 def _add(self, comp):
     GContainer._add(self, comp)
     self._ns_inner_view.addSubview_(comp._ns_view)
コード例 #7
0
 def _remove(self, comp):
     self._gtk_inner_widget.remove(comp._gtk_outer_widget)
     GContainer._remove(self, comp)
コード例 #8
0
 def _add(self, comp):
     GContainer._add(self, comp)
     x, y = comp._position
     self._gtk_inner_widget.put(comp._gtk_outer_widget, int(x), int(y))
コード例 #9
0
ファイル: TabView.py プロジェクト: tomihasa/pygui
 def _remove(self, comp):
     GContainer._remove(self, comp)
コード例 #10
0
ファイル: TabView.py プロジェクト: tomihasa/pygui
 def _add(self, comp):
     GContainer._add(self, comp)