Перетаскивание элементов управления в GridPanel

Я дурачился с перетаскиванием элементов управления на панели сетки в delphi 2010. Переместите панель/кнопку/независимо от содержимого из одной ячейки в другую ячейку. Замена существующих или обмен местами. Я не понял, как узнать, какая ячейка была удалена, потому что они работают с индексами столбцов, а также с индексами строк.

поэтому, если у меня есть панель сетки с 3 столбцами и 3 строками, и у меня есть кнопка в ячейке 1/1... и я перетаскиваю эту кнопку из 1/1 в 3/3, как я могу получить местоположение этой ячейки из перетаскивания событие? Я получаю координаты x, y на дропе, но как я могу определить ячейку из этого?


person Logman    schedule 19.03.2011    source источник


Ответы (2)


Вы можете использовать TGridPanel.CellRect, чтобы получить ограничивающий прямоугольник для каждой из ячеек. Вот пример использования CellRect:

// GP: TGridPanel
// This is the "OnDragDrop" handler.

procedure TForm13.GPDragDrop(Sender, Source: TObject; X, Y: Integer);
var DropPoint: TPoint;
    CellRect: TRect;
    i_col, i_row: Integer;
begin
  if Source = Panel1 then // Simple test, is this a drop I want to handle?
  begin
    DropPoint := Point(X, Y); // Where did the suer drop? We need this so we can easily call PtInRect
    for i_col := 0 to GP.ColumnCollection.Count-1 do
      for i_row := 0 to GP.RowCollection.Count-1 do
      begin
        CellRect := GP.CellRect[i_col, i_row]; // Get the bounding rect for Col[i_col, i_row]
        if PtInRect(CellRect, DropPoint) then
        begin
          // Panel1 was dropped over Cell[i_col, i_row]
        end;
      end;
  end;
end;
person Cosmin Prund    schedule 19.03.2011

На основе ответа Космина (который является хорошей отправной точкой, но не работает в реальной жизни).

Мой код написан на C++, но поскольку это «клон» ответа Консмина, пользователи Delphi могут легко его понять (и увидеть, что было изменено).
PS: обратите внимание, что я перетаскиваю TPanels вместо TButtons (очень незначительное изменение) .

void __fastcall TfrmVCL::ButtonDragDrop(TObject *Sender, TObject *Source, int X, int Y)
{
  TRect CurCellRect;
  TRect DestCellRect;
  int Col;
  int Row;
  int srcCol; int srcRow;
  int destCol; int destRow;
  int srcIndex; int destIndex;
  TPanel *SrcBtn;
  TPanel *DestBtn;

  SrcBtn = dynamic_cast<TPanel *>(Source);
  if (SrcBtn)
     {
     int ColCount = GridPnl->ColumnCollection->Count ;
     int RowCount = GridPnl->RowCollection->Count ;

     // SOURCE
     srcIndex = GridPnl->ControlCollection->IndexOf( SrcBtn );
     srcCol   = GridPnl->ControlCollection->Items[ srcIndex ]->Column;  // the column for the dragged button
     srcRow   = GridPnl->ControlCollection->Items[ srcIndex ]->Row;

     // DESTINATION
     // we get coordinates of the button I drag onto
     DestBtn= dynamic_cast<TPanel *>(Sender);
     if (!DestBtn) return;
     destIndex    = GridPnl->ControlCollection->IndexOf( DestBtn );
     destCol      = GridPnl->ControlCollection->Items[ destIndex ]->Column;  // the column for the dragged button
     destRow      = GridPnl->ControlCollection->Items[ destIndex ]->Row;
     DestCellRect = GridPnl->CellRect[ destCol ][ destRow ];

     // Check all cells
     for ( Col = 0 ; Col < ColCount ; Col++ )
        {
        for ( Row = 0 ; Row < RowCount ; Row++ )
           {
             // Get the bounding rect for this cell
             CurCellRect = GridPnl->CellRect[ Col ][ Row ];

             if (IntersectRect_ForReal(DestCellRect, CurCellRect))
                {
                GridPnl->ControlCollection->Items[srcIndex]->SetLocation(Col, Row, false);
                return;
                }
             else
               lblCurCellRect->Caption= "NO HIT";
           }
        }
     }
}
person Z80    schedule 21.11.2018