Changeset 3503


Ignore:
Timestamp:
Mar 7, 2019, 7:23:19 PM (6 years ago)
Author:
Andreas Schnellbacher
Message:
Location:
trunk/src/netlabs/macros
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/netlabs/macros/box.e

    r3501 r3503  
    124124            stop
    125125         endif
    126 7
     126
    127127         do i = firstline to lastline
    128128            getline LineStr, i, fileid
     
    307307   Entries = Entries''Sep || '/<char>   any char'
    308308
    309    DefaultItem = 1      -- <-- Select last selected item. For /, add last selected char or <char>
     309   KeyPath = '\NEPMD\User\Format\BoxStyle'
     310   OldStyle = QueryConfigKey( KeyPath)
     311   rest = Entries
     312   i = 0
     313   DefaultItem = 1
     314   do while rest <> ''
     315      if i = 20 then  -- just to prevent looping forever
     316         leave
     317      endif
     318      i = i + 1
     319      parse value rest with (Sep) 2 Char 3 . (Sep) +0 rest
     320      if Char = leftstr( OldStyle, 1) then
     321         DefaultItem = i
     322         leave
     323      endif
     324   enddo
    310325   Title = 'Select a box style'  --copies( ' ', 20)
    311326   Text = 'The selection will be saved on 'ChangeStr( '~', OK__MSG, '')'.'
     
    328343   parse value Result with Button 2 Selected \0
    329344   Selected = leftstr( Selected, 1)
    330    KeyPath = '\NEPMD\User\Format\BoxStyle'
    331    OldStyle = QueryConfigKey( KeyPath)
    332345   BoxChar = ''
    333346   Style = ''
     
    350363                               atoi( 1) || atoi( 0) || atol( 0) ||
    351364                               Text) with Button 2 BoxChar \0
    352 
    353          Style = Selected''BoxChar
     365         if Button = \1 then      -- OK
     366            Style = Selected''BoxChar
     367         else                     -- Cancel
     368            Style = ''
     369         endif
    354370      endif
    355371      if Style <> '' & Style <> OldStyle then
     
    361377   endif
    362378
    363 ; ---------------------------------------------------------------------------
    364 /*
    365 defproc SelectBoxStyle
    366    getfileid startfid
    367 
    368    -- Create a private buffer
    369    bufhndl = buffer( CREATEBUF, 'selectboxstyle', MAXBUFSIZE, 1)
    370 
    371    -- Create a tmp file
    372    'xcom e /c /q .selectboxstyle'
    373    if rc <> -282 then  -- sayerror( 'New file')
    374       sayerror ERROR__MSG rc BAD_TMP_FILE__MSG sayerrortext( rc)
    375       call buffer( FREEBUF, bufhndl)
    376       return
    377    endif
    378    .autosave = 0
    379    browse_mode = browse()     -- query current state
    380    if browse_mode then
    381       call browse( 0)
    382    endif
    383 
    384    insertline '1  '\179'   (CP 850, 437)', .last + 1  -- ³  thin, single line
    385    insertline '2  '\186'   (CP 850, 437)', .last + 1  -- º  thin, double line
    386    insertline '3  |   (ASCII)', .last + 1             -- |  ASCII chars
    387    insertline '4  '\219'   (CP 850, 437)', .last + 1  -- Û  thick line
    388    insertline '5  '\216'   (CP 437)', .last + 1       -- Ø  H: double, V: single line
    389    insertline '6  '\215'   (CP 437)', .last + 1       -- ×  H: single, V: double line
    390    insertline 'C  /'||'*  (C comment)', .last + 1
    391    insertline 'P  (*  (Pascal comment)', .last + 1
    392    insertline 'A  ;   (Assembler comment)', .last + 1
    393    insertline 'S  .*  (Script comment)', .last + 1
    394    insertline 'B      (space)', .last + 1
    395    insertline 'E      (erase)', .last + 1
    396    insertline 'R      (reflow)', .last + 1
    397    insertline '/<char>  (any char)', .last + 1
    398 
    399    if browse_mode then
    400       call browse( 1)
    401    endif  -- restore browse state
    402 
    403    -- Fill buffer with tmp file and quit it
    404    if Listbox_Buffer_From_File( startfid, bufhndl, noflines, usedsize) then
    405       return
    406    endif
    407 
    408    DefaultItem = 1      -- <-- Select last selected item. For /, add last selected char or <char>
    409    Title = 'Select a box style'  --copies( ' ', 20)
    410    Text = 'The selection will be saved on 'ChangeStr( '~', OK__MSG, '')'.'
    411    HelpId = 2050
    412    DefaultButton = 1
    413    Buttons = '/'OK__MSG'/'CANCEL__MSG'/'HELP__MSG
    414 
    415    refresh
    416    Result = ListBox( Title\0,         -- <-- \0 required?
    417                      \0 || atol( usedsize) || atoi( 32) || atoi( bufhndl) || 3,
    418                      Buttons,
    419                      0, 0,      -- top, left in chars, (0,0) = center, (C,C) = cursor
    420                      14, 50,    -- height, width in chars
    421                      GethWndC( APP_HANDLE) || atoi( DefaultItem) ||
    422                      atoi( DefaultButton) || atoi( HelpId) ||
    423                      Text\0)
    424    call buffer( FREEBUF, bufhndl)
    425    refresh
    426 
    427    -- Check result
    428    parse value Result with Button 2 Selected \0
    429    if Button = 1 then                         -- OK
    430    else                                       -- Cancel
    431    endif
    432 */
    433 
  • TabularUnified trunk/src/netlabs/macros/draw.e

    r3502 r3503  
    189189
    190190; ---------------------------------------------------------------------------
    191 defc Draw_Exit
     191defc draw_exit
    192192   universal cursor_mode
    193193   getfileid fid
     
    590590   Entries = Entries''Sep || '/<char>   any char'
    591591
    592    DefaultItem = 1      -- <-- Select last selected item. For /, add last selected char or <char>
     592   KeyPath = '\NEPMD\User\Format\DrawStyle'
     593   OldStyle = QueryConfigKey( KeyPath)
     594   rest = Entries
     595   i = 0
     596   DefaultItem = 1
     597   do while rest <> ''
     598      if i = 20 then  -- just to prevent looping forever
     599         leave
     600      endif
     601      i = i + 1
     602      parse value rest with (Sep) 2 Char 3 . (Sep) +0 rest
     603      if Char = leftstr( OldStyle, 1) then
     604         DefaultItem = i
     605         leave
     606      endif
     607   enddo
    593608   Title = 'Select a draw style'  --copies( ' ', 20)
    594609   Text = 'The selection will be saved on 'ChangeStr( '~', OK__MSG, '')'.'
     
    611626   parse value Result with Button 2 Selected \0
    612627   Selected = leftstr( Selected, 1)
    613    KeyPath = '\NEPMD\User\Format\DrawStyle'
    614    OldStyle = QueryConfigKey( KeyPath)
    615628   BoxChar = ''
    616629   Style = ''
     
    633646                               atoi( 1) || atoi( 0) || atol( 0) ||
    634647                               Text) with Button 2 BoxChar \0
    635 
    636          Style = Selected''BoxChar
     648         if Button = \1 then      -- OK
     649            Style = Selected''BoxChar
     650         else                     -- Cancel
     651            Style = ''
     652         endif
    637653      endif
    638654      if Style <> '' & Style <> OldStyle then
Note: See TracChangeset for help on using the changeset viewer.