GdkRectangle 有激活事件吗?
我想让 GdkRectangle 可点击,这样我就可以选择它并在矩形的每个角上都有一个点,这意味着用户可以移动矩形或调整矩形的大小。
单击 GdkRectangle
时是否会触发事件?附带的 g_signal_connect 命令的语法是什么?
I want to make a GdkRectangle
clickable so that I can select it and get a dot in every corner of the rectangle, implying that the user can move or resize the rectangle.
Is there an event that triggers when a GdkRectangle
is clicked? What's the syntax of the accompanying g_signal_connect
command?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
GdkRectangle 不应该这样使用。它不是一个小部件,而只是引用像素矩形区域的一种方式。您可能应该使用类似 GtkLayout 的东西,但不知道到底是什么正在做,我不能肯定地说。
GdkRectangle isn't meant to be used like that. It isn't a widget, but just a way to refer to a rectangular area of pixels. You should probably use something like GtkLayout but without knowing exactly what you're doing, I can't say for sure.