Search found 2995 matches

by upCASE
Mon Aug 08, 2011 12:10 pm
Forum: Platform Related Issues
Topic: "Embedding" native GTK widget
Replies: 5
Views: 6733

Re: "Embedding" native GTK widget

Hi!
Thanks for posting your code.
I'm terribly sorry, but I simply didn't pay attention to your posting, otherwise I would have answered earlier.
by upCASE
Mon Jun 20, 2011 7:18 am
Forum: Forum Announcements
Topic: Forum Downtime
Replies: 6
Views: 32408

Hi! Many thanks to tierra who kindly helped with getting us online again! I'm very sorry that there wasn't a more recent backup. We will discuss and try to make sure that this won't happen again. In addition we're currently checking how we can upgrade the forum. So stay tuned: We're up to take this ...
by upCASE
Fri Mar 18, 2011 7:42 am
Forum: General Forum Issues
Topic: Forums Site Performance
Replies: 14
Views: 61532

Hi! Please note that this might take some time, as it is not only about moving the forum, but also upgrading it. For now everything is "as is", but I do hope to find the time to start moving and upgrading shortly. I'll do this in my spare free time, so please don't expect light-speed perfo...
by upCASE
Wed Mar 16, 2011 8:09 am
Forum: General Forum Issues
Topic: Forums Site Performance
Replies: 14
Views: 61532

Hi Jorg! Same here :-( Although I still do code using wxWidgets for my personal projects, I use Qt for the major part at work. My family life doesn't leave much time for maintaining, let alone extending or updating, the forum. I, just like you, have the feeling that some others should take over, who...
by upCASE
Thu Feb 10, 2011 7:38 am
Forum: Platform Related Issues
Topic: Get x11 id from wxwindows
Replies: 8
Views: 15662

Hi! As I see you're trying to embed VLC in a wxWidgets app. That's exactly what I do and it works perfectly well, given you use the way of obtaining the XID like I mentioned in the other post. Where does that extern "C" come from? In libvlc.h this is use, but guarded with an ifdef block. A...
by upCASE
Tue Jan 25, 2011 7:19 am
Forum: C++ Development
Topic: "accepted" get no confirm
Replies: 1
Views: 3455

Hi!
I unaccepted the topic.
by upCASE
Wed Jan 12, 2011 7:41 am
Forum: C++ Development
Topic: GtkWindow from wxWindow GetHandle
Replies: 2
Views: 6880

Hi! I had the same problems when trying to tell VLC to use a wxWidgets control for video output. Here's how I managed that for 2.8: GdkWindow* win = GTK_PIZZA(output->m_wxwindow)->bin_window; vlc_media_player_set_xwindow (m_media_player_inst,GDK_WINDOW_XID(win)); For 2.9 I had to use a different way...
by upCASE
Fri Jan 07, 2011 3:19 pm
Forum: C++ Development
Topic: Program stay in process list
Replies: 2
Views: 2239

Hi!
You'll need to delete the taskbar icon explicitly when your app exits to have it removed from the try.
by upCASE
Tue Dec 07, 2010 9:04 am
Forum: C++ Development
Topic: video thumbnail gallery
Replies: 1
Views: 2013

Hi!
I would suggest having a look at mplayer or vlc. Both
should be able to do that and support a broad spectrum of
video formats.

There is no way to do that from wxWidgets itself.
by upCASE
Fri Oct 08, 2010 9:14 am
Forum: C++ Development
Topic: Need a compiled wxSkin
Replies: 18
Views: 18737

Hi!
In your OnInit() call wxInitAllImageHandlers();.
That should do the trick.
by upCASE
Fri Oct 08, 2010 8:33 am
Forum: C++ Development
Topic: Need a compiled wxSkin
Replies: 18
Views: 18737

Hi!
honeymagico wrote:i change windows.h to wx/msw/private.h
is this correct?
Yes, perfectly ok.
I wonder why it worked for me. Nobody else ever reported this...
Anyway, I'll close this question.
by upCASE
Fri Oct 08, 2010 7:16 am
Forum: C++ Development
Topic: Need a compiled wxSkin
Replies: 18
Views: 18737

Hi! I try do add declare in wxSkinEngine.h , but still get errors That's odd... Try opening wxSkinWindow.cpp and alter the top #ifdef block to #ifdef __WXGTK__ #include "wx/gtk/win_gtk.h" #elif defined(__WXMAC__) #include "wx/mac/private.h" #elif defined(__WXMSW__) #include <Wind...
by upCASE
Fri Oct 08, 2010 6:06 am
Forum: C++ Development
Topic: Need a compiled wxSkin
Replies: 18
Views: 18737

Hi!
Actually if cmake fails, simply create a simple wxWidgets application, try that this compiles and then add all wxSkin sourcefiles to it (adding the include path of course). You don't really need to compile it as a library.
by upCASE
Tue Oct 05, 2010 11:49 am
Forum: C++ Development
Topic: wxProgressDialog without mainframe-window but eventloop
Replies: 4
Views: 4332

Moin!

Try with a wxWidgets 2.9.x release. Quoting the changelog:

"Major new features in this release
----------------------------------
....
- Event loops, timers and sockets can now be used in wxBase, without GUI.
...."

Apparently this would solve your issue.
by upCASE
Tue Sep 28, 2010 9:52 am
Forum: C++ Development
Topic: Downloaded samples from www.wxwidget.org are not working
Replies: 16
Views: 11081

Hi! But if I want to make my own new project suppose myapp.cpp anywhere in my system and want to compile it with wxWidget,then how can I do that? If you did "make install" for wxWidgets it's quite simple: use wx-config. Like g++ -otest myapp.cpp `wx-config --libs --cxxflags` Check wx-confi...