Monotone-Parent: 8799c458544f40843eb4692288485d9d1aeec685

Monotone-Revision: 56b1de6e843c25b294505745dc96155ab59c7d97

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-08-06T14:35:50
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2007-08-06 14:35:50 +00:00
parent 6afa336110
commit 7a9f0e6dc8
3 changed files with 33 additions and 39 deletions

View File

@ -20,43 +20,41 @@
*/
// $Id: UIxAppNavView.m 281 2004-08-27 03:51:08Z helge $
#include <SOGoUI/UIxComponent.h>
#import <NGObjWeb/SoObject+SoDAV.h>
#import <NGObjWeb/WOContext+SoObjects.h>
#import <SOGoUI/UIxComponent.h>
@interface UIxAppNavView : UIxComponent
{
id element;
id lastElement;
id element;
id lastElement;
}
@end
#include <NGObjWeb/NGObjWeb.h>
#include <NGObjWeb/SoObject+SoDAV.h>
#include <NGObjWeb/WOContext+SoObjects.h>
#include "common.h"
@implementation UIxAppNavView
- (void)dealloc {
[self->element release];
[self->lastElement release];
[element release];
[lastElement release];
[super dealloc];
}
/* accessors */
- (void)setElement:(id)_element {
ASSIGN(self->element, _element);
ASSIGN(element, _element);
}
- (id)element {
return self->element;
return element;
}
- (void)setLastElement:(id)_element {
ASSIGN(self->lastElement, _element);
ASSIGN(lastElement, _element);
}
- (id)lastElement {
return self->lastElement;
return lastElement;
}
/* navigation */

View File

@ -19,31 +19,35 @@
02111-1307, USA.
*/
#include <NGObjWeb/SoComponent.h>
#import <NGObjWeb/SoComponent.h>
@class NSString;
@interface UIxPrintPageFrame : SoComponent
{
NSString *title;
NSString *title;
}
@end
#include "common.h"
@implementation UIxPrintPageFrame
- (void)dealloc {
[self->title release];
- (void) dealloc
{
[title release];
[super dealloc];
}
/* accessors */
- (void)setTitle:(NSString *)_value {
ASSIGNCOPY(self->title, _value);
- (void)setTitle: (NSString *) _value
{
ASSIGNCOPY (title, _value);
}
- (NSString *)title {
return self->title;
- (NSString *) title
{
return title;
}
@end /* UIxPrintPageFrame */

View File

@ -18,22 +18,14 @@
Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
*/
// $Id: common.h,v 1.1 2003/11/24 01:24:40 helge Exp $
#import <Foundation/Foundation.h>
#warning importing common.h is baaad
#if LIB_FOUNDATION_LIBRARY
# include <Foundation/exceptions/GeneralExceptions.h>
#elif NeXT_Foundation_LIBRARY || COCOA_Foundation_LIBRARY
# include <NGExtensions/NGObjectMacros.h>
# include <NGExtensions/NSString+Ext.h>
#endif
#include <NGExtensions/NGExtensions.h>
#include <NGObjWeb/NGObjWeb.h>
#include <NGObjWeb/SoObjects.h>
#import <NGObjWeb/WOAssociation.h>
#import <NGObjWeb/WOContext+SoObjects.h>
#import <NGObjWeb/WODynamicElement.h>
#import <NGObjWeb/WORequest.h>
#import <NGObjWeb/WOResourceManager.h>
#import <NGObjWeb/WOSession.h>
#import <NGExtensions/NSObject+Logs.h>
@interface WOContext(WOExtensionsPrivate)
- (void)addActiveFormElement:(WOElement *)_element;