Search found 96 matches

by morya
Thu Jul 23, 2009 8:27 am
Forum: C++ Development
Topic: POEdit and wxWidgets Unicode Build problem
Replies: 2
Views: 1166

Here is demo made by me, maybe you wanna check it out.

http://forums.wxwidgets.org/viewtopic.p ... highlight=
by morya
Sun May 31, 2009 12:13 pm
Forum: C++ Development
Topic: How to disable the wxWidgets Information dialog?
Replies: 4
Views: 2141

I came out with a very bad idea,
you could make a special event filter and plug it to every widget that you want disable the msg box.
You know what kind of event you want to filter.
by morya
Fri May 29, 2009 2:34 pm
Forum: C++ Development
Topic: How to disable the wxWidgets Information dialog?
Replies: 4
Views: 2141

What if you derive all the classes and rewrite that special event handle..?

That would be a big project..
by morya
Tue May 26, 2009 2:27 pm
Forum: C++ Development
Topic: About wxClient wxConnection wxServer
Replies: 2
Views: 1300

Have spent all night to understand how to submit a patch...
Here is my result.

http://trac.wxwidgets.org/ticket/10841

But, still, there are no answer to my question...
by morya
Mon May 25, 2009 11:20 am
Forum: C++ Development
Topic: About wxClient wxConnection wxServer
Replies: 2
Views: 1300

About wxClient wxConnection wxServer

First of all, I think the manual page, http://docs.wxwidgets.org/stable/wx_wxclient.html and trunk version http://docs.wxwidgets.org/trunk/classwx_client.html has a small bug. This line, SECURITY NOTE: Using Internet domain sockets if extremely insecure for IPC as there is absolutely no access contr...
by morya
Mon Apr 20, 2009 8:28 am
Forum: C++ Development
Topic: wxToolTip not immediately shown MacOS
Replies: 9
Views: 3232

You could use

Code: Select all

wxTipWindow *tipwin = new wxTipWindow( btn_with_help,
		str_help_text,
		280,
		NULL);
http://docs.wxwidgets.org/trunk/classwx_tip_window.html
by morya
Thu Apr 09, 2009 12:55 pm
Forum: wxWidgets Development (Chinese)
Topic: Qt 4.5 增添 LGPL 授权选择,wxWidgets 何去何从?
Replies: 8
Views: 7119

这个文件里说的 wxwidgets/docs/preamble.txt The core distribution of the wxWidgets library contains files under two different licences: - Most files are distributed under the GNU Library General Public Licence, version 2, with the special exception that you may create and distribute object code versions bui...
by morya
Wed Apr 08, 2009 8:26 am
Forum: wxWidgets Development (Chinese)
Topic: Qt 4.5 增添 LGPL 授权选择,wxWidgets 何去何从?
Replies: 8
Views: 7119

wxWidgets也是用的LGPL
否则,就没法开发商业软件了。

qt的LGPL和wx的一个是2.0, 一个是 2.1 而已。
by morya
Wed Apr 08, 2009 8:20 am
Forum: wxWidgets Development (Chinese)
Topic: 关于wxWidgets的samples的编译
Replies: 12
Views: 10008

如果编译 wx 的时候用了类似于
nmake -f makefile.vc BUILD=release UNICODE=1 RUNTIME_LIBS=static
编译例子的时候,后面的东西也要带上。
否则……
by morya
Wed Apr 08, 2009 8:18 am
Forum: wxWidgets Development (Chinese)
Topic: 一个弱弱的问题--wxString
Replies: 7
Views: 5280

我都是
wxString s = wxT("Some text");

regardless of Unicode/ANSI version.
by morya
Fri Feb 27, 2009 11:55 am
Forum: C++ Development
Topic: How to terminate the Application ?
Replies: 4
Views: 2571

I think it better to use

Code: Select all

frame->Close();
by morya
Tue Jan 20, 2009 11:04 am
Forum: Compiler / Linking / IDE Related
Topic: Trying not to use dll to save a lot more space but failed...
Replies: 9
Views: 3996

From the file name of wxmsw28ud_gcc.dll, I assume you use debug configuration to build your app, which will enlarge your app about one time. And, if you have build your app with release config, you could still make use of upx like program to get your app smaller. http://wiki.wxwidgets.org/WxWidgets_...
by morya
Wed Jan 14, 2009 2:56 pm
Forum: wxWidgets Development (Chinese)
Topic: wx2.9和3.0路线图
Replies: 7
Views: 5003

以前的废话,但是我无法删帖子,就修改成这个样子吧。
by morya
Sun Dec 21, 2008 5:23 am
Forum: C++ Development
Topic: Button id?
Replies: 6
Views: 4347

The following paragraph is copied from book <<Cross-Platform GUI Programming with wxWidgets >> By Julian Smart, Kevin Hock, Stefan Csomor Window Identifiers Window identifiers are integers, and are used to uniquely determine window identity in the event system. In fact, identifiers do not need to b...