Mercurial > traipse_dev
diff orpg/mapper/grid_handler.py @ 14:0b8b7e3ed78d traipse_dev
Adding fixes from OpenRPG 1.8.0
Includes GUI patch for Linux users, init2 plugin, cherrypy XML refrence
Completely removes approot from the startup process and creates a software
cleanup process as well.
author | sirebral |
---|---|
date | Mon, 20 Jul 2009 21:25:13 -0500 |
parents | 4385a7d0efd1 |
children | 78407d627cba |
line wrap: on
line diff
--- a/orpg/mapper/grid_handler.py Sat Jul 18 11:08:53 2009 -0500 +++ b/orpg/mapper/grid_handler.py Mon Jul 20 21:25:13 2009 -0500 @@ -44,6 +44,8 @@ self.apply_button = wx.Button(self, wx.ID_OK, "Apply", style=wx.BU_EXACTFIT) self.color_button.SetBackgroundColour(wx.BLACK) self.color_button.SetForegroundColour(wx.WHITE) + + """ self.sizer.Add(wx.StaticText(self, -1, "Size: "), 0, wx.ALIGN_CENTER|wx.ALL, 3) self.sizer.Add(self.grid_size, 0, wx.EXPAND|wx.ALL, 2) self.sizer.Add(wx.StaticText(self, -1, "Ratio: "), 0, wx.ALIGN_CENTER|wx.ALL, 3) @@ -54,6 +56,24 @@ self.sizer.Add(self.color_button, 0, wx.EXPAND|wx.ALL, 2) self.sizer.Add(self.apply_button, 0, wx.EXPAND|wx.ALL, 3) self.sizer.Add(wx.Size(20,25),1) + """ + + self.sizer.Add(wx.StaticText(self, -1, "Size: "), 0, wx.ALIGN_CENTER) + self.sizer.Add(self.grid_size, 0, wx.ALIGN_CENTER) + self.sizer.Add((6,0)) + self.sizer.Add(wx.StaticText(self, -1, "Ratio: "), 0, wx.ALIGN_CENTER) + self.sizer.Add(self.grid_ratio, 0, wx.ALIGN_CENTER) + self.sizer.Add((6,0)) + self.sizer.Add(self.line_type, 0, wx.ALIGN_CENTER) + self.sizer.Add((6,0)) + self.sizer.Add(self.grid_mode, 0, wx.ALIGN_CENTER) + self.sizer.Add((6,0)) + self.sizer.Add(self.grid_snap, 0, wx.ALIGN_CENTER) + self.sizer.Add((6,0)) + self.sizer.Add(self.color_button, 0, wx.ALIGN_CENTER) + self.sizer.Add((6,0)) + self.sizer.Add(self.apply_button, 0, wx.ALIGN_CENTER) + self.Bind(wx.EVT_BUTTON, self.on_bg_color, self.color_button) self.Bind(wx.EVT_BUTTON, self.on_apply, self.apply_button) self.update_info()