]> err.no Git - scalable-opengroupware.org/blob - UI/Common/UIxPageFrame.h
initial sync
[scalable-opengroupware.org] / UI / Common / UIxPageFrame.h
1 /*
2   Copyright (C) 2004-2005 SKYRIX Software AG
3
4   This file is part of OpenGroupware.org.
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
22 #ifndef UIXPAGEFRAME_H
23 #define UIXPAGEFRAME_H
24
25 @interface WOComponent (PopupExtension)
26
27 - (BOOL) isPopup;
28
29 @end
30
31 @interface UIxPageFrame : UIxComponent
32 {
33   NSString *title;
34   NSString *toolbar;
35   id item;
36   BOOL isPopup;
37 }
38
39 - (NSString *) pageJavaScriptURL;
40 - (NSString *) productJavaScriptURL;
41 - (BOOL) hasPageSpecificJavaScript;
42 - (BOOL) hasProductSpecificJavaScript;
43
44 - (NSString *) pageCSSURL;
45 - (NSString *) productCSSURL;
46 - (BOOL) hasPageSpecificCSS;
47 - (BOOL) hasProductSpecificCSS;
48
49 - (NSString *) productFrameworkName;
50
51 - (void) setPopup: (BOOL) popup;
52 - (BOOL) isPopup;
53
54 - (void) setToolbar: (NSString *) newToolbar;
55 - (NSString *) toolbar;
56
57 @end
58
59 #endif /* UIXPAGEFRAME_H */