#include <maincredits.h>
Inheritance diagram for MainCredits:


Public Member Functions | |
| MainCredits (Window *aParent) | |
| virtual | ~MainCredits (void) |
Protected Member Functions | |
| virtual const bool | MainLoop (void) |
| true if the screen must be refreshed | |
| virtual const bool | evMouseLClick (const CtrlMessage &msg) |
|
|
Definition at line 5 of file maincredits.cpp. References eMainCredits.
00006 : BqBase( eMainCredits , aParent ) 00007 { 00008 } |
|
|
Definition at line 10 of file maincredits.cpp.
00011 {
00012 }
|
|
|
Definition at line 21 of file maincredits.cpp. References BqBase::isDisplayed.
00022 {
00023 BqBase::evMouseLClick( msg );
00024
00025 if( isDisplayed )
00026 if( ((Window *)msg.source)->GetId() == 1 )
00027 {
00028 isDisplayed= false;
00029 return !isDisplayed;
00030 }
00031
00032 return isDisplayed;
00033 }
|
|
|
true if the screen must be refreshed
Reimplemented from BqBase. Definition at line 14 of file maincredits.cpp. References BqBase::MainLoop(), and BqBase::SetupDialog().
00015 {
00016 SetupDialog( "MainCredits" );
00017
00018 return BqBase::MainLoop();
00019 }
|
1.3.3