]> err.no Git - sope/blob - Recycler/NGObjDOM/ODNodeRenderer+attributes.h
fixed a warning in resource manager
[sope] / Recycler / NGObjDOM / ODNodeRenderer+attributes.h
1 /*
2   Copyright (C) 2000-2003 SKYRIX Software AG
3
4   This file is part of OGo
5
6   OGo is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   OGo is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with OGo; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21 // $Id$
22
23 #ifndef __ODNodeRenderer_attributes_H__
24 #define __ODNodeRenderer_attributes_H__
25
26 #include <NGObjDOM/ODNodeRenderer.h>
27
28 @interface ODNodeRenderer(attributes)
29
30 /* evaluate attributes depending on the namespace */
31 - (BOOL)boolFor:(NSString *)_attr         node:(id)_node ctx:(id)_ctx;
32 - (int)intFor:(NSString *)_attr           node:(id)_node ctx:(id)_ctx;
33 - (id)valueFor:(NSString *)_attr          node:(id)_node ctx:(id)_ctx;
34 - (NSString *)stringFor:(NSString *)_attr node:(id)_node ctx:(id)_ctx;
35
36 - (void)setBool:(BOOL)_value for:(NSString *)_attr node:(id)_node ctx:(id)_ctx;
37 - (void)setInt:(int)_value   for:(NSString *)_attr node:(id)_node ctx:(id)_ctx;
38 - (void)setValue:(id)_value  for:(NSString *)_attr node:(id)_node ctx:(id)_ctx;
39 - (void)setString:(NSString *)_value
40   for:(NSString *)_attrName
41   node:(id)_node
42   ctx:(id)_ctx;
43
44 - (void)forceSetValue:(id)_v  for:(NSString *)_attr node:(id)_n ctx:(id)_ctx;
45 - (void)forceSetBool:(BOOL)_v for:(NSString *)_attr node:(id)_n ctx:(id)_ctx;
46 - (void)forceSetInt:(int)_v   for:(NSString *)_attr node:(id)_n ctx:(id)_ctx;
47 - (void)forceSetString:(NSString *)_v
48   for:(NSString *)_attrName
49   node:(id)_node
50   ctx:(id)_ctx;
51
52 - (BOOL)isSettable:(NSString *)_attr node:(id)_node ctx:(id)_ctx;
53 - (BOOL)hasAttribute:(NSString *)_attr node:(id)_node ctx:(id)_ctx;
54
55 - (NSString *)stringForInt:(int)_int;
56
57 /* evaluate associations (looks for 'special' namespaces) */
58
59 - (id)valueForAttributeNode:(id)_attrNode inContext:(id)_ctx;
60 - (id)invokeValueForAttributeNode:(id)_attrNode inContext:(id)_ctx;
61
62 @end
63
64 #endif /* __ODNodeRenderer_attributes_H__ */