Search found 8 matches

by termi
Sun Jan 07, 2018 2:54 pm
Forum: General Development
Topic: Report Desinger plugin ??? Urgent !
Replies: 11
Views: 8171

Re: Report Desinger plugin ??? Urgent !

Looking for probably better report generator found this post. Probably helpfull for others: From experience - wxPdfDocument works very fine already several years for me; but you have to pass successfully the difficulties during the compilation and integration in your own application. I needed three ...
by termi
Sat Aug 13, 2016 10:11 pm
Forum: Compiler / Linking / IDE Related
Topic: win_gtk.h missing wx.30 version on ubuntu?
Replies: 2
Views: 1418

Re: win_gtk.h missing wx.30 version on ubuntu?

Dear David thank you for your quick reply. Moving into the private dir means, that it is still used, and some other function call its in that case. I will try to find this out. The wxvtkrenderwindowinteractor.cpp is a part of wxVTK which allows using VTK within wxwidgets. You can see it here http://...
by termi
Sat Aug 13, 2016 8:23 pm
Forum: Compiler / Linking / IDE Related
Topic: win_gtk.h missing wx.30 version on ubuntu?
Replies: 2
Views: 1418

win_gtk.h missing wx.30 version on ubuntu?

Hi, I am trying to compile under Ubuntu an Wx application where wxvtkrenderwindowinteractor.cpp is used, but the compiler does not found the gdk/gdkx.h AND <wx/gtk/win_gtk.h> The wx-3.0/wx/gtk folder has only /gnome and hildom subfolders, but the "private" folder, where is now win_gtk.h on...
by termi
Fri Mar 13, 2015 9:22 pm
Forum: Compiler / Linking / IDE Related
Topic: Build with nmake (vs2013) with XP option?
Replies: 0
Views: 2075

Build with nmake (vs2013) with XP option?

Hi, on Win 8.1 64 bit, I am building wx from command line like this "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd64_x86 nmake.exe -f makefile.vc MONOLITHIC=1 SHARED=0 BUILD=release Any idea how and where to set the target to be for XP ? Somewhere should be set:...
by termi
Fri Mar 06, 2015 9:45 pm
Forum: C++ Development
Topic: How to get the visible cells of wxGrid effectively
Replies: 1
Views: 941

How to get the visible cells of wxGrid effectively

Hi Is there an efficient way to get the coordinates of the currently visible cells of wxGrid ? I mean the upper left and bottom right corner, in order to set MakeCellVisible(row,col) after some refreshing/reformating operation ? I have large grid and after some operations it has to be reformated, th...
by termi
Tue Dec 30, 2014 8:49 am
Forum: General Development
Topic: Internationalization problem using GUI editor
Replies: 1
Views: 1465

Re: Internationalization problem using GUI editor

Dear Rugruth I am not sure if I undestand you question correct, because I do not use FormBilder. If you have problems with it: I had to try all available GUI editors even the commercial ones, before start one larger project. Finally, I worked with Code::Blocks wxSmith for some period of time, and si...
by termi
Mon Dec 29, 2014 10:03 pm
Forum: C++ Development
Topic: Convert wxRibbonButtonBarEvent to wxCommandEvent
Replies: 3
Views: 1259

Re: Convert wxRibbonButtonBarEvent to wxCommandEvent

Thank you Doublemax, just tested, for Buttons on wxAuiToolbar (it works as well with wxID_Any) and wxRibbonBar the method with the same ID does NOT work :( . No problem, I make one method without arguments, and after that call it from both of the methods, it is not nice, so I was woundering if using...
by termi
Mon Dec 29, 2014 5:51 pm
Forum: C++ Development
Topic: Convert wxRibbonButtonBarEvent to wxCommandEvent
Replies: 3
Views: 1259

Convert wxRibbonButtonBarEvent to wxCommandEvent

Hi,
is it possible to convert
wxCommandEvent to wxRibbonButtonBarEvent or
wxRibbonButtonBarEvent to wxCommandEvent ?

If I create buttons in RibbonButtonBar and have these as wel on some command button, have to create always two functions?
OF I should put the same ID for these ?