/* -*- 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.1 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.mozilla.org/NPL/ * * Software distributed under the License is distributed on an "AS * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or * implied. See the License for the specific language governing * rights and limitations under the License. * * The Original Code is mozilla.org code. * * The Initial Developer of the Original Code is Netscape * Communications Corporation. Portions created by Netscape are * Copyright (C) 1998 Netscape Communications Corporation. All * Rights Reserved. * * Contributor(s): */ /* Created 3/20/96 - Tim Craycroft To Do: */ #include "LTableViewHeader.h" #include "CSpecialTableView.h" #include "LIconPane.h" /* LTableViewHeader::LTableViewHeader */ LTableViewHeader::LTableViewHeader(LStream *inStream) : LTableHeader(inStream) , mTableViewID(0) , mTableView(NULL) { *inStream >> mTableViewID; } /* LTableViewHeader::FinishCreateSelf Find the LTableView we're using */ void LTableViewHeader::FinishCreateSelf() { LTableHeader::FinishCreateSelf(); LView *super = GetSuperView(); ThrowIfNULL_(super); mTableView = (CSpecialTableView *) super->FindPaneByID(mTableViewID); Assert_(mTableView != NULL); // NOTE: CStandardFlexTable must be created second. Its FinishCreateSelf // queries our mTableView member to make sure that this is true. } /* LTableViewHeader::ChangeIconOfColumn Sets the icon id of the LIconPane inColumn to be inIconID. You'd better be sure that inColumn really is an LIconPane if you're gonna do this */ void LTableViewHeader::ChangeIconOfColumn( PaneIDT inColumn, ResIDT inIconID) { UInt16 col = ColumnFromID(inColumn); LIconPane *iconPane = dynamic_cast(GetColumnPane(col)); Assert_(iconPane); #ifdef DEBUG if (iconPane) #endif iconPane->SetIconID(inIconID); } /* LTableViewHeader::ComputeResizeDragRect Extend the bottom of the rect to the bottom of the table */ void LTableViewHeader::ComputeResizeDragRect(UInt16 inLeftColumn, Rect &outDragRect) { LTableHeader::ComputeResizeDragRect(inLeftColumn, outDragRect); outDragRect.bottom = GetGlobalBottomOfTable(); } /* LTableViewHeader::ComputeColumnDragRect Extend the bottom of the rect to the bottom of the table */ void LTableViewHeader::ComputeColumnDragRect(UInt16 inLeftColumn, Rect &outDragRect) { LTableHeader::ComputeColumnDragRect(inLeftColumn, outDragRect); outDragRect.bottom = GetGlobalBottomOfTable(); } /* LTableViewHeader::GetGlobalBottomOfTable Returns bottom of the table in global coords */ SInt16 LTableViewHeader::GetGlobalBottomOfTable() const { Rect r; mTableView->CalcPortFrameRect(r); PortToGlobalPoint((botRight(r))); return r.bottom; } /* LTableViewHeader::RedrawColumns Refreshes the appropriate cells in the table. */ void LTableViewHeader::RedrawColumns(UInt16 inFrom, UInt16 inTo) { LTableHeader::RedrawColumns(inFrom, inTo); Boolean active; TableIndexT rows, cols; STableCell fromCell, toCell; active = mTableView->IsActive(); mTableView->GetTableSize(rows,cols); SPoint32 cellPt; SDimension16 frameSize; mTableView->GetScrollPosition(cellPt); mTableView->GetFrameSize(frameSize); mTableView->GetCellHitBy(cellPt, fromCell); fromCell.col = inFrom; cellPt.v += frameSize.height - 1; mTableView->GetCellHitBy(cellPt, toCell); toCell.col = inTo; mTableView->RefreshCellRange(fromCell, toCell); } /* LTableViewHeader::ShowHideRightmostColumn Adds or removes a column in the table. */ void LTableViewHeader::ShowHideRightmostColumn(Boolean inShow) { ColumnIndexT initialVisibleColumnCount = CountVisibleColumns(); LTableHeader::ShowHideRightmostColumn(inShow); // can fail, eg when no resizable columns left if (initialVisibleColumnCount != CountVisibleColumns()) { if (inShow) mTableView->InsertCols(1, initialVisibleColumnCount, NULL, 0, true); else mTableView->RemoveCols(1, initialVisibleColumnCount, true); } } /* LTableViewHeader::ResizeImageBy Adjust the table's image size. */ void LTableViewHeader::ResizeImageBy( Int32 inWidthDelta, Int32 inHeightDelta, Boolean inRefresh ) { LView::ResizeImageBy(inWidthDelta, inHeightDelta, inRefresh); if (mTableView) // warning: this can be called before FinishCreate! mTableView->AdjustImageSize(inRefresh); } /* LTableViewHeader::ReadColumnState Adjust the table's image size. */ void LTableViewHeader::ReadColumnState(LStream * inStream, Boolean inMoveHeaders) { LTableHeader::ReadColumnState(inStream, inMoveHeaders); if ( mTableView ) { mTableView->SynchronizeColumnsWithHeader(); } }