0029310: Coding - multiple compiler warnings in Inspectors
[occt.git] / tools / DFBrowser / DFBrowser_ItemApplication.cxx
1 // Created on: 2017-06-16
2 // Created by: Natalia ERMOLAEVA
3 // Copyright (c) 2017 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement. 
15
16 #include <inspector/DFBrowser_ItemApplication.hxx>
17
18 #include <inspector/DFBrowser_Item.hxx>
19 #include <inspector/DFBrowser_ItemDocument.hxx>
20 #include <inspector/DFBrowser_Module.hxx>
21 #include <inspector/DFBrowser_Tools.hxx>
22
23 #include <inspector/DFBrowserPane_AttributePane.hxx>
24 #include <inspector/DFBrowserPane_ItemRole.hxx>
25
26 #include <Standard_WarningsDisable.hxx>
27 #include <QObject>
28 #include <Standard_WarningsRestore.hxx>
29
30 // =======================================================================
31 // function : createChild
32 // purpose :
33 // =======================================================================
34 TreeModel_ItemBasePtr DFBrowser_ItemApplication::createChild (int theRow, int theColumn)
35 {
36   TreeModel_ItemBasePtr anItem = DFBrowser_ItemDocument::CreateItem (currentItem(), theRow, theColumn);
37   DFBrowser_ItemBasePtr aBaseItem = itemDynamicCast<DFBrowser_ItemBase> (anItem);
38   aBaseItem->SetModule (GetModule());
39
40   return anItem;
41 }
42
43 // =======================================================================
44 // function : initRowCount
45 // purpose :
46 // =======================================================================
47 int DFBrowser_ItemApplication::initRowCount() const
48 {
49   if (myApplication.IsNull())
50     return 0;
51
52   return myApplication->NbDocuments();
53 }
54
55 // =======================================================================
56 // function : initValue
57 // purpose :
58 // =======================================================================
59 QVariant DFBrowser_ItemApplication::initValue (const int theItemRole) const
60 {
61   if (theItemRole == Qt::DisplayRole ||
62       theItemRole == Qt::EditRole ||
63       theItemRole == Qt::ToolTipRole ||
64       theItemRole == DFBrowserPane_ItemRole_DisplayExtended ||
65       theItemRole == DFBrowserPane_ItemRole_ToolTipExtended)
66   {
67     return "TDocStd_Application";
68   }
69   return QVariant();
70 }