Files
milsko/include/Mw/Widget/ScrollBar.h
NishiOwO 2129cf9cb8 stuff
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@206 b9cfdab3-6d41-4d17-bbe4-086880011989
2025-10-07 15:10:46 +00:00

34 lines
584 B
C

/* $Id$ */
/*!
* %file Mw/Widget/ScrollBar.h
* %brief ScrollBar widget
* %prop MwNareaShown MwNvalue MwNminValue MwNmaxValue MwNorientation
*/
#ifndef __MW_WIDGET_SCROLLBAR_H__
#define __MW_WIDGET_SCROLLBAR_H__
#include <Mw/MachDep.h>
#include <Mw/TypeDefs.h>
#ifdef __cplusplus
extern "C" {
#endif
/*!
* %brief ScrollBar widget class
*/
MWDECL MwClass MwScrollBarClass;
/*!
* %brief Calculates a visible length of scrollbar
* %param handle Widget
* %return Visible length
*/
MWDECL int MwScrollBarGetVisibleLength(MwWidget handle);
#ifdef __cplusplus
}
#endif
#endif