Adding email functionality in QtreeWidget--Urgent reply needed
-
Still it is getting crashed. I guess there should be some other way.
-
You could debug it ? ;)
place a breakpoint in the slot for the Send Email
button and single step from there.That should give us the exact line where it crashes and hopefully also why it crashes :)
-
Okay. I am still unable to do. However, in the .ui file, I found a way that we can just drag n drop a treewidget and add the items. I just need to do one thing now. i.e iteration and send emails to the checked ones. The items can be accessed by ui->treeWidget. I can send emails to the selected ones by:
void MainWindow::on_pushButton_clicked()
{
//Send EmailQList<QTreeWidgetItem *> itemList; itemList = ui->treeWidget->selectedItems(); QString strTo = "mailto:"; foreach(QTreeWidgetItem *item, itemList) { if(item->checkState(0)== Qt::Checked) strTo.append(item->text(0)+";");
}
{ ui->treeWidget->;} openUrl->openUrl(QUrl(strTo));
}
But I dont want the selection functionality. I only want checked functionality. That means, if an item is checked, email will be send to it.
Please provide the code for the iteration of items in the treewidget (iteration of all, parents and child). -
Hi @VRonin already gave you the code in
https://forum.qt.io/topic/71237/adding-email-functionality-in-qtreewidget-urgent-reply-needed/7You cannot use selectedItems(); since you want the Checked ones.
You need to do it recursively as @VRonin shows.
for(int i=0;i<model->rowCount(parent );++i){
....
if(model->hasChildren(currIdx)) ...
result.append(getCheckedAdresses(model,currIdx)); <<<<< here it calls itself again. So it processes its children too, and its children and its children and..
.... -
@mrjj said in Adding email functionality in QtreeWidget--Urgent reply needed:
if(model->hasChildren(currIdx)) ...
I did it in other way. Simple and easy.
QString strTo = "mailto:";
QTreeWidgetItemIterator item(ui->treeWidget);
while (*item) {
if ((*item)->checkState(0) == Qt::Checked)
strTo.append((*item)->text(0)+";");
++item;
}
openUrl->openUrl(QUrl(strTo)); -
@iqbalfaheem21
super. -
Ouch. One more functionality needed to be added. I request all my folks to please assist me in this as well.
Now I need to get the data from the SharePoint site. So what can be the code in Qt that can get the data from SharePoint and work in the same manner. So, in other words, it will get the data from SharePoint, and display all the data from it. Then whatever is checked from the tree will be included with the "mailto:" string.
So basically, no hard coding but getting the data from Sharepoint.
Pleae let mek now. -
Hi
- get the data from the SharePoint site
From rest service ?
From SQL server ?
From ?
What data ?
Unless the SharePoint devs knows 100% what you mean, i doubt
there be many answer :)
Maybe I just dont know SharePoint well enough :) - get the data from the SharePoint site
-
I am linking the sharepoint data with an access file. Now I need to connect the access file with the Qt application that I made. So I need the code to connect to the access file, read the data from there and display it.. Also let me know where to write the code. In the header file, main.cpp, mainwindow.cpp or somewhere else.
-
Ok, what is "the access file"
a db file, a text file or what is it? -
@iqbalfaheem21 said in Adding email functionality in QtreeWidget--Urgent reply needed:
.accdb
"ACCDB files can be opened with Microsoft Access (version 2007 and newer)."
So you need to use install driver and set it up.
then you can usedb.setDatabaseName("DRIVER={Microsoft Access Driver (*.mdb, *.accdb)};FIL={MS Access};DBQ=c:/test.accdb");
https://www.microsoft.com/en-us/download/details.aspx?id=13255
You might need some ODBC also. Not sure. Did Not use Access for many years.
Also pay HUUUUUUUUUUUUUUGE notice to the connection string. its always an issue :)
https://www.connectionstrings.com/access-2007/#p127If you run into issue, there are many posts on google and this forum on how to use Access with Qt.
-
@iqbalfaheem21
That is really not possible as you will need a ODBC + Access driver installed and have exact accdb
to open etc. This you must master yourself.You could start with small sample and try to get a database open.
There are many examples on the internet but you could start
practice with the ones from Qthttp://doc.qt.io/qt-5/examples-sql.html
and try with with sqllite.
then when you understand how database and
http://doc.qt.io/qt-5/qsqlquery.html
works then try to open the accdb file.
You will need this to read the data anyways. You can also ask here for help but
you need a bit of SQL and database+qsqlquery -
@iqbalfaheem21
You do it like any other database
http://doc.qt.io/qt-5/qsqldatabase.html
the connect line is different. read the docs for it.
db.setDatabaseName("DRIVER={Microsoft Access Driver (*.mdb, *.accdb)};FIL={MS Access};DBQ=c:/test.accdb");then use
http://doc.qt.io/qt-5/qsqlquery.html
to read data.
QSqlQuery query("SELECT country FROM artist");
while (query.next()) {
QString country = query.value(0).toString();
doSomething(country);
} -
I am able to connect to the database. Now I need to call the data from the database in such a way that it is displayed in a tree format. Like parent child. Just like if we use filesystem model, all the drives and folders are displayed.
And now if I want to iterate I cannot do that because I am using treeview not treeWidget. So I cant use QtreeWidgetItemIterator. So how to iterate also is a question for me. -
When you are using a view, you must use a model.
The widget version is item based and has hidden model
for that but A view wants a model from you or
one of the predefined
http://doc.qt.io/qt-5/sql-model.htmlIf read-only is ok then
http://doc.qt.io/qt-5/qsqlquerymodel.html#details
might be useful. -
I only need a read model. But when it reads from the database, it should display the data in treewidget format. Dont know how to do that. It is easy to display in rows and columns, but tough to display in tree. Kindly assist.
-
You need to execute the query manually and add the data to the model or widget. I have an example using a QStandardItemModel here: https://github.com/VSRonin/FXhelper/blob/master/FXhelperApp/PortfoliosTab.cpp#L4220