OSDN Git Service

fix build system ofmoflib1 and saisei1
[moflib/moflib.git] / moflib-1.0 / src / mof / widget / NullView.cpp
1 #include <mof/widget/NullView.hpp>
2     
3 namespace mof
4 {
5 namespace widget
6 {
7 //{{{ constructor
8     NullView::NullView()
9     {
10     }
11 //}}}
12 //{{{ destructor
13     NullView::~NullView()
14     {
15     }
16 //}}}
17 //{{{ update
18     void NullView::update( )
19     {
20     }
21 //}}}
22 //{{{ draw
23     void NullView::draw( ) const
24     {
25     }
26 //}}}
27 //{{{ setVisible
28     void NullView::setVisible(bool)
29     {
30     }
31 //}}}
32 //{{{ show
33     FrameNumber NullView::show(bool) 
34     {
35         return 0;
36     }
37 //}}}
38 //{{{ hide
39     FrameNumber NullView::hide(bool)
40     {
41         return 0;
42     }
43 //}}}
44 //{{{ focus
45     FrameNumber NullView::focus(bool) 
46     {
47         return 0;
48     }
49 //}}}
50 //{{{ blur
51     FrameNumber NullView::blur(bool imidiately)
52     {
53         return 0;
54     }
55 //}}}
56 //{{{ click
57     FrameNumber NullView::click(bool)
58     {
59         return 0;
60     }
61 //}}}
62 //{{{ getPreferredSize
63         mof::Vector2D NullView::getPreferredSize() const
64     {
65         return mof::Vector2D(0, 0);
66     }
67 //}}}
68
69 }
70 } // namespace mof