Show
Ignore:
Timestamp:
07/01/08 22:31:12 (5 years ago)
Author:
luis
Message:

- Added alternative Widget for PreviewLabel?? named ToggleLabelCr? (used cairo ) to test in Mac OS X ( following gtk+ engine gtk.Style is outdated API )
- Added support and class names to dictionary of frames selection in Preferences Window
- Added structure of GeneralSettings? Core

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branch/PreferencesWindow/umitPreferences/UmitConfWrite.py

    r3059 r3061  
    4848        pass 
    4949     
     50     
     51     
     52class GeneralSettings(UmitConfigParser, object): 
     53    """  
     54    General Settings defining the settings like enable splash/warnings 
     55    nmap command, remove history (using targets, and recents class), etc 
     56    """ 
     57    def __init__(self): 
     58        self.parser = Path.config_parser 
     59        self.section_name = "general_settings" 
     60        if not self.parser.has_section(self.section_name): 
     61            self.create_section() 
     62    def create_section(self): 
     63        pass 
     64     
     65         
    5066if __name__=="__main__": 
    5167    pass