Spreadsheet: Fix UI issues when trying to insert rows/cols

* Add support for better translations (using pluralizations)
* Add support for inserting rows/columns after the selection
* Informs the user that it will insert rows/cols above/under/left/right of the selection
* Informs the user how many rows/cols that will be inserted
This commit is contained in:
Benjamin Nauck
2021-02-18 01:10:46 +01:00
committed by wwmayer
parent f5063af183
commit 4e4a8df724
2 changed files with 102 additions and 16 deletions

View File

@@ -67,8 +67,10 @@ protected Q_SLOTS:
void commitData(QWidget *editor);
void updateCellSpan(App::CellAddress address);
void insertRows();
void insertRowsAfter();
void removeRows();
void insertColumns();
void insertColumnsAfter();
void removeColumns();
void cellProperties();
protected: