예제 #1
0
	def _remove(self, comp):
		self._gtk_inner_widget.remove(comp._gtk_outer_widget)
		GContainer._remove(self, comp)
예제 #2
0
 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
 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)