Changeset 3532


Ignore:
Timestamp:
Mar 18, 2019, 6:55:40 PM (6 years ago)
Author:
Andreas Schnellbacher
Message:
  • Added menu item to insert the sum of block-marked text.
File:
1 edited

Legend:

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

    r3529 r3532  
    613613                '')
    614614   DefNextItemStartsSubMenu()
    615    DefMenuItem( '',                                                           -- Insert   >
     615   DefMenuItem( 'insert',                                                     -- Insert   >
    616616                '~Insert',
    617617                '',
     
    644644                '',
    645645                NoDismiss)
     646   DefMenuSep()                                                                     --------------------
     647
     648   DefMenuItem( 'insertsum',                                                        -- Sum of numbers in block
     649                '~Sum of numbers in block',
     650                'Add',
     651                'Insert sum of block-marked values below the mark',
     652                '')
    646653   DefMenuSep()                                                                     --------------------
    647654
     
    38613868   SetMenuAttribute( GetAVar( 'mid_discardchanges'),    MIA_DISABLED, .modify > 0)
    38623869
     3870defc menuinit_insert
     3871   SetMenuAttribute( GetAVar( 'mid_insertsum'),         MIA_DISABLED, marktype() = 'BLOCK')
     3872
    38633873; ------------------------------------ Mark ---------------------------------
    38643874defc menuinit_mark
     
    39213931   SetMenuAttribute( GetAVar( 'mid_sort'), MIA_DISABLED, .last > 1)
    39223932
    3923 defc menuinit_reflowtext
    3924    ConditionalMenuText( 'reflowall')
    3925 
    3926    mt = MarkTypeOfFile()
    3927    on = (mt = 'BLOCK')
    3928    SetMenuAttribute( GetAVar( 'mid_reflowblock'), MIA_DISABLED, on)
    3929 
    3930    KeyPath = '\NEPMD\User\Reflow\Next'
    3931    on = QueryConfigKey( KeyPath)
    3932    SetMenuAttribute( GetAVar( 'mid_reflownext'),  MIA_CHECKED, not on)
    3933 
    3934 defc menuinit_reflowoptions
    3935    universal twospaces
    3936 
    3937    SetMenuAttribute( GetAVar( 'mid_twospaces'),         MIA_CHECKED, not twospaces)
    3938 
    3939    KeyPath = '\NEPMD\User\Reflow\Mail\IndentedLines'
    3940    on = QueryConfigKey( KeyPath)
    3941    SetMenuAttribute( GetAVar( 'mid_mailindentedlines'), MIA_CHECKED, not on)
    3942 
    3943    KeyPath = '\NEPMD\User\Reflow\Mail\IndentLists'
    3944    on = QueryConfigKey( KeyPath)
    3945    SetMenuAttribute( GetAVar( 'mid_mailindentlists'),   MIA_CHECKED, not on)
    3946 
    3947 defc menuinit_reflowmargins
    3948    KeyPath = '\NEPMD\User\Reflow\Margins\1'
    3949    new = '1 'GetDefaultHeaderWidth()' 1'
    3950    SetMenuVarText( 'reflowmargins1', new)
    3951 
    3952    KeyPath = '\NEPMD\User\Reflow\Margins\2'
    3953    new = QueryConfigKey( KeyPath)
    3954    SetMenuVarText( 'reflowmargins2', new)
    3955 
    3956    new = .margins
    3957    SetMenuVarText( 'reflowmargins3', new)
    3958 
    3959    KeyPath = '\NEPMD\User\Reflow\Margins\Selected'
    3960    i = QueryConfigKey( KeyPath)
    3961    SetMenuAttribute( GetAVar( 'mid_reflowmargins1'), MIA_CHECKED, not (i = 1))
    3962    SetMenuAttribute( GetAVar( 'mid_reflowmargins2'), MIA_CHECKED, not (i = 2))
    3963    SetMenuAttribute( GetAVar( 'mid_reflowmargins3'), MIA_CHECKED, not (i = 3))
    3964 
    3965    if i = 1 then
    3966       text = '~Configure header width...'
    3967    elseif i = 2 then
    3968       text = '~Configure selected...'
    3969    elseif i = 3 then
    3970       text = '~Configure margins...'
    3971    endif
    3972    SetMenuText( 'mid_reflowmarginsconfig', text)
    3973 
    39743933defc menuinit_linebreaks
    39753934   universal default_save_options
     
    41184077   endif
    41194078   SetMenuVarText( 'selectdrawstyle', new)
     4079
     4080defc menuinit_reflowtext
     4081   ConditionalMenuText( 'reflowall')
     4082
     4083   mt = MarkTypeOfFile()
     4084   on = (mt = 'BLOCK')
     4085   SetMenuAttribute( GetAVar( 'mid_reflowblock'), MIA_DISABLED, on)
     4086
     4087   KeyPath = '\NEPMD\User\Reflow\Next'
     4088   on = QueryConfigKey( KeyPath)
     4089   SetMenuAttribute( GetAVar( 'mid_reflownext'),  MIA_CHECKED, not on)
     4090
     4091defc menuinit_reflowoptions
     4092   universal twospaces
     4093
     4094   SetMenuAttribute( GetAVar( 'mid_twospaces'),         MIA_CHECKED, not twospaces)
     4095
     4096   KeyPath = '\NEPMD\User\Reflow\Mail\IndentedLines'
     4097   on = QueryConfigKey( KeyPath)
     4098   SetMenuAttribute( GetAVar( 'mid_mailindentedlines'), MIA_CHECKED, not on)
     4099
     4100   KeyPath = '\NEPMD\User\Reflow\Mail\IndentLists'
     4101   on = QueryConfigKey( KeyPath)
     4102   SetMenuAttribute( GetAVar( 'mid_mailindentlists'),   MIA_CHECKED, not on)
     4103
     4104defc menuinit_reflowmargins
     4105   KeyPath = '\NEPMD\User\Reflow\Margins\1'
     4106   new = '1 'GetDefaultHeaderWidth()' 1'
     4107   SetMenuVarText( 'reflowmargins1', new)
     4108
     4109   KeyPath = '\NEPMD\User\Reflow\Margins\2'
     4110   new = QueryConfigKey( KeyPath)
     4111   SetMenuVarText( 'reflowmargins2', new)
     4112
     4113   new = .margins
     4114   SetMenuVarText( 'reflowmargins3', new)
     4115
     4116   KeyPath = '\NEPMD\User\Reflow\Margins\Selected'
     4117   i = QueryConfigKey( KeyPath)
     4118   SetMenuAttribute( GetAVar( 'mid_reflowmargins1'), MIA_CHECKED, not (i = 1))
     4119   SetMenuAttribute( GetAVar( 'mid_reflowmargins2'), MIA_CHECKED, not (i = 2))
     4120   SetMenuAttribute( GetAVar( 'mid_reflowmargins3'), MIA_CHECKED, not (i = 3))
     4121
     4122   if i = 1 then
     4123      text = '~Configure header width...'
     4124   elseif i = 2 then
     4125      text = '~Configure selected...'
     4126   elseif i = 3 then
     4127      text = '~Configure margins...'
     4128   endif
     4129   SetMenuText( 'mid_reflowmarginsconfig', text)
    41204130
    41214131; ------------------------------------ Search -------------------------------
Note: See TracChangeset for help on using the changeset viewer.