Search found 93 matches

by Anil8753
Mon Jan 25, 2016 11:15 am
Forum: C++ Development
Topic: Reorder column, Resize column events
Replies: 5
Views: 1390

Re: Reorder column, Resize column events

Thanks :) GetMainWindow() API is there to get associated main window. There is no API available to get the associated wxHeaderCtrl from the wxDataViewCtrl . I used the following trick :( wxWindowList childWinList = m_pDataViewCtrl->GetChildren(); for (const auto& win : childWinList) { wxHeaderCt...
by Anil8753
Sun Jan 24, 2016 12:07 pm
Forum: C++ Development
Topic: Insert/delete wxDataViewColumn after performing reorder column in wxDataViewCtrl
Replies: 0
Views: 2409

Insert/delete wxDataViewColumn after performing reorder column in wxDataViewCtrl

I did columns reordering in wxDataViewCtrl . I inserted a new column using InsertColumn() API. I got the following assert failure: --------------------------- wxWidgets Debug Alert --------------------------- ..\..\src\msw\headerctrl.cpp(442): assert "order >= 0 && order <= GetShownColu...
by Anil8753
Sun Jan 24, 2016 12:03 pm
Forum: C++ Development
Topic: Reorder column, Resize column events
Replies: 5
Views: 1390

Reorder column, Resize column events

I have a wxDataViewCtrl . I am performing the following actions: Reorder column using mouse drag&drop Resize column using mouse drag&drop Here I want to get notify above actions via wx events. My requirement is to record all above actions by the user so that while next launch of application ...