ext/wxStaticBitmap.cpp

Summary

Maintainability
Test Coverage
/*
 * wxStaticBitmap.cpp
 *
 *  Created on: 09.03.2012
 *      Author: hanmac
 */

#include "wxApp.hpp"
#include "wxStaticBitmap.hpp"

VALUE rb_cWXStaticBitmap;

#if wxUSE_STATBMP
#define _self unwrap<wxStaticBitmap*>(self)

namespace RubyWX {
namespace StaticBitmap {

APP_PROTECT(wxStaticBitmap)

/*
 * call-seq:
 *   StaticBitmap.new(parent, name, [options])
 *   StaticBitmap.new(parent, [options])
 *
 * creates a new StaticBitmap widget.
 * ===Arguments
 * * parent of this window or nil
 * * name is a String describing a resource in a loaded xrc
 *
 * *options: Hash with possible options to set:
 *   * bitmap WX::Bitmap
 *
*/
DLL_LOCAL VALUE _initialize(int argc,VALUE *argv,VALUE self)
{
    VALUE parent,name,hash;

    rb_scan_args(argc, argv, "11:",&parent,&name,&hash);
    if(!_created && !rb_obj_is_kind_of(name,rb_cString))
    {
        wxWindowID id(wxID_ANY);
        wxBitmap bitmap(wxNullBitmap);
        if(rb_obj_is_kind_of(hash,rb_cHash))
        {
            set_hash_option(hash,"id",id,unwrapID);
            set_hash_option(hash,"bitmap",bitmap);
        }

        if(nil_check(parent)) {
            _self->Create(unwrap<wxWindow*>(parent),id,bitmap);
        }
    }
    
    rb_call_super(argc,argv);
    return self;
}

}
}
#endif
DLL_LOCAL void Init_WXStaticBitmap(VALUE rb_mWX)
{
#if 0
    rb_mWX = rb_define_module("WX");
    rb_cWXWindow = rb_define_class_under(rb_mWX,"Window",rb_cObject);
    rb_cWXControl = rb_define_class_under(rb_mWX,"Control",rb_cWXWindow);

    rb_cWXStaticBitmapBase = rb_define_class_under(rb_mWX,"StaticBitmapBase",rb_cWXControl);
#endif
#if wxUSE_STATBMP
    using namespace RubyWX::StaticBitmap;
    rb_cWXStaticBitmap = rb_define_class_under(rb_mWX,"StaticBitmap",rb_cWXStaticBitmapBase);
    rb_define_alloc_func(rb_cWXStaticBitmap,_alloc);

    rb_define_method(rb_cWXStaticBitmap,"initialize",RUBY_METHOD_FUNC(_initialize),-1);

    registerInfo<wxStaticBitmap>(rb_cWXStaticBitmap);
#endif

}