webengine/wmlengine/src/fbox/include/nw_fbox_imagebuttonbox.h
author Kiiskinen Klaus (Nokia-D-MSW/Tampere) <klaus.kiiskinen@nokia.com>
Fri, 08 May 2009 08:25:06 +0300
changeset 8 7c90e6132015
parent 0 dd21522fd290
permissions -rw-r--r--
Revision: 200915 Kit: 200918

/*
* Copyright (c) 2000 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: 
*
*/


#ifndef NW_FBOX_ImageButtonBox_H
#define NW_FBOX_ImageButtonBox_H

#include "nw_fbox_formbox.h"
#include "nw_lmgr_animatedimageaggregate.h"
#include "nw_text_ucs2.h"
#include "nw_image_abstractimage.h"


#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
  

/* ------------------------------------------------------------------------- *
   public data types
 * ------------------------------------------------------------------------- */


/* ------------------------------------------------------------------------- *
   forward declarations
 * ------------------------------------------------------------------------- */
typedef struct NW_FBox_ImageButtonBox_Class_s NW_FBox_ImageButtonBox_Class_t;
typedef struct NW_FBox_ImageButtonBox_s NW_FBox_ImageButtonBox_t;

/* ------------------------------------------------------------------------- *
   virtual method prototypes
 * ------------------------------------------------------------------------- */

 /* ------------------------------------------------------------------------- *
   class declaration
 * ------------------------------------------------------------------------- */
typedef struct NW_FBox_ImageButtonBox_ClassPart_s {
  void** unused;
} NW_FBox_ImageButtonBox_ClassPart_t;
  
struct NW_FBox_ImageButtonBox_Class_s {
  NW_Object_Core_ClassPart_t NW_Object_Core;
  NW_Object_Base_ClassPart_t NW_Object_Base;
  NW_Object_Dynamic_ClassPart_t NW_Object_Dynamic;
  NW_LMgr_Box_ClassPart_t NW_LMgr_Box;
  NW_LMgr_ActiveBox_ClassPart_t NW_LMgr_ActiveBox;
  NW_FBox_FormBox_ClassPart_t NW_FBox_FormBox;
  NW_FBox_ImageButtonBox_ClassPart_t NW_FBox_ImageButtonBox;
};

/* ------------------------------------------------------------------------- *
   object declaration
 * ------------------------------------------------------------------------- */
struct NW_FBox_ImageButtonBox_s {
  NW_FBox_FormBox_t super;

  /* implemented aggregate */
  NW_LMgr_AnimatedImageAggregate_t NW_LMgr_AnimatedImageAggregate;

  /* member variables */
  NW_Text_t* value;
  NW_Image_AbstractImage_t* image;
};
    
/* ------------------------------------------------------------------------- *
   convenience macros
 * ------------------------------------------------------------------------- */
#define NW_FBox_ImageButtonBox_GetClassPart(_object) \
  (NW_Object_GetClassPart(_object, NW_FBox_ImageButtonBox))

#define NW_FBox_ImageButtonBoxOf(object) \
  (NW_Object_Cast (object, NW_FBox_ImageButtonBox))

/* ------------------------------------------------------------------------- *
   global static data
 * ------------------------------------------------------------------------- */
NW_FBOX_EXPORT const NW_FBox_ImageButtonBox_Class_t NW_FBox_ImageButtonBox_Class;

/* ------------------------------------------------------------------------- *
   final methods
 * ------------------------------------------------------------------------- */
#define NW_FBox_ImageButtonBox_GetValue(_buttonBox) \
  (NW_FBox_ImageButtonBoxOf(_buttonBox)->value)

#define NW_FBox_ImageButtonBox_SetValue(_buttonBox, _value) \
  (NW_FBox_ImageButtonBoxOf(_buttonBox)->value = (_value))


/* ------------------------------------------------------------------------- *
   public methods
 * ------------------------------------------------------------------------- */
void
NW_LMgr_ImageButtonBox_ReplaceBrokenImage( NW_LMgr_Box_t* box, NW_Image_AbstractImage_t* image );

/* ------------------------------------------------------------------------- *
   convenience methods
 * ------------------------------------------------------------------------- */
NW_FBOX_EXPORT
NW_FBox_ImageButtonBox_t*
NW_FBox_ImageButtonBox_New (NW_ADT_Vector_Metric_t numProperties,
                            NW_LMgr_EventHandler_t* eventHandler,
                            void* formCntrlId,
                            NW_FBox_FormLiaison_t* formLiaison,                            
                            NW_Text_t* value,
                            NW_Image_AbstractImage_t* image);


#ifdef __cplusplus
} // extern "C" {
#endif /* __cplusplus */

#endif  /* NW_FBOX_ImageButtonBox_H */