Optika GUI Toolik  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Optika_treeview.cpp
Go to the documentation of this file.
1 // @HEADER
2 // ***********************************************************************
3 //
4 // Optika: A Tool For Developing Parameter Obtaining GUIs
5 // Copyright (2009) Sandia Corporation
6 //
7 // Under terms of Contract DE-AC04-94AL85000, with Sandia Corporation, the
8 // U.S. Government retains certain rights in this software.
9 //
10 // Redistribution and use in source and binary forms, with or without
11 // modification, are permitted provided that the following conditions are
12 // met:
13 //
14 // 1. Redistributions of source code must retain the above copyright
15 // notice, this list of conditions and the following disclaimer.
16 //
17 // 2. Redistributions in binary form must reproduce the above copyright
18 // notice, this list of conditions and the following disclaimer in the
19 // documentation and/or other materials provided with the distribution.
20 //
21 // 3. Neither the name of the Corporation nor the names of the
22 // contributors may be used to endorse or promote products derived from
23 // this software without specific prior written permission.
24 //
25 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
26 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
29 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
30 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
31 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
32 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 //
37 // Questions? Contact Kurtis Nusbaum (klnusbaum@gmail.com)
38 //
39 // ***********************************************************************
40 // @HEADER
41 #include "Optika_treeview.hpp"
42 #include <QMessageBox>
43 namespace Optika{
44 
45 
46 TreeView::TreeView(TreeModel *treeModel, Delegate *delegate, QWidget* parent):QTreeView(parent){
47  setModel(treeModel);
48  setItemDelegateForColumn(1, delegate);
49  if(treeModel->hasDependencies()){
50  connect(treeModel, SIGNAL(hideData(int, const QModelIndex&)), this, SLOT(hideRow(int, const QModelIndex&)));
51  connect(treeModel, SIGNAL(showData(int, const QModelIndex&)), this, SLOT(showRow(int, const QModelIndex&)));
52  connect(treeModel, SIGNAL(badValue(QModelIndex, QString)), this, SLOT(handleBadValue(QModelIndex, QString)));
53  connect(delegate, SIGNAL(closeEditor(QWidget*, QAbstractItemDelegate::EndEditHint)), this, SLOT(checkForOtherBadValues()));
54  treeModel->issueInitilizationSignals();
55  }
56  setAnimated(true);
57  setAlternatingRowColors(true);
58 }
59 
60 void TreeView::showRow(int row, const QModelIndex& parent){
61  if(isRowHidden(row, parent)){
62  setRowHidden(row, parent, false);
63  }
64 }
65 
66 void TreeView::hideRow(int row, const QModelIndex& parent){
67  if(!isRowHidden(row, parent)){
68  setRowHidden(row, parent, true);
69  }
70 }
71 
72 void TreeView::handleBadValue(QModelIndex badValueIndex, QString message){
73  if(state() != EditingState && !isRowHidden(badValueIndex.row(), badValueIndex.parent())){
74  QMessageBox::warning(this, "Bad parameter value", message);
75  setCurrentIndex(badValueIndex);
76  edit(badValueIndex);
77  }
78  else if(!isRowHidden(badValueIndex.row(), badValueIndex.parent())){
79  invalidInicies.enqueue(invalidIndex(badValueIndex, message));
80  }
81 }
82 
84  if(invalidInicies.size() != 0){
85  invalidIndex needsToBeEdited = invalidInicies.dequeue();
86  handleBadValue(needsToBeEdited.first, needsToBeEdited.second);
87  }
88 }
89 
90 }
91 
void checkForOtherBadValues()
Checks to see if there are any other invalid indicies. If there are, it dequeues the next invalidInde...
void hideRow(int row, const QModelIndex &parent)
Used to change the visiblity of a row from shown to hidden.
TreeView(TreeModel *treeModel, Delegate *delegate, QWidget *parent=0)
Constructs a TreeView.
void issueInitilizationSignals()
Issues any signals that need to be emitted right away.
QQueue< invalidIndex > invalidInicies
A Queue containing any invalid indicies that need to be delt with.
void showRow(int row, const QModelIndex &parent)
Used to change the visiblity of a row from hidden to shown.
std::pair< QModelIndex, QString > invalidIndex
A pair representing an invalidIndex and why it's invalid.
void handleBadValue(QModelIndex badValueIndex, QString message)
Handles any badValue signals that might be emitted by the TreeModel.
bool hasDependencies()
Determines whether or not a Dependent Parameter List is being used in the TreeModel.
TreeModel is a type of QAbstractItemModel that has a Tree like structure.
The delegate used for the Optika package. For non-documented functions please refer to the Qt API...
The view used in Optikas implementation of the MVC framework.