File: vtkXMLKWUserInterfaceManagerNotebookReader.cxx

package info (click to toggle)
volview 3.4-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 25,204 kB
  • sloc: cpp: 132,585; ansic: 11,612; tcl: 236; sh: 64; makefile: 25; xml: 8
file content (149 lines) | stat: -rw-r--r-- 5,093 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/*=========================================================================

  Copyright (c) Kitware, Inc.
  All rights reserved.
  See Copyright.txt or http://www.kitware.com/VolViewCopyright.htm for details.

     This software is distributed WITHOUT ANY WARRANTY; without even
     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
     PURPOSE.  See the above copyright notice for more information.

=========================================================================*/
#include "XML/vtkXMLKWUserInterfaceManagerNotebookReader.h"

#include "vtkKWNotebook.h"
#include "vtkKWUserInterfaceManagerNotebook.h"
#include "vtkKWUserInterfacePanel.h"
#include "vtkObjectFactory.h"
#include "vtkXMLDataElement.h"

#include "XML/vtkXMLKWUserInterfaceManagerNotebookWriter.h"

vtkStandardNewMacro(vtkXMLKWUserInterfaceManagerNotebookReader);
vtkCxxRevisionMacro(vtkXMLKWUserInterfaceManagerNotebookReader, "$Revision: 1.5 $");

//----------------------------------------------------------------------------
const char* vtkXMLKWUserInterfaceManagerNotebookReader::GetRootElementName()
{
  return "KWUserInterfaceManagerNotebook";
}

//----------------------------------------------------------------------------
int vtkXMLKWUserInterfaceManagerNotebookReader::Parse(vtkXMLDataElement *elem)
{
  if (!this->Superclass::Parse(elem))
    {
    return 0;
    }

  vtkKWUserInterfaceManagerNotebook *obj = 
    vtkKWUserInterfaceManagerNotebook::SafeDownCast(this->Object);
  if (!obj)
    {
    vtkWarningMacro(<< "The KWUserInterfaceManagerNotebook is not set!");
    return 0;
    }

  // Visible pages

  vtkKWNotebook *notebook = obj->GetNotebook();
  if (notebook)
    {
    vtkXMLDataElement *vp_elem = elem->FindNestedElementWithName(
     vtkXMLKWUserInterfaceManagerNotebookWriter::GetVisiblePagesElementName());
    if (vp_elem)
      {
      int nb_vp_elems = vp_elem->GetNumberOfNestedElements();
      for (int idx = 0; idx < nb_vp_elems; idx++)
        {
        vtkXMLDataElement *p_elem = vp_elem->GetNestedElement(idx);
        if (!strcmp(
             p_elem->GetName(), 
             vtkXMLKWUserInterfaceManagerNotebookWriter::GetPageElementName()))
          {
          const char *page_title = p_elem->GetAttribute("PageTitle");
          const char *panel_name = p_elem->GetAttribute("PanelName");

          // As a convenience, the XML writer did not output the
          // panel name if its the same as the page title.

          if (!panel_name)
            {
            panel_name = page_title;
            }

          if (page_title && panel_name)
            {
            vtkKWUserInterfacePanel *panel = obj->GetPanel(panel_name);
            if (panel)
              {
              panel->RaisePage(page_title);
              int pinned;
              if (p_elem->GetScalarAttribute("Pinned", pinned))
                {
                if (pinned)
                  {
                  notebook->PinPage(notebook->GetRaisedPageId());
                  }
                else
                  {
                  notebook->UnpinPage(notebook->GetRaisedPageId());
                  }
                }
              }
            }
          }
        }
      }
    }
  
  // Drag&Drop

  vtkXMLDataElement *dd_elem = elem->FindNestedElementWithName(
    vtkXMLKWUserInterfaceManagerNotebookWriter::
    GetDragAndDropEntriesElementName());
  if (dd_elem)
    {
    int nb_dd_elems = dd_elem->GetNumberOfNestedElements();
    for (int idx = 0; idx < nb_dd_elems; idx++)
      {
      vtkXMLDataElement *p_elem = dd_elem->GetNestedElement(idx);
      if (!strcmp(
            p_elem->GetName(), 
            vtkXMLKWUserInterfaceManagerNotebookWriter::
            GetDragAndDropEntryElementName()))
        {
        const char *widget_label = p_elem->GetAttribute("WidgetLabel");
        if (widget_label)
          {
          vtkXMLDataElement *from_elem = p_elem->FindNestedElementWithName(
            "From");
          vtkXMLDataElement *to_elem = p_elem->FindNestedElementWithName(
            "To");
          if (from_elem && to_elem)
            {
            const char *from_panel_name = from_elem->GetAttribute("PanelName");
            const char *from_page_title = from_elem->GetAttribute("PageTitle");
            const char *from_after_widget_label = 
              from_elem->GetAttribute("AfterWidgetLabel");
            const char *to_panel_name = to_elem->GetAttribute("PanelName"); 
            const char *to_page_title = to_elem->GetAttribute("PageTitle");
            const char *to_after_widget_label = 
              to_elem->GetAttribute("AfterWidgetLabel");
            
            obj->DragAndDropWidget(widget_label, 
                                   from_panel_name, 
                                   from_page_title, 
                                   from_after_widget_label,
                                   to_panel_name, 
                                   to_page_title, 
                                   to_after_widget_label);
            }
          }
        }
      }
    }

  return 1;
}