home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1997 November
/
VPR9711A.ISO
/
VPR_DATA
/
Special
/
movemn8s
/
movemn8s.lzh
/
LEFT.MAC
< prev
next >
Wrap
Text File
|
1997-03-06
|
2KB
|
131 lines
// 左寄せマクロ ver.8.00
// by JRくん(GFB03426) 97.3.7
if (readonly) {
message "左寄せ:「上書き禁止」なので実行を中止します。";
endmacro;
}
if (browsemode) {
message "左寄せ:「閲覧モード」なので実行を中止します。";
endmacro;
}
$b=searchbuffer;
#s=searchoption;
disableinvert;
// 処理範囲を取得
if ((selecting) || (rectselecting)) {
#y1 = seltopy;
#y2 = selendy;
if (selendx == 0) #y2 = #y2 - 1;
escape;
} else {
#y1 = y;
#y2 = y;
}
// 1行分の文字列を処理するルーチン
OneLineLoop:
moveto 0, #y1;
// (EOF対策)
#IsEof = ( #y1 == linecount - 1 );
// その行の開始x座標を取得
#xstart = 0;
#Code = code;
if (#Code == 0x0d) {
// 改行だけだった場合
goto OneLineEnd;
} else if ((#Code == 0x20) || (#Code == 0x8140)
|| (#Code == 0) || (#Code == 0x09)) {
// 半角/全角スペース・ヌル文字・タブ
searchdown "[^ \t]",regular;
if ((y > #y1) || (code == 0x0d) || (code == eof)) {
// その行すべてがスペース等だった場合
goto AllChrDel;
} else {
#xstart = x;
}
}
// 終了x座標を取得
golineend;
#Code = code;
if ((#Code == 0x20) || (#Code == 0x8140) || (#Code == 0)
|| (#Code == 0x09) || (#Code == 0x0d) || (#Code == eof)) {
// 半角/全角スペース・ヌル文字・タブ・改行・EOFの場合
searchup "[^ \t]",regular;
}
right;
#xend = x;
#yend = y;
// タブ処理
moveto 0, #y1;
beginsel;
golineend;
tospace;
escape;
// カット後の文字列を取得
$tcutted = gettext(#xstart, #y1, #xend, #yend);
// 左寄せ
#len = strlen($tcutted);
moveto 0, #y1;
// 前行末に半角分の空きがある場合には改行を追加挿入するための下準備
$preface = "";
if (column != 0) {
up;
if (linelen < width) $preface = "\n";
down;
}
// 文字列挿入処理
beginsel;
if (#IsEof) {
golineend;
insert $preface + $tcutted;
} else if (#len >= width) {
down;
insert $preface + $tcutted;
} else {
down;
insert $preface + $tcutted + "\n";
}
goto OneLineEnd;
// その行すべてがスペース等の場合は、改行と置き換える、または削除
AllChrDel:
moveto 0, #y1;
beginsel;
if (#IsEof) {
golineend;
delete;
} else {
down;
insert "\n";
}
// ループ
OneLineEnd:
#y1 = #y1 + 1;
if (#y1 <= #y2) goto OneLineLoop;
// 終了処理
setsearch $b,#s;
enableinvert;
endmacro;