Mozilla/mozilla/lib/mac/UserInterface/Tables/CTableKeyAttachment.cp
ltabb 8ed5afe62c Free the lizard
git-svn-id: svn://10.0.0.236/trunk@10 18797224-902f-48f8-a5cc-f745e15eee43
1998-03-28 02:44:41 +00:00

166 lines
4.5 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
#include "CTableKeyAttachment.h"
#include <PP_KeyCodes.h>
#include <CSpecialTableView.h>
//testing
#include "XP_Trace.h"
CTableKeyAttachment::CTableKeyAttachment(CSpecialTableView* inView)
: LKeyScrollAttachment(inView)
{
mTableView = dynamic_cast<CSpecialTableView*>(mViewToScroll);
Assert_(mTableView);
}
CTableKeyAttachment::~CTableKeyAttachment()
{
}
void CTableKeyAttachment::ExecuteSelf(
MessageT inMessage,
void *ioParam)
{
// In communicator, keyup events are turned on. This is for the benefit of Java
// applets, and we don't want to handle them for key scrolling in tables.
// Well, we do actually. If we get a keyDown event, or autokey events, we don't
// want to update the list until the user lets go. So we turn off broadcasting
// until we get a keyUp. We also don't want to change the selection on the keyup,
// since we've already done that for the corresponding keyDown/autoKey.
if (inMessage != msg_KeyPress)
return;
EventRecord* eventParam = (EventRecord *)ioParam;
mExecuteHost = false;
Int16 theKey = eventParam->message & charCodeMask;
//Boolean bCommandDown = (eventParam->modifiers & cmdKey) != 0;
Boolean bShiftDown = (eventParam->modifiers & shiftKey) != 0;
//Boolean bOptionDown = (eventParam->modifiers & optionKey) != 0;
Boolean bControlDown = (eventParam->modifiers & controlKey) != 0;
// get the table dimensions
TableIndexT theRowCount, theColCount;
mTableView->GetTableSize(theRowCount, theColCount);
if (theKey == char_DownArrow || theKey == char_UpArrow) {
if (eventParam->what == keyDown || eventParam->what == autoKey) {
mTableView->SetNotifyOnSelectionChange(false);
} else if (eventParam->what == keyUp)
{
mTableView->SetNotifyOnSelectionChange(true);
mTableView->SelectionChanged();
return;
}
}
switch (theKey)
{
case char_PageUp:
case char_PageDown:
LKeyScrollAttachment::ExecuteSelf(inMessage, ioParam);
break;
case char_DownArrow:
if (!bControlDown)
{
// Get the last currently selected cell
STableCell afterLastSelectedCell, theCell; // inited to 0,0 in constructor
// Keep a copy of theCell, because GetNextSelectedCell clobbers it if
// there are no more selected cells.
while (mTableView->GetNextSelectedCell(theCell))
{
theCell.row++;
afterLastSelectedCell = theCell;
}
if (afterLastSelectedCell.row == 0) // there were none selected
{
theCell.row = theRowCount;
theCell.col = 1;
}
else
{
theCell = afterLastSelectedCell;
}
if (mTableView->IsValidCell(theCell))
SelectCell(theCell, bShiftDown);
break;
}
// else falls through
case char_End:
{
STableCell theLastCell(theRowCount, theColCount);
SelectCell(theLastCell, bShiftDown);
}
break;
case char_UpArrow:
if (!bControlDown)
{
// Get the first currently selected cell
STableCell theCell; // inited to 0,0 in constructor
if (mTableView->GetNextSelectedCell(theCell))
theCell.row--;
else
{
theCell.row = 1;
theCell.col = 1;
}
if (mTableView->IsValidCell(theCell))
SelectCell(theCell, bShiftDown);
break;
}
// else falls through
case char_Home:
{
STableCell theFirstCell(1,1);
if (mTableView->IsValidCell(theFirstCell))
SelectCell(theFirstCell, bShiftDown);
}
break;
default:
mExecuteHost = true; // Some other key, let host respond
break;
}
}
void
CTableKeyAttachment::SelectCell( const STableCell& inCell, Boolean multiple)
{
if (!multiple)
{
Boolean oldNotify = mTableView->GetNotifyOnSelectionChange();
mTableView->SetNotifyOnSelectionChange(false);
mTableView->UnselectAllCells();
mTableView->SetNotifyOnSelectionChange(oldNotify);
}
mTableView->ScrollCellIntoFrame(inCell); // Do this before selecting (avoids turds)
mTableView->SelectCell(inCell);
}