2019-02-10 17:26:56 +01:00
|
|
|
|
/*
|
|
|
|
|
* QtHP Connect: hand-helds support interface.
|
|
|
|
|
* Copyright (C) 2019 Ian Gebbie
|
|
|
|
|
* Code patterns and snippets borrowed from libhpcalcs :
|
|
|
|
|
* Copyright (C) 1999-2009 Romain Li<EFBFBD>vin
|
|
|
|
|
* Copyright (C) 2009-2013 Lionel Debroux
|
|
|
|
|
* Copyright (C) 1999-2013 libti* contributors.
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2019-02-10 14:32:15 +01:00
|
|
|
|
#include "mainwindow.h"
|
|
|
|
|
#include "ui_mainwindow.h"
|
|
|
|
|
|
2019-02-10 14:43:00 +01:00
|
|
|
|
|
|
|
|
|
#include <QtWidgets/QApplication>
|
|
|
|
|
#include <QtWidgets/QTableView>
|
|
|
|
|
#include <QMessageBox>
|
2019-02-11 21:54:51 +01:00
|
|
|
|
#include <QTreeView>
|
2019-02-17 17:24:52 +01:00
|
|
|
|
#include <QLabel>
|
2019-02-10 14:43:00 +01:00
|
|
|
|
|
|
|
|
|
#include <QFile>
|
|
|
|
|
#include <QTextStream>
|
|
|
|
|
|
|
|
|
|
#include "hpusb.h"
|
|
|
|
|
#include "datamodel.h"
|
|
|
|
|
#include "treemodel.h"
|
|
|
|
|
#include "variableview.h"
|
|
|
|
|
#include "texteditor.h"
|
|
|
|
|
#include "hp_mdiwindow.h"
|
|
|
|
|
#include "hptreeitem.h"
|
|
|
|
|
#include "hpdata.h"
|
|
|
|
|
#include "hp_mdivariableedit.h"
|
|
|
|
|
#include "hp_mditexteditor.h"
|
|
|
|
|
#include <QInputDialog>
|
|
|
|
|
|
|
|
|
|
errorHandler *main_err;
|
|
|
|
|
#define log(a) main_err->error(L7,0,QString(a),QString());
|
|
|
|
|
|
2019-02-10 14:32:15 +01:00
|
|
|
|
MainWindow::MainWindow(QWidget *parent) :
|
|
|
|
|
QMainWindow(parent),
|
|
|
|
|
ui(new Ui::MainWindow)
|
|
|
|
|
{
|
2019-02-10 14:43:00 +01:00
|
|
|
|
//setup
|
|
|
|
|
QCoreApplication::setOrganizationName("Private");
|
|
|
|
|
QCoreApplication::setOrganizationDomain("");
|
|
|
|
|
QCoreApplication::setApplicationName("Linux HP Prime Interface");
|
|
|
|
|
QSettings appSettings;
|
|
|
|
|
|
|
|
|
|
//error handler
|
|
|
|
|
main_err = new errorHandler(this);
|
|
|
|
|
|
|
|
|
|
//data models
|
2019-02-17 17:24:52 +01:00
|
|
|
|
myModel= new dataModel(this);
|
|
|
|
|
hpTreeModel = new treeModel(this);
|
2019-02-10 14:43:00 +01:00
|
|
|
|
|
|
|
|
|
qDebug()<<"1";
|
|
|
|
|
|
|
|
|
|
//usbapi
|
|
|
|
|
hpapi = new hpusb();
|
|
|
|
|
|
|
|
|
|
qDebug()<<"2";
|
|
|
|
|
//Interface
|
2019-02-10 14:32:15 +01:00
|
|
|
|
ui->setupUi(this);
|
2019-02-10 14:43:00 +01:00
|
|
|
|
setWindowIcon(QIcon::fromTheme("accessories-calculator",
|
|
|
|
|
QIcon(":/icons/monitor_32x32.png")));
|
|
|
|
|
createActions();
|
|
|
|
|
createLogWindow();
|
2019-02-11 21:54:51 +01:00
|
|
|
|
setTreeMenu();
|
2019-02-10 14:43:00 +01:00
|
|
|
|
|
|
|
|
|
//setup trees
|
|
|
|
|
ui->tvCalculators->setModel(hpTreeModel);
|
|
|
|
|
ui->tvCalculators->show();
|
|
|
|
|
QItemSelectionModel *selectionModel= ui->tvCalculators->selectionModel();
|
|
|
|
|
|
|
|
|
|
connect(ui->actionOpen,SIGNAL(triggered()),this,SLOT(onOpen()));
|
|
|
|
|
connect(ui->actionAbout_HP_Connect,SIGNAL(triggered()),this,SLOT(about()));
|
|
|
|
|
connect(ui->actionExit,SIGNAL(triggered()),this,SLOT(exit()));
|
|
|
|
|
connect(ui->actionContent,SIGNAL(triggered()),this,SLOT(showContent()));
|
|
|
|
|
connect(ui->actionCalculators,SIGNAL(triggered()),this,SLOT(showCalculator()));
|
|
|
|
|
connect(ui->actionMessages,SIGNAL(triggered()),this,SLOT(showMessage()));
|
|
|
|
|
connect(ui->actionMonitor,SIGNAL(triggered()),this,SLOT(showMonitor()));
|
|
|
|
|
connect(ui->tvCalculators,SIGNAL(clicked(QModelIndex)),this,SLOT(clickedCalculator(QModelIndex)));
|
|
|
|
|
connect(ui->actionLog,SIGNAL(triggered()),this,SLOT(createLogWindow()));
|
|
|
|
|
connect(ui->actionTest,SIGNAL(triggered()),this,SLOT(testFunction()));
|
2019-02-12 21:48:35 +01:00
|
|
|
|
connect(ui->actionTestSettings,SIGNAL(triggered()),this,SLOT(onTestSettings()));
|
2019-02-17 17:24:52 +01:00
|
|
|
|
connect(ui->actionTestScreen,SIGNAL(triggered()),this,SLOT(onTestScreen()));
|
2019-02-11 21:54:51 +01:00
|
|
|
|
connect(ui->tvCalculators, SIGNAL(customContextMenuRequested(const QPoint &)), this, SLOT(on_tvCalculators_customContextMenuRequested(const QPoint &)));
|
2019-02-10 14:43:00 +01:00
|
|
|
|
|
|
|
|
|
//default data
|
|
|
|
|
log("Initialising....");
|
|
|
|
|
|
|
|
|
|
if (hpapi->hp_init())
|
|
|
|
|
err(L1,0,QString().sprintf("%s Failed to open libusb",__FUNCTION__));
|
|
|
|
|
|
|
|
|
|
ui->dwMessenger->hide();
|
|
|
|
|
ui->dwMonitor->hide();
|
|
|
|
|
|
|
|
|
|
addDummy();
|
|
|
|
|
// openHP();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::testFunction() {
|
|
|
|
|
|
|
|
|
|
hpCalcData * pH;
|
|
|
|
|
|
|
|
|
|
int cmd;
|
|
|
|
|
|
|
|
|
|
pH=getTreeModel()->getCalculator("IAN");
|
|
|
|
|
if (pH) {
|
|
|
|
|
|
2019-02-17 17:24:52 +01:00
|
|
|
|
cmd = QInputDialog::getInt(this,"Get Command","CMD:",0,0,0xFFFF);
|
2019-02-10 14:43:00 +01:00
|
|
|
|
log("command is "+QString().sprintf("%x",cmd));
|
|
|
|
|
pH->vpkt_send_experiments(cmd);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
log("Could not get calculator");
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
treeModel * MainWindow::getTreeModel() {
|
|
|
|
|
return hpTreeModel;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::writeStatus(QString msg)
|
|
|
|
|
{
|
|
|
|
|
statusBar()->showMessage(msg);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::writeChatter(QString line)
|
|
|
|
|
{
|
|
|
|
|
if (logEdit)
|
|
|
|
|
{
|
|
|
|
|
logEdit->append(line);
|
|
|
|
|
}
|
|
|
|
|
return;
|
2019-02-10 14:32:15 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MainWindow::~MainWindow()
|
|
|
|
|
{
|
|
|
|
|
delete ui;
|
|
|
|
|
}
|
2019-02-10 14:43:00 +01:00
|
|
|
|
|
|
|
|
|
void MainWindow::onOpen()
|
|
|
|
|
{
|
2019-02-12 21:48:35 +01:00
|
|
|
|
qDebug()<<"MainWindow::in on Open";
|
2019-02-10 14:43:00 +01:00
|
|
|
|
|
|
|
|
|
//test to see if data model works
|
|
|
|
|
hp_Information hpi;
|
|
|
|
|
hpi.serialnum="123-56";
|
|
|
|
|
QString key;
|
|
|
|
|
key=hpTreeModel->getLastDataKey();
|
|
|
|
|
hpCalcData * hpdata;
|
|
|
|
|
|
|
|
|
|
qDebug()<<"MainWindow:: getKey";
|
|
|
|
|
|
|
|
|
|
hpdata=hpTreeModel->getHpCalcData(key);
|
|
|
|
|
if(hpdata)
|
|
|
|
|
hpdata->setInfo(hpi);
|
|
|
|
|
|
|
|
|
|
openHP();
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-12 21:48:35 +01:00
|
|
|
|
void MainWindow::onTestSettings()
|
|
|
|
|
{
|
|
|
|
|
qDebug()<<"MainWindow::in test Settings";
|
|
|
|
|
|
|
|
|
|
QString key;
|
|
|
|
|
key=hpTreeModel->getLastDataKey();
|
|
|
|
|
hpCalcData * hpdata;
|
|
|
|
|
qDebug()<<"MainWindow:: getKey";
|
|
|
|
|
|
|
|
|
|
hpdata=hpTreeModel->getHpCalcData(key);
|
|
|
|
|
if(hpdata)
|
|
|
|
|
hpdata->readSettings();
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-17 17:24:52 +01:00
|
|
|
|
void MainWindow::onTestScreen()
|
|
|
|
|
{
|
|
|
|
|
qDebug()<<"MainWindow::in test Screen";
|
|
|
|
|
|
|
|
|
|
QString key;
|
|
|
|
|
key=hpTreeModel->getLastDataKey();
|
|
|
|
|
hpCalcData * hpdata;
|
|
|
|
|
qDebug()<<"MainWindow:: getKey";
|
|
|
|
|
|
|
|
|
|
hpdata=hpTreeModel->getHpCalcData(key);
|
|
|
|
|
if(hpdata)
|
|
|
|
|
hpdata->readScreen();
|
|
|
|
|
}
|
2019-02-12 21:48:35 +01:00
|
|
|
|
|
2019-02-10 14:43:00 +01:00
|
|
|
|
//Experimental
|
|
|
|
|
void MainWindow::loadTextFile()
|
|
|
|
|
{
|
|
|
|
|
QFile inputFile(":/input.txt");
|
|
|
|
|
inputFile.open(QIODevice::ReadOnly);
|
|
|
|
|
|
|
|
|
|
QTextStream in(&inputFile);
|
|
|
|
|
QString line = in.readAll();
|
|
|
|
|
inputFile.close();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//open the first calculator
|
|
|
|
|
//rework, find multiple or allow choice
|
|
|
|
|
void MainWindow::openHP()
|
|
|
|
|
{
|
|
|
|
|
hpCalcData * data;
|
|
|
|
|
|
|
|
|
|
qDebug()<<"openHP";
|
|
|
|
|
QString name1 = QString("IAN");
|
|
|
|
|
data=hpTreeModel->getCalculator(name1);
|
|
|
|
|
if(data) {
|
|
|
|
|
qDebug()<<"Read Info";
|
2019-02-12 21:48:35 +01:00
|
|
|
|
data->readInfo();
|
2019-02-10 14:43:00 +01:00
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
qDebug()<<"In open Func";
|
|
|
|
|
hpTreeModel->addCalculator(name1,hpapi);
|
|
|
|
|
//handle lost on second call!
|
|
|
|
|
// hpapi->submit_sync_transfer(&handle);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//testcode to add a dummy calculator to the tree
|
|
|
|
|
void MainWindow::addDummy() {
|
|
|
|
|
|
|
|
|
|
QString name = QString("DUMMY");
|
|
|
|
|
hpTreeModel->addCalculator(name,nullptr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//slot to handle tree selection
|
|
|
|
|
void MainWindow::selectionChangedSlot(const QItemSelection & /*newSelection*/, const QItemSelection & /*oldSelection*/)
|
|
|
|
|
{
|
|
|
|
|
//get the text of the selected item
|
|
|
|
|
const QModelIndex index = ui->tvCalculators->selectionModel()->currentIndex();
|
|
|
|
|
|
|
|
|
|
// hpTreeItem * item = (hpTreeItem *)index.internalPointer();
|
|
|
|
|
|
|
|
|
|
// if(item) {
|
|
|
|
|
// if (item->isSelectable())
|
|
|
|
|
// item->hptSelection(5);
|
|
|
|
|
// };
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// hpTreeItem hpt= ui->tvCalculators->selectionModel()->
|
|
|
|
|
QString selectedText = index.data(Qt::DisplayRole).toString();
|
|
|
|
|
|
|
|
|
|
//find out the hierarchy level of the selected item
|
|
|
|
|
int hierarchyLevel=1;
|
|
|
|
|
QModelIndex seekRoot = index;
|
|
|
|
|
while(seekRoot.parent() != QModelIndex())
|
|
|
|
|
{
|
|
|
|
|
seekRoot = seekRoot.parent();
|
|
|
|
|
hierarchyLevel++;
|
|
|
|
|
}
|
|
|
|
|
QString showString = QString("%1, Level %2").arg(selectedText)
|
|
|
|
|
.arg(hierarchyLevel);
|
|
|
|
|
setWindowTitle(showString);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::clickedCalculator(QModelIndex index) {
|
|
|
|
|
|
|
|
|
|
hp_mdiVariableEdit * hpvaredit;
|
|
|
|
|
|
|
|
|
|
QStandardItem * item = hpTreeModel->itemFromIndex(index);
|
|
|
|
|
|
|
|
|
|
hpTreeItem * treeItem = dynamic_cast<hpTreeItem *>(hpTreeModel->itemFromIndex(index));
|
|
|
|
|
|
|
|
|
|
if(treeItem) {
|
|
|
|
|
|
|
|
|
|
DataType treetype;
|
|
|
|
|
treetype=treeItem->getType();
|
|
|
|
|
|
|
|
|
|
switch (treetype) {
|
|
|
|
|
case HP_APP:
|
|
|
|
|
break;
|
|
|
|
|
case HP_CAS:
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
treeItem->clickAction(getMdi());
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
log(QStringLiteral("treeItem is null"));
|
|
|
|
|
}
|
|
|
|
|
log(item->data(Qt::DisplayRole).toString());
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::about()
|
|
|
|
|
{
|
|
|
|
|
QMessageBox::about(this, tr("About Application"),
|
|
|
|
|
tr("The <b>Application</b> example demonstrates how to "
|
|
|
|
|
"write modern GUI applications using Qt, with a menu bar, "
|
|
|
|
|
"toolbars, and a status bar."));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//Dummy from examples -- edit
|
|
|
|
|
void MainWindow::createActions()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
// ui->toolBar->addWidget(QPushButton(QIcon(":/icons/about_32x32.png"),"test"));
|
|
|
|
|
// const QIcon newIcon = QIcon::fromTheme("document-new", QIcon(":/icons/new.png"));
|
|
|
|
|
// QAction *newAct = new QAction(newIcon, tr("&New"), this);
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//show or hide content window
|
|
|
|
|
void MainWindow::showContent() {
|
|
|
|
|
|
|
|
|
|
if (ui->dwContent_2->isVisible()) {
|
|
|
|
|
ui->dwContent_2->hide();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ui->dwContent_2->show();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//show or hide calculator window
|
|
|
|
|
void MainWindow::showCalculator() {
|
|
|
|
|
|
|
|
|
|
if (ui->dwCalculator->isVisible()) {
|
|
|
|
|
ui->dwCalculator->hide();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ui->dwCalculator->show();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//show or hide message window
|
|
|
|
|
void MainWindow::showMessage() {
|
|
|
|
|
|
|
|
|
|
if (ui->dwMessenger->isVisible()) {
|
|
|
|
|
ui->dwMessenger->hide();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ui->dwMessenger->show();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//show or hide message window
|
|
|
|
|
void MainWindow::showMonitor() {
|
|
|
|
|
|
|
|
|
|
if (ui->dwMonitor->isVisible()) {
|
|
|
|
|
ui->dwMonitor->hide();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ui->dwMonitor->show();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-17 17:24:52 +01:00
|
|
|
|
// slot to process low level changes that affect the main Window
|
|
|
|
|
void MainWindow::dataChange(hp_Change hpchange) {
|
|
|
|
|
|
|
|
|
|
hpCalcData * ptr=nullptr;
|
|
|
|
|
qDebug()<<"MainWindow Datachange";
|
|
|
|
|
switch (hpchange.dataChange) {
|
|
|
|
|
case HP_MAIN:
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
case HP_SCREEN: {
|
|
|
|
|
qDebug()<<"Reciebed screenshot changed";
|
|
|
|
|
if (hpchange.calc!=nullptr) {
|
|
|
|
|
hp_ScreenShot scrn;
|
|
|
|
|
scrn = hpchange.calc->getScreenShot();
|
|
|
|
|
monitorAddImage(scrn);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//Add screen shots to the message window
|
|
|
|
|
void MainWindow::monitorAddImage(hp_ScreenShot scrnshot) {
|
|
|
|
|
|
|
|
|
|
qDebug()<<"In Monitor Add Screen Shot";
|
|
|
|
|
QPixmap * pic;
|
|
|
|
|
int col;
|
|
|
|
|
int row;
|
|
|
|
|
int count;
|
|
|
|
|
|
|
|
|
|
if (scrnshot.image!=nullptr) {
|
|
|
|
|
|
|
|
|
|
//Todo fix default image
|
|
|
|
|
pic=new QPixmap(":/icons/add_background_32x32.png");
|
|
|
|
|
QLabel * label = new QLabel("Screenshot");
|
|
|
|
|
label->setPixmap(*pic);
|
|
|
|
|
row = ui->wMonitorGrid->rowCount();
|
|
|
|
|
col = ui->wMonitorGrid->columnCount();
|
|
|
|
|
count = ui->wMonitorGrid->count();
|
|
|
|
|
|
|
|
|
|
col=count%3;
|
|
|
|
|
row=count/3;
|
|
|
|
|
|
|
|
|
|
qDebug()<<"Row set"<<row;
|
|
|
|
|
qDebug()<<"Column set"<<col;
|
|
|
|
|
ui->wMonitorGrid->addWidget(label,row,col,Qt::AlignTop);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
log("Could not load image");
|
|
|
|
|
}
|
|
|
|
|
ui->dwMonitor->show();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-10 14:43:00 +01:00
|
|
|
|
void MainWindow::exit() {
|
2019-02-11 21:54:51 +01:00
|
|
|
|
delete treeMenu;
|
2019-02-10 14:43:00 +01:00
|
|
|
|
close();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//opens a new test window
|
|
|
|
|
//todo - link to hpdata
|
|
|
|
|
void MainWindow::createTextWindow() {
|
|
|
|
|
|
|
|
|
|
msgWindow = new QMdiSubWindow(ui->mdiArea);
|
|
|
|
|
QTextEdit * textWindow = new QTextEdit("hell",msgWindow);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//opens the log window
|
|
|
|
|
void MainWindow::createLogWindow() {
|
|
|
|
|
|
|
|
|
|
if (!logWindow)
|
|
|
|
|
logWindow = new hp_MdiWindow(ui->mdiArea);
|
|
|
|
|
else
|
|
|
|
|
logWindow->show();
|
|
|
|
|
if (!logEdit)
|
|
|
|
|
logEdit = logWindow->getEditor();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//returns the multi document area
|
|
|
|
|
QMdiArea * MainWindow::getMdi() {
|
|
|
|
|
return ui->mdiArea;
|
|
|
|
|
}
|
2019-02-11 21:54:51 +01:00
|
|
|
|
|
|
|
|
|
void MainWindow::setTreeMenu() {
|
|
|
|
|
|
|
|
|
|
treeMenu = new QMenu(ui->tvCalculators); // add menu items
|
|
|
|
|
treeMenu->addAction(ui->actionPreferences);
|
|
|
|
|
ui->tvCalculators->setContextMenuPolicy(Qt::CustomContextMenu);
|
|
|
|
|
connect(ui->actionPreferences, SIGNAL(triggered(bool)),
|
|
|
|
|
this, SLOT(treeMenuAction(bool)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::treeMenuAction(bool clicked) {
|
|
|
|
|
|
|
|
|
|
QPoint pos;
|
|
|
|
|
pos=ui->actionPreferences->data().toPoint();
|
|
|
|
|
|
|
|
|
|
QModelIndex index = ui->tvCalculators->indexAt(pos);
|
|
|
|
|
if (index.isValid()) {
|
|
|
|
|
hpTreeItem * treeItem = dynamic_cast<hpTreeItem *>(hpTreeModel->itemFromIndex(index));
|
|
|
|
|
if(treeItem) {
|
|
|
|
|
DataType treetype;
|
|
|
|
|
treetype=treeItem->getType();
|
|
|
|
|
switch (treetype) {
|
|
|
|
|
case HP_MAIN:
|
|
|
|
|
treeItem->contextAction(getMdi(),CT_PREFERENCE);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
log(QStringLiteral("treeItem is null"));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::on_tvCalculators_customContextMenuRequested(const QPoint &pos)
|
|
|
|
|
{
|
|
|
|
|
QModelIndex index = ui->tvCalculators->indexAt(pos);
|
|
|
|
|
if (index.isValid()) {
|
|
|
|
|
hpTreeItem * treeItem = dynamic_cast<hpTreeItem *>(hpTreeModel->itemFromIndex(index));
|
|
|
|
|
if(treeItem) {
|
|
|
|
|
DataType treetype;
|
|
|
|
|
treetype=treeItem->getType();
|
|
|
|
|
switch (treetype) {
|
|
|
|
|
//only show menu on main
|
|
|
|
|
case HP_MAIN: {
|
|
|
|
|
if(treeMenu) {
|
|
|
|
|
ui->actionPreferences->setData(QVariant(pos));
|
|
|
|
|
treeMenu->exec(ui->tvCalculators->viewport()->mapToGlobal(pos));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|