2017-06-15 22:11:31 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2017-06-17 00:58:38 +00:00
|
|
|
|
2017-06-15 22:11:31 +00:00
|
|
|
import wx
|
|
|
|
from .base import basePanel
|
|
|
|
|
|
|
|
class listPanel(basePanel):
|
|
|
|
def __init__(self, parent, name):
|
|
|
|
super(listPanel, self).__init__(parent, name)
|
|
|
|
self.type = "list"
|