2000-02-25 11:04:07 +00:00
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
// GoldED+
|
|
|
|
|
// Copyright (C) 1990-1999 Odinn Sorensen
|
|
|
|
|
// Copyright (C) 1999-2000 Alexander S. Aganichev
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
// General Public License for more details.
|
|
|
|
|
//
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
|
// MA 02111-1307 USA
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
// $Id$
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
// Copy, Move, Forward and Delete.
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
#include <golded.h>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
2001-11-19 15:20:35 +00:00
|
|
|
|
// Global data from GEREAD & GECTRL
|
2000-02-25 11:04:07 +00:00
|
|
|
|
|
|
|
|
|
extern GMsg* reader_msg;
|
2001-11-19 15:20:35 +00:00
|
|
|
|
extern int _use_fwd;
|
2000-02-25 11:04:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
void Area::DeleteMsg(GMsg* msg, int direction) {
|
|
|
|
|
|
2005-10-07 12:41:11 +00:00
|
|
|
|
uint32_t replyto=0, reply1st=0, lread;
|
2000-02-25 11:04:07 +00:00
|
|
|
|
|
|
|
|
|
GMsg* uplink = (GMsg*)throw_calloc(1, sizeof(GMsg));
|
|
|
|
|
GMsg* downlink = (GMsg*)throw_calloc(1, sizeof(GMsg));
|
|
|
|
|
|
|
|
|
|
if(msg->msgno) {
|
|
|
|
|
|
|
|
|
|
// Fix the lastread pointer
|
|
|
|
|
lread = Msgn.CvtReln(lastread());
|
|
|
|
|
if(msg->msgno == lread) {
|
|
|
|
|
uint l = lastread();
|
|
|
|
|
if(direction == DIR_PREV) {
|
|
|
|
|
if(l-1) {
|
|
|
|
|
l--;
|
|
|
|
|
}
|
|
|
|
|
else if((l+1) <= Msgn.Count())
|
|
|
|
|
l++;
|
|
|
|
|
else
|
|
|
|
|
l = 0;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
if((l+1) <= Msgn.Count())
|
|
|
|
|
l++;
|
|
|
|
|
else if(l-1)
|
|
|
|
|
l--;
|
|
|
|
|
else
|
|
|
|
|
l = 0;
|
|
|
|
|
}
|
|
|
|
|
set_lastread(l);
|
|
|
|
|
lread = Msgn.CvtReln(lastread());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Get reply links
|
|
|
|
|
if(Msgn.ToReln(msg->link.to())) {
|
|
|
|
|
replyto = msg->link.to();
|
|
|
|
|
}
|
|
|
|
|
if(Msgn.ToReln(msg->link.first())) {
|
|
|
|
|
reply1st = msg->link.first();
|
|
|
|
|
}
|
|
|
|
|
if(replyto) {
|
2000-10-20 11:14:13 +00:00
|
|
|
|
if(not LoadHdr(downlink, replyto, false))
|
2000-02-25 11:04:07 +00:00
|
|
|
|
downlink->link.first_set(0);
|
|
|
|
|
}
|
|
|
|
|
if(reply1st) {
|
2000-10-20 11:14:13 +00:00
|
|
|
|
if(not LoadHdr(uplink, reply1st, false))
|
2000-02-25 11:04:07 +00:00
|
|
|
|
uplink->link.to_set(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
|
// Diagram of splicing the links of a deleted msg
|
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
|
// Reply1st Replyto
|
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ŀ
|
|
|
|
|
// Downlink --> Deleted --> Uplink
|
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
// Reply1st Replyto Confused ? :-)
|
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
// Only update the up/downlinks if they are pointing to this msg
|
|
|
|
|
if(replyto) {
|
|
|
|
|
if(downlink->link.first() == msg->msgno) {
|
|
|
|
|
downlink->link.first_set(reply1st);
|
|
|
|
|
SaveHdr(GMSG_UPDATE, downlink);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
replyto = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(reply1st) {
|
|
|
|
|
if(uplink->link.to() == msg->msgno) {
|
|
|
|
|
uplink->link.to_set(replyto);
|
|
|
|
|
SaveHdr(GMSG_UPDATE, uplink);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Delete the message
|
|
|
|
|
msg->attr.del1();
|
|
|
|
|
DelMsg(msg);
|
|
|
|
|
|
|
|
|
|
// Update scanning files
|
2003-12-10 08:35:16 +00:00
|
|
|
|
if(isnet())
|
2000-02-25 11:04:07 +00:00
|
|
|
|
TouchNetscan(false);
|
|
|
|
|
|
2003-12-22 07:24:01 +00:00
|
|
|
|
if(not issoftdelete()) {
|
2001-03-29 18:55:31 +00:00
|
|
|
|
// Remove message from internal table
|
|
|
|
|
Msgn.Del(msg->msgno);
|
|
|
|
|
}
|
2000-02-25 11:04:07 +00:00
|
|
|
|
|
|
|
|
|
// Update lastreads
|
|
|
|
|
if(Msgn.Count())
|
|
|
|
|
set_lastread(Msgn.ToReln(lread));
|
|
|
|
|
else
|
|
|
|
|
set_lastread(0);
|
|
|
|
|
msg->msgno = lread;
|
|
|
|
|
UpdateAreadata();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ResetMsg(downlink);
|
|
|
|
|
throw_free(downlink);
|
|
|
|
|
|
|
|
|
|
ResetMsg(uplink);
|
|
|
|
|
throw_free(uplink);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
void Area::DelMsgs(GMsg* msg) {
|
|
|
|
|
|
|
|
|
|
GFTRK("DelMsgs");
|
|
|
|
|
|
2005-11-02 19:45:03 +00:00
|
|
|
|
if (CFG->arearecyclebin[0])
|
2005-10-30 02:16:01 +00:00
|
|
|
|
{
|
2005-11-02 19:45:03 +00:00
|
|
|
|
int areano = AL.AreaEchoToNo(CFG->arearecyclebin);
|
|
|
|
|
int currno = AL.AreaIdToNo(CurrArea);
|
|
|
|
|
if ((areano != currno) && (areano >= 0))
|
|
|
|
|
{
|
|
|
|
|
CopyMoveForward(true);
|
|
|
|
|
GFTRK(NULL);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2005-10-30 02:16:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-02-25 11:04:07 +00:00
|
|
|
|
uint n, x;
|
|
|
|
|
int topline=0;
|
|
|
|
|
bool delask=true, dellocked=false;
|
|
|
|
|
|
|
|
|
|
n = 0;
|
|
|
|
|
if(Mark.Count()) {
|
|
|
|
|
GMenuDomarks MenuDomarks;
|
|
|
|
|
n = MenuDomarks.Run(LNG->Delete);
|
|
|
|
|
if(n == 1) {
|
|
|
|
|
HandleGEvent(EVTT_MSGDELETING);
|
|
|
|
|
w_progress(MODE_NEW, C_INFOW, 0, Mark.Count(), LNG->Deleting);
|
|
|
|
|
Lock();
|
|
|
|
|
int escaped = false;
|
|
|
|
|
for(n=0; n<Mark.Count(); n++) {
|
|
|
|
|
x = n;
|
|
|
|
|
if(kbxhit()) {
|
|
|
|
|
if(kbxget() == Key_Esc) {
|
|
|
|
|
HandleGEvent(EVTT_JOBFAILED);
|
|
|
|
|
escaped = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2006-01-10 23:53:52 +00:00
|
|
|
|
update_statuslinef(LNG->DeletingMsg, "ST_DELETINGMSG", x+1, Mark.Count());
|
2000-02-25 11:04:07 +00:00
|
|
|
|
w_progress(MODE_UPDATE, C_INFOW, x+1, Mark.Count(), LNG->Deleting);
|
2005-10-07 12:41:11 +00:00
|
|
|
|
uint msgno = Mark[x];
|
2000-02-25 11:04:07 +00:00
|
|
|
|
if(Msgn.ToReln(msgno)) {
|
2000-10-20 11:14:13 +00:00
|
|
|
|
if(LoadHdr(msg, msgno, false)) {
|
2000-02-25 11:04:07 +00:00
|
|
|
|
bool deletethis = false;
|
|
|
|
|
if(delask) {
|
|
|
|
|
if(msg->attr.uns() and not (msg->attr.rcv() or msg->attr.del())) {
|
|
|
|
|
AA->LoadMsg(msg, msgno, CFG->dispmargin-(int)CFG->switches.get(disppagebar));
|
2006-01-20 00:15:05 +00:00
|
|
|
|
w_progress(MODE_QUIT, BLACK_|_BLACK, 0, 0, NULL);
|
2000-02-25 11:04:07 +00:00
|
|
|
|
HeaderView->Use(AA, msg);
|
|
|
|
|
HeaderView->Paint();
|
|
|
|
|
BodyView->Use(AA, msg, topline);
|
|
|
|
|
BodyView->Paint();
|
|
|
|
|
GMenuDelete MenuDelete;
|
|
|
|
|
switch(MenuDelete.Run(YES, msg)) {
|
|
|
|
|
case YES: // Yes, delete
|
|
|
|
|
deletethis = true;
|
|
|
|
|
break;
|
|
|
|
|
case NO: // No, dont delete
|
|
|
|
|
continue;
|
|
|
|
|
default: // Delete without asking
|
|
|
|
|
delask = false;
|
|
|
|
|
if(msg->attr.lok())
|
|
|
|
|
dellocked = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(msg->attr.lok() and not dellocked and not deletethis) {
|
|
|
|
|
AA->LoadMsg(msg, msgno, CFG->dispmargin-(int)CFG->switches.get(disppagebar));
|
2006-01-20 00:15:05 +00:00
|
|
|
|
w_progress(MODE_QUIT, BLACK_|_BLACK, 0, 0, NULL);
|
2000-02-25 11:04:07 +00:00
|
|
|
|
HeaderView->Use(AA, msg);
|
|
|
|
|
HeaderView->Paint();
|
|
|
|
|
BodyView->Use(AA, msg, topline);
|
|
|
|
|
BodyView->Paint();
|
|
|
|
|
GMenuDelete MenuDelete;
|
|
|
|
|
switch(MenuDelete.Run(YES, msg)) {
|
|
|
|
|
case YES: // Yes, delete
|
|
|
|
|
break;
|
|
|
|
|
case NO: // No, dont delete
|
|
|
|
|
continue;
|
|
|
|
|
default: // Delete without asking
|
|
|
|
|
dellocked = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-11-20 13:13:50 +00:00
|
|
|
|
DeleteMsg(msg, reader_direction);
|
2000-02-25 11:04:07 +00:00
|
|
|
|
PMrk.Del(msg->msgno);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Unlock();
|
|
|
|
|
if(not escaped) {
|
|
|
|
|
isreadmark = false;
|
|
|
|
|
Mark.ResetAll();
|
|
|
|
|
}
|
2006-01-20 00:15:05 +00:00
|
|
|
|
w_progress(MODE_QUIT, BLACK_|_BLACK, 0, 0, NULL);
|
2000-02-25 11:04:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(n == 0) {
|
|
|
|
|
Mark.Del(msg->msgno);
|
|
|
|
|
PMrk.Del(msg->msgno);
|
|
|
|
|
GMenuDelete MenuDelete;
|
|
|
|
|
if(Mark.Count() or MenuDelete.Run(NO, msg)) {
|
|
|
|
|
HandleGEvent(EVTT_MSGDELETING);
|
|
|
|
|
DeleteMsg(msg, reader_direction);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
HandleGEvent(EVTT_BREAKLOOP);
|
|
|
|
|
|
|
|
|
|
GFTRK(NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
void TwitDeleteMsg(GMsg* msg) {
|
|
|
|
|
|
|
|
|
|
GFTRK("TwitDeleteMsg");
|
|
|
|
|
|
|
|
|
|
HandleGEvent(EVTT_MSGDELETING);
|
|
|
|
|
AA->Mark.Del(msg->msgno);
|
|
|
|
|
AA->PMrk.Del(msg->msgno);
|
|
|
|
|
AA->DeleteMsg(msg, reader_direction);
|
|
|
|
|
HandleGEvent(EVTT_BREAKLOOP);
|
|
|
|
|
|
|
|
|
|
GFTRK(NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
void Area::DelMsg() {
|
|
|
|
|
|
|
|
|
|
if(Msgn.Count())
|
|
|
|
|
DelMsgs(reader_msg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
2005-10-30 02:16:01 +00:00
|
|
|
|
void CmfMsgs(GMsg* msg, bool torecycle)
|
|
|
|
|
{
|
2000-02-25 11:04:07 +00:00
|
|
|
|
// Select action
|
2005-10-30 02:16:01 +00:00
|
|
|
|
int cmf;
|
|
|
|
|
|
|
|
|
|
if (torecycle) cmf = MODE_MOVE;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
GMenuCMF MenuCMF;
|
|
|
|
|
cmf = MenuCMF.Run();
|
|
|
|
|
if(cmf == -1)
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-25 11:04:07 +00:00
|
|
|
|
// Set language strings
|
|
|
|
|
char* pickstr = NULL;
|
|
|
|
|
char* markstr = NULL;
|
|
|
|
|
char* progstr = NULL;
|
|
|
|
|
char* statstr = NULL;
|
2006-01-10 23:53:52 +00:00
|
|
|
|
char* tokenstr = "";
|
2000-02-25 11:04:07 +00:00
|
|
|
|
int loadmode = GMSG_UNS_NOT_RCV;
|
|
|
|
|
switch(cmf) {
|
|
|
|
|
case MODE_COPY:
|
|
|
|
|
GFTRK("CopyMsgs");
|
|
|
|
|
pickstr = LNG->CopyArea;
|
|
|
|
|
markstr = LNG->Copy;
|
|
|
|
|
progstr = LNG->Copying;
|
|
|
|
|
statstr = LNG->CopyingMsg;
|
2006-01-10 23:53:52 +00:00
|
|
|
|
tokenstr = "ST_COPYINGMSG";
|
2000-02-25 11:04:07 +00:00
|
|
|
|
loadmode |= GMSG_COPY;
|
|
|
|
|
break;
|
|
|
|
|
case MODE_MOVE:
|
2003-04-28 10:14:09 +00:00
|
|
|
|
if(AA->attr().r_o()) {
|
|
|
|
|
GMenuReadonly MenuReadonly;
|
|
|
|
|
if(not MenuReadonly.Run())
|
|
|
|
|
return;
|
|
|
|
|
}
|
2005-10-30 02:16:01 +00:00
|
|
|
|
|
|
|
|
|
if (torecycle)
|
|
|
|
|
{
|
|
|
|
|
GFTRK("DeleteMsgs");
|
|
|
|
|
pickstr = ">>Delete To Area: ";
|
|
|
|
|
markstr = " Delete ";
|
|
|
|
|
progstr = " Deleting ";
|
|
|
|
|
statstr = "Deleting Msg %u of %u to %s";
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
GFTRK("MoveMsgs");
|
|
|
|
|
pickstr = LNG->MoveArea;
|
|
|
|
|
markstr = LNG->Move;
|
|
|
|
|
progstr = LNG->Moving;
|
|
|
|
|
statstr = LNG->MovingMsg;
|
2006-01-10 23:53:52 +00:00
|
|
|
|
tokenstr = "ST_MOVINGMSG";
|
2005-10-30 02:16:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-02-25 11:04:07 +00:00
|
|
|
|
loadmode |= GMSG_MOVE;
|
|
|
|
|
break;
|
|
|
|
|
case MODE_FORWARD:
|
|
|
|
|
GFTRK("ForwardMsgs");
|
|
|
|
|
pickstr = LNG->ForwardArea;
|
2005-10-28 16:33:54 +00:00
|
|
|
|
markstr = " Forward ";
|
|
|
|
|
progstr = " Forwarding ";
|
|
|
|
|
statstr = "Forwarding Msg %u of %u to %s";
|
2000-02-25 11:04:07 +00:00
|
|
|
|
break;
|
2005-10-27 20:14:44 +00:00
|
|
|
|
case MODE_UPDATE:
|
|
|
|
|
GFTRK("ToggleSent");
|
|
|
|
|
loadmode |= GMSG_UPDATE;
|
|
|
|
|
break;
|
2000-02-25 11:04:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Do with current or marked msgs?
|
|
|
|
|
int do_mode = MODE_CURRENT;
|
2005-10-28 16:33:54 +00:00
|
|
|
|
if (AA->Mark.Count())
|
|
|
|
|
{
|
|
|
|
|
GMenuDomarks MenuDomarks;
|
|
|
|
|
do_mode = MenuDomarks.Run(markstr);
|
|
|
|
|
if (do_mode == MODE_DONT)
|
|
|
|
|
{
|
|
|
|
|
GFTRK(NULL);
|
|
|
|
|
return;
|
2000-02-25 11:04:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2005-10-27 20:14:44 +00:00
|
|
|
|
if (cmf == MODE_UPDATE)
|
|
|
|
|
{
|
|
|
|
|
w_info(LNG->Wait);
|
|
|
|
|
|
|
|
|
|
uint32_t loadmsgno = msg->msgno;
|
|
|
|
|
uint32_t mrks = AA->Mark.Count();
|
|
|
|
|
uint32_t *mrkp = AA->Mark.tag;
|
|
|
|
|
uint32_t mrk = 0;
|
|
|
|
|
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
if (do_mode == MODE_MARKED)
|
|
|
|
|
loadmsgno = mrkp[mrk];
|
|
|
|
|
|
|
|
|
|
mrk++;
|
|
|
|
|
|
|
|
|
|
if (AA->LoadHdr(msg, loadmsgno, false))
|
|
|
|
|
{
|
|
|
|
|
msg->attr.sntX();
|
|
|
|
|
if (msg->attr.snt())
|
|
|
|
|
{
|
|
|
|
|
msg->attr.uns0();
|
|
|
|
|
msg->attr.scn1();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
msg->attr.uns1();
|
|
|
|
|
msg->attr.scn0();
|
|
|
|
|
msg->attr.loc1();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AA->SaveHdr(GMSG_UPDATE, msg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
while (mrk < mrks);
|
|
|
|
|
|
|
|
|
|
AA->Mark.ResetAll();
|
|
|
|
|
|
|
|
|
|
w_info(NULL);
|
|
|
|
|
GFTRK(NULL);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-25 11:04:07 +00:00
|
|
|
|
// Pick the destination area
|
|
|
|
|
int destarea = CurrArea;
|
2005-10-30 02:16:01 +00:00
|
|
|
|
const char* cmfptr;
|
|
|
|
|
|
|
|
|
|
if (torecycle)
|
|
|
|
|
cmfptr = CFG->arearecyclebin;
|
|
|
|
|
else
|
|
|
|
|
cmfptr = cmf == MODE_FORWARD ? AA->Areareplyto() : AA->Areacopyto();
|
|
|
|
|
|
2000-02-25 11:04:07 +00:00
|
|
|
|
if(*cmfptr) {
|
|
|
|
|
int a = AL.AreaEchoToNo(cmfptr);
|
|
|
|
|
if(a != -1)
|
|
|
|
|
destarea = AL.AreaNoToId(a);
|
|
|
|
|
}
|
2005-10-30 02:16:01 +00:00
|
|
|
|
|
2005-11-22 07:50:12 +00:00
|
|
|
|
if (!torecycle && (cmf == MODE_FORWARD ? not AA->Areaforwarddirect() : not AA->Areacopydirect()))
|
2000-02-25 11:04:07 +00:00
|
|
|
|
destarea = AreaPick(pickstr, 6, &destarea);
|
2005-10-30 02:16:01 +00:00
|
|
|
|
|
2000-02-25 11:04:07 +00:00
|
|
|
|
if(destarea == -1) {
|
|
|
|
|
GFTRK(NULL);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-28 10:14:09 +00:00
|
|
|
|
int xlat_table = LoadCharset(NULL, NULL, 1);
|
|
|
|
|
|
2000-02-25 11:04:07 +00:00
|
|
|
|
AL.SetActiveAreaId(OrigArea);
|
|
|
|
|
AreaData* orig_adat = AA->adat;
|
|
|
|
|
AA->adat = (AreaData*)throw_calloc(1, sizeof(AreaData));
|
|
|
|
|
memcpy(AA->adat, orig_adat, sizeof(AreaData));
|
|
|
|
|
AL.SetActiveAreaId(destarea);
|
|
|
|
|
Area* AAdest = AA;
|
|
|
|
|
|
2002-11-13 16:51:47 +00:00
|
|
|
|
AA->RandomizeData();
|
2006-03-25 05:56:22 +00:00
|
|
|
|
if (torecycle) AA->adat->areacopyaddid = true;
|
2002-11-13 16:51:47 +00:00
|
|
|
|
|
2000-02-25 11:04:07 +00:00
|
|
|
|
// Is it readonly?
|
|
|
|
|
if(AA->attr().r_o()) {
|
|
|
|
|
GMenuReadonly MenuReadonly;
|
|
|
|
|
if(not MenuReadonly.Run()) {
|
|
|
|
|
AL.SetActiveAreaId(OrigArea);
|
|
|
|
|
throw_free(AA->adat);
|
|
|
|
|
AA->adat = orig_adat;
|
|
|
|
|
GFTRK(NULL);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Handle a forward
|
2005-10-28 16:33:54 +00:00
|
|
|
|
if (cmf == MODE_FORWARD)
|
|
|
|
|
{
|
2000-02-25 11:04:07 +00:00
|
|
|
|
_use_fwd = orig_adat->usefwd;
|
2005-10-28 16:33:54 +00:00
|
|
|
|
if (_use_fwd == ASK)
|
|
|
|
|
{
|
2000-02-25 11:04:07 +00:00
|
|
|
|
GMenuForward MenuForward;
|
|
|
|
|
_use_fwd = MenuForward.Run();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Popup wait window
|
|
|
|
|
w_info(progstr);
|
|
|
|
|
|
2006-01-15 22:52:17 +00:00
|
|
|
|
// Open destination area
|
2000-02-25 11:04:07 +00:00
|
|
|
|
AA->Open();
|
|
|
|
|
AA->RandomizeData();
|
|
|
|
|
|
|
|
|
|
// Re-activeate original area and lock that too
|
|
|
|
|
AL.SetActiveAreaId(OrigArea);
|
|
|
|
|
AA->Lock();
|
|
|
|
|
|
|
|
|
|
// Setup some variables for the loop
|
|
|
|
|
Area* AAorig = AA;
|
|
|
|
|
const char* echoid = AAdest->echoid();
|
2005-10-07 12:41:11 +00:00
|
|
|
|
uint loadmsgno = msg->msgno;
|
|
|
|
|
uint32_t* mrkp = AA->Mark.tag;
|
2000-02-25 11:04:07 +00:00
|
|
|
|
int mrks = AA->Mark.Count();
|
|
|
|
|
int mrk = 0;
|
|
|
|
|
|
|
|
|
|
// Copy/move loop
|
|
|
|
|
do {
|
|
|
|
|
|
|
|
|
|
// Check for escape key
|
|
|
|
|
if(kbxhit()) {
|
|
|
|
|
if(kbxget() == Key_Esc) {
|
|
|
|
|
HandleGEvent(EVTT_JOBFAILED);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Show progress and load the marked msg
|
|
|
|
|
if(do_mode == MODE_MARKED) {
|
2006-01-10 23:53:52 +00:00
|
|
|
|
update_statuslinef(statstr, tokenstr, mrk+1, mrks, echoid);
|
2000-02-25 11:04:07 +00:00
|
|
|
|
loadmsgno = *mrkp++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int mode = 0;
|
2005-10-07 12:41:11 +00:00
|
|
|
|
uint msgno = 0;
|
2000-02-25 11:04:07 +00:00
|
|
|
|
if(AA->LoadMsg(msg, loadmsgno, CFG->dispmargin-(int)CFG->switches.get(disppagebar), loadmode)) {
|
|
|
|
|
|
|
|
|
|
// Handle unsent msgs
|
|
|
|
|
mode = cmf;
|
|
|
|
|
if((cmf == MODE_MOVE) and (loadmode & GMSG_UNS_NOT_RCV) and (msg->attr.uns() and not msg->attr.rcv())) {
|
|
|
|
|
|
|
|
|
|
// Axe the popup wait window
|
|
|
|
|
w_info(NULL);
|
|
|
|
|
|
|
|
|
|
// Display header and message
|
|
|
|
|
int top = 0;
|
|
|
|
|
HeaderView->Use(AA, msg);
|
|
|
|
|
HeaderView->Paint();
|
|
|
|
|
BodyView->Use(AA, msg, top);
|
|
|
|
|
BodyView->Paint();
|
|
|
|
|
|
|
|
|
|
// Ask if it should be deleted
|
|
|
|
|
GMenuDelete MenuDelete;
|
|
|
|
|
switch(MenuDelete.Run(YES, msg)) {
|
|
|
|
|
case YES: break;
|
|
|
|
|
case NO: mode = MODE_COPY; break;
|
|
|
|
|
default: loadmode &= ~GMSG_UNS_NOT_RCV;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Put up the wait window again
|
|
|
|
|
w_info(progstr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Switch to destination area
|
|
|
|
|
AA = AAdest;
|
|
|
|
|
|
2005-10-28 16:33:54 +00:00
|
|
|
|
if (cmf == MODE_FORWARD)
|
|
|
|
|
MakeMsg(MODE_FORWARD, msg);
|
|
|
|
|
else
|
|
|
|
|
{
|
2000-02-25 11:04:07 +00:00
|
|
|
|
// Change things in the header to match the destination area
|
|
|
|
|
msg->attr.del0(); // Allows deleted msgs to be undeleted
|
|
|
|
|
msg->board = AA->board();
|
|
|
|
|
msg->link.reset();
|
|
|
|
|
|
|
|
|
|
// Fake Scn-Attribute if copied to squisharea
|
2003-12-10 08:35:16 +00:00
|
|
|
|
if(msg->attr.loc() and msg->attr.snt())
|
|
|
|
|
msg->attr.scn1();
|
2000-02-25 11:04:07 +00:00
|
|
|
|
|
|
|
|
|
if(AA->Areacopyaddid() and not AA->isnet()) {
|
|
|
|
|
char* ptr = msg->txt + (*msg->txt == CTRL_A);
|
|
|
|
|
if(not strnieql(ptr, "AREA:", 5)) {
|
|
|
|
|
uint elen = 6 + strlen(AAorig->echoid()) + 1;
|
|
|
|
|
uint mlen = strlen(msg->txt)+1;
|
|
|
|
|
msg->txt = (char*)throw_realloc(msg->txt, elen+mlen);
|
|
|
|
|
memmove(msg->txt+elen, msg->txt, mlen);
|
|
|
|
|
sprintf(msg->txt, "\001AREA:%s", AAorig->echoid());
|
|
|
|
|
msg->txt[elen-1] = CR;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool need_netmail_kludges = not AAorig->isnet() and AAdest->isnet();
|
|
|
|
|
bool need_fmpt = true;
|
|
|
|
|
bool need_topt = true;
|
|
|
|
|
|
2003-12-10 08:35:16 +00:00
|
|
|
|
if(not need_netmail_kludges and streql(AAorig->basetype(), "SQUISH") and strcmp(AAdest->basetype(), "SQUISH") and AAdest->isnet() and AAorig->isnet()) {
|
2000-02-25 11:04:07 +00:00
|
|
|
|
if(msg->orig.point and not strstr(msg->txt, "\001FMPT"))
|
|
|
|
|
need_netmail_kludges = true;
|
|
|
|
|
else
|
|
|
|
|
need_fmpt = false;
|
|
|
|
|
if(msg->dest.point and not strstr(msg->txt, "\001TOPT"))
|
|
|
|
|
need_netmail_kludges = true;
|
|
|
|
|
else
|
|
|
|
|
need_topt = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(need_netmail_kludges) {
|
|
|
|
|
char buf[256] = "";
|
|
|
|
|
|
|
|
|
|
if(not strstr(msg->txt, "\001INTL"))
|
|
|
|
|
// The INTL kludge for zone crossing
|
|
|
|
|
if(CFG->useintl and (CFG->useintl == YES or (msg->dest.zone != msg->orig.zone))) {
|
|
|
|
|
sprintf(buf, "\001INTL %u:%u/%u %u:%u/%u%c",
|
|
|
|
|
msg->dest.zone ? msg->dest.zone : AA->Aka().addr.zone,
|
|
|
|
|
msg->dest.net, msg->dest.node,
|
|
|
|
|
msg->orig.zone ? msg->orig.zone : AA->Aka().addr.zone,
|
|
|
|
|
msg->orig.net, msg->orig.node, CR
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(not strstr(msg->txt, "\001TOPT") or not strstr(msg->txt, "\001FMPT")) {
|
|
|
|
|
// The FMPT and TOPT kludges for point addressing
|
|
|
|
|
if(msg->dest.point and need_topt)
|
|
|
|
|
sprintf(buf+strlen(buf), "\001TOPT %u%c", msg->dest.point, CR);
|
|
|
|
|
if(msg->orig.point and msg->orig.net == msg->oorig.net and msg->orig.node == msg->oorig.node and need_fmpt)
|
|
|
|
|
sprintf(buf+strlen(buf), "\001FMPT %u%c", msg->orig.point, CR);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
uint alen = strlen(buf);
|
|
|
|
|
if(alen) {
|
|
|
|
|
uint mlen = strlen(msg->txt)+1;
|
|
|
|
|
msg->txt = (char*)throw_realloc(msg->txt, alen+mlen);
|
|
|
|
|
memmove(msg->txt+alen, msg->txt, mlen);
|
|
|
|
|
memmove(msg->txt, buf, alen);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if(AA->isecho() and not AAorig->isecho()) {
|
|
|
|
|
|
|
|
|
|
char* kl = strstr(msg->txt, "\001INTL");
|
|
|
|
|
char* p;
|
|
|
|
|
if(kl and (p = strchr(kl, CR)) != NULL)
|
|
|
|
|
memmove(kl, p, strlen(p)+1);
|
|
|
|
|
kl = strstr(msg->txt, "\001TOPT");
|
|
|
|
|
if(kl and (p = strchr(kl, CR)) != NULL)
|
|
|
|
|
memmove(kl, p, strlen(p)+1);
|
|
|
|
|
kl = strstr(msg->txt, "\001FMPT");
|
|
|
|
|
if(kl and (p = strchr(kl, CR)) != NULL)
|
|
|
|
|
memmove(kl, p, strlen(p)+1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Save the new msg to the destination area
|
|
|
|
|
msgno = msg->msgno;
|
|
|
|
|
AA->SaveMsg(GMSG_NEW|GMSG_NOLSTUPD, msg);
|
|
|
|
|
|
2005-10-28 16:33:54 +00:00
|
|
|
|
} //if (cmf == MODE_FORWARD)
|
|
|
|
|
|
2000-02-25 11:04:07 +00:00
|
|
|
|
// Switch back to original area
|
|
|
|
|
AA = AAorig;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Delete original msg if moved
|
|
|
|
|
if(mode == MODE_MOVE) {
|
|
|
|
|
msg->msgno = msgno;
|
2006-01-15 09:06:36 +00:00
|
|
|
|
AA->DeleteMsg(msg, torecycle ? reader_direction : DIR_PREV);
|
2000-02-25 11:04:07 +00:00
|
|
|
|
AA->PMrk.Del(msg->msgno);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} while((do_mode == MODE_MARKED) and ((++mrk) < mrks));
|
|
|
|
|
|
|
|
|
|
kbput(Key_Tick);
|
|
|
|
|
|
2006-01-15 22:52:17 +00:00
|
|
|
|
// close destination area
|
2000-02-25 11:04:07 +00:00
|
|
|
|
AL.SetActiveAreaId(destarea);
|
|
|
|
|
AA->UpdateAreadata();
|
|
|
|
|
AA->Close();
|
|
|
|
|
|
|
|
|
|
// Return to original area and unlock it
|
|
|
|
|
AL.SetActiveAreaId(OrigArea);
|
|
|
|
|
throw_free(AA->adat);
|
|
|
|
|
AA->adat = orig_adat;
|
|
|
|
|
AA->Unlock();
|
|
|
|
|
|
2003-04-28 10:14:09 +00:00
|
|
|
|
if(xlat_table != -1)
|
|
|
|
|
LoadCharset(CFG->xlatcharset[xlat_table].imp, CFG->xlatcharset[xlat_table].exp);
|
|
|
|
|
else
|
|
|
|
|
LoadCharset("N/A", "N/A");
|
|
|
|
|
|
2006-01-15 09:06:36 +00:00
|
|
|
|
if(do_mode == MODE_MARKED)
|
|
|
|
|
{
|
2000-02-25 11:04:07 +00:00
|
|
|
|
if(cmf == MODE_MOVE)
|
|
|
|
|
AA->Mark.ResetAll();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
w_info(NULL);
|
|
|
|
|
|
|
|
|
|
GFTRK(NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|
2005-10-30 02:16:01 +00:00
|
|
|
|
void CopyMoveForward(bool torecycle)
|
|
|
|
|
{
|
2000-02-25 11:04:07 +00:00
|
|
|
|
AA->attr().hex0();
|
|
|
|
|
if(AA->Msgn.Count())
|
2005-10-30 02:16:01 +00:00
|
|
|
|
CmfMsgs(reader_msg, torecycle);
|
2000-02-25 11:04:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------
|
|
|
|
|
|