Search found 10 matches

by gsus
Sun Apr 02, 2006 11:11 am
Forum: C++ Development
Topic: wxTextCtrl and c++ streams
Replies: 8
Views: 3267

oh tnx... seems the execelent documentation is missing here something. unfortunally this doesnt help me much.. im stick with dll's because im having a plugin system. and getting cout would be really helpull. up to now they go nowhere. maybe i could keep up the console, but that looks ugly.. having a...
by gsus
Sat Apr 01, 2006 5:03 pm
Forum: C++ Development
Topic: real time wxImage
Replies: 6
Views: 2259

hi... heres what i do: void gImageBox::OnPaint(wxPaintEvent& event){ wxPaintDC dc(this); //use buffered version to reduce flicker DoPrepareDC( dc ); memdc.SelectObject(backbuffer); dc.Blit(0,0, bm.GetWidth(), bm.GetHeight(), &memdc, 0,0); } void gImageBox::resize(int width, int height){ ctmp...
by gsus
Sat Apr 01, 2006 4:51 pm
Forum: C++ Development
Topic: wxTextCtrl and c++ streams
Replies: 8
Views: 3267

wxTextCtrl and c++ streams

Hi have some troubles using wxTextCtrl with streams. i want to redirect cout to a textcontrol. im using 2.6.2 with with visual studio 7.1 and complile as dll realese. my setup.h says #define wxUSE_STD_IOSTREAM 1 wxTextCtrl *control = new wxTextCtrl(...); *control << 123.456 << " some text\n&quo...
by gsus
Tue Nov 08, 2005 12:55 pm
Forum: Announcements and Discoveries
Topic: ASI - open source computer vision and visualization framewor
Replies: 0
Views: 1251

ASI - open source computer vision and visualization framewor

AllSeeingI (ASI) is the codename for a computer vision and visualisation framework. It is a visual programming environment for rapid development and easy reusablitity. It is a cross plattform c++ open source project. Currently its in version 0.1.1. The aim of this release is to give the basic functi...
by gsus
Sat Oct 29, 2005 12:18 pm
Forum: C++ Development
Topic: Mouse Leaving/MouseDown
Replies: 1
Views: 1221

have you looked at my post
im doint the same (moveable panel)

http://forums.wxwidgets.org/viewtopic.php?t=4760

copy the the code and replace the last if statement with
event.LeftUp() && HasCapture().
do the fixes of my snd post . and every thing will be fine

mfg tobi
by gsus
Fri Oct 28, 2005 1:01 pm
Forum: C++ Development
Topic: mouse event blocked by static text
Replies: 1
Views: 1713

found solution

okey.. i found a workaround there was another post (sorry cant remeber), where it was suggesten to add a invisible panel ontop of myPanel. So the top panel gets all events. This didnt work for me ( the toppanel wasnt on top). but might be a good solution if you have more controls.. Heres my solution...
by gsus
Tue Oct 25, 2005 1:26 am
Forum: C++ Development
Topic: mouse event blocked by static text
Replies: 1
Views: 1713

mouse event blocked by static text

hi. i want to make a wxpanel draggable. so i derived and wrote some mouse capturing routine. Sometimes i can move the mouse too fast and the mouse cursor gets out of my panel and events arnt triggerd -> the pannel stops dragging. Another more nasty issue is when i place some test on the panel. If i ...
by gsus
Wed Mar 02, 2005 3:33 pm
Forum: C++ Development
Topic: order of event table
Replies: 1
Views: 824

order of event table

Hi, i have a window with two custom controls derived from wxScrolledWindow where im drawing some stuff. Mouse movement is checked by the EVT_MOUSE_EVENTS in the custom class. Within the OnMouse() funtion im calling image1->refresh(), image2->refresh(), to draw a simple horizontal line in each image....
by gsus
Fri Feb 18, 2005 10:31 am
Forum: General Development
Topic: Thank You!
Replies: 0
Views: 876

Thank You!

wxWidgets rockz !!!

i've tried mfc, atl/wtl before.. but inrcredible how easy things can be!

wanted to say thanks to the dev-team! great work! ..also for beeing openSource!

tnx - Tobi
by gsus
Fri Feb 18, 2005 10:28 am
Forum: C++ Development
Topic: How split the MDI client area?!
Replies: 9
Views: 2598

Hi... im tried to do the same. It cost me some time to figure out how to do it. Up to now i see three options: 1 look at the mdi sample (2.5.3) they add a textcontrol, but its not resizable. the most infelexible approach, but easisest 2. use sashwindows, also in samples... thats the way i did it. ni...