summaryrefslogtreecommitdiffstats
path: root/filters/karbon/ai/ai3handler.cc
blob: c014d9306a7178970a1be556eee48a65f8d0b9ca (plain)
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
/* This file is part of the KDE project
   Copyright (C) 2002, Dirk Schönberger <dirk.schoenberger@sz-online.de>

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library 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
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this library; see the file COPYING.LIB.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
*/

#include "ai3handler.h"

AI3Handler::AI3Handler(AIParserBase *delegate){
  m_delegate = delegate;
}
AI3Handler::~AI3Handler(){
}

bool AI3Handler::handleAIOperation (AIOperation op) {
//  PathElement pathElement;
//  double fval;
  int ival;

  switch (op) {
    case AIO_SetWindingOrder :
      ival = m_delegate->getIntValue();
      if (m_delegate->m_gstateHandler) m_delegate->m_gstateHandler->gotWindingOrder (ival);
      return true;
      break;
    case AIO_BeginGroupNoClip :
      if (m_delegate->m_structureHandler) m_delegate->m_structureHandler->gotBeginGroup (false);
      return true;
      break;
    case AIO_EndGroupNoClip :
      if (m_delegate->m_debug) tqDebug ("got end group noclip");
      if (m_delegate->m_structureHandler) m_delegate->m_structureHandler->gotEndGroup (false);
      if (m_delegate->m_debug) tqDebug ("/got end group noclip");
      return true;
      break;
    case AIO_BeginCombination :
      if (m_delegate->m_structureHandler) m_delegate->m_structureHandler->gotBeginCombination ();
      return true;
      break;
    case AIO_EndCombination :
      if (m_delegate->m_structureHandler) m_delegate->m_structureHandler->gotEndCombination ();
      return true;
      break;
    case AIO_BeginGroupClip :
      if (m_delegate->m_structureHandler) m_delegate->m_structureHandler->gotBeginGroup (true);
      return true;
      break;
    case AIO_EndGroupClip :
      if (m_delegate->m_structureHandler) m_delegate->m_structureHandler->gotEndGroup (true);
      return true;
      break;
    case AIO_SetFillMode :
      if (m_delegate->m_pathHandler) m_delegate->m_pathHandler->gotFillMode((FillMode) m_delegate->getIntValue());
      return true;
      break;
    default :
      return false;
  }
  return false;
}