Changeset 3532
- Timestamp:
- Mar 18, 2019, 6:55:40 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/newmenu.e ¶
r3529 r3532 613 613 '') 614 614 DefNextItemStartsSubMenu() 615 DefMenuItem( ' ',-- Insert >615 DefMenuItem( 'insert', -- Insert > 616 616 '~Insert', 617 617 '', … … 644 644 '', 645 645 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 '') 646 653 DefMenuSep() -------------------- 647 654 … … 3861 3868 SetMenuAttribute( GetAVar( 'mid_discardchanges'), MIA_DISABLED, .modify > 0) 3862 3869 3870 defc menuinit_insert 3871 SetMenuAttribute( GetAVar( 'mid_insertsum'), MIA_DISABLED, marktype() = 'BLOCK') 3872 3863 3873 ; ------------------------------------ Mark --------------------------------- 3864 3874 defc menuinit_mark … … 3921 3931 SetMenuAttribute( GetAVar( 'mid_sort'), MIA_DISABLED, .last > 1) 3922 3932 3923 defc menuinit_reflowtext3924 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_reflowoptions3935 universal twospaces3936 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_reflowmargins3948 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 = .margins3957 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 then3966 text = '~Configure header width...'3967 elseif i = 2 then3968 text = '~Configure selected...'3969 elseif i = 3 then3970 text = '~Configure margins...'3971 endif3972 SetMenuText( 'mid_reflowmarginsconfig', text)3973 3974 3933 defc menuinit_linebreaks 3975 3934 universal default_save_options … … 4118 4077 endif 4119 4078 SetMenuVarText( 'selectdrawstyle', new) 4079 4080 defc 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 4091 defc 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 4104 defc 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) 4120 4130 4121 4131 ; ------------------------------------ Search -------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.