Changeset 215

Show
Ignore:
Timestamp:
05/05/10 08:12:24 (3 years ago)
Author:
mbutscher
Message:

branches/stable-2.0 and branches/mbutscher/work:

* Further changes to Mac OS keybindings

Location:
branches
Files:
2 added
18 modified

Legend:

Unmodified
Added
Removed
  • branches/mbutscher/work/WikidPadHelp/WikidPadHelp.wiki

    r214 r215  
    1313headingsasaliases_depth = 0 
    1414wiki_name = WikidPadHelp 
    15 tree_expandednodes_descriptorpathes_main =  
     15wikipagetitle_creationmode = 1 
    1616wikipagetitleprefix = ++ 
    1717wikipagetitle_fromlinktitle = True 
     
    2020versioning_storagelocation = 0 
    2121template_pagenamesre = ^template/ 
    22 wikipagetitle_creationmode = 1 
     22tree_expandednodes_descriptorpathes_main =  
    2323tree_last_root_wiki_word = WikidPadHelp 
    2424tree_force_scratchpad_visibility = True 
  • branches/mbutscher/work/WikidPadHelp/data/KeyBindings.wiki

    r178 r215  
    22 
    33Many of the key bindings defined below may be changed, ChangingKeyBindings. 
     4 
     5Please note: These bindings have been developed for use on Windows. 
     6On other Operating Systems like Apple OSX or Linux there may be differences. 
     7See KeyBindingsOnLinuxAndOsx. 
    48 
    59*Formatting* 
     
    5054F6              switch between tree and editor 
    5155CTRL-TAB        switch between tabs 
    52  
  • branches/mbutscher/work/extensions/KeyBindings.py

    r214 r215  
    3131    ActivateLinkNewTab="Alt-Shift-L" 
    3232    ActivateLinkBackground="Alt-Shift-Ctrl-L" 
     33    # to test: What about Mac OSX?   wx.Platform == "__WXMAC__" 
     34 
    3335ViewParents="Ctrl-Up" 
    3436ViewParentless="Ctrl-Shift-Up" 
     
    4648    GoHome="Ctrl-Shift-H" 
    4749    StartIncrementalSearch="Alt-Shift-F" 
    48     FocusFastSearchField="" 
    49     # FocusFastSearchField="Ctrl-Shift-F"   #todo: Find a working solution 
     50    FocusFastSearchField="Alt-Shift-S" 
    5051else: 
    5152    GoHome="Ctrl-Q" 
     
    8081ShowPreview="Ctrl-Shift-S" 
    8182ShowSwitchEditorPreview="Ctrl-Shift-Space" 
     83#if wx.Platform == "__WXMAC__": 
     84    # no good keybinding found that works on Mac 
     85    # ShowSwitchEditorPreview="??????" 
     86 
    8287ZoomIn="" 
    8388ZoomOut="" 
     
    8691ContinueSearch="F3" 
    8792BackwardSearch="Shift-F3" 
    88 AutoComplete="Ctrl-Space" 
     93if wx.Platform == "__WXMAC__": 
     94    AutoComplete="Alt-Space" 
     95else: 
     96    AutoComplete="Ctrl-Space" 
    8997ActivateLink2="Ctrl-Return" 
    9098SwitchFocus="F6" 
  • branches/mbutscher/work/lib/pwiki/WikiTxtCtrl.py

    r214 r215  
    4747#        wikiWordToLabel, revStr, lineendToInternal, lineendToOs 
    4848 
    49 from Configuration import isUnicode, isWin9x, isLinux, isWindows, isOSX 
     49from Configuration import isUnicode, isOSX, isWin9x, isLinux, isWindows 
    5050 
    5151try: 
     
    25442544 
    25452545        rect = sb.GetFieldRect(0) 
    2546          
    25472546        if isOSX(): 
    25482547            # needed on Mac OSX to avoid cropped text 
  • branches/stable-2.0/WikidPadHelp/WikidPadHelp.wiki

    r213 r215  
    1313headingsasaliases_depth = 0 
    1414wiki_name = WikidPadHelp 
    15 wikipagetitle_creationmode = 1 
     15tree_expandednodes_descriptorpathes_main =  
    1616wikipagetitleprefix = ++ 
    1717wikipagetitle_fromlinktitle = True 
     
    1919wikipagefiles_gracefuloutsideaddandremove = True 
    2020versioning_storagelocation = 0 
    21 tree_expandednodes_descriptorpathes_main =  
     21wikipagetitle_creationmode = 1 
    2222tree_last_root_wiki_word = WikidPadHelp 
    2323tree_force_scratchpad_visibility = True 
  • branches/stable-2.0/WikidPadHelp/data/KeyBindings.wiki

    r178 r215  
    22 
    33Many of the key bindings defined below may be changed, ChangingKeyBindings. 
     4 
     5Please note: These bindings have been developed for use on Windows. 
     6On other Operating Systems like Apple OSX or Linux there may be differences. 
     7See KeyBindingsOnLinuxAndOsx. 
    48 
    59*Formatting* 
     
    5054F6              switch between tree and editor 
    5155CTRL-TAB        switch between tabs 
    52  
  • branches/stable-2.0/extensions/KeyBindings.py

    r214 r215  
    3131    ActivateLinkNewTab="Alt-Shift-L" 
    3232    ActivateLinkBackground="Alt-Shift-Ctrl-L" 
     33    # to test: What about Mac OSX?   wx.Platform == "__WXMAC__" 
     34 
    3335ViewParents="Ctrl-Up" 
    3436ViewParentless="Ctrl-Shift-Up" 
     
    4648    GoHome="Ctrl-Shift-H" 
    4749    StartIncrementalSearch="Alt-Shift-F" 
    48 else: 
    49     GoHome="Ctrl-Q" 
    50     StartIncrementalSearch="Ctrl-F" 
    51  
    52 if wx.Platform == "__WXMAC__": 
    53     GoHome="Ctrl-Shift-H" 
    54     StartIncrementalSearch="Alt-Shift-F" 
    55     FocusFastSearchField="" 
    56     # FocusFastSearchField="Ctrl-Shift-F"   #todo: Find a working solution 
     50    FocusFastSearchField="Alt-Shift-S" 
    5751else: 
    5852    GoHome="Ctrl-Q" 
     
    8680ShowPreview="Ctrl-Shift-S" 
    8781ShowSwitchEditorPreview="Ctrl-Shift-Space" 
     82#if wx.Platform == "__WXMAC__": 
     83    # no good keybinding found that works on Mac 
     84    # ShowSwitchEditorPreview="??????" 
     85 
    8886ZoomIn="" 
    8987ZoomOut="" 
     
    9290ContinueSearch="F3" 
    9391BackwardSearch="Shift-F3" 
    94 AutoComplete="Ctrl-Space" 
     92if wx.Platform == "__WXMAC__": 
     93    AutoComplete="Alt-Space" 
     94else: 
     95    AutoComplete="Ctrl-Space" 
    9596ActivateLink2="Ctrl-Return" 
    9697SwitchFocus="F6" 
  • branches/stable-2.0/lib/pwiki/WikiTxtCtrl.py

    r214 r215  
    3939#        wikiWordToLabel, revStr, lineendToInternal, lineendToOs 
    4040 
    41 from Configuration import isUnicode, isWin9x, isLinux, isWindows 
     41from Configuration import isUnicode, isOSX, isWin9x, isLinux, isWindows 
    4242 
    4343try: 
     
    22842284 
    22852285        rect = sb.GetFieldRect(0) 
    2286          
    22872286        if isOSX(): 
    22882287            # needed on Mac OSX to avoid cropped text