ruby-ogre 0.0.2-x86-linux → 0.0.3-x86-linux
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +80 -5
- data/Rakefile +26 -19
- data/bindings/ogre/interface/Rakefile +22 -0
- data/bindings/ogre/interface/ogre.i +3 -1
- data/bindings/ogre/interface/ogre_wrap.cpp +99671 -17485
- data/bindings/ogre/interface/ogre_wrap.o +0 -0
- data/bindings/ogrebites/interface/Rakefile +22 -0
- data/bindings/ogrebites/interface/ogrebites.i +1 -1
- data/bindings/ogrebites/interface/ogrebites_wrap.cpp +728 -728
- data/bindings/ogrebites/interface/ogrebites_wrap.h +2 -2
- data/bindings/ogrebites/interface/ogrebites_wrap.o +0 -0
- data/bindings/ois/interface/Rakefile +22 -0
- data/bindings/ois/interface/ois.i +1 -1
- data/bindings/ois/interface/ois_wrap.cpp +553 -553
- data/bindings/ois/interface/ois_wrap.h +2 -2
- data/bindings/ois/interface/ois_wrap.o +0 -0
- data/bindings/procedural/interface/Rakefile +22 -0
- data/bindings/procedural/interface/procedural.i +1 -1
- data/bindings/procedural/interface/procedural_wrap.cpp +1247 -1247
- data/bindings/procedural/interface/procedural_wrap.o +0 -0
- data/lib/{Ogre.so → ogre.so} +0 -0
- data/lib/ogre_config.rb +37 -0
- data/lib/ogrebites.so +0 -0
- data/lib/{OIS.so → ois.so} +0 -0
- data/lib/{Procedural.so → procedural.so} +0 -0
- data/lib/{Version.rb → version.rb} +1 -1
- data/sample/charactor/camera_mover.rb +184 -0
- data/sample/{Charactor → charactor}/plugins.cfg +0 -0
- data/sample/{Charactor → charactor}/resources.cfg +0 -0
- data/sample/{Charactor → charactor}/sinbad +1 -1
- data/sample/charactor/sinbad.rb +246 -0
- data/sample/{Charactor → charactor}/sinbad.win +1 -1
- data/sample/{Charactor/SinbadCharacter.rb → charactor/sinbad_character.rb} +125 -125
- data/sample/charactor/ui_listener.rb +65 -0
- metadata +22 -21
- data/bindings/ogre/interface/Makefile +0 -19
- data/bindings/ogrebites/interface/Makefile +0 -19
- data/bindings/ois/interface/Makefile +0 -19
- data/bindings/procedural/interface/Makefile +0 -19
- data/lib/OgreBites.so +0 -0
- data/lib/OgreConfig.rb +0 -37
- data/sample/Charactor/CameraMover.rb +0 -184
- data/sample/Charactor/Sinbad.rb +0 -246
- data/sample/Charactor/UiListener.rb +0 -65
Binary file
|
@@ -0,0 +1,22 @@
|
|
1
|
+
SWIG = 'swig'
|
2
|
+
|
3
|
+
DEPS_DIR = "../../../deps/"
|
4
|
+
load "../../../deps/env.rb"
|
5
|
+
|
6
|
+
|
7
|
+
SWIGFLAGS = "-ruby -c++ #{OGRE_INC} #{OIS_INC} -autorename"
|
8
|
+
|
9
|
+
TARGET = 'ogrebites_wrap.cpp'
|
10
|
+
|
11
|
+
#puts SWIGFLAGS
|
12
|
+
|
13
|
+
task :default => "#{TARGET}"
|
14
|
+
|
15
|
+
file "#{TARGET}" => "ogrebites.i" do |t|
|
16
|
+
sh "#{SWIG} #{SWIGFLAGS} -o #{t.name} #{t.prerequisites[0]}"
|
17
|
+
end
|
18
|
+
|
19
|
+
task :clean do
|
20
|
+
sh "rm -f #{TARGET}"
|
21
|
+
end
|
22
|
+
|
@@ -2579,10 +2579,10 @@ static swig_module_info swig_module = {swig_types, 374, 0, 0, 0, 0};
|
|
2579
2579
|
|
2580
2580
|
/* -------- TYPES TABLE (END) -------- */
|
2581
2581
|
|
2582
|
-
#define SWIG_init
|
2583
|
-
#define SWIG_name "
|
2582
|
+
#define SWIG_init Init_ogrebites
|
2583
|
+
#define SWIG_name "Ogrebites"
|
2584
2584
|
|
2585
|
-
static VALUE
|
2585
|
+
static VALUE mOgrebites;
|
2586
2586
|
|
2587
2587
|
#define SWIG_RUBY_THREAD_BEGIN_BLOCK
|
2588
2588
|
#define SWIG_RUBY_THREAD_END_BLOCK
|
@@ -3593,7 +3593,7 @@ void SwigDirector_SdkTrayListener::buttonHit(OgreBites::Button *button) {
|
|
3593
3593
|
VALUE result;
|
3594
3594
|
|
3595
3595
|
obj0 = SWIG_NewPointerObj(SWIG_as_voidptr(button), SWIGTYPE_p_OgreBites__Button, 0 );
|
3596
|
-
result = rb_funcall(swig_get_self(), rb_intern("
|
3596
|
+
result = rb_funcall(swig_get_self(), rb_intern("button_hit"), 1,obj0);
|
3597
3597
|
}
|
3598
3598
|
|
3599
3599
|
|
@@ -3602,7 +3602,7 @@ void SwigDirector_SdkTrayListener::itemSelected(OgreBites::SelectMenu *menu) {
|
|
3602
3602
|
VALUE result;
|
3603
3603
|
|
3604
3604
|
obj0 = SWIG_NewPointerObj(SWIG_as_voidptr(menu), SWIGTYPE_p_OgreBites__SelectMenu, 0 );
|
3605
|
-
result = rb_funcall(swig_get_self(), rb_intern("
|
3605
|
+
result = rb_funcall(swig_get_self(), rb_intern("item_selected"), 1,obj0);
|
3606
3606
|
}
|
3607
3607
|
|
3608
3608
|
|
@@ -3611,7 +3611,7 @@ void SwigDirector_SdkTrayListener::labelHit(OgreBites::Label *label) {
|
|
3611
3611
|
VALUE result;
|
3612
3612
|
|
3613
3613
|
obj0 = SWIG_NewPointerObj(SWIG_as_voidptr(label), SWIGTYPE_p_OgreBites__Label, 0 );
|
3614
|
-
result = rb_funcall(swig_get_self(), rb_intern("
|
3614
|
+
result = rb_funcall(swig_get_self(), rb_intern("label_hit"), 1,obj0);
|
3615
3615
|
}
|
3616
3616
|
|
3617
3617
|
|
@@ -3620,7 +3620,7 @@ void SwigDirector_SdkTrayListener::sliderMoved(OgreBites::Slider *slider) {
|
|
3620
3620
|
VALUE result;
|
3621
3621
|
|
3622
3622
|
obj0 = SWIG_NewPointerObj(SWIG_as_voidptr(slider), SWIGTYPE_p_OgreBites__Slider, 0 );
|
3623
|
-
result = rb_funcall(swig_get_self(), rb_intern("
|
3623
|
+
result = rb_funcall(swig_get_self(), rb_intern("slider_moved"), 1,obj0);
|
3624
3624
|
}
|
3625
3625
|
|
3626
3626
|
|
@@ -3629,7 +3629,7 @@ void SwigDirector_SdkTrayListener::checkBoxToggled(OgreBites::CheckBox *box) {
|
|
3629
3629
|
VALUE result;
|
3630
3630
|
|
3631
3631
|
obj0 = SWIG_NewPointerObj(SWIG_as_voidptr(box), SWIGTYPE_p_OgreBites__CheckBox, 0 );
|
3632
|
-
result = rb_funcall(swig_get_self(), rb_intern("
|
3632
|
+
result = rb_funcall(swig_get_self(), rb_intern("check_box_toggled"), 1,obj0);
|
3633
3633
|
}
|
3634
3634
|
|
3635
3635
|
|
@@ -3638,7 +3638,7 @@ void SwigDirector_SdkTrayListener::okDialogClosed(Ogre::DisplayString const &mes
|
|
3638
3638
|
VALUE result;
|
3639
3639
|
|
3640
3640
|
obj0 = SWIG_NewPointerObj(SWIG_as_voidptr(&message), SWIGTYPE_p_Ogre__UTFString, 0 );
|
3641
|
-
result = rb_funcall(swig_get_self(), rb_intern("
|
3641
|
+
result = rb_funcall(swig_get_self(), rb_intern("ok_dialog_closed"), 1,obj0);
|
3642
3642
|
}
|
3643
3643
|
|
3644
3644
|
|
@@ -3649,7 +3649,7 @@ void SwigDirector_SdkTrayListener::yesNoDialogClosed(Ogre::DisplayString const &
|
|
3649
3649
|
|
3650
3650
|
obj0 = SWIG_NewPointerObj(SWIG_as_voidptr(&question), SWIGTYPE_p_Ogre__UTFString, 0 );
|
3651
3651
|
obj1 = SWIG_From_bool(static_cast< bool >(yesHit));
|
3652
|
-
result = rb_funcall(swig_get_self(), rb_intern("
|
3652
|
+
result = rb_funcall(swig_get_self(), rb_intern("yes_no_dialog_closed"), 2,obj0,obj1);
|
3653
3653
|
}
|
3654
3654
|
|
3655
3655
|
|
@@ -3674,7 +3674,7 @@ _wrap_Intp_allocate(VALUE self) {
|
|
3674
3674
|
|
3675
3675
|
SWIGINTERN VALUE
|
3676
3676
|
_wrap_new_Intp(int argc, VALUE *argv, VALUE self) {
|
3677
|
-
const char *classname SWIGUNUSED = "
|
3677
|
+
const char *classname SWIGUNUSED = "Ogrebites::Intp";
|
3678
3678
|
Intp *result = 0 ;
|
3679
3679
|
|
3680
3680
|
if ((argc < 0) || (argc > 0)) {
|
@@ -3797,11 +3797,11 @@ fail:
|
|
3797
3797
|
}
|
3798
3798
|
|
3799
3799
|
|
3800
|
-
swig_class
|
3800
|
+
swig_class SwigClassGCVALUE;
|
3801
3801
|
|
3802
3802
|
|
3803
3803
|
/*
|
3804
|
-
Document-method:
|
3804
|
+
Document-method: Ogrebites::GCVALUE.inspect
|
3805
3805
|
|
3806
3806
|
call-seq:
|
3807
3807
|
inspect -> VALUE
|
@@ -3809,7 +3809,7 @@ swig_class SwigClassGC_VALUE;
|
|
3809
3809
|
Inspect class and its contents.
|
3810
3810
|
*/
|
3811
3811
|
SWIGINTERN VALUE
|
3812
|
-
|
3812
|
+
_wrap_GCVALUE_inspect(int argc, VALUE *argv, VALUE self) {
|
3813
3813
|
swig::GC_VALUE *arg1 = (swig::GC_VALUE *) 0 ;
|
3814
3814
|
swig::GC_VALUE r1 ;
|
3815
3815
|
VALUE result;
|
@@ -3829,7 +3829,7 @@ fail:
|
|
3829
3829
|
|
3830
3830
|
|
3831
3831
|
/*
|
3832
|
-
Document-method:
|
3832
|
+
Document-method: Ogrebites::GCVALUE.to_s
|
3833
3833
|
|
3834
3834
|
call-seq:
|
3835
3835
|
to_s -> VALUE
|
@@ -3837,7 +3837,7 @@ fail:
|
|
3837
3837
|
Convert class to a String representation.
|
3838
3838
|
*/
|
3839
3839
|
SWIGINTERN VALUE
|
3840
|
-
|
3840
|
+
_wrap_GCVALUE_to_s(int argc, VALUE *argv, VALUE self) {
|
3841
3841
|
swig::GC_VALUE *arg1 = (swig::GC_VALUE *) 0 ;
|
3842
3842
|
swig::GC_VALUE r1 ;
|
3843
3843
|
VALUE result;
|
@@ -3898,7 +3898,7 @@ fail:
|
|
3898
3898
|
|
3899
3899
|
|
3900
3900
|
/*
|
3901
|
-
Document-method:
|
3901
|
+
Document-method: Ogrebites::ConstIterator.dup
|
3902
3902
|
|
3903
3903
|
call-seq:
|
3904
3904
|
dup -> ConstIterator
|
@@ -3931,7 +3931,7 @@ fail:
|
|
3931
3931
|
|
3932
3932
|
|
3933
3933
|
/*
|
3934
|
-
Document-method:
|
3934
|
+
Document-method: Ogrebites::ConstIterator.inspect
|
3935
3935
|
|
3936
3936
|
call-seq:
|
3937
3937
|
inspect -> VALUE
|
@@ -3964,7 +3964,7 @@ fail:
|
|
3964
3964
|
|
3965
3965
|
|
3966
3966
|
/*
|
3967
|
-
Document-method:
|
3967
|
+
Document-method: Ogrebites::ConstIterator.to_s
|
3968
3968
|
|
3969
3969
|
call-seq:
|
3970
3970
|
to_s -> VALUE
|
@@ -4219,7 +4219,7 @@ fail:
|
|
4219
4219
|
|
4220
4220
|
|
4221
4221
|
/*
|
4222
|
-
Document-method:
|
4222
|
+
Document-method: Ogrebites::ConstIterator.==
|
4223
4223
|
|
4224
4224
|
call-seq:
|
4225
4225
|
==(x) -> bool
|
@@ -4263,7 +4263,7 @@ fail:
|
|
4263
4263
|
|
4264
4264
|
|
4265
4265
|
/*
|
4266
|
-
Document-method:
|
4266
|
+
Document-method: Ogrebites::ConstIterator.+
|
4267
4267
|
|
4268
4268
|
call-seq:
|
4269
4269
|
+(n) -> ConstIterator
|
@@ -4314,7 +4314,7 @@ fail:
|
|
4314
4314
|
|
4315
4315
|
|
4316
4316
|
/*
|
4317
|
-
Document-method:
|
4317
|
+
Document-method: Ogrebites::ConstIterator.-
|
4318
4318
|
|
4319
4319
|
call-seq:
|
4320
4320
|
-(n) -> ConstIterator
|
@@ -4481,7 +4481,7 @@ fail:
|
|
4481
4481
|
|
4482
4482
|
|
4483
4483
|
/*
|
4484
|
-
Document-method:
|
4484
|
+
Document-method: Ogrebites::Iterator.dup
|
4485
4485
|
|
4486
4486
|
call-seq:
|
4487
4487
|
dup -> Iterator
|
@@ -4736,7 +4736,7 @@ fail:
|
|
4736
4736
|
|
4737
4737
|
|
4738
4738
|
/*
|
4739
|
-
Document-method:
|
4739
|
+
Document-method: Ogrebites::Iterator.inspect
|
4740
4740
|
|
4741
4741
|
call-seq:
|
4742
4742
|
inspect -> VALUE
|
@@ -4769,7 +4769,7 @@ fail:
|
|
4769
4769
|
|
4770
4770
|
|
4771
4771
|
/*
|
4772
|
-
Document-method:
|
4772
|
+
Document-method: Ogrebites::Iterator.to_s
|
4773
4773
|
|
4774
4774
|
call-seq:
|
4775
4775
|
to_s -> VALUE
|
@@ -4802,7 +4802,7 @@ fail:
|
|
4802
4802
|
|
4803
4803
|
|
4804
4804
|
/*
|
4805
|
-
Document-method:
|
4805
|
+
Document-method: Ogrebites::Iterator.==
|
4806
4806
|
|
4807
4807
|
call-seq:
|
4808
4808
|
==(x) -> bool
|
@@ -4846,7 +4846,7 @@ fail:
|
|
4846
4846
|
|
4847
4847
|
|
4848
4848
|
/*
|
4849
|
-
Document-method:
|
4849
|
+
Document-method: Ogrebites::Iterator.+
|
4850
4850
|
|
4851
4851
|
call-seq:
|
4852
4852
|
+(n) -> Iterator
|
@@ -4897,7 +4897,7 @@ fail:
|
|
4897
4897
|
|
4898
4898
|
|
4899
4899
|
/*
|
4900
|
-
Document-method:
|
4900
|
+
Document-method: Ogrebites::Iterator.-
|
4901
4901
|
|
4902
4902
|
call-seq:
|
4903
4903
|
-(n) -> Iterator
|
@@ -5045,7 +5045,7 @@ free_OgreBites_SdkTrayListener(OgreBites::SdkTrayListener *arg1) {
|
|
5045
5045
|
}
|
5046
5046
|
|
5047
5047
|
SWIGINTERN VALUE
|
5048
|
-
|
5048
|
+
_wrap_SdkTrayListener_button_hit(int argc, VALUE *argv, VALUE self) {
|
5049
5049
|
OgreBites::SdkTrayListener *arg1 = (OgreBites::SdkTrayListener *) 0 ;
|
5050
5050
|
OgreBites::Button *arg2 = (OgreBites::Button *) 0 ;
|
5051
5051
|
void *argp1 = 0 ;
|
@@ -5087,7 +5087,7 @@ fail:
|
|
5087
5087
|
|
5088
5088
|
|
5089
5089
|
SWIGINTERN VALUE
|
5090
|
-
|
5090
|
+
_wrap_SdkTrayListener_item_selected(int argc, VALUE *argv, VALUE self) {
|
5091
5091
|
OgreBites::SdkTrayListener *arg1 = (OgreBites::SdkTrayListener *) 0 ;
|
5092
5092
|
OgreBites::SelectMenu *arg2 = (OgreBites::SelectMenu *) 0 ;
|
5093
5093
|
void *argp1 = 0 ;
|
@@ -5129,7 +5129,7 @@ fail:
|
|
5129
5129
|
|
5130
5130
|
|
5131
5131
|
SWIGINTERN VALUE
|
5132
|
-
|
5132
|
+
_wrap_SdkTrayListener_label_hit(int argc, VALUE *argv, VALUE self) {
|
5133
5133
|
OgreBites::SdkTrayListener *arg1 = (OgreBites::SdkTrayListener *) 0 ;
|
5134
5134
|
OgreBites::Label *arg2 = (OgreBites::Label *) 0 ;
|
5135
5135
|
void *argp1 = 0 ;
|
@@ -5171,7 +5171,7 @@ fail:
|
|
5171
5171
|
|
5172
5172
|
|
5173
5173
|
SWIGINTERN VALUE
|
5174
|
-
|
5174
|
+
_wrap_SdkTrayListener_slider_moved(int argc, VALUE *argv, VALUE self) {
|
5175
5175
|
OgreBites::SdkTrayListener *arg1 = (OgreBites::SdkTrayListener *) 0 ;
|
5176
5176
|
OgreBites::Slider *arg2 = (OgreBites::Slider *) 0 ;
|
5177
5177
|
void *argp1 = 0 ;
|
@@ -5213,7 +5213,7 @@ fail:
|
|
5213
5213
|
|
5214
5214
|
|
5215
5215
|
SWIGINTERN VALUE
|
5216
|
-
|
5216
|
+
_wrap_SdkTrayListener_check_box_toggled(int argc, VALUE *argv, VALUE self) {
|
5217
5217
|
OgreBites::SdkTrayListener *arg1 = (OgreBites::SdkTrayListener *) 0 ;
|
5218
5218
|
OgreBites::CheckBox *arg2 = (OgreBites::CheckBox *) 0 ;
|
5219
5219
|
void *argp1 = 0 ;
|
@@ -5255,7 +5255,7 @@ fail:
|
|
5255
5255
|
|
5256
5256
|
|
5257
5257
|
SWIGINTERN VALUE
|
5258
|
-
|
5258
|
+
_wrap_SdkTrayListener_ok_dialog_closed(int argc, VALUE *argv, VALUE self) {
|
5259
5259
|
OgreBites::SdkTrayListener *arg1 = (OgreBites::SdkTrayListener *) 0 ;
|
5260
5260
|
Ogre::DisplayString *arg2 = 0 ;
|
5261
5261
|
void *argp1 = 0 ;
|
@@ -5300,7 +5300,7 @@ fail:
|
|
5300
5300
|
|
5301
5301
|
|
5302
5302
|
SWIGINTERN VALUE
|
5303
|
-
|
5303
|
+
_wrap_SdkTrayListener_yes_no_dialog_closed(int argc, VALUE *argv, VALUE self) {
|
5304
5304
|
OgreBites::SdkTrayListener *arg1 = (OgreBites::SdkTrayListener *) 0 ;
|
5305
5305
|
Ogre::DisplayString *arg2 = 0 ;
|
5306
5306
|
bool arg3 ;
|
@@ -5372,7 +5372,7 @@ _wrap_SdkTrayListener_allocate(VALUE self) {
|
|
5372
5372
|
SWIGINTERN VALUE
|
5373
5373
|
_wrap_new_SdkTrayListener(int argc, VALUE *argv, VALUE self) {
|
5374
5374
|
VALUE arg1 = (VALUE) 0 ;
|
5375
|
-
const char *classname SWIGUNUSED = "
|
5375
|
+
const char *classname SWIGUNUSED = "Ogrebites::SdkTrayListener";
|
5376
5376
|
OgreBites::SdkTrayListener *result = 0 ;
|
5377
5377
|
|
5378
5378
|
if ((argc < 0) || (argc > 0)) {
|
@@ -5439,7 +5439,7 @@ _wrap_Widget_allocate(VALUE self) {
|
|
5439
5439
|
|
5440
5440
|
SWIGINTERN VALUE
|
5441
5441
|
_wrap_new_Widget(int argc, VALUE *argv, VALUE self) {
|
5442
|
-
const char *classname SWIGUNUSED = "
|
5442
|
+
const char *classname SWIGUNUSED = "Ogrebites::Widget";
|
5443
5443
|
OgreBites::Widget *result = 0 ;
|
5444
5444
|
|
5445
5445
|
if ((argc < 0) || (argc > 0)) {
|
@@ -5480,7 +5480,7 @@ fail:
|
|
5480
5480
|
|
5481
5481
|
|
5482
5482
|
SWIGINTERN VALUE
|
5483
|
-
|
5483
|
+
_wrap_Widget_nuke_overlay_element(int argc, VALUE *argv, VALUE self) {
|
5484
5484
|
Ogre::OverlayElement *arg1 = (Ogre::OverlayElement *) 0 ;
|
5485
5485
|
void *argp1 = 0 ;
|
5486
5486
|
int res1 = 0 ;
|
@@ -5501,7 +5501,7 @@ fail:
|
|
5501
5501
|
|
5502
5502
|
|
5503
5503
|
SWIGINTERN VALUE
|
5504
|
-
|
5504
|
+
_wrap_Widget_is_cursor_over__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
5505
5505
|
Ogre::OverlayElement *arg1 = (Ogre::OverlayElement *) 0 ;
|
5506
5506
|
Ogre::Vector2 *arg2 = 0 ;
|
5507
5507
|
Ogre::Real arg3 ;
|
@@ -5544,7 +5544,7 @@ fail:
|
|
5544
5544
|
|
5545
5545
|
|
5546
5546
|
SWIGINTERN VALUE
|
5547
|
-
|
5547
|
+
_wrap_Widget_is_cursor_over__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
5548
5548
|
Ogre::OverlayElement *arg1 = (Ogre::OverlayElement *) 0 ;
|
5549
5549
|
Ogre::Vector2 *arg2 = 0 ;
|
5550
5550
|
void *argp1 = 0 ;
|
@@ -5578,7 +5578,7 @@ fail:
|
|
5578
5578
|
}
|
5579
5579
|
|
5580
5580
|
|
5581
|
-
SWIGINTERN VALUE
|
5581
|
+
SWIGINTERN VALUE _wrap_Widget_is_cursor_over(int nargs, VALUE *args, VALUE self) {
|
5582
5582
|
int argc;
|
5583
5583
|
VALUE argv[3];
|
5584
5584
|
int ii;
|
@@ -5598,7 +5598,7 @@ SWIGINTERN VALUE _wrap_Widget_isCursorOver(int nargs, VALUE *args, VALUE self) {
|
|
5598
5598
|
int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_Ogre__Vector2, 0);
|
5599
5599
|
_v = SWIG_CheckState(res);
|
5600
5600
|
if (_v) {
|
5601
|
-
return
|
5601
|
+
return _wrap_Widget_is_cursor_over__SWIG_1(nargs, args, self);
|
5602
5602
|
}
|
5603
5603
|
}
|
5604
5604
|
}
|
@@ -5617,23 +5617,23 @@ SWIGINTERN VALUE _wrap_Widget_isCursorOver(int nargs, VALUE *args, VALUE self) {
|
|
5617
5617
|
_v = SWIG_CheckState(res);
|
5618
5618
|
}
|
5619
5619
|
if (_v) {
|
5620
|
-
return
|
5620
|
+
return _wrap_Widget_is_cursor_over__SWIG_0(nargs, args, self);
|
5621
5621
|
}
|
5622
5622
|
}
|
5623
5623
|
}
|
5624
5624
|
}
|
5625
5625
|
|
5626
5626
|
fail:
|
5627
|
-
Ruby_Format_OverloadedError( argc, 3, "Widget.
|
5628
|
-
" bool Widget.
|
5629
|
-
" bool Widget.
|
5627
|
+
Ruby_Format_OverloadedError( argc, 3, "Widget.is_cursor_over",
|
5628
|
+
" bool Widget.is_cursor_over(Ogre::OverlayElement *element, Ogre::Vector2 const &cursorPos, Ogre::Real voidBorder)\n"
|
5629
|
+
" bool Widget.is_cursor_over(Ogre::OverlayElement *element, Ogre::Vector2 const &cursorPos)\n");
|
5630
5630
|
|
5631
5631
|
return Qnil;
|
5632
5632
|
}
|
5633
5633
|
|
5634
5634
|
|
5635
5635
|
SWIGINTERN VALUE
|
5636
|
-
|
5636
|
+
_wrap_Widget_cursor_offset(int argc, VALUE *argv, VALUE self) {
|
5637
5637
|
Ogre::OverlayElement *arg1 = (Ogre::OverlayElement *) 0 ;
|
5638
5638
|
Ogre::Vector2 *arg2 = 0 ;
|
5639
5639
|
void *argp1 = 0 ;
|
@@ -5668,7 +5668,7 @@ fail:
|
|
5668
5668
|
|
5669
5669
|
|
5670
5670
|
SWIGINTERN VALUE
|
5671
|
-
|
5671
|
+
_wrap_Widget_get_caption_width(int argc, VALUE *argv, VALUE self) {
|
5672
5672
|
Ogre::DisplayString *arg1 = 0 ;
|
5673
5673
|
Ogre::TextAreaOverlayElement *arg2 = (Ogre::TextAreaOverlayElement *) 0 ;
|
5674
5674
|
void *argp1 ;
|
@@ -5703,7 +5703,7 @@ fail:
|
|
5703
5703
|
|
5704
5704
|
|
5705
5705
|
SWIGINTERN VALUE
|
5706
|
-
|
5706
|
+
_wrap_Widget_fit_caption_to_area(int argc, VALUE *argv, VALUE self) {
|
5707
5707
|
Ogre::DisplayString *arg1 = 0 ;
|
5708
5708
|
Ogre::TextAreaOverlayElement *arg2 = (Ogre::TextAreaOverlayElement *) 0 ;
|
5709
5709
|
Ogre::Real arg3 ;
|
@@ -5743,7 +5743,7 @@ fail:
|
|
5743
5743
|
|
5744
5744
|
|
5745
5745
|
SWIGINTERN VALUE
|
5746
|
-
|
5746
|
+
_wrap_Widget_get_overlay_element(int argc, VALUE *argv, VALUE self) {
|
5747
5747
|
OgreBites::Widget *arg1 = (OgreBites::Widget *) 0 ;
|
5748
5748
|
void *argp1 = 0 ;
|
5749
5749
|
int res1 = 0 ;
|
@@ -5767,7 +5767,7 @@ fail:
|
|
5767
5767
|
|
5768
5768
|
|
5769
5769
|
SWIGINTERN VALUE
|
5770
|
-
|
5770
|
+
_wrap_Widget_get_name(int argc, VALUE *argv, VALUE self) {
|
5771
5771
|
OgreBites::Widget *arg1 = (OgreBites::Widget *) 0 ;
|
5772
5772
|
void *argp1 = 0 ;
|
5773
5773
|
int res1 = 0 ;
|
@@ -5791,7 +5791,7 @@ fail:
|
|
5791
5791
|
|
5792
5792
|
|
5793
5793
|
SWIGINTERN VALUE
|
5794
|
-
|
5794
|
+
_wrap_Widget_get_tray_location(int argc, VALUE *argv, VALUE self) {
|
5795
5795
|
OgreBites::Widget *arg1 = (OgreBites::Widget *) 0 ;
|
5796
5796
|
void *argp1 = 0 ;
|
5797
5797
|
int res1 = 0 ;
|
@@ -5857,7 +5857,7 @@ fail:
|
|
5857
5857
|
|
5858
5858
|
|
5859
5859
|
SWIGINTERN VALUE
|
5860
|
-
|
5860
|
+
_wrap_Widget_is_visible(int argc, VALUE *argv, VALUE self) {
|
5861
5861
|
OgreBites::Widget *arg1 = (OgreBites::Widget *) 0 ;
|
5862
5862
|
void *argp1 = 0 ;
|
5863
5863
|
int res1 = 0 ;
|
@@ -5881,7 +5881,7 @@ fail:
|
|
5881
5881
|
|
5882
5882
|
|
5883
5883
|
SWIGINTERN VALUE
|
5884
|
-
|
5884
|
+
_wrap_Widget__cursor_pressed(int argc, VALUE *argv, VALUE self) {
|
5885
5885
|
OgreBites::Widget *arg1 = (OgreBites::Widget *) 0 ;
|
5886
5886
|
Ogre::Vector2 *arg2 = 0 ;
|
5887
5887
|
void *argp1 = 0 ;
|
@@ -5913,7 +5913,7 @@ fail:
|
|
5913
5913
|
|
5914
5914
|
|
5915
5915
|
SWIGINTERN VALUE
|
5916
|
-
|
5916
|
+
_wrap_Widget__cursor_released(int argc, VALUE *argv, VALUE self) {
|
5917
5917
|
OgreBites::Widget *arg1 = (OgreBites::Widget *) 0 ;
|
5918
5918
|
Ogre::Vector2 *arg2 = 0 ;
|
5919
5919
|
void *argp1 = 0 ;
|
@@ -5945,7 +5945,7 @@ fail:
|
|
5945
5945
|
|
5946
5946
|
|
5947
5947
|
SWIGINTERN VALUE
|
5948
|
-
|
5948
|
+
_wrap_Widget__cursor_moved(int argc, VALUE *argv, VALUE self) {
|
5949
5949
|
OgreBites::Widget *arg1 = (OgreBites::Widget *) 0 ;
|
5950
5950
|
Ogre::Vector2 *arg2 = 0 ;
|
5951
5951
|
void *argp1 = 0 ;
|
@@ -5977,7 +5977,7 @@ fail:
|
|
5977
5977
|
|
5978
5978
|
|
5979
5979
|
SWIGINTERN VALUE
|
5980
|
-
|
5980
|
+
_wrap_Widget__focus_lost(int argc, VALUE *argv, VALUE self) {
|
5981
5981
|
OgreBites::Widget *arg1 = (OgreBites::Widget *) 0 ;
|
5982
5982
|
void *argp1 = 0 ;
|
5983
5983
|
int res1 = 0 ;
|
@@ -5998,7 +5998,7 @@ fail:
|
|
5998
5998
|
|
5999
5999
|
|
6000
6000
|
SWIGINTERN VALUE
|
6001
|
-
|
6001
|
+
_wrap_Widget__assign_to_tray(int argc, VALUE *argv, VALUE self) {
|
6002
6002
|
OgreBites::Widget *arg1 = (OgreBites::Widget *) 0 ;
|
6003
6003
|
OgreBites::TrayLocation arg2 ;
|
6004
6004
|
void *argp1 = 0 ;
|
@@ -6027,7 +6027,7 @@ fail:
|
|
6027
6027
|
|
6028
6028
|
|
6029
6029
|
SWIGINTERN VALUE
|
6030
|
-
|
6030
|
+
_wrap_Widget__assign_listener(int argc, VALUE *argv, VALUE self) {
|
6031
6031
|
OgreBites::Widget *arg1 = (OgreBites::Widget *) 0 ;
|
6032
6032
|
OgreBites::SdkTrayListener *arg2 = (OgreBites::SdkTrayListener *) 0 ;
|
6033
6033
|
void *argp1 = 0 ;
|
@@ -6084,7 +6084,7 @@ _wrap_new_Button(int argc, VALUE *argv, VALUE self) {
|
|
6084
6084
|
int res2 = 0 ;
|
6085
6085
|
float val3 ;
|
6086
6086
|
int ecode3 = 0 ;
|
6087
|
-
const char *classname SWIGUNUSED = "
|
6087
|
+
const char *classname SWIGUNUSED = "Ogrebites::Button";
|
6088
6088
|
OgreBites::Button *result = 0 ;
|
6089
6089
|
|
6090
6090
|
if ((argc < 3) || (argc > 3)) {
|
@@ -6130,7 +6130,7 @@ free_OgreBites_Button(OgreBites::Button *arg1) {
|
|
6130
6130
|
}
|
6131
6131
|
|
6132
6132
|
SWIGINTERN VALUE
|
6133
|
-
|
6133
|
+
_wrap_Button_get_caption(int argc, VALUE *argv, VALUE self) {
|
6134
6134
|
OgreBites::Button *arg1 = (OgreBites::Button *) 0 ;
|
6135
6135
|
void *argp1 = 0 ;
|
6136
6136
|
int res1 = 0 ;
|
@@ -6154,7 +6154,7 @@ fail:
|
|
6154
6154
|
|
6155
6155
|
|
6156
6156
|
SWIGINTERN VALUE
|
6157
|
-
|
6157
|
+
_wrap_Button_set_caption(int argc, VALUE *argv, VALUE self) {
|
6158
6158
|
OgreBites::Button *arg1 = (OgreBites::Button *) 0 ;
|
6159
6159
|
Ogre::DisplayString *arg2 = 0 ;
|
6160
6160
|
void *argp1 = 0 ;
|
@@ -6186,7 +6186,7 @@ fail:
|
|
6186
6186
|
|
6187
6187
|
|
6188
6188
|
SWIGINTERN VALUE
|
6189
|
-
|
6189
|
+
_wrap_Button_get_state(int argc, VALUE *argv, VALUE self) {
|
6190
6190
|
OgreBites::Button *arg1 = (OgreBites::Button *) 0 ;
|
6191
6191
|
void *argp1 = 0 ;
|
6192
6192
|
int res1 = 0 ;
|
@@ -6210,7 +6210,7 @@ fail:
|
|
6210
6210
|
|
6211
6211
|
|
6212
6212
|
SWIGINTERN VALUE
|
6213
|
-
|
6213
|
+
_wrap_Button__cursor_pressed(int argc, VALUE *argv, VALUE self) {
|
6214
6214
|
OgreBites::Button *arg1 = (OgreBites::Button *) 0 ;
|
6215
6215
|
Ogre::Vector2 *arg2 = 0 ;
|
6216
6216
|
void *argp1 = 0 ;
|
@@ -6242,7 +6242,7 @@ fail:
|
|
6242
6242
|
|
6243
6243
|
|
6244
6244
|
SWIGINTERN VALUE
|
6245
|
-
|
6245
|
+
_wrap_Button__cursor_released(int argc, VALUE *argv, VALUE self) {
|
6246
6246
|
OgreBites::Button *arg1 = (OgreBites::Button *) 0 ;
|
6247
6247
|
Ogre::Vector2 *arg2 = 0 ;
|
6248
6248
|
void *argp1 = 0 ;
|
@@ -6274,7 +6274,7 @@ fail:
|
|
6274
6274
|
|
6275
6275
|
|
6276
6276
|
SWIGINTERN VALUE
|
6277
|
-
|
6277
|
+
_wrap_Button__cursor_moved(int argc, VALUE *argv, VALUE self) {
|
6278
6278
|
OgreBites::Button *arg1 = (OgreBites::Button *) 0 ;
|
6279
6279
|
Ogre::Vector2 *arg2 = 0 ;
|
6280
6280
|
void *argp1 = 0 ;
|
@@ -6306,7 +6306,7 @@ fail:
|
|
6306
6306
|
|
6307
6307
|
|
6308
6308
|
SWIGINTERN VALUE
|
6309
|
-
|
6309
|
+
_wrap_Button__focus_lost(int argc, VALUE *argv, VALUE self) {
|
6310
6310
|
OgreBites::Button *arg1 = (OgreBites::Button *) 0 ;
|
6311
6311
|
void *argp1 = 0 ;
|
6312
6312
|
int res1 = 0 ;
|
@@ -6358,7 +6358,7 @@ _wrap_new_TextBox(int argc, VALUE *argv, VALUE self) {
|
|
6358
6358
|
int ecode3 = 0 ;
|
6359
6359
|
float val4 ;
|
6360
6360
|
int ecode4 = 0 ;
|
6361
|
-
const char *classname SWIGUNUSED = "
|
6361
|
+
const char *classname SWIGUNUSED = "Ogrebites::TextBox";
|
6362
6362
|
OgreBites::TextBox *result = 0 ;
|
6363
6363
|
|
6364
6364
|
if ((argc < 4) || (argc > 4)) {
|
@@ -6404,7 +6404,7 @@ fail:
|
|
6404
6404
|
|
6405
6405
|
|
6406
6406
|
SWIGINTERN VALUE
|
6407
|
-
|
6407
|
+
_wrap_TextBox_set_padding(int argc, VALUE *argv, VALUE self) {
|
6408
6408
|
OgreBites::TextBox *arg1 = (OgreBites::TextBox *) 0 ;
|
6409
6409
|
Ogre::Real arg2 ;
|
6410
6410
|
void *argp1 = 0 ;
|
@@ -6433,7 +6433,7 @@ fail:
|
|
6433
6433
|
|
6434
6434
|
|
6435
6435
|
SWIGINTERN VALUE
|
6436
|
-
|
6436
|
+
_wrap_TextBox_get_padding(int argc, VALUE *argv, VALUE self) {
|
6437
6437
|
OgreBites::TextBox *arg1 = (OgreBites::TextBox *) 0 ;
|
6438
6438
|
void *argp1 = 0 ;
|
6439
6439
|
int res1 = 0 ;
|
@@ -6457,7 +6457,7 @@ fail:
|
|
6457
6457
|
|
6458
6458
|
|
6459
6459
|
SWIGINTERN VALUE
|
6460
|
-
|
6460
|
+
_wrap_TextBox_get_caption(int argc, VALUE *argv, VALUE self) {
|
6461
6461
|
OgreBites::TextBox *arg1 = (OgreBites::TextBox *) 0 ;
|
6462
6462
|
void *argp1 = 0 ;
|
6463
6463
|
int res1 = 0 ;
|
@@ -6481,7 +6481,7 @@ fail:
|
|
6481
6481
|
|
6482
6482
|
|
6483
6483
|
SWIGINTERN VALUE
|
6484
|
-
|
6484
|
+
_wrap_TextBox_set_caption(int argc, VALUE *argv, VALUE self) {
|
6485
6485
|
OgreBites::TextBox *arg1 = (OgreBites::TextBox *) 0 ;
|
6486
6486
|
Ogre::DisplayString *arg2 = 0 ;
|
6487
6487
|
void *argp1 = 0 ;
|
@@ -6513,7 +6513,7 @@ fail:
|
|
6513
6513
|
|
6514
6514
|
|
6515
6515
|
SWIGINTERN VALUE
|
6516
|
-
|
6516
|
+
_wrap_TextBox_get_text(int argc, VALUE *argv, VALUE self) {
|
6517
6517
|
OgreBites::TextBox *arg1 = (OgreBites::TextBox *) 0 ;
|
6518
6518
|
void *argp1 = 0 ;
|
6519
6519
|
int res1 = 0 ;
|
@@ -6537,7 +6537,7 @@ fail:
|
|
6537
6537
|
|
6538
6538
|
|
6539
6539
|
SWIGINTERN VALUE
|
6540
|
-
|
6540
|
+
_wrap_TextBox_set_text(int argc, VALUE *argv, VALUE self) {
|
6541
6541
|
OgreBites::TextBox *arg1 = (OgreBites::TextBox *) 0 ;
|
6542
6542
|
Ogre::DisplayString *arg2 = 0 ;
|
6543
6543
|
void *argp1 = 0 ;
|
@@ -6569,7 +6569,7 @@ fail:
|
|
6569
6569
|
|
6570
6570
|
|
6571
6571
|
SWIGINTERN VALUE
|
6572
|
-
|
6572
|
+
_wrap_TextBox_set_text_alignment(int argc, VALUE *argv, VALUE self) {
|
6573
6573
|
OgreBites::TextBox *arg1 = (OgreBites::TextBox *) 0 ;
|
6574
6574
|
Ogre::TextAreaOverlayElement::Alignment arg2 ;
|
6575
6575
|
void *argp1 = 0 ;
|
@@ -6598,7 +6598,7 @@ fail:
|
|
6598
6598
|
|
6599
6599
|
|
6600
6600
|
SWIGINTERN VALUE
|
6601
|
-
|
6601
|
+
_wrap_TextBox_clear_text(int argc, VALUE *argv, VALUE self) {
|
6602
6602
|
OgreBites::TextBox *arg1 = (OgreBites::TextBox *) 0 ;
|
6603
6603
|
void *argp1 = 0 ;
|
6604
6604
|
int res1 = 0 ;
|
@@ -6619,7 +6619,7 @@ fail:
|
|
6619
6619
|
|
6620
6620
|
|
6621
6621
|
SWIGINTERN VALUE
|
6622
|
-
|
6622
|
+
_wrap_TextBox_append_text(int argc, VALUE *argv, VALUE self) {
|
6623
6623
|
OgreBites::TextBox *arg1 = (OgreBites::TextBox *) 0 ;
|
6624
6624
|
Ogre::DisplayString *arg2 = 0 ;
|
6625
6625
|
void *argp1 = 0 ;
|
@@ -6651,7 +6651,7 @@ fail:
|
|
6651
6651
|
|
6652
6652
|
|
6653
6653
|
SWIGINTERN VALUE
|
6654
|
-
|
6654
|
+
_wrap_TextBox_refit_contents(int argc, VALUE *argv, VALUE self) {
|
6655
6655
|
OgreBites::TextBox *arg1 = (OgreBites::TextBox *) 0 ;
|
6656
6656
|
void *argp1 = 0 ;
|
6657
6657
|
int res1 = 0 ;
|
@@ -6672,7 +6672,7 @@ fail:
|
|
6672
6672
|
|
6673
6673
|
|
6674
6674
|
SWIGINTERN VALUE
|
6675
|
-
|
6675
|
+
_wrap_TextBox_set_scroll_percentage(int argc, VALUE *argv, VALUE self) {
|
6676
6676
|
OgreBites::TextBox *arg1 = (OgreBites::TextBox *) 0 ;
|
6677
6677
|
Ogre::Real arg2 ;
|
6678
6678
|
void *argp1 = 0 ;
|
@@ -6701,7 +6701,7 @@ fail:
|
|
6701
6701
|
|
6702
6702
|
|
6703
6703
|
SWIGINTERN VALUE
|
6704
|
-
|
6704
|
+
_wrap_TextBox_get_scroll_percentage(int argc, VALUE *argv, VALUE self) {
|
6705
6705
|
OgreBites::TextBox *arg1 = (OgreBites::TextBox *) 0 ;
|
6706
6706
|
void *argp1 = 0 ;
|
6707
6707
|
int res1 = 0 ;
|
@@ -6725,7 +6725,7 @@ fail:
|
|
6725
6725
|
|
6726
6726
|
|
6727
6727
|
SWIGINTERN VALUE
|
6728
|
-
|
6728
|
+
_wrap_TextBox_get_height_in_lines(int argc, VALUE *argv, VALUE self) {
|
6729
6729
|
OgreBites::TextBox *arg1 = (OgreBites::TextBox *) 0 ;
|
6730
6730
|
void *argp1 = 0 ;
|
6731
6731
|
int res1 = 0 ;
|
@@ -6749,7 +6749,7 @@ fail:
|
|
6749
6749
|
|
6750
6750
|
|
6751
6751
|
SWIGINTERN VALUE
|
6752
|
-
|
6752
|
+
_wrap_TextBox__cursor_pressed(int argc, VALUE *argv, VALUE self) {
|
6753
6753
|
OgreBites::TextBox *arg1 = (OgreBites::TextBox *) 0 ;
|
6754
6754
|
Ogre::Vector2 *arg2 = 0 ;
|
6755
6755
|
void *argp1 = 0 ;
|
@@ -6781,7 +6781,7 @@ fail:
|
|
6781
6781
|
|
6782
6782
|
|
6783
6783
|
SWIGINTERN VALUE
|
6784
|
-
|
6784
|
+
_wrap_TextBox__cursor_released(int argc, VALUE *argv, VALUE self) {
|
6785
6785
|
OgreBites::TextBox *arg1 = (OgreBites::TextBox *) 0 ;
|
6786
6786
|
Ogre::Vector2 *arg2 = 0 ;
|
6787
6787
|
void *argp1 = 0 ;
|
@@ -6813,7 +6813,7 @@ fail:
|
|
6813
6813
|
|
6814
6814
|
|
6815
6815
|
SWIGINTERN VALUE
|
6816
|
-
|
6816
|
+
_wrap_TextBox__cursor_moved(int argc, VALUE *argv, VALUE self) {
|
6817
6817
|
OgreBites::TextBox *arg1 = (OgreBites::TextBox *) 0 ;
|
6818
6818
|
Ogre::Vector2 *arg2 = 0 ;
|
6819
6819
|
void *argp1 = 0 ;
|
@@ -6845,7 +6845,7 @@ fail:
|
|
6845
6845
|
|
6846
6846
|
|
6847
6847
|
SWIGINTERN VALUE
|
6848
|
-
|
6848
|
+
_wrap_TextBox__focus_lost(int argc, VALUE *argv, VALUE self) {
|
6849
6849
|
OgreBites::TextBox *arg1 = (OgreBites::TextBox *) 0 ;
|
6850
6850
|
void *argp1 = 0 ;
|
6851
6851
|
int res1 = 0 ;
|
@@ -6905,7 +6905,7 @@ _wrap_new_SelectMenu(int argc, VALUE *argv, VALUE self) {
|
|
6905
6905
|
int ecode4 = 0 ;
|
6906
6906
|
unsigned int val5 ;
|
6907
6907
|
int ecode5 = 0 ;
|
6908
|
-
const char *classname SWIGUNUSED = "
|
6908
|
+
const char *classname SWIGUNUSED = "Ogrebites::SelectMenu";
|
6909
6909
|
OgreBites::SelectMenu *result = 0 ;
|
6910
6910
|
|
6911
6911
|
if ((argc < 5) || (argc > 5)) {
|
@@ -6956,7 +6956,7 @@ fail:
|
|
6956
6956
|
|
6957
6957
|
|
6958
6958
|
SWIGINTERN VALUE
|
6959
|
-
|
6959
|
+
_wrap_SelectMenu_is_expanded(int argc, VALUE *argv, VALUE self) {
|
6960
6960
|
OgreBites::SelectMenu *arg1 = (OgreBites::SelectMenu *) 0 ;
|
6961
6961
|
void *argp1 = 0 ;
|
6962
6962
|
int res1 = 0 ;
|
@@ -6980,7 +6980,7 @@ fail:
|
|
6980
6980
|
|
6981
6981
|
|
6982
6982
|
SWIGINTERN VALUE
|
6983
|
-
|
6983
|
+
_wrap_SelectMenu_get_caption(int argc, VALUE *argv, VALUE self) {
|
6984
6984
|
OgreBites::SelectMenu *arg1 = (OgreBites::SelectMenu *) 0 ;
|
6985
6985
|
void *argp1 = 0 ;
|
6986
6986
|
int res1 = 0 ;
|
@@ -7004,7 +7004,7 @@ fail:
|
|
7004
7004
|
|
7005
7005
|
|
7006
7006
|
SWIGINTERN VALUE
|
7007
|
-
|
7007
|
+
_wrap_SelectMenu_set_caption(int argc, VALUE *argv, VALUE self) {
|
7008
7008
|
OgreBites::SelectMenu *arg1 = (OgreBites::SelectMenu *) 0 ;
|
7009
7009
|
Ogre::DisplayString *arg2 = 0 ;
|
7010
7010
|
void *argp1 = 0 ;
|
@@ -7036,7 +7036,7 @@ fail:
|
|
7036
7036
|
|
7037
7037
|
|
7038
7038
|
SWIGINTERN VALUE
|
7039
|
-
|
7039
|
+
_wrap_SelectMenu_get_items(int argc, VALUE *argv, VALUE self) {
|
7040
7040
|
OgreBites::SelectMenu *arg1 = (OgreBites::SelectMenu *) 0 ;
|
7041
7041
|
void *argp1 = 0 ;
|
7042
7042
|
int res1 = 0 ;
|
@@ -7060,7 +7060,7 @@ fail:
|
|
7060
7060
|
|
7061
7061
|
|
7062
7062
|
SWIGINTERN VALUE
|
7063
|
-
|
7063
|
+
_wrap_SelectMenu_get_num_items(int argc, VALUE *argv, VALUE self) {
|
7064
7064
|
OgreBites::SelectMenu *arg1 = (OgreBites::SelectMenu *) 0 ;
|
7065
7065
|
void *argp1 = 0 ;
|
7066
7066
|
int res1 = 0 ;
|
@@ -7084,7 +7084,7 @@ fail:
|
|
7084
7084
|
|
7085
7085
|
|
7086
7086
|
SWIGINTERN VALUE
|
7087
|
-
|
7087
|
+
_wrap_SelectMenu_set_items__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
7088
7088
|
OgreBites::SelectMenu *arg1 = (OgreBites::SelectMenu *) 0 ;
|
7089
7089
|
Ogre::StringVector *arg2 = 0 ;
|
7090
7090
|
void *argp1 = 0 ;
|
@@ -7116,7 +7116,7 @@ fail:
|
|
7116
7116
|
|
7117
7117
|
|
7118
7118
|
SWIGINTERN VALUE
|
7119
|
-
|
7119
|
+
_wrap_SelectMenu_add_item(int argc, VALUE *argv, VALUE self) {
|
7120
7120
|
OgreBites::SelectMenu *arg1 = (OgreBites::SelectMenu *) 0 ;
|
7121
7121
|
Ogre::DisplayString *arg2 = 0 ;
|
7122
7122
|
void *argp1 = 0 ;
|
@@ -7148,7 +7148,7 @@ fail:
|
|
7148
7148
|
|
7149
7149
|
|
7150
7150
|
SWIGINTERN VALUE
|
7151
|
-
|
7151
|
+
_wrap_SelectMenu_remove_item__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
7152
7152
|
OgreBites::SelectMenu *arg1 = (OgreBites::SelectMenu *) 0 ;
|
7153
7153
|
Ogre::DisplayString *arg2 = 0 ;
|
7154
7154
|
void *argp1 = 0 ;
|
@@ -7180,7 +7180,7 @@ fail:
|
|
7180
7180
|
|
7181
7181
|
|
7182
7182
|
SWIGINTERN VALUE
|
7183
|
-
|
7183
|
+
_wrap_SelectMenu_remove_item__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
7184
7184
|
OgreBites::SelectMenu *arg1 = (OgreBites::SelectMenu *) 0 ;
|
7185
7185
|
unsigned int arg2 ;
|
7186
7186
|
void *argp1 = 0 ;
|
@@ -7208,7 +7208,7 @@ fail:
|
|
7208
7208
|
}
|
7209
7209
|
|
7210
7210
|
|
7211
|
-
SWIGINTERN VALUE
|
7211
|
+
SWIGINTERN VALUE _wrap_SelectMenu_remove_item(int nargs, VALUE *args, VALUE self) {
|
7212
7212
|
int argc;
|
7213
7213
|
VALUE argv[3];
|
7214
7214
|
int ii;
|
@@ -7229,7 +7229,7 @@ SWIGINTERN VALUE _wrap_SelectMenu_removeItem(int nargs, VALUE *args, VALUE self)
|
|
7229
7229
|
int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_Ogre__UTFString, 0);
|
7230
7230
|
_v = SWIG_CheckState(res);
|
7231
7231
|
if (_v) {
|
7232
|
-
return
|
7232
|
+
return _wrap_SelectMenu_remove_item__SWIG_0(nargs, args, self);
|
7233
7233
|
}
|
7234
7234
|
}
|
7235
7235
|
}
|
@@ -7244,22 +7244,22 @@ SWIGINTERN VALUE _wrap_SelectMenu_removeItem(int nargs, VALUE *args, VALUE self)
|
|
7244
7244
|
_v = SWIG_CheckState(res);
|
7245
7245
|
}
|
7246
7246
|
if (_v) {
|
7247
|
-
return
|
7247
|
+
return _wrap_SelectMenu_remove_item__SWIG_1(nargs, args, self);
|
7248
7248
|
}
|
7249
7249
|
}
|
7250
7250
|
}
|
7251
7251
|
|
7252
7252
|
fail:
|
7253
|
-
Ruby_Format_OverloadedError( argc, 3, "SelectMenu.
|
7254
|
-
" void SelectMenu.
|
7255
|
-
" void SelectMenu.
|
7253
|
+
Ruby_Format_OverloadedError( argc, 3, "SelectMenu.remove_item",
|
7254
|
+
" void SelectMenu.remove_item(Ogre::DisplayString const &item)\n"
|
7255
|
+
" void SelectMenu.remove_item(unsigned int index)\n");
|
7256
7256
|
|
7257
7257
|
return Qnil;
|
7258
7258
|
}
|
7259
7259
|
|
7260
7260
|
|
7261
7261
|
SWIGINTERN VALUE
|
7262
|
-
|
7262
|
+
_wrap_SelectMenu_clear_items(int argc, VALUE *argv, VALUE self) {
|
7263
7263
|
OgreBites::SelectMenu *arg1 = (OgreBites::SelectMenu *) 0 ;
|
7264
7264
|
void *argp1 = 0 ;
|
7265
7265
|
int res1 = 0 ;
|
@@ -7280,7 +7280,7 @@ fail:
|
|
7280
7280
|
|
7281
7281
|
|
7282
7282
|
SWIGINTERN VALUE
|
7283
|
-
|
7283
|
+
_wrap_SelectMenu_select_item__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
7284
7284
|
OgreBites::SelectMenu *arg1 = (OgreBites::SelectMenu *) 0 ;
|
7285
7285
|
unsigned int arg2 ;
|
7286
7286
|
bool arg3 ;
|
@@ -7317,7 +7317,7 @@ fail:
|
|
7317
7317
|
|
7318
7318
|
|
7319
7319
|
SWIGINTERN VALUE
|
7320
|
-
|
7320
|
+
_wrap_SelectMenu_select_item__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
7321
7321
|
OgreBites::SelectMenu *arg1 = (OgreBites::SelectMenu *) 0 ;
|
7322
7322
|
unsigned int arg2 ;
|
7323
7323
|
void *argp1 = 0 ;
|
@@ -7346,7 +7346,7 @@ fail:
|
|
7346
7346
|
|
7347
7347
|
|
7348
7348
|
SWIGINTERN VALUE
|
7349
|
-
|
7349
|
+
_wrap_SelectMenu_select_item__SWIG_2(int argc, VALUE *argv, VALUE self) {
|
7350
7350
|
OgreBites::SelectMenu *arg1 = (OgreBites::SelectMenu *) 0 ;
|
7351
7351
|
Ogre::DisplayString *arg2 = 0 ;
|
7352
7352
|
bool arg3 ;
|
@@ -7386,7 +7386,7 @@ fail:
|
|
7386
7386
|
|
7387
7387
|
|
7388
7388
|
SWIGINTERN VALUE
|
7389
|
-
|
7389
|
+
_wrap_SelectMenu_select_item__SWIG_3(int argc, VALUE *argv, VALUE self) {
|
7390
7390
|
OgreBites::SelectMenu *arg1 = (OgreBites::SelectMenu *) 0 ;
|
7391
7391
|
Ogre::DisplayString *arg2 = 0 ;
|
7392
7392
|
void *argp1 = 0 ;
|
@@ -7417,7 +7417,7 @@ fail:
|
|
7417
7417
|
}
|
7418
7418
|
|
7419
7419
|
|
7420
|
-
SWIGINTERN VALUE
|
7420
|
+
SWIGINTERN VALUE _wrap_SelectMenu_select_item(int nargs, VALUE *args, VALUE self) {
|
7421
7421
|
int argc;
|
7422
7422
|
VALUE argv[4];
|
7423
7423
|
int ii;
|
@@ -7438,7 +7438,7 @@ SWIGINTERN VALUE _wrap_SelectMenu_selectItem(int nargs, VALUE *args, VALUE self)
|
|
7438
7438
|
int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_Ogre__UTFString, 0);
|
7439
7439
|
_v = SWIG_CheckState(res);
|
7440
7440
|
if (_v) {
|
7441
|
-
return
|
7441
|
+
return _wrap_SelectMenu_select_item__SWIG_3(nargs, args, self);
|
7442
7442
|
}
|
7443
7443
|
}
|
7444
7444
|
}
|
@@ -7453,7 +7453,7 @@ SWIGINTERN VALUE _wrap_SelectMenu_selectItem(int nargs, VALUE *args, VALUE self)
|
|
7453
7453
|
_v = SWIG_CheckState(res);
|
7454
7454
|
}
|
7455
7455
|
if (_v) {
|
7456
|
-
return
|
7456
|
+
return _wrap_SelectMenu_select_item__SWIG_1(nargs, args, self);
|
7457
7457
|
}
|
7458
7458
|
}
|
7459
7459
|
}
|
@@ -7472,7 +7472,7 @@ SWIGINTERN VALUE _wrap_SelectMenu_selectItem(int nargs, VALUE *args, VALUE self)
|
|
7472
7472
|
_v = SWIG_CheckState(res);
|
7473
7473
|
}
|
7474
7474
|
if (_v) {
|
7475
|
-
return
|
7475
|
+
return _wrap_SelectMenu_select_item__SWIG_2(nargs, args, self);
|
7476
7476
|
}
|
7477
7477
|
}
|
7478
7478
|
}
|
@@ -7493,25 +7493,25 @@ SWIGINTERN VALUE _wrap_SelectMenu_selectItem(int nargs, VALUE *args, VALUE self)
|
|
7493
7493
|
_v = SWIG_CheckState(res);
|
7494
7494
|
}
|
7495
7495
|
if (_v) {
|
7496
|
-
return
|
7496
|
+
return _wrap_SelectMenu_select_item__SWIG_0(nargs, args, self);
|
7497
7497
|
}
|
7498
7498
|
}
|
7499
7499
|
}
|
7500
7500
|
}
|
7501
7501
|
|
7502
7502
|
fail:
|
7503
|
-
Ruby_Format_OverloadedError( argc, 4, "SelectMenu.
|
7504
|
-
" void SelectMenu.
|
7505
|
-
" void SelectMenu.
|
7506
|
-
" void SelectMenu.
|
7507
|
-
" void SelectMenu.
|
7503
|
+
Ruby_Format_OverloadedError( argc, 4, "SelectMenu.select_item",
|
7504
|
+
" void SelectMenu.select_item(unsigned int index, bool notifyListener)\n"
|
7505
|
+
" void SelectMenu.select_item(unsigned int index)\n"
|
7506
|
+
" void SelectMenu.select_item(Ogre::DisplayString const &item, bool notifyListener)\n"
|
7507
|
+
" void SelectMenu.select_item(Ogre::DisplayString const &item)\n");
|
7508
7508
|
|
7509
7509
|
return Qnil;
|
7510
7510
|
}
|
7511
7511
|
|
7512
7512
|
|
7513
7513
|
SWIGINTERN VALUE
|
7514
|
-
|
7514
|
+
_wrap_SelectMenu_get_selected_item(int argc, VALUE *argv, VALUE self) {
|
7515
7515
|
OgreBites::SelectMenu *arg1 = (OgreBites::SelectMenu *) 0 ;
|
7516
7516
|
void *argp1 = 0 ;
|
7517
7517
|
int res1 = 0 ;
|
@@ -7535,7 +7535,7 @@ fail:
|
|
7535
7535
|
|
7536
7536
|
|
7537
7537
|
SWIGINTERN VALUE
|
7538
|
-
|
7538
|
+
_wrap_SelectMenu_get_selection_index(int argc, VALUE *argv, VALUE self) {
|
7539
7539
|
OgreBites::SelectMenu *arg1 = (OgreBites::SelectMenu *) 0 ;
|
7540
7540
|
void *argp1 = 0 ;
|
7541
7541
|
int res1 = 0 ;
|
@@ -7559,7 +7559,7 @@ fail:
|
|
7559
7559
|
|
7560
7560
|
|
7561
7561
|
SWIGINTERN VALUE
|
7562
|
-
|
7562
|
+
_wrap_SelectMenu__cursor_pressed(int argc, VALUE *argv, VALUE self) {
|
7563
7563
|
OgreBites::SelectMenu *arg1 = (OgreBites::SelectMenu *) 0 ;
|
7564
7564
|
Ogre::Vector2 *arg2 = 0 ;
|
7565
7565
|
void *argp1 = 0 ;
|
@@ -7591,7 +7591,7 @@ fail:
|
|
7591
7591
|
|
7592
7592
|
|
7593
7593
|
SWIGINTERN VALUE
|
7594
|
-
|
7594
|
+
_wrap_SelectMenu__cursor_released(int argc, VALUE *argv, VALUE self) {
|
7595
7595
|
OgreBites::SelectMenu *arg1 = (OgreBites::SelectMenu *) 0 ;
|
7596
7596
|
Ogre::Vector2 *arg2 = 0 ;
|
7597
7597
|
void *argp1 = 0 ;
|
@@ -7623,7 +7623,7 @@ fail:
|
|
7623
7623
|
|
7624
7624
|
|
7625
7625
|
SWIGINTERN VALUE
|
7626
|
-
|
7626
|
+
_wrap_SelectMenu__cursor_moved(int argc, VALUE *argv, VALUE self) {
|
7627
7627
|
OgreBites::SelectMenu *arg1 = (OgreBites::SelectMenu *) 0 ;
|
7628
7628
|
Ogre::Vector2 *arg2 = 0 ;
|
7629
7629
|
void *argp1 = 0 ;
|
@@ -7655,7 +7655,7 @@ fail:
|
|
7655
7655
|
|
7656
7656
|
|
7657
7657
|
SWIGINTERN VALUE
|
7658
|
-
|
7658
|
+
_wrap_SelectMenu__focus_lost(int argc, VALUE *argv, VALUE self) {
|
7659
7659
|
OgreBites::SelectMenu *arg1 = (OgreBites::SelectMenu *) 0 ;
|
7660
7660
|
void *argp1 = 0 ;
|
7661
7661
|
int res1 = 0 ;
|
@@ -7676,7 +7676,7 @@ fail:
|
|
7676
7676
|
|
7677
7677
|
|
7678
7678
|
SWIGINTERN VALUE
|
7679
|
-
|
7679
|
+
_wrap_SelectMenu_set_items__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
7680
7680
|
OgreBites::SelectMenu *arg1 = (OgreBites::SelectMenu *) 0 ;
|
7681
7681
|
VALUE arg2 = (VALUE) 0 ;
|
7682
7682
|
void *argp1 = 0 ;
|
@@ -7698,7 +7698,7 @@ fail:
|
|
7698
7698
|
}
|
7699
7699
|
|
7700
7700
|
|
7701
|
-
SWIGINTERN VALUE
|
7701
|
+
SWIGINTERN VALUE _wrap_SelectMenu_set_items(int nargs, VALUE *args, VALUE self) {
|
7702
7702
|
int argc;
|
7703
7703
|
VALUE argv[3];
|
7704
7704
|
int ii;
|
@@ -7719,7 +7719,7 @@ SWIGINTERN VALUE _wrap_SelectMenu_setItems(int nargs, VALUE *args, VALUE self) {
|
|
7719
7719
|
int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_Ogre__vectorT_Ogre__String_Ogre__STLAllocatorT_Ogre__String_Ogre__GeneralAllocPolicy_t_t__type, 0);
|
7720
7720
|
_v = SWIG_CheckState(res);
|
7721
7721
|
if (_v) {
|
7722
|
-
return
|
7722
|
+
return _wrap_SelectMenu_set_items__SWIG_0(nargs, args, self);
|
7723
7723
|
}
|
7724
7724
|
}
|
7725
7725
|
}
|
@@ -7731,15 +7731,15 @@ SWIGINTERN VALUE _wrap_SelectMenu_setItems(int nargs, VALUE *args, VALUE self) {
|
|
7731
7731
|
if (_v) {
|
7732
7732
|
_v = (argv[1] != 0);
|
7733
7733
|
if (_v) {
|
7734
|
-
return
|
7734
|
+
return _wrap_SelectMenu_set_items__SWIG_1(nargs, args, self);
|
7735
7735
|
}
|
7736
7736
|
}
|
7737
7737
|
}
|
7738
7738
|
|
7739
7739
|
fail:
|
7740
|
-
Ruby_Format_OverloadedError( argc, 3, "SelectMenu.
|
7741
|
-
" void SelectMenu.
|
7742
|
-
" void SelectMenu.
|
7740
|
+
Ruby_Format_OverloadedError( argc, 3, "SelectMenu.set_items",
|
7741
|
+
" void SelectMenu.set_items(Ogre::StringVector const &items)\n"
|
7742
|
+
" void SelectMenu.set_items(VALUE items)\n");
|
7743
7743
|
|
7744
7744
|
return Qnil;
|
7745
7745
|
}
|
@@ -7797,7 +7797,7 @@ _wrap_new_Label(int argc, VALUE *argv, VALUE self) {
|
|
7797
7797
|
int res2 = 0 ;
|
7798
7798
|
float val3 ;
|
7799
7799
|
int ecode3 = 0 ;
|
7800
|
-
const char *classname SWIGUNUSED = "
|
7800
|
+
const char *classname SWIGUNUSED = "Ogrebites::Label";
|
7801
7801
|
OgreBites::Label *result = 0 ;
|
7802
7802
|
|
7803
7803
|
if ((argc < 3) || (argc > 3)) {
|
@@ -7838,7 +7838,7 @@ fail:
|
|
7838
7838
|
|
7839
7839
|
|
7840
7840
|
SWIGINTERN VALUE
|
7841
|
-
|
7841
|
+
_wrap_Label_get_caption(int argc, VALUE *argv, VALUE self) {
|
7842
7842
|
OgreBites::Label *arg1 = (OgreBites::Label *) 0 ;
|
7843
7843
|
void *argp1 = 0 ;
|
7844
7844
|
int res1 = 0 ;
|
@@ -7862,7 +7862,7 @@ fail:
|
|
7862
7862
|
|
7863
7863
|
|
7864
7864
|
SWIGINTERN VALUE
|
7865
|
-
|
7865
|
+
_wrap_Label_set_caption(int argc, VALUE *argv, VALUE self) {
|
7866
7866
|
OgreBites::Label *arg1 = (OgreBites::Label *) 0 ;
|
7867
7867
|
Ogre::DisplayString *arg2 = 0 ;
|
7868
7868
|
void *argp1 = 0 ;
|
@@ -7894,7 +7894,7 @@ fail:
|
|
7894
7894
|
|
7895
7895
|
|
7896
7896
|
SWIGINTERN VALUE
|
7897
|
-
|
7897
|
+
_wrap_Label__cursor_pressed(int argc, VALUE *argv, VALUE self) {
|
7898
7898
|
OgreBites::Label *arg1 = (OgreBites::Label *) 0 ;
|
7899
7899
|
Ogre::Vector2 *arg2 = 0 ;
|
7900
7900
|
void *argp1 = 0 ;
|
@@ -7926,7 +7926,7 @@ fail:
|
|
7926
7926
|
|
7927
7927
|
|
7928
7928
|
SWIGINTERN VALUE
|
7929
|
-
|
7929
|
+
_wrap_Label__is_fit_to_tray(int argc, VALUE *argv, VALUE self) {
|
7930
7930
|
OgreBites::Label *arg1 = (OgreBites::Label *) 0 ;
|
7931
7931
|
void *argp1 = 0 ;
|
7932
7932
|
int res1 = 0 ;
|
@@ -7980,7 +7980,7 @@ _wrap_new_Separator(int argc, VALUE *argv, VALUE self) {
|
|
7980
7980
|
int res1 = SWIG_OLDOBJ ;
|
7981
7981
|
float val2 ;
|
7982
7982
|
int ecode2 = 0 ;
|
7983
|
-
const char *classname SWIGUNUSED = "
|
7983
|
+
const char *classname SWIGUNUSED = "Ogrebites::Separator";
|
7984
7984
|
OgreBites::Separator *result = 0 ;
|
7985
7985
|
|
7986
7986
|
if ((argc < 2) || (argc > 2)) {
|
@@ -8013,7 +8013,7 @@ fail:
|
|
8013
8013
|
|
8014
8014
|
|
8015
8015
|
SWIGINTERN VALUE
|
8016
|
-
|
8016
|
+
_wrap_Separator__is_fit_to_tray(int argc, VALUE *argv, VALUE self) {
|
8017
8017
|
OgreBites::Separator *arg1 = (OgreBites::Separator *) 0 ;
|
8018
8018
|
void *argp1 = 0 ;
|
8019
8019
|
int res1 = 0 ;
|
@@ -8085,7 +8085,7 @@ _wrap_new_Slider(int argc, VALUE *argv, VALUE self) {
|
|
8085
8085
|
int ecode7 = 0 ;
|
8086
8086
|
unsigned int val8 ;
|
8087
8087
|
int ecode8 = 0 ;
|
8088
|
-
const char *classname SWIGUNUSED = "
|
8088
|
+
const char *classname SWIGUNUSED = "Ogrebites::Slider";
|
8089
8089
|
OgreBites::Slider *result = 0 ;
|
8090
8090
|
|
8091
8091
|
if ((argc < 8) || (argc > 8)) {
|
@@ -8151,7 +8151,7 @@ fail:
|
|
8151
8151
|
|
8152
8152
|
|
8153
8153
|
SWIGINTERN VALUE
|
8154
|
-
|
8154
|
+
_wrap_Slider_set_range__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
8155
8155
|
OgreBites::Slider *arg1 = (OgreBites::Slider *) 0 ;
|
8156
8156
|
Ogre::Real arg2 ;
|
8157
8157
|
Ogre::Real arg3 ;
|
@@ -8204,7 +8204,7 @@ fail:
|
|
8204
8204
|
|
8205
8205
|
|
8206
8206
|
SWIGINTERN VALUE
|
8207
|
-
|
8207
|
+
_wrap_Slider_set_range__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
8208
8208
|
OgreBites::Slider *arg1 = (OgreBites::Slider *) 0 ;
|
8209
8209
|
Ogre::Real arg2 ;
|
8210
8210
|
Ogre::Real arg3 ;
|
@@ -8248,7 +8248,7 @@ fail:
|
|
8248
8248
|
}
|
8249
8249
|
|
8250
8250
|
|
8251
|
-
SWIGINTERN VALUE
|
8251
|
+
SWIGINTERN VALUE _wrap_Slider_set_range(int nargs, VALUE *args, VALUE self) {
|
8252
8252
|
int argc;
|
8253
8253
|
VALUE argv[6];
|
8254
8254
|
int ii;
|
@@ -8280,7 +8280,7 @@ SWIGINTERN VALUE _wrap_Slider_setRange(int nargs, VALUE *args, VALUE self) {
|
|
8280
8280
|
_v = SWIG_CheckState(res);
|
8281
8281
|
}
|
8282
8282
|
if (_v) {
|
8283
|
-
return
|
8283
|
+
return _wrap_Slider_set_range__SWIG_1(nargs, args, self);
|
8284
8284
|
}
|
8285
8285
|
}
|
8286
8286
|
}
|
@@ -8312,7 +8312,7 @@ SWIGINTERN VALUE _wrap_Slider_setRange(int nargs, VALUE *args, VALUE self) {
|
|
8312
8312
|
_v = SWIG_CheckState(res);
|
8313
8313
|
}
|
8314
8314
|
if (_v) {
|
8315
|
-
return
|
8315
|
+
return _wrap_Slider_set_range__SWIG_0(nargs, args, self);
|
8316
8316
|
}
|
8317
8317
|
}
|
8318
8318
|
}
|
@@ -8321,16 +8321,16 @@ SWIGINTERN VALUE _wrap_Slider_setRange(int nargs, VALUE *args, VALUE self) {
|
|
8321
8321
|
}
|
8322
8322
|
|
8323
8323
|
fail:
|
8324
|
-
Ruby_Format_OverloadedError( argc, 6, "Slider.
|
8325
|
-
" void Slider.
|
8326
|
-
" void Slider.
|
8324
|
+
Ruby_Format_OverloadedError( argc, 6, "Slider.set_range",
|
8325
|
+
" void Slider.set_range(Ogre::Real minValue, Ogre::Real maxValue, unsigned int snaps, bool notifyListener)\n"
|
8326
|
+
" void Slider.set_range(Ogre::Real minValue, Ogre::Real maxValue, unsigned int snaps)\n");
|
8327
8327
|
|
8328
8328
|
return Qnil;
|
8329
8329
|
}
|
8330
8330
|
|
8331
8331
|
|
8332
8332
|
SWIGINTERN VALUE
|
8333
|
-
|
8333
|
+
_wrap_Slider_get_value_caption(int argc, VALUE *argv, VALUE self) {
|
8334
8334
|
OgreBites::Slider *arg1 = (OgreBites::Slider *) 0 ;
|
8335
8335
|
void *argp1 = 0 ;
|
8336
8336
|
int res1 = 0 ;
|
@@ -8354,7 +8354,7 @@ fail:
|
|
8354
8354
|
|
8355
8355
|
|
8356
8356
|
SWIGINTERN VALUE
|
8357
|
-
|
8357
|
+
_wrap_Slider_set_value_caption(int argc, VALUE *argv, VALUE self) {
|
8358
8358
|
OgreBites::Slider *arg1 = (OgreBites::Slider *) 0 ;
|
8359
8359
|
Ogre::DisplayString *arg2 = 0 ;
|
8360
8360
|
void *argp1 = 0 ;
|
@@ -8386,7 +8386,7 @@ fail:
|
|
8386
8386
|
|
8387
8387
|
|
8388
8388
|
SWIGINTERN VALUE
|
8389
|
-
|
8389
|
+
_wrap_Slider_set_value__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
8390
8390
|
OgreBites::Slider *arg1 = (OgreBites::Slider *) 0 ;
|
8391
8391
|
Ogre::Real arg2 ;
|
8392
8392
|
bool arg3 ;
|
@@ -8423,7 +8423,7 @@ fail:
|
|
8423
8423
|
|
8424
8424
|
|
8425
8425
|
SWIGINTERN VALUE
|
8426
|
-
|
8426
|
+
_wrap_Slider_set_value__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
8427
8427
|
OgreBites::Slider *arg1 = (OgreBites::Slider *) 0 ;
|
8428
8428
|
Ogre::Real arg2 ;
|
8429
8429
|
void *argp1 = 0 ;
|
@@ -8451,7 +8451,7 @@ fail:
|
|
8451
8451
|
}
|
8452
8452
|
|
8453
8453
|
|
8454
|
-
SWIGINTERN VALUE
|
8454
|
+
SWIGINTERN VALUE _wrap_Slider_set_value(int nargs, VALUE *args, VALUE self) {
|
8455
8455
|
int argc;
|
8456
8456
|
VALUE argv[4];
|
8457
8457
|
int ii;
|
@@ -8473,7 +8473,7 @@ SWIGINTERN VALUE _wrap_Slider_setValue(int nargs, VALUE *args, VALUE self) {
|
|
8473
8473
|
_v = SWIG_CheckState(res);
|
8474
8474
|
}
|
8475
8475
|
if (_v) {
|
8476
|
-
return
|
8476
|
+
return _wrap_Slider_set_value__SWIG_1(nargs, args, self);
|
8477
8477
|
}
|
8478
8478
|
}
|
8479
8479
|
}
|
@@ -8493,23 +8493,23 @@ SWIGINTERN VALUE _wrap_Slider_setValue(int nargs, VALUE *args, VALUE self) {
|
|
8493
8493
|
_v = SWIG_CheckState(res);
|
8494
8494
|
}
|
8495
8495
|
if (_v) {
|
8496
|
-
return
|
8496
|
+
return _wrap_Slider_set_value__SWIG_0(nargs, args, self);
|
8497
8497
|
}
|
8498
8498
|
}
|
8499
8499
|
}
|
8500
8500
|
}
|
8501
8501
|
|
8502
8502
|
fail:
|
8503
|
-
Ruby_Format_OverloadedError( argc, 4, "Slider.
|
8504
|
-
" void Slider.
|
8505
|
-
" void Slider.
|
8503
|
+
Ruby_Format_OverloadedError( argc, 4, "Slider.set_value",
|
8504
|
+
" void Slider.set_value(Ogre::Real value, bool notifyListener)\n"
|
8505
|
+
" void Slider.set_value(Ogre::Real value)\n");
|
8506
8506
|
|
8507
8507
|
return Qnil;
|
8508
8508
|
}
|
8509
8509
|
|
8510
8510
|
|
8511
8511
|
SWIGINTERN VALUE
|
8512
|
-
|
8512
|
+
_wrap_Slider_get_value(int argc, VALUE *argv, VALUE self) {
|
8513
8513
|
OgreBites::Slider *arg1 = (OgreBites::Slider *) 0 ;
|
8514
8514
|
void *argp1 = 0 ;
|
8515
8515
|
int res1 = 0 ;
|
@@ -8533,7 +8533,7 @@ fail:
|
|
8533
8533
|
|
8534
8534
|
|
8535
8535
|
SWIGINTERN VALUE
|
8536
|
-
|
8536
|
+
_wrap_Slider_get_caption(int argc, VALUE *argv, VALUE self) {
|
8537
8537
|
OgreBites::Slider *arg1 = (OgreBites::Slider *) 0 ;
|
8538
8538
|
void *argp1 = 0 ;
|
8539
8539
|
int res1 = 0 ;
|
@@ -8557,7 +8557,7 @@ fail:
|
|
8557
8557
|
|
8558
8558
|
|
8559
8559
|
SWIGINTERN VALUE
|
8560
|
-
|
8560
|
+
_wrap_Slider_set_caption(int argc, VALUE *argv, VALUE self) {
|
8561
8561
|
OgreBites::Slider *arg1 = (OgreBites::Slider *) 0 ;
|
8562
8562
|
Ogre::DisplayString *arg2 = 0 ;
|
8563
8563
|
void *argp1 = 0 ;
|
@@ -8589,7 +8589,7 @@ fail:
|
|
8589
8589
|
|
8590
8590
|
|
8591
8591
|
SWIGINTERN VALUE
|
8592
|
-
|
8592
|
+
_wrap_Slider__cursor_pressed(int argc, VALUE *argv, VALUE self) {
|
8593
8593
|
OgreBites::Slider *arg1 = (OgreBites::Slider *) 0 ;
|
8594
8594
|
Ogre::Vector2 *arg2 = 0 ;
|
8595
8595
|
void *argp1 = 0 ;
|
@@ -8621,7 +8621,7 @@ fail:
|
|
8621
8621
|
|
8622
8622
|
|
8623
8623
|
SWIGINTERN VALUE
|
8624
|
-
|
8624
|
+
_wrap_Slider__cursor_released(int argc, VALUE *argv, VALUE self) {
|
8625
8625
|
OgreBites::Slider *arg1 = (OgreBites::Slider *) 0 ;
|
8626
8626
|
Ogre::Vector2 *arg2 = 0 ;
|
8627
8627
|
void *argp1 = 0 ;
|
@@ -8653,7 +8653,7 @@ fail:
|
|
8653
8653
|
|
8654
8654
|
|
8655
8655
|
SWIGINTERN VALUE
|
8656
|
-
|
8656
|
+
_wrap_Slider__cursor_moved(int argc, VALUE *argv, VALUE self) {
|
8657
8657
|
OgreBites::Slider *arg1 = (OgreBites::Slider *) 0 ;
|
8658
8658
|
Ogre::Vector2 *arg2 = 0 ;
|
8659
8659
|
void *argp1 = 0 ;
|
@@ -8685,7 +8685,7 @@ fail:
|
|
8685
8685
|
|
8686
8686
|
|
8687
8687
|
SWIGINTERN VALUE
|
8688
|
-
|
8688
|
+
_wrap_Slider__focus_lost(int argc, VALUE *argv, VALUE self) {
|
8689
8689
|
OgreBites::Slider *arg1 = (OgreBites::Slider *) 0 ;
|
8690
8690
|
void *argp1 = 0 ;
|
8691
8691
|
int res1 = 0 ;
|
@@ -8739,7 +8739,7 @@ _wrap_new_ParamsPanel(int argc, VALUE *argv, VALUE self) {
|
|
8739
8739
|
int ecode2 = 0 ;
|
8740
8740
|
unsigned int val3 ;
|
8741
8741
|
int ecode3 = 0 ;
|
8742
|
-
const char *classname SWIGUNUSED = "
|
8742
|
+
const char *classname SWIGUNUSED = "Ogrebites::ParamsPanel";
|
8743
8743
|
OgreBites::ParamsPanel *result = 0 ;
|
8744
8744
|
|
8745
8745
|
if ((argc < 3) || (argc > 3)) {
|
@@ -8777,7 +8777,7 @@ fail:
|
|
8777
8777
|
|
8778
8778
|
|
8779
8779
|
SWIGINTERN VALUE
|
8780
|
-
|
8780
|
+
_wrap_ParamsPanel_set_all_param_names(int argc, VALUE *argv, VALUE self) {
|
8781
8781
|
OgreBites::ParamsPanel *arg1 = (OgreBites::ParamsPanel *) 0 ;
|
8782
8782
|
Ogre::StringVector *arg2 = 0 ;
|
8783
8783
|
void *argp1 = 0 ;
|
@@ -8809,7 +8809,7 @@ fail:
|
|
8809
8809
|
|
8810
8810
|
|
8811
8811
|
SWIGINTERN VALUE
|
8812
|
-
|
8812
|
+
_wrap_ParamsPanel_get_all_param_names(int argc, VALUE *argv, VALUE self) {
|
8813
8813
|
OgreBites::ParamsPanel *arg1 = (OgreBites::ParamsPanel *) 0 ;
|
8814
8814
|
void *argp1 = 0 ;
|
8815
8815
|
int res1 = 0 ;
|
@@ -8833,7 +8833,7 @@ fail:
|
|
8833
8833
|
|
8834
8834
|
|
8835
8835
|
SWIGINTERN VALUE
|
8836
|
-
|
8836
|
+
_wrap_ParamsPanel_set_all_param_values(int argc, VALUE *argv, VALUE self) {
|
8837
8837
|
OgreBites::ParamsPanel *arg1 = (OgreBites::ParamsPanel *) 0 ;
|
8838
8838
|
Ogre::StringVector *arg2 = 0 ;
|
8839
8839
|
void *argp1 = 0 ;
|
@@ -8865,7 +8865,7 @@ fail:
|
|
8865
8865
|
|
8866
8866
|
|
8867
8867
|
SWIGINTERN VALUE
|
8868
|
-
|
8868
|
+
_wrap_ParamsPanel_set_param_value__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
8869
8869
|
OgreBites::ParamsPanel *arg1 = (OgreBites::ParamsPanel *) 0 ;
|
8870
8870
|
Ogre::DisplayString *arg2 = 0 ;
|
8871
8871
|
Ogre::DisplayString *arg3 = 0 ;
|
@@ -8908,7 +8908,7 @@ fail:
|
|
8908
8908
|
|
8909
8909
|
|
8910
8910
|
SWIGINTERN VALUE
|
8911
|
-
|
8911
|
+
_wrap_ParamsPanel_set_param_value__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
8912
8912
|
OgreBites::ParamsPanel *arg1 = (OgreBites::ParamsPanel *) 0 ;
|
8913
8913
|
unsigned int arg2 ;
|
8914
8914
|
Ogre::DisplayString *arg3 = 0 ;
|
@@ -8947,7 +8947,7 @@ fail:
|
|
8947
8947
|
}
|
8948
8948
|
|
8949
8949
|
|
8950
|
-
SWIGINTERN VALUE
|
8950
|
+
SWIGINTERN VALUE _wrap_ParamsPanel_set_param_value(int nargs, VALUE *args, VALUE self) {
|
8951
8951
|
int argc;
|
8952
8952
|
VALUE argv[4];
|
8953
8953
|
int ii;
|
@@ -8972,7 +8972,7 @@ SWIGINTERN VALUE _wrap_ParamsPanel_setParamValue(int nargs, VALUE *args, VALUE s
|
|
8972
8972
|
int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_Ogre__UTFString, 0);
|
8973
8973
|
_v = SWIG_CheckState(res);
|
8974
8974
|
if (_v) {
|
8975
|
-
return
|
8975
|
+
return _wrap_ParamsPanel_set_param_value__SWIG_0(nargs, args, self);
|
8976
8976
|
}
|
8977
8977
|
}
|
8978
8978
|
}
|
@@ -8992,23 +8992,23 @@ SWIGINTERN VALUE _wrap_ParamsPanel_setParamValue(int nargs, VALUE *args, VALUE s
|
|
8992
8992
|
int res = SWIG_ConvertPtr(argv[2], &vptr, SWIGTYPE_p_Ogre__UTFString, 0);
|
8993
8993
|
_v = SWIG_CheckState(res);
|
8994
8994
|
if (_v) {
|
8995
|
-
return
|
8995
|
+
return _wrap_ParamsPanel_set_param_value__SWIG_1(nargs, args, self);
|
8996
8996
|
}
|
8997
8997
|
}
|
8998
8998
|
}
|
8999
8999
|
}
|
9000
9000
|
|
9001
9001
|
fail:
|
9002
|
-
Ruby_Format_OverloadedError( argc, 4, "ParamsPanel.
|
9003
|
-
" void ParamsPanel.
|
9004
|
-
" void ParamsPanel.
|
9002
|
+
Ruby_Format_OverloadedError( argc, 4, "ParamsPanel.set_param_value",
|
9003
|
+
" void ParamsPanel.set_param_value(Ogre::DisplayString const ¶mName, Ogre::DisplayString const ¶mValue)\n"
|
9004
|
+
" void ParamsPanel.set_param_value(unsigned int index, Ogre::DisplayString const ¶mValue)\n");
|
9005
9005
|
|
9006
9006
|
return Qnil;
|
9007
9007
|
}
|
9008
9008
|
|
9009
9009
|
|
9010
9010
|
SWIGINTERN VALUE
|
9011
|
-
|
9011
|
+
_wrap_ParamsPanel_get_param_value__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
9012
9012
|
OgreBites::ParamsPanel *arg1 = (OgreBites::ParamsPanel *) 0 ;
|
9013
9013
|
Ogre::DisplayString *arg2 = 0 ;
|
9014
9014
|
void *argp1 = 0 ;
|
@@ -9043,7 +9043,7 @@ fail:
|
|
9043
9043
|
|
9044
9044
|
|
9045
9045
|
SWIGINTERN VALUE
|
9046
|
-
|
9046
|
+
_wrap_ParamsPanel_get_param_value__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
9047
9047
|
OgreBites::ParamsPanel *arg1 = (OgreBites::ParamsPanel *) 0 ;
|
9048
9048
|
unsigned int arg2 ;
|
9049
9049
|
void *argp1 = 0 ;
|
@@ -9074,7 +9074,7 @@ fail:
|
|
9074
9074
|
}
|
9075
9075
|
|
9076
9076
|
|
9077
|
-
SWIGINTERN VALUE
|
9077
|
+
SWIGINTERN VALUE _wrap_ParamsPanel_get_param_value(int nargs, VALUE *args, VALUE self) {
|
9078
9078
|
int argc;
|
9079
9079
|
VALUE argv[3];
|
9080
9080
|
int ii;
|
@@ -9095,7 +9095,7 @@ SWIGINTERN VALUE _wrap_ParamsPanel_getParamValue(int nargs, VALUE *args, VALUE s
|
|
9095
9095
|
int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_Ogre__UTFString, 0);
|
9096
9096
|
_v = SWIG_CheckState(res);
|
9097
9097
|
if (_v) {
|
9098
|
-
return
|
9098
|
+
return _wrap_ParamsPanel_get_param_value__SWIG_0(nargs, args, self);
|
9099
9099
|
}
|
9100
9100
|
}
|
9101
9101
|
}
|
@@ -9110,22 +9110,22 @@ SWIGINTERN VALUE _wrap_ParamsPanel_getParamValue(int nargs, VALUE *args, VALUE s
|
|
9110
9110
|
_v = SWIG_CheckState(res);
|
9111
9111
|
}
|
9112
9112
|
if (_v) {
|
9113
|
-
return
|
9113
|
+
return _wrap_ParamsPanel_get_param_value__SWIG_1(nargs, args, self);
|
9114
9114
|
}
|
9115
9115
|
}
|
9116
9116
|
}
|
9117
9117
|
|
9118
9118
|
fail:
|
9119
|
-
Ruby_Format_OverloadedError( argc, 3, "ParamsPanel.
|
9120
|
-
" Ogre::DisplayString ParamsPanel.
|
9121
|
-
" Ogre::DisplayString ParamsPanel.
|
9119
|
+
Ruby_Format_OverloadedError( argc, 3, "ParamsPanel.get_param_value",
|
9120
|
+
" Ogre::DisplayString ParamsPanel.get_param_value(Ogre::DisplayString const ¶mName)\n"
|
9121
|
+
" Ogre::DisplayString ParamsPanel.get_param_value(unsigned int index)\n");
|
9122
9122
|
|
9123
9123
|
return Qnil;
|
9124
9124
|
}
|
9125
9125
|
|
9126
9126
|
|
9127
9127
|
SWIGINTERN VALUE
|
9128
|
-
|
9128
|
+
_wrap_ParamsPanel_get_all_param_values(int argc, VALUE *argv, VALUE self) {
|
9129
9129
|
OgreBites::ParamsPanel *arg1 = (OgreBites::ParamsPanel *) 0 ;
|
9130
9130
|
void *argp1 = 0 ;
|
9131
9131
|
int res1 = 0 ;
|
@@ -9182,7 +9182,7 @@ _wrap_new_CheckBox(int argc, VALUE *argv, VALUE self) {
|
|
9182
9182
|
int res2 = 0 ;
|
9183
9183
|
float val3 ;
|
9184
9184
|
int ecode3 = 0 ;
|
9185
|
-
const char *classname SWIGUNUSED = "
|
9185
|
+
const char *classname SWIGUNUSED = "Ogrebites::CheckBox";
|
9186
9186
|
OgreBites::CheckBox *result = 0 ;
|
9187
9187
|
|
9188
9188
|
if ((argc < 3) || (argc > 3)) {
|
@@ -9223,7 +9223,7 @@ fail:
|
|
9223
9223
|
|
9224
9224
|
|
9225
9225
|
SWIGINTERN VALUE
|
9226
|
-
|
9226
|
+
_wrap_CheckBox_get_caption(int argc, VALUE *argv, VALUE self) {
|
9227
9227
|
OgreBites::CheckBox *arg1 = (OgreBites::CheckBox *) 0 ;
|
9228
9228
|
void *argp1 = 0 ;
|
9229
9229
|
int res1 = 0 ;
|
@@ -9247,7 +9247,7 @@ fail:
|
|
9247
9247
|
|
9248
9248
|
|
9249
9249
|
SWIGINTERN VALUE
|
9250
|
-
|
9250
|
+
_wrap_CheckBox_set_caption(int argc, VALUE *argv, VALUE self) {
|
9251
9251
|
OgreBites::CheckBox *arg1 = (OgreBites::CheckBox *) 0 ;
|
9252
9252
|
Ogre::DisplayString *arg2 = 0 ;
|
9253
9253
|
void *argp1 = 0 ;
|
@@ -9279,7 +9279,7 @@ fail:
|
|
9279
9279
|
|
9280
9280
|
|
9281
9281
|
SWIGINTERN VALUE
|
9282
|
-
|
9282
|
+
_wrap_CheckBox_is_checked(int argc, VALUE *argv, VALUE self) {
|
9283
9283
|
OgreBites::CheckBox *arg1 = (OgreBites::CheckBox *) 0 ;
|
9284
9284
|
void *argp1 = 0 ;
|
9285
9285
|
int res1 = 0 ;
|
@@ -9303,7 +9303,7 @@ fail:
|
|
9303
9303
|
|
9304
9304
|
|
9305
9305
|
SWIGINTERN VALUE
|
9306
|
-
|
9306
|
+
_wrap_CheckBox_set_checked__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
9307
9307
|
OgreBites::CheckBox *arg1 = (OgreBites::CheckBox *) 0 ;
|
9308
9308
|
bool arg2 ;
|
9309
9309
|
bool arg3 ;
|
@@ -9340,7 +9340,7 @@ fail:
|
|
9340
9340
|
|
9341
9341
|
|
9342
9342
|
SWIGINTERN VALUE
|
9343
|
-
|
9343
|
+
_wrap_CheckBox_set_checked__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
9344
9344
|
OgreBites::CheckBox *arg1 = (OgreBites::CheckBox *) 0 ;
|
9345
9345
|
bool arg2 ;
|
9346
9346
|
void *argp1 = 0 ;
|
@@ -9368,7 +9368,7 @@ fail:
|
|
9368
9368
|
}
|
9369
9369
|
|
9370
9370
|
|
9371
|
-
SWIGINTERN VALUE
|
9371
|
+
SWIGINTERN VALUE _wrap_CheckBox_set_checked(int nargs, VALUE *args, VALUE self) {
|
9372
9372
|
int argc;
|
9373
9373
|
VALUE argv[4];
|
9374
9374
|
int ii;
|
@@ -9390,7 +9390,7 @@ SWIGINTERN VALUE _wrap_CheckBox_setChecked(int nargs, VALUE *args, VALUE self) {
|
|
9390
9390
|
_v = SWIG_CheckState(res);
|
9391
9391
|
}
|
9392
9392
|
if (_v) {
|
9393
|
-
return
|
9393
|
+
return _wrap_CheckBox_set_checked__SWIG_1(nargs, args, self);
|
9394
9394
|
}
|
9395
9395
|
}
|
9396
9396
|
}
|
@@ -9410,16 +9410,16 @@ SWIGINTERN VALUE _wrap_CheckBox_setChecked(int nargs, VALUE *args, VALUE self) {
|
|
9410
9410
|
_v = SWIG_CheckState(res);
|
9411
9411
|
}
|
9412
9412
|
if (_v) {
|
9413
|
-
return
|
9413
|
+
return _wrap_CheckBox_set_checked__SWIG_0(nargs, args, self);
|
9414
9414
|
}
|
9415
9415
|
}
|
9416
9416
|
}
|
9417
9417
|
}
|
9418
9418
|
|
9419
9419
|
fail:
|
9420
|
-
Ruby_Format_OverloadedError( argc, 4, "CheckBox.
|
9421
|
-
" void CheckBox.
|
9422
|
-
" void CheckBox.
|
9420
|
+
Ruby_Format_OverloadedError( argc, 4, "CheckBox.set_checked",
|
9421
|
+
" void CheckBox.set_checked(bool checked, bool notifyListener)\n"
|
9422
|
+
" void CheckBox.set_checked(bool checked)\n");
|
9423
9423
|
|
9424
9424
|
return Qnil;
|
9425
9425
|
}
|
@@ -9521,7 +9521,7 @@ fail:
|
|
9521
9521
|
|
9522
9522
|
|
9523
9523
|
SWIGINTERN VALUE
|
9524
|
-
|
9524
|
+
_wrap_CheckBox__cursor_pressed(int argc, VALUE *argv, VALUE self) {
|
9525
9525
|
OgreBites::CheckBox *arg1 = (OgreBites::CheckBox *) 0 ;
|
9526
9526
|
Ogre::Vector2 *arg2 = 0 ;
|
9527
9527
|
void *argp1 = 0 ;
|
@@ -9553,7 +9553,7 @@ fail:
|
|
9553
9553
|
|
9554
9554
|
|
9555
9555
|
SWIGINTERN VALUE
|
9556
|
-
|
9556
|
+
_wrap_CheckBox__cursor_moved(int argc, VALUE *argv, VALUE self) {
|
9557
9557
|
OgreBites::CheckBox *arg1 = (OgreBites::CheckBox *) 0 ;
|
9558
9558
|
Ogre::Vector2 *arg2 = 0 ;
|
9559
9559
|
void *argp1 = 0 ;
|
@@ -9585,7 +9585,7 @@ fail:
|
|
9585
9585
|
|
9586
9586
|
|
9587
9587
|
SWIGINTERN VALUE
|
9588
|
-
|
9588
|
+
_wrap_CheckBox__focus_lost(int argc, VALUE *argv, VALUE self) {
|
9589
9589
|
OgreBites::CheckBox *arg1 = (OgreBites::CheckBox *) 0 ;
|
9590
9590
|
void *argp1 = 0 ;
|
9591
9591
|
int res1 = 0 ;
|
@@ -9635,7 +9635,7 @@ _wrap_new_DecorWidget(int argc, VALUE *argv, VALUE self) {
|
|
9635
9635
|
Ogre::String *arg2 = 0 ;
|
9636
9636
|
int res1 = SWIG_OLDOBJ ;
|
9637
9637
|
int res2 = SWIG_OLDOBJ ;
|
9638
|
-
const char *classname SWIGUNUSED = "
|
9638
|
+
const char *classname SWIGUNUSED = "Ogrebites::DecorWidget";
|
9639
9639
|
OgreBites::DecorWidget *result = 0 ;
|
9640
9640
|
|
9641
9641
|
if ((argc < 2) || (argc > 2)) {
|
@@ -9712,7 +9712,7 @@ _wrap_new_ProgressBar(int argc, VALUE *argv, VALUE self) {
|
|
9712
9712
|
int ecode3 = 0 ;
|
9713
9713
|
float val4 ;
|
9714
9714
|
int ecode4 = 0 ;
|
9715
|
-
const char *classname SWIGUNUSED = "
|
9715
|
+
const char *classname SWIGUNUSED = "Ogrebites::ProgressBar";
|
9716
9716
|
OgreBites::ProgressBar *result = 0 ;
|
9717
9717
|
|
9718
9718
|
if ((argc < 4) || (argc > 4)) {
|
@@ -9758,7 +9758,7 @@ fail:
|
|
9758
9758
|
|
9759
9759
|
|
9760
9760
|
SWIGINTERN VALUE
|
9761
|
-
|
9761
|
+
_wrap_ProgressBar_set_progress(int argc, VALUE *argv, VALUE self) {
|
9762
9762
|
OgreBites::ProgressBar *arg1 = (OgreBites::ProgressBar *) 0 ;
|
9763
9763
|
Ogre::Real arg2 ;
|
9764
9764
|
void *argp1 = 0 ;
|
@@ -9787,7 +9787,7 @@ fail:
|
|
9787
9787
|
|
9788
9788
|
|
9789
9789
|
SWIGINTERN VALUE
|
9790
|
-
|
9790
|
+
_wrap_ProgressBar_get_progress(int argc, VALUE *argv, VALUE self) {
|
9791
9791
|
OgreBites::ProgressBar *arg1 = (OgreBites::ProgressBar *) 0 ;
|
9792
9792
|
void *argp1 = 0 ;
|
9793
9793
|
int res1 = 0 ;
|
@@ -9811,7 +9811,7 @@ fail:
|
|
9811
9811
|
|
9812
9812
|
|
9813
9813
|
SWIGINTERN VALUE
|
9814
|
-
|
9814
|
+
_wrap_ProgressBar_get_caption(int argc, VALUE *argv, VALUE self) {
|
9815
9815
|
OgreBites::ProgressBar *arg1 = (OgreBites::ProgressBar *) 0 ;
|
9816
9816
|
void *argp1 = 0 ;
|
9817
9817
|
int res1 = 0 ;
|
@@ -9835,7 +9835,7 @@ fail:
|
|
9835
9835
|
|
9836
9836
|
|
9837
9837
|
SWIGINTERN VALUE
|
9838
|
-
|
9838
|
+
_wrap_ProgressBar_set_caption(int argc, VALUE *argv, VALUE self) {
|
9839
9839
|
OgreBites::ProgressBar *arg1 = (OgreBites::ProgressBar *) 0 ;
|
9840
9840
|
Ogre::DisplayString *arg2 = 0 ;
|
9841
9841
|
void *argp1 = 0 ;
|
@@ -9867,7 +9867,7 @@ fail:
|
|
9867
9867
|
|
9868
9868
|
|
9869
9869
|
SWIGINTERN VALUE
|
9870
|
-
|
9870
|
+
_wrap_ProgressBar_get_comment(int argc, VALUE *argv, VALUE self) {
|
9871
9871
|
OgreBites::ProgressBar *arg1 = (OgreBites::ProgressBar *) 0 ;
|
9872
9872
|
void *argp1 = 0 ;
|
9873
9873
|
int res1 = 0 ;
|
@@ -9891,7 +9891,7 @@ fail:
|
|
9891
9891
|
|
9892
9892
|
|
9893
9893
|
SWIGINTERN VALUE
|
9894
|
-
|
9894
|
+
_wrap_ProgressBar_set_comment(int argc, VALUE *argv, VALUE self) {
|
9895
9895
|
OgreBites::ProgressBar *arg1 = (OgreBites::ProgressBar *) 0 ;
|
9896
9896
|
Ogre::DisplayString *arg2 = 0 ;
|
9897
9897
|
void *argp1 = 0 ;
|
@@ -9942,7 +9942,7 @@ _wrap_new_SdkTrayManager__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
|
9942
9942
|
int res3 = 0 ;
|
9943
9943
|
void *argp4 = 0 ;
|
9944
9944
|
int res4 = 0 ;
|
9945
|
-
const char *classname SWIGUNUSED = "
|
9945
|
+
const char *classname SWIGUNUSED = "Ogrebites::SdkTrayManager";
|
9946
9946
|
OgreBites::SdkTrayManager *result = 0 ;
|
9947
9947
|
|
9948
9948
|
if ((argc < 4) || (argc > 4)) {
|
@@ -10011,7 +10011,7 @@ _wrap_new_SdkTrayManager__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
|
10011
10011
|
int res2 = 0 ;
|
10012
10012
|
void *argp3 = 0 ;
|
10013
10013
|
int res3 = 0 ;
|
10014
|
-
const char *classname SWIGUNUSED = "
|
10014
|
+
const char *classname SWIGUNUSED = "Ogrebites::SdkTrayManager";
|
10015
10015
|
OgreBites::SdkTrayManager *result = 0 ;
|
10016
10016
|
|
10017
10017
|
if ((argc < 3) || (argc > 3)) {
|
@@ -10110,7 +10110,7 @@ fail:
|
|
10110
10110
|
|
10111
10111
|
|
10112
10112
|
SWIGINTERN VALUE
|
10113
|
-
|
10113
|
+
_wrap_SdkTrayManager_screen_to_scene(int argc, VALUE *argv, VALUE self) {
|
10114
10114
|
Ogre::Camera *arg1 = (Ogre::Camera *) 0 ;
|
10115
10115
|
Ogre::Vector2 *arg2 = 0 ;
|
10116
10116
|
void *argp1 = 0 ;
|
@@ -10145,7 +10145,7 @@ fail:
|
|
10145
10145
|
|
10146
10146
|
|
10147
10147
|
SWIGINTERN VALUE
|
10148
|
-
|
10148
|
+
_wrap_SdkTrayManager_scene_to_screen(int argc, VALUE *argv, VALUE self) {
|
10149
10149
|
Ogre::Camera *arg1 = (Ogre::Camera *) 0 ;
|
10150
10150
|
Ogre::Vector3 *arg2 = 0 ;
|
10151
10151
|
void *argp1 = 0 ;
|
@@ -10180,7 +10180,7 @@ fail:
|
|
10180
10180
|
|
10181
10181
|
|
10182
10182
|
SWIGINTERN VALUE
|
10183
|
-
|
10183
|
+
_wrap_SdkTrayManager_get_tray_container(int argc, VALUE *argv, VALUE self) {
|
10184
10184
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10185
10185
|
OgreBites::TrayLocation arg2 ;
|
10186
10186
|
void *argp1 = 0 ;
|
@@ -10212,7 +10212,7 @@ fail:
|
|
10212
10212
|
|
10213
10213
|
|
10214
10214
|
SWIGINTERN VALUE
|
10215
|
-
|
10215
|
+
_wrap_SdkTrayManager_get_backdrop_layer(int argc, VALUE *argv, VALUE self) {
|
10216
10216
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10217
10217
|
void *argp1 = 0 ;
|
10218
10218
|
int res1 = 0 ;
|
@@ -10236,7 +10236,7 @@ fail:
|
|
10236
10236
|
|
10237
10237
|
|
10238
10238
|
SWIGINTERN VALUE
|
10239
|
-
|
10239
|
+
_wrap_SdkTrayManager_get_trays_layer(int argc, VALUE *argv, VALUE self) {
|
10240
10240
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10241
10241
|
void *argp1 = 0 ;
|
10242
10242
|
int res1 = 0 ;
|
@@ -10260,7 +10260,7 @@ fail:
|
|
10260
10260
|
|
10261
10261
|
|
10262
10262
|
SWIGINTERN VALUE
|
10263
|
-
|
10263
|
+
_wrap_SdkTrayManager_get_cursor_layer(int argc, VALUE *argv, VALUE self) {
|
10264
10264
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10265
10265
|
void *argp1 = 0 ;
|
10266
10266
|
int res1 = 0 ;
|
@@ -10284,7 +10284,7 @@ fail:
|
|
10284
10284
|
|
10285
10285
|
|
10286
10286
|
SWIGINTERN VALUE
|
10287
|
-
|
10287
|
+
_wrap_SdkTrayManager_get_backdrop_container(int argc, VALUE *argv, VALUE self) {
|
10288
10288
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10289
10289
|
void *argp1 = 0 ;
|
10290
10290
|
int res1 = 0 ;
|
@@ -10308,7 +10308,7 @@ fail:
|
|
10308
10308
|
|
10309
10309
|
|
10310
10310
|
SWIGINTERN VALUE
|
10311
|
-
|
10311
|
+
_wrap_SdkTrayManager_get_cursor_container(int argc, VALUE *argv, VALUE self) {
|
10312
10312
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10313
10313
|
void *argp1 = 0 ;
|
10314
10314
|
int res1 = 0 ;
|
@@ -10332,7 +10332,7 @@ fail:
|
|
10332
10332
|
|
10333
10333
|
|
10334
10334
|
SWIGINTERN VALUE
|
10335
|
-
|
10335
|
+
_wrap_SdkTrayManager_get_cursor_image(int argc, VALUE *argv, VALUE self) {
|
10336
10336
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10337
10337
|
void *argp1 = 0 ;
|
10338
10338
|
int res1 = 0 ;
|
@@ -10356,7 +10356,7 @@ fail:
|
|
10356
10356
|
|
10357
10357
|
|
10358
10358
|
SWIGINTERN VALUE
|
10359
|
-
|
10359
|
+
_wrap_SdkTrayManager_set_listener(int argc, VALUE *argv, VALUE self) {
|
10360
10360
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10361
10361
|
OgreBites::SdkTrayListener *arg2 = (OgreBites::SdkTrayListener *) 0 ;
|
10362
10362
|
void *argp1 = 0 ;
|
@@ -10385,7 +10385,7 @@ fail:
|
|
10385
10385
|
|
10386
10386
|
|
10387
10387
|
SWIGINTERN VALUE
|
10388
|
-
|
10388
|
+
_wrap_SdkTrayManager_get_listener(int argc, VALUE *argv, VALUE self) {
|
10389
10389
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10390
10390
|
void *argp1 = 0 ;
|
10391
10391
|
int res1 = 0 ;
|
@@ -10415,7 +10415,7 @@ fail:
|
|
10415
10415
|
|
10416
10416
|
|
10417
10417
|
SWIGINTERN VALUE
|
10418
|
-
|
10418
|
+
_wrap_SdkTrayManager_show_all(int argc, VALUE *argv, VALUE self) {
|
10419
10419
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10420
10420
|
void *argp1 = 0 ;
|
10421
10421
|
int res1 = 0 ;
|
@@ -10436,7 +10436,7 @@ fail:
|
|
10436
10436
|
|
10437
10437
|
|
10438
10438
|
SWIGINTERN VALUE
|
10439
|
-
|
10439
|
+
_wrap_SdkTrayManager_hide_all(int argc, VALUE *argv, VALUE self) {
|
10440
10440
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10441
10441
|
void *argp1 = 0 ;
|
10442
10442
|
int res1 = 0 ;
|
@@ -10457,7 +10457,7 @@ fail:
|
|
10457
10457
|
|
10458
10458
|
|
10459
10459
|
SWIGINTERN VALUE
|
10460
|
-
|
10460
|
+
_wrap_SdkTrayManager_show_backdrop__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
10461
10461
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10462
10462
|
Ogre::String *arg2 = 0 ;
|
10463
10463
|
void *argp1 = 0 ;
|
@@ -10493,7 +10493,7 @@ fail:
|
|
10493
10493
|
|
10494
10494
|
|
10495
10495
|
SWIGINTERN VALUE
|
10496
|
-
|
10496
|
+
_wrap_SdkTrayManager_show_backdrop__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
10497
10497
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10498
10498
|
void *argp1 = 0 ;
|
10499
10499
|
int res1 = 0 ;
|
@@ -10513,7 +10513,7 @@ fail:
|
|
10513
10513
|
}
|
10514
10514
|
|
10515
10515
|
|
10516
|
-
SWIGINTERN VALUE
|
10516
|
+
SWIGINTERN VALUE _wrap_SdkTrayManager_show_backdrop(int nargs, VALUE *args, VALUE self) {
|
10517
10517
|
int argc;
|
10518
10518
|
VALUE argv[3];
|
10519
10519
|
int ii;
|
@@ -10530,7 +10530,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_showBackdrop(int nargs, VALUE *args, VALUE
|
|
10530
10530
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_OgreBites__SdkTrayManager, 0);
|
10531
10531
|
_v = SWIG_CheckState(res);
|
10532
10532
|
if (_v) {
|
10533
|
-
return
|
10533
|
+
return _wrap_SdkTrayManager_show_backdrop__SWIG_1(nargs, args, self);
|
10534
10534
|
}
|
10535
10535
|
}
|
10536
10536
|
if (argc == 2) {
|
@@ -10542,22 +10542,22 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_showBackdrop(int nargs, VALUE *args, VALUE
|
|
10542
10542
|
int res = SWIG_AsPtr_std_string(argv[1], (std::string**)(0));
|
10543
10543
|
_v = SWIG_CheckState(res);
|
10544
10544
|
if (_v) {
|
10545
|
-
return
|
10545
|
+
return _wrap_SdkTrayManager_show_backdrop__SWIG_0(nargs, args, self);
|
10546
10546
|
}
|
10547
10547
|
}
|
10548
10548
|
}
|
10549
10549
|
|
10550
10550
|
fail:
|
10551
|
-
Ruby_Format_OverloadedError( argc, 3, "SdkTrayManager.
|
10552
|
-
" void SdkTrayManager.
|
10553
|
-
" void SdkTrayManager.
|
10551
|
+
Ruby_Format_OverloadedError( argc, 3, "SdkTrayManager.show_backdrop",
|
10552
|
+
" void SdkTrayManager.show_backdrop(Ogre::String const &materialName)\n"
|
10553
|
+
" void SdkTrayManager.show_backdrop()\n");
|
10554
10554
|
|
10555
10555
|
return Qnil;
|
10556
10556
|
}
|
10557
10557
|
|
10558
10558
|
|
10559
10559
|
SWIGINTERN VALUE
|
10560
|
-
|
10560
|
+
_wrap_SdkTrayManager_hide_backdrop(int argc, VALUE *argv, VALUE self) {
|
10561
10561
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10562
10562
|
void *argp1 = 0 ;
|
10563
10563
|
int res1 = 0 ;
|
@@ -10578,7 +10578,7 @@ fail:
|
|
10578
10578
|
|
10579
10579
|
|
10580
10580
|
SWIGINTERN VALUE
|
10581
|
-
|
10581
|
+
_wrap_SdkTrayManager_show_cursor__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
10582
10582
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10583
10583
|
Ogre::String *arg2 = 0 ;
|
10584
10584
|
void *argp1 = 0 ;
|
@@ -10614,7 +10614,7 @@ fail:
|
|
10614
10614
|
|
10615
10615
|
|
10616
10616
|
SWIGINTERN VALUE
|
10617
|
-
|
10617
|
+
_wrap_SdkTrayManager_show_cursor__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
10618
10618
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10619
10619
|
void *argp1 = 0 ;
|
10620
10620
|
int res1 = 0 ;
|
@@ -10634,7 +10634,7 @@ fail:
|
|
10634
10634
|
}
|
10635
10635
|
|
10636
10636
|
|
10637
|
-
SWIGINTERN VALUE
|
10637
|
+
SWIGINTERN VALUE _wrap_SdkTrayManager_show_cursor(int nargs, VALUE *args, VALUE self) {
|
10638
10638
|
int argc;
|
10639
10639
|
VALUE argv[3];
|
10640
10640
|
int ii;
|
@@ -10651,7 +10651,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_showCursor(int nargs, VALUE *args, VALUE s
|
|
10651
10651
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_OgreBites__SdkTrayManager, 0);
|
10652
10652
|
_v = SWIG_CheckState(res);
|
10653
10653
|
if (_v) {
|
10654
|
-
return
|
10654
|
+
return _wrap_SdkTrayManager_show_cursor__SWIG_1(nargs, args, self);
|
10655
10655
|
}
|
10656
10656
|
}
|
10657
10657
|
if (argc == 2) {
|
@@ -10663,22 +10663,22 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_showCursor(int nargs, VALUE *args, VALUE s
|
|
10663
10663
|
int res = SWIG_AsPtr_std_string(argv[1], (std::string**)(0));
|
10664
10664
|
_v = SWIG_CheckState(res);
|
10665
10665
|
if (_v) {
|
10666
|
-
return
|
10666
|
+
return _wrap_SdkTrayManager_show_cursor__SWIG_0(nargs, args, self);
|
10667
10667
|
}
|
10668
10668
|
}
|
10669
10669
|
}
|
10670
10670
|
|
10671
10671
|
fail:
|
10672
|
-
Ruby_Format_OverloadedError( argc, 3, "SdkTrayManager.
|
10673
|
-
" void SdkTrayManager.
|
10674
|
-
" void SdkTrayManager.
|
10672
|
+
Ruby_Format_OverloadedError( argc, 3, "SdkTrayManager.show_cursor",
|
10673
|
+
" void SdkTrayManager.show_cursor(Ogre::String const &materialName)\n"
|
10674
|
+
" void SdkTrayManager.show_cursor()\n");
|
10675
10675
|
|
10676
10676
|
return Qnil;
|
10677
10677
|
}
|
10678
10678
|
|
10679
10679
|
|
10680
10680
|
SWIGINTERN VALUE
|
10681
|
-
|
10681
|
+
_wrap_SdkTrayManager_hide_cursor(int argc, VALUE *argv, VALUE self) {
|
10682
10682
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10683
10683
|
void *argp1 = 0 ;
|
10684
10684
|
int res1 = 0 ;
|
@@ -10699,7 +10699,7 @@ fail:
|
|
10699
10699
|
|
10700
10700
|
|
10701
10701
|
SWIGINTERN VALUE
|
10702
|
-
|
10702
|
+
_wrap_SdkTrayManager_refresh_cursor(int argc, VALUE *argv, VALUE self) {
|
10703
10703
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10704
10704
|
void *argp1 = 0 ;
|
10705
10705
|
int res1 = 0 ;
|
@@ -10720,7 +10720,7 @@ fail:
|
|
10720
10720
|
|
10721
10721
|
|
10722
10722
|
SWIGINTERN VALUE
|
10723
|
-
|
10723
|
+
_wrap_SdkTrayManager_show_trays(int argc, VALUE *argv, VALUE self) {
|
10724
10724
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10725
10725
|
void *argp1 = 0 ;
|
10726
10726
|
int res1 = 0 ;
|
@@ -10741,7 +10741,7 @@ fail:
|
|
10741
10741
|
|
10742
10742
|
|
10743
10743
|
SWIGINTERN VALUE
|
10744
|
-
|
10744
|
+
_wrap_SdkTrayManager_hide_trays(int argc, VALUE *argv, VALUE self) {
|
10745
10745
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10746
10746
|
void *argp1 = 0 ;
|
10747
10747
|
int res1 = 0 ;
|
@@ -10762,7 +10762,7 @@ fail:
|
|
10762
10762
|
|
10763
10763
|
|
10764
10764
|
SWIGINTERN VALUE
|
10765
|
-
|
10765
|
+
_wrap_SdkTrayManager_is_cursor_visible(int argc, VALUE *argv, VALUE self) {
|
10766
10766
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10767
10767
|
void *argp1 = 0 ;
|
10768
10768
|
int res1 = 0 ;
|
@@ -10786,7 +10786,7 @@ fail:
|
|
10786
10786
|
|
10787
10787
|
|
10788
10788
|
SWIGINTERN VALUE
|
10789
|
-
|
10789
|
+
_wrap_SdkTrayManager_is_backdrop_visible(int argc, VALUE *argv, VALUE self) {
|
10790
10790
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10791
10791
|
void *argp1 = 0 ;
|
10792
10792
|
int res1 = 0 ;
|
@@ -10810,7 +10810,7 @@ fail:
|
|
10810
10810
|
|
10811
10811
|
|
10812
10812
|
SWIGINTERN VALUE
|
10813
|
-
|
10813
|
+
_wrap_SdkTrayManager_are_trays_visible(int argc, VALUE *argv, VALUE self) {
|
10814
10814
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10815
10815
|
void *argp1 = 0 ;
|
10816
10816
|
int res1 = 0 ;
|
@@ -10834,7 +10834,7 @@ fail:
|
|
10834
10834
|
|
10835
10835
|
|
10836
10836
|
SWIGINTERN VALUE
|
10837
|
-
|
10837
|
+
_wrap_SdkTrayManager_set_tray_widget_alignment(int argc, VALUE *argv, VALUE self) {
|
10838
10838
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10839
10839
|
OgreBites::TrayLocation arg2 ;
|
10840
10840
|
Ogre::GuiHorizontalAlignment arg3 ;
|
@@ -10871,7 +10871,7 @@ fail:
|
|
10871
10871
|
|
10872
10872
|
|
10873
10873
|
SWIGINTERN VALUE
|
10874
|
-
|
10874
|
+
_wrap_SdkTrayManager_set_widget_padding(int argc, VALUE *argv, VALUE self) {
|
10875
10875
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10876
10876
|
Ogre::Real arg2 ;
|
10877
10877
|
void *argp1 = 0 ;
|
@@ -10900,7 +10900,7 @@ fail:
|
|
10900
10900
|
|
10901
10901
|
|
10902
10902
|
SWIGINTERN VALUE
|
10903
|
-
|
10903
|
+
_wrap_SdkTrayManager_set_widget_spacing(int argc, VALUE *argv, VALUE self) {
|
10904
10904
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10905
10905
|
Ogre::Real arg2 ;
|
10906
10906
|
void *argp1 = 0 ;
|
@@ -10929,7 +10929,7 @@ fail:
|
|
10929
10929
|
|
10930
10930
|
|
10931
10931
|
SWIGINTERN VALUE
|
10932
|
-
|
10932
|
+
_wrap_SdkTrayManager_set_tray_padding(int argc, VALUE *argv, VALUE self) {
|
10933
10933
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10934
10934
|
Ogre::Real arg2 ;
|
10935
10935
|
void *argp1 = 0 ;
|
@@ -10958,7 +10958,7 @@ fail:
|
|
10958
10958
|
|
10959
10959
|
|
10960
10960
|
SWIGINTERN VALUE
|
10961
|
-
|
10961
|
+
_wrap_SdkTrayManager_get_widget_padding(int argc, VALUE *argv, VALUE self) {
|
10962
10962
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10963
10963
|
void *argp1 = 0 ;
|
10964
10964
|
int res1 = 0 ;
|
@@ -10982,7 +10982,7 @@ fail:
|
|
10982
10982
|
|
10983
10983
|
|
10984
10984
|
SWIGINTERN VALUE
|
10985
|
-
|
10985
|
+
_wrap_SdkTrayManager_get_widget_spacing(int argc, VALUE *argv, VALUE self) {
|
10986
10986
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
10987
10987
|
void *argp1 = 0 ;
|
10988
10988
|
int res1 = 0 ;
|
@@ -11006,7 +11006,7 @@ fail:
|
|
11006
11006
|
|
11007
11007
|
|
11008
11008
|
SWIGINTERN VALUE
|
11009
|
-
|
11009
|
+
_wrap_SdkTrayManager_get_tray_padding(int argc, VALUE *argv, VALUE self) {
|
11010
11010
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
11011
11011
|
void *argp1 = 0 ;
|
11012
11012
|
int res1 = 0 ;
|
@@ -11030,7 +11030,7 @@ fail:
|
|
11030
11030
|
|
11031
11031
|
|
11032
11032
|
SWIGINTERN VALUE
|
11033
|
-
|
11033
|
+
_wrap_SdkTrayManager_adjust_trays(int argc, VALUE *argv, VALUE self) {
|
11034
11034
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
11035
11035
|
void *argp1 = 0 ;
|
11036
11036
|
int res1 = 0 ;
|
@@ -11051,7 +11051,7 @@ fail:
|
|
11051
11051
|
|
11052
11052
|
|
11053
11053
|
SWIGINTERN VALUE
|
11054
|
-
|
11054
|
+
_wrap_SdkTrayManager_get_cursor_ray(int argc, VALUE *argv, VALUE self) {
|
11055
11055
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
11056
11056
|
Ogre::Camera *arg2 = (Ogre::Camera *) 0 ;
|
11057
11057
|
void *argp1 = 0 ;
|
@@ -11083,7 +11083,7 @@ fail:
|
|
11083
11083
|
|
11084
11084
|
|
11085
11085
|
SWIGINTERN VALUE
|
11086
|
-
|
11086
|
+
_wrap_SdkTrayManager_create_button__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
11087
11087
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
11088
11088
|
OgreBites::TrayLocation arg2 ;
|
11089
11089
|
Ogre::String *arg3 = 0 ;
|
@@ -11153,7 +11153,7 @@ fail:
|
|
11153
11153
|
|
11154
11154
|
|
11155
11155
|
SWIGINTERN VALUE
|
11156
|
-
|
11156
|
+
_wrap_SdkTrayManager_create_button__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
11157
11157
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
11158
11158
|
OgreBites::TrayLocation arg2 ;
|
11159
11159
|
Ogre::String *arg3 = 0 ;
|
@@ -11214,7 +11214,7 @@ fail:
|
|
11214
11214
|
}
|
11215
11215
|
|
11216
11216
|
|
11217
|
-
SWIGINTERN VALUE
|
11217
|
+
SWIGINTERN VALUE _wrap_SdkTrayManager_create_button(int nargs, VALUE *args, VALUE self) {
|
11218
11218
|
int argc;
|
11219
11219
|
VALUE argv[6];
|
11220
11220
|
int ii;
|
@@ -11242,7 +11242,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createButton(int nargs, VALUE *args, VALUE
|
|
11242
11242
|
int res = SWIG_AsPtr_std_string(argv[3], (std::string**)(0));
|
11243
11243
|
_v = SWIG_CheckState(res);
|
11244
11244
|
if (_v) {
|
11245
|
-
return
|
11245
|
+
return _wrap_SdkTrayManager_create_button__SWIG_1(nargs, args, self);
|
11246
11246
|
}
|
11247
11247
|
}
|
11248
11248
|
}
|
@@ -11270,7 +11270,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createButton(int nargs, VALUE *args, VALUE
|
|
11270
11270
|
_v = SWIG_CheckState(res);
|
11271
11271
|
}
|
11272
11272
|
if (_v) {
|
11273
|
-
return
|
11273
|
+
return _wrap_SdkTrayManager_create_button__SWIG_0(nargs, args, self);
|
11274
11274
|
}
|
11275
11275
|
}
|
11276
11276
|
}
|
@@ -11279,16 +11279,16 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createButton(int nargs, VALUE *args, VALUE
|
|
11279
11279
|
}
|
11280
11280
|
|
11281
11281
|
fail:
|
11282
|
-
Ruby_Format_OverloadedError( argc, 6, "SdkTrayManager.
|
11283
|
-
" OgreBites::Button * SdkTrayManager.
|
11284
|
-
" OgreBites::Button * SdkTrayManager.
|
11282
|
+
Ruby_Format_OverloadedError( argc, 6, "SdkTrayManager.create_button",
|
11283
|
+
" OgreBites::Button * SdkTrayManager.create_button(OgreBites::TrayLocation trayLoc, Ogre::String const &name, Ogre::String const &caption, Ogre::Real width)\n"
|
11284
|
+
" OgreBites::Button * SdkTrayManager.create_button(OgreBites::TrayLocation trayLoc, Ogre::String const &name, Ogre::String const &caption)\n");
|
11285
11285
|
|
11286
11286
|
return Qnil;
|
11287
11287
|
}
|
11288
11288
|
|
11289
11289
|
|
11290
11290
|
SWIGINTERN VALUE
|
11291
|
-
|
11291
|
+
_wrap_SdkTrayManager_create_text_box(int argc, VALUE *argv, VALUE self) {
|
11292
11292
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
11293
11293
|
OgreBites::TrayLocation arg2 ;
|
11294
11294
|
Ogre::String *arg3 = 0 ;
|
@@ -11362,7 +11362,7 @@ fail:
|
|
11362
11362
|
|
11363
11363
|
|
11364
11364
|
SWIGINTERN VALUE
|
11365
|
-
|
11365
|
+
_wrap_SdkTrayManager_create_thick_select_menu__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
11366
11366
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
11367
11367
|
OgreBites::TrayLocation arg2 ;
|
11368
11368
|
Ogre::String *arg3 = 0 ;
|
@@ -11447,7 +11447,7 @@ fail:
|
|
11447
11447
|
|
11448
11448
|
|
11449
11449
|
SWIGINTERN VALUE
|
11450
|
-
|
11450
|
+
_wrap_SdkTrayManager_create_thick_select_menu__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
11451
11451
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
11452
11452
|
OgreBites::TrayLocation arg2 ;
|
11453
11453
|
Ogre::String *arg3 = 0 ;
|
@@ -11520,7 +11520,7 @@ fail:
|
|
11520
11520
|
}
|
11521
11521
|
|
11522
11522
|
|
11523
|
-
SWIGINTERN VALUE
|
11523
|
+
SWIGINTERN VALUE _wrap_SdkTrayManager_create_thick_select_menu(int nargs, VALUE *args, VALUE self) {
|
11524
11524
|
int argc;
|
11525
11525
|
VALUE argv[8];
|
11526
11526
|
int ii;
|
@@ -11559,7 +11559,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createThickSelectMenu(int nargs, VALUE *ar
|
|
11559
11559
|
_v = SWIG_CheckState(res);
|
11560
11560
|
}
|
11561
11561
|
if (_v) {
|
11562
|
-
return
|
11562
|
+
return _wrap_SdkTrayManager_create_thick_select_menu__SWIG_1(nargs, args, self);
|
11563
11563
|
}
|
11564
11564
|
}
|
11565
11565
|
}
|
@@ -11599,7 +11599,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createThickSelectMenu(int nargs, VALUE *ar
|
|
11599
11599
|
int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_Ogre__vectorT_Ogre__String_Ogre__STLAllocatorT_Ogre__String_Ogre__GeneralAllocPolicy_t_t__type, 0);
|
11600
11600
|
_v = SWIG_CheckState(res);
|
11601
11601
|
if (_v) {
|
11602
|
-
return
|
11602
|
+
return _wrap_SdkTrayManager_create_thick_select_menu__SWIG_0(nargs, args, self);
|
11603
11603
|
}
|
11604
11604
|
}
|
11605
11605
|
}
|
@@ -11610,16 +11610,16 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createThickSelectMenu(int nargs, VALUE *ar
|
|
11610
11610
|
}
|
11611
11611
|
|
11612
11612
|
fail:
|
11613
|
-
Ruby_Format_OverloadedError( argc, 8, "SdkTrayManager.
|
11614
|
-
" OgreBites::SelectMenu * SdkTrayManager.
|
11615
|
-
" OgreBites::SelectMenu * SdkTrayManager.
|
11613
|
+
Ruby_Format_OverloadedError( argc, 8, "SdkTrayManager.create_thick_select_menu",
|
11614
|
+
" OgreBites::SelectMenu * SdkTrayManager.create_thick_select_menu(OgreBites::TrayLocation trayLoc, Ogre::String const &name, Ogre::DisplayString const &caption, Ogre::Real width, unsigned int maxItemsShown, Ogre::StringVector const &items)\n"
|
11615
|
+
" OgreBites::SelectMenu * SdkTrayManager.create_thick_select_menu(OgreBites::TrayLocation trayLoc, Ogre::String const &name, Ogre::DisplayString const &caption, Ogre::Real width, unsigned int maxItemsShown)\n");
|
11616
11616
|
|
11617
11617
|
return Qnil;
|
11618
11618
|
}
|
11619
11619
|
|
11620
11620
|
|
11621
11621
|
SWIGINTERN VALUE
|
11622
|
-
|
11622
|
+
_wrap_SdkTrayManager_create_long_select_menu__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
11623
11623
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
11624
11624
|
OgreBites::TrayLocation arg2 ;
|
11625
11625
|
Ogre::String *arg3 = 0 ;
|
@@ -11712,7 +11712,7 @@ fail:
|
|
11712
11712
|
|
11713
11713
|
|
11714
11714
|
SWIGINTERN VALUE
|
11715
|
-
|
11715
|
+
_wrap_SdkTrayManager_create_long_select_menu__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
11716
11716
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
11717
11717
|
OgreBites::TrayLocation arg2 ;
|
11718
11718
|
Ogre::String *arg3 = 0 ;
|
@@ -11794,7 +11794,7 @@ fail:
|
|
11794
11794
|
|
11795
11795
|
|
11796
11796
|
SWIGINTERN VALUE
|
11797
|
-
|
11797
|
+
_wrap_SdkTrayManager_create_long_select_menu__SWIG_2(int argc, VALUE *argv, VALUE self) {
|
11798
11798
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
11799
11799
|
OgreBites::TrayLocation arg2 ;
|
11800
11800
|
Ogre::String *arg3 = 0 ;
|
@@ -11879,7 +11879,7 @@ fail:
|
|
11879
11879
|
|
11880
11880
|
|
11881
11881
|
SWIGINTERN VALUE
|
11882
|
-
|
11882
|
+
_wrap_SdkTrayManager_create_long_select_menu__SWIG_3(int argc, VALUE *argv, VALUE self) {
|
11883
11883
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
11884
11884
|
OgreBites::TrayLocation arg2 ;
|
11885
11885
|
Ogre::String *arg3 = 0 ;
|
@@ -11952,7 +11952,7 @@ fail:
|
|
11952
11952
|
}
|
11953
11953
|
|
11954
11954
|
|
11955
|
-
SWIGINTERN VALUE
|
11955
|
+
SWIGINTERN VALUE _wrap_SdkTrayManager_create_long_select_menu(int nargs, VALUE *args, VALUE self) {
|
11956
11956
|
int argc;
|
11957
11957
|
VALUE argv[9];
|
11958
11958
|
int ii;
|
@@ -11991,7 +11991,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createLongSelectMenu(int nargs, VALUE *arg
|
|
11991
11991
|
_v = SWIG_CheckState(res);
|
11992
11992
|
}
|
11993
11993
|
if (_v) {
|
11994
|
-
return
|
11994
|
+
return _wrap_SdkTrayManager_create_long_select_menu__SWIG_3(nargs, args, self);
|
11995
11995
|
}
|
11996
11996
|
}
|
11997
11997
|
}
|
@@ -12031,7 +12031,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createLongSelectMenu(int nargs, VALUE *arg
|
|
12031
12031
|
int res = SWIG_ConvertPtr(argv[6], &vptr, SWIGTYPE_p_Ogre__vectorT_Ogre__String_Ogre__STLAllocatorT_Ogre__String_Ogre__GeneralAllocPolicy_t_t__type, 0);
|
12032
12032
|
_v = SWIG_CheckState(res);
|
12033
12033
|
if (_v) {
|
12034
|
-
return
|
12034
|
+
return _wrap_SdkTrayManager_create_long_select_menu__SWIG_2(nargs, args, self);
|
12035
12035
|
}
|
12036
12036
|
}
|
12037
12037
|
}
|
@@ -12073,7 +12073,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createLongSelectMenu(int nargs, VALUE *arg
|
|
12073
12073
|
_v = SWIG_CheckState(res);
|
12074
12074
|
}
|
12075
12075
|
if (_v) {
|
12076
|
-
return
|
12076
|
+
return _wrap_SdkTrayManager_create_long_select_menu__SWIG_1(nargs, args, self);
|
12077
12077
|
}
|
12078
12078
|
}
|
12079
12079
|
}
|
@@ -12119,7 +12119,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createLongSelectMenu(int nargs, VALUE *arg
|
|
12119
12119
|
int res = SWIG_ConvertPtr(argv[7], &vptr, SWIGTYPE_p_Ogre__vectorT_Ogre__String_Ogre__STLAllocatorT_Ogre__String_Ogre__GeneralAllocPolicy_t_t__type, 0);
|
12120
12120
|
_v = SWIG_CheckState(res);
|
12121
12121
|
if (_v) {
|
12122
|
-
return
|
12122
|
+
return _wrap_SdkTrayManager_create_long_select_menu__SWIG_0(nargs, args, self);
|
12123
12123
|
}
|
12124
12124
|
}
|
12125
12125
|
}
|
@@ -12131,18 +12131,18 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createLongSelectMenu(int nargs, VALUE *arg
|
|
12131
12131
|
}
|
12132
12132
|
|
12133
12133
|
fail:
|
12134
|
-
Ruby_Format_OverloadedError( argc, 9, "SdkTrayManager.
|
12135
|
-
" OgreBites::SelectMenu * SdkTrayManager.
|
12136
|
-
" OgreBites::SelectMenu * SdkTrayManager.
|
12137
|
-
" OgreBites::SelectMenu * SdkTrayManager.
|
12138
|
-
" OgreBites::SelectMenu * SdkTrayManager.
|
12134
|
+
Ruby_Format_OverloadedError( argc, 9, "SdkTrayManager.create_long_select_menu",
|
12135
|
+
" OgreBites::SelectMenu * SdkTrayManager.create_long_select_menu(OgreBites::TrayLocation trayLoc, Ogre::String const &name, Ogre::DisplayString const &caption, Ogre::Real width, Ogre::Real boxWidth, unsigned int maxItemsShown, Ogre::StringVector const &items)\n"
|
12136
|
+
" OgreBites::SelectMenu * SdkTrayManager.create_long_select_menu(OgreBites::TrayLocation trayLoc, Ogre::String const &name, Ogre::DisplayString const &caption, Ogre::Real width, Ogre::Real boxWidth, unsigned int maxItemsShown)\n"
|
12137
|
+
" OgreBites::SelectMenu * SdkTrayManager.create_long_select_menu(OgreBites::TrayLocation trayLoc, Ogre::String const &name, Ogre::DisplayString const &caption, Ogre::Real boxWidth, unsigned int maxItemsShown, Ogre::StringVector const &items)\n"
|
12138
|
+
" OgreBites::SelectMenu * SdkTrayManager.create_long_select_menu(OgreBites::TrayLocation trayLoc, Ogre::String const &name, Ogre::DisplayString const &caption, Ogre::Real boxWidth, unsigned int maxItemsShown)\n");
|
12139
12139
|
|
12140
12140
|
return Qnil;
|
12141
12141
|
}
|
12142
12142
|
|
12143
12143
|
|
12144
12144
|
SWIGINTERN VALUE
|
12145
|
-
|
12145
|
+
_wrap_SdkTrayManager_create_label__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
12146
12146
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
12147
12147
|
OgreBites::TrayLocation arg2 ;
|
12148
12148
|
Ogre::String *arg3 = 0 ;
|
@@ -12208,7 +12208,7 @@ fail:
|
|
12208
12208
|
|
12209
12209
|
|
12210
12210
|
SWIGINTERN VALUE
|
12211
|
-
|
12211
|
+
_wrap_SdkTrayManager_create_label__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
12212
12212
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
12213
12213
|
OgreBites::TrayLocation arg2 ;
|
12214
12214
|
Ogre::String *arg3 = 0 ;
|
@@ -12265,7 +12265,7 @@ fail:
|
|
12265
12265
|
}
|
12266
12266
|
|
12267
12267
|
|
12268
|
-
SWIGINTERN VALUE
|
12268
|
+
SWIGINTERN VALUE _wrap_SdkTrayManager_create_label(int nargs, VALUE *args, VALUE self) {
|
12269
12269
|
int argc;
|
12270
12270
|
VALUE argv[6];
|
12271
12271
|
int ii;
|
@@ -12294,7 +12294,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createLabel(int nargs, VALUE *args, VALUE
|
|
12294
12294
|
int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_Ogre__UTFString, 0);
|
12295
12295
|
_v = SWIG_CheckState(res);
|
12296
12296
|
if (_v) {
|
12297
|
-
return
|
12297
|
+
return _wrap_SdkTrayManager_create_label__SWIG_1(nargs, args, self);
|
12298
12298
|
}
|
12299
12299
|
}
|
12300
12300
|
}
|
@@ -12323,7 +12323,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createLabel(int nargs, VALUE *args, VALUE
|
|
12323
12323
|
_v = SWIG_CheckState(res);
|
12324
12324
|
}
|
12325
12325
|
if (_v) {
|
12326
|
-
return
|
12326
|
+
return _wrap_SdkTrayManager_create_label__SWIG_0(nargs, args, self);
|
12327
12327
|
}
|
12328
12328
|
}
|
12329
12329
|
}
|
@@ -12332,16 +12332,16 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createLabel(int nargs, VALUE *args, VALUE
|
|
12332
12332
|
}
|
12333
12333
|
|
12334
12334
|
fail:
|
12335
|
-
Ruby_Format_OverloadedError( argc, 6, "SdkTrayManager.
|
12336
|
-
" OgreBites::Label * SdkTrayManager.
|
12337
|
-
" OgreBites::Label * SdkTrayManager.
|
12335
|
+
Ruby_Format_OverloadedError( argc, 6, "SdkTrayManager.create_label",
|
12336
|
+
" OgreBites::Label * SdkTrayManager.create_label(OgreBites::TrayLocation trayLoc, Ogre::String const &name, Ogre::DisplayString const &caption, Ogre::Real width)\n"
|
12337
|
+
" OgreBites::Label * SdkTrayManager.create_label(OgreBites::TrayLocation trayLoc, Ogre::String const &name, Ogre::DisplayString const &caption)\n");
|
12338
12338
|
|
12339
12339
|
return Qnil;
|
12340
12340
|
}
|
12341
12341
|
|
12342
12342
|
|
12343
12343
|
SWIGINTERN VALUE
|
12344
|
-
|
12344
|
+
_wrap_SdkTrayManager_create_separator__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
12345
12345
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
12346
12346
|
OgreBites::TrayLocation arg2 ;
|
12347
12347
|
Ogre::String *arg3 = 0 ;
|
@@ -12396,7 +12396,7 @@ fail:
|
|
12396
12396
|
|
12397
12397
|
|
12398
12398
|
SWIGINTERN VALUE
|
12399
|
-
|
12399
|
+
_wrap_SdkTrayManager_create_separator__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
12400
12400
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
12401
12401
|
OgreBites::TrayLocation arg2 ;
|
12402
12402
|
Ogre::String *arg3 = 0 ;
|
@@ -12442,7 +12442,7 @@ fail:
|
|
12442
12442
|
}
|
12443
12443
|
|
12444
12444
|
|
12445
|
-
SWIGINTERN VALUE
|
12445
|
+
SWIGINTERN VALUE _wrap_SdkTrayManager_create_separator(int nargs, VALUE *args, VALUE self) {
|
12446
12446
|
int argc;
|
12447
12447
|
VALUE argv[5];
|
12448
12448
|
int ii;
|
@@ -12467,7 +12467,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createSeparator(int nargs, VALUE *args, VA
|
|
12467
12467
|
int res = SWIG_AsPtr_std_string(argv[2], (std::string**)(0));
|
12468
12468
|
_v = SWIG_CheckState(res);
|
12469
12469
|
if (_v) {
|
12470
|
-
return
|
12470
|
+
return _wrap_SdkTrayManager_create_separator__SWIG_1(nargs, args, self);
|
12471
12471
|
}
|
12472
12472
|
}
|
12473
12473
|
}
|
@@ -12491,7 +12491,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createSeparator(int nargs, VALUE *args, VA
|
|
12491
12491
|
_v = SWIG_CheckState(res);
|
12492
12492
|
}
|
12493
12493
|
if (_v) {
|
12494
|
-
return
|
12494
|
+
return _wrap_SdkTrayManager_create_separator__SWIG_0(nargs, args, self);
|
12495
12495
|
}
|
12496
12496
|
}
|
12497
12497
|
}
|
@@ -12499,16 +12499,16 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createSeparator(int nargs, VALUE *args, VA
|
|
12499
12499
|
}
|
12500
12500
|
|
12501
12501
|
fail:
|
12502
|
-
Ruby_Format_OverloadedError( argc, 5, "SdkTrayManager.
|
12503
|
-
" OgreBites::Separator * SdkTrayManager.
|
12504
|
-
" OgreBites::Separator * SdkTrayManager.
|
12502
|
+
Ruby_Format_OverloadedError( argc, 5, "SdkTrayManager.create_separator",
|
12503
|
+
" OgreBites::Separator * SdkTrayManager.create_separator(OgreBites::TrayLocation trayLoc, Ogre::String const &name, Ogre::Real width)\n"
|
12504
|
+
" OgreBites::Separator * SdkTrayManager.create_separator(OgreBites::TrayLocation trayLoc, Ogre::String const &name)\n");
|
12505
12505
|
|
12506
12506
|
return Qnil;
|
12507
12507
|
}
|
12508
12508
|
|
12509
12509
|
|
12510
12510
|
SWIGINTERN VALUE
|
12511
|
-
|
12511
|
+
_wrap_SdkTrayManager_create_thick_slider(int argc, VALUE *argv, VALUE self) {
|
12512
12512
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
12513
12513
|
OgreBites::TrayLocation arg2 ;
|
12514
12514
|
Ogre::String *arg3 = 0 ;
|
@@ -12606,7 +12606,7 @@ fail:
|
|
12606
12606
|
|
12607
12607
|
|
12608
12608
|
SWIGINTERN VALUE
|
12609
|
-
|
12609
|
+
_wrap_SdkTrayManager_create_long_slider__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
12610
12610
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
12611
12611
|
OgreBites::TrayLocation arg2 ;
|
12612
12612
|
Ogre::String *arg3 = 0 ;
|
@@ -12712,7 +12712,7 @@ fail:
|
|
12712
12712
|
|
12713
12713
|
|
12714
12714
|
SWIGINTERN VALUE
|
12715
|
-
|
12715
|
+
_wrap_SdkTrayManager_create_long_slider__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
12716
12716
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
12717
12717
|
OgreBites::TrayLocation arg2 ;
|
12718
12718
|
Ogre::String *arg3 = 0 ;
|
@@ -12809,7 +12809,7 @@ fail:
|
|
12809
12809
|
}
|
12810
12810
|
|
12811
12811
|
|
12812
|
-
SWIGINTERN VALUE
|
12812
|
+
SWIGINTERN VALUE _wrap_SdkTrayManager_create_long_slider(int nargs, VALUE *args, VALUE self) {
|
12813
12813
|
int argc;
|
12814
12814
|
VALUE argv[11];
|
12815
12815
|
int ii;
|
@@ -12863,7 +12863,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createLongSlider(int nargs, VALUE *args, V
|
|
12863
12863
|
_v = SWIG_CheckState(res);
|
12864
12864
|
}
|
12865
12865
|
if (_v) {
|
12866
|
-
return
|
12866
|
+
return _wrap_SdkTrayManager_create_long_slider__SWIG_1(nargs, args, self);
|
12867
12867
|
}
|
12868
12868
|
}
|
12869
12869
|
}
|
@@ -12922,7 +12922,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createLongSlider(int nargs, VALUE *args, V
|
|
12922
12922
|
_v = SWIG_CheckState(res);
|
12923
12923
|
}
|
12924
12924
|
if (_v) {
|
12925
|
-
return
|
12925
|
+
return _wrap_SdkTrayManager_create_long_slider__SWIG_0(nargs, args, self);
|
12926
12926
|
}
|
12927
12927
|
}
|
12928
12928
|
}
|
@@ -12936,16 +12936,16 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createLongSlider(int nargs, VALUE *args, V
|
|
12936
12936
|
}
|
12937
12937
|
|
12938
12938
|
fail:
|
12939
|
-
Ruby_Format_OverloadedError( argc, 11, "SdkTrayManager.
|
12940
|
-
" OgreBites::Slider * SdkTrayManager.
|
12941
|
-
" OgreBites::Slider * SdkTrayManager.
|
12939
|
+
Ruby_Format_OverloadedError( argc, 11, "SdkTrayManager.create_long_slider",
|
12940
|
+
" OgreBites::Slider * SdkTrayManager.create_long_slider(OgreBites::TrayLocation trayLoc, Ogre::String const &name, Ogre::DisplayString const &caption, Ogre::Real width, Ogre::Real trackWidth, Ogre::Real valueBoxWidth, Ogre::Real minValue, Ogre::Real maxValue, unsigned int snaps)\n"
|
12941
|
+
" OgreBites::Slider * SdkTrayManager.create_long_slider(OgreBites::TrayLocation trayLoc, Ogre::String const &name, Ogre::DisplayString const &caption, Ogre::Real trackWidth, Ogre::Real valueBoxWidth, Ogre::Real minValue, Ogre::Real maxValue, unsigned int snaps)\n");
|
12942
12942
|
|
12943
12943
|
return Qnil;
|
12944
12944
|
}
|
12945
12945
|
|
12946
12946
|
|
12947
12947
|
SWIGINTERN VALUE
|
12948
|
-
|
12948
|
+
_wrap_SdkTrayManager_create_params_panel__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
12949
12949
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
12950
12950
|
OgreBites::TrayLocation arg2 ;
|
12951
12951
|
Ogre::String *arg3 = 0 ;
|
@@ -13008,7 +13008,7 @@ fail:
|
|
13008
13008
|
|
13009
13009
|
|
13010
13010
|
SWIGINTERN VALUE
|
13011
|
-
|
13011
|
+
_wrap_SdkTrayManager_create_params_panel__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
13012
13012
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
13013
13013
|
OgreBites::TrayLocation arg2 ;
|
13014
13014
|
Ogre::String *arg3 = 0 ;
|
@@ -13074,7 +13074,7 @@ fail:
|
|
13074
13074
|
|
13075
13075
|
|
13076
13076
|
SWIGINTERN VALUE
|
13077
|
-
|
13077
|
+
_wrap_SdkTrayManager_create_check_box__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
13078
13078
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
13079
13079
|
OgreBites::TrayLocation arg2 ;
|
13080
13080
|
Ogre::String *arg3 = 0 ;
|
@@ -13140,7 +13140,7 @@ fail:
|
|
13140
13140
|
|
13141
13141
|
|
13142
13142
|
SWIGINTERN VALUE
|
13143
|
-
|
13143
|
+
_wrap_SdkTrayManager_create_check_box__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
13144
13144
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
13145
13145
|
OgreBites::TrayLocation arg2 ;
|
13146
13146
|
Ogre::String *arg3 = 0 ;
|
@@ -13197,7 +13197,7 @@ fail:
|
|
13197
13197
|
}
|
13198
13198
|
|
13199
13199
|
|
13200
|
-
SWIGINTERN VALUE
|
13200
|
+
SWIGINTERN VALUE _wrap_SdkTrayManager_create_check_box(int nargs, VALUE *args, VALUE self) {
|
13201
13201
|
int argc;
|
13202
13202
|
VALUE argv[6];
|
13203
13203
|
int ii;
|
@@ -13226,7 +13226,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createCheckBox(int nargs, VALUE *args, VAL
|
|
13226
13226
|
int res = SWIG_ConvertPtr(argv[3], &vptr, SWIGTYPE_p_Ogre__UTFString, 0);
|
13227
13227
|
_v = SWIG_CheckState(res);
|
13228
13228
|
if (_v) {
|
13229
|
-
return
|
13229
|
+
return _wrap_SdkTrayManager_create_check_box__SWIG_1(nargs, args, self);
|
13230
13230
|
}
|
13231
13231
|
}
|
13232
13232
|
}
|
@@ -13255,7 +13255,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createCheckBox(int nargs, VALUE *args, VAL
|
|
13255
13255
|
_v = SWIG_CheckState(res);
|
13256
13256
|
}
|
13257
13257
|
if (_v) {
|
13258
|
-
return
|
13258
|
+
return _wrap_SdkTrayManager_create_check_box__SWIG_0(nargs, args, self);
|
13259
13259
|
}
|
13260
13260
|
}
|
13261
13261
|
}
|
@@ -13264,16 +13264,16 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createCheckBox(int nargs, VALUE *args, VAL
|
|
13264
13264
|
}
|
13265
13265
|
|
13266
13266
|
fail:
|
13267
|
-
Ruby_Format_OverloadedError( argc, 6, "SdkTrayManager.
|
13268
|
-
" OgreBites::CheckBox * SdkTrayManager.
|
13269
|
-
" OgreBites::CheckBox * SdkTrayManager.
|
13267
|
+
Ruby_Format_OverloadedError( argc, 6, "SdkTrayManager.create_check_box",
|
13268
|
+
" OgreBites::CheckBox * SdkTrayManager.create_check_box(OgreBites::TrayLocation trayLoc, Ogre::String const &name, Ogre::DisplayString const &caption, Ogre::Real width)\n"
|
13269
|
+
" OgreBites::CheckBox * SdkTrayManager.create_check_box(OgreBites::TrayLocation trayLoc, Ogre::String const &name, Ogre::DisplayString const &caption)\n");
|
13270
13270
|
|
13271
13271
|
return Qnil;
|
13272
13272
|
}
|
13273
13273
|
|
13274
13274
|
|
13275
13275
|
SWIGINTERN VALUE
|
13276
|
-
|
13276
|
+
_wrap_SdkTrayManager_create_decor_widget(int argc, VALUE *argv, VALUE self) {
|
13277
13277
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
13278
13278
|
OgreBites::TrayLocation arg2 ;
|
13279
13279
|
Ogre::String *arg3 = 0 ;
|
@@ -13335,7 +13335,7 @@ fail:
|
|
13335
13335
|
|
13336
13336
|
|
13337
13337
|
SWIGINTERN VALUE
|
13338
|
-
|
13338
|
+
_wrap_SdkTrayManager_create_progress_bar(int argc, VALUE *argv, VALUE self) {
|
13339
13339
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
13340
13340
|
OgreBites::TrayLocation arg2 ;
|
13341
13341
|
Ogre::String *arg3 = 0 ;
|
@@ -13409,7 +13409,7 @@ fail:
|
|
13409
13409
|
|
13410
13410
|
|
13411
13411
|
SWIGINTERN VALUE
|
13412
|
-
|
13412
|
+
_wrap_SdkTrayManager_show_frame_stats__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
13413
13413
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
13414
13414
|
OgreBites::TrayLocation arg2 ;
|
13415
13415
|
int arg3 ;
|
@@ -13446,7 +13446,7 @@ fail:
|
|
13446
13446
|
|
13447
13447
|
|
13448
13448
|
SWIGINTERN VALUE
|
13449
|
-
|
13449
|
+
_wrap_SdkTrayManager_show_frame_stats__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
13450
13450
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
13451
13451
|
OgreBites::TrayLocation arg2 ;
|
13452
13452
|
void *argp1 = 0 ;
|
@@ -13474,7 +13474,7 @@ fail:
|
|
13474
13474
|
}
|
13475
13475
|
|
13476
13476
|
|
13477
|
-
SWIGINTERN VALUE
|
13477
|
+
SWIGINTERN VALUE _wrap_SdkTrayManager_show_frame_stats(int nargs, VALUE *args, VALUE self) {
|
13478
13478
|
int argc;
|
13479
13479
|
VALUE argv[4];
|
13480
13480
|
int ii;
|
@@ -13496,7 +13496,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_showFrameStats(int nargs, VALUE *args, VAL
|
|
13496
13496
|
_v = SWIG_CheckState(res);
|
13497
13497
|
}
|
13498
13498
|
if (_v) {
|
13499
|
-
return
|
13499
|
+
return _wrap_SdkTrayManager_show_frame_stats__SWIG_1(nargs, args, self);
|
13500
13500
|
}
|
13501
13501
|
}
|
13502
13502
|
}
|
@@ -13516,23 +13516,23 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_showFrameStats(int nargs, VALUE *args, VAL
|
|
13516
13516
|
_v = SWIG_CheckState(res);
|
13517
13517
|
}
|
13518
13518
|
if (_v) {
|
13519
|
-
return
|
13519
|
+
return _wrap_SdkTrayManager_show_frame_stats__SWIG_0(nargs, args, self);
|
13520
13520
|
}
|
13521
13521
|
}
|
13522
13522
|
}
|
13523
13523
|
}
|
13524
13524
|
|
13525
13525
|
fail:
|
13526
|
-
Ruby_Format_OverloadedError( argc, 4, "SdkTrayManager.
|
13527
|
-
" void SdkTrayManager.
|
13528
|
-
" void SdkTrayManager.
|
13526
|
+
Ruby_Format_OverloadedError( argc, 4, "SdkTrayManager.show_frame_stats",
|
13527
|
+
" void SdkTrayManager.show_frame_stats(OgreBites::TrayLocation trayLoc, int place)\n"
|
13528
|
+
" void SdkTrayManager.show_frame_stats(OgreBites::TrayLocation trayLoc)\n");
|
13529
13529
|
|
13530
13530
|
return Qnil;
|
13531
13531
|
}
|
13532
13532
|
|
13533
13533
|
|
13534
13534
|
SWIGINTERN VALUE
|
13535
|
-
|
13535
|
+
_wrap_SdkTrayManager_hide_frame_stats(int argc, VALUE *argv, VALUE self) {
|
13536
13536
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
13537
13537
|
void *argp1 = 0 ;
|
13538
13538
|
int res1 = 0 ;
|
@@ -13553,7 +13553,7 @@ fail:
|
|
13553
13553
|
|
13554
13554
|
|
13555
13555
|
SWIGINTERN VALUE
|
13556
|
-
|
13556
|
+
_wrap_SdkTrayManager_are_frame_stats_visible(int argc, VALUE *argv, VALUE self) {
|
13557
13557
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
13558
13558
|
void *argp1 = 0 ;
|
13559
13559
|
int res1 = 0 ;
|
@@ -13577,7 +13577,7 @@ fail:
|
|
13577
13577
|
|
13578
13578
|
|
13579
13579
|
SWIGINTERN VALUE
|
13580
|
-
|
13580
|
+
_wrap_SdkTrayManager_toggle_advanced_frame_stats(int argc, VALUE *argv, VALUE self) {
|
13581
13581
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
13582
13582
|
void *argp1 = 0 ;
|
13583
13583
|
int res1 = 0 ;
|
@@ -13598,7 +13598,7 @@ fail:
|
|
13598
13598
|
|
13599
13599
|
|
13600
13600
|
SWIGINTERN VALUE
|
13601
|
-
|
13601
|
+
_wrap_SdkTrayManager_show_logo__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
13602
13602
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
13603
13603
|
OgreBites::TrayLocation arg2 ;
|
13604
13604
|
int arg3 ;
|
@@ -13635,7 +13635,7 @@ fail:
|
|
13635
13635
|
|
13636
13636
|
|
13637
13637
|
SWIGINTERN VALUE
|
13638
|
-
|
13638
|
+
_wrap_SdkTrayManager_show_logo__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
13639
13639
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
13640
13640
|
OgreBites::TrayLocation arg2 ;
|
13641
13641
|
void *argp1 = 0 ;
|
@@ -13663,7 +13663,7 @@ fail:
|
|
13663
13663
|
}
|
13664
13664
|
|
13665
13665
|
|
13666
|
-
SWIGINTERN VALUE
|
13666
|
+
SWIGINTERN VALUE _wrap_SdkTrayManager_show_logo(int nargs, VALUE *args, VALUE self) {
|
13667
13667
|
int argc;
|
13668
13668
|
VALUE argv[4];
|
13669
13669
|
int ii;
|
@@ -13685,7 +13685,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_showLogo(int nargs, VALUE *args, VALUE sel
|
|
13685
13685
|
_v = SWIG_CheckState(res);
|
13686
13686
|
}
|
13687
13687
|
if (_v) {
|
13688
|
-
return
|
13688
|
+
return _wrap_SdkTrayManager_show_logo__SWIG_1(nargs, args, self);
|
13689
13689
|
}
|
13690
13690
|
}
|
13691
13691
|
}
|
@@ -13705,23 +13705,23 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_showLogo(int nargs, VALUE *args, VALUE sel
|
|
13705
13705
|
_v = SWIG_CheckState(res);
|
13706
13706
|
}
|
13707
13707
|
if (_v) {
|
13708
|
-
return
|
13708
|
+
return _wrap_SdkTrayManager_show_logo__SWIG_0(nargs, args, self);
|
13709
13709
|
}
|
13710
13710
|
}
|
13711
13711
|
}
|
13712
13712
|
}
|
13713
13713
|
|
13714
13714
|
fail:
|
13715
|
-
Ruby_Format_OverloadedError( argc, 4, "SdkTrayManager.
|
13716
|
-
" void SdkTrayManager.
|
13717
|
-
" void SdkTrayManager.
|
13715
|
+
Ruby_Format_OverloadedError( argc, 4, "SdkTrayManager.show_logo",
|
13716
|
+
" void SdkTrayManager.show_logo(OgreBites::TrayLocation trayLoc, int place)\n"
|
13717
|
+
" void SdkTrayManager.show_logo(OgreBites::TrayLocation trayLoc)\n");
|
13718
13718
|
|
13719
13719
|
return Qnil;
|
13720
13720
|
}
|
13721
13721
|
|
13722
13722
|
|
13723
13723
|
SWIGINTERN VALUE
|
13724
|
-
|
13724
|
+
_wrap_SdkTrayManager_hide_logo(int argc, VALUE *argv, VALUE self) {
|
13725
13725
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
13726
13726
|
void *argp1 = 0 ;
|
13727
13727
|
int res1 = 0 ;
|
@@ -13742,7 +13742,7 @@ fail:
|
|
13742
13742
|
|
13743
13743
|
|
13744
13744
|
SWIGINTERN VALUE
|
13745
|
-
|
13745
|
+
_wrap_SdkTrayManager_is_logo_visible(int argc, VALUE *argv, VALUE self) {
|
13746
13746
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
13747
13747
|
void *argp1 = 0 ;
|
13748
13748
|
int res1 = 0 ;
|
@@ -13766,7 +13766,7 @@ fail:
|
|
13766
13766
|
|
13767
13767
|
|
13768
13768
|
SWIGINTERN VALUE
|
13769
|
-
|
13769
|
+
_wrap_SdkTrayManager_show_loading_bar__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
13770
13770
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
13771
13771
|
unsigned int arg2 ;
|
13772
13772
|
unsigned int arg3 ;
|
@@ -13811,7 +13811,7 @@ fail:
|
|
13811
13811
|
|
13812
13812
|
|
13813
13813
|
SWIGINTERN VALUE
|
13814
|
-
|
13814
|
+
_wrap_SdkTrayManager_show_loading_bar__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
13815
13815
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
13816
13816
|
unsigned int arg2 ;
|
13817
13817
|
unsigned int arg3 ;
|
@@ -13848,7 +13848,7 @@ fail:
|
|
13848
13848
|
|
13849
13849
|
|
13850
13850
|
SWIGINTERN VALUE
|
13851
|
-
|
13851
|
+
_wrap_SdkTrayManager_show_loading_bar__SWIG_2(int argc, VALUE *argv, VALUE self) {
|
13852
13852
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
13853
13853
|
unsigned int arg2 ;
|
13854
13854
|
void *argp1 = 0 ;
|
@@ -13877,7 +13877,7 @@ fail:
|
|
13877
13877
|
|
13878
13878
|
|
13879
13879
|
SWIGINTERN VALUE
|
13880
|
-
|
13880
|
+
_wrap_SdkTrayManager_show_loading_bar__SWIG_3(int argc, VALUE *argv, VALUE self) {
|
13881
13881
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
13882
13882
|
void *argp1 = 0 ;
|
13883
13883
|
int res1 = 0 ;
|
@@ -13897,7 +13897,7 @@ fail:
|
|
13897
13897
|
}
|
13898
13898
|
|
13899
13899
|
|
13900
|
-
SWIGINTERN VALUE
|
13900
|
+
SWIGINTERN VALUE _wrap_SdkTrayManager_show_loading_bar(int nargs, VALUE *args, VALUE self) {
|
13901
13901
|
int argc;
|
13902
13902
|
VALUE argv[5];
|
13903
13903
|
int ii;
|
@@ -13914,7 +13914,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_showLoadingBar(int nargs, VALUE *args, VAL
|
|
13914
13914
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_OgreBites__SdkTrayManager, 0);
|
13915
13915
|
_v = SWIG_CheckState(res);
|
13916
13916
|
if (_v) {
|
13917
|
-
return
|
13917
|
+
return _wrap_SdkTrayManager_show_loading_bar__SWIG_3(nargs, args, self);
|
13918
13918
|
}
|
13919
13919
|
}
|
13920
13920
|
if (argc == 2) {
|
@@ -13928,7 +13928,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_showLoadingBar(int nargs, VALUE *args, VAL
|
|
13928
13928
|
_v = SWIG_CheckState(res);
|
13929
13929
|
}
|
13930
13930
|
if (_v) {
|
13931
|
-
return
|
13931
|
+
return _wrap_SdkTrayManager_show_loading_bar__SWIG_2(nargs, args, self);
|
13932
13932
|
}
|
13933
13933
|
}
|
13934
13934
|
}
|
@@ -13948,7 +13948,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_showLoadingBar(int nargs, VALUE *args, VAL
|
|
13948
13948
|
_v = SWIG_CheckState(res);
|
13949
13949
|
}
|
13950
13950
|
if (_v) {
|
13951
|
-
return
|
13951
|
+
return _wrap_SdkTrayManager_show_loading_bar__SWIG_1(nargs, args, self);
|
13952
13952
|
}
|
13953
13953
|
}
|
13954
13954
|
}
|
@@ -13974,7 +13974,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_showLoadingBar(int nargs, VALUE *args, VAL
|
|
13974
13974
|
_v = SWIG_CheckState(res);
|
13975
13975
|
}
|
13976
13976
|
if (_v) {
|
13977
|
-
return
|
13977
|
+
return _wrap_SdkTrayManager_show_loading_bar__SWIG_0(nargs, args, self);
|
13978
13978
|
}
|
13979
13979
|
}
|
13980
13980
|
}
|
@@ -13982,18 +13982,18 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_showLoadingBar(int nargs, VALUE *args, VAL
|
|
13982
13982
|
}
|
13983
13983
|
|
13984
13984
|
fail:
|
13985
|
-
Ruby_Format_OverloadedError( argc, 5, "SdkTrayManager.
|
13986
|
-
" void SdkTrayManager.
|
13987
|
-
" void SdkTrayManager.
|
13988
|
-
" void SdkTrayManager.
|
13989
|
-
" void SdkTrayManager.
|
13985
|
+
Ruby_Format_OverloadedError( argc, 5, "SdkTrayManager.show_loading_bar",
|
13986
|
+
" void SdkTrayManager.show_loading_bar(unsigned int numGroupsInit, unsigned int numGroupsLoad, Ogre::Real initProportion)\n"
|
13987
|
+
" void SdkTrayManager.show_loading_bar(unsigned int numGroupsInit, unsigned int numGroupsLoad)\n"
|
13988
|
+
" void SdkTrayManager.show_loading_bar(unsigned int numGroupsInit)\n"
|
13989
|
+
" void SdkTrayManager.show_loading_bar()\n");
|
13990
13990
|
|
13991
13991
|
return Qnil;
|
13992
13992
|
}
|
13993
13993
|
|
13994
13994
|
|
13995
13995
|
SWIGINTERN VALUE
|
13996
|
-
|
13996
|
+
_wrap_SdkTrayManager_hide_loading_bar(int argc, VALUE *argv, VALUE self) {
|
13997
13997
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
13998
13998
|
void *argp1 = 0 ;
|
13999
13999
|
int res1 = 0 ;
|
@@ -14014,7 +14014,7 @@ fail:
|
|
14014
14014
|
|
14015
14015
|
|
14016
14016
|
SWIGINTERN VALUE
|
14017
|
-
|
14017
|
+
_wrap_SdkTrayManager_is_loading_bar_visible(int argc, VALUE *argv, VALUE self) {
|
14018
14018
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
14019
14019
|
void *argp1 = 0 ;
|
14020
14020
|
int res1 = 0 ;
|
@@ -14038,7 +14038,7 @@ fail:
|
|
14038
14038
|
|
14039
14039
|
|
14040
14040
|
SWIGINTERN VALUE
|
14041
|
-
|
14041
|
+
_wrap_SdkTrayManager_show_ok_dialog(int argc, VALUE *argv, VALUE self) {
|
14042
14042
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
14043
14043
|
Ogre::DisplayString *arg2 = 0 ;
|
14044
14044
|
Ogre::DisplayString *arg3 = 0 ;
|
@@ -14081,7 +14081,7 @@ fail:
|
|
14081
14081
|
|
14082
14082
|
|
14083
14083
|
SWIGINTERN VALUE
|
14084
|
-
|
14084
|
+
_wrap_SdkTrayManager_show_yes_no_dialog(int argc, VALUE *argv, VALUE self) {
|
14085
14085
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
14086
14086
|
Ogre::DisplayString *arg2 = 0 ;
|
14087
14087
|
Ogre::DisplayString *arg3 = 0 ;
|
@@ -14124,7 +14124,7 @@ fail:
|
|
14124
14124
|
|
14125
14125
|
|
14126
14126
|
SWIGINTERN VALUE
|
14127
|
-
|
14127
|
+
_wrap_SdkTrayManager_close_dialog(int argc, VALUE *argv, VALUE self) {
|
14128
14128
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
14129
14129
|
void *argp1 = 0 ;
|
14130
14130
|
int res1 = 0 ;
|
@@ -14145,7 +14145,7 @@ fail:
|
|
14145
14145
|
|
14146
14146
|
|
14147
14147
|
SWIGINTERN VALUE
|
14148
|
-
|
14148
|
+
_wrap_SdkTrayManager_is_dialog_visible(int argc, VALUE *argv, VALUE self) {
|
14149
14149
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
14150
14150
|
void *argp1 = 0 ;
|
14151
14151
|
int res1 = 0 ;
|
@@ -14169,7 +14169,7 @@ fail:
|
|
14169
14169
|
|
14170
14170
|
|
14171
14171
|
SWIGINTERN VALUE
|
14172
|
-
|
14172
|
+
_wrap_SdkTrayManager_get_widget__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
14173
14173
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
14174
14174
|
OgreBites::TrayLocation arg2 ;
|
14175
14175
|
unsigned int arg3 ;
|
@@ -14209,7 +14209,7 @@ fail:
|
|
14209
14209
|
|
14210
14210
|
|
14211
14211
|
SWIGINTERN VALUE
|
14212
|
-
|
14212
|
+
_wrap_SdkTrayManager_get_widget__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
14213
14213
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
14214
14214
|
OgreBites::TrayLocation arg2 ;
|
14215
14215
|
Ogre::String *arg3 = 0 ;
|
@@ -14256,7 +14256,7 @@ fail:
|
|
14256
14256
|
|
14257
14257
|
|
14258
14258
|
SWIGINTERN VALUE
|
14259
|
-
|
14259
|
+
_wrap_SdkTrayManager_get_widget__SWIG_2(int argc, VALUE *argv, VALUE self) {
|
14260
14260
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
14261
14261
|
Ogre::String *arg2 = 0 ;
|
14262
14262
|
void *argp1 = 0 ;
|
@@ -14294,7 +14294,7 @@ fail:
|
|
14294
14294
|
}
|
14295
14295
|
|
14296
14296
|
|
14297
|
-
SWIGINTERN VALUE
|
14297
|
+
SWIGINTERN VALUE _wrap_SdkTrayManager_get_widget(int nargs, VALUE *args, VALUE self) {
|
14298
14298
|
int argc;
|
14299
14299
|
VALUE argv[4];
|
14300
14300
|
int ii;
|
@@ -14314,7 +14314,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_getWidget(int nargs, VALUE *args, VALUE se
|
|
14314
14314
|
int res = SWIG_AsPtr_std_string(argv[1], (std::string**)(0));
|
14315
14315
|
_v = SWIG_CheckState(res);
|
14316
14316
|
if (_v) {
|
14317
|
-
return
|
14317
|
+
return _wrap_SdkTrayManager_get_widget__SWIG_2(nargs, args, self);
|
14318
14318
|
}
|
14319
14319
|
}
|
14320
14320
|
}
|
@@ -14334,7 +14334,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_getWidget(int nargs, VALUE *args, VALUE se
|
|
14334
14334
|
_v = SWIG_CheckState(res);
|
14335
14335
|
}
|
14336
14336
|
if (_v) {
|
14337
|
-
return
|
14337
|
+
return _wrap_SdkTrayManager_get_widget__SWIG_0(nargs, args, self);
|
14338
14338
|
}
|
14339
14339
|
}
|
14340
14340
|
}
|
@@ -14353,24 +14353,24 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_getWidget(int nargs, VALUE *args, VALUE se
|
|
14353
14353
|
int res = SWIG_AsPtr_std_string(argv[2], (std::string**)(0));
|
14354
14354
|
_v = SWIG_CheckState(res);
|
14355
14355
|
if (_v) {
|
14356
|
-
return
|
14356
|
+
return _wrap_SdkTrayManager_get_widget__SWIG_1(nargs, args, self);
|
14357
14357
|
}
|
14358
14358
|
}
|
14359
14359
|
}
|
14360
14360
|
}
|
14361
14361
|
|
14362
14362
|
fail:
|
14363
|
-
Ruby_Format_OverloadedError( argc, 4, "SdkTrayManager.
|
14364
|
-
" OgreBites::Widget * SdkTrayManager.
|
14365
|
-
" OgreBites::Widget * SdkTrayManager.
|
14366
|
-
" OgreBites::Widget * SdkTrayManager.
|
14363
|
+
Ruby_Format_OverloadedError( argc, 4, "SdkTrayManager.get_widget",
|
14364
|
+
" OgreBites::Widget * SdkTrayManager.get_widget(OgreBites::TrayLocation trayLoc, unsigned int place)\n"
|
14365
|
+
" OgreBites::Widget * SdkTrayManager.get_widget(OgreBites::TrayLocation trayLoc, Ogre::String const &name)\n"
|
14366
|
+
" OgreBites::Widget * SdkTrayManager.get_widget(Ogre::String const &name)\n");
|
14367
14367
|
|
14368
14368
|
return Qnil;
|
14369
14369
|
}
|
14370
14370
|
|
14371
14371
|
|
14372
14372
|
SWIGINTERN VALUE
|
14373
|
-
|
14373
|
+
_wrap_SdkTrayManager_get_num_widgets__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
14374
14374
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
14375
14375
|
void *argp1 = 0 ;
|
14376
14376
|
int res1 = 0 ;
|
@@ -14394,7 +14394,7 @@ fail:
|
|
14394
14394
|
|
14395
14395
|
|
14396
14396
|
SWIGINTERN VALUE
|
14397
|
-
|
14397
|
+
_wrap_SdkTrayManager_get_num_widgets__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
14398
14398
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
14399
14399
|
OgreBites::TrayLocation arg2 ;
|
14400
14400
|
void *argp1 = 0 ;
|
@@ -14425,7 +14425,7 @@ fail:
|
|
14425
14425
|
}
|
14426
14426
|
|
14427
14427
|
|
14428
|
-
SWIGINTERN VALUE
|
14428
|
+
SWIGINTERN VALUE _wrap_SdkTrayManager_get_num_widgets(int nargs, VALUE *args, VALUE self) {
|
14429
14429
|
int argc;
|
14430
14430
|
VALUE argv[3];
|
14431
14431
|
int ii;
|
@@ -14442,7 +14442,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_getNumWidgets(int nargs, VALUE *args, VALU
|
|
14442
14442
|
int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_OgreBites__SdkTrayManager, 0);
|
14443
14443
|
_v = SWIG_CheckState(res);
|
14444
14444
|
if (_v) {
|
14445
|
-
return
|
14445
|
+
return _wrap_SdkTrayManager_get_num_widgets__SWIG_0(nargs, args, self);
|
14446
14446
|
}
|
14447
14447
|
}
|
14448
14448
|
if (argc == 2) {
|
@@ -14456,22 +14456,22 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_getNumWidgets(int nargs, VALUE *args, VALU
|
|
14456
14456
|
_v = SWIG_CheckState(res);
|
14457
14457
|
}
|
14458
14458
|
if (_v) {
|
14459
|
-
return
|
14459
|
+
return _wrap_SdkTrayManager_get_num_widgets__SWIG_1(nargs, args, self);
|
14460
14460
|
}
|
14461
14461
|
}
|
14462
14462
|
}
|
14463
14463
|
|
14464
14464
|
fail:
|
14465
|
-
Ruby_Format_OverloadedError( argc, 3, "SdkTrayManager.
|
14466
|
-
" unsigned int SdkTrayManager.
|
14467
|
-
" unsigned int SdkTrayManager.
|
14465
|
+
Ruby_Format_OverloadedError( argc, 3, "SdkTrayManager.get_num_widgets",
|
14466
|
+
" unsigned int SdkTrayManager.get_num_widgets()\n"
|
14467
|
+
" unsigned int SdkTrayManager.get_num_widgets(OgreBites::TrayLocation trayLoc)\n");
|
14468
14468
|
|
14469
14469
|
return Qnil;
|
14470
14470
|
}
|
14471
14471
|
|
14472
14472
|
|
14473
14473
|
SWIGINTERN VALUE
|
14474
|
-
|
14474
|
+
_wrap_SdkTrayManager_get_widget_iterator(int argc, VALUE *argv, VALUE self) {
|
14475
14475
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
14476
14476
|
OgreBites::TrayLocation arg2 ;
|
14477
14477
|
void *argp1 = 0 ;
|
@@ -14503,7 +14503,7 @@ fail:
|
|
14503
14503
|
|
14504
14504
|
|
14505
14505
|
SWIGINTERN VALUE
|
14506
|
-
|
14506
|
+
_wrap_SdkTrayManager_locate_widget_in_tray(int argc, VALUE *argv, VALUE self) {
|
14507
14507
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
14508
14508
|
OgreBites::Widget *arg2 = (OgreBites::Widget *) 0 ;
|
14509
14509
|
void *argp1 = 0 ;
|
@@ -14535,7 +14535,7 @@ fail:
|
|
14535
14535
|
|
14536
14536
|
|
14537
14537
|
SWIGINTERN VALUE
|
14538
|
-
|
14538
|
+
_wrap_SdkTrayManager_destroy_widget__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
14539
14539
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
14540
14540
|
OgreBites::Widget *arg2 = (OgreBites::Widget *) 0 ;
|
14541
14541
|
void *argp1 = 0 ;
|
@@ -14564,7 +14564,7 @@ fail:
|
|
14564
14564
|
|
14565
14565
|
|
14566
14566
|
SWIGINTERN VALUE
|
14567
|
-
|
14567
|
+
_wrap_SdkTrayManager_destroy_widget__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
14568
14568
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
14569
14569
|
OgreBites::TrayLocation arg2 ;
|
14570
14570
|
unsigned int arg3 ;
|
@@ -14601,7 +14601,7 @@ fail:
|
|
14601
14601
|
|
14602
14602
|
|
14603
14603
|
SWIGINTERN VALUE
|
14604
|
-
|
14604
|
+
_wrap_SdkTrayManager_destroy_widget__SWIG_2(int argc, VALUE *argv, VALUE self) {
|
14605
14605
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
14606
14606
|
OgreBites::TrayLocation arg2 ;
|
14607
14607
|
Ogre::String *arg3 = 0 ;
|
@@ -14645,7 +14645,7 @@ fail:
|
|
14645
14645
|
|
14646
14646
|
|
14647
14647
|
SWIGINTERN VALUE
|
14648
|
-
|
14648
|
+
_wrap_SdkTrayManager_destroy_widget__SWIG_3(int argc, VALUE *argv, VALUE self) {
|
14649
14649
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
14650
14650
|
Ogre::String *arg2 = 0 ;
|
14651
14651
|
void *argp1 = 0 ;
|
@@ -14680,7 +14680,7 @@ fail:
|
|
14680
14680
|
}
|
14681
14681
|
|
14682
14682
|
|
14683
|
-
SWIGINTERN VALUE
|
14683
|
+
SWIGINTERN VALUE _wrap_SdkTrayManager_destroy_widget(int nargs, VALUE *args, VALUE self) {
|
14684
14684
|
int argc;
|
14685
14685
|
VALUE argv[4];
|
14686
14686
|
int ii;
|
@@ -14701,7 +14701,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_destroyWidget(int nargs, VALUE *args, VALU
|
|
14701
14701
|
int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_OgreBites__Widget, 0);
|
14702
14702
|
_v = SWIG_CheckState(res);
|
14703
14703
|
if (_v) {
|
14704
|
-
return
|
14704
|
+
return _wrap_SdkTrayManager_destroy_widget__SWIG_0(nargs, args, self);
|
14705
14705
|
}
|
14706
14706
|
}
|
14707
14707
|
}
|
@@ -14714,7 +14714,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_destroyWidget(int nargs, VALUE *args, VALU
|
|
14714
14714
|
int res = SWIG_AsPtr_std_string(argv[1], (std::string**)(0));
|
14715
14715
|
_v = SWIG_CheckState(res);
|
14716
14716
|
if (_v) {
|
14717
|
-
return
|
14717
|
+
return _wrap_SdkTrayManager_destroy_widget__SWIG_3(nargs, args, self);
|
14718
14718
|
}
|
14719
14719
|
}
|
14720
14720
|
}
|
@@ -14734,7 +14734,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_destroyWidget(int nargs, VALUE *args, VALU
|
|
14734
14734
|
_v = SWIG_CheckState(res);
|
14735
14735
|
}
|
14736
14736
|
if (_v) {
|
14737
|
-
return
|
14737
|
+
return _wrap_SdkTrayManager_destroy_widget__SWIG_1(nargs, args, self);
|
14738
14738
|
}
|
14739
14739
|
}
|
14740
14740
|
}
|
@@ -14753,25 +14753,25 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_destroyWidget(int nargs, VALUE *args, VALU
|
|
14753
14753
|
int res = SWIG_AsPtr_std_string(argv[2], (std::string**)(0));
|
14754
14754
|
_v = SWIG_CheckState(res);
|
14755
14755
|
if (_v) {
|
14756
|
-
return
|
14756
|
+
return _wrap_SdkTrayManager_destroy_widget__SWIG_2(nargs, args, self);
|
14757
14757
|
}
|
14758
14758
|
}
|
14759
14759
|
}
|
14760
14760
|
}
|
14761
14761
|
|
14762
14762
|
fail:
|
14763
|
-
Ruby_Format_OverloadedError( argc, 4, "SdkTrayManager.
|
14764
|
-
" void SdkTrayManager.
|
14765
|
-
" void SdkTrayManager.
|
14766
|
-
" void SdkTrayManager.
|
14767
|
-
" void SdkTrayManager.
|
14763
|
+
Ruby_Format_OverloadedError( argc, 4, "SdkTrayManager.destroy_widget",
|
14764
|
+
" void SdkTrayManager.destroy_widget(OgreBites::Widget *widget)\n"
|
14765
|
+
" void SdkTrayManager.destroy_widget(OgreBites::TrayLocation trayLoc, unsigned int place)\n"
|
14766
|
+
" void SdkTrayManager.destroy_widget(OgreBites::TrayLocation trayLoc, Ogre::String const &name)\n"
|
14767
|
+
" void SdkTrayManager.destroy_widget(Ogre::String const &name)\n");
|
14768
14768
|
|
14769
14769
|
return Qnil;
|
14770
14770
|
}
|
14771
14771
|
|
14772
14772
|
|
14773
14773
|
SWIGINTERN VALUE
|
14774
|
-
|
14774
|
+
_wrap_SdkTrayManager_destroy_all_widgets_in_tray(int argc, VALUE *argv, VALUE self) {
|
14775
14775
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
14776
14776
|
OgreBites::TrayLocation arg2 ;
|
14777
14777
|
void *argp1 = 0 ;
|
@@ -14800,7 +14800,7 @@ fail:
|
|
14800
14800
|
|
14801
14801
|
|
14802
14802
|
SWIGINTERN VALUE
|
14803
|
-
|
14803
|
+
_wrap_SdkTrayManager_destroy_all_widgets(int argc, VALUE *argv, VALUE self) {
|
14804
14804
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
14805
14805
|
void *argp1 = 0 ;
|
14806
14806
|
int res1 = 0 ;
|
@@ -14821,7 +14821,7 @@ fail:
|
|
14821
14821
|
|
14822
14822
|
|
14823
14823
|
SWIGINTERN VALUE
|
14824
|
-
|
14824
|
+
_wrap_SdkTrayManager_move_widget_to_tray__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
14825
14825
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
14826
14826
|
OgreBites::Widget *arg2 = (OgreBites::Widget *) 0 ;
|
14827
14827
|
OgreBites::TrayLocation arg3 ;
|
@@ -14866,7 +14866,7 @@ fail:
|
|
14866
14866
|
|
14867
14867
|
|
14868
14868
|
SWIGINTERN VALUE
|
14869
|
-
|
14869
|
+
_wrap_SdkTrayManager_move_widget_to_tray__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
14870
14870
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
14871
14871
|
OgreBites::Widget *arg2 = (OgreBites::Widget *) 0 ;
|
14872
14872
|
OgreBites::TrayLocation arg3 ;
|
@@ -14903,7 +14903,7 @@ fail:
|
|
14903
14903
|
|
14904
14904
|
|
14905
14905
|
SWIGINTERN VALUE
|
14906
|
-
|
14906
|
+
_wrap_SdkTrayManager_move_widget_to_tray__SWIG_2(int argc, VALUE *argv, VALUE self) {
|
14907
14907
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
14908
14908
|
Ogre::String *arg2 = 0 ;
|
14909
14909
|
OgreBites::TrayLocation arg3 ;
|
@@ -14955,7 +14955,7 @@ fail:
|
|
14955
14955
|
|
14956
14956
|
|
14957
14957
|
SWIGINTERN VALUE
|
14958
|
-
|
14958
|
+
_wrap_SdkTrayManager_move_widget_to_tray__SWIG_3(int argc, VALUE *argv, VALUE self) {
|
14959
14959
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
14960
14960
|
Ogre::String *arg2 = 0 ;
|
14961
14961
|
OgreBites::TrayLocation arg3 ;
|
@@ -14999,7 +14999,7 @@ fail:
|
|
14999
14999
|
|
15000
15000
|
|
15001
15001
|
SWIGINTERN VALUE
|
15002
|
-
|
15002
|
+
_wrap_SdkTrayManager_move_widget_to_tray__SWIG_4(int argc, VALUE *argv, VALUE self) {
|
15003
15003
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
15004
15004
|
OgreBites::TrayLocation arg2 ;
|
15005
15005
|
Ogre::String *arg3 = 0 ;
|
@@ -15059,7 +15059,7 @@ fail:
|
|
15059
15059
|
|
15060
15060
|
|
15061
15061
|
SWIGINTERN VALUE
|
15062
|
-
|
15062
|
+
_wrap_SdkTrayManager_move_widget_to_tray__SWIG_5(int argc, VALUE *argv, VALUE self) {
|
15063
15063
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
15064
15064
|
OgreBites::TrayLocation arg2 ;
|
15065
15065
|
Ogre::String *arg3 = 0 ;
|
@@ -15111,7 +15111,7 @@ fail:
|
|
15111
15111
|
|
15112
15112
|
|
15113
15113
|
SWIGINTERN VALUE
|
15114
|
-
|
15114
|
+
_wrap_SdkTrayManager_move_widget_to_tray__SWIG_6(int argc, VALUE *argv, VALUE self) {
|
15115
15115
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
15116
15116
|
OgreBites::TrayLocation arg2 ;
|
15117
15117
|
unsigned int arg3 ;
|
@@ -15164,7 +15164,7 @@ fail:
|
|
15164
15164
|
|
15165
15165
|
|
15166
15166
|
SWIGINTERN VALUE
|
15167
|
-
|
15167
|
+
_wrap_SdkTrayManager_move_widget_to_tray__SWIG_7(int argc, VALUE *argv, VALUE self) {
|
15168
15168
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
15169
15169
|
OgreBites::TrayLocation arg2 ;
|
15170
15170
|
unsigned int arg3 ;
|
@@ -15208,7 +15208,7 @@ fail:
|
|
15208
15208
|
}
|
15209
15209
|
|
15210
15210
|
|
15211
|
-
SWIGINTERN VALUE
|
15211
|
+
SWIGINTERN VALUE _wrap_SdkTrayManager_move_widget_to_tray(int nargs, VALUE *args, VALUE self) {
|
15212
15212
|
int argc;
|
15213
15213
|
VALUE argv[6];
|
15214
15214
|
int ii;
|
@@ -15234,7 +15234,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_moveWidgetToTray(int nargs, VALUE *args, V
|
|
15234
15234
|
_v = SWIG_CheckState(res);
|
15235
15235
|
}
|
15236
15236
|
if (_v) {
|
15237
|
-
return
|
15237
|
+
return _wrap_SdkTrayManager_move_widget_to_tray__SWIG_1(nargs, args, self);
|
15238
15238
|
}
|
15239
15239
|
}
|
15240
15240
|
}
|
@@ -15253,7 +15253,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_moveWidgetToTray(int nargs, VALUE *args, V
|
|
15253
15253
|
_v = SWIG_CheckState(res);
|
15254
15254
|
}
|
15255
15255
|
if (_v) {
|
15256
|
-
return
|
15256
|
+
return _wrap_SdkTrayManager_move_widget_to_tray__SWIG_3(nargs, args, self);
|
15257
15257
|
}
|
15258
15258
|
}
|
15259
15259
|
}
|
@@ -15278,7 +15278,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_moveWidgetToTray(int nargs, VALUE *args, V
|
|
15278
15278
|
_v = SWIG_CheckState(res);
|
15279
15279
|
}
|
15280
15280
|
if (_v) {
|
15281
|
-
return
|
15281
|
+
return _wrap_SdkTrayManager_move_widget_to_tray__SWIG_0(nargs, args, self);
|
15282
15282
|
}
|
15283
15283
|
}
|
15284
15284
|
}
|
@@ -15305,7 +15305,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_moveWidgetToTray(int nargs, VALUE *args, V
|
|
15305
15305
|
_v = SWIG_CheckState(res);
|
15306
15306
|
}
|
15307
15307
|
if (_v) {
|
15308
|
-
return
|
15308
|
+
return _wrap_SdkTrayManager_move_widget_to_tray__SWIG_7(nargs, args, self);
|
15309
15309
|
}
|
15310
15310
|
}
|
15311
15311
|
}
|
@@ -15330,7 +15330,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_moveWidgetToTray(int nargs, VALUE *args, V
|
|
15330
15330
|
_v = SWIG_CheckState(res);
|
15331
15331
|
}
|
15332
15332
|
if (_v) {
|
15333
|
-
return
|
15333
|
+
return _wrap_SdkTrayManager_move_widget_to_tray__SWIG_5(nargs, args, self);
|
15334
15334
|
}
|
15335
15335
|
}
|
15336
15336
|
}
|
@@ -15355,7 +15355,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_moveWidgetToTray(int nargs, VALUE *args, V
|
|
15355
15355
|
_v = SWIG_CheckState(res);
|
15356
15356
|
}
|
15357
15357
|
if (_v) {
|
15358
|
-
return
|
15358
|
+
return _wrap_SdkTrayManager_move_widget_to_tray__SWIG_2(nargs, args, self);
|
15359
15359
|
}
|
15360
15360
|
}
|
15361
15361
|
}
|
@@ -15387,7 +15387,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_moveWidgetToTray(int nargs, VALUE *args, V
|
|
15387
15387
|
_v = SWIG_CheckState(res);
|
15388
15388
|
}
|
15389
15389
|
if (_v) {
|
15390
|
-
return
|
15390
|
+
return _wrap_SdkTrayManager_move_widget_to_tray__SWIG_6(nargs, args, self);
|
15391
15391
|
}
|
15392
15392
|
}
|
15393
15393
|
}
|
@@ -15418,7 +15418,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_moveWidgetToTray(int nargs, VALUE *args, V
|
|
15418
15418
|
_v = SWIG_CheckState(res);
|
15419
15419
|
}
|
15420
15420
|
if (_v) {
|
15421
|
-
return
|
15421
|
+
return _wrap_SdkTrayManager_move_widget_to_tray__SWIG_4(nargs, args, self);
|
15422
15422
|
}
|
15423
15423
|
}
|
15424
15424
|
}
|
@@ -15427,22 +15427,22 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_moveWidgetToTray(int nargs, VALUE *args, V
|
|
15427
15427
|
}
|
15428
15428
|
|
15429
15429
|
fail:
|
15430
|
-
Ruby_Format_OverloadedError( argc, 6, "SdkTrayManager.
|
15431
|
-
" void SdkTrayManager.
|
15432
|
-
" void SdkTrayManager.
|
15433
|
-
" void SdkTrayManager.
|
15434
|
-
" void SdkTrayManager.
|
15435
|
-
" void SdkTrayManager.
|
15436
|
-
" void SdkTrayManager.
|
15437
|
-
" void SdkTrayManager.
|
15438
|
-
" void SdkTrayManager.
|
15430
|
+
Ruby_Format_OverloadedError( argc, 6, "SdkTrayManager.move_widget_to_tray",
|
15431
|
+
" void SdkTrayManager.move_widget_to_tray(OgreBites::Widget *widget, OgreBites::TrayLocation trayLoc, int place)\n"
|
15432
|
+
" void SdkTrayManager.move_widget_to_tray(OgreBites::Widget *widget, OgreBites::TrayLocation trayLoc)\n"
|
15433
|
+
" void SdkTrayManager.move_widget_to_tray(Ogre::String const &name, OgreBites::TrayLocation trayLoc, unsigned int place)\n"
|
15434
|
+
" void SdkTrayManager.move_widget_to_tray(Ogre::String const &name, OgreBites::TrayLocation trayLoc)\n"
|
15435
|
+
" void SdkTrayManager.move_widget_to_tray(OgreBites::TrayLocation currentTrayLoc, Ogre::String const &name, OgreBites::TrayLocation targetTrayLoc, int place)\n"
|
15436
|
+
" void SdkTrayManager.move_widget_to_tray(OgreBites::TrayLocation currentTrayLoc, Ogre::String const &name, OgreBites::TrayLocation targetTrayLoc)\n"
|
15437
|
+
" void SdkTrayManager.move_widget_to_tray(OgreBites::TrayLocation currentTrayLoc, unsigned int currentPlace, OgreBites::TrayLocation targetTrayLoc, int targetPlace)\n"
|
15438
|
+
" void SdkTrayManager.move_widget_to_tray(OgreBites::TrayLocation currentTrayLoc, unsigned int currentPlace, OgreBites::TrayLocation targetTrayLoc)\n");
|
15439
15439
|
|
15440
15440
|
return Qnil;
|
15441
15441
|
}
|
15442
15442
|
|
15443
15443
|
|
15444
15444
|
SWIGINTERN VALUE
|
15445
|
-
|
15445
|
+
_wrap_SdkTrayManager_remove_widget_from_tray__SWIG_0(int argc, VALUE *argv, VALUE self) {
|
15446
15446
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
15447
15447
|
OgreBites::Widget *arg2 = (OgreBites::Widget *) 0 ;
|
15448
15448
|
void *argp1 = 0 ;
|
@@ -15471,7 +15471,7 @@ fail:
|
|
15471
15471
|
|
15472
15472
|
|
15473
15473
|
SWIGINTERN VALUE
|
15474
|
-
|
15474
|
+
_wrap_SdkTrayManager_remove_widget_from_tray__SWIG_1(int argc, VALUE *argv, VALUE self) {
|
15475
15475
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
15476
15476
|
Ogre::String *arg2 = 0 ;
|
15477
15477
|
void *argp1 = 0 ;
|
@@ -15507,7 +15507,7 @@ fail:
|
|
15507
15507
|
|
15508
15508
|
|
15509
15509
|
SWIGINTERN VALUE
|
15510
|
-
|
15510
|
+
_wrap_SdkTrayManager_remove_widget_from_tray__SWIG_2(int argc, VALUE *argv, VALUE self) {
|
15511
15511
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
15512
15512
|
OgreBites::TrayLocation arg2 ;
|
15513
15513
|
Ogre::String *arg3 = 0 ;
|
@@ -15551,7 +15551,7 @@ fail:
|
|
15551
15551
|
|
15552
15552
|
|
15553
15553
|
SWIGINTERN VALUE
|
15554
|
-
|
15554
|
+
_wrap_SdkTrayManager_remove_widget_from_tray__SWIG_3(int argc, VALUE *argv, VALUE self) {
|
15555
15555
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
15556
15556
|
OgreBites::TrayLocation arg2 ;
|
15557
15557
|
int arg3 ;
|
@@ -15587,7 +15587,7 @@ fail:
|
|
15587
15587
|
}
|
15588
15588
|
|
15589
15589
|
|
15590
|
-
SWIGINTERN VALUE
|
15590
|
+
SWIGINTERN VALUE _wrap_SdkTrayManager_remove_widget_from_tray(int nargs, VALUE *args, VALUE self) {
|
15591
15591
|
int argc;
|
15592
15592
|
VALUE argv[4];
|
15593
15593
|
int ii;
|
@@ -15608,7 +15608,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_removeWidgetFromTray(int nargs, VALUE *arg
|
|
15608
15608
|
int res = SWIG_ConvertPtr(argv[1], &vptr, SWIGTYPE_p_OgreBites__Widget, 0);
|
15609
15609
|
_v = SWIG_CheckState(res);
|
15610
15610
|
if (_v) {
|
15611
|
-
return
|
15611
|
+
return _wrap_SdkTrayManager_remove_widget_from_tray__SWIG_0(nargs, args, self);
|
15612
15612
|
}
|
15613
15613
|
}
|
15614
15614
|
}
|
@@ -15621,7 +15621,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_removeWidgetFromTray(int nargs, VALUE *arg
|
|
15621
15621
|
int res = SWIG_AsPtr_std_string(argv[1], (std::string**)(0));
|
15622
15622
|
_v = SWIG_CheckState(res);
|
15623
15623
|
if (_v) {
|
15624
|
-
return
|
15624
|
+
return _wrap_SdkTrayManager_remove_widget_from_tray__SWIG_1(nargs, args, self);
|
15625
15625
|
}
|
15626
15626
|
}
|
15627
15627
|
}
|
@@ -15641,7 +15641,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_removeWidgetFromTray(int nargs, VALUE *arg
|
|
15641
15641
|
_v = SWIG_CheckState(res);
|
15642
15642
|
}
|
15643
15643
|
if (_v) {
|
15644
|
-
return
|
15644
|
+
return _wrap_SdkTrayManager_remove_widget_from_tray__SWIG_3(nargs, args, self);
|
15645
15645
|
}
|
15646
15646
|
}
|
15647
15647
|
}
|
@@ -15660,25 +15660,25 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_removeWidgetFromTray(int nargs, VALUE *arg
|
|
15660
15660
|
int res = SWIG_AsPtr_std_string(argv[2], (std::string**)(0));
|
15661
15661
|
_v = SWIG_CheckState(res);
|
15662
15662
|
if (_v) {
|
15663
|
-
return
|
15663
|
+
return _wrap_SdkTrayManager_remove_widget_from_tray__SWIG_2(nargs, args, self);
|
15664
15664
|
}
|
15665
15665
|
}
|
15666
15666
|
}
|
15667
15667
|
}
|
15668
15668
|
|
15669
15669
|
fail:
|
15670
|
-
Ruby_Format_OverloadedError( argc, 4, "SdkTrayManager.
|
15671
|
-
" void SdkTrayManager.
|
15672
|
-
" void SdkTrayManager.
|
15673
|
-
" void SdkTrayManager.
|
15674
|
-
" void SdkTrayManager.
|
15670
|
+
Ruby_Format_OverloadedError( argc, 4, "SdkTrayManager.remove_widget_from_tray",
|
15671
|
+
" void SdkTrayManager.remove_widget_from_tray(OgreBites::Widget *widget)\n"
|
15672
|
+
" void SdkTrayManager.remove_widget_from_tray(Ogre::String const &name)\n"
|
15673
|
+
" void SdkTrayManager.remove_widget_from_tray(OgreBites::TrayLocation trayLoc, Ogre::String const &name)\n"
|
15674
|
+
" void SdkTrayManager.remove_widget_from_tray(OgreBites::TrayLocation trayLoc, int place)\n");
|
15675
15675
|
|
15676
15676
|
return Qnil;
|
15677
15677
|
}
|
15678
15678
|
|
15679
15679
|
|
15680
15680
|
SWIGINTERN VALUE
|
15681
|
-
|
15681
|
+
_wrap_SdkTrayManager_clear_tray(int argc, VALUE *argv, VALUE self) {
|
15682
15682
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
15683
15683
|
OgreBites::TrayLocation arg2 ;
|
15684
15684
|
void *argp1 = 0 ;
|
@@ -15707,7 +15707,7 @@ fail:
|
|
15707
15707
|
|
15708
15708
|
|
15709
15709
|
SWIGINTERN VALUE
|
15710
|
-
|
15710
|
+
_wrap_SdkTrayManager_clear_all_trays(int argc, VALUE *argv, VALUE self) {
|
15711
15711
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
15712
15712
|
void *argp1 = 0 ;
|
15713
15713
|
int res1 = 0 ;
|
@@ -15728,7 +15728,7 @@ fail:
|
|
15728
15728
|
|
15729
15729
|
|
15730
15730
|
SWIGINTERN VALUE
|
15731
|
-
|
15731
|
+
_wrap_SdkTrayManager_frame_rendering_queued(int argc, VALUE *argv, VALUE self) {
|
15732
15732
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
15733
15733
|
Ogre::FrameEvent *arg2 = 0 ;
|
15734
15734
|
void *argp1 = 0 ;
|
@@ -15763,7 +15763,7 @@ fail:
|
|
15763
15763
|
|
15764
15764
|
|
15765
15765
|
SWIGINTERN VALUE
|
15766
|
-
|
15766
|
+
_wrap_SdkTrayManager_window_update(int argc, VALUE *argv, VALUE self) {
|
15767
15767
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
15768
15768
|
void *argp1 = 0 ;
|
15769
15769
|
int res1 = 0 ;
|
@@ -15784,7 +15784,7 @@ fail:
|
|
15784
15784
|
|
15785
15785
|
|
15786
15786
|
SWIGINTERN VALUE
|
15787
|
-
|
15787
|
+
_wrap_SdkTrayManager_resource_group_scripting_started(int argc, VALUE *argv, VALUE self) {
|
15788
15788
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
15789
15789
|
Ogre::String *arg2 = 0 ;
|
15790
15790
|
size_t arg3 ;
|
@@ -15828,7 +15828,7 @@ fail:
|
|
15828
15828
|
|
15829
15829
|
|
15830
15830
|
SWIGINTERN VALUE
|
15831
|
-
|
15831
|
+
_wrap_SdkTrayManager_script_parse_started(int argc, VALUE *argv, VALUE self) {
|
15832
15832
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
15833
15833
|
Ogre::String *arg2 = 0 ;
|
15834
15834
|
bool *arg3 = 0 ;
|
@@ -15875,7 +15875,7 @@ fail:
|
|
15875
15875
|
|
15876
15876
|
|
15877
15877
|
SWIGINTERN VALUE
|
15878
|
-
|
15878
|
+
_wrap_SdkTrayManager_script_parse_ended(int argc, VALUE *argv, VALUE self) {
|
15879
15879
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
15880
15880
|
Ogre::String *arg2 = 0 ;
|
15881
15881
|
bool arg3 ;
|
@@ -15919,7 +15919,7 @@ fail:
|
|
15919
15919
|
|
15920
15920
|
|
15921
15921
|
SWIGINTERN VALUE
|
15922
|
-
|
15922
|
+
_wrap_SdkTrayManager_resource_group_scripting_ended(int argc, VALUE *argv, VALUE self) {
|
15923
15923
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
15924
15924
|
Ogre::String *arg2 = 0 ;
|
15925
15925
|
void *argp1 = 0 ;
|
@@ -15955,7 +15955,7 @@ fail:
|
|
15955
15955
|
|
15956
15956
|
|
15957
15957
|
SWIGINTERN VALUE
|
15958
|
-
|
15958
|
+
_wrap_SdkTrayManager_resource_group_load_started(int argc, VALUE *argv, VALUE self) {
|
15959
15959
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
15960
15960
|
Ogre::String *arg2 = 0 ;
|
15961
15961
|
size_t arg3 ;
|
@@ -15999,7 +15999,7 @@ fail:
|
|
15999
15999
|
|
16000
16000
|
|
16001
16001
|
SWIGINTERN VALUE
|
16002
|
-
|
16002
|
+
_wrap_SdkTrayManager_resource_load_started(int argc, VALUE *argv, VALUE self) {
|
16003
16003
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
16004
16004
|
Ogre::ResourcePtr *arg2 = 0 ;
|
16005
16005
|
void *argp1 = 0 ;
|
@@ -16031,7 +16031,7 @@ fail:
|
|
16031
16031
|
|
16032
16032
|
|
16033
16033
|
SWIGINTERN VALUE
|
16034
|
-
|
16034
|
+
_wrap_SdkTrayManager_resource_load_ended(int argc, VALUE *argv, VALUE self) {
|
16035
16035
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
16036
16036
|
void *argp1 = 0 ;
|
16037
16037
|
int res1 = 0 ;
|
@@ -16052,7 +16052,7 @@ fail:
|
|
16052
16052
|
|
16053
16053
|
|
16054
16054
|
SWIGINTERN VALUE
|
16055
|
-
|
16055
|
+
_wrap_SdkTrayManager_world_geometry_stage_started(int argc, VALUE *argv, VALUE self) {
|
16056
16056
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
16057
16057
|
Ogre::String *arg2 = 0 ;
|
16058
16058
|
void *argp1 = 0 ;
|
@@ -16088,7 +16088,7 @@ fail:
|
|
16088
16088
|
|
16089
16089
|
|
16090
16090
|
SWIGINTERN VALUE
|
16091
|
-
|
16091
|
+
_wrap_SdkTrayManager_world_geometry_stage_ended(int argc, VALUE *argv, VALUE self) {
|
16092
16092
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
16093
16093
|
void *argp1 = 0 ;
|
16094
16094
|
int res1 = 0 ;
|
@@ -16109,7 +16109,7 @@ fail:
|
|
16109
16109
|
|
16110
16110
|
|
16111
16111
|
SWIGINTERN VALUE
|
16112
|
-
|
16112
|
+
_wrap_SdkTrayManager_resource_group_load_ended(int argc, VALUE *argv, VALUE self) {
|
16113
16113
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
16114
16114
|
Ogre::String *arg2 = 0 ;
|
16115
16115
|
void *argp1 = 0 ;
|
@@ -16145,7 +16145,7 @@ fail:
|
|
16145
16145
|
|
16146
16146
|
|
16147
16147
|
SWIGINTERN VALUE
|
16148
|
-
|
16148
|
+
_wrap_SdkTrayManager_label_hit(int argc, VALUE *argv, VALUE self) {
|
16149
16149
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
16150
16150
|
OgreBites::Label *arg2 = (OgreBites::Label *) 0 ;
|
16151
16151
|
void *argp1 = 0 ;
|
@@ -16174,7 +16174,7 @@ fail:
|
|
16174
16174
|
|
16175
16175
|
|
16176
16176
|
SWIGINTERN VALUE
|
16177
|
-
|
16177
|
+
_wrap_SdkTrayManager_button_hit(int argc, VALUE *argv, VALUE self) {
|
16178
16178
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
16179
16179
|
OgreBites::Button *arg2 = (OgreBites::Button *) 0 ;
|
16180
16180
|
void *argp1 = 0 ;
|
@@ -16203,7 +16203,7 @@ fail:
|
|
16203
16203
|
|
16204
16204
|
|
16205
16205
|
SWIGINTERN VALUE
|
16206
|
-
|
16206
|
+
_wrap_SdkTrayManager_inject_mouse_down(int argc, VALUE *argv, VALUE self) {
|
16207
16207
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
16208
16208
|
OIS::MouseEvent *arg2 = 0 ;
|
16209
16209
|
OIS::MouseButtonID arg3 ;
|
@@ -16246,7 +16246,7 @@ fail:
|
|
16246
16246
|
|
16247
16247
|
|
16248
16248
|
SWIGINTERN VALUE
|
16249
|
-
|
16249
|
+
_wrap_SdkTrayManager_inject_mouse_up(int argc, VALUE *argv, VALUE self) {
|
16250
16250
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
16251
16251
|
OIS::MouseEvent *arg2 = 0 ;
|
16252
16252
|
OIS::MouseButtonID arg3 ;
|
@@ -16289,7 +16289,7 @@ fail:
|
|
16289
16289
|
|
16290
16290
|
|
16291
16291
|
SWIGINTERN VALUE
|
16292
|
-
|
16292
|
+
_wrap_SdkTrayManager_inject_mouse_move(int argc, VALUE *argv, VALUE self) {
|
16293
16293
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
16294
16294
|
OIS::MouseEvent *arg2 = 0 ;
|
16295
16295
|
void *argp1 = 0 ;
|
@@ -16324,7 +16324,7 @@ fail:
|
|
16324
16324
|
|
16325
16325
|
|
16326
16326
|
SWIGINTERN VALUE
|
16327
|
-
|
16327
|
+
_wrap_SdkTrayManager_create_params_panel__SWIG_2(int argc, VALUE *argv, VALUE self) {
|
16328
16328
|
OgreBites::SdkTrayManager *arg1 = (OgreBites::SdkTrayManager *) 0 ;
|
16329
16329
|
OgreBites::TrayLocation arg2 ;
|
16330
16330
|
Ogre::String *arg3 = 0 ;
|
@@ -16380,7 +16380,7 @@ fail:
|
|
16380
16380
|
}
|
16381
16381
|
|
16382
16382
|
|
16383
|
-
SWIGINTERN VALUE
|
16383
|
+
SWIGINTERN VALUE _wrap_SdkTrayManager_create_params_panel(int nargs, VALUE *args, VALUE self) {
|
16384
16384
|
int argc;
|
16385
16385
|
VALUE argv[6];
|
16386
16386
|
int ii;
|
@@ -16414,7 +16414,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createParamsPanel(int nargs, VALUE *args,
|
|
16414
16414
|
int res = SWIG_ConvertPtr(argv[4], &vptr, SWIGTYPE_p_Ogre__vectorT_Ogre__String_Ogre__STLAllocatorT_Ogre__String_Ogre__GeneralAllocPolicy_t_t__type, 0);
|
16415
16415
|
_v = SWIG_CheckState(res);
|
16416
16416
|
if (_v) {
|
16417
|
-
return
|
16417
|
+
return _wrap_SdkTrayManager_create_params_panel__SWIG_1(nargs, args, self);
|
16418
16418
|
}
|
16419
16419
|
}
|
16420
16420
|
}
|
@@ -16445,7 +16445,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createParamsPanel(int nargs, VALUE *args,
|
|
16445
16445
|
_v = SWIG_CheckState(res);
|
16446
16446
|
}
|
16447
16447
|
if (_v) {
|
16448
|
-
return
|
16448
|
+
return _wrap_SdkTrayManager_create_params_panel__SWIG_0(nargs, args, self);
|
16449
16449
|
}
|
16450
16450
|
}
|
16451
16451
|
}
|
@@ -16473,7 +16473,7 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createParamsPanel(int nargs, VALUE *args,
|
|
16473
16473
|
if (_v) {
|
16474
16474
|
_v = (argv[4] != 0);
|
16475
16475
|
if (_v) {
|
16476
|
-
return
|
16476
|
+
return _wrap_SdkTrayManager_create_params_panel__SWIG_2(nargs, args, self);
|
16477
16477
|
}
|
16478
16478
|
}
|
16479
16479
|
}
|
@@ -16482,10 +16482,10 @@ SWIGINTERN VALUE _wrap_SdkTrayManager_createParamsPanel(int nargs, VALUE *args,
|
|
16482
16482
|
}
|
16483
16483
|
|
16484
16484
|
fail:
|
16485
|
-
Ruby_Format_OverloadedError( argc, 6, "SdkTrayManager.
|
16486
|
-
" OgreBites::ParamsPanel * SdkTrayManager.
|
16487
|
-
" OgreBites::ParamsPanel * SdkTrayManager.
|
16488
|
-
" OgreBites::ParamsPanel * SdkTrayManager.
|
16485
|
+
Ruby_Format_OverloadedError( argc, 6, "SdkTrayManager.create_params_panel",
|
16486
|
+
" OgreBites::ParamsPanel * SdkTrayManager.create_params_panel(OgreBites::TrayLocation trayLoc, Ogre::String const &name, Ogre::Real width, unsigned int lines)\n"
|
16487
|
+
" OgreBites::ParamsPanel * SdkTrayManager.create_params_panel(OgreBites::TrayLocation trayLoc, Ogre::String const &name, Ogre::Real width, Ogre::StringVector const ¶mNames)\n"
|
16488
|
+
" OgreBites::ParamsPanel * SdkTrayManager.create_params_panel(OgreBites::TrayLocation trayLoc, Ogre::String const &name, Ogre::Real width, VALUE paramNames)\n");
|
16489
16489
|
|
16490
16490
|
return Qnil;
|
16491
16491
|
}
|
@@ -16515,7 +16515,7 @@ _wrap_new_SdkCameraMan(int argc, VALUE *argv, VALUE self) {
|
|
16515
16515
|
Ogre::Camera *arg1 = (Ogre::Camera *) 0 ;
|
16516
16516
|
void *argp1 = 0 ;
|
16517
16517
|
int res1 = 0 ;
|
16518
|
-
const char *classname SWIGUNUSED = "
|
16518
|
+
const char *classname SWIGUNUSED = "Ogrebites::SdkCameraMan";
|
16519
16519
|
OgreBites::SdkCameraMan *result = 0 ;
|
16520
16520
|
|
16521
16521
|
if ((argc < 1) || (argc > 1)) {
|
@@ -16540,7 +16540,7 @@ free_OgreBites_SdkCameraMan(OgreBites::SdkCameraMan *arg1) {
|
|
16540
16540
|
}
|
16541
16541
|
|
16542
16542
|
SWIGINTERN VALUE
|
16543
|
-
|
16543
|
+
_wrap_SdkCameraMan_set_camera(int argc, VALUE *argv, VALUE self) {
|
16544
16544
|
OgreBites::SdkCameraMan *arg1 = (OgreBites::SdkCameraMan *) 0 ;
|
16545
16545
|
Ogre::Camera *arg2 = (Ogre::Camera *) 0 ;
|
16546
16546
|
void *argp1 = 0 ;
|
@@ -16569,7 +16569,7 @@ fail:
|
|
16569
16569
|
|
16570
16570
|
|
16571
16571
|
SWIGINTERN VALUE
|
16572
|
-
|
16572
|
+
_wrap_SdkCameraMan_get_camera(int argc, VALUE *argv, VALUE self) {
|
16573
16573
|
OgreBites::SdkCameraMan *arg1 = (OgreBites::SdkCameraMan *) 0 ;
|
16574
16574
|
void *argp1 = 0 ;
|
16575
16575
|
int res1 = 0 ;
|
@@ -16593,7 +16593,7 @@ fail:
|
|
16593
16593
|
|
16594
16594
|
|
16595
16595
|
SWIGINTERN VALUE
|
16596
|
-
|
16596
|
+
_wrap_SdkCameraMan_set_target(int argc, VALUE *argv, VALUE self) {
|
16597
16597
|
OgreBites::SdkCameraMan *arg1 = (OgreBites::SdkCameraMan *) 0 ;
|
16598
16598
|
Ogre::SceneNode *arg2 = (Ogre::SceneNode *) 0 ;
|
16599
16599
|
void *argp1 = 0 ;
|
@@ -16622,7 +16622,7 @@ fail:
|
|
16622
16622
|
|
16623
16623
|
|
16624
16624
|
SWIGINTERN VALUE
|
16625
|
-
|
16625
|
+
_wrap_SdkCameraMan_get_target(int argc, VALUE *argv, VALUE self) {
|
16626
16626
|
OgreBites::SdkCameraMan *arg1 = (OgreBites::SdkCameraMan *) 0 ;
|
16627
16627
|
void *argp1 = 0 ;
|
16628
16628
|
int res1 = 0 ;
|
@@ -16646,7 +16646,7 @@ fail:
|
|
16646
16646
|
|
16647
16647
|
|
16648
16648
|
SWIGINTERN VALUE
|
16649
|
-
|
16649
|
+
_wrap_SdkCameraMan_set_yaw_pitch_dist(int argc, VALUE *argv, VALUE self) {
|
16650
16650
|
OgreBites::SdkCameraMan *arg1 = (OgreBites::SdkCameraMan *) 0 ;
|
16651
16651
|
Ogre::Radian arg2 ;
|
16652
16652
|
Ogre::Radian arg3 ;
|
@@ -16703,7 +16703,7 @@ fail:
|
|
16703
16703
|
|
16704
16704
|
|
16705
16705
|
SWIGINTERN VALUE
|
16706
|
-
|
16706
|
+
_wrap_SdkCameraMan_set_top_speed(int argc, VALUE *argv, VALUE self) {
|
16707
16707
|
OgreBites::SdkCameraMan *arg1 = (OgreBites::SdkCameraMan *) 0 ;
|
16708
16708
|
Ogre::Real arg2 ;
|
16709
16709
|
void *argp1 = 0 ;
|
@@ -16732,7 +16732,7 @@ fail:
|
|
16732
16732
|
|
16733
16733
|
|
16734
16734
|
SWIGINTERN VALUE
|
16735
|
-
|
16735
|
+
_wrap_SdkCameraMan_get_top_speed(int argc, VALUE *argv, VALUE self) {
|
16736
16736
|
OgreBites::SdkCameraMan *arg1 = (OgreBites::SdkCameraMan *) 0 ;
|
16737
16737
|
void *argp1 = 0 ;
|
16738
16738
|
int res1 = 0 ;
|
@@ -16756,7 +16756,7 @@ fail:
|
|
16756
16756
|
|
16757
16757
|
|
16758
16758
|
SWIGINTERN VALUE
|
16759
|
-
|
16759
|
+
_wrap_SdkCameraMan_set_style(int argc, VALUE *argv, VALUE self) {
|
16760
16760
|
OgreBites::SdkCameraMan *arg1 = (OgreBites::SdkCameraMan *) 0 ;
|
16761
16761
|
OgreBites::CameraStyle arg2 ;
|
16762
16762
|
void *argp1 = 0 ;
|
@@ -16785,7 +16785,7 @@ fail:
|
|
16785
16785
|
|
16786
16786
|
|
16787
16787
|
SWIGINTERN VALUE
|
16788
|
-
|
16788
|
+
_wrap_SdkCameraMan_get_style(int argc, VALUE *argv, VALUE self) {
|
16789
16789
|
OgreBites::SdkCameraMan *arg1 = (OgreBites::SdkCameraMan *) 0 ;
|
16790
16790
|
void *argp1 = 0 ;
|
16791
16791
|
int res1 = 0 ;
|
@@ -16809,7 +16809,7 @@ fail:
|
|
16809
16809
|
|
16810
16810
|
|
16811
16811
|
SWIGINTERN VALUE
|
16812
|
-
|
16812
|
+
_wrap_SdkCameraMan_manual_stop(int argc, VALUE *argv, VALUE self) {
|
16813
16813
|
OgreBites::SdkCameraMan *arg1 = (OgreBites::SdkCameraMan *) 0 ;
|
16814
16814
|
void *argp1 = 0 ;
|
16815
16815
|
int res1 = 0 ;
|
@@ -16830,7 +16830,7 @@ fail:
|
|
16830
16830
|
|
16831
16831
|
|
16832
16832
|
SWIGINTERN VALUE
|
16833
|
-
|
16833
|
+
_wrap_SdkCameraMan_frame_rendering_queued(int argc, VALUE *argv, VALUE self) {
|
16834
16834
|
OgreBites::SdkCameraMan *arg1 = (OgreBites::SdkCameraMan *) 0 ;
|
16835
16835
|
Ogre::FrameEvent *arg2 = 0 ;
|
16836
16836
|
void *argp1 = 0 ;
|
@@ -16865,7 +16865,7 @@ fail:
|
|
16865
16865
|
|
16866
16866
|
|
16867
16867
|
SWIGINTERN VALUE
|
16868
|
-
|
16868
|
+
_wrap_SdkCameraMan_inject_key_down(int argc, VALUE *argv, VALUE self) {
|
16869
16869
|
OgreBites::SdkCameraMan *arg1 = (OgreBites::SdkCameraMan *) 0 ;
|
16870
16870
|
OIS::KeyEvent *arg2 = 0 ;
|
16871
16871
|
void *argp1 = 0 ;
|
@@ -16897,7 +16897,7 @@ fail:
|
|
16897
16897
|
|
16898
16898
|
|
16899
16899
|
SWIGINTERN VALUE
|
16900
|
-
|
16900
|
+
_wrap_SdkCameraMan_inject_key_up(int argc, VALUE *argv, VALUE self) {
|
16901
16901
|
OgreBites::SdkCameraMan *arg1 = (OgreBites::SdkCameraMan *) 0 ;
|
16902
16902
|
OIS::KeyEvent *arg2 = 0 ;
|
16903
16903
|
void *argp1 = 0 ;
|
@@ -16929,7 +16929,7 @@ fail:
|
|
16929
16929
|
|
16930
16930
|
|
16931
16931
|
SWIGINTERN VALUE
|
16932
|
-
|
16932
|
+
_wrap_SdkCameraMan_inject_mouse_move(int argc, VALUE *argv, VALUE self) {
|
16933
16933
|
OgreBites::SdkCameraMan *arg1 = (OgreBites::SdkCameraMan *) 0 ;
|
16934
16934
|
OIS::MouseEvent *arg2 = 0 ;
|
16935
16935
|
void *argp1 = 0 ;
|
@@ -16961,7 +16961,7 @@ fail:
|
|
16961
16961
|
|
16962
16962
|
|
16963
16963
|
SWIGINTERN VALUE
|
16964
|
-
|
16964
|
+
_wrap_SdkCameraMan_inject_mouse_down(int argc, VALUE *argv, VALUE self) {
|
16965
16965
|
OgreBites::SdkCameraMan *arg1 = (OgreBites::SdkCameraMan *) 0 ;
|
16966
16966
|
OIS::MouseEvent *arg2 = 0 ;
|
16967
16967
|
OIS::MouseButtonID arg3 ;
|
@@ -17001,7 +17001,7 @@ fail:
|
|
17001
17001
|
|
17002
17002
|
|
17003
17003
|
SWIGINTERN VALUE
|
17004
|
-
|
17004
|
+
_wrap_SdkCameraMan_inject_mouse_up(int argc, VALUE *argv, VALUE self) {
|
17005
17005
|
OgreBites::SdkCameraMan *arg1 = (OgreBites::SdkCameraMan *) 0 ;
|
17006
17006
|
OIS::MouseEvent *arg2 = 0 ;
|
17007
17007
|
OIS::MouseButtonID arg3 ;
|
@@ -18853,11 +18853,11 @@ SWIG_PropagateClientData(void) {
|
|
18853
18853
|
#ifdef __cplusplus
|
18854
18854
|
extern "C"
|
18855
18855
|
#endif
|
18856
|
-
SWIGEXPORT void
|
18856
|
+
SWIGEXPORT void Init_ogrebites(void) {
|
18857
18857
|
size_t i;
|
18858
18858
|
|
18859
18859
|
SWIG_InitRuntime();
|
18860
|
-
|
18860
|
+
mOgrebites = rb_define_module("Ogrebites");
|
18861
18861
|
|
18862
18862
|
SWIG_InitializeModule(0);
|
18863
18863
|
for (i = 0; i < swig_module.size; i++) {
|
@@ -18866,7 +18866,7 @@ SWIGEXPORT void Init_OgreBites(void) {
|
|
18866
18866
|
|
18867
18867
|
SWIG_RubyInitializeTrackings();
|
18868
18868
|
|
18869
|
-
SwigClassIntp.klass = rb_define_class_under(
|
18869
|
+
SwigClassIntp.klass = rb_define_class_under(mOgrebites, "Intp", rb_cObject);
|
18870
18870
|
SWIG_TypeClientData(SWIGTYPE_p_Intp, (void *) &SwigClassIntp);
|
18871
18871
|
rb_define_alloc_func(SwigClassIntp.klass, _wrap_Intp_allocate);
|
18872
18872
|
rb_define_method(SwigClassIntp.klass, "initialize", VALUEFUNC(_wrap_new_Intp), -1);
|
@@ -18878,18 +18878,18 @@ SWIGEXPORT void Init_OgreBites(void) {
|
|
18878
18878
|
SwigClassIntp.destroy = (void (*)(void *)) free_Intp;
|
18879
18879
|
SwigClassIntp.trackObjects = 0;
|
18880
18880
|
|
18881
|
-
|
18882
|
-
SWIG_TypeClientData(SWIGTYPE_p_swig__GC_VALUE, (void *) &
|
18883
|
-
rb_undef_alloc_func(
|
18884
|
-
rb_define_method(
|
18885
|
-
rb_define_method(
|
18886
|
-
|
18887
|
-
|
18881
|
+
SwigClassGCVALUE.klass = rb_define_class_under(mOgrebites, "GCVALUE", rb_cObject);
|
18882
|
+
SWIG_TypeClientData(SWIGTYPE_p_swig__GC_VALUE, (void *) &SwigClassGCVALUE);
|
18883
|
+
rb_undef_alloc_func(SwigClassGCVALUE.klass);
|
18884
|
+
rb_define_method(SwigClassGCVALUE.klass, "inspect", VALUEFUNC(_wrap_GCVALUE_inspect), -1);
|
18885
|
+
rb_define_method(SwigClassGCVALUE.klass, "to_s", VALUEFUNC(_wrap_GCVALUE_to_s), -1);
|
18886
|
+
SwigClassGCVALUE.mark = 0;
|
18887
|
+
SwigClassGCVALUE.trackObjects = 0;
|
18888
18888
|
|
18889
18889
|
swig::GC_VALUE::initialize();
|
18890
18890
|
|
18891
18891
|
|
18892
|
-
SwigClassConstIterator.klass = rb_define_class_under(
|
18892
|
+
SwigClassConstIterator.klass = rb_define_class_under(mOgrebites, "ConstIterator", rb_cObject);
|
18893
18893
|
SWIG_TypeClientData(SWIGTYPE_p_swig__ConstIterator, (void *) &SwigClassConstIterator);
|
18894
18894
|
rb_undef_alloc_func(SwigClassConstIterator.klass);
|
18895
18895
|
rb_define_method(SwigClassConstIterator.klass, "value", VALUEFUNC(_wrap_ConstIterator_value), -1);
|
@@ -18905,7 +18905,7 @@ SWIGEXPORT void Init_OgreBites(void) {
|
|
18905
18905
|
SwigClassConstIterator.destroy = (void (*)(void *)) free_swig_ConstIterator;
|
18906
18906
|
SwigClassConstIterator.trackObjects = 0;
|
18907
18907
|
|
18908
|
-
SwigClassIterator.klass = rb_define_class_under(
|
18908
|
+
SwigClassIterator.klass = rb_define_class_under(mOgrebites, "Iterator", ((swig_class *) SWIGTYPE_p_swig__ConstIterator->clientdata)->klass);
|
18909
18909
|
SWIG_TypeClientData(SWIGTYPE_p_swig__Iterator, (void *) &SwigClassIterator);
|
18910
18910
|
rb_undef_alloc_func(SwigClassIterator.klass);
|
18911
18911
|
rb_define_method(SwigClassIterator.klass, "value=", VALUEFUNC(_wrap_Iterator_valuee___), -1);
|
@@ -18920,198 +18920,198 @@ SWIGEXPORT void Init_OgreBites(void) {
|
|
18920
18920
|
SwigClassIterator.mark = 0;
|
18921
18921
|
SwigClassIterator.destroy = (void (*)(void *)) free_swig_Iterator;
|
18922
18922
|
SwigClassIterator.trackObjects = 0;
|
18923
|
-
rb_define_const(
|
18924
|
-
rb_define_const(
|
18925
|
-
rb_define_const(
|
18926
|
-
rb_define_const(
|
18927
|
-
rb_define_const(
|
18928
|
-
rb_define_const(
|
18929
|
-
rb_define_const(
|
18930
|
-
rb_define_const(
|
18931
|
-
rb_define_const(
|
18932
|
-
rb_define_const(
|
18933
|
-
rb_define_const(
|
18934
|
-
rb_define_const(
|
18935
|
-
rb_define_const(
|
18936
|
-
rb_define_module_function(
|
18937
|
-
|
18938
|
-
SwigClassSdkTrayListener.klass = rb_define_class_under(
|
18923
|
+
rb_define_const(mOgrebites, "TL_TOPLEFT", SWIG_From_int(static_cast< int >(OgreBites::TL_TOPLEFT)));
|
18924
|
+
rb_define_const(mOgrebites, "TL_TOP", SWIG_From_int(static_cast< int >(OgreBites::TL_TOP)));
|
18925
|
+
rb_define_const(mOgrebites, "TL_TOPRIGHT", SWIG_From_int(static_cast< int >(OgreBites::TL_TOPRIGHT)));
|
18926
|
+
rb_define_const(mOgrebites, "TL_LEFT", SWIG_From_int(static_cast< int >(OgreBites::TL_LEFT)));
|
18927
|
+
rb_define_const(mOgrebites, "TL_CENTER", SWIG_From_int(static_cast< int >(OgreBites::TL_CENTER)));
|
18928
|
+
rb_define_const(mOgrebites, "TL_RIGHT", SWIG_From_int(static_cast< int >(OgreBites::TL_RIGHT)));
|
18929
|
+
rb_define_const(mOgrebites, "TL_BOTTOMLEFT", SWIG_From_int(static_cast< int >(OgreBites::TL_BOTTOMLEFT)));
|
18930
|
+
rb_define_const(mOgrebites, "TL_BOTTOM", SWIG_From_int(static_cast< int >(OgreBites::TL_BOTTOM)));
|
18931
|
+
rb_define_const(mOgrebites, "TL_BOTTOMRIGHT", SWIG_From_int(static_cast< int >(OgreBites::TL_BOTTOMRIGHT)));
|
18932
|
+
rb_define_const(mOgrebites, "TL_NONE", SWIG_From_int(static_cast< int >(OgreBites::TL_NONE)));
|
18933
|
+
rb_define_const(mOgrebites, "BS_UP", SWIG_From_int(static_cast< int >(OgreBites::BS_UP)));
|
18934
|
+
rb_define_const(mOgrebites, "BS_OVER", SWIG_From_int(static_cast< int >(OgreBites::BS_OVER)));
|
18935
|
+
rb_define_const(mOgrebites, "BS_DOWN", SWIG_From_int(static_cast< int >(OgreBites::BS_DOWN)));
|
18936
|
+
rb_define_module_function(mOgrebites, "disown_SdkTrayListener", VALUEFUNC(_wrap_disown_SdkTrayListener), -1);
|
18937
|
+
|
18938
|
+
SwigClassSdkTrayListener.klass = rb_define_class_under(mOgrebites, "SdkTrayListener", rb_cObject);
|
18939
18939
|
SWIG_TypeClientData(SWIGTYPE_p_OgreBites__SdkTrayListener, (void *) &SwigClassSdkTrayListener);
|
18940
18940
|
rb_define_alloc_func(SwigClassSdkTrayListener.klass, _wrap_SdkTrayListener_allocate);
|
18941
18941
|
rb_define_method(SwigClassSdkTrayListener.klass, "initialize", VALUEFUNC(_wrap_new_SdkTrayListener), -1);
|
18942
|
-
rb_define_method(SwigClassSdkTrayListener.klass, "
|
18943
|
-
rb_define_method(SwigClassSdkTrayListener.klass, "
|
18944
|
-
rb_define_method(SwigClassSdkTrayListener.klass, "
|
18945
|
-
rb_define_method(SwigClassSdkTrayListener.klass, "
|
18946
|
-
rb_define_method(SwigClassSdkTrayListener.klass, "
|
18947
|
-
rb_define_method(SwigClassSdkTrayListener.klass, "
|
18948
|
-
rb_define_method(SwigClassSdkTrayListener.klass, "
|
18942
|
+
rb_define_method(SwigClassSdkTrayListener.klass, "button_hit", VALUEFUNC(_wrap_SdkTrayListener_button_hit), -1);
|
18943
|
+
rb_define_method(SwigClassSdkTrayListener.klass, "item_selected", VALUEFUNC(_wrap_SdkTrayListener_item_selected), -1);
|
18944
|
+
rb_define_method(SwigClassSdkTrayListener.klass, "label_hit", VALUEFUNC(_wrap_SdkTrayListener_label_hit), -1);
|
18945
|
+
rb_define_method(SwigClassSdkTrayListener.klass, "slider_moved", VALUEFUNC(_wrap_SdkTrayListener_slider_moved), -1);
|
18946
|
+
rb_define_method(SwigClassSdkTrayListener.klass, "check_box_toggled", VALUEFUNC(_wrap_SdkTrayListener_check_box_toggled), -1);
|
18947
|
+
rb_define_method(SwigClassSdkTrayListener.klass, "ok_dialog_closed", VALUEFUNC(_wrap_SdkTrayListener_ok_dialog_closed), -1);
|
18948
|
+
rb_define_method(SwigClassSdkTrayListener.klass, "yes_no_dialog_closed", VALUEFUNC(_wrap_SdkTrayListener_yes_no_dialog_closed), -1);
|
18949
18949
|
SwigClassSdkTrayListener.mark = 0;
|
18950
18950
|
SwigClassSdkTrayListener.destroy = (void (*)(void *)) free_OgreBites_SdkTrayListener;
|
18951
18951
|
SwigClassSdkTrayListener.trackObjects = 0;
|
18952
18952
|
|
18953
|
-
SwigClassWidget.klass = rb_define_class_under(
|
18953
|
+
SwigClassWidget.klass = rb_define_class_under(mOgrebites, "Widget", rb_cObject);
|
18954
18954
|
SWIG_TypeClientData(SWIGTYPE_p_OgreBites__Widget, (void *) &SwigClassWidget);
|
18955
18955
|
rb_define_alloc_func(SwigClassWidget.klass, _wrap_Widget_allocate);
|
18956
18956
|
rb_define_method(SwigClassWidget.klass, "initialize", VALUEFUNC(_wrap_new_Widget), -1);
|
18957
18957
|
rb_define_method(SwigClassWidget.klass, "cleanup", VALUEFUNC(_wrap_Widget_cleanup), -1);
|
18958
|
-
rb_define_singleton_method(SwigClassWidget.klass, "
|
18959
|
-
rb_define_singleton_method(SwigClassWidget.klass, "
|
18960
|
-
rb_define_singleton_method(SwigClassWidget.klass, "
|
18961
|
-
rb_define_singleton_method(SwigClassWidget.klass, "
|
18962
|
-
rb_define_singleton_method(SwigClassWidget.klass, "
|
18963
|
-
rb_define_method(SwigClassWidget.klass, "
|
18964
|
-
rb_define_method(SwigClassWidget.klass, "
|
18965
|
-
rb_define_method(SwigClassWidget.klass, "
|
18958
|
+
rb_define_singleton_method(SwigClassWidget.klass, "nuke_overlay_element", VALUEFUNC(_wrap_Widget_nuke_overlay_element), -1);
|
18959
|
+
rb_define_singleton_method(SwigClassWidget.klass, "is_cursor_over", VALUEFUNC(_wrap_Widget_is_cursor_over), -1);
|
18960
|
+
rb_define_singleton_method(SwigClassWidget.klass, "cursor_offset", VALUEFUNC(_wrap_Widget_cursor_offset), -1);
|
18961
|
+
rb_define_singleton_method(SwigClassWidget.klass, "get_caption_width", VALUEFUNC(_wrap_Widget_get_caption_width), -1);
|
18962
|
+
rb_define_singleton_method(SwigClassWidget.klass, "fit_caption_to_area", VALUEFUNC(_wrap_Widget_fit_caption_to_area), -1);
|
18963
|
+
rb_define_method(SwigClassWidget.klass, "get_overlay_element", VALUEFUNC(_wrap_Widget_get_overlay_element), -1);
|
18964
|
+
rb_define_method(SwigClassWidget.klass, "get_name", VALUEFUNC(_wrap_Widget_get_name), -1);
|
18965
|
+
rb_define_method(SwigClassWidget.klass, "get_tray_location", VALUEFUNC(_wrap_Widget_get_tray_location), -1);
|
18966
18966
|
rb_define_method(SwigClassWidget.klass, "hide", VALUEFUNC(_wrap_Widget_hide), -1);
|
18967
18967
|
rb_define_method(SwigClassWidget.klass, "show", VALUEFUNC(_wrap_Widget_show), -1);
|
18968
|
-
rb_define_method(SwigClassWidget.klass, "
|
18969
|
-
rb_define_method(SwigClassWidget.klass, "
|
18970
|
-
rb_define_method(SwigClassWidget.klass, "
|
18971
|
-
rb_define_method(SwigClassWidget.klass, "
|
18972
|
-
rb_define_method(SwigClassWidget.klass, "
|
18973
|
-
rb_define_method(SwigClassWidget.klass, "
|
18974
|
-
rb_define_method(SwigClassWidget.klass, "
|
18968
|
+
rb_define_method(SwigClassWidget.klass, "is_visible", VALUEFUNC(_wrap_Widget_is_visible), -1);
|
18969
|
+
rb_define_method(SwigClassWidget.klass, "_cursor_pressed", VALUEFUNC(_wrap_Widget__cursor_pressed), -1);
|
18970
|
+
rb_define_method(SwigClassWidget.klass, "_cursor_released", VALUEFUNC(_wrap_Widget__cursor_released), -1);
|
18971
|
+
rb_define_method(SwigClassWidget.klass, "_cursor_moved", VALUEFUNC(_wrap_Widget__cursor_moved), -1);
|
18972
|
+
rb_define_method(SwigClassWidget.klass, "_focus_lost", VALUEFUNC(_wrap_Widget__focus_lost), -1);
|
18973
|
+
rb_define_method(SwigClassWidget.klass, "_assign_to_tray", VALUEFUNC(_wrap_Widget__assign_to_tray), -1);
|
18974
|
+
rb_define_method(SwigClassWidget.klass, "_assign_listener", VALUEFUNC(_wrap_Widget__assign_listener), -1);
|
18975
18975
|
SwigClassWidget.mark = 0;
|
18976
18976
|
SwigClassWidget.destroy = (void (*)(void *)) free_OgreBites_Widget;
|
18977
18977
|
SwigClassWidget.trackObjects = 0;
|
18978
18978
|
|
18979
|
-
SwigClassButton.klass = rb_define_class_under(
|
18979
|
+
SwigClassButton.klass = rb_define_class_under(mOgrebites, "Button", ((swig_class *) SWIGTYPE_p_OgreBites__Widget->clientdata)->klass);
|
18980
18980
|
SWIG_TypeClientData(SWIGTYPE_p_OgreBites__Button, (void *) &SwigClassButton);
|
18981
18981
|
rb_define_alloc_func(SwigClassButton.klass, _wrap_Button_allocate);
|
18982
18982
|
rb_define_method(SwigClassButton.klass, "initialize", VALUEFUNC(_wrap_new_Button), -1);
|
18983
|
-
rb_define_method(SwigClassButton.klass, "
|
18984
|
-
rb_define_method(SwigClassButton.klass, "
|
18985
|
-
rb_define_method(SwigClassButton.klass, "
|
18986
|
-
rb_define_method(SwigClassButton.klass, "
|
18987
|
-
rb_define_method(SwigClassButton.klass, "
|
18988
|
-
rb_define_method(SwigClassButton.klass, "
|
18989
|
-
rb_define_method(SwigClassButton.klass, "
|
18983
|
+
rb_define_method(SwigClassButton.klass, "get_caption", VALUEFUNC(_wrap_Button_get_caption), -1);
|
18984
|
+
rb_define_method(SwigClassButton.klass, "set_caption", VALUEFUNC(_wrap_Button_set_caption), -1);
|
18985
|
+
rb_define_method(SwigClassButton.klass, "get_state", VALUEFUNC(_wrap_Button_get_state), -1);
|
18986
|
+
rb_define_method(SwigClassButton.klass, "_cursor_pressed", VALUEFUNC(_wrap_Button__cursor_pressed), -1);
|
18987
|
+
rb_define_method(SwigClassButton.klass, "_cursor_released", VALUEFUNC(_wrap_Button__cursor_released), -1);
|
18988
|
+
rb_define_method(SwigClassButton.klass, "_cursor_moved", VALUEFUNC(_wrap_Button__cursor_moved), -1);
|
18989
|
+
rb_define_method(SwigClassButton.klass, "_focus_lost", VALUEFUNC(_wrap_Button__focus_lost), -1);
|
18990
18990
|
SwigClassButton.mark = 0;
|
18991
18991
|
SwigClassButton.destroy = (void (*)(void *)) free_OgreBites_Button;
|
18992
18992
|
SwigClassButton.trackObjects = 0;
|
18993
18993
|
|
18994
|
-
SwigClassTextBox.klass = rb_define_class_under(
|
18994
|
+
SwigClassTextBox.klass = rb_define_class_under(mOgrebites, "TextBox", ((swig_class *) SWIGTYPE_p_OgreBites__Widget->clientdata)->klass);
|
18995
18995
|
SWIG_TypeClientData(SWIGTYPE_p_OgreBites__TextBox, (void *) &SwigClassTextBox);
|
18996
18996
|
rb_define_alloc_func(SwigClassTextBox.klass, _wrap_TextBox_allocate);
|
18997
18997
|
rb_define_method(SwigClassTextBox.klass, "initialize", VALUEFUNC(_wrap_new_TextBox), -1);
|
18998
|
-
rb_define_method(SwigClassTextBox.klass, "
|
18999
|
-
rb_define_method(SwigClassTextBox.klass, "
|
19000
|
-
rb_define_method(SwigClassTextBox.klass, "
|
19001
|
-
rb_define_method(SwigClassTextBox.klass, "
|
19002
|
-
rb_define_method(SwigClassTextBox.klass, "
|
19003
|
-
rb_define_method(SwigClassTextBox.klass, "
|
19004
|
-
rb_define_method(SwigClassTextBox.klass, "
|
19005
|
-
rb_define_method(SwigClassTextBox.klass, "
|
19006
|
-
rb_define_method(SwigClassTextBox.klass, "
|
19007
|
-
rb_define_method(SwigClassTextBox.klass, "
|
19008
|
-
rb_define_method(SwigClassTextBox.klass, "
|
19009
|
-
rb_define_method(SwigClassTextBox.klass, "
|
19010
|
-
rb_define_method(SwigClassTextBox.klass, "
|
19011
|
-
rb_define_method(SwigClassTextBox.klass, "
|
19012
|
-
rb_define_method(SwigClassTextBox.klass, "
|
19013
|
-
rb_define_method(SwigClassTextBox.klass, "
|
19014
|
-
rb_define_method(SwigClassTextBox.klass, "
|
18998
|
+
rb_define_method(SwigClassTextBox.klass, "set_padding", VALUEFUNC(_wrap_TextBox_set_padding), -1);
|
18999
|
+
rb_define_method(SwigClassTextBox.klass, "get_padding", VALUEFUNC(_wrap_TextBox_get_padding), -1);
|
19000
|
+
rb_define_method(SwigClassTextBox.klass, "get_caption", VALUEFUNC(_wrap_TextBox_get_caption), -1);
|
19001
|
+
rb_define_method(SwigClassTextBox.klass, "set_caption", VALUEFUNC(_wrap_TextBox_set_caption), -1);
|
19002
|
+
rb_define_method(SwigClassTextBox.klass, "get_text", VALUEFUNC(_wrap_TextBox_get_text), -1);
|
19003
|
+
rb_define_method(SwigClassTextBox.klass, "set_text", VALUEFUNC(_wrap_TextBox_set_text), -1);
|
19004
|
+
rb_define_method(SwigClassTextBox.klass, "set_text_alignment", VALUEFUNC(_wrap_TextBox_set_text_alignment), -1);
|
19005
|
+
rb_define_method(SwigClassTextBox.klass, "clear_text", VALUEFUNC(_wrap_TextBox_clear_text), -1);
|
19006
|
+
rb_define_method(SwigClassTextBox.klass, "append_text", VALUEFUNC(_wrap_TextBox_append_text), -1);
|
19007
|
+
rb_define_method(SwigClassTextBox.klass, "refit_contents", VALUEFUNC(_wrap_TextBox_refit_contents), -1);
|
19008
|
+
rb_define_method(SwigClassTextBox.klass, "set_scroll_percentage", VALUEFUNC(_wrap_TextBox_set_scroll_percentage), -1);
|
19009
|
+
rb_define_method(SwigClassTextBox.klass, "get_scroll_percentage", VALUEFUNC(_wrap_TextBox_get_scroll_percentage), -1);
|
19010
|
+
rb_define_method(SwigClassTextBox.klass, "get_height_in_lines", VALUEFUNC(_wrap_TextBox_get_height_in_lines), -1);
|
19011
|
+
rb_define_method(SwigClassTextBox.klass, "_cursor_pressed", VALUEFUNC(_wrap_TextBox__cursor_pressed), -1);
|
19012
|
+
rb_define_method(SwigClassTextBox.klass, "_cursor_released", VALUEFUNC(_wrap_TextBox__cursor_released), -1);
|
19013
|
+
rb_define_method(SwigClassTextBox.klass, "_cursor_moved", VALUEFUNC(_wrap_TextBox__cursor_moved), -1);
|
19014
|
+
rb_define_method(SwigClassTextBox.klass, "_focus_lost", VALUEFUNC(_wrap_TextBox__focus_lost), -1);
|
19015
19015
|
SwigClassTextBox.mark = 0;
|
19016
19016
|
SwigClassTextBox.destroy = (void (*)(void *)) free_OgreBites_TextBox;
|
19017
19017
|
SwigClassTextBox.trackObjects = 0;
|
19018
19018
|
|
19019
|
-
SwigClassSelectMenu.klass = rb_define_class_under(
|
19019
|
+
SwigClassSelectMenu.klass = rb_define_class_under(mOgrebites, "SelectMenu", ((swig_class *) SWIGTYPE_p_OgreBites__Widget->clientdata)->klass);
|
19020
19020
|
SWIG_TypeClientData(SWIGTYPE_p_OgreBites__SelectMenu, (void *) &SwigClassSelectMenu);
|
19021
19021
|
rb_define_alloc_func(SwigClassSelectMenu.klass, _wrap_SelectMenu_allocate);
|
19022
19022
|
rb_define_method(SwigClassSelectMenu.klass, "initialize", VALUEFUNC(_wrap_new_SelectMenu), -1);
|
19023
|
-
rb_define_method(SwigClassSelectMenu.klass, "
|
19024
|
-
rb_define_method(SwigClassSelectMenu.klass, "
|
19025
|
-
rb_define_method(SwigClassSelectMenu.klass, "
|
19026
|
-
rb_define_method(SwigClassSelectMenu.klass, "
|
19027
|
-
rb_define_method(SwigClassSelectMenu.klass, "
|
19028
|
-
rb_define_method(SwigClassSelectMenu.klass, "
|
19029
|
-
rb_define_method(SwigClassSelectMenu.klass, "
|
19030
|
-
rb_define_method(SwigClassSelectMenu.klass, "
|
19031
|
-
rb_define_method(SwigClassSelectMenu.klass, "
|
19032
|
-
rb_define_method(SwigClassSelectMenu.klass, "
|
19033
|
-
rb_define_method(SwigClassSelectMenu.klass, "
|
19034
|
-
rb_define_method(SwigClassSelectMenu.klass, "
|
19035
|
-
rb_define_method(SwigClassSelectMenu.klass, "
|
19036
|
-
rb_define_method(SwigClassSelectMenu.klass, "
|
19037
|
-
rb_define_method(SwigClassSelectMenu.klass, "
|
19038
|
-
rb_define_method(SwigClassSelectMenu.klass, "
|
19023
|
+
rb_define_method(SwigClassSelectMenu.klass, "is_expanded", VALUEFUNC(_wrap_SelectMenu_is_expanded), -1);
|
19024
|
+
rb_define_method(SwigClassSelectMenu.klass, "get_caption", VALUEFUNC(_wrap_SelectMenu_get_caption), -1);
|
19025
|
+
rb_define_method(SwigClassSelectMenu.klass, "set_caption", VALUEFUNC(_wrap_SelectMenu_set_caption), -1);
|
19026
|
+
rb_define_method(SwigClassSelectMenu.klass, "get_items", VALUEFUNC(_wrap_SelectMenu_get_items), -1);
|
19027
|
+
rb_define_method(SwigClassSelectMenu.klass, "get_num_items", VALUEFUNC(_wrap_SelectMenu_get_num_items), -1);
|
19028
|
+
rb_define_method(SwigClassSelectMenu.klass, "add_item", VALUEFUNC(_wrap_SelectMenu_add_item), -1);
|
19029
|
+
rb_define_method(SwigClassSelectMenu.klass, "remove_item", VALUEFUNC(_wrap_SelectMenu_remove_item), -1);
|
19030
|
+
rb_define_method(SwigClassSelectMenu.klass, "clear_items", VALUEFUNC(_wrap_SelectMenu_clear_items), -1);
|
19031
|
+
rb_define_method(SwigClassSelectMenu.klass, "select_item", VALUEFUNC(_wrap_SelectMenu_select_item), -1);
|
19032
|
+
rb_define_method(SwigClassSelectMenu.klass, "get_selected_item", VALUEFUNC(_wrap_SelectMenu_get_selected_item), -1);
|
19033
|
+
rb_define_method(SwigClassSelectMenu.klass, "get_selection_index", VALUEFUNC(_wrap_SelectMenu_get_selection_index), -1);
|
19034
|
+
rb_define_method(SwigClassSelectMenu.klass, "_cursor_pressed", VALUEFUNC(_wrap_SelectMenu__cursor_pressed), -1);
|
19035
|
+
rb_define_method(SwigClassSelectMenu.klass, "_cursor_released", VALUEFUNC(_wrap_SelectMenu__cursor_released), -1);
|
19036
|
+
rb_define_method(SwigClassSelectMenu.klass, "_cursor_moved", VALUEFUNC(_wrap_SelectMenu__cursor_moved), -1);
|
19037
|
+
rb_define_method(SwigClassSelectMenu.klass, "_focus_lost", VALUEFUNC(_wrap_SelectMenu__focus_lost), -1);
|
19038
|
+
rb_define_method(SwigClassSelectMenu.klass, "set_items", VALUEFUNC(_wrap_SelectMenu_set_items), -1);
|
19039
19039
|
rb_define_singleton_method(SwigClassSelectMenu.klass, "cast", VALUEFUNC(_wrap_SelectMenu_cast), -1);
|
19040
19040
|
SwigClassSelectMenu.mark = 0;
|
19041
19041
|
SwigClassSelectMenu.destroy = (void (*)(void *)) free_OgreBites_SelectMenu;
|
19042
19042
|
SwigClassSelectMenu.trackObjects = 0;
|
19043
19043
|
|
19044
|
-
SwigClassLabel.klass = rb_define_class_under(
|
19044
|
+
SwigClassLabel.klass = rb_define_class_under(mOgrebites, "Label", ((swig_class *) SWIGTYPE_p_OgreBites__Widget->clientdata)->klass);
|
19045
19045
|
SWIG_TypeClientData(SWIGTYPE_p_OgreBites__Label, (void *) &SwigClassLabel);
|
19046
19046
|
rb_define_alloc_func(SwigClassLabel.klass, _wrap_Label_allocate);
|
19047
19047
|
rb_define_method(SwigClassLabel.klass, "initialize", VALUEFUNC(_wrap_new_Label), -1);
|
19048
|
-
rb_define_method(SwigClassLabel.klass, "
|
19049
|
-
rb_define_method(SwigClassLabel.klass, "
|
19050
|
-
rb_define_method(SwigClassLabel.klass, "
|
19051
|
-
rb_define_method(SwigClassLabel.klass, "
|
19048
|
+
rb_define_method(SwigClassLabel.klass, "get_caption", VALUEFUNC(_wrap_Label_get_caption), -1);
|
19049
|
+
rb_define_method(SwigClassLabel.klass, "set_caption", VALUEFUNC(_wrap_Label_set_caption), -1);
|
19050
|
+
rb_define_method(SwigClassLabel.klass, "_cursor_pressed", VALUEFUNC(_wrap_Label__cursor_pressed), -1);
|
19051
|
+
rb_define_method(SwigClassLabel.klass, "_is_fit_to_tray", VALUEFUNC(_wrap_Label__is_fit_to_tray), -1);
|
19052
19052
|
SwigClassLabel.mark = 0;
|
19053
19053
|
SwigClassLabel.destroy = (void (*)(void *)) free_OgreBites_Label;
|
19054
19054
|
SwigClassLabel.trackObjects = 0;
|
19055
19055
|
|
19056
|
-
SwigClassSeparator.klass = rb_define_class_under(
|
19056
|
+
SwigClassSeparator.klass = rb_define_class_under(mOgrebites, "Separator", ((swig_class *) SWIGTYPE_p_OgreBites__Widget->clientdata)->klass);
|
19057
19057
|
SWIG_TypeClientData(SWIGTYPE_p_OgreBites__Separator, (void *) &SwigClassSeparator);
|
19058
19058
|
rb_define_alloc_func(SwigClassSeparator.klass, _wrap_Separator_allocate);
|
19059
19059
|
rb_define_method(SwigClassSeparator.klass, "initialize", VALUEFUNC(_wrap_new_Separator), -1);
|
19060
|
-
rb_define_method(SwigClassSeparator.klass, "
|
19060
|
+
rb_define_method(SwigClassSeparator.klass, "_is_fit_to_tray", VALUEFUNC(_wrap_Separator__is_fit_to_tray), -1);
|
19061
19061
|
SwigClassSeparator.mark = 0;
|
19062
19062
|
SwigClassSeparator.destroy = (void (*)(void *)) free_OgreBites_Separator;
|
19063
19063
|
SwigClassSeparator.trackObjects = 0;
|
19064
19064
|
|
19065
|
-
SwigClassSlider.klass = rb_define_class_under(
|
19065
|
+
SwigClassSlider.klass = rb_define_class_under(mOgrebites, "Slider", ((swig_class *) SWIGTYPE_p_OgreBites__Widget->clientdata)->klass);
|
19066
19066
|
SWIG_TypeClientData(SWIGTYPE_p_OgreBites__Slider, (void *) &SwigClassSlider);
|
19067
19067
|
rb_define_alloc_func(SwigClassSlider.klass, _wrap_Slider_allocate);
|
19068
19068
|
rb_define_method(SwigClassSlider.klass, "initialize", VALUEFUNC(_wrap_new_Slider), -1);
|
19069
|
-
rb_define_method(SwigClassSlider.klass, "
|
19070
|
-
rb_define_method(SwigClassSlider.klass, "
|
19071
|
-
rb_define_method(SwigClassSlider.klass, "
|
19072
|
-
rb_define_method(SwigClassSlider.klass, "
|
19073
|
-
rb_define_method(SwigClassSlider.klass, "
|
19074
|
-
rb_define_method(SwigClassSlider.klass, "
|
19075
|
-
rb_define_method(SwigClassSlider.klass, "
|
19076
|
-
rb_define_method(SwigClassSlider.klass, "
|
19077
|
-
rb_define_method(SwigClassSlider.klass, "
|
19078
|
-
rb_define_method(SwigClassSlider.klass, "
|
19079
|
-
rb_define_method(SwigClassSlider.klass, "
|
19069
|
+
rb_define_method(SwigClassSlider.klass, "set_range", VALUEFUNC(_wrap_Slider_set_range), -1);
|
19070
|
+
rb_define_method(SwigClassSlider.klass, "get_value_caption", VALUEFUNC(_wrap_Slider_get_value_caption), -1);
|
19071
|
+
rb_define_method(SwigClassSlider.klass, "set_value_caption", VALUEFUNC(_wrap_Slider_set_value_caption), -1);
|
19072
|
+
rb_define_method(SwigClassSlider.klass, "set_value", VALUEFUNC(_wrap_Slider_set_value), -1);
|
19073
|
+
rb_define_method(SwigClassSlider.klass, "get_value", VALUEFUNC(_wrap_Slider_get_value), -1);
|
19074
|
+
rb_define_method(SwigClassSlider.klass, "get_caption", VALUEFUNC(_wrap_Slider_get_caption), -1);
|
19075
|
+
rb_define_method(SwigClassSlider.klass, "set_caption", VALUEFUNC(_wrap_Slider_set_caption), -1);
|
19076
|
+
rb_define_method(SwigClassSlider.klass, "_cursor_pressed", VALUEFUNC(_wrap_Slider__cursor_pressed), -1);
|
19077
|
+
rb_define_method(SwigClassSlider.klass, "_cursor_released", VALUEFUNC(_wrap_Slider__cursor_released), -1);
|
19078
|
+
rb_define_method(SwigClassSlider.klass, "_cursor_moved", VALUEFUNC(_wrap_Slider__cursor_moved), -1);
|
19079
|
+
rb_define_method(SwigClassSlider.klass, "_focus_lost", VALUEFUNC(_wrap_Slider__focus_lost), -1);
|
19080
19080
|
SwigClassSlider.mark = 0;
|
19081
19081
|
SwigClassSlider.destroy = (void (*)(void *)) free_OgreBites_Slider;
|
19082
19082
|
SwigClassSlider.trackObjects = 0;
|
19083
19083
|
|
19084
|
-
SwigClassParamsPanel.klass = rb_define_class_under(
|
19084
|
+
SwigClassParamsPanel.klass = rb_define_class_under(mOgrebites, "ParamsPanel", ((swig_class *) SWIGTYPE_p_OgreBites__Widget->clientdata)->klass);
|
19085
19085
|
SWIG_TypeClientData(SWIGTYPE_p_OgreBites__ParamsPanel, (void *) &SwigClassParamsPanel);
|
19086
19086
|
rb_define_alloc_func(SwigClassParamsPanel.klass, _wrap_ParamsPanel_allocate);
|
19087
19087
|
rb_define_method(SwigClassParamsPanel.klass, "initialize", VALUEFUNC(_wrap_new_ParamsPanel), -1);
|
19088
|
-
rb_define_method(SwigClassParamsPanel.klass, "
|
19089
|
-
rb_define_method(SwigClassParamsPanel.klass, "
|
19090
|
-
rb_define_method(SwigClassParamsPanel.klass, "
|
19091
|
-
rb_define_method(SwigClassParamsPanel.klass, "
|
19092
|
-
rb_define_method(SwigClassParamsPanel.klass, "
|
19093
|
-
rb_define_method(SwigClassParamsPanel.klass, "
|
19088
|
+
rb_define_method(SwigClassParamsPanel.klass, "set_all_param_names", VALUEFUNC(_wrap_ParamsPanel_set_all_param_names), -1);
|
19089
|
+
rb_define_method(SwigClassParamsPanel.klass, "get_all_param_names", VALUEFUNC(_wrap_ParamsPanel_get_all_param_names), -1);
|
19090
|
+
rb_define_method(SwigClassParamsPanel.klass, "set_all_param_values", VALUEFUNC(_wrap_ParamsPanel_set_all_param_values), -1);
|
19091
|
+
rb_define_method(SwigClassParamsPanel.klass, "set_param_value", VALUEFUNC(_wrap_ParamsPanel_set_param_value), -1);
|
19092
|
+
rb_define_method(SwigClassParamsPanel.klass, "get_param_value", VALUEFUNC(_wrap_ParamsPanel_get_param_value), -1);
|
19093
|
+
rb_define_method(SwigClassParamsPanel.klass, "get_all_param_values", VALUEFUNC(_wrap_ParamsPanel_get_all_param_values), -1);
|
19094
19094
|
SwigClassParamsPanel.mark = 0;
|
19095
19095
|
SwigClassParamsPanel.destroy = (void (*)(void *)) free_OgreBites_ParamsPanel;
|
19096
19096
|
SwigClassParamsPanel.trackObjects = 0;
|
19097
19097
|
|
19098
|
-
SwigClassCheckBox.klass = rb_define_class_under(
|
19098
|
+
SwigClassCheckBox.klass = rb_define_class_under(mOgrebites, "CheckBox", ((swig_class *) SWIGTYPE_p_OgreBites__Widget->clientdata)->klass);
|
19099
19099
|
SWIG_TypeClientData(SWIGTYPE_p_OgreBites__CheckBox, (void *) &SwigClassCheckBox);
|
19100
19100
|
rb_define_alloc_func(SwigClassCheckBox.klass, _wrap_CheckBox_allocate);
|
19101
19101
|
rb_define_method(SwigClassCheckBox.klass, "initialize", VALUEFUNC(_wrap_new_CheckBox), -1);
|
19102
|
-
rb_define_method(SwigClassCheckBox.klass, "
|
19103
|
-
rb_define_method(SwigClassCheckBox.klass, "
|
19104
|
-
rb_define_method(SwigClassCheckBox.klass, "
|
19105
|
-
rb_define_method(SwigClassCheckBox.klass, "
|
19102
|
+
rb_define_method(SwigClassCheckBox.klass, "get_caption", VALUEFUNC(_wrap_CheckBox_get_caption), -1);
|
19103
|
+
rb_define_method(SwigClassCheckBox.klass, "set_caption", VALUEFUNC(_wrap_CheckBox_set_caption), -1);
|
19104
|
+
rb_define_method(SwigClassCheckBox.klass, "is_checked", VALUEFUNC(_wrap_CheckBox_is_checked), -1);
|
19105
|
+
rb_define_method(SwigClassCheckBox.klass, "set_checked", VALUEFUNC(_wrap_CheckBox_set_checked), -1);
|
19106
19106
|
rb_define_method(SwigClassCheckBox.klass, "toggle", VALUEFUNC(_wrap_CheckBox_toggle), -1);
|
19107
|
-
rb_define_method(SwigClassCheckBox.klass, "
|
19108
|
-
rb_define_method(SwigClassCheckBox.klass, "
|
19109
|
-
rb_define_method(SwigClassCheckBox.klass, "
|
19107
|
+
rb_define_method(SwigClassCheckBox.klass, "_cursor_pressed", VALUEFUNC(_wrap_CheckBox__cursor_pressed), -1);
|
19108
|
+
rb_define_method(SwigClassCheckBox.klass, "_cursor_moved", VALUEFUNC(_wrap_CheckBox__cursor_moved), -1);
|
19109
|
+
rb_define_method(SwigClassCheckBox.klass, "_focus_lost", VALUEFUNC(_wrap_CheckBox__focus_lost), -1);
|
19110
19110
|
SwigClassCheckBox.mark = 0;
|
19111
19111
|
SwigClassCheckBox.destroy = (void (*)(void *)) free_OgreBites_CheckBox;
|
19112
19112
|
SwigClassCheckBox.trackObjects = 0;
|
19113
19113
|
|
19114
|
-
SwigClassDecorWidget.klass = rb_define_class_under(
|
19114
|
+
SwigClassDecorWidget.klass = rb_define_class_under(mOgrebites, "DecorWidget", ((swig_class *) SWIGTYPE_p_OgreBites__Widget->clientdata)->klass);
|
19115
19115
|
SWIG_TypeClientData(SWIGTYPE_p_OgreBites__DecorWidget, (void *) &SwigClassDecorWidget);
|
19116
19116
|
rb_define_alloc_func(SwigClassDecorWidget.klass, _wrap_DecorWidget_allocate);
|
19117
19117
|
rb_define_method(SwigClassDecorWidget.klass, "initialize", VALUEFUNC(_wrap_new_DecorWidget), -1);
|
@@ -19119,137 +19119,137 @@ SWIGEXPORT void Init_OgreBites(void) {
|
|
19119
19119
|
SwigClassDecorWidget.destroy = (void (*)(void *)) free_OgreBites_DecorWidget;
|
19120
19120
|
SwigClassDecorWidget.trackObjects = 0;
|
19121
19121
|
|
19122
|
-
SwigClassProgressBar.klass = rb_define_class_under(
|
19122
|
+
SwigClassProgressBar.klass = rb_define_class_under(mOgrebites, "ProgressBar", ((swig_class *) SWIGTYPE_p_OgreBites__Widget->clientdata)->klass);
|
19123
19123
|
SWIG_TypeClientData(SWIGTYPE_p_OgreBites__ProgressBar, (void *) &SwigClassProgressBar);
|
19124
19124
|
rb_define_alloc_func(SwigClassProgressBar.klass, _wrap_ProgressBar_allocate);
|
19125
19125
|
rb_define_method(SwigClassProgressBar.klass, "initialize", VALUEFUNC(_wrap_new_ProgressBar), -1);
|
19126
|
-
rb_define_method(SwigClassProgressBar.klass, "
|
19127
|
-
rb_define_method(SwigClassProgressBar.klass, "
|
19128
|
-
rb_define_method(SwigClassProgressBar.klass, "
|
19129
|
-
rb_define_method(SwigClassProgressBar.klass, "
|
19130
|
-
rb_define_method(SwigClassProgressBar.klass, "
|
19131
|
-
rb_define_method(SwigClassProgressBar.klass, "
|
19126
|
+
rb_define_method(SwigClassProgressBar.klass, "set_progress", VALUEFUNC(_wrap_ProgressBar_set_progress), -1);
|
19127
|
+
rb_define_method(SwigClassProgressBar.klass, "get_progress", VALUEFUNC(_wrap_ProgressBar_get_progress), -1);
|
19128
|
+
rb_define_method(SwigClassProgressBar.klass, "get_caption", VALUEFUNC(_wrap_ProgressBar_get_caption), -1);
|
19129
|
+
rb_define_method(SwigClassProgressBar.klass, "set_caption", VALUEFUNC(_wrap_ProgressBar_set_caption), -1);
|
19130
|
+
rb_define_method(SwigClassProgressBar.klass, "get_comment", VALUEFUNC(_wrap_ProgressBar_get_comment), -1);
|
19131
|
+
rb_define_method(SwigClassProgressBar.klass, "set_comment", VALUEFUNC(_wrap_ProgressBar_set_comment), -1);
|
19132
19132
|
SwigClassProgressBar.mark = 0;
|
19133
19133
|
SwigClassProgressBar.destroy = (void (*)(void *)) free_OgreBites_ProgressBar;
|
19134
19134
|
SwigClassProgressBar.trackObjects = 0;
|
19135
19135
|
|
19136
|
-
SwigClassSdkTrayManager.klass = rb_define_class_under(
|
19136
|
+
SwigClassSdkTrayManager.klass = rb_define_class_under(mOgrebites, "SdkTrayManager", ((swig_class *) SWIGTYPE_p_OgreBites__SdkTrayListener->clientdata)->klass);
|
19137
19137
|
SWIG_TypeClientData(SWIGTYPE_p_OgreBites__SdkTrayManager, (void *) &SwigClassSdkTrayManager);
|
19138
19138
|
rb_define_alloc_func(SwigClassSdkTrayManager.klass, _wrap_SdkTrayManager_allocate);
|
19139
19139
|
rb_define_method(SwigClassSdkTrayManager.klass, "initialize", VALUEFUNC(_wrap_new_SdkTrayManager), -1);
|
19140
|
-
rb_define_singleton_method(SwigClassSdkTrayManager.klass, "
|
19141
|
-
rb_define_singleton_method(SwigClassSdkTrayManager.klass, "
|
19142
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19143
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19144
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19145
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19146
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19147
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19148
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19149
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19150
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19151
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19152
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19153
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19154
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19155
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19156
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19157
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19158
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19159
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19160
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19161
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19162
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19163
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19164
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19165
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19166
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19167
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19168
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19169
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19170
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19171
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19172
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19173
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19174
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19175
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19176
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19177
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19178
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19179
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19180
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19181
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19182
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19183
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19184
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19185
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19186
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19187
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19188
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19189
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19190
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19191
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19192
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19193
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19194
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19195
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19196
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19197
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19198
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19199
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19200
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19201
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19202
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19203
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19204
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19205
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19206
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19207
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19208
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19209
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19210
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19211
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19212
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19213
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19214
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19215
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19216
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19217
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19218
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19219
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19220
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19221
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19222
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19223
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19224
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19225
|
-
rb_define_method(SwigClassSdkTrayManager.klass, "
|
19140
|
+
rb_define_singleton_method(SwigClassSdkTrayManager.klass, "screen_to_scene", VALUEFUNC(_wrap_SdkTrayManager_screen_to_scene), -1);
|
19141
|
+
rb_define_singleton_method(SwigClassSdkTrayManager.klass, "scene_to_screen", VALUEFUNC(_wrap_SdkTrayManager_scene_to_screen), -1);
|
19142
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "get_tray_container", VALUEFUNC(_wrap_SdkTrayManager_get_tray_container), -1);
|
19143
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "get_backdrop_layer", VALUEFUNC(_wrap_SdkTrayManager_get_backdrop_layer), -1);
|
19144
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "get_trays_layer", VALUEFUNC(_wrap_SdkTrayManager_get_trays_layer), -1);
|
19145
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "get_cursor_layer", VALUEFUNC(_wrap_SdkTrayManager_get_cursor_layer), -1);
|
19146
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "get_backdrop_container", VALUEFUNC(_wrap_SdkTrayManager_get_backdrop_container), -1);
|
19147
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "get_cursor_container", VALUEFUNC(_wrap_SdkTrayManager_get_cursor_container), -1);
|
19148
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "get_cursor_image", VALUEFUNC(_wrap_SdkTrayManager_get_cursor_image), -1);
|
19149
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "set_listener", VALUEFUNC(_wrap_SdkTrayManager_set_listener), -1);
|
19150
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "get_listener", VALUEFUNC(_wrap_SdkTrayManager_get_listener), -1);
|
19151
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "show_all", VALUEFUNC(_wrap_SdkTrayManager_show_all), -1);
|
19152
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "hide_all", VALUEFUNC(_wrap_SdkTrayManager_hide_all), -1);
|
19153
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "show_backdrop", VALUEFUNC(_wrap_SdkTrayManager_show_backdrop), -1);
|
19154
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "hide_backdrop", VALUEFUNC(_wrap_SdkTrayManager_hide_backdrop), -1);
|
19155
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "show_cursor", VALUEFUNC(_wrap_SdkTrayManager_show_cursor), -1);
|
19156
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "hide_cursor", VALUEFUNC(_wrap_SdkTrayManager_hide_cursor), -1);
|
19157
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "refresh_cursor", VALUEFUNC(_wrap_SdkTrayManager_refresh_cursor), -1);
|
19158
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "show_trays", VALUEFUNC(_wrap_SdkTrayManager_show_trays), -1);
|
19159
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "hide_trays", VALUEFUNC(_wrap_SdkTrayManager_hide_trays), -1);
|
19160
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "is_cursor_visible", VALUEFUNC(_wrap_SdkTrayManager_is_cursor_visible), -1);
|
19161
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "is_backdrop_visible", VALUEFUNC(_wrap_SdkTrayManager_is_backdrop_visible), -1);
|
19162
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "are_trays_visible", VALUEFUNC(_wrap_SdkTrayManager_are_trays_visible), -1);
|
19163
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "set_tray_widget_alignment", VALUEFUNC(_wrap_SdkTrayManager_set_tray_widget_alignment), -1);
|
19164
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "set_widget_padding", VALUEFUNC(_wrap_SdkTrayManager_set_widget_padding), -1);
|
19165
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "set_widget_spacing", VALUEFUNC(_wrap_SdkTrayManager_set_widget_spacing), -1);
|
19166
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "set_tray_padding", VALUEFUNC(_wrap_SdkTrayManager_set_tray_padding), -1);
|
19167
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "get_widget_padding", VALUEFUNC(_wrap_SdkTrayManager_get_widget_padding), -1);
|
19168
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "get_widget_spacing", VALUEFUNC(_wrap_SdkTrayManager_get_widget_spacing), -1);
|
19169
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "get_tray_padding", VALUEFUNC(_wrap_SdkTrayManager_get_tray_padding), -1);
|
19170
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "adjust_trays", VALUEFUNC(_wrap_SdkTrayManager_adjust_trays), -1);
|
19171
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "get_cursor_ray", VALUEFUNC(_wrap_SdkTrayManager_get_cursor_ray), -1);
|
19172
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "create_button", VALUEFUNC(_wrap_SdkTrayManager_create_button), -1);
|
19173
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "create_text_box", VALUEFUNC(_wrap_SdkTrayManager_create_text_box), -1);
|
19174
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "create_thick_select_menu", VALUEFUNC(_wrap_SdkTrayManager_create_thick_select_menu), -1);
|
19175
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "create_long_select_menu", VALUEFUNC(_wrap_SdkTrayManager_create_long_select_menu), -1);
|
19176
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "create_label", VALUEFUNC(_wrap_SdkTrayManager_create_label), -1);
|
19177
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "create_separator", VALUEFUNC(_wrap_SdkTrayManager_create_separator), -1);
|
19178
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "create_thick_slider", VALUEFUNC(_wrap_SdkTrayManager_create_thick_slider), -1);
|
19179
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "create_long_slider", VALUEFUNC(_wrap_SdkTrayManager_create_long_slider), -1);
|
19180
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "create_check_box", VALUEFUNC(_wrap_SdkTrayManager_create_check_box), -1);
|
19181
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "create_decor_widget", VALUEFUNC(_wrap_SdkTrayManager_create_decor_widget), -1);
|
19182
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "create_progress_bar", VALUEFUNC(_wrap_SdkTrayManager_create_progress_bar), -1);
|
19183
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "show_frame_stats", VALUEFUNC(_wrap_SdkTrayManager_show_frame_stats), -1);
|
19184
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "hide_frame_stats", VALUEFUNC(_wrap_SdkTrayManager_hide_frame_stats), -1);
|
19185
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "are_frame_stats_visible", VALUEFUNC(_wrap_SdkTrayManager_are_frame_stats_visible), -1);
|
19186
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "toggle_advanced_frame_stats", VALUEFUNC(_wrap_SdkTrayManager_toggle_advanced_frame_stats), -1);
|
19187
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "show_logo", VALUEFUNC(_wrap_SdkTrayManager_show_logo), -1);
|
19188
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "hide_logo", VALUEFUNC(_wrap_SdkTrayManager_hide_logo), -1);
|
19189
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "is_logo_visible", VALUEFUNC(_wrap_SdkTrayManager_is_logo_visible), -1);
|
19190
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "show_loading_bar", VALUEFUNC(_wrap_SdkTrayManager_show_loading_bar), -1);
|
19191
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "hide_loading_bar", VALUEFUNC(_wrap_SdkTrayManager_hide_loading_bar), -1);
|
19192
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "is_loading_bar_visible", VALUEFUNC(_wrap_SdkTrayManager_is_loading_bar_visible), -1);
|
19193
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "show_ok_dialog", VALUEFUNC(_wrap_SdkTrayManager_show_ok_dialog), -1);
|
19194
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "show_yes_no_dialog", VALUEFUNC(_wrap_SdkTrayManager_show_yes_no_dialog), -1);
|
19195
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "close_dialog", VALUEFUNC(_wrap_SdkTrayManager_close_dialog), -1);
|
19196
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "is_dialog_visible", VALUEFUNC(_wrap_SdkTrayManager_is_dialog_visible), -1);
|
19197
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "get_widget", VALUEFUNC(_wrap_SdkTrayManager_get_widget), -1);
|
19198
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "get_num_widgets", VALUEFUNC(_wrap_SdkTrayManager_get_num_widgets), -1);
|
19199
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "get_widget_iterator", VALUEFUNC(_wrap_SdkTrayManager_get_widget_iterator), -1);
|
19200
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "locate_widget_in_tray", VALUEFUNC(_wrap_SdkTrayManager_locate_widget_in_tray), -1);
|
19201
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "destroy_widget", VALUEFUNC(_wrap_SdkTrayManager_destroy_widget), -1);
|
19202
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "destroy_all_widgets_in_tray", VALUEFUNC(_wrap_SdkTrayManager_destroy_all_widgets_in_tray), -1);
|
19203
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "destroy_all_widgets", VALUEFUNC(_wrap_SdkTrayManager_destroy_all_widgets), -1);
|
19204
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "move_widget_to_tray", VALUEFUNC(_wrap_SdkTrayManager_move_widget_to_tray), -1);
|
19205
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "remove_widget_from_tray", VALUEFUNC(_wrap_SdkTrayManager_remove_widget_from_tray), -1);
|
19206
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "clear_tray", VALUEFUNC(_wrap_SdkTrayManager_clear_tray), -1);
|
19207
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "clear_all_trays", VALUEFUNC(_wrap_SdkTrayManager_clear_all_trays), -1);
|
19208
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "frame_rendering_queued", VALUEFUNC(_wrap_SdkTrayManager_frame_rendering_queued), -1);
|
19209
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "window_update", VALUEFUNC(_wrap_SdkTrayManager_window_update), -1);
|
19210
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "resource_group_scripting_started", VALUEFUNC(_wrap_SdkTrayManager_resource_group_scripting_started), -1);
|
19211
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "script_parse_started", VALUEFUNC(_wrap_SdkTrayManager_script_parse_started), -1);
|
19212
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "script_parse_ended", VALUEFUNC(_wrap_SdkTrayManager_script_parse_ended), -1);
|
19213
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "resource_group_scripting_ended", VALUEFUNC(_wrap_SdkTrayManager_resource_group_scripting_ended), -1);
|
19214
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "resource_group_load_started", VALUEFUNC(_wrap_SdkTrayManager_resource_group_load_started), -1);
|
19215
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "resource_load_started", VALUEFUNC(_wrap_SdkTrayManager_resource_load_started), -1);
|
19216
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "resource_load_ended", VALUEFUNC(_wrap_SdkTrayManager_resource_load_ended), -1);
|
19217
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "world_geometry_stage_started", VALUEFUNC(_wrap_SdkTrayManager_world_geometry_stage_started), -1);
|
19218
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "world_geometry_stage_ended", VALUEFUNC(_wrap_SdkTrayManager_world_geometry_stage_ended), -1);
|
19219
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "resource_group_load_ended", VALUEFUNC(_wrap_SdkTrayManager_resource_group_load_ended), -1);
|
19220
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "label_hit", VALUEFUNC(_wrap_SdkTrayManager_label_hit), -1);
|
19221
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "button_hit", VALUEFUNC(_wrap_SdkTrayManager_button_hit), -1);
|
19222
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "inject_mouse_down", VALUEFUNC(_wrap_SdkTrayManager_inject_mouse_down), -1);
|
19223
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "inject_mouse_up", VALUEFUNC(_wrap_SdkTrayManager_inject_mouse_up), -1);
|
19224
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "inject_mouse_move", VALUEFUNC(_wrap_SdkTrayManager_inject_mouse_move), -1);
|
19225
|
+
rb_define_method(SwigClassSdkTrayManager.klass, "create_params_panel", VALUEFUNC(_wrap_SdkTrayManager_create_params_panel), -1);
|
19226
19226
|
SwigClassSdkTrayManager.mark = 0;
|
19227
19227
|
SwigClassSdkTrayManager.destroy = (void (*)(void *)) debug_free_SdkTrayManager;
|
19228
19228
|
SwigClassSdkTrayManager.trackObjects = 0;
|
19229
|
-
rb_define_const(
|
19230
|
-
rb_define_const(
|
19231
|
-
rb_define_const(
|
19229
|
+
rb_define_const(mOgrebites, "CS_FREELOOK", SWIG_From_int(static_cast< int >(OgreBites::CS_FREELOOK)));
|
19230
|
+
rb_define_const(mOgrebites, "CS_ORBIT", SWIG_From_int(static_cast< int >(OgreBites::CS_ORBIT)));
|
19231
|
+
rb_define_const(mOgrebites, "CS_MANUAL", SWIG_From_int(static_cast< int >(OgreBites::CS_MANUAL)));
|
19232
19232
|
|
19233
|
-
SwigClassSdkCameraMan.klass = rb_define_class_under(
|
19233
|
+
SwigClassSdkCameraMan.klass = rb_define_class_under(mOgrebites, "SdkCameraMan", rb_cObject);
|
19234
19234
|
SWIG_TypeClientData(SWIGTYPE_p_OgreBites__SdkCameraMan, (void *) &SwigClassSdkCameraMan);
|
19235
19235
|
rb_define_alloc_func(SwigClassSdkCameraMan.klass, _wrap_SdkCameraMan_allocate);
|
19236
19236
|
rb_define_method(SwigClassSdkCameraMan.klass, "initialize", VALUEFUNC(_wrap_new_SdkCameraMan), -1);
|
19237
|
-
rb_define_method(SwigClassSdkCameraMan.klass, "
|
19238
|
-
rb_define_method(SwigClassSdkCameraMan.klass, "
|
19239
|
-
rb_define_method(SwigClassSdkCameraMan.klass, "
|
19240
|
-
rb_define_method(SwigClassSdkCameraMan.klass, "
|
19241
|
-
rb_define_method(SwigClassSdkCameraMan.klass, "
|
19242
|
-
rb_define_method(SwigClassSdkCameraMan.klass, "
|
19243
|
-
rb_define_method(SwigClassSdkCameraMan.klass, "
|
19244
|
-
rb_define_method(SwigClassSdkCameraMan.klass, "
|
19245
|
-
rb_define_method(SwigClassSdkCameraMan.klass, "
|
19246
|
-
rb_define_method(SwigClassSdkCameraMan.klass, "
|
19247
|
-
rb_define_method(SwigClassSdkCameraMan.klass, "
|
19248
|
-
rb_define_method(SwigClassSdkCameraMan.klass, "
|
19249
|
-
rb_define_method(SwigClassSdkCameraMan.klass, "
|
19250
|
-
rb_define_method(SwigClassSdkCameraMan.klass, "
|
19251
|
-
rb_define_method(SwigClassSdkCameraMan.klass, "
|
19252
|
-
rb_define_method(SwigClassSdkCameraMan.klass, "
|
19237
|
+
rb_define_method(SwigClassSdkCameraMan.klass, "set_camera", VALUEFUNC(_wrap_SdkCameraMan_set_camera), -1);
|
19238
|
+
rb_define_method(SwigClassSdkCameraMan.klass, "get_camera", VALUEFUNC(_wrap_SdkCameraMan_get_camera), -1);
|
19239
|
+
rb_define_method(SwigClassSdkCameraMan.klass, "set_target", VALUEFUNC(_wrap_SdkCameraMan_set_target), -1);
|
19240
|
+
rb_define_method(SwigClassSdkCameraMan.klass, "get_target", VALUEFUNC(_wrap_SdkCameraMan_get_target), -1);
|
19241
|
+
rb_define_method(SwigClassSdkCameraMan.klass, "set_yaw_pitch_dist", VALUEFUNC(_wrap_SdkCameraMan_set_yaw_pitch_dist), -1);
|
19242
|
+
rb_define_method(SwigClassSdkCameraMan.klass, "set_top_speed", VALUEFUNC(_wrap_SdkCameraMan_set_top_speed), -1);
|
19243
|
+
rb_define_method(SwigClassSdkCameraMan.klass, "get_top_speed", VALUEFUNC(_wrap_SdkCameraMan_get_top_speed), -1);
|
19244
|
+
rb_define_method(SwigClassSdkCameraMan.klass, "set_style", VALUEFUNC(_wrap_SdkCameraMan_set_style), -1);
|
19245
|
+
rb_define_method(SwigClassSdkCameraMan.klass, "get_style", VALUEFUNC(_wrap_SdkCameraMan_get_style), -1);
|
19246
|
+
rb_define_method(SwigClassSdkCameraMan.klass, "manual_stop", VALUEFUNC(_wrap_SdkCameraMan_manual_stop), -1);
|
19247
|
+
rb_define_method(SwigClassSdkCameraMan.klass, "frame_rendering_queued", VALUEFUNC(_wrap_SdkCameraMan_frame_rendering_queued), -1);
|
19248
|
+
rb_define_method(SwigClassSdkCameraMan.klass, "inject_key_down", VALUEFUNC(_wrap_SdkCameraMan_inject_key_down), -1);
|
19249
|
+
rb_define_method(SwigClassSdkCameraMan.klass, "inject_key_up", VALUEFUNC(_wrap_SdkCameraMan_inject_key_up), -1);
|
19250
|
+
rb_define_method(SwigClassSdkCameraMan.klass, "inject_mouse_move", VALUEFUNC(_wrap_SdkCameraMan_inject_mouse_move), -1);
|
19251
|
+
rb_define_method(SwigClassSdkCameraMan.klass, "inject_mouse_down", VALUEFUNC(_wrap_SdkCameraMan_inject_mouse_down), -1);
|
19252
|
+
rb_define_method(SwigClassSdkCameraMan.klass, "inject_mouse_up", VALUEFUNC(_wrap_SdkCameraMan_inject_mouse_up), -1);
|
19253
19253
|
SwigClassSdkCameraMan.mark = 0;
|
19254
19254
|
SwigClassSdkCameraMan.destroy = (void (*)(void *)) free_OgreBites_SdkCameraMan;
|
19255
19255
|
SwigClassSdkCameraMan.trackObjects = 0;
|