equal
deleted
inserted
replaced
41 # ------------------------------------------------------------------------------- |
41 # ------------------------------------------------------------------------------- |
42 # Configuration Editor class |
42 # Configuration Editor class |
43 # ------------------------------------------------------------------------------- |
43 # ------------------------------------------------------------------------------- |
44 |
44 |
45 |
45 |
46 [ |
|
47 ID_CONFIGURATIONEDITOR, |
|
48 ] = [wx.NewId() for _init_ctrls in range(1)] |
|
49 |
|
50 |
|
51 class ConfigurationEditor(EditorPanel): |
46 class ConfigurationEditor(EditorPanel): |
52 |
47 |
53 ID = ID_CONFIGURATIONEDITOR |
|
54 VARIABLE_PANEL_TYPE = "config" |
48 VARIABLE_PANEL_TYPE = "config" |
55 |
49 |
56 def GetBufferState(self): |
50 def GetBufferState(self): |
57 return self.Controler.GetBufferState() |
51 return self.Controler.GetBufferState() |
58 |
52 |