ParaView
pqTreeWidgetItem.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: pqTreeWidgetItem.h
5 
6  Copyright (c) 2005,2006 Sandia Corporation, Kitware Inc.
7  All rights reserved.
8 
9  ParaView is a free software; you can redistribute it and/or modify it
10  under the terms of the ParaView license version 1.2.
11 
12  See License_v1.2.txt for the full ParaView license.
13  A copy of this license can be obtained by contacting
14  Kitware Inc.
15  28 Corporate Drive
16  Clifton Park, NY 12065
17  USA
18 
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR
23 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 
31 ========================================================================*/
32 #ifndef pqTreeWidgetItem_h
33 #define pqTreeWidgetItem_h
34 
35 #include "pqWidgetsModule.h"
36 #include <QTreeWidgetItem>
37 
42 class PQWIDGETS_EXPORT pqTreeWidgetItem : public QTreeWidgetItem
43 {
44  typedef QTreeWidgetItem Superclass;
45 public:
46  pqTreeWidgetItem(int atype=UserType):
47  Superclass(atype), CallbackHandler(0) { }
48  pqTreeWidgetItem(const QStringList& strings, int atype=UserType):
49  Superclass(strings, atype), CallbackHandler(0) { }
50  pqTreeWidgetItem(QTreeWidget *aparent, int atype=UserType):
51  Superclass(aparent, atype), CallbackHandler(0) { }
52  pqTreeWidgetItem(QTreeWidget *aparent, const QStringList &strings, int atype=UserType):
53  Superclass(aparent, strings, atype), CallbackHandler(0) { }
54  pqTreeWidgetItem(QTreeWidget *aparent, QTreeWidgetItem *preceding, int atype=UserType):
55  Superclass(aparent, preceding, atype), CallbackHandler(0) { }
56  pqTreeWidgetItem(QTreeWidgetItem *aparent, int atype=UserType):
57  Superclass(aparent, atype), CallbackHandler(0) { }
58  pqTreeWidgetItem(QTreeWidgetItem *aparent, const QStringList& strings, int atype=UserType):
59  Superclass(aparent, strings, atype), CallbackHandler(0) { }
60  pqTreeWidgetItem(QTreeWidgetItem *aparent, QTreeWidgetItem* preceding, int atype=UserType):
61  Superclass(aparent, preceding, atype), CallbackHandler(0) { }
62 
64  virtual void setData(int column, int role, const QVariant& v);
65 
66 public:
68  {
69  public:
70  virtual ~pqCallbackHandler() {};
71 
73  virtual void dataAboutToChange(
74  pqTreeWidgetItem* /*item*/, int /*column*/, int /*role*/) {};
75 
78  pqTreeWidgetItem* /*item*/, int /*column*/) {};
79 
81  virtual void checkStateChanged(pqTreeWidgetItem* /*item*/, int /*column*/) {};
82 
84  virtual void dataChanged(
85  pqTreeWidgetItem* /*item*/, int /*column*/, int /*role*/) {};
86 
88  virtual bool acceptChange(
89  pqTreeWidgetItem* /*item*/,
90  const QVariant& /*curValue*/, const QVariant& /*newValue*/,
91  int /*column*/, int /*role*/)
92  { return true; }
93  };
94 
97  { this->CallbackHandler = hdlr; }
98 
99 protected:
101 };
102 
103 #endif
104 
105 
pqTreeWidgetItem(QTreeWidgetItem *aparent, int atype=UserType)
pqTreeWidgetItem(const QStringList &strings, int atype=UserType)
pqTreeWidgetItem(QTreeWidget *aparent, QTreeWidgetItem *preceding, int atype=UserType)
void setCallbackHandler(pqCallbackHandler *hdlr)
Set the name of the callback slot to call.
pqTreeWidgetItem(QTreeWidget *aparent, const QStringList &strings, int atype=UserType)
virtual void checkStateAboutToChange(pqTreeWidgetItem *, int)
Called to indicate that the data is about to be changed.
pqTreeWidgetItem(QTreeWidgetItem *aparent, QTreeWidgetItem *preceding, int atype=UserType)
virtual void dataChanged(pqTreeWidgetItem *, int, int)
Called to indicate that the data has been changed.
virtual bool acceptChange(pqTreeWidgetItem *, const QVariant &, const QVariant &, int, int)
Called to check if the change has to be accepted or rejected.
pqTreeWidgetItem is a QTreeWidgetItem with callbacks for whenever the data for the pqTreeWidgetItem c...
pqTreeWidgetItem(QTreeWidgetItem *aparent, const QStringList &strings, int atype=UserType)
pqCallbackHandler * CallbackHandler
pqTreeWidgetItem(int atype=UserType)
virtual void dataAboutToChange(pqTreeWidgetItem *, int, int)
Called to indicate that the data is about to be changed.
pqTreeWidgetItem(QTreeWidget *aparent, int atype=UserType)
virtual void checkStateChanged(pqTreeWidgetItem *, int)
Called to indicate that the check state for the item has been changed.