Search found 17 matches
- Sat Mar 28, 2009 4:31 pm
- Forum: C++ Development
- Topic: wxmediactrl compilation problem
- Replies: 14
- Views: 1927
- Sat Mar 28, 2009 12:14 pm
- Forum: C++ Development
- Topic: wxmediactrl compilation problem
- Replies: 14
- Views: 1927
could anyone please help me out here..
in my setup.h file. still i am not able to build my code above..
Code: Select all
wxuse_mediactrl 1
wxuse_GSTREAMER 1
- Sat Mar 28, 2009 6:41 am
- Forum: C++ Development
- Topic: wxmediactrl compilation problem
- Replies: 14
- Views: 1927
- Fri Mar 27, 2009 8:20 pm
- Forum: C++ Development
- Topic: wxmediactrl compilation problem
- Replies: 14
- Views: 1927
well i finally got the mediactrl enabled on my system. seemed like i missed libgstreamer-plugins-devel and libgstreamer-base-devel. but now again i am facing problems building my app.here is the code ***********code*********** /* * File: newmain.cpp * Author: udit * * Created on 12 March, 2009, 3:30...
- Fri Mar 27, 2009 8:18 pm
- Forum: C++ Development
- Topic: --enable-mediactrl no able to enable wxmediactrl
- Replies: 2
- Views: 630
well i finally got the mediactrl enabled on my system. seemed like i missed libgstreamer-plugins-devel and libgstreamer-base-devel. but now again i am facing problems building my app.here is the code ***********code*********** /* * File: newmain.cpp * Author: udit * * Created on 12 March, 2009, 3:30...
- Fri Mar 27, 2009 3:04 pm
- Forum: C++ Development
- Topic: --enable-mediactrl no able to enable wxmediactrl
- Replies: 2
- Views: 630
--enable-mediactrl no able to enable wxmediactrl
i have installed wxgtk 2.8.10 with the following options
./configure --enable-debug --enable-mediactrl --with-gtk
make
make install
but still in the /usr/local/lib/wx/include/gtk..../setup.h use_wxMediaCtrl is set to 0...
are there any libs m missing on my system?
i am using mandriva 2009.
./configure --enable-debug --enable-mediactrl --with-gtk
make
make install
but still in the /usr/local/lib/wx/include/gtk..../setup.h use_wxMediaCtrl is set to 0...
are there any libs m missing on my system?
i am using mandriva 2009.
- Mon Mar 23, 2009 8:08 pm
- Forum: C++ Development
- Topic: wxmediactrl compilation problem
- Replies: 14
- Views: 1927
- Mon Mar 23, 2009 1:01 pm
- Forum: C++ Development
- Topic: wxmediactrl compilation problem
- Replies: 14
- Views: 1927
- Mon Mar 23, 2009 7:54 am
- Forum: C++ Development
- Topic: wxmediactrl compilation problem
- Replies: 14
- Views: 1927
- Sun Mar 22, 2009 6:06 pm
- Forum: C++ Development
- Topic: wxmediactrl compilation problem
- Replies: 14
- Views: 1927
wxmediactrl compilation problem
i am using wxmediactrl in my code. its as follows. wxMediaCtrl *wxm; wxm=new wxMediaCtrl(); wxm->Create(this,wxID_ANY,wxT("/home/udit/Desktop/Media.avi"),wxDefaultPosition,wxDefaultSize,0,wxT(""),wxDefaultValidator,wxT("udit")); ----------Build Started-------- "make" -j 2 -f "test_wsp.mk" ----------...
- Sun Mar 15, 2009 2:35 pm
- Forum: Compiler / Linking / IDE Related
- Topic: ide with autocomplete for wxwidgets
- Replies: 9
- Views: 2376
- Sun Mar 15, 2009 9:26 am
- Forum: Compiler / Linking / IDE Related
- Topic: ide with autocomplete for wxwidgets
- Replies: 9
- Views: 2376
- Sat Mar 14, 2009 8:15 pm
- Forum: Compiler / Linking / IDE Related
- Topic: ide with autocomplete for wxwidgets
- Replies: 9
- Views: 2376
thanx.. actually i missed out that i need the ide for linux.. i checked wxdevcpp but its only for window. though codelite seems promising. i have used codeblocks, netbeans, eclipse cdt, anjuta but none have given me the autocomplete i need... i am not sure there even exists a good c++ ide for linux..
- Sat Mar 14, 2009 7:29 pm
- Forum: C++ Development
- Topic: C++ wxgtk display images
- Replies: 5
- Views: 1051
well basically i am just trying to build an image viewer. so with mouse wheel scrolling i want to scale the image, which will be continuous. both upscaling and downscaling, like any normal image viewer. i tried following code: wxImage img; img.LoadFile(imagepath,wxBITMAP_TYPE_ANY); wxPaintDC dc; dc....
- Sat Mar 14, 2009 10:42 am
- Forum: C++ Development
- Topic: C++ wxgtk display images
- Replies: 5
- Views: 1051
thanx worked like a charm... but just one question... can u tell me which method is faster if iam using image scaling.. as in i have tried it in java and python but it required lot of processing and that is why i have moved to c++. so what i want to know is drawing with wxpaintdc fast enough to prod...