12345678910111213141516171819202122232425262728293031323334353637383940 |
- """
- MODULE: r_li_setup_GUI.py
- AUTHOR(S): Anne Ghisla <a.ghisla AT gmail.com>
- PURPOSE: Dedicated GUI for r.li.setup, translated and reshaped from original TclTk.
- DEPENDS: []
- COPYRIGHT: (C) 2010 by the GRASS Development Team
- This program is free software under the GNU General Public
- License (>=v2). Read the file COPYING that comes with GRASS
- for details.
- """
- # bulk import from location_wizard.py.
- import os
- import shutil
- import re
- import string
- import sys
- import locale
- import platform
- import globalvar
- import wx
- import wx.lib.mixins.listctrl as listmix
- import wx.wizard as wiz
- import wx.lib.scrolledpanel as scrolled
- import time
- import gcmd
- import utils
- from grass.script import core as grass
- #@TODO create wizard instead of progressively increasing window
- print >> sys.stderr, "TODO: implement r.li.setup wizard..."
|