我有一个带有openGL小部件的gtk::applicationWindow。我想在创建和调整大小时查询 openGL 小部件的大小。这样做是为了我可以补偿纵横比。这是我的代码片段。问题是当我调整窗口大小或生成窗口时。m_glAreaWidth 和 m_glAreaHeight 的值始终为 0。该小部件确实会生成并对调整大小做出反应,所以我不明白get_allocation
如何给出大小为 0 的矩形。
mainWindow::mainWindow(BaseObjectType* cobject ,const Glib::RefPtr<Gtk::Builder>& builder):
Gtk::ApplicationWindow(cobject),
m_refGlade(builder),
{
//add GLArea Widget
m_TopLayout->pack_start(m_GLArea);
m_GLArea.set_auto_render(true);
signal_size_allocate().connect(sigc::mem_fun(*this, &mainWindow::on_my_size_allocate),false);
//Makes window fill the whole screen
maximize();
show_all();
}
void mainWindow::on_my_size_allocate(Gtk::Allocation& allocation)
{
Gtk::Allocation glAreaAlloc = m_GLArea.get_allocation();
m_glAreaWidth = glAreaAlloc.get_x();
m_glAreaHeight = glAreaAlloc.get_y();
m_GLArea.queue_render();
}
我想通了。我刚刚替换了:
Gtk::Allocation glAreaAlloc = m_GLArea.get_allocation();
m_glAreaWidth = glAreaAlloc.get_x();
m_glAreaHeight = glAreaAlloc.get_y();
跟
m_glAreaWidth = m_GLArea.get_allocated_width();
m_glAreaHeight = m_GLArea.get_allocated_height();
仍然不确定为什么这有效而不是另一个。