如何从对话框中获取文本?

发布于 2024-09-03 20:10:20 字数 87 浏览 6 评论 0原文

我需要从对话框中的条目获取文本,例如登录对话框(获取用户和密码),我尝试使用“gtk_entry_get_text”,但我做错了,或者还有其他我可以使用的东西。

I need to get text from an entry in a dialog, like a login dialog (get the user and password), I've tryied to use 'gtk_entry_get_text' but I did something wrong or there's something else I could use.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不可一世的女人 2024-09-10 20:10:20

为了从对话框中的条目小部件获取文本,您应该使用 gtk_entry_get_text。

char* entry_content;
entry_content = gtk_entry_get_text(GTK_ENTRY(entry_widget));

您应该注意以下事项:

  • 首先,您应该将条目小部件作为参数传递,而不是窗口对话框或其他小部件。
  • 您应该将 GtkWidget 转换为 GtkEntry。
  • 返回的字符串由 GtkEntry 分配,因此您不得释放它。

In order to get the text from an entry widget in a dialog, you should use gtk_entry_get_text.

char* entry_content;
entry_content = gtk_entry_get_text(GTK_ENTRY(entry_widget));

You should take care of this things:

  • First, you should pass the entry widget as a parameter, not the window dialog or other widget.
  • You should cast the GtkWidget into a GtkEntry.
  • The returning string is allocated by the GtkEntry, so you must not free it.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文