mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-05-11 13:06:40 +03:00
184 lines
2.2 KiB
C++
184 lines
2.2 KiB
C++
![]() |
/*
|
||
|
===========================================================================
|
||
|
Copyright (C) 2015 the OpenMoHAA team
|
||
|
|
||
|
This file is part of OpenMoHAA source code.
|
||
|
|
||
|
OpenMoHAA source code is free software; you can redistribute it
|
||
|
and/or modify it under the terms of the GNU General Public License as
|
||
|
published by the Free Software Foundation; either version 2 of the License,
|
||
|
or (at your option) any later version.
|
||
|
|
||
|
OpenMoHAA source code is distributed in the hope that it will be
|
||
|
useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
GNU General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with OpenMoHAA source code; if not, write to the Free Software
|
||
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||
|
===========================================================================
|
||
|
*/
|
||
|
|
||
|
#include "ui_local.h"
|
||
|
|
||
|
CLASS_DECLARATION( UIWidget, UIWindowSizer, NULL )
|
||
|
{
|
||
|
{ NULL, NULL }
|
||
|
};
|
||
|
|
||
|
UIWindowSizer::UIWindowSizer()
|
||
|
{
|
||
|
// FIXME: stub
|
||
|
}
|
||
|
|
||
|
|
||
|
void UIWindowSizer::Draw
|
||
|
(
|
||
|
void
|
||
|
)
|
||
|
|
||
|
{
|
||
|
// FIXME: stub
|
||
|
}
|
||
|
|
||
|
void UIWindowSizer::FrameInitialized
|
||
|
(
|
||
|
void
|
||
|
)
|
||
|
|
||
|
{
|
||
|
// FIXME: stub
|
||
|
}
|
||
|
|
||
|
void UIWindowSizer::MouseDown
|
||
|
(
|
||
|
Event *ev
|
||
|
)
|
||
|
|
||
|
{
|
||
|
// FIXME: stub
|
||
|
}
|
||
|
|
||
|
void UIWindowSizer::MouseUp
|
||
|
(
|
||
|
Event *ev
|
||
|
)
|
||
|
|
||
|
{
|
||
|
// FIXME: stub
|
||
|
}
|
||
|
|
||
|
void UIWindowSizer::MouseDragged
|
||
|
(
|
||
|
Event *ev
|
||
|
)
|
||
|
|
||
|
{
|
||
|
// FIXME: stub
|
||
|
}
|
||
|
|
||
|
void UIWindowSizer::setDraggingWidget
|
||
|
(
|
||
|
UIWidget *w
|
||
|
)
|
||
|
|
||
|
{
|
||
|
// FIXME: stub
|
||
|
}
|
||
|
|
||
|
UIWidget *UIWindowSizer::getDraggingWidget
|
||
|
(
|
||
|
void
|
||
|
)
|
||
|
|
||
|
{
|
||
|
// FIXME: stub
|
||
|
return NULL;
|
||
|
}
|
||
|
|
||
|
CLASS_DECLARATION( UIWidget, UIStatusBar, NULL )
|
||
|
{
|
||
|
{ NULL, NULL }
|
||
|
};
|
||
|
|
||
|
UIStatusBar::UIStatusBar()
|
||
|
{
|
||
|
// FIXME: stub
|
||
|
}
|
||
|
|
||
|
UIStatusBar::UIStatusBar
|
||
|
(
|
||
|
alignment_t align,
|
||
|
float height
|
||
|
)
|
||
|
|
||
|
{
|
||
|
// FIXME: stub
|
||
|
}
|
||
|
|
||
|
void UIStatusBar::FrameInitialized
|
||
|
(
|
||
|
void
|
||
|
)
|
||
|
|
||
|
{
|
||
|
// FIXME: stub
|
||
|
}
|
||
|
|
||
|
void UIStatusBar::Draw
|
||
|
(
|
||
|
void
|
||
|
)
|
||
|
|
||
|
{
|
||
|
// FIXME: stub
|
||
|
}
|
||
|
|
||
|
void UIStatusBar::AlignBar
|
||
|
(
|
||
|
alignment_t align,
|
||
|
float height
|
||
|
)
|
||
|
|
||
|
{
|
||
|
// FIXME: stub
|
||
|
}
|
||
|
|
||
|
void UIStatusBar::DontAlignBar
|
||
|
(
|
||
|
void
|
||
|
)
|
||
|
|
||
|
{
|
||
|
// FIXME: stub
|
||
|
}
|
||
|
|
||
|
void UIStatusBar::EnableSizeBox
|
||
|
(
|
||
|
UIWidget *which
|
||
|
)
|
||
|
|
||
|
{
|
||
|
// FIXME: stub
|
||
|
}
|
||
|
|
||
|
void UIStatusBar::ParentSized
|
||
|
(
|
||
|
Event *ev
|
||
|
)
|
||
|
|
||
|
{
|
||
|
// FIXME: stub
|
||
|
}
|
||
|
|
||
|
void UIStatusBar::SelfSized
|
||
|
(
|
||
|
Event *ev
|
||
|
)
|
||
|
|
||
|
{
|
||
|
// FIXME: stub
|
||
|
}
|
||
|
|