r.li.setup.py 837 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. """
  2. MODULE: r_li_setup_GUI.py
  3. AUTHOR(S): Anne Ghisla <a.ghisla AT gmail.com>
  4. PURPOSE: Dedicated GUI for r.li.setup, translated and reshaped from original TclTk.
  5. DEPENDS: []
  6. COPYRIGHT: (C) 2010 by the GRASS Development Team
  7. This program is free software under the GNU General Public
  8. License (>=v2). Read the file COPYING that comes with GRASS
  9. for details.
  10. """
  11. # bulk import from location_wizard.py.
  12. import os
  13. import shutil
  14. import re
  15. import string
  16. import sys
  17. import locale
  18. import platform
  19. import globalvar
  20. import wx
  21. import wx.lib.mixins.listctrl as listmix
  22. import wx.wizard as wiz
  23. import wx.lib.scrolledpanel as scrolled
  24. import time
  25. import gcmd
  26. import utils
  27. from grass.script import core as grass
  28. #@TODO create wizard instead of progressively increasing window
  29. print >> sys.stderr, "TODO: implement r.li.setup wizard..."