home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1997 November
/
VPR9711A.ISO
/
VPR_DATA
/
Special
/
movemn8s
/
movemn8s.lzh
/
INP_RIGT.MAC
< prev
next >
Wrap
Text File
|
1997-03-06
|
4KB
|
197 lines
// 右端指定右寄せマクロ ver.8.00
// by JRくん(GFB03426) 97.3.7
if (readonly) {
message "右端指定右寄せ:「上書き禁止」なので実行を中止します。";
endmacro;
}
if (browsemode) {
message "右端指定右寄せ:「閲覧モード」なので実行を中止します。";
endmacro;
}
$b=searchbuffer;
#s=searchoption;
// INIファイルを取得
$INIdir = getinistr("HIDEMARU.INI", "Env", "MacroPath");
if ($INIdir == "") $INIdir = hidemarudir;
$INIfile = $INIdir+"\\MOVEMENU.INI";
// 右端のデフォルト値の設定
#default = getininum($INIfile, "Margin", "RightMargin");
if (#default == 0) {
#default = 70;
}
$space80 = " ";
// ワードラップ使用時には警告
if ( kinsokustate ) {
if ( getininum("hidemaru.ini","Env","Wordwrap") == 1 ) {
question "右端指定右寄せ:\n"
+ "現在この秀丸はワードラップ機能を使用していますが、\n"
+ "このまま処理を続けると、レイアウトが崩れたり、\n"
+ "行の最後が2文字程度欠落したりする場合があります。\n"
+ "\nこのまま処理を続けますか?";
if ( result == no ) endmacro;
}
}
disableinvert;
// 処理範囲を取得
if ((selecting) || (rectselecting)) {
#y2 = seltopy;
#y1 = selendy;
if (selendx == 0) #y1 = #y1 - 1;
escape;
} else {
#y1 = y;
#y2 = y;
}
// 右端を入力
#imestate = imestate;
if (#imestate) imeswitch;
PosInput:
$Pos = input("右端指定右寄せマクロ\n"
+ "右端の値を入力してください。", str(#default));
if (result == no) endmacro;
#Pos = val($Pos);
if (#Pos <= 0) {
message "正の値を入力してください。";
goto PosInput;
}
if (#Pos != #default) {
writeininum $INIfile, "Margin", "RightMargin", #Pos;
}
if (#imestate) imeswitch;
// 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);
if ((#Pos - #len) > 0) {
#space = #Pos - #len;
} else {
#space = 0;
}
$space = "";
if (#space > 0) {
#sp1 = #space / 80;
#sp2 = #space % 80;
while (#sp1 > 0) {
$space = $space + $space80;
#sp1 = #sp1 - 1;
}
$space = $space + leftstr($space80, #sp2);
}
moveto 0, #y1;
// 前行末に半角分の空きがある場合には改行を追加挿入するための下準備
$preface = "";
if (column != 0) {
up;
if (linelen < width) $preface = "\n";
down;
}
// 文字列挿入処理
beginsel;
if (#IsEof) {
golineend;
insert $preface + $space + $tcutted;
} else if (#len > width) {
down;
insert $preface + $space + $tcutted;
} else {
down;
insert $preface + $space + $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;