Changeset 3503
- Timestamp:
- Mar 7, 2019, 7:23:19 PM (6 years ago)
- Location:
- trunk/src/netlabs/macros
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/box.e ¶
r3501 r3503 124 124 stop 125 125 endif 126 7 126 127 127 do i = firstline to lastline 128 128 getline LineStr, i, fileid … … 307 307 Entries = Entries''Sep || '/<char> any char' 308 308 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 310 325 Title = 'Select a box style' --copies( ' ', 20) 311 326 Text = 'The selection will be saved on 'ChangeStr( '~', OK__MSG, '')'.' … … 328 343 parse value Result with Button 2 Selected \0 329 344 Selected = leftstr( Selected, 1) 330 KeyPath = '\NEPMD\User\Format\BoxStyle'331 OldStyle = QueryConfigKey( KeyPath)332 345 BoxChar = '' 333 346 Style = '' … … 350 363 atoi( 1) || atoi( 0) || atol( 0) || 351 364 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 354 370 endif 355 371 if Style <> '' & Style <> OldStyle then … … 361 377 endif 362 378 363 ; ---------------------------------------------------------------------------364 /*365 defproc SelectBoxStyle366 getfileid startfid367 368 -- Create a private buffer369 bufhndl = buffer( CREATEBUF, 'selectboxstyle', MAXBUFSIZE, 1)370 371 -- Create a tmp file372 '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 return377 endif378 .autosave = 0379 browse_mode = browse() -- query current state380 if browse_mode then381 call browse( 0)382 endif383 384 insertline '1 '\179' (CP 850, 437)', .last + 1 -- ³ thin, single line385 insertline '2 '\186' (CP 850, 437)', .last + 1 -- º thin, double line386 insertline '3 | (ASCII)', .last + 1 -- | ASCII chars387 insertline '4 '\219' (CP 850, 437)', .last + 1 -- Û thick line388 insertline '5 '\216' (CP 437)', .last + 1 -- Ø H: double, V: single line389 insertline '6 '\215' (CP 437)', .last + 1 -- × H: single, V: double line390 insertline 'C /'||'* (C comment)', .last + 1391 insertline 'P (* (Pascal comment)', .last + 1392 insertline 'A ; (Assembler comment)', .last + 1393 insertline 'S .* (Script comment)', .last + 1394 insertline 'B (space)', .last + 1395 insertline 'E (erase)', .last + 1396 insertline 'R (reflow)', .last + 1397 insertline '/<char> (any char)', .last + 1398 399 if browse_mode then400 call browse( 1)401 endif -- restore browse state402 403 -- Fill buffer with tmp file and quit it404 if Listbox_Buffer_From_File( startfid, bufhndl, noflines, usedsize) then405 return406 endif407 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 = 2050412 DefaultButton = 1413 Buttons = '/'OK__MSG'/'CANCEL__MSG'/'HELP__MSG414 415 refresh416 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) = cursor420 14, 50, -- height, width in chars421 GethWndC( APP_HANDLE) || atoi( DefaultItem) ||422 atoi( DefaultButton) || atoi( HelpId) ||423 Text\0)424 call buffer( FREEBUF, bufhndl)425 refresh426 427 -- Check result428 parse value Result with Button 2 Selected \0429 if Button = 1 then -- OK430 else -- Cancel431 endif432 */433 -
TabularUnified trunk/src/netlabs/macros/draw.e ¶
r3502 r3503 189 189 190 190 ; --------------------------------------------------------------------------- 191 defc Draw_Exit191 defc draw_exit 192 192 universal cursor_mode 193 193 getfileid fid … … 590 590 Entries = Entries''Sep || '/<char> any char' 591 591 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 593 608 Title = 'Select a draw style' --copies( ' ', 20) 594 609 Text = 'The selection will be saved on 'ChangeStr( '~', OK__MSG, '')'.' … … 611 626 parse value Result with Button 2 Selected \0 612 627 Selected = leftstr( Selected, 1) 613 KeyPath = '\NEPMD\User\Format\DrawStyle'614 OldStyle = QueryConfigKey( KeyPath)615 628 BoxChar = '' 616 629 Style = '' … … 633 646 atoi( 1) || atoi( 0) || atol( 0) || 634 647 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 637 653 endif 638 654 if Style <> '' & Style <> OldStyle then
Note:
See TracChangeset
for help on using the changeset viewer.