Search found 657 matches
- Wed Nov 20, 2013 7:33 am
- Forum: C++ Development
- Topic: Using wxWebView to create C++ app with HTML user interface
- Replies: 7
- Views: 5621
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...
- 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: 2123
Re: A vertical scroll bar is shown in Single line text contr
Can you resolve it by changing the font (size or family)?
- Fri Nov 30, 2012 3:37 am
- Forum: Platform Related Issues
- Topic: transparent window in osx with events passthrough
- Replies: 3
- Views: 2211
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?
Do you mean transparent as in a custom shaped window? Or a window that is semi-transparent?
- Tue Aug 23, 2011 1:14 am
- Forum: C++ Development
- Topic: wxCheckListBox and 3 state checkbox
- Replies: 2
- Views: 1212
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.
- Sat Aug 20, 2011 6:58 pm
- Forum: C++ Development
- Topic: How to implement voice controlled wxWidgets application
- Replies: 7
- Views: 10598
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/
http://www.anthemion.co.uk/axtk/
- Mon May 17, 2010 2:34 am
- Forum: C++ Development
- Topic: Making thread run after program exits
- Replies: 4
- Views: 1464
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 "hide" ap...
- Mon Oct 19, 2009 4:55 am
- Forum: Platform Related Issues
- Topic: [MAC] Changing application title at runtime
- Replies: 5
- Views: 1508
- Sat Oct 17, 2009 5:42 am
- Forum: General Development
- Topic: Web toolkit for wxwidgets
- Replies: 3
- Views: 1237
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.
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.
- Sat Oct 17, 2009 5:39 am
- Forum: Platform Related Issues
- Topic: [MAC] Changing application title at runtime
- Replies: 5
- Views: 1508
- Thu Sep 03, 2009 3:16 am
- Forum: wxDev-C++
- Topic: Basic in wxListBox (Insert, Clear and Delete) (SOLVED)
- Replies: 2
- Views: 1794
- Thu Sep 03, 2009 3:10 am
- Forum: General Development
- Topic: wxPython import deprecation
- Replies: 1
- Views: 942
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 wxWidgets....
- Sun Aug 09, 2009 3:34 am
- Forum: C++ Development
- Topic: TCPing open port
- Replies: 1
- Views: 821
- Sat Jul 25, 2009 4:19 am
- Forum: Open Discussion
- Topic: C++ oddness and I need some insight/help.
- Replies: 20
- Views: 5117
- Wed Jul 08, 2009 5:22 am
- Forum: C++ Development
- Topic: wxFileDialog and windows permissions
- Replies: 2
- Views: 877
- Sat Jul 04, 2009 3:19 am
- Forum: C++ Development
- Topic: exFileDialog wildcard doesn't work on initial entry
- Replies: 3
- Views: 937