YSTest  PreAlpha_b500_20140530
The YSLib Test Project
 全部  命名空间 文件 函数 变量 类型定义 枚举 枚举值 友元 宏定义  
form.h
浏览该文件的文档.
1 /*
2  © 2010-2014 FrankHB.
3 
4  This file is part of the YSLib project, and may only be used,
5  modified, and distributed under the terms of the YSLib project
6  license, LICENSE.TXT. By continuing to use, modify, or distribute
7  this file you indicate that you have read the license and
8  understand and accept it fully.
9 */
10 
28 #ifndef YSL_INC_UI_form_h_
29 #define YSL_INC_UI_form_h_ 1
30 
31 #include "YModules.h"
32 #include YFM_YSLib_UI_YWindow
33 
34 namespace YSLib
35 {
36 
37 namespace UI
38 {
39 
40 using Form = Window;
41 
42 #if 0
43 //窗体。
44 class Form : public Window
45 {
46  Panel Client;
47 
48 public:
53  explicit
54  Form(const Rect& = {}, const shared_ptr<Drawing::Image>& = {},
55  IWidget* = {});
57 };
58 #endif
59 
60 } // namespace UI;
61 
62 } // namespace YSLib;
63 
64 #endif
65 
DefDeMoveCtor(Window) void operator+
面板。
Definition: ypanel.h:45
窗口。
Definition: ywindow.h:44
窗口背景。
Definition: ystyle.h:182
屏幕标准矩形:表示屏幕矩形区域。
Definition: ygdibase.h:416
Window Form
Definition: form.h:40