昨天在smth,有人问起RegisterClass函数到底将窗口类注册到哪里了,想了一下,应该是一个系统级的存储空间里,但是却没有一个明确的说法,msdn上看了半天,基本上没有提到具体注册的位置。倒是返回值给了不少提示,ATOM,查ATOM终于找到如下的一段描述
中文翻译:
该系统提供了一个原子表的数量。每个原子表提供不同的目的。例如,动态数据交换(DDE)应用程序使用全局原子表与其他应用共享的项目名称和主题名称字符串。而不是通过实际的字符串,一个DDE应用程序传递全局原子,其合作伙伴应用程序。合作伙伴使用的原子,从原子表获得的字符串。应用程序可以使用本地原子表来存储自己的项目名称协会。该系统使用的应用程序不能直接访问的原子表。然而,应用程序使用这些原子时调用各种功能。例如,注册剪贴板格式存储在原子内部系统所使用的表。应用程序中添加原子原子表使用RegisterClipboardFormat函数。此外,注册类存储在原子内部系统所使用的表。应用程序中添加原子原子表使用RegisterClass或RegisterClassEx函数。
原文:
The system provides a number of atom tables. Each atom table serves a different purpose. For example, dynamic data exchange (DDE) applications use the global atom table to share item-name and topic-name strings with other applications. Rather than passing
actual strings, a DDE application passes global atoms to its partner application. The partner uses the atoms to obtain the strings from the atom table.
Applications can use local atom tables to store their own item-name associations.
The system uses atom tables that are not directly accessible to applications. However, the application uses these atoms when calling a variety of functions. For example, registered clipboard formats are stored in an internal atom table used by the system.
An application adds atoms to this atom table using the RegisterClipboardFormat function. Also, registered classes are stored in an internal atom table used by the system. An application adds atoms to this atom table using the RegisterClass or RegisterClassEx
function.
也就是说应该在一个原子表中,于是google之,终于找到一片像样的文章。转贴如下:
中文翻译:
registerClass返回原子有什么用?
通过registerClass和RegisterClassEx函数返回一个原子。什么是原子?所有注册窗口类的名字被保存在一个原子表的内部,以USER32。由类注册函数的返回值是原子。您还可以检索一个窗口类,该类的窗口通过GetClassWord(HWND,GCW_ATOM)要求其类原子的原子。原子可以转换为整数的原子通过的MAKEINTATOM的宏,然后就可以使用函数接受字符串或原子的形式中的类名。最常见的情况是lpClassName参数CreateWindow的宏观和CreateWindowEx函数。不太常用,你也可以作为的lpClassName的getClassInfo并GetClassInfoEx功能参数使用。
(虽然你为什么会做到这一点我无法弄清楚。为了使原子传递到摆在首位GetClassInfo,你必须注册类(因为那是什么返回原子),在这种情况下,为什么你要求有关类的信息,你注册了吗?)转换类原子的类的名称,你可以创建一个该类的虚拟窗口,然后做上述GetClassWord(HWND,GCW_ATOM)的。或者您可以采取的事实,从GetClassInfoEx函数的返回值是原子类,转换为一个BOOL的优势。这可以让你做转换,而无需创建一个虚拟的窗口。 (请注意,然而,GetClassInfoEx的返回值是不是原子在Windows
95的派生操作系统。)但是,什么是原子?不多,真的。当然,它可以节省你不必像CreateWindow的函数传递一个字符串,但它确实是替换字符串与一个整数,你现在有一个全局变量中保存供以后使用。什么是一个字符串,你可以硬编码现在是一个原子,你必须跟踪。目前还不清楚,你实际上有赢得什么。我想你可以用它快速检查一个窗口是否属于一个特定的类。你得到这个类的原子(通过GetClassInfo,说),然后得到窗口的原子,并加以比较。但你不能缓存类的原子,因为类可能会得到未注册和重新注册(这将给它一个新的原子数)。你不能预取类原子,因为类可能尚未被登记在你预取点。
(如上所述,你可以不缓存预取的价值了。),所以这种情况是相当多的非起动无论如何,你可能也使用GetClassName函数和比较你要找的类生成的类名为。换句话说,窗口类的原子是不合时宜的。替换对话框类一样,这是一个Win32 API的那些泛泛从未真正得到掉在地上,但必须进行向前向后兼容性。但至少现在,你知道它们是什么。
原文:
What's the atom returned by RegisterClass useful for?
The RegisterClass and RegisterClassEx functions return an ATOM. What is that ATOM good for?
The names of all registered window classes is kept in an atom table internal to USER32. The value returned by the class registration functions is that atom. You can also retrieve the atom for a window class by asking a window of that class for its class
atom via GetClassWord(hwnd, GCW_ATOM).
The atom can be converted to an integer atom via the MAKEINTATOM macro, which then can be used by functions that accept class names in the form of strings or atoms. The most common case is the lpClassName parameter to the CreateWindow macro and the CreateWindowEx
function. Less commonly, you can also use it as the lpClassName parameter for the GetClassInfo and GetClassInfoEx functions. (Though why you would do this I can't figure out. In order to have the atom to pass to GetClassInfo in the first place, you must have
registered the class (since that's what returns the atom), in which case why are you asking for information about a class that you registered?)
To convert a class name to a class atom, you can create a dummy window of that class and then do the aforementioned GetClassWord(hwnd, GCW_ATOM). Or you can take advantage of the fact that the return value from the GetClassInfoEx function is the atom for
the class, cast to a BOOL. This lets you do the conversion without having to create a dummy window. (Beware, however, that GetClassInfoEx's return value is not the atom on Windows 95-derived operating systems.)
But what good is the atom?
Not much, really. Sure, it saves you from having to pass a string to functions like CreateWindow, but all it did was replace a string with with an integer you now have to save in a global variable for later use. What used to be a string that you could hard-code
is now an atom that you have to keep track of. Unclear that you actually won anything there.
I guess you could use it to check quickly whether a window belongs to a particular class. You get the atom for that class (via GetClassInfo, say) and then get the atom for the window and compare them. But you can't cache the class atom since the class might
get unregistered and then re-registered (which will give it a new atom number). And you can't prefetch the class atom since the class may not yet be registered at the point you prefetch it. (And as noted above, you can't cache the prefetched value anyway.)
So this case is pretty much a non-starter anyway; you may as well use the GetClassName function and compare the resulting class name against the class you're looking for.
In other words, window class atoms are an anachronism. Like replacement dialog box classes, it's one of those generalities of the Win32 API that never really got off the ground, but which must be carried forward for backwards compatibility.
But at least now you know what they are.
最终的结论,RegisterClass应该是将窗口类的数据放在User32.dll维护的一个原子表中了:)
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/Hamxj/archive/2007/05/09/1601758.aspx
分享到:
相关推荐
1. 在程序运行时,通过调用`RegisterClass`或`RegisterClassEx`函数向系统注册自定义的窗口类。这些函数需要提供窗口类的结构体,其中包含了控件的样式、消息处理函数等信息。 2. 这种方法适用于需要在运行时动态...
这通常涉及到Windows API调用,比如`RegisterClass`函数,将控件类信息注册到系统。 `源码使用说明.txt` 文件则提供了如何使用这个控件注册模块的指导,可能包括了安装步骤、使用示例、注意事项等内容。阅读这份...
RegisterClass 过程 注册一个从TPersistent继承的类,使她的类的类型能够被识别。 RegisterClassAlias 过程 注册一个和另一个除了名字外都相同的类。 RegisterClasses 过程 注册一组类 RegisterComponents 过程 ...
接下来,我们需要注册窗口类并创建窗口,确保我们的`WndProc`能够接收到鼠标事件。这通常在主程序的`WinMain`函数中完成: ```cpp WNDCLASS wc; wc.lpfnWndProc = WndProc; // ...其他窗口类成员设置... ...
它需要窗口类的名称(由RegisterClass注册的)和窗口的初始位置、大小、样式等信息。CreateWindow返回一个窗口句柄,后续的操作都将基于此句柄进行。 **1.2 销毁函数** - **DestroyWindow()**: 当窗口不再需要时,...
注册窗口类通常是在创建窗口之前完成的一个步骤,注册函数可以是RegisterClass或RegisterClassEx。前者用于简单注册,而后者支持扩展属性,比如指定小图标。注册窗口类时,必须提供窗口类的名称和指向窗口过程函数的...
- **`RegisterClass`** 和 **`RegisterClassEx`**:用于向系统注册一个新的窗口类。窗口类包含了一些关于窗口的信息,如窗口外观、消息处理程序等。 - **`RegisterClass`**:基本版本,提供了有限的选项。 - **`...
- **RegisterClass/RegisterClassEx**:注册一个新的窗口类,`RegisterClass`是基本的注册函数,`RegisterClassEx`则提供了更多参数来描述窗口类的特性,如窗口类的风格、菜单名、图标等。 - **UnregisterClass**:...
- 使用`RegisterClass`函数来完成窗口类的注册。 - 如果注册失败(例如在非Windows NT系统上运行),则通过`MessageBox`函数显示错误消息并退出程序。 2. **窗口创建(Creating a Window)**: - 一旦窗口类注册...
1. **注册窗口类**:`RegisterClass`函数用来注册一个窗口类。在这里,`WNDCLASS`结构体定义了窗口类的各项属性,如窗口过程函数`WndProc`、图标、光标、背景刷等。注册类失败时,程序会弹出错误消息并退出。 2. **...
窗口类通过`RegisterClass()`函数注册,一旦注册成功,就可以用它来创建多个窗口实例。 创建窗口的第一步是定义窗口类。这通常涉及定义一个结构,如`WNDCLASS`,并填充它的成员。例如,你需要指定窗口过程的地址...
- **日志输出**:可以在关键位置输出日志信息,帮助追踪问题所在。 ### 四、预防措施 1. **定期备份项目文件**:避免因意外操作导致文件丢失或损坏。 2. **使用版本控制系统**:如Git等,可以帮助追踪修改历史,...
`RegisterClass`函数用于将用户定义的窗口类结构注册到系统中。在MFC中,`InitApplication`通常被用来执行这一操作。由于在Windows 3.x时代,窗口类只需要注册一次,之后的所有程序实例都可以复用,因此`...
1. 注册窗口类(RegisterClass)。 2. 创建窗口实例(CreateWindowEx)。 3. 在窗口过程函数(WndProc)中处理消息: - 处理WM_CREATE消息,初始化画笔和画刷对象。 - 处理WM_PAINT消息,绘制背景和初始气泡。 - ...
开发者可以通过`RegisterClass`函数注册一个窗口类,其中包含`WNDCLASS`结构,该结构定义了窗口的样式、背景刷、图标等属性,以及消息处理函数的入口点`WndProc`。 `WndProc`是窗口消息处理函数,它接收并处理由...
接下来,通过调用`RegisterClass`函数完成窗口类的注册。创建窗口实例后,显示窗口并通过`UpdateWindow`函数刷新窗口,确保其立即可见。随后,进入消息处理循环,不断从消息队列中读取消息,并通过`TranslateMessage...
尽管如此,关于如何通过 Windows SDK 来实现自定义分隔条的教程和资料相对较少。本文旨在填补这一空白,通过详细介绍如何使用 SDK 实现分隔条,希望能为广大的 SDK 爱好者提供有价值的参考。 #### 二、分隔条基础 ...
**RegisterClass**过程注册一个继承自`TPersistent`的类,使得该类的类型能够被系统识别,这对于扩展系统功能或动态加载类非常有用。 **RegisterClassAlias**过程注册一个除了名字之外与其他类完全相同的类,这对于...
- **注册窗口类**:使用`RegisterClass`函数将窗口类注册到系统,以便后续创建窗口时可以使用该类。 - **创建窗口**:调用`CreateWindow`函数,提供窗口类名、窗口名称、样式、位置、大小等参数来创建实际的窗口实例...