⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 control.h

📁 minigui实例源代码
💻 H
字号:
/** * \file control.h * \author Wei Yongming <ymwei@minigui.org> * \date 2001/12/29 *  * This file includes interfaces of standard controls of MiniGUI. * \verbatim    Copyright (C) 2002-2005 Feynman Software.    Copyright (C) 1998-2002 Wei Yongming.    This file is part of MiniGUI, a compact cross-platform Graphics     User Interface (GUI) support system for real-time embedded systems.    This program 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.    This program 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 this program; if not, write to the Free Software    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA    If you are using MiniGUI for developing commercial, proprietary, or other    software not covered by the GPL terms, you must have a commercial license    for MiniGUI. Please see http://www.minigui.com/product/index.html for     how to obtain this. If you are interested in the commercial MiniGUI     licensing, please write to sales@minigui.com.  \endverbatim *//* * $Id: control.h,v 1.175 2005/02/15 05:00:07 weiym Exp $ * *             MiniGUI for Linux/uClinux, eCos, uC/OS-II, VxWorks,  *                     and ThreadX version 1.6.x *             Copyright (C) 2002-2005 Feynman Software. *             Copyright (C) 1999-2002 Wei Yongming. */#ifndef _MGUI_CONTROL_H#define _MGUI_CONTROL_H #ifdef __cplusplusextern "C" {#endif  /* __cplusplus */#include "ctrl/ctrlhelper.h"    /**     * \defgroup controls Standard controls     * @{     *//* NOTE: control messages start from 0xF000 to 0xFFFF */#define MSG_FIRSTCTRLMSG    0xF000#define MSG_LASTCTRLMSG     0xFFFF    /** @} end of controls */#ifdef _CTRL_STATIC#include "ctrl/static.h"#endif /* _CTRL_STATIC */#ifdef _CTRL_BUTTON#include "ctrl/button.h"#endif /* _CTRL_BUTTON */#if defined (_CTRL_SIMEDIT) || defined(_CTRL_SLEDIT) || defined(_CTRL_MLEDIT)#include "ctrl/edit.h"#endif /* _CTRL_EDIT || _CTRL_MEDIT */#ifdef _CTRL_PROGRESSBAR#include "ctrl/progressbar.h"#endif /* _CTRL_PROGRESSBAR */#ifdef _CTRL_LISTBOX#include "ctrl/listbox.h"#endif /* _CTRL_LISTBOX */#ifdef _CTRL_PROPSHEET#include "ctrl/propsheet.h"#endif /* _CTRL_PROPSHEET*/#ifdef _CTRL_COMBOBOX#include "ctrl/combobox.h"#endif /* _CTRL_COMBOBOX */#ifdef _CTRL_TOOLBAR#include "ctrl/toolbar.h"#endif /* _CTRL_TOOLBAR */#ifdef _CTRL_NEWTOOLBAR#include "ctrl/newtoolbar.h"#endif /* _CTRL_NEWTOOLBAR */#ifdef _CTRL_MENUBUTTON#include "ctrl/menubutton.h"#endif /* _CTRL_MENUBUTTON */#ifdef _CTRL_TRACKBAR#include "ctrl/trackbar.h"#endif /* _CTRL_TRACKBAR */#ifdef _CTRL_SCROLLVIEW#include "ctrl/scrollview.h"#endif /* _CTRL_SCROLLVIEW */#ifdef _CTRL_SCROLLBAR#include "ctrl/scrollbar.h"#endif /* _CTRL_SCROLLBAR */#ifdef _CTRL_TEXTEDIT#include "ctrl/textedit.h"#endif /* _CTRL_TEXTEDIT */#ifdef __cplusplus}#endif  /* __cplusplus */#endif /* _MGUI_CONTROL_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -