Search found 6681 matches

by Auria
Sat Feb 03, 2007 6:44 pm
Forum: C++ Development
Topic: Streching components
Replies: 19
Views: 3700

You add the object to the panel, but the sizer to the frame - you will need to choose if you add things to the panel OR to the frame, not both at the same time! second, you give the panel a fixed size, and no sizer controls the panel. Therefore it will never grow. Third, you give the list a size dur...
by Auria
Sat Feb 03, 2007 4:01 pm
Forum: General Development
Topic: Help needed with Dev-C++
Replies: 4
Views: 1671

Re: well,

yeah you're right my question has nothing to do with widgets..since im just starting to go back and learn c++ again..what is widgets?, well i googled it and found the answer, it is a cross platform development tool kit....well i have another question?..is this widgets supports dev-c++ 4.9.9.2?, ple...
by Auria
Sat Feb 03, 2007 12:20 am
Forum: Compiler / Linking / IDE Related
Topic: problem with "extern" c++ command on linux
Replies: 14
Views: 3066

what are the commands executed to build? is the xrc lib linked in?
by Auria
Fri Feb 02, 2007 10:09 pm
Forum: C++ Development
Topic: why is my wxWindow not calling EVT_LEFT_DCLICK?
Replies: 4
Views: 1461

maybe check no other component is catching the same kind of events - once i had problems because the event went to another parent component
by Auria
Fri Feb 02, 2007 9:49 pm
Forum: Platform Related Issues
Topic: how to create bitmap on Mac
Replies: 3
Views: 1013

Re: how to create bitmap on Mac

schmapper wrote:I looked through the source code, the bitmap.cpp in src/mac does nothing but return
Err what's your wxWidgets version? I just opened bitmap.cpp in wxMac and Create does contain code
by Auria
Fri Feb 02, 2007 2:26 am
Forum: C++ Development
Topic: Streching components
Replies: 19
Views: 3700

wxFlexGridSizer *WxFlexGridSizer = new wxFlexGridSizer(2,1,0,0); wxFlexGridSizer->SetFlexibleDirection(wxHORIZONTAL); WxFlexGridSizer->AddGrowableRow(0); WxFlexGridSizer->Add(WxListCtrl1, 0, wxALL|wxEXPAND, 0); you need to use SetSizer somewhere otherwise sizer won't work if it still doesn't work, ...
by Auria
Fri Feb 02, 2007 2:04 am
Forum: General Development
Topic: Help needed with Dev-C++
Replies: 4
Views: 1671

Hi, this is a wxWidgets forum. Since your problem does not involve wxWidgets at all, you should perhaps search for a dev-c++ forum instead. Or, if you ARE using wxWidgets, mention the version you are using, post some code, etc. Furthermore, no one can help you since you did not tell us what is the e...
by Auria
Thu Feb 01, 2007 10:06 pm
Forum: C++ Development
Topic: Need a little extra help figuring out sizers
Replies: 8
Views: 1879

#include <wx/wx.h> #include <wx/splitter.h> const int ID_TITLEBAR = 1; const int ID_MENUBAR = 2; const int ID_TOOLBAR = 3; class TehProgram: public wxApp { virtual bool OnInit(); }; class TehFrame: public wxFrame { public: TehFrame(const wxString& title, const wxPoint& pos, const wxSize&...
by Auria
Thu Feb 01, 2007 9:48 pm
Forum: Compiler / Linking / IDE Related
Topic: How to link statically with X11
Replies: 3
Views: 2181

Hi, you CAN'T link statically to X11 (or, if it is possible, you don't want that) X11 is supposed to be installed on all linux distros. Though it is most often the right choice to build wxWidgets static you told the error message that appears when linking against dynamic wxGTK - but what happens whe...
by Auria
Thu Feb 01, 2007 2:29 am
Forum: Compiler / Linking / IDE Related
Topic: Not sure on my setup or even understanding of wx.
Replies: 2
Views: 850

Hi,

when i first tried wxWidgets i was very frustrated too - but don't give up, i suggest you go on wxWiki, there you will find plenty of step-by-step guides for all patforms
by Auria
Wed Jan 31, 2007 12:19 am
Forum: Compiler / Linking / IDE Related
Topic: building static binary
Replies: 15
Views: 4108

maybe try to add wx-config --libs alone, just to make sure you didn't ommit an important module by just supplying adv,ogl and base. I had similar errors once
by Auria
Tue Jan 30, 2007 2:11 am
Forum: Compiler / Linking / IDE Related
Topic: how to use the wxWidge ?
Replies: 4
Views: 979

Hi,

your post is somewhat vague. What have you done so far, what can't you successfully do, what are your programmng experiences, what's your ide, your os, what are you attempting to do...

For getting started the wiki is a great place anyway
http://www.wxwidgets.org/wiki/index.php/Main_Page
by Auria
Tue Jan 30, 2007 12:13 am
Forum: C++ Development
Topic: Poll key events
Replies: 2
Views: 871

Thanks i was sure this must exist but couldn't find it! :D
by Auria
Mon Jan 29, 2007 2:25 am
Forum: C++ Development
Topic: Poll key events
Replies: 2
Views: 871

Poll key events

Hi everyone for my app, i need to implement a keypress poll to know if user holds some key down. For this i used 'keyPressed(wxKeyEvent& evt)' and 'keyReleased(wxKeyEvent& evt)' (EVT_KEY_UP, EVT_KEY_DOWN) However it happens one of these keys i'm watching is the alt key. However, it happens t...
by Auria
Sun Jan 28, 2007 8:12 pm
Forum: wxCode
Topic: wxScintilla on Mac?
Replies: 7
Views: 2626

Actually wxScintilla comes with wxMac and can be compiled with a single command on the terminal - it worked pretty well on my PPC in wx2.6.3 (haven't tested in 2.8 yet)