خواندن و نوشت در tableView
-
p{direction:rtl; text-align:right}. سلام
راه های مختلفی برای این کار وجود داره. مثلا کدهای زیر محتویات Table View رو به فرمت html ذخیره میکنه@void saveTableView2Html()
{
const QString htmlFileName = QFileDialog::getSaveFileName(...);
if( htmlFileName.isEmpty() ) // کاربر کنسل کرده است
return;QFile file(htmlFileName); if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) { //خطایی رخ داده است return ; } QTextStream out(&file); out.setCodec("UTF-8"); const int rowCount = tableView->model()->rowCount(); const int columnCount = tableView->model()->columnCount(); out << "<html>\n" "<head>\n" "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n" << QString("<title>%1</title>\n").arg(QFileInfo(file.fileName()).fileName()) << "</head>\n" "<body dir=\"rtl\" bgcolor=#ffffff link=#5000A0>\n" "<font face=\"Tahoma, Geneva, sans-serif\">\n" "<table border=1 cellspacing=0 cellpadding=10>\n"; // جدول (header) هدر out << "<tr bgcolor=#f0f0f0>"; for (int column = 0; column < columnCount; column++) if (!tableView->isColumnHidden(column)) out << QString("<th>%1</th>").arg(tableView->model()->headerData(column, Qt::Horizontal).toString()); out << "</tr>\n"; file.flush(); // داده های جدول for (int row = 0; row < rowCount; row++) { out << "<tr>"; for (int column = 0; column < columnCount; column++) { if (!tableView->isColumnHidden(column)) { QString data = tableView->model()->data( tableView->model()->index(row, column)).toString() ; out << QString("<td bkcolor=0>%1</td>").arg((!data.isEmpty()) ? data : QString(" ")); } } out << "</tr>\n"; } out << "</table>\n" "</font>" "</body>\n" "</html>\n"; file.close(); qApp->beep(); QDesktopServices::openUrl(QUrl("file:///" + htmlFileName ,QUrl::TolerantMode));
}
@ -
p{direction:rtl; text-align:right}. بیشتر به این قسمت توجه کن:
@
for (int row = 0; row < rowCount; row++) {
for (int column = 0; column < columnCount; column++) {
if (!tableView->isColumnHidden(column)) {
QString data = tableView->model()->data(
tableView->model()->index(row, column)).toString() ;@