Search found 657 matches

by protocol
Wed Nov 20, 2013 7:33 am
Forum: C++ Development
Topic: Using wxWebView to create C++ app with HTML user interface
Replies: 7
Views: 7703

Re: Using wxWebView to create C++ app with HTML user interfa

The above way would work, but I think a better approach would be to create your own URL scheme using wxWebView::RegisterHandler(...) http://docs.wxwidgets.org/trunk/classwx_web_view.html#a7f97f428ac96426dd84bfd1b7406dbc2 It is similar to how you intercept and process user actions when working with a...
by protocol
Fri Nov 30, 2012 3:41 am
Forum: C++ Development
Topic: A vertical scroll bar is shown in Single line text control
Replies: 5
Views: 2778

Re: A vertical scroll bar is shown in Single line text contr

Can you resolve it by changing the font (size or family)?
by protocol
Fri Nov 30, 2012 3:37 am
Forum: Platform Related Issues
Topic: transparent window in osx with events passthrough
Replies: 3
Views: 2790

Re: transparent window in osx with events passthrough

You may have to go down to a Cocoa or Carbon level (under wxWidgets).

Do you mean transparent as in a custom shaped window? Or a window that is semi-transparent?
by protocol
Tue Aug 23, 2011 1:14 am
Forum: C++ Development
Topic: wxCheckListBox and 3 state checkbox
Replies: 2
Views: 1898

Re: wxCheckListBox and 3 state checkbox

It should be simple to implement if needed, seeing that wxCheckBox already supports the 3rd state. You can make your own using that wxControl and wxControlWithItems; see the wxListBox and wxCheckListBox as examples on how to do it.
by protocol
Sat Aug 20, 2011 6:58 pm
Forum: C++ Development
Topic: How to implement voice controlled wxWidgets application
Replies: 7
Views: 23133

Re: How to implement voice controlled wxWidgets application

I'm not sure if you actually looked, but here is the samples:
http://www.anthemion.co.uk/axtk/
by protocol
Mon May 17, 2010 2:34 am
Forum: C++ Development
Topic: Making thread run after program exits
Replies: 4
Views: 2499

Sounds like a setup for a troubled design. It may be best to keep the application running. Use the taskbar to keep the process available. What if the upload fails, or some other error that the user may need to handle occurs? Also, as a user I would like to know whats going on; don't try to "hid...
by protocol
Mon Oct 19, 2009 4:55 am
Forum: Platform Related Issues
Topic: [MAC] Changing application title at runtime
Replies: 5
Views: 2744

With that being said, please clarify your intentions. Do you want to set the app name at runtime or build time?
by protocol
Sat Oct 17, 2009 5:42 am
Forum: General Development
Topic: Web toolkit for wxwidgets
Replies: 3
Views: 2171

The closest that I know of is my project: lionface

http://lionface.googlecode.com

It uses ExtJS to render windows and other widgets. Its rather, inactive, but I am starting to work on it again (slowly but surely).

regards.
by protocol
Sat Oct 17, 2009 5:39 am
Forum: Platform Related Issues
Topic: [MAC] Changing application title at runtime
Replies: 5
Views: 2744

You will have to review the Carbon API, available from Apple.
by protocol
Thu Sep 03, 2009 3:16 am
Forum: wxDev-C++
Topic: Basic in wxListBox (Insert, Clear and Delete) (SOLVED)
Replies: 2
Views: 2749

by protocol
Thu Sep 03, 2009 3:10 am
Forum: General Development
Topic: wxPython import deprecation
Replies: 1
Views: 1398

Correct use "import wx". The convention for wxPython is: use wx.* to access the Python equivalent. In short, all C++ documentation is almost exactly the same for wxPython. example: C++ = EVT_BUTTON, wxMessageBox Py = wx.EVT_BUTTON, wx.MessageBox wx is the namespace/prefix to access all of ...
by protocol
Sun Aug 09, 2009 3:34 am
Forum: C++ Development
Topic: TCPing open port
Replies: 1
Views: 1491

http://docs.wxwidgets.org/stable/wx_wxs ... cketserver

You also can search within the forum.
by protocol
Sat Jul 25, 2009 4:19 am
Forum: Open Discussion
Topic: C++ oddness and I need some insight/help.
Replies: 20
Views: 8280

It seems like there is a party in this thread. So I will add my two cents.

Have you tried using events to provide data to the threads?
by protocol
Wed Jul 08, 2009 5:22 am
Forum: C++ Development
Topic: wxFileDialog and windows permissions
Replies: 2
Views: 1319

The error message presented by the file selector is more than likely a native error message.

For the latter, catch the exception and present your own friendly error message.

regards.
by protocol
Sat Jul 04, 2009 3:19 am
Forum: C++ Development
Topic: exFileDialog wildcard doesn't work on initial entry
Replies: 3
Views: 1578

The other simple solution is to only accept one filetype of the same ext name. Make sure your application saves the file as the desired type. People who use Unix/Linux are aware of case-sensitivity.