Search found 101 matches

by Lamego
Tue Jun 13, 2006 10:26 am
Forum: Announcements and Discoveries
Topic: MultiChat
Replies: 3
Views: 1557

License

The license is GPL.
by Lamego
Mon Jun 12, 2006 10:38 pm
Forum: Announcements and Discoveries
Topic: MultiChat
Replies: 3
Views: 1557

MultiChat

Hello, MultiChat is an IRC client with the following features: - Multiplataform (wxMSW/wxGTK) - Automatic upgrades (Win32 only) - System tray integration - Minimalistic login screen (IM style) - Graphical smileys - Private Messages Photo (for networks supporting it) Source code: ftp://ftp.sunsite.dk...
by Lamego
Tue May 16, 2006 4:44 pm
Forum: C++ Development
Topic: wxScrolledWindow with background thumbnail
Replies: 5
Views: 1781

GTK ok

Working great also on wxGTK, Thanks for the help :)
by Lamego
Tue May 16, 2006 2:21 pm
Forum: C++ Development
Topic: wxScrolledWindow with background thumbnail
Replies: 5
Views: 1781

ok now

GetClientSize() seems to be correct (its returning the correct size both with or without scrollbars). Overriding the ScrollWindow() methods as you suggested did also took care of the full refresh. I am developing/running both on wxMSW/GTK, the tests for today were done with wxMSW, later I will be ab...
by Lamego
Mon May 15, 2006 8:17 pm
Forum: C++ Development
Topic: wxScrolledWindow with background thumbnail
Replies: 5
Views: 1781

lost

1. Using the virtual size does make the thumb be better positioned, but please note that now there is some extra space between the thumb and the window, screenshot: [img=http://img111.imageshack.us/img111/1047/screenshotcentraldeconversas9g.th.png] 2. I understood your explanation, I was a bit lazy ...
by Lamego
Mon May 15, 2006 6:15 pm
Forum: C++ Development
Topic: wxScrolledWindow with background thumbnail
Replies: 5
Views: 1781

wxScrolledWindow with background thumbnail

Hello I am creating a chat window based on wxScrolledwindow with an option to draw a thumbnail on the background. The code: /// Painting void wxChatWindow::OnPaint(wxPaintEvent& event) { wxBufferedPaintDC dc(this); dc.SetFont( m_font ); PrepareDC(dc); // Paint the background PaintBackground(dc);...
by Lamego
Tue May 09, 2006 7:22 pm
Forum: C++ Development
Topic: wxDialog sometimes blocks wxSocket traffic ?
Replies: 5
Views: 1389

all socket flags ?

Your comment about using "all socket" flags is a bit insane, some of the socket flags can't be mixed because they describe opposite behaviors. You must use wxSOCKET_NOWAIT to make sure the GUI will not block during reads/writes (unless you use an helper thread only for the socket IO). By u...
by Lamego
Mon May 08, 2006 5:02 pm
Forum: C++ Development
Topic: wxscrolled window on sizer
Replies: 1
Views: 860

I have resolved my problem by using the sample at
http://forums.wxwidgets.org/viewtopic.p ... ght=sizer1 .
by Lamego
Mon May 08, 2006 11:42 am
Forum: C++ Development
Topic: Qeuston of usage of WriteMsg and ReadMsg
Replies: 6
Views: 1717

strange

If we can't check the original length value of a WriteMsg message what is the benefit of this functions (unless we use a fixed write/read size) ?
by Lamego
Mon May 08, 2006 11:36 am
Forum: C++ Development
Topic: How can I write
Replies: 4
Views: 1383

what error ?

Cou you be more specific on the error you get ?
I don't get any error when using those chars on wx strings.
by Lamego
Mon May 08, 2006 10:26 am
Forum: C++ Development
Topic: wxURL GetInputStream woes
Replies: 14
Views: 4103

working here

The issue got resolved for me with 2.6.3 ...
by Lamego
Mon May 08, 2006 10:22 am
Forum: C++ Development
Topic: Qeuston of usage of WriteMsg and ReadMsg
Replies: 6
Views: 1717

not sure

After rereading the functions help again I also found unclear how the header count works. My interpretation is that your read buffer must be as large as the sized used on the WriteMsg. You are trying to do a Peek() alike on this functions, it would make sense but I don't see any way to do that on th...
by Lamego
Mon May 08, 2006 10:11 am
Forum: C++ Development
Topic: wxscrolled window on sizer
Replies: 1
Views: 860

wxscrolled window on sizer

I was expecting the wxScrolledWindow to expand to all the remaining space inside the panel with the following code: SearchRoomWindow::SearchRoomWindow(wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style, const wxString& name) : w...
by Lamego
Sat May 06, 2006 10:45 pm
Forum: C++ Development
Topic: Qeuston of usage of WriteMsg and ReadMsg
Replies: 6
Views: 1717

no need

I didn't tryed myself but the documentation is clear.
You don't need to care about the header format because the header is only used by the WriteMsg/ReadMsg internally to communicate the data length.
You just WriteMsg/ReadMsg the plain data you expect to send/receive.
by Lamego
Fri May 05, 2006 10:48 am
Forum: C++ Development
Topic: Posting events to notebook tabs
Replies: 7
Views: 2306

you rock

Eranif,
your approach worked fine.

Thanks